#header {
    display: flex;
    flex-direction: row;
    background-color: var(--c1);
    justify-content: center;
    align-items: center;
    height: 60px;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

#header > section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#header .left {
    min-width: 250px;
}

#header .center {
    flex-grow: 3;
    justify-content: center;
}

#header .right {
    min-width: 250px;
    justify-content: flex-end;
    padding-right: 22px;

}

#header .left .logo {
    margin-left: 20px;
    margin-right: 20px;
}

#header .left .logo-text a {
    font-weight: bold;
    font-size: 16px;
    line-height: 21px;

    letter-spacing: 0.02em;
    text-transform: uppercase;

    color: #FFFFFF;
}

#header .center .search {
    background: #2D343B;
    box-shadow: 0 4px 20px rgba(22, 29, 37, 0.05);
    border-radius: 22px;
    display: flex;
    flex-direction: row;
    padding: 10px 13px;
    align-items: center;
    width: 600px;
}

#header .center .search .lg-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 13px;
}

#header .center .search .textbox {
    flex-grow: 3;
}

#header .center .search .textbox input {
    color: var(--c2);
    opacity: 0.4;
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    width: calc(100% - 16px);
}

#header .center .search .adv-search {
    padding-left: 13px;
    border-left: 1px solid var(--c3);
}

#header .center .search .adv-search a {
    font-weight: bold;
    font-size: 12px;
    line-height: 140%;
    display: flex;
    align-items: center;
    text-align: right;
    color: var(--c2);
}

#header .right > section {
    /*margin-right: 30px;*/
}

#header .right .search {
    display: none;
}

#header .right .search button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--c1);
    border:0;
}

#header .right .search button:hover {
    background: var(--sub-header);
}

#header .right .lang {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#header .right .lang span {
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--c2);
}

#header .dropdown-button {
    height:60px;
    width:60px;
}


#header .user .dropdown .dropdown-button img {
    filter: invert(100%);
    width:14px;
    height:14px;
}

#header .lang .dropdown .dropdown-content {
    right: -60px;
}
