/* nav */
#site-header {
    height: 56px;
    width:100%;
    background: #eceff1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 980;
    top: 0;
    -webkit-box-shadow: 0px 12px 24px 0px #23252614;
    box-shadow: 0px 12px 24px 0px #23252614;
    flex-wrap: wrap;
}

#header-logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

#header-logo img {
    height: 100%;
    width: auto;
}

#header-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    z-index: 5;
    gap: 20px;
    margin-right: 45px;
}

.header-menu-item {
    height: 100%;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    padding: 1px 8px;
}

.header-menu-item.hidden {
    display: none;
}

#header-menu-item-discover.active{
    background-color: #898989;
}

#header-menu-item-chat.active{
    background-color: #898989;
}

#header-menu-item-profile.active{
    background-color: #898989;
}


/* profile menu */
#profile-menu {
    position: absolute;
    top: 56px;
    right: 0;
    padding: 22px;
    background-color: #fafafa;
    display: none;
    -webkit-box-shadow: 0px 0px 60px 0px rgb(146 146 146 / 30%);
    box-shadow: 0px 0px 60px 0px rgb(146 146 146 / 26%);
    z-index: 0;
}

#profile-menu.active {
    display: block;
}

.profile-menu-list-item {
    display: block;
    padding: 6px;
    margin-bottom: 6px;
    font-weight: 700;
    cursor: pointer;
}

.profile-menu-list-item.hidden {
    display: none;
}

.profile-menu-list-item.active {
    background-color: #898989;
}


/* discover searchtype */
#discover-searchtype-container {
    display: none;
    height: 56px;
    align-items: center;
    overflow:hidden;
    justify-self: flex-start;
    margin-right: 15px;
}

#discover-searchtype-container.active {
    display: flex;
}

#discover-searchtype {
    display: flex;
    border-radius: 999px;
    background-color: #dce0e2;
    background-color: #e2e2e2;
    align-items: center;
    padding: 1px;
    width: auto;
}

.discover-searchtype-option {
    padding: 0 12px;
    line-height: 32px;
    color: #8d9193;
}

.discover-searchtype-option.active {
    background-color: #e22e5f;
    background-color: #f76b5e;
    border-radius: 999px;
    color: #fafafa;
}