/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

/* Consts */
:root{
    --color-orange: #F07C00;
    --color-black: #151515;
    --color-gray: #BDBDBD;
    --color-gray__dark: #828282;
    --color-gray__light: #FCFCFC;
    --color-white: #FFFFFF;

    --transition-base: .3s all ease-in-out;

    --main-color: #F07C00 !important;
}

/* Unset Styles */
*, 
*::after, 
*::before{
    font-family: 'Raleway', sans-serif!important;
    font-feature-settings: 'pnum' on, 'lnum' on;
    font-style: normal;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
    width: 100%;
}

body{
    width: 100%;
    overflow-x: hidden;
}


body.overflow{
    overflow: hidden;
}

ul{
    list-style: none;
}

a{
    color: var(--color-black);
    text-decoration: unset;
    transition: var(--transition-base);
}

svg{
    width: 100%;
    height: 100%;
}

.container{
    width: 100%;
    max-width: 2210px;
    padding: 0 16px;
    box-sizing: border-box;
}

main{
    min-height: calc((var(--vh, 1vh) * 100) - 678px);
    background-color: #FFFAF3;
    overflow-x: hidden;
    width: 100%;
}

main.main--margin{
    margin-top: 128px;
}

@media screen and (max-width: 1180px){
    main{
        min-height: calc((var(--vh, 1vh) * 100) - 590px);
    }

    main.main--margin{
        margin-top: 84px;
    }
}

@media screen and (max-width: 768px){
    main{
        min-height: calc((var(--vh, 1vh) * 100) - 683px);
    }

    main.main--margin{
        margin-top: 71px;
    }
}

@media screen and (max-width: 568px){
    main{
        min-height: calc((var(--vh, 1vh) * 100) - 673px);
    }

    main.main--margin{
        margin-top: 61px;
    }
}

/* Header Start */

.header{
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    flex-direction: column;
    padding: 17px 0 17px;
    transition: var(--transition-base);
    overflow: visible;
}

.header.active{
    overflow: visible;
}

.header.dark{
    background-image: url(../images/header/header--bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.header.fixed{
    position: fixed;
}

.header--top{
    display: flex;
    align-items: center;
    margin-bottom: 23px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.header--top__nav{
    margin-left: auto;
}

.header--top__nav ul{
    display: flex;
    align-items: center;
}

.header--top__nav ul li{
    margin-right: 40px;
    overflow: hidden;
}

.header--top__nav ul li:last-child{
    margin-right: unset;
}

.header--top__nav ul li a{
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--color-gray);
    position: relative;
    transition: var(--transition-base);
}

.header--top__nav ul li a:hover,
.header--top__nav ul li a:focus{
    color: var(--color-orange);
}

.header--top__nav ul li a:hover::after,
.header--top__nav ul li a:focus::after{
    opacity: 1;
    left: 0;
}

.header--top__nav ul li a::after{
    content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 1px;
    background-color: var(--color-orange);
    top: calc(100% + 2px);
    transition: var(--transition-base);
    opacity: 0;
    left: -25px;
}

.header--top__phone{
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-gray);
    margin: 0 auto 0 455px;
    overflow: hidden;
    position: relative;
    padding-bottom: 2px;
    margin-top: -2px;
}

.header--top__phone:hover,
.header--top__phone:focus{
    color: var(--color-orange);
}

.header--top__phone:hover::after,
.header--top__phone:focus::after{
    opacity: 1;
    left: 0;
}

.header--top__phone::after{
    content: '';
    display: block;
    position: absolute;
    top: calc(100% - 2px);
    width: 26px;
    height: 1px;
    background-color: var(--color-orange);
    transition: var(--transition-base);
    opacity: 0;
    left: -25px;
}

.header--bottom{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
}

.header--bottom__logo{
    width: 250px;
    min-width: 250px;
    height: 60px;
}

.header--bottom__logo svg{
    fill: var(--color-white);
    transition: var(--transition-base);
}

.header--bottom__catalog{
    padding: 18px 51px;
    background-color: var(--color-orange);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    margin: 0 100px;
    cursor: pointer;
    transition: var(--transition-base);
    border-radius: 2px;
    text-transform: uppercase;
}

.header--bottom__catalog:hover{
    background-color: var(--color-white);
}

.header__bottom--search__form{
    position: relative;
}

.header__bottom--search__form--input__wrap{
    display: flex;
    width: 435px;
    height: 60px;
}

.header__bottom--search__form--input{
    width: 100%;
    height: 100%;
    outline: unset;
    background-color: transparent;
    transition: var(--transition-base);
    border: 1px solid #A0A3BD;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: var(--color-white);
    border-radius: 2px;
    padding-left: 42px;
}

.header__bottom--search__form--input:hover,
.header__bottom--search__form--input:focus{
    border-color: var(--color-white);
}

.header__bottom--search__form--input::placeholder{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #BDBDBD;
}

.header__bottom--search__form--input__wrap button{
    outline: none;
    border: none;
    box-shadow: unset;
    width: 37px;
    height: 37px;
    background: transparent;
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    left: 4px;
    padding: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__bottom--search__form--input__wrap button svg{
    width: 16px;
    height: 16px;
    stroke: #BDBDBD;
}

.header__bottom--search__form--input__wrap button span{
    display: none;
}

.header--bottom__compare{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    position: relative;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.header--bottom__compare.show{
    opacity: 1;
}

.header--bottom__compare.click{
    pointer-events: inherit;
}

.header--bottom__compare--wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header--bottom__compare span{
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--color-orange);
    transition: var(--transition-base);
    margin-top: 3px;
    position: absolute;
    top: calc(100% + 5px);
    opacity: 0;
    pointer-events: none;
}

.header--bottom__compare svg{
    width: 27px;
    height: 26px;
    transition: var(--transition-base);
    fill: var(--color-gray);
}

.header--bottom__compare--count{
    position: absolute;
    right: -10px;
    top: -10px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-black);
    border-radius: 50%;
    background-color: var(--color-gray);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header--bottom__compare--count.orange{
    background-color: var(--color-orange);
}

.header--bottom__compare--count.hide{
    display: none;
}

.header--bottom__compare:hover span,
.header--bottom__compare:focus span{
    opacity: 1;
    pointer-events: inherit;
}

.header--bottom__compare:hover svg,
.header--bottom__compare:focus svg{
    fill: var(--color-orange);
}

.header--bottom__location{
    margin-left: auto;
}

.header--bottom__location--wrap{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header--bottom__location--icon__wrap{
    width: 37px;
    height: 22px;
    display: flex;
    justify-content: flex-start;
}

.header--bottom__location svg{
    width: 21px;
    height: 22px;
    stroke: var(--color-gray);
    transition: var(--transition-base);
    position: relative;
}

.header--bottom__location svg::after{
    content: '';
    display: block;
    width: 16px;
    height: 22px;
    position: absolute;
    top: 0;
    right: 0;
}

.header--bottom__location--wrap .shop-regions-action-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-gray);
    border: unset;
    position: relative;
    top: 2px;
}

.header--bottom__location--wrap:hover svg{
    stroke: var(--color-orange);
}

.header--bottom__location--wrap:hover .shop-regions-action-link{
    color: var(--color-orange);
}

.header--bottom__location--wrap .shop-regions-confirm-window {
    z-index: 50;
    right: 0;
    left: auto;
}

.header--mobile__menu--location .shop-regions-confirm-window {
    right: unset;
    left: -200px;
    bottom: 0;
    top: auto;
}


.header--bottom__auth{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-base);
    margin: 0 100px;
}

.header--bottom__auth svg{
    width: 24px;
    height: 28px;
    fill: transparent;
    stroke: var(--color-gray);
    transition: var(--transition-base);
}

.header--bottom__auth.active svg{
    fill: var(--color-gray);
}

.header--bottom__auth span{
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--color-orange);
    position: absolute;
    top: calc(100% + 5px);
    width: max-content;
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.header--bottom__auth:hover svg,
.header--bottom__auth:focus svg{
    stroke: var(--color-orange);
}

.header--bottom__auth.active:hover svg,
.header--bottom__auth.active:focus svg{
    fill: var(--color-orange);
}

.header--bottom__auth:hover span,
.header--bottom__auth:focus span{
    opacity: 1;
    pointer-events: inherit;
}

.header--bottom__cart{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition-base);
    pointer-events: inherit;
    opacity: 1;
}

.header--bottom__cart.hide{
    opacity: 0;
    pointer-events: none;
}

.header--bottom__cart--icon{
    width: 27px;
    height: 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header--bottom__cart--icon.hide{
    opacity: 0;
    pointer-events: none;
}

.header--bottom__cart--icon svg{
    width: 100%;
    height: 100%;
    fill: var(--color-gray);
    transition: var(--transition-base);
}

.dl-load-circle{
    position: absolute;
    top: 2px;
    left: 2px;  
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-base);
}

.dl-load-circle.show{
    opacity: 1;
}

@keyframes rotating {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.dl-load-circle svg{
    animation: rotating 2s linear infinite;
    transform-origin: center center;   
}

.header--bottom__cart:hover .header--bottom__cart--icon svg{
    fill: var(--color-orange);
}

.header--bottom__cart--count{
    position: absolute;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-orange);
    color: var(--color-black);
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    border-radius: 50%;
    border: 2px solid var(--color-black);
    top: -11px;
    right: -11px;
}

.header--bottom__cart small{
    position: absolute;
    top: calc(100% + 5px);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--color-orange);
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.header--bottom__cart:hover small,
.header--bottom__cart:focus small{
    opacity: 1;
    pointer-events: inherit;
}

header.inversion{
    background-color: #DFDFDF;    
}

header.inversion .header--bottom__logo svg{
    fill: var(--color-black);
}

header.inversion .header--top__nav ul li a,
header.inversion .header--top__phone{
    color: var(--color-black);
}

header.inversion .header--bottom__catalog{
    background-color: transparent;
    border: 1px solid var(--color-black);
}

header.inversion .header--bottom__catalog:hover{
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

header.inversion .header__bottom--search__form--input{
    border-color: var(--color-gray__dark);
    color: var(--color-black);
}

header.inversion .header__bottom--search__form--input::placeholder{
    color: var(--color-gray__dark);
}

header.inversion .header__bottom--search__form--input__wrap button svg{
    stroke: var(--color-gray__dark);
}

header.inversion .header--bottom__location svg{
    stroke: var(--color-black);
}

header.inversion .header--bottom__location--wrap .shop-regions-action-link,
header.inversion .header--bottom__location--wrap .shop-regions-action-link .shop-regions__link,
header.inversion .header--bottom__location--wrap .shop-regions-action-link span{
    color: var(--color-black);
}

header.inversion .header--bottom__auth svg{
    stroke: var(--color-black);
    fill: transparent;
}

header.inversion .header--bottom__auth.active svg{
    fill: var(--color-black);
}

header.inversion .header--bottom__auth:hover svg{
    fill: var(--color-orange);
    stroke: var(--color-orange);
}

header.inversion .header--bottom__cart--icon svg{
    fill: var(--color-black);
}

header.inversion .header--bottom__compare svg{
    fill: var(--color-black);
}

header.inversion .header--bottom__compare.click:hover svg{
    fill: var(--color-orange);
}

header.inversion .header--bottom__location--wrap:hover svg{
    stroke: var(--color-orange);
}

header.inversion .header--bottom__location--wrap:hover .shop-regions-action-link,
header.inversion .header--bottom__location--wrap:hover .shop-regions-action-link .shop-regions__link,
header.inversion .header--bottom__location--wrap:hover .shop-regions-button span{
    color: var(--color-orange);
}

.header--mobile__btn,
.header--mobile__menu{
    display: none;
}

@media screen and (max-width: 2400px){
    .container{
        padding: 0 80px;
    }

    .header--top__nav{
        margin-left: 635px;
    }

    .header--top__phone{
        margin: 0px auto 0 390px;
    }
}

@media screen and (max-width: 1800px){
    .container{
        padding: 0 40px;
    }
}

@media screen and (max-width: 1700px){
    .header--top__nav{
        margin-left: 534px;
    }

    .header--bottom__catalog{
        margin: 0 50px;
    }

    .header--bottom__auth{
        margin: 0 50px;
    }

    .header--top__phone{
        margin-left: 175px;
    }
}

@media screen and (max-width: 1700px){
    .container{
        padding: 0 20px;
    }
}

@media screen and (max-width: 1400px){
    .header__bottom--search__form--input__wrap{
        width: 375px;
        height: 50px;
    }

    .header--bottom__catalog{
        padding: 13px 41px;
    }
    
    .header--bottom__logo{
        width: 210px;
        min-width: 210px;
        height: 50px;
    }

    .header--bottom__catalog{
        margin: 0 30px;
    }

    .header--bottom__auth{
        margin: 0 30px;
    }

    .header--top__nav{
        margin-left: 435px;
    }
}

@media screen and (max-width: 1300px){
    .header--top__nav ul li{
        margin-right: 20px;
    }

    .header--top__nav ul li a{
        font-size: 13px;
    }
}

@media screen and (max-width: 1180px){
    .header{
        padding: 17px 0;
    }

    .header .container{
        display: flex;
        align-items: center;
    }

    .header--top{
        display: none;
    }

    .header--mobile__btn{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        margin-left: 50px;
        cursor: pointer;
    }

    .header--mobile__btn svg{
        width: 32px;
        height: 17px;
    }

    .header__bottom--search__form{
        display: none;
    }

    .header--bottom__auth{
        margin: 0 50px;
    }

    .header--bottom__catalog{
        margin: 0 0 0 50px;
    }
    
    .header--mobile__menu{
        position: fixed;
        top: 0;
        left: 0;
        height: calc(var(--vh, 1vh) * 100);
        width: 100%;
        z-index: 3;
        display: flex;
        transition: var(--transition-base);
        opacity: 0;
        pointer-events: none;
    }

    .header--mobile__menu.show{
        opacity: 1;
        pointer-events: inherit;
    }

    .header--mobile__menu--content{
        position: relative;
        z-index: 2;
        width: 100%;
        margin-left: auto;
        background: #DFDFDF;
        display: flex;
        flex-direction: column;
        padding-top: 14px;
    }

    .header--mobile__menu--head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .header--mobile__menu--logo{
        width: 93px;
        height: 22px;
    }

    .header--mobile__menu--logo svg{
        fill: var(--color-black);
    }

    .header--mobile__menu--catalog{
        border: 1px solid var(--color-black);
        border-radius: 2px;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        color: var(--color-black);
        padding: 6px 18px;
        cursor: pointer;
        text-transform: uppercase;
    }

    .header--mobile__menu--cart{
        min-width: 29px;
        width: 29px;
        height: 30px;
        position: relative;
        cursor: pointer;
        display: none;
    }

    .header--mobile__menu--cart svg{
        fill: var(--color-gray__dark);
    }

    .header--mobile__menu--cart__count{
        width: 12px;
        height: 12px;
        position: absolute;
        top: -3px;
        right: -5px;
        border-radius: 50%;
        border: 2px solid #DFDFDF;
        background-color: var(--color-orange);
    }

    .header--mobile__menu--close{
        width: 24px;
        height: 24px;
        cursor: pointer;
    }

    .header--mobile__menu--auth{
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
    }

    .header--mobile__menu--auth__top{
        display: flex;
        align-items: center;
    }

    .header--mobile__menu--auth__bottom{
        display: flex;
        align-items: center;
        margin-top: 16px;
    }

    .header--mobile__menu--auth svg{
        width: 25px;
        min-width: 25px;
        height: 28px;
        margin-right: 12px;
    }

    .header--mobile__menu--auth span,
    .header--mobile__menu--auth a{
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        color: var(--color-black);
    }

    .header--mobile__menu--auth__bottom a{
        color: var(--color-orange);
        margin-left: 20px;
    } 

    .header--mobile__menu--auth__bottom a:first-child{
        margin-left: unset;
    }

    .header--mobile__menu__nav{
        overflow: auto;
        padding: 0 20px;
    }

    .header--mobile__menu__nav ul{
        display: flex;
        flex-direction: column;
    }

    .header--mobile__menu__nav ul li{
        margin-bottom: 20px;
    }

    .header--mobile__menu__nav ul li a{
        color: var(--color-black);
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
    }

    .header--mobile__menu__nav .simplebar-wrapper{
        height: 100%;
    }

    .header--mobile__menu__nav .simplebar-track.simplebar-vertical .simplebar-scrollbar{
        width: 2px;
        background-color: var(--color-gray__dark);
    }

    .header--mobile__menu__nav .simplebar-track.simplebar-vertical{
        width: 2px;
        background-color: var(--color-gray);
        height: calc(100% - 10px);
        right: 10px;
    }

    .header--mobile__menu__nav .simplebar-track.simplebar-vertical .simplebar-scrollbar::before{
        top: 0;
        bottom: 0;
    }
    
    .header--mobile__menu--compare{
        margin-top: auto;
        padding: 16px 26px;
        background-color: rgba(217, 217, 217, 0.7);
        display: none;
    }

    .header--mobile__menu--compare.show{
        display: block;
    }

    .header--mobile__menu--compare__wrap{
        display: flex;
        align-items: center;
    }

    .header--mobile__menu--compare__wrap svg{
        width: 26px;
        height: 26px;
        margin-right: 17px;
    }

    .header--mobile__menu--compare__wrap span{
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
    }

    .header--mobile__menu--info{
        background-color: rgba(217, 217, 217, 0.7);
        padding: 14px 20px 17px;
        display: flex;
        align-items: flex-start;
        margin-top: auto;
    }

    .header--mobile__menu--phone{
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        width: 50%;
    }

    .header--mobile__menu--location{
        width: 50%;
    }

    .header--mobile__menu--location__wrap{
        display: flex;
        align-items: center;
    }

    .header--mobile__menu--location__wrap .shop-regions__ip-analyzer-variants{
        display: none!important;
    }

    .header--mobile__menu--location__icon--wrap{
        width: 18px;
        height: 20px;
        stroke: var(--color-black);
        margin-right: 16px;
    }

    .header--mobile__menu--location .shop-regions-action-link .shop-regions__link{
        border: unset;
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
    }

    .header--mobile__menu--search{
        background-color: var(--color-orange);
        padding: 4px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header--mobile__menu--search__block{
        width: 100%;
        height: 41px;
        /* background-color: var(--color-white);
        border-radius: 4px; */
        display: flex;
        align-items: center;
        justify-content: center;
        /* padding-left: 16px; */
        cursor: pointer;
    }

    .header--mobile__menu--search__block svg{
        width: 16px;
        height: 17px;
        margin-right: 10px;
        filter: brightness(0) invert(1);
    }

    .header--mobile__menu--search__block span{
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
        color: var(--color-white);
    }

    .header--mobile__menu--bg{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(35, 35, 35, 0.9);
        backdrop-filter: blur(25px);
    }
}

@media screen and (max-width: 950px){
    .header--bottom__compare,
    .header--bottom__auth{
        display: none;
    }
    
    .header--bottom__cart{
        margin-left: 50px;
    }
}

@media screen and (max-width: 768px){
    .header{
        padding-top: 14px;
    }
    
    .header--bottom__location{
        display: none;
    }

    .header--bottom__cart{
        margin-left: auto;
    }

    .header--bottom__logo{
        width: 166px;
        min-width: 166px;
        height: 40px;
    }

    .header--bottom__catalog{
        padding: 8px 35px;
    }
}

@media screen and (max-width: 568px){
    .header--bottom__logo{
        width: 93px;
        min-width: 93px;
        height: 22px;
    }

    .header--bottom__catalog{
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        padding: 6px 19px;
    }

    .header--bottom__cart--icon{
        width: 20px;
        height: 20px;
    }

    .header--bottom__cart--count{
        font-size: 1px;
        line-height: 1;
        color: transparent;
        width: 12px;
        height: 12px;
        top: -5px;
        right: -5px;
    }

    .header--mobile__btn{
        width: 30px;
        height: 30px;
    }

    .header--mobile__btn svg{
        width: 30px;
    }
}

@media screen and (max-width: 450px){
    .header--bottom{
        padding-right: unset;
    }

    .header--bottom__catalog,
    .header--mobile__btn{
        margin-left: auto;
    }
}

/* Header End */

/* Hero Start */

.hero{
    display: flex;
    justify-content: center;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    /* background-color: var(--color-black); */
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 705px;
    z-index: 1;
    left: 0;
    pointer-events: none;
}

.hero::before{
    top: 0;
    background: linear-gradient(180deg, #161616 17.43%, rgba(19, 19, 19, 0) 100%);
}

.hero::after{
    bottom: 0;
    background: linear-gradient(180deg, #131313 9.92%, rgba(24, 24, 24, 0) 68.05%);
    transform: rotate(180deg);
    height: 600px;
}

.hero .container{
    display: flex;
}

.hero--video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: none;
}

.hero--video video{
    width: 100%;
    height: 100%;
    transform: scale(1.5);
}

.hero--video::before,
.hero--video::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 600px;
    height: 100%;
    background: linear-gradient(90deg, #131313 10.94%, rgba(24, 24, 24, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero--video::before{
    left: 0;
}

.hero--video::after{
    right: 0;
    transform: rotate(180deg);
}

.hero--bottom{
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero--bottom__descr{
    position: relative;
    padding: 0 0 21px 30px;
}

.hero--bottom__descr svg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 190px;
    height: 253px;
}

.hero--bottom__descr--title{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero--bottom__descr--title span{
    font-weight: 700;
    font-size: 106px;
    line-height: 106px;
    color: var(--color-white);
    text-transform: uppercase;
}

.hero--bottom__descr--title p{
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    color: var(--color-white);
    margin-left: 20px;
    text-transform: uppercase;
}

.hero--bottom__descr--info{
    position: relative;
    z-index: 1;
    max-width: 410px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: rgba(256, 256, 256, 0.6);
}

.hero--bottom__cats{
    display: flex;
    align-items: flex-end;
    margin-left: auto;
}

.hero--bottom__cat{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 26px 20px 15px 20px;
    margin-right: 50px;
    overflow: hidden;
}

.hero--bottom__cat:last-child{
    margin-right: unset;
}

.hero--bottom__cat span{
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-top: 9px;
    position: relative;
    z-index: 1;
}

.hero--bottom__cat svg{
    fill: var(--color-gray);
    stroke: var(--color-gray);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.hero--bottom__cat.electric__tools svg{width: 59px;height: 65px;}
.hero--bottom__cat.tools svg{width: 77px;height: 57px;}
.hero--bottom__cat.pumps svg{width: 62px;height: 64px;}
.hero--bottom__cat.agricultural__eqipment svg{width: 83px;height: 60px;}
.hero--bottom__cat.eqipment svg{width: 78px;height: 60px;}

.hero--bottom__cat::before{
    content: '';
    display: block;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: var(--color-orange);
    transition: var(--transition-base);
}

.hero--bottom__cat:hover::before{
    top: 0;
}

.dl--cursor{
    width: 299px;
    height: 277px;
    transition: all 200ms ease-out;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    opacity: 1;
    background-image: url(../images/cursor.svg);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
}

.dl--cursor.default{
    left: 50%;
    top: 50%;
    opacity: 0.3;
}

.hero--modal__video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh,1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    left: 0;
    transition: .3s left ease-in-out, .5s opacity ease-in-out;
}

.hero--modal__video.show{
    opacity: 1;
    pointer-events: inherit;
}

.hero--modal__video .container{
    position: relative;
    z-index: 1;
    max-height: calc(100% - 100px);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero--modal__video--close{
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: absolute;
    top: -30px;
    right: 20px;
}

.hero--modal__video--close svg{
    width: 100%;
    height: 100%;
    stroke: var(--color-white);
}

.hero--modal__video video{
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

.hero--modal__video--bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #232323;
    opacity: 0.8;
}

@media screen and (max-width: 2560px){
    .hero--video video{
        transform: scale(1.3);
    }
}

@media screen and (max-width: 1920px){
    .hero--video video{
        transform: scale(1.2);
    }
}

@media screen and (max-width: 1650px){
    .hero--bottom__descr--title span{
        font-size: 88px;
    }

    .hero--bottom__descr--title p{
        font-size: 32px;
    }

    .hero--bottom__cat{
        margin-right: 30px;
        padding: 16px 10px 10px;
    }
}

@media screen and (max-width: 1470px){
    .hero--bottom__descr{
        padding-right: 20px;
    }

    .hero--bottom__cat{
        margin-right: 10px;
        padding-left: 10px;
    }

    .hero--bottom__cat span{
        font-size: 14px;
    }

    .hero--bottom__descr--title p{
        font-size: 23px;
    }
}

@media screen and (max-width: 1180px){
    .hero--bottom__descr svg{
        width: 150px;
        height: 200px;
    }

    .hero--bottom__cats{
        display: none;
    }

    .dl--cursor{
        cursor: default;
    }

    .hero--video::before, .hero--video::after{
        width: 30%;
    }

    .hero::before, .hero::after{
        height: 50%;
    }
}

@media screen and (max-width: 1024px){
    .hero--video video{
        transform: scale(1.3);
    }
}

@media screen and (max-width: 768px){
    .hero--bottom{
        padding-bottom: 20px;
    }

    .hero--bottom__descr svg{
        width: 133px;
        height: 177px;
    }

    .hero--bottom__descr{
        padding: 0 0 11px 20px;
    }

    .hero--bottom__descr--title span{
        font-size: 74px;
        line-height: 1;
    }

    .hero--bottom__descr--title p{
        font-size: 26px;
        line-height: 120%;
        margin-left: 19px;
    }

    .hero--bottom__descr--info{
        font-weight: 600;
        font-size: 11px;
        line-height: 13px;
    }

    .dl--cursor{
        width: 150px;
        height: 150px;
    }

}

@media screen and (max-width: 480px){
    .hero{
        height: calc(var(--vh, 1vh) * 50);
    }

    .hero--bottom__descr{
        padding: 0 0 8px 8px;
    }

    .hero--bottom__descr svg{
        width: 96px;
        height: 128px;
    }

    .hero--bottom__descr--title span{
        font-size: 54px;
    }

    .hero--bottom__descr--title p{
        font-size: 18px;
        margin-left: 11px;
    }

    .hero--video video{
        transform: scale(1);
        height: auto;
    }
}

/* Hero End */

/* Home Lists Start */

.home--lists{
    width: 100%;
    display: flex;
    justify-content: center;
}

.home--wrap__list{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 4px;
    background-color: #FA7403;
    padding: 10px 31px 10px 0;
    margin-bottom: 40px;
    height: 350px;
}

.home--wrap__list:last-child{
    margin-bottom: unset;
}

.home--wrap__list--bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 100%;
    border-radius: 4px;
}

.home--wrap__list--bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
    border-radius: 4px;
}

.home--list{
    position: relative;
    z-index: 1;
    width: calc(100% - 550px);
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    margin-top: -2px;
}

.home--list__card{
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    padding: 30px 20px 0;
    border-radius: 4px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.home--list__card span{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.home--list__card:hover span,
.home--list__card:focus span{
    color: var(--color-orange);
}

.home--list__card img{
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition-base);
    width: 100%;
    height: calc(100% - 75px);
    object-fit: contain;
}

.home--list__card:hover img,
.home--list__card:focus img{
    transform: scale(1.1);
}

.home--list__arrow{
    position: absolute;
    width: 140px;
    height: 50%;
    right: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.home--list__arrow svg{
    transition: var(--transition-base);
}

.home--list__arrow--next{top: 0;}
.home--list__arrow--prev{bottom: 0;}

.home--list__arrow--next svg{margin: auto 0 25px;}
.home--list__arrow--prev svg{margin: 25px 0 auto;}

.home--list__arrow--next svg{
    transform: rotate(180deg);
    fill: var(--color-black);
}

.home--list__arrow--next:not(.swiper-button-disabled):hover svg{
    transform: rotate(180deg) scale(1.1);
}

.home--list__arrow--prev:not(.swiper-button-disabled):hover svg{
    transform: scale(1.1);
}

.home--list__arrow svg{
    width: 44px;
    height: 37px;
}

.home--list__arrow.swiper-button-disabled{
    cursor: default;
}

.home--list__arrow.swiper-button-disabled svg{
    fill: var(--color-gray);
}

@media screen and (max-width: 1750px){
    .home--list{
        width: calc(100% - 440px);
    }
}

@media screen and (max-width: 1200px){
    .home--lists{
        height: auto;
    }

    .home--wrap__list{
        display: flex;
        flex-direction: column;
        padding-top: unset;
        padding-right: unset;
        height: auto;
    }

    .home--wrap__list--bg{
        width: 100%;
        position: relative;
        max-height: 350px;
    }

    .home--list{
        width: 100%;
        padding: 0 14px;
    }

    .home--list__card {
        max-height: 420px;
        height: auto !important;
    }

    .home--list__card img{
        position: relative;
        margin-top: auto;
        width: 100%;
        right: -20px;
    }

    .home--list__arrow{
        width: 39px;
        height: 86px;
        top: 240px;
        align-items: center;
    }

    .home--list__arrow svg{
        width: 30px;
        height: 36px;
        margin: unset;
    }

    .home--list__arrow--next{
        right: 15px;
    }

    .home--list__arrow--prev{
        right: 74px;
        bottom: unset;
    }
}

@media screen and (max-width: 1000px){
    .home--wrap__list--bg{
        max-height: 270px;
    }

    .home--list__card{
        max-height: 390px;
    }

    .home--list__arrow{
        top: 160px;
    }
}

@media screen and (max-width: 800px){
    .home--wrap__list--bg{
        max-height: 210px;
    }

    .home--list__card{
        max-height: 300px;
    }

    .home--list__arrow{
        top: 70px;
    }
}

@media screen and (max-width: 600px){
    .home--list__arrow{
        display: none;
    }
}

@media screen and (max-width: 500px){
    .home--wrap__list--bg{
        max-height: 150px;
    }
}

@media screen and (max-width: 430px){
    .home--wrap__list--bg{
        max-height: 100px;
    }

    .home--list__card{
        padding: 20px 12px 0;
    }

    .home--list__card span{
        font-weight: 600;
        font-size: 14px;
        line-height: 17px;
    }

    .home--list__card img{
        right: -12px;
    }
}

/* Home Lists End */

/* Home Map & Videos Start */
.home--map_s_video{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.home--map_s_video--wrap{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.home--map{
    position: relative;
    width: calc(60% - 15px);
}

.home--map iframe{
    height: 509px;
}

.home--map__search{
    position: absolute;
    padding: 30px 30px 62px;
    background: rgba(245, 240, 228, 0.6);
    backdrop-filter: blur(7.5px);
    border-radius: 4px;
    z-index: 1;
    top: 34px;
    left: 190px;
}

.home--map__search span{
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: var(--color-black);
    margin-bottom: 20px;
    display: block;
}

.home--map__search--input{
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #4F2900;
    background: rgba(256, 256, 256, 0.3);
    border-radius: 4px;
    cursor: pointer;
}

.home--video{
    width: calc((40% - 15px));
}

.home--video .dlpv-block{
    margin: unset;
}

.home--video .container{
    max-width: 100%;
    width: 100%;
    padding: unset;
}

.home--video .dlpv-block__header{
    padding-top: 10px;
    margin-bottom: 30px;
}

.home--video .dlpv-block__header .dlpv-block__title{
    font-weight: 700;
    font-size: 28px;
    line-height: 18px;
    color: var(--color-black);
}

.home--video .dlpv-block__header .dlpv-block__title span{
    margin-left: 22px;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: var(--color-gray__dark);
}

.home--video .dlpv-block__header .dlpv-block__link{
    display: none;
}

.home--video .dlpv-block__list__first{
    display: none;
}

.home--video .dlpv-block__list--right{
    width: calc(100% + 30px);
    margin: 0 -15px;
    display: flex;
    align-items: stretch;
}

.home--video .dlpv-block__list--right a.dlpv-block__video{
    width: calc(25% - 30px);
    margin: 0 15px 30px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.home--video .dlpv-block__list--right a.dlpv-block__video:nth-child(n + 8){
    display: none;
}

.home--video .dlpv-block__list--right a.dlpv-block__video .dlpv-block__video-thumb{
    border-radius: 4px;
    background-size: auto 100%;
    background-position: 50% 50%;
}

.home--video .dlpv-block__list--right a.dlpv-block__video .dlpv-block__video-name{
    margin: 10px 0 8px;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: var(--color-black);
    transition: var(--transition-base);
    padding: 0 6px;
    display: none!important;
}

.home--video .dlpv-block__list--right a.dlpv-block__video .dlpv-block__video-name:hover{
    color: var(--color-orange);
}

.home--video .dlpv-block__list--right a.dlpv-block__video .dlpv-block__video-date{
    padding: 0 6px;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-gray__dark);
    display: none!important;
}
    
.home--video .dlpv-block__list--right a.dlpv-block__video .dlpv-block__video-descr{
    display: none;
}

.home--video .dlpv-block__more{
    width: calc(25% - 30px);
    margin: 0 15px 30px;
    background: #C4C4C4;
    border-radius: 4px;
    padding: 20px 26px 30px 20px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    position: relative;
    height: auto;
}

.home--video .dlpv-block__more span{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    transition: var(--transition-base);
    max-width: 100px;
}

.home--video .dlpv-block__more small{
    width: 34px;
    height: 28px;
    background-image: url('../images/video-link_arrow.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: var(--transition-base);
    position: absolute;
    bottom: 26px;
    right: 26px;
}

.home--video .dlpv-block__more:hover,
.home--video .dlpv-block__more:focus{
    background-color: var(--color-orange);
}

.home--video .dlpv-block__more:hover span,
.home--video .dlpv-block__more:focus span{
    color: var(--color-white);
}

.home--video .dlpv-block__more:hover small,
.home--video .dlpv-block__more:focus small{
    transform: translateX(10px);
}

.dlpv-block__link--mobile{
    display: none!important;
}

@media screen and (max-width: 2200px){
    .home--video .dlpv-block__more,
    .home--video .dlpv-block__list--right a.dlpv-block__video{
        width: calc((100% / 3) - 30px);
    }

    /* .home--video .dlpv-block__list--right a.dlpv-block__video:nth-child(n + 6){
        display: none;
    } */
}

@media screen and (max-width: 1600px){
    .home--map,
    .home--video{
        width: calc((50% - 15px));
    }

    .home--map__search{
        left: 70px;
    }
}

@media screen and (max-width: 1300px){
    .home--map_s_video--wrap{
        flex-direction: column;
    }

    .home--map,
    .home--video{
        width: 100%;
    }

    .home--map iframe{
        height: 403px;
    }

    .home--video{
        margin-top: 30px;
    }

    .home--video .dlpv-block__list--right a.dlpv-block__video .dlpv-block__video-thumb{
        aspect-ratio: 1 / 0.5;
        height: auto;
    }

    .dlpv-block__list--right a.dlpv-block__video:nth-child(n + 5),
    .dlpv-block__list--right a.dlpv-block__video:nth-child(n + 3){
        display: flex!important;
    }

    .dlpv-block__list--right a.dlpv-block__video:nth-child(n + 6){
        display: none!important;
    }
}

@media screen and (max-width: 1180px){
    .home--map_s_video{
        margin-bottom: 30px;
    }

    .home--map{
        width: calc(100% + 40px);
        position: relative;
        left: -20px;
        height: auto;
    }

    .home--map__search{
        left: 60px;
        top: 10px;
        transform: translateX(0);
        width: 100%;
        max-width: 400px;
    }

    .home--map__search span{
        font-weight: 700;
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 901px){
    .home--video .dlpv-block__more span{
        font-size: 16px;
        line-height: 19px;
    }
}

@media screen and (max-width: 768px){
    .home--map iframe{
        height: 379px;
    }

    .home--video .dlpv-block__list--right{
        width: calc(100% + 20px);
        margin: 0 -10px;
    }

    .home--video .dlpv-block__more, .home--video .dlpv-block__list--right a.dlpv-block__video{
        width: calc((100% / 3) - 20px);
        margin: 0 10px 20px;
    }

    .home--video .dlpv-block__header .dlpv-block__title{
        font-size: 18px;
        line-height: 24px;
    }

    .home--video .dlpv-block__header .dlpv-block__title span{
        font-size: 20px;
        line-height: 23px;
        margin-left: 13px;
    }

    .home--video .dlpv-block__header{
        margin-bottom: 12px;
        padding-top: 0;
    }

    .home--video .dlpv-block__more{
        padding: 16px;
    }

    .home--video .dlpv-block__more span{
        font-size: 16px;
        line-height: 16px;
    }
}

@media screen and (max-width: 600px){
    .home--video .dlpv-block__more, .home--video .dlpv-block__list--right a.dlpv-block__video,
    .dlpv-block__list--right a.dlpv-block__video:nth-child(2){
        width: calc((100% / 2) - 20px);
        margin: 0 10px 20px!important;
    }

    .home--video .dlpv-block__list--right a.dlpv-block__video:nth-child(n + 4){
        display: none!important;
    }

    .home--map__search{
        max-width: calc(100% - 40px);
        left: 20px;
    }   
}


/* Home Map & Videos Start */

/* Home Banner Start */

.home--banner{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.home--banner__image{
    width: 100%;
    background: linear-gradient(90deg, #F27018 47.39%, #F68121 53.39%);
    border-radius: 4px 0px 0px 4px;
    display: flex;
    justify-content: center;
}

.home--banner__image img{
    width: 100%;
}

@media screen and (max-width: 768px){
    .home--banner{
        margin: 30px 0;
    }
}

/* Home Banner End */

/* Modal Auth Start */

.modal--auth{
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.modal--auth.show{
    opacity: 1;
    pointer-events: inherit;
}

.modal--auth--bg{
    width: 100%;
    height: 100%;
    background: rgba(35, 35, 35, 0.9);
    backdrop-filter: blur(25px);
    position: absolute;
    top: 0;
    left: 0;
}

.modal--auth__content{
    width: 100%;
    max-width: 725px;
    margin-left: auto;
    height: 100%;
    background: #DFDFDF;
    position: relative;
    z-index: 1;
    padding: 77px 148px 77px 220px;
}

.modal--auth__content--head{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.modal--auth__content--head span{
    font-weight: 800;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-orange);
    margin-right: auto;
    text-transform: uppercase;
}

.modal--auth__content--head--icon{
    width: 25px;
    height: 28px;
    margin-right: 104px;
}

.modal--auth__content--head--icon svg{
    fill: transparent;
    stroke: var(--color-orange);
}

.modal--auth__content--head--close{
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.modal--auth__content--head--close:hover svg{
    fill: var(--color-orange);
    transform: rotate(180deg);
}

.modal--auth__content--head--close svg{
    transition: var(--transition-base);
    fill: var(--color-gray);
}

.modal--auth__content--profile{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.modal--auth__content--profile a{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.modal--auth__content--profile a:hover{
    color: var(--color-orange);
}

.modal--auth__content--profile a:last-child{
    margin-bottom: unset;
}

.modal--auth__content--login{
    margin-top: 65px;
    position: relative;
    z-index: 1;
}

.modal--auth__content--login .wa-login-form-fields{
    position: relative;
}

.modal--auth__content--login .wa-field{
    margin-bottom: 40px!important;
}

.modal--auth__content--login .wa-field .wa-name{
    display: none!important;
}

.modal--auth__content--login .wa-field .wa-value{
    height: 60px;
}

.modal--auth__content--login .wa-field .wa-value input{
    width: 100%;
    height: 100%;
    margin: unset;
    padding-left: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    border: 1px solid #A0A3BD;
    border-radius: 2px;
    transition: var(--transition-base);
}

.modal--auth__content--login .wa-field .wa-value input:focus{
    border-color: var(--color-orange);
}

.modal--auth__content--login .wa-field .wa-value input::placeholder{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
}

.modal--auth__content--login .wa-field.wa-field-remember-me .wa-value label{
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.modal--auth__content--login .wa-field.wa-field-remember-me .wa-value label input[type="checkbox"]{
    display: none;
}

.modal--auth__content--login .wa-field.wa-field-remember-me .wa-value label:hover .dl--custom__checkbox{
    border-color: var(--color-orange);
}

.modal--auth__content--login .wa-field.wa-field-remember-me .wa-value label:hover{
    color: var(--color-orange);
}

.dl--custom__checkbox{
    width: 19px;
    height: 19px;
    border: 1px solid var(--color-black);
    border-radius: 2px;
    background-color: var(--color-white);
    margin-right: 7px;
    position: relative;
    display: block;
    cursor: pointer;
    transition: var(--transition-base);
}

.dl--custom__checkbox::after{
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    background-color: transparent;
    border-radius: 2px;
    position: absolute;
    top: 2px;
    left: 2px;
}

input[type="checkbox"]:checked ~ .dl--custom__checkbox{
    border-color: var(--color-orange);
}

input[type="checkbox"]:checked ~ .dl--custom__checkbox::after{
    background-color: var(--color-orange);
}

.modal--auth__content--login .wa-field .wa-value .wa-login-forgotpassword-url{
    position: absolute;
    bottom: -76px;
    right: 0;
    margin: unset;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    z-index: 1;
}

.modal--auth__content--login .wa-field .wa-value .wa-login-forgotpassword-url:hover,
.modal--auth__content--login .wa-field .wa-value .wa-login-forgotpassword-url:focus{
    color: var(--color-orange);
}

.modal--auth__content--login .wa-buttons-wrapper .wa-login-submit{
    background: var(--color-gray__dark);
    border-radius: 2px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: var(--color-white);
    padding: 18px 60px;
    text-transform: uppercase;
    border: unset;
    text-shadow: unset;
    box-shadow: unset;
    transition: var(--transition-base);
}

.modal--auth__content--login .wa-buttons-wrapper .wa-login-submit:hover,
.modal--auth__content--login .wa-buttons-wrapper .wa-login-submit:focus{
    background-color: var(--color-orange);
}

.modal--auth__content--login .wa-uncaught-errors{
    position: absolute;
    margin: -30px 0 0 0;   
}

.modal--auth__content--login .wa-signup-url{
    display: none!important;
}

.modal--auth__content--login .modal--auth__content--login--reg{
    margin-top: 100px;
    background-color: transparent;
    border: 1px solid var(--color-gray__dark);
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    width: max-content;
    transition: var(--transition-base);
}

.modal--auth__content--login .modal--auth__content--login--reg span{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
}

.modal--auth__content--login .modal--auth__content--login--reg svg{
    stroke: #BDBDBD;
    width: 38px;
    height: 10px;
    transition: var(--transition-base);
}

.modal--auth__content--bg{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.modal--auth__content--login .modal--auth__content--login--reg:hover,
.modal--auth__content--login .modal--auth__content--login--reg:focus{
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

.modal--auth__content--login .modal--auth__content--login--reg:hover svg,
.modal--auth__content--login .modal--auth__content--login--reg:focus svg{
    stroke: var(--color-black);
    margin-left: 15px;
}

@media screen and (max-width: 725px){
    .modal--auth__content{
        padding: 77px;
    }
}

@media screen and (max-width: 550px){
    .modal--auth__content{
        padding: 40px;
    }

    .modal--auth__content--login{
        margin-top: 24px;
    }

    .modal--auth__content--login .wa-field{
        margin: 0 0 24px 0!important;
    }

    .modal--auth__content--login .wa-field .wa-value .wa-login-forgotpassword-url{
        bottom: -60px;
    }

    .modal--auth__content--login .modal--auth__content--login--reg{
        margin-top: 50px;
    }
}

@media screen and (max-width: 420px){
    .modal--auth__content{
        padding: 20px;
    }

    .modal--auth__content--login .wa-buttons-wrapper .wa-login-submit{
        padding: 18px 36px;
    }
}

/* Modal Auth End */

/* Modal Cart Start */

.modal--cart{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 3;
    transition: var(--transition-base);
    opacity: 0;
    pointer-events: none;
}

.modal--cart.show{
    opacity: 1;
    pointer-events: inherit;
}

.modal--cart__content{
    width: 100%;
    height: 100%;
    max-width: 755px;
    margin-left: auto;
    background-color: #DFDFDF;
    position: relative;
    z-index: 2;
    padding: 77px 76px 77px 99px;
}

.modal--cart__bg{
    width: 100%;
    height: 100%;
    background: rgba(35, 35, 35, 0.9);
    backdrop-filter: blur(25px);
    position: absolute;
    top: 0;
    left: 0;
}

.modal--cart__content--head{
    display: flex;
    align-items: center;
    margin-bottom: 37px;
    position: relative;
    z-index: 1;
}

.modal--cart__content--head span{
    font-weight: 800;
    font-size: 18px;
    line-height: 150%;
    color: var(--color-orange);
    text-transform: uppercase;
    margin-right: auto;
}

.modal--cart__content--head__icon{
    width: 27px;
    height: 26px;
    position: relative;
}

.modal--cart__content--head__icon small{
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: var(--color-white);
    background-color: var(--color-orange);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    top: -13px;
    right: -13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #DFDFDF;
}

.modal--cart__content--head__icon svg{
    fill: var(--color-orange);
}

.modal--cart__content--head__close{
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-left: 104px;
}

.modal--cart__content--head__close:hover svg{
    transform: rotate(180deg);
    fill: var(--color-orange);
}

.modal--cart__content--head__close svg{
    fill: var(--color-gray);
    transition: var(--transition-base);
}

.modal--cart__content--body{
    position: relative;
    z-index: 1;
}

.modal--cart__content--body__list{
    display: flex;
    flex-direction: column;
    max-height: calc((var(--vh, 1vh) * 100) - 395px);
}

.modal--cart__content--body__list .simplebar-track.simplebar-vertical{
    right: -10px;
    width: 2px;
}

.modal--cart__content--body__list .simplebar-track.simplebar-vertical .simplebar-scrollbar::before{
    top: 0;
    bottom: 0;
}

.modal--cart__content--body__list--item{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    padding: 10px 29px 10px 10px;
    transition: var(--transition-base);
    border-radius: 4px;
}

.modal--cart__content--body__list--item:hover,
.modal--cart__content--body__list--item:focus{
    background-color: #EEEEEE;
}

.modal--cart__content--body__list .modal--cart__content--body__list--item:last-child{
    margin-bottom: unset;
}

.modal--cart__content--body__list--item__remove{
    width: 20px;
    min-width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.modal--cart__content--body__list--item__remove svg{
    fill: #BDBDBD;
    transition: var(--transition-base);
}

.modal--cart__content--body__list--item__remove:hover svg{
    transform: rotate(180deg);
    fill: var(--color-orange);
}

.modal--cart__content--body__list--item:hover .modal--cart__content--body__list--item__remove,
.modal--cart__content--body__list--item:focus .modal--cart__content--body__list--item__remove,
.modal--cart__content--body__list--item:hover .modal--cart__content--body__list--item__quantity,
.modal--cart__content--body__list--item:focus .modal--cart__content--body__list--item__quantity{
    pointer-events: inherit;
    opacity: 1;
}

.modal--cart__content--body__list--item__img{
    margin: 0 20px;
    display: block;
    width: 100px;
    min-width: 100px;
    height: 100px;
    background-color: var(--color-white);
}

.modal--cart__content--body__list--item__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal--cart__content--body__list--item__info{
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}

.modal--cart__content--body__list--item__name{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    width: calc(100% - 75px);
    padding-right: 20px;
    order: 1;
}

.modal--cart__content--body__list--item__name:hover,
.modal--cart__content--body__list--item__name:focus{
    color: var(--color-orange);
}

.modal--cart__content--body__list--item__price{
    width: 75px;
    order: 2;
}

.modal--cart__content--body__list--item__price--now{
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: var(--color-black);
    text-align: right;
    width: 100%;
    display: block;
    margin-bottom: 12px;
}

.modal--cart__content--body__list--item__quantity{
    order: 3;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
    pointer-events: none;
    opacity: 0;
}

.modal--cart__content--body__list--item__quantity__minus,
.modal--cart__content--body__list--item__quantity__plus{
    width: 40px;
    height: 40px;
    opacity: 0.5;
    transition: var(--transition-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal--cart__content--body__list--item__quantity__minus.disabled,
.modal--cart__content--body__list--item__quantity__plus.disabled{
    opacity: 0.4;
    pointer-events: none;
}

.modal--cart__content--body__list--item__quantity__minus:hover,
.modal--cart__content--body__list--item__quantity__plus:hover{
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal--cart__content--body__list--item__quantity__minus:after,
.modal--cart__content--body__list--item__quantity__plus:after,
.modal--cart__content--body__list--item__quantity__plus:before{
    content: '';
    display: block;
    background-color: #151515;
    position: absolute;
}

.modal--cart__content--body__list--item__quantity__minus:after{
    width: 19px;
    height: 2px;
}

.modal--cart__content--body__list--item__quantity__plus:after{
    width: 2px;
    height: 19px;
}

.modal--cart__content--body__list--item__quantity__plus:before{
    width: 19px;
    height: 2px;
}

.modal--cart__content--body__list--item__quantity__count{
    height: 50px;
    width: 50px;
    outline: unset;
    border: unset;
    background-color: transparent;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
    text-align: center;
}

.modal--cart__content__footer{
    margin-top: 20px;
    border-top: 1px solid rgba(256, 256, 256, 0.9);
    padding: 33px 10px 0 39px;
}

.modal--cart__content__footer--total{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.modal--cart__content__footer--total__text{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}

.modal--cart__content__footer--total__price{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}

.modal--cart__content__footer--order{
    padding: 18px 19px;
    background-color: var(--color-orange);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    transition: var(--transition-base);
    cursor: pointer;
    width: max-content;
    display: block;
    margin: 40px 0 0 auto;
}

.modal--cart__content__footer--order:hover,
.modal--cart__content__footer--order:focus{
    color: var(--color-white);
}

.modal--cart__content--body__error{
    order: 4;
    width: 100%;
    display: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: var(--color-black);
    margin-top: 5px;
}

@media screen and (max-width: 1180px){
    .modal--cart__content--body__list--item .modal--cart__content--body__list--item__remove,
    .modal--cart__content--body__list--item .modal--cart__content--body__list--item__quantity{
        pointer-events: inherit;
        opacity: 1;
    }
}

@media screen and (max-width: 768px){
    .modal--cart__content{
        padding: 30px 20px;
        width: 100%;
        max-width: 420px;
    }

    .modal--cart__content--body__list--item{
        padding: unset;
        position: relative;
        padding-bottom: 15px;
    }

    .modal--cart__content--body__list--item:hover,
    .modal--cart__content--body__list--item:focus{
        background-color: transparent;
    }

    .modal--cart__content--body__list--item__img{
        width: 68px;
        min-width: 68px;
        height: 68px;
        margin: 0 10px 0 0;
    }

    .modal--cart__content--body__list--item .modal--cart__content--body__list--item__remove{
        position: absolute;
        left: 35px;
        top: 82px;
        transform: translate(-50%);
        width: 10px;
        min-width: 10px;
        height: 10px;
    }

    .modal--cart__content--body__list--item__name{
        font-weight: 500;
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 10px;
        padding-right: 10px;
        width: calc(100% - 68px);
    }

    .modal--cart__content--body__list--item__price{
        width: 68px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .modal--cart__content--body__list--item__price--now{
        font-size: 14px;
        line-height: 133.98%;
        margin-bottom: 2px;
    }

    .modal--cart__content--body__list--item__price--old{
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
    }

    .modal--cart__content--body__list--item__quantity__minus,
    .modal--cart__content--body__list--item__quantity__count, 
    .modal--cart__content--body__list--item__quantity__plus{
        width: 46px;
        height: 35px;
    }

    .modal--cart__content__footer{
        padding: 12px 0 0;
    }

    .modal--cart__content__footer--order{
        width: 100%;
        margin-top: 20px;
        font-size: 16px;
        line-height: 1;
        padding: 12px;
        text-align: center;
    }

    .modal--cart__content--head{
        margin-bottom: 16px;
    }

    .modal--cart__content--body__list{
        max-height: calc((var(--vh, 1vh) * 100) - 220px);
    }
}

/* Modal Cart End */

/* Header Catalog Start */

.header--catalog{
    width: 100%;
    display: flex;
    justify-content: center;
    height: calc(var(--vh, 1vh) * 100);
    background-color: #DFDFDF;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 180px;
    transition: var(--transition-base);
    opacity: 0;
    pointer-events: none;
    /* overflow: hidden; */
}

.header--catalog.show{
    opacity: 1;
    pointer-events: inherit;
}

.header--catalog__wrap{
    display: flex;
    width: 100%;
    height: 100%;
}

.header--catalog__close{
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc((var(--vh, 1vh) * 100) - 200px);
}

.header--catalog__close--wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.header--catalog__close--wrap:hover{
    transform: translateY(-20px);
}

.header--catalog__close--wrap svg.header--catalog__close--mobile{
    display: none;
}

.header--catalog__close--wrap:hover svg{
    fill: var(--color-orange);
}

.header--catalog__close--wrap:hover span{
    color: var(--color-orange);
}

.header--catalog__close--wrap svg{
    width: 53px;
    height: 65px;
    transition: var(--transition-base);
    fill: var(--color-gray__dark);
}

.header--catalog__close--wrap span{
    font-weight: 800;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 15px;
    color: var(--color-gray__dark);
    transition: var(--color-orange);
}

.header--catalog__content{
    width: calc(100% - 350px);
    margin-left: auto;
}

.header--catalog__content--nav{
    width: max-content;
    display: flex;
    border-bottom: 2px solid var(--color-orange);
}

.header--catalog__content--nav__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: max-content;
    padding: 0 5px 10px;
    margin-right: 88px;
    cursor: pointer;
    position: relative;
    width: 250px;
}

.header--catalog__content--nav .header--catalog__content--nav__item:last-child{
    margin-right: unset;
}

.header--catalog__content--nav__item svg{
    stroke: #828282;
    fill: #828282;
}

.header--catalog__content--nav__item.active::before{
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background-color: var(--color-orange);
}

.header--catalog__content--nav__item.active svg{
    stroke: var(--color-orange);
    fill: var(--color-orange)
}

.header--catalog__content--nav__item.active span{
    color: var(--color-orange);
}

.header--catalog__content--nav__item.electric__tools svg{width: 58px;height: 65px;}
.header--catalog__content--nav__item.tools svg{width: 77px;height: 57px;}
.header--catalog__content--nav__item.pumps svg{width: 82px;height: 60px;}
.header--catalog__content--nav__item.agricultural__eqipment svg{width: 62px;height: 64px;}
.header--catalog__content--nav__item.eqipment svg{width: 77px;height: 60px;}

.header--catalog__content--nav__item span{
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
    color: var(--color-black);
    margin-top: 19px;
    display: block;
}

.header--catalog__content--result{
    margin-top: 45px;
}

.header--catalog__content--result__head{
    display: none;
}

.header--catalog__content--result__list{
    display: none;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 1690px;
    overflow: auto;
    max-height: calc((var(--vh, 1vh) * 100) - 357px);
}

.header--catalog__content--result__list .simplebar-content{
    display: flex;
    flex-wrap: wrap;
}

.header--catalog__content--result__list .simplebar-scrollbar{
    top: -20px;  
    background: var(--color-gray__dark);
    width: 8px;
    border-radius: unset;
}

.header--catalog__content--result__list .simplebar-track.simplebar-vertical{
    width: 8px;
    right: 35px;
}

.header--catalog__content--result__list .simplebar-content-wrapper{
    padding-right: unset!important;
}

.header--catalog__content--result__list .simplebar-track.simplebar-vertical .simplebar-scrollbar::before{
    display: none;
}

.header--catalog__content--result__list.active{
    display: flex;
}

.header--catalog__content--result__item{
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 19px;
    margin: 0 88px 44px 0;
    border-radius: 4px;
    transition: var(--transition-base);
    padding: 24px 12px 10px;
}

.header--catalog__content--result__item:hover,
.header--catalog__content--result__item:focus{
    background: rgba(256, 256, 256, 0.3);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.header--catalog__content--result__item img{
    width: 130px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 14px;
}

@media screen and (max-width: 2100px){
    .header--catalog__content--nav__item{
        margin-right: 44px;
    }

    .header--catalog__content--result__list{
        width: 1490px;
    }

    .header--catalog__content--result__item{
        margin: 0 44px 22px 0;
    }
}

@media screen and (max-width: 1900px){
    .header--catalog__content--nav{
        margin: 0 -10px;
        width: calc(100% + 20px);
        border-bottom: unset;
        position: relative;
    }

    .header--catalog__content--nav::after{
        content: '';
        display: block;
        position: absolute;
        height: 2px;
        width: calc(100% - 20px);
        left: 10px;
        bottom: -2px;
        background-color: var(--color-orange);
    }

    .header--catalog__content--nav__item{
        width: calc((100% / 5) - 20px);
        margin: 0 10px;
    }

    .header--catalog__content--result__list{
        margin: 0 -10px;
        width: calc(100% + 20px);
    }
    
    .header--catalog__content--result__item{
        width: calc((100% / 5) - 20px);
        margin: 0 10px 20px;
    }

    .header--catalog__content--result__list .simplebar-wrapper{
        width: 100%;
    }

    .header--catalog__content--result__list .simplebar-track.simplebar-vertical{
        right: 0px;
        width: 4px;
    }

    .header--catalog__content--result__list .simplebar-offset{
        width: 100%;
    }
}

@media screen and (max-width: 1500px){
    .header--catalog__content--result__item img{
        width: 100px;
    }
}

@media screen and (max-width: 1400px){
    .header--catalog{
        padding-top: 150px;
    }

    .header--catalog__content--result__list{
        max-height: calc((var(--vh, 1vh) * 100) - 340px);
    }
}

@media screen and (max-width: 1220px){
    .header--catalog__close--wrap:hover{
        transform: translateY(0);
    }
    
    .header--catalog__content--result__list{
        max-height: calc((var(--vh, 1vh) * 100) - 295px);
    }

    .header--catalog__content--nav__item.active::before{
        height: 4px;
    }

    .header--catalog__content--nav__item span{
        font-size: 14px;
        font-weight: 600;
        margin-top: 12px;
    }

    .header--catalog__content--result{
        margin-top: 30px;
    }

    .header--catalog__content--nav__item.electric__tools svg{width: 43px;height: 48px;}
    .header--catalog__content--nav__item.tools svg{width: 63px; height: 43px;}
    .header--catalog__content--nav__item.pumps svg{width: 67px;height: 48px;}
    .header--catalog__content--nav__item.agricultural__eqipment svg{width: 45px;height: 46px;}
    .header--catalog__content--nav__item.eqipment svg{width: 62px;height: 48px;}
}

@media screen and (max-width: 1180px){
    .header--catalog{
        width: 100%;
        padding-top: 40px;
        top: 45px;
        right: 0;
        left: unset;
        z-index: 3;
        overflow-x: hidden;
    }

    .header--catalog__content{
        width: 100%;
    }

    .header--catalog__close{
        position: absolute;
        top: -33px;
        right: 0;
        width: max-content;
        height: auto;
        width: calc(100% - 150px);
        background-color: #DFDFDF;
    }

    .header--catalog__close--wrap{
        margin-left: 15px;
    }

    .header--catalog__close--wrap svg.header--catalog__close--desc{
        display: none;
    }

    .header--catalog__close--wrap svg.header--catalog__close--mobile{
        display: block;
        width: 24px;
        height: 14px;
    }

    .header--catalog__close--wrap span{
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        margin-top: 4px;
    }
    
    .header--catalog__content--nav{
        flex-direction: column;
        border: unset;
    }

    .header--catalog__content--nav__item{
        flex-direction: row;
        padding: unset;
        margin-bottom: 30px;
        position: relative;
        width: 100%;
    }

    .header--catalog__content--nav__item::after{
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        margin-left: auto;
        background-image: url(../images/mobile-arrow.svg);
        background-size: 14px 29px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }

    .header--catalog__content--nav__item:last-child{
        margin-bottom: unset;
    }

    .header--catalog__content--result__list{
        height: calc((var(--vh, 1vh) * 100) - 160px);
        max-height: calc((var(--vh, 1vh) * 100) - 160px);
        width: 100%;
        margin: unset;
    }

    .header--catalog__content--nav::after{
        display: none;
    }

    .header--catalog__content--nav__item.active::before{
        display: none;
    }

    .header--catalog__content--nav__item span{
        margin-top: unset;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-black);
    }

    .header--catalog__content--nav__item.active span{
        color: var(--color-black);
    }

    .header--catalog__content--nav__item.active svg{
        fill: var(--color-gray__dark);
        stroke: var(--color-gray__dark);
    }

    .header--catalog__content--nav__item.electric__tools svg{width: 35px;height: 40px;margin: 0 26px 0 10px;}
    .header--catalog__content--nav__item.tools svg{width: 52px;height: 40px;margin: 0 18px 0 2px;}
    .header--catalog__content--nav__item.pumps svg{width: 55px;height: 40px;margin: 0 16px 0 0;}
    .header--catalog__content--nav__item.agricultural__eqipment svg{width: 38px;height: 40px;margin: 0 25px 0 8px;}
    .header--catalog__content--nav__item.eqipment svg{width: 52px;height: 40px;margin: 0 18px 0 2px;}

    .header--catalog__content--result{
        position: absolute;
        top: 0;
        left: 100%;
        width: calc(100% - 30px);
        transition: var(--transition-base);
        background-color: #DFDFDF;
    }

    .header--catalog__content--result__head{
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .header--catalog__content--result__head span{
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        margin-left: 30px;
        display: block;
        text-transform: uppercase;
    }

    .header--catalog__content--result__head--back{
        display: block;
        width: 40px;
        height: 40px;
        background-image: url(../images/mobile-arrow.svg);
        background-size: 14px 29px;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        transform: rotate(180deg);
    }

    .header--catalog__content--result.show{
        left: 20px;
    }

    .header--catalog__content--result__item{
        width: 100%;
        margin: unset;
        padding: unset;
        flex-direction: row;
        margin-bottom: 10px;
        padding-right: 10px;
        text-align: left;
    }

    .header--catalog__content--result__item img{
        width: 40px;
        height: 40px;
        margin: unset;
        margin-right: 10px;
    }

    .header--catalog__content--result__item span{
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
    }

    .header--catalog__content--result__list .simplebar-track.simplebar-vertical{
        width: 2px;
        background-color: var(--color-gray);
    }

    .header--catalog__content--result__list .simplebar-scrollbar{
        width: 2px;
        right: 0;
    }

    .header--catalog__content--result__item:hover, 
    .header--catalog__content--result__item:focus {
        background: transparent;
        box-shadow: none;
    }
}

/* Header Catalog End */

/* Header Search Modal Start */

.header--search__modal{
    position: absolute;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
    left: 0;
    background-color: #DFDFDF;
    padding: 140px 0 20px;
    transition: var(--transition-base);
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.header--search__modal.show{
    opacity: 1;
    pointer-events: inherit;
}

@media screen and (max-width: 1180px){
    .header--search__modal.show{
        z-index: 101;
    }
}

.header--search__modal .container{
    height: 100%;
}

.header--search__modal--wrap{
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.header--search__modal--close{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 486px;
    width: 100%;
    margin-right: 150px;
    height: 100%;
}

.header--search__modal--close--wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.header--search__modal--close--wrap:hover{
    transform: translateY(-20px);
}

.header--search__modal--close--wrap:hover svg{
    fill: var(--color-orange);
}

.header--search__modal--close--wrap:hover span{
    color: var(--color-orange);
}

.header--search__modal--close--wrap svg{
    fill: var(--color-gray__dark);
    width: 57px;
    height: 69px;
    transition: var(--transition-base);
    margin-bottom: 15px;
}

.header--search__modal--close--wrap span{
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
    transition: var(--transition-base);
    text-transform: uppercase;
    color: var(--color-gray__dark);
}

.header--search__modal--result{
    max-width: 575px;
    width: 100%;
    height: 100%;
}

.header--search__modal--result span{
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    display: block;
    margin-bottom: 50px;
    padding-left: 17px;
}

.header--search__modal--list{
    width: 100%;
    height: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.header--search__modal--list .simplebar-track.simplebar-vertical{
    width: 2px;
    background-color: var(--color-gray);
}

.header--search__modal--list .simplebar-track.simplebar-vertical .simplebar-scrollbar::before{
    opacity: 1;
    top: 0;
    bottom: 0;
    border-radius: unset;
    width: 2px;
    background-color: var(--color-gray__dark);
}

.header--search__modal--item{
    display: flex;
    width: calc(100% - 30px);
    align-items: center;
    padding: 10px 10px 10px 0;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: var(--transition-base);
    border-bottom: 1px solid var(--color-white);
}

.header--search__modal--item:last-child{
    margin-bottom: unset;
}

.header--search__modal--item:hover,
.header--search__modal--item:focus{
    background-color: #ECECE9;
}

.header--search__modal--item__image{
    width: 53px;
    height: 53px;
    margin-right: 36px;
}

.header--search__modal--item__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header--search__modal--item__info{
    width: calc(100% - 89px);
    display: flex;
    flex-direction: column;
}

.header--search__modal--item__name{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    margin-bottom: 5px;
}

.header--search__modal--item__price{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.header--search__modal--search__mobile{
    display: none;
}

@media screen and (max-width: 1700px){
    .header--search__modal--close--wrap{
        margin-right: 50px;
    }

    .header--search__modal--close{
        margin-right: 50px;
    }
}

@media screen and (max-width: 1400px){
    .header--search__modal--close{
        max-width: 406px;
        margin-right: 30px;
    }

    .header--search__modal--result span{
        margin-bottom: 20px;
    }    

    .header--search__modal--list{
        height: calc(100% - 50px);
    }
}

@media screen and (max-width: 1180px){
    .header--search__modal{
        max-width: 360px;
        right: 0;
        left: unset;
        z-index: 1;
        padding: 20px 0;
        box-shadow: -8px 0 16px -8px rgba(0,0,0,0.08);
    }

    .header--search__modal--wrap{
        flex-direction: column;
        width: 100%;
    }

    .header--search__modal--close--wrap{
        margin: unset;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header--search__modal--close{
        max-width: 40px;
        width: 40px;
        height: 40px;
        margin: unset;
        opacity: 1;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1;
    }

    .header--search__modal--close svg{
        width: 24px;
        height: 24px;
        margin: unset;
    }

    .header--search__modal--close span{
        display: none;
    }

    .header--search__modal--search__mobile{
        display: block;
        width: 100%;
    }

    .header--search__modal--search__mobile form{
        display: flex;
        width: 100%;
        position: relative;
    }

    .header--search__modal--search__mobile input{
        width: calc(100% - 40px);
        background: transparent;
        border: 1px solid #A0A3BD;
        border-radius: 2px;
        transition: var(--transition-base);
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
        padding: 0 40px 0 16px;
        height: 40px;
    }

    .header--search__modal--search__mobile input:focus{
        background-color: var(--color-white);
        border-color: var(--color-black);
        outline: none;
    }

    .header--search__modal--search__mobile button{
        width: 40px;
        height: 40px;
        padding: unset;
        background: transparent;
        border: none;
        outline: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: unset;
        position: absolute;
        right: 40px;
        top: calc(50% - 20px);
    }

    .header--search__modal--search__mobile button svg{
        stroke: var(--color-gray__dark);
        width: 20px;
        height: 20px;
    }

    .header--search__modal--result span{
        margin-bottom: 10px;
    }

    .header--search__modal--result{
        margin-top: 20px;
    }

    .header--search__modal--list{
        height: calc(100% - 90px);
    }

    .header--search__modal--item{
        width: calc(100% - 10px);
    }

    .header--search__modal--item__info{
        width: calc(100% - 65px);
    }

    .header--search__modal--item__name{
        font-size: 14px;
        line-height: 17px;
    }

    .header--search__modal--item__image{
        margin-right: 12px;
    }

}


/* Header Search Modal End */

/* Footer Start */

.footer{
    display: flex;
    justify-content: center;
    background-color: var(--color-black);
    padding: 53px 345px 138px 220px;
    overflow-x: hidden;
    width: 100%;
}

.footer--wrap{
    width: 100%;
    display: flex;
    align-items: flex-start;
    max-width: 1606px;
    margin-left: 220px;
}

.footer--info{
    display: flex;
    flex-direction: column;
    margin-right: 198px;
}

.footer--info__logo{
    width: 243px;
    height: 58px;
    margin-bottom: 42px;
}

.footer--info__location{
    margin-bottom: 20px;
}

.footer--info__location--wrap{
    display: flex;
    align-items: center;
}

.footer--info__location--icon__wrap{
    width: 21px;
    height: 22px;
}

.footer--info__location--icon__wrap svg{
    stroke: var(--color-white);
    transition: var(--transition-base);
}

.footer--info__location--wrap .shop-regions-action-link,
.footer--info__location--wrap .shop-regions-action-link .shop-regions__link{
    color: var(--color-white);
    border: unset;
    margin-left: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    transition: var(--transition-base);
}

.footer--info__location--wrap:hover .footer--info__location--icon__wrap svg{
    stroke: var(--color-orange);
}

.footer--info__location--wrap:hover .shop-regions-action-link,
.footer--info__location--wrap:hover .shop-regions-action-link .shop-regions__link{
    color: var(--color-orange);
}

.footer--info__location a.footer--info__location-name {
    margin-left: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-white);
    cursor: pointer;
}

.footer--info__location a.footer--info__location-name:hover {
    color: var(--color-orange);
}

.footer--info__address{
    display: flex;
    flex-direction: column;
}

.footer--info__address a{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;  
    color: #F2F2F2;
    transition: var(--transition-base);
}

.footer--info__address a:hover,
.footer--info__address a:focus{
    color: var(--color-orange);
}

.footer--info__address p{
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #F2F2F2;
    margin-top: 10px;
}

.footer--info__address + .footer--info__address{
    margin-top: 41px;
}

.footer--nav{
    display: flex;
    padding-top: 23px;
    flex-direction: column;
    margin-right: 284px;
}

.footer--nav span{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-gray__dark);
    margin-bottom: 20px;
}

.footer--nav nav ul li{
    margin-bottom: 15px;
}

.footer--nav nav ul li:last-child{
    margin-bottom: unset;
}

.footer--nav nav ul li a{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-white);
}

.footer--nav nav ul li a:hover, 
.footer--nav nav ul li a:focus{
    color: var(--color-orange);
}

.footer--catalog_s_social{
    display: flex;
    align-items: flex-start;
}

.footer--catalog{
    margin-right: 300px;
    display: flex;
    flex-direction: column;
}

.footer--catalog__btn{
    border: 1px solid var(--color-gray__dark);
    border-radius: 2px;
    padding: 12px 38px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-base);
}

.footer--catalog__btn:hover{
    color: var(--color-black);
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

.footer--catalog__list ul{
    display: flex;
    flex-direction: column;
}

.footer--catalog__list ul li{
    margin-bottom: 15px;
}

.footer--catalog__list ul li:last-child{
    margin-bottom: unset;
}

.footer--catalog__list ul li a{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-white);
}

.footer--catalog__list ul li a:hover,
.footer--catalog__list ul li a:focus{
    color: var(--color-orange);
}

.footer--social{
    display: flex;
    align-items: center;
}

.footer--social a + a{
    margin-left: 60px;
}

.footer--social a svg{
    width: 51px;
    height: 58px;
    fill: var(--color-gray);
    transition: var(--transition-base);
}

.footer--social a:hover svg,
.footer--social a:focus svg{
    fill: var(--color-orange);
}

@media screen and (max-width: 2200px){
    .footer--wrap{
        margin-left: 110px;
    }
}

@media screen and (max-width: 1920px){
    .footer{
        padding: 53px 0px 138px 0px;
    }

    .footer--wrap{
        max-width: 100%;
        margin: unset;
    }
}

@media screen and (max-width: 1600px){
    .footer--wrap{
        justify-content: space-between;
    }

    .footer--info,
    .footer--nav{
        margin-right: unset;
    }
}

@media screen and (max-width: 1500px){
    .footer--catalog{
        margin-right: 150px;
    }
}

@media screen and (max-width: 1180px){
    .footer--catalog{
        margin-right: 80px;
    }
}

@media screen and (max-width: 1000px){
    .footer--catalog_s_social{
        flex-direction: column;
    }

    .footer--catalog{
        margin-right: unset;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 768px){
    .footer{
        padding: 17px 0 60px;
    }

    .footer--wrap{
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer--info__logo{
        width: 93px;
        height: 22px;
        margin-bottom: 24px;
    }

    .footer--info__location--wrap .shop-regions-action-link,
    .footer--info__location--wrap .shop-regions-action-link .shop-regions__link{
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        margin-left: 14px;
    }

    .footer--nav{
        margin-left: 150px;
        padding-top: 47px;
    }

    .footer--catalog_s_social{
        width: 100%;
        margin-top: 44px;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .footer--catalog{
        margin-bottom: unset;
    }

    .footer--social{
        margin: 0 190px 0 70px;
        flex-direction: column;
    }

    .footer--social a + a{
        margin-left: unset;
        margin-top: 33px;
    }
}

@media screen and (max-width: 550px){
    .footer--nav{
        margin-left: auto;
        margin-right: 25px;
    }

    .footer--social{
        margin-right: unset;
    }

    .footer--catalog{
        margin-left: auto;
        margin-right: 40px;
    }
}

@media screen and (max-width: 450px){
    .footer--nav{
        margin-right: unset;
    }

    .footer--catalog{
        margin-right: 15px;
    }
}

@media screen and (max-width: 400px){
    .footer--nav,
    .footer--info{
        width: calc(50% - 10px);
        margin-left: unset;
    }

    .footer--nav{
        margin: 0 0 0 20px;
    }

    .footer--social{
        margin-left: unset;
    }


    .footer--catalog{
        margin-right: 0;
    }
}

.dl--category{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 31px 0 100px;
}

.dl--category__name{
    font-weight: 700;
    font-size: 28px;
    line-height: 18px;
    margin-bottom: 50px;
}

.dl--category__parent--link{
    display: flex;
    align-items: center;
    width: max-content;
    margin-bottom: 20px;
}

.dl--category__parent--link svg{
    width: 8px;
    height: 13px;
    stroke: var(--color-gray__dark);
    margin-right: 10px;
    transition: var(--transition-base);
    margin-bottom: 1px;
}

.dl--category__parent--link span{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-gray__dark);
    transition: var(--transition-base);
}

.dl--category__parent--link:hover svg,
.dl--category__parent--link:hover svg{
    stroke: var(--color-orange);
}

.dl--category__parent--link:hover span,
.dl--category__parent--link:hover span{
    color: var(--color-orange);
}

.dl--category__wrap{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.dl--category__list--wrap{
    width: calc((75% - 30px));
}

.dl--category__list--wrap.dl-6, .search__list--wrap {
    width: 100%;
}

.dl--category__list{
    width: calc(100% + 30px);
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.dl--category__item{
    width: calc((100% / 4) - 30px);
    display: flex;
    flex-direction: column;
    padding: 36px 20px 78px;
    background: #FFFFFF;
    border-radius: 12px;
    margin: 0 15px 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.dl--category__list--wrap.dl-6  .dl--category__item{
    width: calc((100% / 5) - 30px);
}

.dl--category__item--sale{
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-white);
    padding: 5px 10px;
    background-color: var(--color-orange);
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.dl--category__item--video{
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray__dark);
    border-radius: 4px;
    padding: 5px 10px;
    background-color: var(--color-white);
    position: absolute;
    left: 92px;
    top: 10px;
}

.dl--category__item--video span{
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    color: var(--color-gray__dark);
    margin-right: 4px;
}

.dl--category__item--video svg{
    width: 10px;
    height: 11px;
    margin-top: 1px;
}

.dl--category__item--image{
    width: 100%;
    margin-bottom: 16px;
}

.dl--category__item--image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.dl--category__item--info{
    width: 100%;
    position: absolute;
    top: calc(100% - 92px);
    padding: 30px 20px;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    transition: var(--transition-base);
}

.dl--category__item__bg{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 15px rgba(254, 240, 221, 0.7);
    z-index: 1;
    border: 1px solid rgba(251, 215, 164, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.dl--category__item--title{
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-black);
    height: 48px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
    transition: var(--transition-base);
}

.dl--category__item--title:hover{
    color: var(--color-orange);
}

.dl--category__item--summary{
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #828282;
    height: 30px;
    margin: -20px 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width: 1181px){
    .dl--category__item:has(.dl--category__item--summary) .dl--category__item--info{
        top: calc(100% - 122px);
    }

    .dl--category__item:has(.dl--category__item--summary):hover .dl--category__item--info{
        top: calc(100% - 180px);
    }
}

.dl--category__item--info div:not(.dl--category__item--title){
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-base);
}

.dl--category__item--prices{
    display: flex;
    align-items: center;
}

.dl--category__item--price{
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #333333;
    margin-right: 16px;
}

.dl--category__item--price__compare{
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-decoration-line: line-through;
    color: #828282;
}

.dl--category__item--stock{
    margin-left: auto;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
}

.dl--category__item--stock.dl-green{
    color: #27AE60;
}

.dl--category__item--stock.dl-red{
    color: red;
}

.dl--category__item--code{
    margin: 14px 0 21px;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-black);
}

.dl--category__item--wrap__buy{
    display: flex;
    align-items: center;
}

.dl--category__item--buy{
    display: flex;
    align-items: center;
    outline: unset;
    border: unset;
    background-color: var(--color-white);
    cursor: pointer;
    transform: var(--transition-base);
}

.dl--category__item--buy.disabled{
    pointer-events: none;
    cursor: default;
}

.dl--category__item--buy.disabled svg{
    stroke: var(--color-gray__dark);
}

.dl--category__item--buy.added{
    background-color: var(--color-orange);
    padding: 8px;
    border-radius: 4px;
}

.dl--category__item--buy.added svg{
    stroke: var(--color-white);
    width: 20px;
    height: 20px;
}

.dl--category__item--buy.added span{
    display: none;
}

.dl--category__item--buy svg{
    width: 26px;
    height: 26px;
    stroke: var(--color-orange);
    transition: var(--transition-base);
}

.dl--category__item--buy span{
    color: var(--color-black);
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    margin-left: 16px;
}

.dl--category__item--compare{
    margin: 0 12px 0 auto;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.dl--category__item--compare:not(.active):hover svg,
.dl--category__item--compare.active svg{
    fill: var(--color-orange);
}

.dl--category__item--compare svg{
    width: 100%;
    height: 100%;
    fill: var(--color-gray);
    transition: var(--transition-base);
}

.dl--category__item--features{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.dl--category__item--features:not(:has(.dl--category__item--features__elem)){
    display: none;
}

.dl--category__item--features__elem{
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dl--category__item--features__elem:last-child{
    margin-bottom: unset;
}

.dl--category__item--features__elem span{
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-black)
}

.dl--category__item--features__elem span:first-child{
    width: calc(60% - 10px);
}

.dl--category__item--features__elem span:last-child{
    width: calc(40% - 10px);
}

.dl--category__item:hover{
    z-index: 2;
    overflow: visible;
}

.dl--category__item:hover .dl--category__item__bg{
    opacity: 1;
}

.dl--category__item:hover .dl--category__item--info{
    top: calc(100% - 150px);
    background: rgba(255, 255, 255, 0.97);
}

.dl--category__item:hover .dl--category__item--info::after{
    bottom: 0;
}

.dl--category__item:hover .dl--category__item--info div:not(.dl--category__item--title){
    opacity: 1;
    pointer-events: inherit;
}

.dl--filters{
    width: calc(25% - 30px);
    float: unset;
}

.dl--filters.filters .filter-param{
    margin-bottom: 30px;
}

.dl--filters.filters .filter-param .filter-param__title{
    margin-bottom: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
}

.dl--filters.filters .filter-param .filter-param__title:not(.non-hover):hover span{
    color: var(--color-orange);
}

.dl--filters.filters .filter-param .filter-param__title:not(.non-hover):hover .filter-param__title--arrow svg{
    stroke: var(--color-orange);
}

.dl--filters.filters .filter-param .filter-param__title span{
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    width: calc(100% - 30px);
    transition: var(--transition-base);
}

.dl--filters.filters .filter-param .filter-param__title .filter-param__title--arrow{
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.dl--filters.filters .filter-param .filter-param__title .filter-param__title--arrow svg{
    width: 13px;
    height: 8px;
    stroke: var(--color-black);
    transition: var(--transition-base);
}

.dl--filters.filters .filter-param.show .filter-param__title .filter-param__title--arrow{
    transform: rotate(180deg);
}

.dl--filters.filters .filter-param .filter-param__body.hide{
    display: none;
}

.dl--filters.filters .filter-param .dl--filter__label--checbox{
    margin-bottom: 11px;
    display: flex;
    align-items: center;
}

.dl--filters.filters .filter-param .dl--filter__label--checbox.disabled{cursor: default;}
.dl--filters.filters .filter-param .dl--filter__label--checbox.disabled span{border-color: var(--color-gray__dark);}
.dl--filters.filters .filter-param .dl--filter__label--checbox.disabled small{color: var(--color-gray__dark);}
.dl--filters.filters .filter-param .dl--filter__label--checbox:not(.disabled):hover span{border-color: var(--color-orange);}
.dl--filters.filters .filter-param .dl--filter__label--checbox:not(.disabled):hover small{color: var(--color-orange);}
.dl--filters.filters .filter-param .dl--filter__label--checbox:last-child{margin-bottom: unset;}
.dl--filters.filters .filter-param .dl--filter__label--checbox input{display: none;}

.dl--filters.filters .filter-param .dl--filter__label--checbox span{
    width: 19px;
    height: 19px;
    border: 1px solid var(--color-black);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    position: relative;
    transition: var(--transition-base);
}

.dl--filters.filters .filter-param .dl--filter__label--checbox span::after{
    content: '';
    display: block;
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--color-orange);
    border-radius: 2px;
    opacity: 0;
}

.dl--filters.filters .filter-param .dl--filter__label--checbox input:checked + span::after{
    opacity: 1;
}

.dl--filters.filters .filter-param .dl--filter__label--checbox small{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-black);
    margin-left: 10px;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.dl--filters.filters .filter-param .dl--filter__label--radio{
    display: flex;
    align-items: center;
    margin-bottom: 11px;
}

.dl--filters.filters .filter-param .dl--filter__label--radio.disabled{cursor: default;}

.dl--filters.filters .filter-param .dl--filter__label--radio:not(.disabled):hover span{border-color: var(--color-orange);}
.dl--filters.filters .filter-param .dl--filter__label--radio:not(.disabled):hover small{color: var(--color-orange);}

.dl--filters.filters .filter-param .dl--filter__label--radio.disabled span{border-color: var(--color-gray__dark);}
.dl--filters.filters .filter-param .dl--filter__label--radio.disabled small{color: var(--color-gray__dark);}

.dl--filters.filters .filter-param .dl--filter__label--radio:last-child{margin-bottom: unset;}

.dl--filters.filters .filter-param .dl--filter__label--radio input{display: none;}

.dl--filters.filters .filter-param .dl--filter__label--radio span{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    position: relative;
    transition: var(--transition-base);
}

.dl--filters.filters .filter-param .dl--filter__label--radio span::after{
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-orange);
    border-radius: 50%;
    opacity: 0;
}

.dl--filters.filters .filter-param .dl--filter__label--radio input:checked + span::after{
    opacity: 1;
}

.dl--filters.filters .filter-param .dl--filter__label--radio small{
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-black);
    margin-left: 10px;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.category--filters--selected{
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

.category--filters--selected--title{
    height: 37px;
    display: flex;
    align-items: center;
    margin: 0 10px 15px 0;
}

.category--filters--selected__item{
    padding: 9px 13px 9px 17px;
    background: #E7E7E7;
    border-radius: 2px;
    margin: 0 30px 15px 0;
    display: flex;
    align-content: center;
}

.filters-selected__title{
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #2C2C2C;
}

.filters--selected__remove{
    width: 13px;
    height: 13px;
    margin-left: 10px;
    cursor: pointer;
}

.filters--selected__remove:hover svg{
    stroke: var(--color-orange);
}

.filters--selected__remove svg{
    width: 100%;
    height: 100%;
    stroke: #BDBDBD;
    transition: var(--transition-base);
}

.filters--selected__clear--all{
    height: 37px;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-gray__dark);
    transition: var(--transition-base);
    margin-bottom: 15px;
}

.filters--selected__clear--all:hover,
.filters--selected__clear--all:focus{
    color: var(--color-orange);
}

.dl--category__subs{
    width: calc(100% + 60px);
    margin: 0 -30px;
    display: flex;
    flex-wrap: wrap;
}

.dl--category__subs a{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% / 8) - 60px);
    margin: 0 30px 60px;
}

.dl--category__subs a img{
    width: 130px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 14px;
}

.dl--category__subs a span{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    text-align: center;
    transition: var(--transition-base);
}

.dl--category__subs a:hover span{
    color: var(--color-orange);
}

@media screen and (max-width: 1920px){
    .dl--category__subs a{
        width: calc((100% / 6) - 60px);
    }
}


@media screen and (max-width: 1366px){
    .dl--category__subs{
        width: calc(100% + 40px);
        margin: 0 -20px;
    }

    .dl--category__subs a{
        width: calc((100% / 5) - 40px);
        margin: 0 20px 40px;
    }
}

@media screen and (max-width: 1180px){
    .dl--category__item--compare:not(.active):hover svg{
        fill: var(--color-gray);
    }
}
@media screen and (max-width: 1050px){
    .dl--category__subs a{
        width: calc((100% / 5) - 40px);
        margin: 0 20px 40px;
    }
}

@media screen and (max-width: 876px){
    .dl--category__subs{
        width: calc(100% + 30px);
        margin: 0 -15px;
    }

    .dl--category__subs a{
        width: calc((100% / 4) - 30px);
        margin: 0 15px 30px;
    }
}

@media screen and (max-width: 660px){
    .dl--category__subs a{
        width: calc((100% / 3) - 30px);
    }
}

@media screen and (max-width: 550px){
    .dl--category__subs{
        width: calc(100% + 20px);
        margin: 0 -10px;
    }

    .dl--category__subs a{
        width: calc(50% - 20px);
        margin: 0 10px 20px;
    }
}

.dl--category__wrap .paging-nav{
    width: 100%;
    padding: unset;
    display: flex;
    justify-content: center;
    margin: 66px 0;
}

.dl--category__wrap .paging-nav ul{
    display: flex;
    align-items: center;
}

.dl--category__wrap .paging-nav ul li{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: unset;
    overflow: hidden;
    position: relative;
}

.dl--category__wrap .paging-nav ul li.selected{
    background: transparent;
}

.dl--category__wrap .paging-nav ul li.selected a{
    border-color: var(--color-orange);
    background: transparent;
}

.dl--category__wrap .paging-nav ul li:not(.selected):hover a{
    background: var(--color-orange);
    color: var(--color-white);
}

.dl--category__wrap .paging-nav ul li a,
.dl--category__wrap .paging-nav ul li span{
    border: 1px solid transparent;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    padding: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: var(--color-black);
    transition: var(--transition-base);
}

.dl--category__viewed{
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, #FFFAF3 0%, #E4CFB0 100%);
    display: none;
    padding-bottom: 80px;
}

.dl--category__viewed--head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.dl--category__viewed--title{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 20px;
}

.dl--category__viewed--arrows{
    display: flex;
    align-items: center;
}

.dl--category__viewed--arrow{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    cursor: pointer;
}

.dl--category__viewed--arrow.swiper-button-lock{
    opacity: 0;
    pointer-events: none;
}

.dl--category__viewed--arrow.prev{
    margin-right: 16px;
}

.dl--category__viewed--arrow.prev svg{
    transform: rotate(180deg);
}

.dl--category__viewed--arrow svg{
    width: 8px;
    height: 13px;
    stroke: var(--color-black);
    transition: var(--transition-base);
}

.dl--category__viewed--arrow:hover svg{
    stroke: var(--color-orange);
}

.dl--category__slider--list{
    width: 100%;
    display: flex;
    overflow: hidden;
}

.dl--category__slider--list .swiper-wrapper{
    align-items: stretch;
}

.dl--category__slider--list .dl--category__item{
    margin: unset;
    height: auto;
}

.dl--category__slider--list .dl--category__item .dl--category__item__bg{
    display: none;
}

.dl--category__slider--list .dl--category__item .dl--category__item--prices{
    margin-bottom: 21px;
}

.dl--category__slider--list .dl--category__item .dl--category__item--info{
    top: unset;
    bottom: -92px;
}

.dl--category__slider--list .dl--category__item:hover .dl--category__item--info{
    top: unset;
    bottom: 0;
}

.dl--mobile__btn--filters,
.dl--filters__bg,
.dl--filters__head{
    display: none;
}

.dl--filter__bottom,
.dl--filter__bottom.hidden{
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 1920px){
    .dl--category__viewed .container,
    .dl--category .container{
        max-width: 1340px;
        padding: 0 20px;
    }

    .dl--category__list--wrap{
        width: calc(75% - 20px);
    }

    .search__list--wrap {
        width: 100%;
    }

    .dl--category__list--wrap .dl--category__item{
        width: calc((100% / 3) - 30px);
    }

    .search__list--wrap .dl--category__item {
        width: calc((100% / 4) - 30px);
    }

    .dl--category__list--wrap.dl-6 .dl--category__list{
        width: calc(100% + 30px);
        margin: 0 -15px;
    }

    .dl--category__list--wrap.dl-6 .dl--category__item {
        width: calc((100% / 4) - 30px);
        margin: 0 15px 30px;
    }

    .dl--filters{
        width: calc(25% - 20px);
    }
}

@media screen and (max-width: 1366px){
    .dl--category__list--wrap{
        width: calc(75% - 10px);
    }

    .search__list--wrap {
        width: 100%;
    }

    .dl--category__list--wrap .dl--category__list{
        width: calc(100% + 20px);
        margin: 0 -10px;
    }

    .dl--category__list--wrap .dl--category__item{
        width: calc((100% / 3) - 20px);
        margin: 0 10px 20px;
    }

    .dl--filters{
        width: calc(25% - 10px);
    }
}

@media screen and (max-width: 1180px){
    .dl--category__list--wrap .dl--category__list{
        width: calc(100% + 16px);
        margin: 0 -8px;
    }

    .dl--category__list--wrap .dl--category__item{
        width: calc((100% / 3) - 16px);
        margin: 0 8px 16px;
        padding: 36px 20px 20px;
    }

    .dl--category__item:hover .dl--category__item--info{
        top: unset;
    }

    .dl--category__item--info{
        position: relative;
        left: unset;
        top: unset;
        padding: unset;
        display: flex;
        flex-direction: column;
    }

    .dl--category__item__bg{
        display: none;
    }

    .dl--category__item--info div:not(.dl--category__item--title),
    .dl--category__item:hover .dl--category__item--info div:not(.dl--category__item--title){
        opacity: 1;
        pointer-events: inherit;
    }

    .dl--category__item--code,
    .dl--category__item--features{
        display: none;
    }

    .dl--category__item--wrap__buy{
        margin-top: 20px;
    }

    .dl--category__slider--list .dl--category__item{
        padding: 12px 20px;
    }

    .dl--category__slider--list .dl--category__item .dl--category__item--info,
    .dl--category__slider--list .dl--category__item:hover .dl--category__item--info{
        top: unset;
        bottom: unset;
    }
}

@media screen and (max-width: 1024px){
    .dl--category__list--wrap{
        width: 100%;
    }

    .dl--category__name{
        margin-bottom: 20px;
    }

    .dl--filters{
        position: fixed;
        right: 0;
        top: 0;
        z-index: 4;
        background: #DFDFDF;
        width: 360px;
        height: calc((var(--vh, 1vh) * 100));
        padding: 4px 20px 0 53px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-base);
    }

    .dl--filters.show{
        opacity: 1;
        pointer-events: inherit;
    }

    .dl--filters__bg{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc((var(--vh, 1vh) * 100));
        background: rgba(35, 35, 35, 0.9);
        backdrop-filter: blur(25px);
        z-index: 3;
        transition: var(--transition-base);
        opacity: 0;
        pointer-events: none;
    }

    .dl--filters__bg.show{
        opacity: 1;
        pointer-events: inherit;
    }

    .dl--filters__head{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 16px;
    }

    .dl--filters__head--reset{
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-gray__dark);
        margin-right: 25px;
        transition: var(--transition-base);
    }

    .dl--filters__head--reset:hover{
        color: var(--color-orange);
    }

    .dl--filters__head--back{
        display: flex;
        align-items: center;
        padding: 10px 33px;
        border: 1px solid var(--color-gray);
        border-radius: 2px;
        cursor: pointer;
    }

    .dl--filters__head--back span{
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-black);
        margin-right: 16px;
    }

    .dl--filters__head--back svg{
        width: 10px;
        height: 17px;
    }

    .dl--mobile__btn--filters{
        display: flex;
        align-items: center;
        margin-left: auto;
        width: max-content;
        border: 1px solid var(--color-gray);
        border-radius: 2px;
        padding: 8px 12px;
        cursor: pointer;
    }

    .dl--mobile__btn--filters svg{
        width: 22px;
        height: 19px;
        margin-right: 16px;
    }

    .dl--mobile__btn--filters span{
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-black);
    }

    .dl--mobile__btn--filters small{
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-orange);
        margin-left: 16px;
    }

    .dl--filters form{
        padding: 0 20px;
        overflow: auto;
        height: calc((var(--vh, 1vh) * 100) - 145px);
    }

    .dl--filters form .simplebar-track.simplebar-vertical{
        width: 2px;
        background: var(--color-gray);
    }

    .dl--filters form .simplebar-scrollbar{
        width: 2px;
    }

    .dl--filters form .simplebar-track.simplebar-vertical .simplebar-scrollbar::before{
        top: 0;
        bottom: 0;
        background-color: var(--color-gray__dark);
    }

    .dl--filter__bottom{
        opacity: 1;
        pointer-events: inherit;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 360px;
        background-color: var(--color-orange);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 6px 30px;
        z-index: 2;
    }

    .dl--filter__bottom--resault{
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        color: var(--color-black);
    }

    .dl--filter__bottom--resault span{
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        margin-left: 8px;
        color: var(--color-black);
    }

    .dl--filter__bottom--resault__btn{
        background: var(--color-orange);
        border: 1px solid var(--color-white);
        border-radius: 2px;
        text-shadow: unset;
        color: var(--color-white);
        padding: 6px 20px;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        outline: unset;
        cursor: pointer;
        margin-left: 38px;
    }

    .dl--category__item--buy span,
    .dl--category__item--stock{
        display: none;
    }

    .dl--category__list--wrap.dl-6 .dl--category__list{
        width: calc(100% + 20px);
        margin: 0 -10px;
    }

    .dl--category__list--wrap.dl-6 .dl--category__item {
        width: calc((100% / 3) - 20px);
        margin: 0 10px 20px;
    }
}

@media screen and (max-width: 700px){
    .dl--category__item--sale{
        left: 4px;
    }

    .dl--category__item--video{
        left: 70px;
    }

    .dl--category__name{
        font-size: 18px;
        line-height: 24px;
    }

    .dl--category__parent--link{
        margin-bottom: 10px;
    }

    .dl--category__parent--link span{
        font-size: 14px;
        line-height: 16px;
    }

    .dl--category__list{
        width: calc(100% + 12px);
        margin: 0 -6px;
    }

    .dl--category__list--wrap .dl--category__item{
        width: calc(50% - 12px);
        margin: 0 6px 12px;
        padding: 24px 4px 22px;
        border-radius: 2px;
    }

    .dl--category__list--wrap.dl-6 .dl--category__list{
        width: calc(100% + 12px);
        margin: 0 -6px;
    }

    .dl--category__list--wrap.dl-6 .dl--category__item {
        width: calc((100% / 2) - 12px);
        margin: 0 6px 12px;
        border-radius: 2px;
    }

    .dl--category__item--image{
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }

    .dl--category__item--image img{
        width: calc(100% - 20px);
        height: auto;
    }

    .dl--category__item--title{
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 8px;
    }

    .dl--category__item--wrap__buy{
        margin-top: 11px;
    }

    .dl--category__item--video span{
        display: none;
    }

    .dl--category__slider--list .dl--category__item{
        padding: 24px 4px 22px;
        border-radius: 2px;
    }

    .dl--category__item--info{
        height: 100%;
    }

    .dl--category__item--info form{
        margin-top: 10px;
    }
}

@media screen and (max-width: 500px){
    .dl--category__item--prices{
        flex-direction: column;
        align-items: flex-start;
    }

    .dl--category__item--price{
        margin: 0 0 4px 0;
        font-size: 14px;
        line-height: 24px;
    }

    .dl--category__item--price__compare{
        font-size: 10px;
        line-height: 12px;
    }
}

/* Footer End */

.dl-content h1{
    margin-bottom: 30px;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: var(--color-black);
}

.dl-content h2{
    margin-bottom: 20px;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: var(--color-black);
}

.dl-content h3{
    margin-bottom: 18px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    color: var(--color-black);
}

.dl-content p{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-black);
    margin-bottom: 12px;
}

.dl-content strong{
    font-weight: bold;
}

.dl-content ul{
    list-style: inherit;
    padding: 0 0 0 20px;
    margin-bottom: 20px;
}

.dl-content ul li{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-black);
}

.dl-content #button-show{
    margin-top: 18px;
    color: var(--color-black);
    font-size: 16px;
    line-height: 1;
    transition: var(--transition-base);
    cursor: pointer;
}

.dl-content #button-show:hover{
    color: var(--color-orange);
}

.dl-content input[type="text"]:focus, 
.dl-content input[type="email"]:focus,
.dl-content input[type="password"]:focus{
    border-color: var(--color-orange);
}

.dl-content .wa-buttons-wrapper input[type="submit"],
.dl-content .wa-buttons-wrapper input[type="submit"]{
    background: var(--color-orange);
    font-weight: 700;
    color: var(--color-black);
    cursor: pointer;
    transition: var(--transition-base);
    border-radius: 2px;
    box-shadow: none;
    border: unset;
    text-shadow: unset;
    font-size: 16px;
}

.dl-content input[type="submit"]:hover,
.dl-content input[type="submit"]:focus{
    opacity: 0.7;
}

.dl-content .wa-login-url a,
.dl-content .wa-signup-url a,
.dl-content .wa-login-forgotpassword-url{
    transition: var(--transition-base);
}

.dl-content .wa-login-url a:hover,
.dl-content .wa-login-url a:focus,
.dl-content .wa-login-forgotpassword-url:hover,
.dl-content .wa-login-forgotpassword-url:focus,
.dl-content .wa-signup-url a:hover,
.dl-content .wa-signup-url a:focus{
    color: var(--color-orange);
}

@media screen and (max-width: 408px){
    .dl-content .wa-login-forgotpassword-url{
        margin-top: 20px;
    }
}

/* Product Page Start */

.dl--product{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.dl--product .container, .product-page.dl--category__product--list .container, .product-page.dl--category__viewed .container {
    max-width: 1340px;
    padding: 0 20px;
}

.dl--product__parent--link{
    padding-top: 31px;
    display: flex;
    align-items: center;
}

.dl--product__parent--link svg{
    width: 8px;
    height: 13px;
    stroke: var(--color-gray__dark);
    transition: var(--transition-base);
}

.dl--product__parent--link span{
    color: var(--color-gray__dark);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-left: 12px;
    transition: var(--transition-base);
}

.dl--product__parent--link:hover svg{
    stroke: var(--color-orange);
}

.dl--product__parent--link:hover span{
    color: var(--color-orange);
}

.dl--product__name{
    margin: 20px 0 30px;
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    color: #231F20;
}

.dl--product__nav--wrap{
    position: relative;
}

.dl--product__nav{
    width: 100%;
    background-color: var(--color-white);
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

.dl--product__nav a{
    padding: 10px;
    border-bottom: 2px solid transparent;
    margin-right: 30px;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.dl--product__nav a span{
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #909090;
}

.dl--product__nav a .count{
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-black);
    margin-left: 5px;
}

.dl--product__nav a:last-child{
    margin-right: unset;
}

.dl--product__nav a.active{
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.dl--product--wrap{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
}

.dl--product__left{
    position: sticky;
    top: 24px;
    z-index: 4;
}

.dl--product__left,
.dl--product__right{
    width: calc(50% - 25px);
}

.dl--product__image--wrap{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 484px;
    position: relative;
    background-color: var(--color-white);
}

.dl--product__image--wrap.full{
    justify-content: center;
    background-color: var(--color-white);
}

.dl--product__image--wrap.full img{
    width: 100%;
    object-fit: contain;
}

.dl--product__thumbs{
    width: 110px;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-white);
}

.dl--product__thumb{
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
}

.dl--product__thumb.active{
    border-color: var(--color-orange);
}

.dl--product__thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dl--product__main--image{
    width: calc(100% - 110px - 36px);
    height: 100%;
    background-color: var(--color-white);
}

.dl--product__main--image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dl--product__image--arrow{
    width: 110px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0) 0%, #FFFAF3 92.71%);
    border-radius: 6px;
    height: 72px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    transition: var(--transition-base);
    cursor: pointer;
}

.dl--product__image--arrow svg{
    width: 25px;
    height: 14px;
    stroke: var(--color-gray__dark);
    transition: var(--transition-base);
}

.dl--product__image--arrow:not(.swiper-button-disabled):hover svg{
    stroke: var(--color-orange);
}

.dl--product__image--arrow.swiper-button-disabled{
    opacity: 0;
    pointer-events: none;
}

.dl--product__image--arrow.dl--product__image--arrow__prev{
    top: 0;
}

.dl--product__image--arrow.dl--product__image--arrow__prev{
    transform: rotate(180deg);
}

.dl--product__image--arrow.dl--product__image--arrow__next{
    bottom: 0;
}

.dl--product__video{
    width: 100%;
    margin-top: 49px;
    max-height: 401px;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.dl--product__video img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: 50% 50%;
}

.dl--product__video--play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    padding: 16px 32px;
    transition: var(--transition-base);
    cursor: pointer;
}

.dl--product__video--play span{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: rgba(256, 256, 256, 0.7);
    margin-right: 20px;
    transition: var(--transition-base);
}

.dl--product__video--play svg{
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
    opacity: 0.7;
    transition: var(--transition-base);
}

.dl--product__video--play:hover{
    border-color: var(--color-orange);
}

.dl--product__video--play:hover span{
    color: var(--color-orange);
}

.dl--product__video--play:hover svg{
    stroke: var(--color-orange);
}

.dl--product__descr{
    padding: 20px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    border-radius: 12px;
}

.dl--product__descr--title{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 20px;
}

.dl--product__descr--text{
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--color-black);
}

.dl--product__descr--text *{
    font-size: 14px;
    line-height: 150%;
}

.dl--product__descr--text p{
    margin-bottom: 10px;
}

.dl--product__right{
    display: flex;
    flex-direction: column;
}

.dl--product__cart{
    background-color: var(--color-white);
    padding: 20px 30px 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
}

.dl--product__cart--code{
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    color: var(--color-black);
    margin-bottom: 35px;
}

.dl--product__cart--code:has(+ .dl--product__cart--summary){
    margin-bottom: 12px;
}

.dl--product__cart--summary{
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-black);
    margin: 0 0 35px;
}

.dl--product__cart--buy{
    display: flex;
    align-items: center;
}

.dl--product__cart--buy__prices{
    display: flex;
    flex-direction: column;
}

.dl--product__cart--buy__compare--price{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-gray__dark);
    text-decoration: line-through;
}

.dl--product__cart--buy__real--price{
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    color: #333333;
    white-space: nowrap;
}

.dl--product__cart--buy__btn{
    padding: 13px 28px;
    background: var(--color-orange);
    color: #fff;
    border-radius: 4px;
    display: flex;
    gap: 13px;
    align-items: center;
    border: unset;
    outline: unset;
    cursor: pointer;
    transition: var(--transition-base);
    margin: 0 56px 0 44px;
}

.dl--product__cart--buy__btn:not([disabled]):hover{
    background: var(--color-orange);
    opacity: 0.7;
}

.dl--product__cart--buy__btn[disabled]{
    cursor: default;
}

.dl--product__cart--buy__btn svg{
    width: 26px;
    height: 26px;
    stroke: var(--color-white);
}

.dl--product__cart--buy__btn span{
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
}

.dl--product--compare{
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.dl--product--compare svg{
    width: 100%;
    min-width: 100%;
    height: 100%;
    fill: var(--color-gray__dark);
    transition: var(--transition-base);
}

.dl--product--compare.active svg{
    fill: var(--color-orange);
}

.dl--product--compare:not(.active):hover svg{
    fill: var(--color-orange);
}

.dl--product__stock--btn{
    display: flex;
    align-items: center;
    margin-top: 42px;
}

.dl--product__stock--btn svg{
    width: 20px;
    height: 22px;
    stroke: var(--color-gray__dark);
    transition: var(--transition-base);
    margin-right: 13px;
}

.dl--product__stock--btn span{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-gray__dark);
    transition: var(--transition-base);
}

.dl--product__stock--btn.js-dl--product__stock--btn:hover{
    cursor: pointer;
}

.dl--product__stock--btn.js-dl--product__stock--btn:hover svg{
    stroke: var(--color-orange);
}

.dl--product__stock--btn.js-dl--product__stock--btn:hover span{
    color: var(--color-orange);
}

.dl--product__features{
    padding: 30px;
    background-color: var(--color-white);
    border-radius: 12px;
    margin-bottom: 30px;
}

.dl--product__features--title{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 20px;
}

.dl--product__features--list{
    display: flex;
    flex-direction: column;
}

.dl--product__features--item{
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.dl--product__features--item:last-child{
    margin-bottom: unset;
}

.dl--product__features--item__name{
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    color: var(--color-gray__dark);
    width: calc(70% - 30px);
}

.dl--product__features--item__value{
    font-weight: 600;
    font-size: 14px;
    line-height: 170%;
    color: var(--color-black);
    width: 30%;
}

.dl--product__docs{
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.dl--product__docs--title{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 30px;
}

.dl--product__docs--item{
    display: flex;
    align-items: center;
}

.dl--product__docs--item .fa{
    display: none;
}

.dl--product__docs--item p{
    display: flex;
}

.dl--product__docs--item a{
    margin-left: 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    transition: var(--transition-base);
    color: var(--color-black);
    text-decoration: unset;
}

.dl--product__docs--item:hover svg{
    stroke: var(--color-orange);
}

.dl--product__docs--item:hover a{
    color: var(--color-orange);
}

.dl--product__docs--item:last-child{
    margin-bottom: unset;
}

.dl--product__docs--item svg{
    width: 20px;
    min-width: 20px;
    height: 24px;
    stroke: var(--color-gray__dark);
    transition: var(--transition-base);
}

.dl--product__del_s_pay{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 12px;
    background-color: var(--color-white);
}

.dl--product__del_s_pay--title{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: var(--color-black);
    margin-bottom: 30px;
}

.dl--product__del_s_pay ul li{
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}

.dl--product__del_s_pay ul li svg{
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.dl--product__del_s_pay ul li span{
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
}

.dl--product__del_s_pay ul li:last-child{
    margin-bottom: unset;
}

.dl--product__spare{
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: 12px;
    background-image: url(../../../../../shop/themes/vihr2022/img/product/spare--bg.jpg);
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
}

.dl--product__spare--title{
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

.dl--product__spare--info{
    display: flex;
    align-items: flex-end;
}

.dl--product__spare--name{
    width: 100%;
    max-width: 260px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-gray__dark);
    margin-right: 28px;
}

.dl--product__spare--link{
    padding: 14px 20px;
    display: flex;
    width: max-content;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-orange);
    border: 1px solid #F07C00;
    border-radius: 4px;
    background-color: var(--color-white);
    transition: var(--transition-base);
    white-space: nowrap;
}

.dl--product__spare--link:hover{
    background-color: var(--color-orange);
    color: var(--color-white);
}

.dl--product__image--pagination{
    display: none;
    z-index: 2;
}

.dl--product__image--badge__video{
    display: none;
}

.dl--product__image--badge__sale{
    position: absolute;
    padding: 5px 10px;
    background-color: var(--color-orange);
    border-radius: 4px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    top: 0;
    right: 0;
    z-index: 2;
}

.dl--product__image--mobile__compare{
    display: none;
}

.dl--product__features--all{
    display: none;
}

.dl--product__descr--text__all{
    display: none;
}

.product--stocks{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 30px;
    margin: unset;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: .3s opacity ease-in-out, .5s transform ease-in-out;
    z-index: 2;
    box-shadow: 0px 0px 10px 15px rgba(254, 240, 221, 0.7);
    border: 1px solid rgba(251, 215, 164, 0.8);
}

.product--stocks.show{
    pointer-events: inherit;
    opacity: 1;
    transform: translateY(0);
}

.product--stocks--head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 35px;
}

.product--stocks--head span{
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #333333;
}

.product--stocks--head svg{
    width: 22px;
    height: 22px;
    stroke: #4F4F4F;
    transition: var(--transition-base);
    cursor: pointer;
}

.product--stocks--head svg:hover{
    transform: rotate(180deg);
    stroke: #ED1C24;
}

.product--sku--list{
    display: flex;
    flex-direction: column;
}

.product--sku--item{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.product--sku--item:last-child{
    margin-bottom: unset;
}

.product--stocks--name{
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
    margin-right: auto;
    width: calc(100% - 180px);
}

.product--stocks--name span{
    display: block!important;
}

.product--stocks--count{
    width: 150px;
}

.product--stocks--count strong{
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #4F4F4F;
}

.product--stocks--count i{
    display: none;
}

@media screen and (max-width: 1366px){
    .dl--product__left, 
    .dl--product__right{
        width: calc(50% - 10px);
    }

    .dl--product__image--wrap{
        height: 390px;
    }

    .dl--product__thumbs{
        width: 100px;
    }

    .dl--product__main--image{
        width: calc(100% - 100px - 20px);
    }
}

@media screen and (max-width: 1024px){
    .dl--product--wrap{
        flex-direction: column;
    }

    .dl--product__name{
        font-size: 22px;
        line-height: 27px;
        margin: 10px 0 5px;
    }

    .dl--product__left{
        position: relative;
        top: unset;
        z-index: 2;
    }

    .dl--product__left,
    .dl--product__right{
        width: 100%;
    }

    .dl--product__left{
        margin-bottom: 40px;
    }

    .dl--product__video{
        display: none;
    }

    .dl--product__spare--name{
        margin-right: auto;
    }
}

@media screen and (max-width: 768px){
    .dl--product__parent--link{
        padding-top: 16px;
    }

    .dl--product__parent--link span{
        font-size: 14px;
        line-height: 16px;
    }

    .dl--product__name{
        font-size: 16px;
        line-height: 24px;
    }

    .dl--product__nav--wrap{
        width: calc(100% + 40px);   
        left: -20px;
    }

    .dl--product__nav{
        overflow: auto;
        padding-right: 53px;
    }

    .dl--product__nav::after{
        content: '';
        width: 43px;
        height: 100%;
        position: absolute;
        display: block;
        background: linear-gradient(270deg, #FFFFFF 31.85%, rgba(255, 255, 255, 0) 100%);
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    .dl--product__nav::-webkit-scrollbar {
        width: 0;
        display: none;
    }

    .dl--product__nav a{
        width: max-content;
        padding: 10px 0;
        margin-right: 15px;
        position: relative;
        z-index: 1;
    }

    .dl--product__nav a span{
        width: 100%;
        display: block;
        white-space: nowrap;
    }
}

@media screen and (max-width: 600px){
    .dl--product__image--wrap{
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .dl--product__main--image{
        display: none;
    }

    .dl--product__image--badge__video{
        border: 2px solid var(--color-gray__dark);
        border-radius: 2px;
        width: 32px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 55px;
        z-index: 2;
        background-color: var(--color-white);
    }

    .dl--product__image--badge__video svg{
        width: 10px;
        height: 11px;
    }

    .dl--product__thumbs{
        width: 100%;
    }

    .dl--product__thumb{
        border: unset;
    }

    .dl--product__image--arrow{
        display: none;
    }

    .dl--product__image--pagination{
        display: flex;
        justify-content: flex-end;
        position: absolute;
        bottom: -18px!important;
        top: unset!important;
    }

    .dl--product__image--pagination .swiper-pagination-bullet{
        background: #D9D9D9;
        border-radius: 2px;
        margin: 0 5px!important;
        width: 15px;
        height: 6px;
        opacity: 1;
        transition: var(--transition-base);
    }

    .dl--product__image--pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
        background-color: var(--color-orange);
        width: 49px;
    }

    .dl--product__image--mobile__compare{
        display: block;
        position: absolute;
        top: 103px;
        right: 2px;
        z-index: 2;
    }

    .dl--product--compare{
        display: none;
    }

    .dl--product__image--mobile__compare .dl--product--compare{
        display: block;
    }

    .dl--product--compare:not(.active):hover svg{
        fill: var(--color-gray__dark);
    }

    .dl--product--compare.active:hover svg{
        fill: var(--color-orange);   
    }

    .dl--product__cart{
        width: calc(100% + 40px);
        left: -20px;
        position: relative;
        padding: 10px 20px 24px;
        margin-bottom: 23px;
    }

    .dl--product__cart--code{
        margin-bottom: 10px;
    }

    .dl--product__cart--buy__prices{
        margin-bottom: unset;
    }

    .dl--product__cart--buy__compare--price{
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 6px;
    }

    .dl--product__cart--buy__real--price{
        font-size: 18px;
        line-height: 24px;
    }

    .dl--product__cart--buy__btn{
        margin: 0 0 0 auto;
        padding: 13px 26px;
    }

    .dl--product__stock--btn{
        margin-top: 30px;
    }

    .dl--product__stock--btn svg{
        width: 18px;
        height: 20px;
    }

    .dl--product__stock--btn span{
        font-size: 16px;
        line-height: 24px;
    }

    .dl--product__features{
        width: calc(100% + 40px);
        left: -20px;
        position: relative;
        padding: 10px 20px 16px;
        margin-bottom: 23px;
    }

    .dl--product__features--title{
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 24px;
    }

    .dl--product__features--item{
        margin-bottom: 10px;
    }

    /* .dl--product__features--list .dl--product__features--item:nth-child(n + 10){
        display: none;
    }

    .dl--product__features--list.show .dl--product__features--item:nth-child(n + 10){
        display: flex;
    } */

    .dl--product__features--item__name,
    .dl--product__features--item__value{
        width: calc(50% - 10px);
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        color: var(--color-black);
    }

    .dl--product__features--all{
        display: none;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        cursor: pointer;
    }

    .dl--product__features--all span{
        font-weight: 500;
        font-size: 12px;
        line-height: 120%;
        color: var(--color-orange);
        margin-right: 10px;
    }

    .dl--product__features--all svg{
        width: 13px;
        height: 9px;
        transition: var(--transition-base);
    }

    .dl--product__features--all.open svg{
        transform: rotate(180deg);
    }

    .dl--product__docs{
        width: calc(100% + 40px);
        left: -20px;
        position: relative;
        padding: 10px 20px;
        margin-bottom: 20px;
    }

    .dl--product__features--title{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 21px;
    }

    .dl--product__docs--item{
        margin-left: 13px;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 18px;
    }

    .dl--product__docs--item svg{
        min-width: 18px;
        height: 22px;
    }

    .dl--product__del_s_pay{
        width: calc(100% + 40px);
        left: -20px;
        position: relative;
        padding: 10px 20px;
        margin-bottom: 20px;
    }

    .dl--product__del_s_pay--title{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 23px;
    }

    .dl--product__del_s_pay ul li{
        margin-bottom: 20px;
    }

    .dl--product__del_s_pay ul li svg{
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }

    .dl--product__del_s_pay ul li span{
        font-size: 14px;
        line-height: 16px;
    }

    .dl--product__spare{
        width: calc(100% + 20px);
        left: -20px;
        position: relative;
    }

    .dl--product__spare--title{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .dl--product__spare--info{
        flex-direction: column;
        align-items: flex-start;
    }

    .dl--product__spare--name{
        font-size: 14px;
        line-height: 16px;
        max-width: 100%;
    }

    .dl--product__spare--link{
        padding: 6px 19px;
        font-size: 14px;
        line-height: 24px;
    }

    .dl--product__spare--link,
    .dl--product__spare--name{
        margin: unset;
    }

    .dl--product__spare--link{
        margin-top: 20px;
    }

    .dl--product__descr{
        width: calc(100% + 40px);
        left: -20px;
        position: relative;    
        padding: 10px 20px;
        margin-top: 20px;
    }

    .dl--product__descr--title{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .dl--product__descr--text{
        max-height: 310px;
        overflow: hidden;
        position: relative;
    }

    .dl--product__descr--text-shadow:after {
        content: "";
        position: absolute;
        pointer-events: none;
        left: 0;
        bottom: 0;
        height: 100px;
        width: 100%;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFF 75%)    
    }

    .dl--product__descr--text.show{
        max-height: 100%;
    }

    .dl--product__descr--text p{
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
    }

    .dl--product__descr--text__all{
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .dl--product__descr--text__all{
        display: none;
    }

    .dl--product__descr--text__all span{
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        color: var(--color-orange);
    }

    .dl--product__descr--text__all svg{
        width: 13px;
        height: 9px; 
        margin-left: 10px;
        margin-top: 3px;
        transition: var(--transition-base);
    }

    .dl--product__descr--text__all.open svg{
        transform: rotate(180deg);
    }

    .product--stocks--name{
        width: calc(100% - 110px);
    }

    .product--stocks--count{
        width: 100px;
    }

    .dl--product__descr--text *{
        font-size: 16px;
    }

    .cart-qty_act {
        background-color: #E0E0E0;
        color: var(--color-black);
        height: 52px;
        line-height: 52px;
    }

    .cart-qty input {
        padding: 7px;
        height: 52px;
        line-height: 52px;
    }
}

/* Product Page End */

/* Catalog Page End */

.dl--catalog{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 80px;
}

.dl--catalog__title{
    font-weight: 700;
    font-size: 28px;
    line-height: 18px;
    color: var(--color-black);
    margin-bottom: 50px;
}

.dl--catalog__tabs{
    display: flex;
    width: 100%;
    margin: 0 -20px 62px;
    width: calc(100% + 40px);
}

.dl--catalog__tab{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: calc((100% / 5) - 40px);
    margin: 0 20px 0;
}

.dl--catalog__tab::after{
    content: '';
    display: block;
    width: calc(100% - 20px);
    height: 5px;
    background-color: transparent;
    position: absolute;
    left: 10px;
    bottom: -10px;
    transition: var(--transition-base);
}

.dl--catalog__tab.active::after{
    background-color: var(--color-orange);
}

.dl--catalog__tab svg{
    fill: var(--color-gray__dark);
    margin-bottom: 16px;
    transition: var(--transition-base);
}

.dl--catalog__tab.pumps svg,
.dl--catalog__tab.agricultural__eqipment svg,
.dl--catalog__tab.eqipment svg{
    stroke: var(--color-gray__dark);
}

.dl--catalog__tab.electric__tools svg{width: 58px;height: 65px;}
.dl--catalog__tab.tools svg{width: 77px;height: 57px;}
.dl--catalog__tab.pumps svg{width: 82px; height: 60px;}
.dl--catalog__tab.agricultural__eqipment svg{width: 62px; height: 64px;}
.dl--catalog__tab.eqipment svg{width: 77px; height: 60px;}

.dl--catalog__tab.electric__tools.active svg,
.dl--catalog__tab.tools.active svg{
    fill: var(--color-orange);
}

.dl--catalog__tab.pumps.active svg,
.dl--catalog__tab.agricultural__eqipment.active svg,
.dl--catalog__tab.eqipment.active svg{
    stroke: var(--color-orange);
}

.dl--catalog__tab span{
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-gray__dark);
    transition: var(--transition-base);
    margin-top: auto;
}

.dl--catalog__tab.active span{
    color: var(--color-orange);
}

.dl--catalog__tabs--contents{
    width: 100%;
}

.dl--catalog__tab--content{
    flex-wrap: wrap;
    margin: 0 -20px;
    width: calc(100% + 40px);
    display: none;
}

.dl--catalog__tab--content.active{
    display: flex;
}

.dl--catalog__tab--content a{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% / 5) - 40px);
    margin: 0 20px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-black);
    transition: var(--transition-base);
    text-align: center;
}

.dl--catalog__tab--content a:hover{
    color: var(--color-orange);
}

.dl--catalog__tab--content a img{
    aspect-ratio: 1 / 1;
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 14px;  
    object-fit: contain;
    object-position: 50% 50%;
}

@media screen and (max-width: 1920px){
    .dl--catalog .container{
        max-width: 1340px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1200px){
    .dl--catalog__tabs{
        width: calc(100% + 20px);
        margin: 0 -10px 32px;
    }

    .dl--catalog__tab{
        width: calc((100% / 5) - 20px);
        margin: 0 10px 0;
    }

    .dl--catalog__tab--content{
        margin: 0 -10px;
        width: calc(100% + 20px);
    }

    .dl--catalog__tab--content a{
        width: calc((100% / 5) - 20px);
        margin: 0 10px 20px;
    }
}

@media screen and (max-width: 1050px){
    .dl--catalog__tab span{
        font-size: 14px;
        line-height: 17px;
        font-weight: 700;
    }

    .dl--catalog__tab--content a{
        font-size: 14px;
        line-height: 17px;
    }

    .dl--catalog__tab--content a img{
        max-width: 130px;
        max-height: 100px
    }
}

@media screen and (max-width: 768px){
    .dl--catalog__title{
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 36px;
    }

    .dl--catalog__tabs--wrap{
        position: relative;
    }

    .dl--catalog__tabs{
        overflow: auto;
        height: 90px;
        padding-right: 40px;
        margin: unset;
        margin-bottom: 36px;
        transition: var(--transition-base);
    }

    .dl--catalog__tabs::-webkit-scrollbar {
        width: 0;
        display: none;
    }

    .dl--catalog__tabs--wrap::after{
        content: '';
        display: block;
        width: 80px;
        height: 100%;
        position: absolute;
        background: linear-gradient(270deg, #FFFFFF 31.85%, rgba(255, 255, 255, 0) 100%);
        right: -20px;
        top: 0;
        bottom: 0;
        pointer-events: none;
    }

    .dl--catalog__tab::after{
        display: none;
    }

    .dl--catalog__tab{
        width: max-content;
        min-width: 152px;
        margin: 0 20px 0 0;
    }

    .dl--catalog__tab svg{
        margin-bottom: 0px;
    }

    .dl--catalog__tab--content a{
        width: calc((100% / 4) - 20px);
    }
}

@media screen and (max-width: 600px){
    .dl--catalog__title{
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .dl--catalog__tabs{
        height: 72px;
    }

    .dl--catalog__tab{
        min-width: unset;
    }

    .dl--catalog__tab span{
        font-size: 12px;
        line-height: 15px;
    }

    .dl--catalog__tab.electric__tools svg{width: 44px;height: 49px;}
    .dl--catalog__tab.tools svg {width: 57px;height: 43px;}
    .dl--catalog__tab.pumps svg {width: 61px;height: 45px;}
    .dl--catalog__tab.agricultural__eqipment svg {width: 47px;height: 48px;}
    .dl--catalog__tab.eqipment svg {width: 58px;height: 45px;}

    .dl--catalog__tab--content a{
        width: calc((100% / 3) - 20px);
    }
}

@media screen and (max-width: 450px){
    .dl--catalog__tab--content a{
        width: calc((100% / 2) - 20px);
    }
}

/* Catalog Page End */

/* Order Page End */

.dl-order{
    display: flex;
    width: 100%;
    justify-content: center;
}

.dl-order .container{
    max-width: 1460px;
}

.dl-order .wa-field-wrapper .wa-input,
.dl-order .wa-field-wrapper .wa-select,
.dl-order .wa-dropdown > .wa-dropdown-toggle,
.dl-order .wa-quantity-box .wa-input{
    border-radius: 5px;
}

.dl-order .wa-button.wa-submit-button{
    background: var(--color-orange);
    box-shadow: unset;
    text-shadow: unset!important;
    border: unset;
    padding: 18px 51px!important;
    font-weight: 700!important;
    font-size: 18px!important;
    line-height: 24px!important;
    color: var(--color-black);
    transition: var(--transition-base);
    border-radius: 2px;
    text-transform: uppercase;
    color: var(--color-white);
}

.dl-order .wa-button.wa-submit-button:hover{
    transform: scale(1.03);
}

.dl-order .wa-icon.size-11{
    width: 20px;
    height: 20px;
}

.dl-order .wa-order-form-wrapper .wa-step-shipping-section .wa-delivery-types-section .wa-types-list .wa-type-wrapper.is-active,
.dl-order .wa-order-form-wrapper .wa-step-payment-section .wa-methods-list.wide .wa-method-wrapper.is-active{
    background: rgba(240, 124, 0, 0.4);
}

.dl-order .s-back-link a:hover,
.dl-order .wa-order-form-wrapper .wa-step-auth-section > .wa-section-header a.wa-tooltip:hover{
    color: var(--color-orange);
    transition: var(--transition-base);
}

/* Order Page End */

/* Video Page Start */

.dlpv-page{
    padding: unset!important;
}

.dl--video__page{
    display: flex;
    width: 100%;
    justify-content: center;
    padding-bottom: 30px;
}

.dl--video__page .dlpv-page__list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    width: calc(100% + 40px);
}

.dl--video__page .dlpv-page__list .dlpv-page__video{
    width: calc((100% / 3) - 40px);
    margin: 0 20px 40px;
}

.dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
    height: 262px;
    background-position: 50% 50%;
}

@media screen and (min-width: 2560px){
    .dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
        height: 341px;
    }
}

@media screen and (max-width: 1440px){
    .dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
        height: 195px;
    }
}

@media screen and (max-width: 1366px){
    .dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
        height: 235px;
    }
}

@media screen and (max-width: 1024px){
    .dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
        height: 117px;
    }
}

@media screen and (max-width: 768px){
    .dl--video__page .dlpv-page__list{
        margin: 0 -10px;
        width: calc(100% + 20px);
    }

    .dl--video__page .dlpv-page__list .dlpv-page__video{
        width: calc((100% / 2) - 20px);
        margin: 0 10px 20px;
    }

    .dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
        height: 200px;
    }
}

@media screen and (max-width: 425px){
    .dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
        height: 105px;
    }
}

@media screen and (max-width: 375px){
    .dl--video__page .dlpv-page__list .dlpv-page__video .dlpv-page__video-thumb{
        height: 90px;
    }
}

/* Video Page End */

.dl--content,
.dl--compare{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 30px 0;
}

table.compare td span.price{
    color: var(--color-black);
}

.dl--compare__clear{
    background: var(--color-orange)!important;
    color: var(--color-black)!important;
    font-weight: 700;
    font-size: 18px!important;
    line-height: 24px!important;
    padding: 10px 24px!important;
    margin-top: 24px;
    border-radius: 2px!important;
    text-shadow: unset!important; 
    box-shadow: unset!important; 
    transition: var(--transition-base);
}

.dl--compare__clear:hover{
    opacity: 0.7;
}

.compare-table-wrap{
    overflow: auto;
    width: 100%;
    margin: 0 0 20px;
}

.compare--head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

@media screen and (max-width: 650px){
    .compare--head{
        flex-wrap: wrap;
    }

    ul.compare-diff-all{
        margin-top: 24px;
    }

    ul.compare-diff-all li:first-child{
        margin-left: unset;
    }
}

/* Доработка страницы сравнения */
.compares-categories__item.selected {
    background: var(--color-orange);
    color: var(--color-white);
}
.compares-categories__item {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 20px;
    background: #f3f3f3;
    border-radius: 7px;
    margin: 0 10px 10px 0;
    cursor: pointer;
    white-space: nowrap;
}
.compares-categories__count {
    margin: 0 0 0 5px;
    opacity: .6;
}
.compare-page.wrap-loading{
    opacity: 0.5;
}

.compares-products__outer{
    position: relative;
    margin: 0 0 50px;
}

@media (max-width: 800px){
    .compares-products__outer{
        margin-bottom: 0;
    }
}

.compares-products__outer.is-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFF;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 40;
}

.compares-products{
    display: flex;
    overflow: hidden;
    position: relative;
    margin: 30px 15px;
}


.compares-products::-webkit-scrollbar {
   display: none;
}

.compares-products__outer:not(.is-fixed) .l-wrapper{
    max-width: none;
    min-width: 0;
    padding: 0;
}

.compares-products__inner{
    position: relative;
}


.compare-item{
    display: flex;
}

.compare-feature,
.compare-item{
    flex: 0 0 20%;
    padding: 0 15px;
    position: relative;
    width: 20%;
    box-sizing: border-box;
}

@media (max-width: 1199px){
    .compare-feature,
    .compare-item{
        flex: 0 0 25%;
        width: 25%;
    }
}

@media (max-width: 999px){
    .compare-feature,
    .compare-item{
        flex: 0 0 33.33%;
        width: 33.33%;
    }
}

.compare-product__delete{
    color: red;
    cursor: pointer;
    font-size: 13px;
}

.compare-product__delete i.remove{
    margin: 0 3px 0 0;
}

.compare-product__img{
    display: block;
    font-size: 0;
    flex: 0 0 70px;
    padding-right: 5px;
    position: relative;
}

.compare-product__prices{
    margin: 3px 0 0;
    line-height: 1.3;
}

.compare-product__prices .price,
.compare-product__prices .currency{
    font-size: 14px;
}

.compare-product__img img{
    display: inline-block;
    max-height: 100%;
}

.compare-product__title-outer{
    overflow: hidden;
    height: 48px;
}

.compare-product__title{
    font-size: 13px;
    line-height: 1.2;
    display: inline-block;
    word-break: break-word;
}

.compares-products__left,
.compares-products__right{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    background: #faf9fe;
    border-radius: 8px;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    left: 0;
    cursor: pointer;
    z-index: 5;
    padding: 0;
    color: #000;
    box-shadow: none;
    border: none;
}

button.compares-products__left:active,
button.compares-products__right:active{
    box-shadow: none;
}

.compares-products__right{
    left: auto;
    right: 5px;
}

.compares-products__left.is-disabled,
.compares-products__right.is-disabled{
    opacity: .3 !important;
    cursor: default;
}

.compares-products__counter{
    font-size: 13px;
    color: #383838;
    display: none;
}

.compare-features{
    font-size: 14px;
    padding: 0 15px;
}

.compare-features__row{
    display: flex;
    padding: 0 0 30px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.compare-features__row::-webkit-scrollbar {
    display: none;
}

.compare-features__row.-divider{
    margin-top: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f3f3f3;
}

.compare-features__row.is-hide{
    display: none;
}

.compare-feature.-divider ~ .compare-feature.-divider{
    display: none;
}

.compare-feature__title{
    font-size: 12px;
    color: #a8a8a8;
    line-height: 1.2;
    margin: 0 0 5px;
}

.compare-feature__title.-divider{
    font-size: 14px;
    font-weight: bold;
    color: #000
}

.compares-diff__outer{
    padding: 0 30px 30px;
    font-weight: 600;
}

.compares-categories.is-scroll{
    overflow: hidden;
    white-space: nowrap;
    overflow-x: auto;
}

.compares-categories__item{
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 20px;
    background: #f3f3f3;
    border-radius: 7px;
    margin: 10px 10px 10px 0;
    cursor: pointer;
    white-space: nowrap;
}

.compares-categories__item:last-child{
    margin-right: 0;
}

.compares-categories__count{
    font-weight: 400;
    margin: 0 0 0 5px;
    opacity: .6;
    font-size: 13px;
}

.compare-navs{
    display: none;
    padding: 15px 0;
}

.compare-navs.is-fixed{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    background: #FFF;
    padding: 10px 0;
}

.compare-navs__col{
    flex: 0 0 50%;
    text-align: center;
}

.compare-navs__right,
.compare-navs__left{
    height: 40px;
    line-height: 40px;
    width: 40px;
    border: none;
    background: none;
    font-size: 16px;
    margin: 5px;
    box-shadow: none;
    background: #faf9fe;
    padding: 0;
}

.compare-navs__right.is-disabled,
.compare-navs__left.is-disabled{
    opacity: .3;
    cursor: default;
}

.compare-navs.is-fixed .compare-navs__right,
.compare-navs.is-fixed .compare-navs__left{
    height: 30px;
    line-height: 30px;
}

@media (max-width: 950px){
    .compares-categories__item{
        height: 28px;
        line-height: 28px;
        padding: 0 14px;
    }
}

.compares-products__inner[data-col="2"],
.compare-features[data-col="2"]{
    display: none;
}
@media (max-width: 600px){
    .compares-categories{
        margin: 30px 10px 10px;
    }

    .compare-navs{
        display: flex;
    }

    .is-mobile .compares-products__inner:not(.is-hide),
    .is-mobile .compare-features:not(.is-hide){
        display: block !important;
    }

    .is-mobile .compares-products__outer .l-wrapper,
    .is-mobile .compare-features__outer:not(.is-hide){
        display: flex;
    }

    .is-mobile .compares-products__inner,
    .is-mobile .compare-features{
        flex: 0 0 50%;
        width: 50%;
        box-sizing: border-box;
    }

    .is-mobile .compares-products{
        margin-left: 0;
        margin-right: 0;
    }

    .is-mobile .compare-features{
        padding-left: 0;
        padding-right: 0;
    }

    .is-mobile .compare-feature,
    .is-mobile .compare-item{
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .is-mobile .compares-diff__outer{
        padding-left: 10px;
        padding-right: 10px;
    }

    .is-mobile .compares-products__navs{
        position: absolute;
        left: 80px;
        top: 20px;
        text-align: center;
    }

    .is-mobile .compares-products__left,
    .is-mobile .compares-products__right{
        position: static;
        height: 20px;
        line-height: 20px;
        border-radius: 5px;
        width: 20px;
        margin: 0 5px;
        background: none;
    }

    .is-mobile .compares-products__left.is-hide,
    .is-mobile .compares-products__right.is-hide{
        opacity: 0.3;
        display: inline-block;
    }

    .is-mobile .compares-products__counter{
        display: block;
    }

    .compares-products__outer.is-fixed .compares-products{
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .compares-products__outer.is-fixed .compares-products__navs {
        bottom: 10px;
    }

    .compares-products__outer.is-fixed .compare-product__price{
        display: none;
    }

    .compares-products__outer.is-fixed .compare-product__title-outer{
        height: 32px;
    }

    .compares-products__outer.is-fixed .compare-product__delete{
        display: none;
    }

    .compares-products__outer.is-fixed .compares-products__navs{
        top: 10px;
        right: 0;
        left: auto;
        bottom: auto;
    }

    .compares-products__outer.is-fixed .compare-product__img{
        width: 80px;
    }

    .compare-item{
        display: inline-block;
    }

    .compare-product__img{
        height: 50px;
        line-height: 50px;
        margin: 0 0 5px;
        display: block;
        width: 60px;
    }
}
.checkbox-styler input, .jq-checkbox input, .jq-radio input, .radio-styler input {
    opacity: 0;
    top: 0;
    left: 0;
}
.checkbox-styler, .jq-checkbox {
    background: #fff;
    width: 20px;
    height: 20px;
    margin: 0 10px 3px 0;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
}
.checkbox-styler.checked, .jq-checkbox.checked {
    background: var(--color-orange);
    border: 4px solid var(--color-orange);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.compares-clear {
    cursor: pointer;
    background-color: var(--color-orange);
    color: #fff;
    padding: 10px 15px;
    border-radius: 7px;
}
.empty-compare {
    margin-top: 20px;
}
/* END Доработка страницы сравнения */

.dl-content{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
}

.dl-content .contact-page__item #block-show{
    display: block!important;
}

.dl-content .contact-page__item #button-show{
    display: none!important;
}

.dlpv-popup{
    background: rgba(35, 35, 35, 0.9)!important;
    backdrop-filter: blur(25px);
}

.dlpv-popup__box{
    border-radius: 2px!important;
}

.dlpv-popup__loader-icon{
    background: var(--color-orange)!important;
}

.dlpv-form__sku{
    background-color: transparent!important;
    color: var(--color-black)!important;
    padding: unset!important;
}

.dlpv-form__info{
    display: flex!important;
    flex-direction: column!important;
}

.dlpv-form__prices{
    padding-left: unset!important;
}

.dlpv-form__button{
    padding: 10px 20px!important;
    background: var(--color-orange)!important;
    height: auto!important;
}

.dlpv-form__rate{
    display: none!important;
}

.dlpv-form__gallery-thumb--selected{
    border-color: var(--color-orange)!important;
}

@media screen and (max-width: 1180px){
    /* .dlpv-popup__box{
        height: auto!important;
        max-height: calc(100% - 60px)!important;
    } */
}

@media screen and (max-width: 600px){
    .dlpv-form__gallery-thumb--selected{
        border-color: var(--color-orange)!important;
        background: var(--color-orange)!important;
    }
}


.dl--product__modal--video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(var(--vh,1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    left: 0;
    transition: .3s left ease-in-out, .5s opacity ease-in-out;
}

.dl--product__modal--video.show{
    opacity: 1;
    pointer-events: inherit;
}

.dl--product__modal--video .container{
    position: relative;
    z-index: 1;
    max-height: calc(100% - 100px);
    height: 100%;
    display: flex;
    align-items: center;
}

.dl--product__modal--video--close{
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: absolute;
    top: -30px;
    right: 20px;
}

.dl--product__modal--video--close svg{
    width: 100%;
    height: 100%;
    stroke: var(--color-white);
}

.dl--product__modal--video iframe{
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.dl--product__modal--video--bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #232323;
    opacity: 0.8;
}

button.blue,
#wa-my-info-edit,
.wa-field input[type="submit"]{
    background: var(--color-orange)!important;
    transition: var(--transition-base);
    text-shadow: unset;
    color: var(--color-white);
}

#wa-my-info-edit,
.wa-field input[type="submit"]{
    padding: 10px 20px;
    color: var(--color-white);
}

button.blue:hover,
#wa-my-info-edit:hover,
.wa-field input[type="submit"]:hover{
    transform: scale(1.03);
}

@media screen and (max-width: 750px){
    .shop-regions-window__wrapper{
        max-height: calc((var(--vh, 1vh) * 80))!important;
        overflow: auto!important;
    }
}

.servis__map--header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

.servis__map--frame{
    width: calc(75% - 15px);
}

.servis__map--frame h3{
    font-size: 20px;
    color: var(--color-black);
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.servis__map--frame iframe{
    width: 100%;
    height: 400px;
}

.servis__map--banner{
    width: calc(25% - 15px);
    position: relative;
    display: flex;
    height: 400px;
    padding: 20px;
    margin-top: auto;
}

.servis__map--banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    position: absolute;
    top: 0;
    left: 0;
}

.servis__map--banner span{
    position: relative;
    z-index: 1;
    font-size: 28px;
    color: var(--color-black);
    font-weight: 700;
    line-height: 110%; 
    transition: var(--transition-base);
}

.servis__map--banner:hover span{
    color: var(--color-orange);
}

@media screen and (max-width: 1180px){
    .servis__map--frame{
        width: calc(66.66% - 10px);
    }
    
    .servis__map--banner{
        width: calc(33.33% - 10px);
    }
}

@media screen and (max-width: 1024px){
    .servis__map--banner span{
        font-size: 18px;
    }
}

@media screen and (max-width: 768px){
    .servis__map--header{
        flex-direction: column;
    }

    .servis__map--frame{
        width: 100%;
        margin-bottom: 24px;
    }

    .servis__map--banner{
        width: 60%;
        height: 300px;
    }
}

@media screen and (max-width: 500px){
    .servis__map--banner{
        width: 100%;
        height: 300px;
    }

    .servis__map--banner img{
        object-position: 50% 30%;
    }
}

.shop-regions-window .shop-region-window_regions_sidebar::-webkit-scrollbar {
    -webkit-appearance: none;
}

.shop-regions-window .shop-region-window_regions_sidebar::-webkit-scrollbar:vertical {
    width: 6px;
}

.shop-regions-window .shop-region-window_regions_sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 4px;
    border: 1px solid #ffffff;
}

.shop-regions-window .shop-region-window_regions_sidebar::-webkit-scrollbar-track {
    border-radius: 4px;
    background-color: #ffffff;
}

@media screen and (max-width: 600px){
    .shop-regions-window__wrapper{
        padding: 10px!important;
    }

    .shop-regions-window .shop-regions-window__region_region{
        padding: 5px!important;
    }

    .shop-regions-window .shop-regions-window__region_region span{
        font-size: 14px!important;
    }

    .shop-regions-window .shop-regions-window__region_region.selected_region span{
        font-weight: normal!important;
    }

    .shop-regions-window .with_regions .column{
        width: 100%!important;
    }

    .with_regions .js-shop-region-window_search .visible .shop-regions__trigger-switch-city{
        font-size: 14px!important;
    }

    .shop-regions-window .with_regions .shop-regions-window__region{
        margin-left: 5px!important;
    }
    .shop-regions-window-wrapper__window-wrapper {
        padding: 0 !important;
    }

    .shop-regions-window-wrapper__window {
        max-width: 100%;

    }

    .shop-regions-window {
        padding: 30px 20px !important;
    }

    .shop-regions-countries-block__region {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .shop-regions-countries-block__sidebar, .shop-regions-countries-block__content {
        width: 50%;
    }
}


.dl-order .s-order-page .s-order-section > .s-section-header{
    background: var(--color-white)!important;
}

.dl-order .s-order-page .s-order-section > .s-section-header .s-delete-button:hover{
    color: var(--color-orange)!important;
}

.dl-order .wa-order-cart-wrapper .wa-products .wa-product .wa-actions .wa-action:hover .wa-tooltip{
    color: var(--color-orange)!important;
} 

html:not(.with-touch) .dl-order .wa-quantity-box .wa-button:not(.is-disabled):hover{
    color: var(--color-orange)!important;
}

.dl-order .wa-input:not(:disabled):hover, .wa-textarea:not(:disabled):hover, .wa-input:not([readonly]):hover, .wa-textarea:not([readonly]):hover,
.dl-order .wa-input:not(:disabled):focus, .wa-textarea:not(:disabled):focus, .wa-input:not([readonly]):focus, .wa-textarea:not([readonly]):focus,
.dl-order .s-styled-select select:not(:disabled):not(.wa-error):hover,
.dl-order .s-styled-select select:not(:disabled):not(.wa-error):focus{
    border-color: var(--color-orange)!important;
}

.dl-order .wa-order-form-wrapper .wa-step-shipping-section .wa-delivery-types-section .wa-types-list .wa-type-wrapper.is-active,
.dl-order .wa-order-form-wrapper.with-adaptive .wa-step-shipping-section .wa-delivery-types-section .wa-types-list .wa-type-wrapper:hover,
.wa-order-form-wrapper .wa-step-payment-section .wa-methods-list.wide .wa-method-wrapper:hover,
.wa-order-form-wrapper .wa-step-payment-section .wa-methods-list.wide .wa-method-wrapper.is-active{
    border-color: var(--color-orange)!important;
}

.wa-dropdown.is-opened > .wa-dropdown-toggle:after,
.dl-order .wa-dropdown > .wa-dropdown-area:hover,
.dl-order .wa-dropdown.full-line > .wa-dropdown-toggle:hover,
.dl-order .wa-dropdown.is-opened > .wa-dropdown-toggle{
    border-color: var(--color-orange)!important;
}

.dl-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button{
    background: var(--color-orange)!important;
    transition: var(--transition-base);
    border: unset!important;
    box-shadow: none!important;
    border-radius: 0!important;
    text-shadow: none!important;
    height: 30px!important;
    font-weight: 600!important;
    font-size: 12px!important;
    line-height: 1!important;
    color: var(--color-white)!important;
}

.dl-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:hover{
    transform: scale(1.03);
}

.dl-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input{
    margin-right: unset;
    height: 30px!important;
}

.dl--category__product--list{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 80px;
}

@media screen and (max-width: 1920px){
    .dl--category__product--list .container{
        max-width: 1340px;
        padding: 0 20px;
    }
}

.contact-page__item *{
    color: var(--color-black)!important;
}

.contact-page__item a{
    transition: var(--transition-base);
}

.contact-page__item a:hover{
    color: var(--color-orange)!important;
}

.dl-profile__nav{
    display: flex;
    margin-bottom: 24px;
}

.dl-profile__nav a{
    padding: 10px 20px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 4px;
    font-size: 18px;
    line-height: auto;
    transition: var(--transition-base);
    margin-right: 10px;
}

.dl-profile__nav a:last-child{
    margin-right: unset;
}

.dl-profile__nav a:hover{
    transform: scale(1.03);
}

.dl-order .wa-button.s-plus-button,
.dl-order .wa-button.s-minus-button{
    box-shadow: none;
    transition: var(--transition-base);
}

.dl-order .wa-button.s-plus-button:hover,
.dl-order .wa-button.s-minus-button:hover{
    box-shadow: inset 0 0 100px 100px rgba(0,0,0,.1);
}

[class*=" galleryplusicon-"]:before, [class^=galleryplusicon-]:before{
    font-family: galleryplus!important;
}

body .galleryplus-thumbnail-active,
body .galleryplus-modal-thumbnail-active{
    box-shadow: 0 0 2px var(--color-orange);
}

/* CUSTOM STYLES */

/* Gallery Plus Plugin */
.galleryplus { 
    background-color: #fff;
    border-radius: 12px;
 }
.galleryplus-modal-content { 
    border-radius: 12px;
} 

/* Bestprice Plugin */
.b-bestprice .wa-field .value.wa-value input, .b-bestprice .wa-field .value.wa-value textarea {
    padding: 4px 8px;
    min-width: auto !important;
    width: 100% !important;
}

/* Buy1click Plugin */
.buy1click-form svg, .buy1click-button svg {
    height: auto;
    width: auto;
}

.buy1click-open-button {
    padding: 13px 28px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    color: var(--color-orange) !important;
    border: 1px solid var(--color-orange) !important;
    background: #fff !important;
    white-space: nowrap;
}

.buy1click-open-button:hover {
    background: var(--color-orange) !important;
    color: #fff !important;
}


.dl--product__cart--buy__btn {
    margin: 0;
}

.dl--product__cart--buy {
    justify-content: space-between;
}

.dl--product--compare {
    min-width: 26px;
}

@media screen and (max-width: 600px) {
    .dl--product--compare {
        display: block;
    }
    .dl--product__cart--buy {
        flex-wrap: wrap;
    }
    .buy1click-open-button {
        min-width: 100%;
        margin-top: 20px;
    }
    .dl--product__cart--buy__real--price {
        font-size: 22px;
    }
}
/*  END Buy1click Plugin */

/* Pnotice Plugin */
.dl--product__cart--buy .product--pnotice button, input.pnotice__button.dl-pnotice--button {
    background: var(--color-orange);
    border-radius: 4px;
    align-items: center;
    border: unset;
    outline: unset;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--color-white);
}

.dl--product__cart--buy .product--pnotice button {
    padding: 13px 28px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.pnotice {
    border-radius: 4px;
    max-width: 100% !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.pnotice__close {
    right: 20px !important;
}

.pnotice__close svg {
    width: 100%;
    height: 100%;
    stroke: #333333;
}

.pnotice input, select {
    border-radius: 4px !important;
}

.pnotice__politika label {

}

.pnotice__politika label .pnotice__policyCheckbox {
    margin-right: 5px;
}

.dl--category__item--wrap__buy .product--pnotice {
    margin-right: 10px;
}

.dl--category__item--wrap__buy .product--pnotice button {
    font-weight: 700;
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    background: var(--color-orange);
    border-radius: 4px;
    align-items: center;
    display: flex;
    border: none;
}

.dl--category__item--wrap__buy .product--pnotice button:after {
    content: "Уведомить о поступлении";
}

.dl--category__item--wrap__buy .product--pnotice button svg {
    display: none;
}

.lazyloading-paging ul.menu-h {
    text-align: center;
}

ul.menu-h li.selected a {
    color: #fff;
    background-color: var(--color-orange);
    border-radius: 2px;
}

.dl--product__descr ul, .dl--product__descr ol {
    margin-bottom: 10px;
}

.dl--product__descr ul li {
    position: relative;
    padding-left: 20px;
}
  
.dl--product__descr ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-orange);
    position: absolute;
    left: 0;
    top: 6px;
}

.dl--product__descr ol li {
    position: relative;
    margin-left: 15px;
    padding-left: 5px;
}

.dl--category__viewed--title {
    max-width: 80%;
}

@media screen and (max-width: 600px) {
    .dl--category__viewed--title {
        max-width: 70%;
    }
}

.dl--category__slider--list .swiper-nav .swiper-button-next::after, .dl--category__slider--list .swiper-nav .swiper-button-prev::after {
    content: ' ';
}

.dl--category__viewed--wrap {
    position: relative;
}

.dl--category__slider--list .swiper-nav {
    position: absolute;
    right: 50px;
    z-index: 2;
    top: 10px;
}

.dl--category__slider--list .swiper-nav .swiper-button-next {
    right: auto;
    left: 10px;
}

.dl--category__slider--list .swiper-nav .swiper-button-prev {
    right: 10px;
    left: auto;
}

.dl--category__slider--list .swiper-nav .swiper-button-next, .dl--category__slider--list .swiper-nav .swiper-button-prev {
    color: var(--color-black);
    font-size: 20px;
    padding: 0px 20px;
    border-radius: 6px;
    background: #fff;
}

.dlpv-popup .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.dlpv-popup .owl-dot {
    background: #7d7d7d !important;
    height: 12px;
    width: 12px;
}

.dlpv-popup .owl-dot.active {
    background: var(--main-color) !important;
}
.dlpv-popup .owl-carousel .owl-item img {
    width: auto !important;
}

/* Product Qty */

.cart-qty{
    display: flex;
    word-spacing: 0;
    white-space: nowrap !important;
    vertical-align: middle;
}

.cart-qty input{
    width: 40px;
    text-align: center;
    border: 1px solid #e2e2e2;
    display: inline-block;
    vertical-align: middle;
    padding: 13px;
    height: 52px;
    line-height: 52px;
}

.cart-qty_act{
    display: inline-block;
    width: 30px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    background-color: #E0E0E0;
    height: 52px;
    line-height: 52px;
}

.cart-qty_act ~ input ~ .cart-qty_act{
    border-radius: 0 5px 5px 0;
}

/* START Cookie */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-notice-text {
    flex: 1;
    min-width: 300px;
}

.cookie-notice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-notice-text a {
    color: var(--main-color);
    text-decoration: underline;
}

.cookie-notice-close {
    flex-shrink: 0;
}

.cookie-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close-btn:hover {
    color: var(--main-color);
    background: transparent;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px;
    }
    
    .cookie-notice-text {
        min-width: auto;
    }
    
    .cookie-notice-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}
/* END Cookie */
