.impersonating {
    font-size: 12px;
    color: var(--white--white100, #FFFFFF);
    text-align: center;
    background-color: var(--black--black10, #222324);
    padding: 5px 0;
}
.header__main {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--white--white100, #ffffff);
    border-bottom: 1px solid var(--grey--grey80, #d7d7d7);
}
.header__wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 8px 0 12px;
    gap: 12px;
}
.header__top {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    min-width: 0;
}
.header__burger {
    display: none;
    position: relative;
    width: 20px;
    height: 16px;
    z-index: 3;
    cursor: pointer;
    flex-shrink: 0;
}
.header__burger::before, .header__burger::after {
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 2px solid var(--black--black10, #222324);
    left: 0;
    transition: all 0.2s linear;
    border-radius: 10px;
    transform-origin: center;
}
.header__burger::before {
    top: 0;
}.header__burger::after {
    bottom: 0;
}
.header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 2px solid var(--black--black10, #222324);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    transition: all 0.2s linear;
}
.header__burger.active span {
    transform: translateY(-50%) scale(0);
}
.header__burger.active::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.header__burger.active::after{
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}
.categories-btn__icon {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.categories-btn__icon::before,
.categories-btn__icon::after,
.categories-btn__icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 2px solid var(--white--white100, #FFFFFF);
    border-radius: 10px;
    transition: all 0.2s linear;
    transform-origin: center;
}
.categories-btn__icon::before {
    top: 2px;
}
.categories-btn__icon::after {
    bottom: 2px;
}
.categories-btn__icon span {
    top: 50%;
    transform: translateY(-50%);
}
.categories-btn.active .categories-btn__icon span,
.categories-btn__icon.active span {
    transform: translateY(-50%) scale(0);
}
.categories-btn.active .categories-btn__icon::before,
.categories-btn__icon.active::before {
    width: calc(100% * 1.41);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.categories-btn.active .categories-btn__icon::after,
.categories-btn__icon.active::after {
    width: calc(100% * 1.41);
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.header__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    flex: 0 1 auto;
    min-width: 0;
}
.header__nav::before,
.header__nav::after {
    display: none;
}
.nav__link {
    color: var(--azure--azure30, #223C6A);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.nav__link:hover {
    color: var(--azure--azure40, #25457F);
}
.he
.header__logo {
    flex: 0 1 auto;
    min-width: 0;
}
.header__logo a {
    display: block;
    line-height: 0;
}
.header__logo img {
    display: block;
    height: auto;
    max-height: 44px;
    width: auto;
    max-width: min(200px, 36vw);
    object-fit: contain;
}
.header__actions {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}
.header__search-row {
    display: flex;
    align-items: center;
    gap: 16px;

}
.header__search-bar {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--azure-azure50, #2E5AA4);
}
.search-bar__icon {
    margin-left: 16px;
    color: var(--black-black40, #666);
}
input[type="text"].search-bar__input {
    flex: 1 3 420px;
    align-self: stretch;
    min-width: 0;
    border: 0;
    border-radius: 6px 0 0 6px;
    padding-left: 8px;
    height: 100%;
    font-size: 16px;
}
input[type="text"].search-bar__input:hover,
input[type="text"].search-bar__input:focus {
    border: 0 !important;
}
input[type="text"].search-bar__input::placeholder {
    opacity: 1;
    color: var(--black-black40, #666);
    transition: opacity 0.15s ease;
}
input[type="text"].search-bar__input:focus::placeholder {
    opacity: 0;
}
input[type="text"].search-bar__input:focus::-webkit-input-placeholder {
    opacity: 0;
}
input[type="text"].search-bar__input:focus::-moz-placeholder {
    opacity: 0;
}
input[type="text"].search-bar__input:focus:-ms-input-placeholder {
    opacity: 0;
}
.search-bar__submit {
    border-radius: 0 6px 6px 0;
}
.header__nav-mobile {
    display: none;
}

@media only screen and (max-width: 992px)  {
    .header__wrapper {
        padding: 15px 0 8px;
    }
    .header__top {
        gap: 10px;
    }
    .header__burger {
        display: block;
    }
    .header__logo img {
        max-height: 36px;
    }
    .header__top .header__nav {
        display: none;
    }
    .header__nav {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .nav__link {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .header__nav-mobile {
        display: flex;
        
        border-top: 1px solid var(--grey--grey80, #D7D7D7);
        margin-left: -15px;
        margin-right: -15px;
        padding-top: 8px;
    }
    .header__actions {
        display: none;
    }
    .header__categories-btn {
        display: none;
    }
    .search-bar__submit {
        display: none;
    }
    .header__search-bar > input[type="text"].search-bar__input,
    .header__search-bar > .region-dropdown {
        flex: 0 1 50%;
        padding-right: 0;
        font-size: 14px;
    }
    .header__search-bar > .region-dropdown {
        max-width: none;
        min-width: 50%;
    }
}