.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 22px 0;
    z-index: 9;
    -webkit-animation: headerOpacity 1s ease-in-out;
    animation: headerOpacity 1s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}
.header-main {
    position: absolute;
    z-index: 993;
    left: 0;
    right: 0;
    top: 0;
    padding: 30px 0 0;
    animation: headerOpacity 1s ease-in-out;
}
.header-main__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.header-main__search {
    width: 40%;
    position: relative;
    z-index: 99;
    top: -10px;
    left: -15px;
}
.header-main__search .header-search {
    margin-left: 0;
}
.header-main__logo {
    width: 30%;
    text-align: center;
}
.header-main__logo a {
    display: flex;
    justify-content: center;
}
.header-main__right {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}
.header-main__right a {
    display: flex;
    align-items: center;
}
a.header-login {
    gap: 4px;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
}
a.header-login span {
    line-height: 1;
}
.header-main__right svg {
    display: block;
}
.header-lang {
    position: relative;
}
.header-lang__main {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.header-lang__main span {
    line-height: 1;
}
.header-lang__main svg {
    transition: transform 0.3s ease-in-out;
}
.header-lang.active .header-lang__main svg {
    transform: rotate(180deg);
}
.header-lang__drop {
    position: absolute;
    width: 54px;
    box-shadow: 0px 6px 16px 0px #00000026;
    background-color: #ffffff;
    border-radius: 4px;
    right: -5px;
    top: 30px;
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.3s ease-in-out;
}
.header-lang__drop.active {
    opacity: 1;
    visibility: visible;
}
.header-lang__drop ul {
    padding: 6px 0;
    margin: 0;
    list-style-type: none;
}
.header-lang__drop ul li span,
.header-lang__drop ul li a {
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    padding: 6px 0;
    text-align: center;
    width: 100%;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}
.header-lang__drop ul li.active span {
    background-color: #D0D4E4;
}
.header-lang__drop ul li a:hover {
    background-color: #D0D4E4;
}
.header-main-menu {
    padding: 31px 0;
}
.header-main-menu > ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.header-main-menu > ul > li > a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 17px;
    border-radius: 6px 6px 0 0;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.header-main-menu .header-catalog-dropdown {
    position: absolute;
    top: 62px;
    width: 1360px;
    left: 50%;
    transform: translateX(-50%);
}
.fixed-header-menu.main-fixed-header {
    display: none;
}
.fixed-header-menu.main-fixed-header.is-visible {
    display: block;
}
.fixed-header-menu {
    top: 10px;
    opacity: 1;
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    width: 1360px;
    background: #FFFFFF;
    z-index: 9999999999;
    border-radius: 6px;
    padding: 0 25px;
    will-change: transform;
    transition: opacity 0.15s ease-in-out, transform 200ms linear;
}

.fixed-header-menu:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.05),
                0px 11px 11px 0px rgba(0, 0, 0, 0.04),
                0px 26px 15px 0px rgba(0, 0, 0, 0.03),
                0px 45px 18px 0px rgba(0, 0, 0, 0.01),
                0px 71px 20px 0px rgba(0, 0, 0, 0);
}
.fixed-header-menu__logo {
    width: 100px;
}
.fixed-header-menu__logo img {
    width: 98px;
    display: block;
}
.fixed-header-menu__menu > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 38px;
}
.fixed-header-menu__li {
    position: relative;
}
.fixed-header-menu__menu > ul li > a {
    padding: 23px 0;
    display: inline-block;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.4s ease-in-out;
}
.fixed-header-menu__li:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    opacity: 0;
    z-index: 2;
    visibility: hidden;
    background-color: #00238F;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.fixed-header-menu__menu {
    width: calc(100% - 550px);
    display: flex;
    justify-content: center;
}
.fixed-header-menu__search {
    width: 250px;
}
.header-search {
    display: flex;
    align-items: center;
    margin-left: 10px;
    position: relative;
    height: 40px;
}
.header-search svg {
    position: relative;
    z-index: 1;
    opacity: 0.7;
    margin-left: 14px;
    width: 18px;
    display: block;
}
.header-search svg.close {
    display: none;
}
.header-search.active svg.open {
    display: none;
}
.header-search.active svg.close {
    display: block;
    cursor: pointer;
}
.header-search input {
    border: unset;
    position: absolute;
    color: #000000;
    font-size: 12px;
    padding-left: 48px;
    outline: none;
    left: 0;
    width: 100%;
    height: 40px;
    transition: all 0.4s ease-in-out;
}
.header-search.active input,
.header-search input:focus  {
    background: #00238F0D;
}
.header-main__search .fixed-header-menu__search {
    width: 483px;
}
.header-main__search .header-search.active input,
.header-main__search .header-search input:focus  {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.05),
                0px 11px 11px 0px rgba(0, 0, 0, 0.04),
                0px 26px 15px 0px rgba(0, 0, 0, 0.03),
                0px 45px 18px 0px rgba(0, 0, 0, 0.01),
                0px 71px 20px 0px rgba(0, 0, 0, 0);
}
.header-main__search .header-search input {
    background-color: unset;
    color: #000000;
    font-size: 13px;
    padding-left: 47px;
}
.header-main__search .header-search input::placeholder {
    color: rgba(0, 0, 0, 0.7);
}
.header-main__search .search-result {
    top: 42px;
    right: unset;
    left: 0;
    border-radius: 4px;
    width: 483px;
}
.header-main__search .header-search.active svg.open {
    display: block;
}
.header-main__search .header-search svg.close {
    position: absolute;
    right: 18px;
}
.fixed-header-menu__right {
    width: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    gap: 28px;
}
.fixed-header-menu__right svg {
    display: block;
}
.header-catalog-dropdown {
    position: fixed;
    overflow: hidden;
    border-radius: 4px;
    left: 0;
    right: 0;
    background: #fff;
    top: 64px;
    padding: 32px 28px;
    box-shadow: 0px 26px 15px 0px #00000008;
    min-height: 544px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: transform 0.2s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header-catalog-dropdown__left {
    width: 240px;
}
.header-catalog-dropdown__left > ul {
    flex-wrap: wrap;
    margin: 0;
    gap: 0;
    list-style-type: none;
    padding: 0;
}
.header-catalog-dropdown__left ul li {
    width: 100%;
    border-radius: 4px;
}
.header-catalog-dropdown__left ul li svg {
    transition: stroke 0.4s ease-in-out;
}
.header-catalog-dropdown__left ul li > a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 8px 6px;
    gap: 7px;
    width: calc(100% - 12px);
    box-sizing: border-box;
    transition: background-color 0.4s ease-in-out;
}
.header-catalog-dropdown__left ul li > a img,
.header-catalog-dropdown__left ul li > a svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.header-catalog-dropdown__left ul li > a svg path {
    stroke: #7A7A7A;
}
.header-catalog-dropdown__right {
    height: 100%;
    position: absolute;
    z-index: 2;
    left: 265px;
    background: #fff;
    top: 0;
    overflow: hidden;
    padding: 44px 25px 36px 25px;
    right: 0;
    display: flex;
    align-items: flex-start;
}
.header-catalog-dropdown-child__params {
    width: 265px;
    padding-left: 88px;
    position: relative;
    top: -6px;
}
.header-catalog-dropdown-child__params:before {
    content: "";
    position: absolute;
    left: 36px;
    height: 100%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(rgba(217, 217, 217, 0) 0%, #D9D9D9 50.48%, rgba(217, 217, 217, 0) 100%);
}

.header-catalog-dropdown-child__collection.collection-main {
    padding-left: 60px;
}
.fix-params-item__title {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
}
.fix-params-item {
    margin-bottom: 30px;
}
.fix-params-item ul {
    list-style-type: none;
    padding: 0;
    margin: 14px 0 0;
    display: block;
}
.fix-params-item ul li {
    margin-bottom: 16px;
}
.fix-params-item ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
}
.fix-params-item__image {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e0f1f6;
}
.fix-params-item ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
li.dropdown-child > a {
    position: relative;
}
li.dropdown-child > a:before {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 10px;
    background-image: url("/images/svg/arrow-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.header-catalog-dropdown-child {
    z-index: 2;
    height: 100%;
    position: absolute;
    left: 265px;
    background: #fff;
    top: 0;
    overflow: auto;
    padding: 44px 25px 36px 25px;
    right: 0;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
}
.header-catalog-dropdown-child__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 18px;
    width: calc(100% - 540px);
    padding-left: 10px;
    overflow: auto;
    max-height: 100%;
    position: relative;
}
.header-catalog-dropdown-child__item-photo {
    width: 144px;
    height: 144px;
    margin: auto;
}
.header-catalog-dropdown-child__item-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
 a.header-catalog-dropdown-child__item {
     display: block;
     border-radius: 6px;
     padding-bottom: 15px;
     transition: background-color 0.4s ease-in-out;
}
.header-catalog-dropdown-child__item-name {
    text-align: center;
    color: #000000;
    font-size: 13px;
    margin-top: 3px;
    padding: 0 4px;
}
.header-catalog-dropdown-child__item-count {
    color: rgba(0, 0, 0, 0.4);
    font-size: 13px;
    text-align: center;
}
.header-catalog-dropdown-child__collection {
    width: 275px;
    padding-left: 22px;
    margin-top: -4px;
}
.header-catalog-dropdown-child__collection > span {
    font-size: 14px;
}
.header-catalog-dropdown-child__banner {
    width: 265px;
    position: relative;
}
.header-catalog-dropdown-child__banner img {
    width: 100%;
}
.header-catalog-dropdown-child__banner__top {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
}
.header-catalog-dropdown-child__banner__top span:nth-child(1) {
    font-family: 'Poppins', sans-serif;
    color: #4F909C;
    font-weight: 300;
    font-size: 48px;
    text-align: center;
    width: 100%;
    display: block;
    line-height: 1.1;
}
.header-catalog-dropdown-child__banner__top span:nth-child(2) {
    font-size: 13px;
    margin-top: 18px;
    display: block;
    width: 100%;
    text-align: center;
    color: #124049;
}
a.header-catalog-dropdown-child__btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    padding: 14px 0;
    justify-content: center;
    color: #ffffff !important;
}
.header-catalog-dropdown-child__collection ul {
    margin-top: 8px;
    list-style-type: none;
    padding: 0;
    display: block;
}
.header-catalog-dropdown-child__collection ul li {
    margin-bottom: 10px;
}
.header-catalog-dropdown-child__collection ul li a {
    padding: 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease-in-out;
}
.cart-header,
.fav-header{
    position: relative;
}
span.cart-header__count,
span.fav-header__count,
.header-mobile-cart__count {
    background-color: #00238F;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
span.fav-header__count {
    background-color: #B90652;
}
span.cart-header__count.hidden,
span.fav-header__count.hidden {
    opacity: 0;
}
.search-result {
    position: absolute;
    overflow: auto;
    max-height: 85vh;
    opacity: 0;
    visibility: hidden;
    top: 65px;
    padding: 32px 32px;
    right: 0;
    width: 500px;
    background: #fff;
    box-shadow: 0 26px 15px 0 #00000008;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.search-result.active {
    opacity: 1;
    visibility: visible;
}
.search-result-overflow {
    z-index: 992;
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: #001A254D;
}
.search-result-overflow.active {
    opacity: 1;
    visibility: visible;
}
.search-result__cat {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 28px;
}
.search-result__cat:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -32px;
    right: -32px;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 50.48%, rgba(217, 217, 217, 0) 100%);
}
.search-result__cat a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    margin-bottom: 13px;
    transition: color 0.3s ease-in-out;
}
.search-result__cat a span {
   color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
}
a.search-result-prod {
    display: flex;
    align-items: center;
}
.search-result-prod__photo {
    width: 138px;
    height: 138px;
}
.search-result-prod__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-result-prod__right {
    width: calc(100% - 138px);
    padding-left: 16px;
}
.search-result-prod__brand {
    color: rgba(0, 0, 0, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    margin-top: -12px;
}
.search-result-prod__name {
    color: #000000;
    font-size: 14px;
    margin: 7px 0 20px;
    transition: color 0.3s ease-in-out;
}
.search-result-prod__price {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #000000;
}
.search-result__btn {
    margin-top: 31px;
}
.search-result__btn a {
    border: 1px solid #00238F80;
    width: 100%;
    display: inline-block;
    padding: 7px 0;
    text-align: center;
    color: #00238F;
    font-size: 14px;
    outline: none;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.search-result__cat-name mark {
    font-weight: 700;
    background-color: unset;
}
.search-result__cat-scroll {
    max-height: 200px;
    overflow: auto;
    width: 100%;
    padding-right: 2%;
}
.search-result__no-tile {
    text-align: center;
}
.fixed-header-menu-xs,
.header-catalog-dropdown__back,
.header-catalog-dropdown__back-child {
    display: none;
}
.smooth-info-section-head {
    position: absolute;
    top: 0;
    background: unset;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}
.smooth-info-section-head.white .smooth-info__item,
.smooth-info-section-head.white .smooth-info__item a {
    color: #ffffff;
}
.smooth-info-section-head.white .smooth-info__item:before {
    border-color: #ffffff;
}
.header-mobile,
.cooping-xs,
.swiper-img-center-xs,
button.product-mini-buy,
.fixed-header-menu-xs-bottom {
    display: none;
}
.fixed-header-menu__scroll {
    display: flex;
    align-items: center;
    width: 100%;
}
.mobile-search-block {
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    top: 0;
    background: #fff;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.mobile-search-block.active {
    opacity: 1;
    visibility: visible;
}
.mobile-search-block__search {
    height: 60px;
    position: relative;
}
.mobile-search-block__search svg.open {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}
.mobile-search-block__search svg.close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.mobile-search-block__search input {
    width: 100%;
    height: 100%;
    padding: 0 48px;
    border: unset;
    outline: none;
}
.mobile-search-block__res {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    max-height: 80vh;
    padding: 0 16px 20px;
    opacity: 0;
    visibility: hidden;
    background-color: #ffffff;
}
.mobile-search-block__res.active {
    opacity: 1;
    visibility: visible;
}