/* HEADER */
.header.index {
    position: relative;
    width: 100%;
    background: none;
}
.header {
    background: rgba(0, 98, 147, 1);
}
.header.index {
    position: absolute;
    width: 100%;
    z-index: 6;
}
.header__container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}
header.header.headerPages .header__container a.top--phone {
    margin-top: 2px;

}
header.header.headerPages .header__container a.top--mail {
    margin-top: 3px;
}
header.header.headerPages .header__container .header__search {
    margin-top: 0;
}
header.header.headerPages .header__container svg line{
    stroke: rgb(255 255 255);
}
header.header.headerPages .header__container .header__catalog-btn {
    color: #fff;
    border: 1px solid #ffffff;
}
header.header.headerPages .header__container .nav {
    margin-top: 0;
}
header.header.headerPages .header__container {

    height: 100px;
}
header.header.headerPages {
    height: 100px;
}
.header--right {
    display: flex
;    margin-left: auto;
}
.promo img {
    width: 100%;
}
.header__container::before {
   /* content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background-color: var(--black);*/
}
.header__logo {
    margin-right: 102px;
    transform: translateY(2px);
}
.header__catalog-btn {
    position: relative;
    z-index: 1;
    margin-left: 17px;
    padding: 11px 21px;
    height: 50px;
    font-family: var(--main-font);
    color: var(--white);
    border: 1px solid #006293;
    /* background-color: var(--accent-red); */
    transition: background-color 0.15s
    ease-in-out;
    font-size: 20px;
    color: #006293;
    display: flex
;
    align-items: baseline;
    gap: 5px;
}
@media (any-hover: hover) {
    .header__catalog-btn:hover svg line{
        stroke: #fff;
    }
    .header__catalog-btn:hover {
        background-color: #006293;
        color: #fff;
    }
}
.header__catalog-btn:active {
    background-color: #881020;
}
.header__nav {
    /*  margin-right: 29px;*/
 }
 .header--right {
     margin-top: 8px;
     /*margin-right: 14px;*/
}
.nav {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    column-gap: 31px;
    margin-top: 26px;
}
.burger-menu__logo {
    display: none;
}
.burger-menu__close {
    display: none;
}
.nav__link {
    position: relative;
    transition: color 0.15s ease-in-out;
}
.nav__link::after {
    content: "";
    position: absolute;
    /* left: 0; */
    right: 0px;
    top: 2px;
    height: 21px;
    background-color: #fff;
    transform: scale(0);
    transition: transform 0.15s
    ease-in-out;
    width: 1px;
}
a.top--phone {
    color: #fff;
    font-size: 20px;    letter-spacing: 0.8px;
    margin-top: 18px;
}
.header--right {
    position: relative;
}
.header--right:before {
   /* content: "";
    position: absolute;

    left: -35%;
    top: 18px;
    height: 21px;
    background-color: #fff;

    width: 1px;*/
}
.nav__link:nth-last-child(2)::after{
    display: none;
}
.nav__link.is-active {

    padding-right: 35px;
}
a.top--mail {
    margin-top: 19px;
    margin-left: 22px;
}
@media (any-hover: hover) {
    .nav__link:hover {
        color: var(--accent-red);
    }
    .nav__link:hover::after {
        transform: scale(1);
    }
}
.nav__link {
    padding-right: 35px;
    font-family: "TTNormsPro";
}
.nav__link:active {
    color: #fff;
}
.nav__link:active::after {
    transform: scale(1);
}
.nav__link.is-active {
    color: #fff;
    font-weight: 500;   transform: scale(1);
}
.nav__link::after {
    transform: scale(1);
}
.header__lang {
    margin-right: 12px;
}
.lang {
    position: relative;
}
.lang__selected {
    position: relative;
    z-index: 6;
    display: inline-block;
    padding: 2px 30px 2px 3px;
    min-width: 60px;
    font-family: var(--main-font);
    font-size: 16px;
    line-height: 18px;
    text-decoration: underline;
    border: none;
    border-right: 1px solid var(--white);
    color: var(--accent-red);
    cursor: pointer;
    background-color: var(--black);
}
.lang__selected::before {
    content: "";
    position: absolute;
    top: 53%;
    right: 13px;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-color: var(--white);
    mask: url("../images/arrow-down.svg") no-repeat center / 12px 8px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.is-visible.lang__selected::before {
    transform: translateY(-50%) rotate(180deg);
    background-color: var(--accent-red);
}
.lang__list {
    position: absolute;
    left: 0;
    right: 0;
    top: 113%;
    z-index: 5;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    background-color: var(--black);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-101%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.lang__list.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.lang__lang {
    padding: 6px 5px 5px 5px;
    width: 100%;
    font-family: var(--main-font);
    font-size: 16px;
    text-align: left;
    color: var(--white);
    border: none;
    transition: color 0.15s ease-in-out;
}
@media (any-hover: hover) {
    .lang__lang:hover {
        color: var(--accent-red);
    }
}
.lang__lang:active {
    color: var(--accent-red);
}
.header__btn-search {
    width: 22px;
    height: 22px;
    background-color: var(--white);
    mask: url("../images/header/search.svg") no-repeat center / 18px 18px;
    transition: background-color 0.15s ease-in-out;
}
.header__search {
    margin-top: 16px;
    margin-left: 20px;
}
@media (any-hover: hover) {
    .header__btn-search:hover {
        background-color: var(--accent-red);
    }
}
.header__btn-search:active {
    background-color: var(--accent-red);
}
.header__form-search {
    position: absolute;
    top: 0%;
    right: 30px;
    z-index: -1;
    transform: translateY(-35%);
    transition: transform 0.3s ease-in-out;
}
.header__form-search.is-active {
    transform: none;
}
.title-search-result {
    display: none!important;
}
.search__icon.search__submit {
    background: url(../images/header/search-black.svg) no-repeat center / 18px 18px;
    border: 0;
    font-size: 0;
    width: 22px;
    height: 22px;
    border-radius: 0;
}
div#title-search-catalog {
    max-width: 450px;
}
.search-page .input-group .input-group-append input:hover{

    opacity: 0.6;
}
.search__icon.search__submit:hover {
    opacity: 0.6;
}
.search-page .input-group .input-group-append input{
    width: 23px;
    height: 22px;
    background-color: var(--white);
    background: url(../images/header/search-black.svg) no-repeat center / 18px 18px;
    cursor: pointer;
    background-size: cover;
    border: 0;
    font-size: 0;
    margin-top: 7px;
    outline: none;
}
.search-page .input-group {
    display: flex;

}
.search-page .input-group-append {
    margin-left: -36px;
}
.search-page .form-control {
    color: #000000;
    border-radius: 25px;
    border: 0;
    padding: 10px 20px;
    border: 1px solid rgba(7, 65, 98, 1);
    width: 100%;
}

.header__input-search {
    padding: 7px 33px 7px 12px;
    width: 335px;
    height: 34px;
    font-family: var(--main-font);
    font-size: 16px;
    color: var(--white);
    border:0;
    background-color: rgba(7, 65, 98, 1);
    border-radius: 25px;
    outline: none;
}
.header__input-clear {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    background-color: var(--light-gray);
    mask: url("../images/close.svg") no-repeat center / 20px 20px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.header__input-clear.is-visible {
    opacity: 1;
}

.burger {
    position: relative;
    z-index: 1;
    display: none;
    padding: 0;
    width: 35px;
    height: 24px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.burger__line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
}
.burger::before,
.burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.2s ease-in-out;
}
.burger::before {
    top: 0;
}
.burger::after {
    top: calc(100% - 2px);
}

/* ВЫПАДАШКА CATALOG */
.catalog {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 36px;
    background-color: #1e1e1e;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-135%);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.catalog.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.catalog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 3px;
    background-color: var(--red );
}
.catalog__list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.catalog__close {
    display: none;
    padding: 6px 12px;
    width: 122px;
    color: var(--white);
    border: none
}
.catalog__item {
    position: relative;
    font-size: 15px;
    line-height: 19px;
    color: var(--white);
    border-right: 1px solid #616161;
}
.catalog__item:not(:last-child) {
    border-right: 1px solid #616161;
}

.catalog__item-name {
    padding: 15px 20px 8px 34px;
    border-bottom: 1px solid #616161;
}
.catalog__item.last {
    border-right: none;
}
.catalog__spc,
.catalog__aba {
    position: relative;
}
.catalog__spc::before,
.catalog__aba::before {
    content: "SPC";
    position: absolute;
    top: 0;
    left: 33px;
    z-index: 0;
    display: block;
    width: 116px;
    min-height: 45px;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    color: #363636;
}
.catalog__spc::before {
    content: "SPC";
}
.catalog__aba::before {
    content: "ABA";
}
.catalog__spc span,
.catalog__aba span {
    position: relative;
    z-index: 1;
}
.catalog__collection {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 13px;
    padding: 10px 40px 18px 14px;
}
.catalog__collection-item {
    position: relative;
    padding: 10px 15px 10px 23px;
    font-family: var(--main-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    border: none;
    transition: color 0.15s ease-in-out;
}
.catalog__collection-item.is-active {
    color: var(--red);
}
.catalog__collection-item.is-active::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 47%;
    transform: translateY(-50%);
    width: 24px;
    height: 8px;
    background-color: var(--red);
    mask: url("../images/arrow-catalog.svg") no-repeat center / 24px 8px;
}
@media (any-hover: hover) {
    .catalog__collection-item:hover {
        color: var(--accent-red);
    }
}
.catalog__collection-item:active {
    color: var(--accent-red);
}
.catalog__variants {
    position: absolute;
    top: 0;
    left: 77%;
    display: none;
    flex-direction: column;
    z-index: 1;
    min-width: 140px;
    min-height: 346px;
    padding: 10px 4px;
    background-color: #2d2d2d;
}
.last .catalog__variants {
    left: auto;
    right: 97%;
}
.catalog__variants.is-active {
    display: flex;
}
.catalog__variant {
    padding: 10px 13px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.15s ease-in-out;
}
div div #horizontal-multilevel-menu li:first-child ul li a{

}

div div #horizontal-multilevel-menu li:first-child:hover ul li a {

}
@media (any-hover: hover) {
    .catalog__variant:hover {
        color: var(--accent-red);
    }
}
.catalog__variant:active {
    color: var(--accent-red);
}
.catalog__back {
    display: none;
}
div #horizontal-multilevel-menu > li:first-child > ul >li.item-selected ul li a:hover {
    color: rgba(0, 98, 147, 1) !important;
}
div #horizontal-multilevel-menu > li:first-child > ul >li.item-selected ul li a {
color: #000!important;
}
@media (max-width: 1600px) {
    .catalog__list {
        grid-template-columns: 1fr;
    }
    .catalog__collection {
        position: absolute;
        top: 0;
        left: 341px;
        z-index: 2;
        display: none;
        min-width: 210px;
        min-height: 346px;
        padding: 10px 10px 18px 14px;
        background-color: var(--black);
    }
    .catalog__collection.is-active {
        display: flex;
    }
    .catalog__item:not(:last-child) {
        border-right: none;
    }
    .catalog__item-name {
        align-self: start;
    }
    .catalog__item-name.is-active {
        color: var(--red);
    }
    .catalog__spc::before,
    .catalog__aba::before {
        top: 26px;
        left: 177px;
        min-height: 45px;
        font-size: 60px;
    }
    .catalog__item-name span {
        display: inline-block;
        max-width: 300px;
    }
    .catalog__variants {
        left: 100%;
    }
    .last .catalog__variants {
        left: 97%;
        right: auto;
    }
    .catalog__collection-item {
        padding: 10px 25px 10px 23px;
        width: 100%;
        text-align: start;
    }
    .catalog__collection-item.is-active::before {
        content: "";
        position: absolute;
        left: auto;
        right: 0;
        top: 47%;
        transform: translateY(-50%);
        width: 24px;
        height: 8px;
        background-color: var(--red);
        mask: url(../images/arrow-catalog.svg) no-repeat center / 24px 8px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding-block: 14px;
    }
    .header__container {
        z-index: 2;
    }
    .header__nav {
        margin-right: 0;
    }
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 15;
        padding: 85px 20px;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        justify-content: initial;
        align-items: flex-start;
        row-gap: 35px;
        font-size: 17px;
        background-color: var(--black);
        opacity: 0;
        visibility: hidden;
        transform: translateX(101%);
        transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out;
    }
    .nav.is-active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .burger-menu__logo {
        display: block;
        position: absolute;
        top: 17px;
        left: 50%;
        transform: translateX(-50%);
        width: 170px;
        height: 26px;
    }
    .burger-menu__close {
        position: absolute;
        top: 13px;
        right: 13px;
        display: block;
        margin: 3px;
        padding: 0;
        width: 25px;
        height: 25px;
        border: none;
        background-color: var(--white);
        mask: url(../images/close.svg) no-repeat center / 23px 23px;
        cursor: pointer;
    }
    .header__catalog-btn {
        margin-left: 0;
        padding: 8px 30px;
        height: auto;
        font-size: 20px;
    }
    .header__lang {
        margin-right: 32px;
    }
    .header__search {
        margin-right: 32px;
    }
    .burger {
        display: block;
        grid-area: burger;
    }
    .catalog {
        position: fixed;
        z-index: 2;
        top: 58px;
        padding-top: 0;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: calc(100vh - 58px);
        height: 100%;
    }
    .catalog__list {
        padding-top: 24px;
    }
    .catalog__close {
        display: inline-block;
        margin-bottom: 12px;
        background-color: var(--accent-red);
    }
    @media (any-hover: hover) {
        .catalog__close:hover {
            background-color: #881020;
        }
    }
    .catalog__close:active {
        background-color: #881020;
    }
    .catalog__collection {
        top: 0;
        left: 0;
        right: 0;
        height: calc(100vh - 58px);
        display: flex;
        padding: 10px 12px 18px 12px;
        transform: translateX(110%);
        transition: transform 0.5s ease-in-out;
    }
    .catalog__collection.is-active {
        transform: none;
    }
    .catalog__item {
        position: static;
    }
    .catalog__back {
        display: block;
        margin-left: 12px;
        margin-bottom: 11px;
        padding: 6px 32px;
        font-family: var(--main-font);
        font-size: 13px;
        text-transform: uppercase;
        text-align: start;
        color: var(--white);
        border: none;
        cursor: pointer;
        background: url("../images/arrow-left.svg") no-repeat left center / 25px 10px;
    }
    .last .catalog__variants {
        left: 0;
        right: 0;
    }
    .catalog__collection-item.is-active::before {
        content: none;
    }
    .catalog__collection-item {
        padding: 10px 25px 10px 7px;
    }
    .catalog__variants {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        transform: translateX(110%);
        transition: transform 0.5s ease-in-out;
    }
    .catalog__variants.is-active {
        transform: none;
    }
    .header__form-search {
        top: 147%;
    }
}

@media (max-width: 768px) {
    .header__form-search {
        width: 200px;
    }
    .header__input-search {
        width: 100%;
    }
    .catalog__item-name {
        padding: 15px 20px 8px 7px;
    }
    .catalog__spc::before,
    .catalog__aba::before {
        left: 160px;
        font-size: 57px;
    }
}

@media (max-width: 550px) {
    .header__lang {
        margin-right: 25px;
    }
    .header__search {
        margin-right: 25px;
    }
}

@media (max-width: 360px) {
    .header__lang {
        margin-right: 18px;
    }
    .header__search {
        margin-right: 18px;
    }
}
/* end header */


.header-wishlist {
    height: 17px;
    width: 20px;
}
.header-wishlist-block {
    margin-top: 3px;
    margin-left: 15px;
}
.wishlist-text {
    padding-top: 30px;
}
.index .header-wishlist-block {
    margin-top: 20px;
    margin-left: 15px;
}
.toFavourite.is-active svg:nth-child(1) {
    display: none;
}
.toFavourite.is-active svg:nth-child(2) {
    display: flex;
}
.product-info__actions_ svg {
    display: none;
}
.product-info__actions_ svg.active {
    display: flex;
}

.product-info__actions_  .toFavourite.is-active svg:nth-child(1) {
    display: none;
}
.product-info__actions_  .toFavourite.is-active svg:nth-child(2) {
    display: flex;
}


@media (max-width: 1800px) {
    .mb-4.catalog-section section.product-grid.row .product-item-container .product-item-image-original, .mb-4.catalog-section section.product-grid.row .product-item-container .product-item-image-alternative, .catalogs .page-catalog .catalog__content .product-item-container .product-item-image-original, .catalogs .page-catalog .catalog__content .product-item-container .product-item-image-alternative {
        background-size: cover !important;
    }
}


#horizontal-multilevel-menu ul.active {
    display: flex;
}

@media (max-width: 1024px) {
    .nav.visible #horizontal-multilevel-menu li ul {
        display: none!important;
    }
}
