.header {
    background: #fff;
    margin-bottom: 20px;
    font-family: sans-serif;
    padding: 0 20px;
}

.header__top .container {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 21px
}

.header__back {
    width: 34px;
    flex: 0 0 34px
}

.header__back a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px
}

.header__back a svg {
    fill: #000;
    flex: 0 0 6px
}

.header__logo {
    width: 170px;
    height: 50px;
    margin: 5px 0
}

.header__logo a {
    display: flex
}

.header__logo a svg {
    width: 170px;
    height: 50px;
    position: relative
}

.header__icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px
}

.header__icons .icon-weather svg {
    color: rgba(0,0,0,.5);
    width: 25px;
    height: 20px;
    cursor: pointer
}

.header__icons .icon-user {
    position: relative
}

.header__icons .icon-user .icon {
    width: 20px;
    height: 20px;
    color: rgba(0,0,0,.5)
}

.header__icons .icon-user>svg {
    color: rgba(0,0,0,.5);
    width: 20px;
    height: 20px;
    cursor: pointer
}

.header__icons .icon-user:hover .header__login {
    display: block
}

.header__icons-separator {
    width: 1px;
    height: 24px;
    background: rgba(0,0,0,.5)
}

.search {
    width: 300px;
    height: 40px;
    border: 1px solid rgba(0,0,0,.1019607843);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    gap: 10px;
    box-sizing: border-box;
}

.search button {
    width: 17.5px;
    flex: 0 0 17.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    border: none;
    background: transparent;
    padding: 0 !important;
}

.search button svg {
    color: rgba(0,0,0,.5019607843);
    width: 17.5px;
    height: 17.5px
}

.search input {
    color: #000;
    width: 100%;
    appearance: none;
    border: none;
}

.search input::placeholder {
    color: #000
}

.header__login {
    position: absolute;
    top: 22px;
    right: 0;
    width: max-content;
    display: none;
    padding-top: 20px;
    z-index: 100
}

.header__login:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 9px solid rgba(0,0,0,0);
    border-right: 9px solid rgba(0,0,0,0);
    border-bottom: 12px solid #fff;
    position: absolute;
    right: 5px;
    top: 8px
}

.header__icons .icon-user .header__login-inner {
    background: #fff;
    width: 200px
}

.header__icons .icon-user .header__login-inner h5 {
    font-family: "Roboto",serif;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 20px 0;
    color: rgba(48,48,48,0.8117647059);
    cursor: default
}

.header__icons .icon-user .header__login-inner ul {
    padding: 20px
}

.header__icons .icon-user .header__login-inner ul li {
    padding-bottom: 20px
}

.header__icons .icon-user .header__login-inner ul li:last-child {
    padding-bottom: 0
}

.header__icons .icon-user .header__login-inner ul li a {
    display: flex;
    align-items: center
}

.header__icons .icon-user .header__login-inner ul li a span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4A8299;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff
}

.header__icons .icon-user .header__login-inner ul li a span svg {
    fill: #fff;
    color: #fff
}

.header__icons .icon-user .header__login-inner ul li a:hover svg {
    fill: #fff;
    color: #fff
}

.header__menu {
    height: 48px;
    width: 100%
}

.header__menu .container {
    padding: 0
}

.header__menu ul {
    display: flex;
    gap: 20px;
    padding-left: 0;
}

.header__menu ul li {
    margin-top: 5px
}

.header__menu ul li a {
    height: 38px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 15px;
    white-space: nowrap;
}

.header__submenu {
    width: 100%
}

.header__submenu .container {
    padding: 0
}

.header__submenu ul {
    display: flex;
    gap: 10px;
    padding-left: 12px;
    height: 40px
}

.header__submenu ul li {
    margin: 5px 0
}

.header__submenu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    width: 100%;
    height: 100%;
    background: rgba(74,130,153,.1);
    border: 1px solid rgba(74,130,153,.5);
    border-radius: 100px;
    padding: 0 10px
}

.header__submenu ul li.active a {
    background: #4A8299;
    color: #fff
}

.header.stuck .header__menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background: #fff
}

.header.stuck .header__submenu {
    margin-top: 48px;
    display: flex
}
.header__menu {
    overflow-y: scroll;
}

@media(min-width: 860px){
    .header__menu ul li.active a {
    background: #4A8299;
    border-radius: 6px;
    color: #fff
}
}
@media(max-width: 600px){
    .header__back, .header__icons{display: none;}
    .header__logo{margin: 0 auto;}
}