

/* Start:/local/css/itaces.pairstore/basket.css?17521562895307*/
/* new small cart */
.ia-count {
    top: -10px;
    height: 17px;
    max-height: 17px;
    width: 17px;
    max-width: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 2px 0px 2px;
    border-radius: 4px;
    font-size: 10px !important;
    color: var(--color-default) !important;
    background: var(--color-accent);
    border: solid 1px var(--color-accent);
    line-height: 100%;
}

.ia-smallcart {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background: rgba(23, 23, 23, 0.8);
    padding: 80px 20px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-default);
}

.ia-smallcart * {
    font-family: 'Aeroport', sans-serif;
    letter-spacing: 0;
}

.ia-smallcart.is-active {
    opacity: 1;
    pointer-events: visible;
}

.ia-smallcart__wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1360px;
    height: 100%;
}

.ia-smallcart__basket {
    position: absolute;
    top: 27px; 
    right: 0;
    padding: 20px;
    z-index: 999;
    width: 668px;
    max-width: 100%;
    height: auto;
    min-height: 300px;
    max-height: calc(100vh - 107px);
    border-radius: var(--border-radius-default);
    background: var(--color-default);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ia-smallcart__title {
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0px;
}

.ia-smallcart__list {
    overflow-y: auto; 
    max-height: 55vh;
    scrollbar-width: thin; 
    scrollbar-color: var(--color-primary) var(--color-surface-grey);
    padding: 15px 0 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.ia-smallcart__info {
    padding: 30px 0 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
}

.ia-smallcart__footer {
    margin-top: 13px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
}

.ia-smallcart__total {
    padding: 0 5px;
    white-space: nowrap;
}

.ia-smallcart__old {
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    text-decoration: line-through;
    color: var(--color-secondary);
    white-space: nowrap;

}

.ia-smallcart__btn {
    margin-left: auto;
    min-width: 227px;
}



.ia-smallcart__basket-empty {
    text-align: center;
    margin: auto;
}

.ia-smallcart__title-empty {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
}

.ia-smallcart__info-empty {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    text-align: center;
}

.ia-smallcart__btn-empty {
    margin: 20px auto 0;
    min-width: 227px;
}

.cart-item {
    padding: 19px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-dark-grey);
    gap: 22px;
}

.cart-item__img {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    background: var(--color-surface-grey);
    border-radius: var(--border-radius-image);
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex: none;
}

.cart-item__img img {
    mix-blend-mode: multiply;
    filter: brightness(1.05);
    object-fit: contain;
    object-position: center;
}

.cart-item__img a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.cart-item__actions, .cart-item__counter {
    display: flex;
    align-items: center;
}

.cart-item__name {
    width: 41%;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
}

.cart-item__counter {
    border: 1px solid var(--color-grey);
    border-radius: var(--border-radius-input);
    margin-right: 8px;
}

.cart-item__btn {
    width: 22px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
}

.cart-item__quantity {
    border: none;
    width: 34px;
    text-align: center;
    appearance: none;
    height: 26px;
    font-size: 14px;
    line-height: 1;
}

.cart-item__delete {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-grey);
    border-radius: var(--border-radius-input);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cart-item__delete svg {
    width: 12px;
    height: 13px;
    fill: var(--color-primary);
    pointer-events: none;
}

.cart-item__price {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.cart-item__price span {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    white-space: nowrap;
}

.cart-item__old-price {
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    text-decoration: line-through;
    color: var(--color-secondary);

}

@media screen and (max-width: 1024px), 
       screen and (hover: none) {

        .ia-smallcart.is-active {
            display: none;
        }
}

/* End */


/* Start:/local/templates/new_main/css/swiper-bundle-9.min.css?175093580218065*/
/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper,swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification,swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/new_main/css/fancybox.css?174763284315598*/
.carousel{position:relative;box-sizing:border-box}.carousel *,.carousel *:before,.carousel *:after{box-sizing:inherit}.carousel.is-draggable{cursor:move;cursor:grab}.carousel.is-dragging{cursor:move;cursor:grabbing}.carousel__viewport{position:relative;overflow:hidden;max-width:100%;max-height:100%}.carousel__track{display:flex}.carousel__slide{flex:0 0 auto;width:var(--carousel-slide-width, 60%);max-width:100%;padding:1rem;position:relative;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain}.has-dots{margin-bottom:calc(0.5rem + 22px)}.carousel__dots{margin:0 auto;padding:0;position:absolute;top:calc(100% + 0.5rem);left:0;right:0;display:flex;justify-content:center;list-style:none;user-select:none}.carousel__dots .carousel__dot{margin:0;padding:0;display:block;position:relative;width:22px;height:22px;cursor:pointer}.carousel__dots .carousel__dot:after{content:"";width:8px;height:8px;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);background-color:currentColor;opacity:.25;transition:opacity .15s ease-in-out}.carousel__dots .carousel__dot.is-selected:after{opacity:1}.carousel__button{width:var(--carousel-button-width, 48px);height:var(--carousel-button-height, 48px);padding:0;border:0;display:flex;justify-content:center;align-items:center;pointer-events:all;cursor:pointer;color:var(--carousel-button-color, currentColor);background:var(--carousel-button-bg, transparent);border-radius:var(--carousel-button-border-radius, 50%);box-shadow:var(--carousel-button-shadow, none);transition:opacity .15s ease}.carousel__button.is-prev,.carousel__button.is-next{position:absolute;top:50%;transform:translateY(-50%)}.carousel__button.is-prev{left:10px}.carousel__button.is-next{right:10px}.carousel__button[disabled]{cursor:default;opacity:.3}.carousel__button svg{width:var(--carousel-button-svg-width, 50%);height:var(--carousel-button-svg-height, 50%);fill:none;stroke:currentColor;stroke-width:var(--carousel-button-svg-stroke-width, 1.5);stroke-linejoin:bevel;stroke-linecap:round;filter:var(--carousel-button-svg-filter, none);pointer-events:none}html.with-fancybox{scroll-behavior:auto}body.compensate-for-scrollbar{overflow:hidden !important;touch-action:none}.fancybox__container{position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;margin:0;padding:env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);box-sizing:border-box;display:flex;flex-direction:column;color:var(--fancybox-color, #fff);-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:hidden;z-index:1050;outline:none;transform-origin:top left;--carousel-button-width: 48px;--carousel-button-height: 48px;--carousel-button-svg-width: 24px;--carousel-button-svg-height: 24px;--carousel-button-svg-stroke-width: 2.5;--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container :focus{outline:none}body:not(.is-using-mouse) .fancybox__container :focus{box-shadow:0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94))}@media all and (min-width: 1024px){.fancybox__container{--carousel-button-width:48px;--carousel-button-height:48px;--carousel-button-svg-width:27px;--carousel-button-svg-height:27px}}.fancybox__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background:var(--fancybox-bg, rgba(24, 24, 27, 0.92))}.fancybox__carousel{position:relative;flex:1 1 auto;min-height:0;height:100%;z-index:10}.fancybox__carousel.has-dots{margin-bottom:calc(0.5rem + 22px)}.fancybox__viewport{position:relative;width:100%;height:100%;overflow:visible;cursor:default}.fancybox__track{display:flex;height:100%}.fancybox__slide{flex:0 0 auto;width:100%;max-width:100%;margin:0;padding:48px 8px 8px 8px;position:relative;overscroll-behavior:contain;display:flex;flex-direction:column;outline:0;overflow:auto;--carousel-button-width: 36px;--carousel-button-height: 36px;--carousel-button-svg-width: 22px;--carousel-button-svg-height: 22px}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}@media all and (min-width: 1024px){.fancybox__slide{padding:64px 100px}}.fancybox__content{margin:0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);padding:36px;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);position:relative;align-self:center;display:flex;flex-direction:column;z-index:20}.fancybox__content :focus:not(.carousel__button.is-close){outline:thin dotted;box-shadow:none}.fancybox__caption{align-self:center;max-width:100%;margin:0;padding:1rem 0 0 0;line-height:1.375;color:var(--fancybox-color, currentColor);visibility:visible;cursor:auto;flex-shrink:0;overflow-wrap:anywhere}.is-loading .fancybox__caption{visibility:hidden}.fancybox__container>.carousel__dots{top:100%;color:var(--fancybox-color, #fff)}.fancybox__nav .carousel__button{z-index:40}.fancybox__nav .carousel__button.is-next{right:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-next{right:40px}}.fancybox__nav .carousel__button.is-prev{left:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-prev{left:40px}}.carousel__button.is-close{position:absolute;top:8px;right:8px;top:calc(env(safe-area-inset-top, 0px) + 8px);right:calc(env(safe-area-inset-right, 0px) + 8px);z-index:40}@media all and (min-width: 1024px){.carousel__button.is-close{right:40px}}.fancybox__content>.carousel__button.is-close{position:absolute;top:-40px;right:0;color:var(--fancybox-color, #fff)}.fancybox__no-click,.fancybox__no-click button{pointer-events:none}.fancybox__spinner{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:50px;height:50px;color:var(--fancybox-color, currentColor)}.fancybox__slide .fancybox__spinner{cursor:pointer;z-index:1053}.fancybox__spinner svg{animation:fancybox-rotate 2s linear infinite;transform-origin:center center;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:100%;height:100%}.fancybox__spinner svg circle{fill:none;stroke-width:2.75;stroke-miterlimit:10;stroke-dasharray:1,200;stroke-dashoffset:0;animation:fancybox-dash 1.5s ease-in-out infinite;stroke-linecap:round;stroke:currentColor}@keyframes fancybox-rotate{100%{transform:rotate(360deg)}}@keyframes fancybox-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.fancybox__backdrop,.fancybox__caption,.fancybox__nav,.carousel__dots,.carousel__button.is-close{opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close{animation:.15s ease backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .carousel__button.is-close{animation:.15s ease both fancybox-fadeOut}.fancybox-fadeIn{animation:.15s ease both fancybox-fadeIn}.fancybox-fadeOut{animation:.1s ease both fancybox-fadeOut}.fancybox-zoomInUp{animation:.2s ease both fancybox-zoomInUp}.fancybox-zoomOutDown{animation:.15s ease both fancybox-zoomOutDown}.fancybox-throwOutUp{animation:.15s ease both fancybox-throwOutUp}.fancybox-throwOutDown{animation:.15s ease both fancybox-throwOutDown}@keyframes fancybox-fadeIn{from{opacity:0}to{opacity:1}}@keyframes fancybox-fadeOut{to{opacity:0}}@keyframes fancybox-zoomInUp{from{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes fancybox-zoomOutDown{to{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}}@keyframes fancybox-throwOutUp{to{transform:translate3d(0, -30%, 0);opacity:0}}@keyframes fancybox-throwOutDown{to{transform:translate3d(0, 30%, 0);opacity:0}}.fancybox__carousel .carousel__slide{scrollbar-width:thin;scrollbar-color:#ccc rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar{width:8px;height:8px}.fancybox__carousel .carousel__slide::-webkit-scrollbar-track{background-color:rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:2px;box-shadow:inset 0 0 4px rgba(0,0,0,.2)}.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content{cursor:move;cursor:grabbing}.fancybox__carousel .fancybox__slide .fancybox__content{cursor:auto}.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content{cursor:zoom-in}.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content{cursor:zoom-out}.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__image{transform-origin:0 0;user-select:none;transition:none}.has-image .fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px}.is-closing .has-image .fancybox__content{overflow:visible}.has-image[data-image-fit=contain]{overflow:visible;touch-action:none}.has-image[data-image-fit=contain] .fancybox__content{flex-direction:row;flex-wrap:wrap}.has-image[data-image-fit=contain] .fancybox__image{max-width:100%;max-height:100%;object-fit:contain}.has-image[data-image-fit=contain-w]{overflow-x:hidden;overflow-y:auto}.has-image[data-image-fit=contain-w] .fancybox__content{min-height:auto}.has-image[data-image-fit=contain-w] .fancybox__image{max-width:100%;height:auto}.has-image[data-image-fit=cover]{overflow:visible;touch-action:none}.has-image[data-image-fit=cover] .fancybox__content{width:100%;height:100%}.has-image[data-image-fit=cover] .fancybox__image{width:100%;height:100%;object-fit:cover}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content{width:100%;height:80%}.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.fancybox__carousel .fancybox__slide.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.fancybox__thumbs{flex:0 0 auto;position:relative;padding:0px 3px;opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__thumbs{opacity:0}.fancybox__thumbs .carousel__slide{flex:0 0 auto;width:var(--fancybox-thumbs-width, 96px);margin:0;padding:8px 3px;box-sizing:content-box;display:flex;align-items:center;justify-content:center;overflow:visible;cursor:pointer}.fancybox__thumbs .carousel__slide .fancybox__thumb::after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-width:5px;border-style:solid;border-color:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));opacity:0;transition:opacity .15s ease;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after{opacity:.92}.fancybox__thumbs .carousel__slide>*{pointer-events:none;user-select:none}.fancybox__thumb{position:relative;width:100%;padding-top:calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));background-size:cover;background-position:center center;background-color:rgba(255,255,255,.1);background-repeat:no-repeat;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__toolbar{position:absolute;top:0;right:0;left:0;z-index:20;background:linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);padding:0;touch-action:none;display:flex;justify-content:space-between;--carousel-button-svg-width: 20px;--carousel-button-svg-height: 20px;opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4))}@media all and (min-width: 1024px){.fancybox__toolbar{padding:8px}}.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__toolbar{opacity:0}.fancybox__toolbar__items{display:flex}.fancybox__toolbar__items--left{margin-right:auto}.fancybox__toolbar__items--center{position:absolute;left:50%;transform:translateX(-50%)}.fancybox__toolbar__items--right{margin-left:auto}@media(max-width: 640px){.fancybox__toolbar__items--center:not(:last-child){display:none}}.fancybox__counter{min-width:72px;padding:0 10px;line-height:var(--carousel-button-height, 48px);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased}.fancybox__progress{background:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));height:3px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:30;user-select:none}.fancybox__container:fullscreen::backdrop{opacity:0}.fancybox__button--fullscreen g:nth-child(2){display:none}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1){display:none}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2){display:block}.fancybox__button--slideshow g:nth-child(2){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2){display:block}
/* End */


/* Start:/local/templates/new_main/css/style.css?175940394494696*/
/*@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");*/

@import url(/local/templates/new_main/css/../fonts/nunito/stylesheet.css);
@import url(/local/templates/new_main/css/../fonts/spectral/stylesheet.css);
@import url(/local/templates/new_main/css/../fonts/imput-sans/stylesheet.css);

* {
    margin: 0;
    padding: 0;
    font: inherit;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-focus-ring-color: rgba(255, 255, 255, 0);
    cursor: default;
}

body {
    font-size: 100%;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

a {
    background: transparent;
    text-decoration: none;
    color: inherit;
}

*:focus,
*:active,
*:hover {
    outline: none;
}

hr {
    box-sizing: content-box;
    height: 0;
}

ol,
ul {
    list-style: none;
}

pre {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    white-space: pre-wrap;
}

img,
svg {
    border: 0;
    display: block;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button {
    overflow: visible;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

button,
input,
select[multiple],
textarea {
    background-image: none;
}

input,
select,
textarea {
    border-radius: 0;
    box-shadow: none;
}

input,
textarea {
    resize: none;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

[placeholder]:focus::-webkit-input-placeholder {
    color: transparent;
}

[placeholder]:focus::-moz-placeholder {
    color: transparent;
}

[placeholder]:focus:-ms-input-placeholder {
    color: transparent;
}

[placeholder]:focus::-ms-input-placeholder {
    color: transparent;
}

[placeholder]:focus::placeholder {
    color: transparent;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

body,
html {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

body.noskroll,
  html.noskroll {
    overflow: hidden;
}

html {
    width: 100%;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: #171717;
    transition: color 0.5s, background-color 0.5s;
    line-height: 1.7;
    font-family: "InputSans", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px;
    position: relative;
    background: #fff;
    letter-spacing: -0.01em;
}

img,
svg {
    max-width: 100%;
    max-height: 100%;
}

p {
    margin-bottom: 2rem;
  /* &:last-of-type {
    margin-bottom: 0 !important;
  } */
}

@media screen and (max-width: 500px) {
    p {
        margin-bottom: 1rem;
    }
}

a:hover {
    color: #bb793e;
}

strong, b {
    font-weight: 500;
}

.is-hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    padding: 0 40px;
}

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

.container--small {
    max-width: 1210px;
}

@media screen and (max-width: 500px) {
    .text-content {
        font-size: 12px;
    }
}

.text-content__redaction-info {
    color: #c1bbb7;
    position: relative;
    top: -2rem;
}

@media screen and (max-width: 500px) {
    .text-content p {
        margin-bottom: 1.7rem;
    }
}

.text-content p a {
    text-decoration: underline;
    white-space: nowrap;
}

.text-content ul {
    list-style: lower-alpha;
    padding-left: 3rem;
    margin-bottom: 2.3rem;
}

@media screen and (max-width: 500px) {
    .text-content ul {
        margin-bottom: 1.7rem;
    }
}

.text-content ol {
    list-style: auto;
    padding-left: 3rem;
    margin-bottom: 2.3rem;
}

@media screen and (max-width: 500px) {
    .text-content ol {
        margin-bottom: 1.7rem;
    }
}

.text-content h3 {
    margin-bottom: 2.3rem;
    line-height: 2.3rem;
    font-size: 1.7rem;
}

@media screen and (max-width: 500px) {
    .text-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.7rem;
    }
}

.text-content h2 {
    font-size: 3rem;
    color: #bb793e;
    font-family: "Spectral", serif;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 117%;
    margin-bottom: 2.3rem;
}

@media screen and (max-width: 500px) {
    .text-content h2 {
        font-size: 2.4rem;
        margin-bottom: 1.7rem;
    }
}

.text-content > img {
    margin-bottom: 2.3rem;
}

.content-container {
    max-width: 67rem;
    margin: 0 auto;
}

.content-container--large {
    max-width: 90rem;
}

.content-container p {
    /*     a {
      text-decoration: underline;
      white-space: nowrap;
    } */
}

@media screen and (max-width: 500px) {
    .content-container p {
        font-size: 12px;
    }
}

.content-container p.large-text {
    font-size: 1.7rem;
}

@media screen and (max-width: 500px) {
    .content-container p.large-text {
        font-size: 1.5rem;
    }
}

.fit-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}


.button {
    padding: 12px 1.2rem;
    background: #171717;
    /*! font-family: "Spectral", serif; */
    /*! font-style: italic; */
    font-size: 1.4rem;
    line-height: 1.6rem;
    letter-spacing: -0.02em;
    color: #f7f7ef;
    cursor: pointer;
    border-radius: 2px;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid #171717;
    text-align: center;
    transition: 0.3s;
}

@media screen and (min-width: 780px) {
    .button:hover {
        background: #bb793e;
        border-color: #bb793e;
        color: #f7f7ef;
    }
}

.button--white {
    color: #171717;
    background: #f7f7ef;
    border: 1px solid #f7f7ef;
}

@media screen and (min-width: 780px) {
    .button--white:hover {
        background: #171717;
        border-color: #171717;
        color: #f7f7ef;
    }
}

.button--ghost {
    border: 1px solid #171717;
    color: #171717;
    background: transparent;
}

@media screen and (min-width: 780px) {
    .button--ghost:hover {
        background: #171717;
        border-color: #171717;
        color: #f7f7ef;
    }
}

.button--full {
    width: 100%;
}

.button.with-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.button .button-icon-before {
    margin-right: 12px;
}

.button .button-icon-before path {
    stroke: currentColor;
}

.button .button-icon-after {
    margin-left: 3.6rem;
}

.title {
    font-family: "Spectral", serif;
    font-style: italic;
    letter-spacing: -0.02em;
}

.section {
    margin-bottom: 10rem;
}

@media screen and (max-width: 780px) {
    .section {
        margin-bottom: 5rem;
    }
}

.section--medium-margin {
    margin-bottom: 7rem;
}

@media screen and (max-width: 780px) {
    .section--medium-margin {
        margin-bottom: 3rem;
    }
}

.page-title {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 3.5rem;
    line-height: 114%;
}

@media screen and (max-width: 780px) {
    .page-title {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 500px) {
    .page-title {
        font-size: 2.4rem;
    }
}

.page-title.is-left {
    text-align: left;
}

.section-title {
    margin-bottom: 2.3rem;
    text-align: center;
    line-height: 2.3rem;
}

.section-title--left {
    text-align: left;
}

@media screen and (max-width: 500px) {
    .section-title {
        font-size: 12px;
    }
}

.section-title--large {
    font-size: 1.7rem;
}

@media screen and (max-width: 500px) {
    .section-title--large {
        font-size: 1.5rem;
    }
}

.mobile_visible {
    display: none;
}

@media screen and (max-width: 780px) {
    .mobile_hidden {
        display: none !important;
    }

    .mobile_visible {
        display: block;
    }
}

/* img[data-lazysrc] {
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;

  &.load {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
  }
} */
[data-popup]:hover {
    cursor: pointer;
    color: #bb793e;
}


.swiper-pagination-bullet {
    background: rgba(23, 23, 23, 0.3);
}

.swiper-pagination-bullet-active {
    background: #171717;
}

.swiper-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 50;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    transition: 0.3s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.swiper-arrow:hover {
    background: #fbfaf9;
}

.swiper-arrow-prev {
    left: 4rem;
}

.swiper-arrow-next {
    right: 4rem;
}

.swiper-button-disabled {
    display: none;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 7rem;
}

.pagination__pages a {
    color: #c1bbb7;
}

.pagination__pages a.is-current {
    color: #171717;
}

.pagination__button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
}

.pagination__button.prev svg {
    margin-right: 1rem;
    position: relative;
    top: -1px;
}

.pagination__button.next svg {
    margin-left: 1rem;
    position: relative;
    top: -1px;
}

.accordion {
    border-top: 1px solid #c1bbb7;
}

@media screen and (max-width: 780px) {
    .accordion {
        border-top: none;
    }
}

.accordion-item {
    padding: 3.2rem 0;
    border-bottom: 1px solid #c1bbb7;
}

@media screen and (max-width: 780px) {
    .accordion-item {
        padding: 2.1rem 0;
    }
}

.accordion-item__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 2rem;
    line-height: 125%;
    cursor: pointer;
}

@media screen and (max-width: 780px) {
    .accordion-item__header {
        font-size: 1.7rem;
    }
}

.accordion-item__header-icon {
    transition: 0.3s;
}

.accordion-item__header-icon.is-active {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.accordion-item__body {
    display: none;
    padding-top: 1.3rem;
}

.accordion-item__body > *:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 780px) {
    .accordion-item__body {
        font-size: 12px;
    }
}

.selector__list-item-label {
    cursor: pointer;
}

.selector__list-item-label:hover {
    color: #171717;
}

.selector__list-item.is-chosen {
    color: #171717;
}

.selector__list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: #eee;
}

.selector__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #171717;
}

.selector.is-filter .selector__header {
    border-bottom: 1px solid #171717;
}

.selector.is-filter .selector__list-item-label {
    display: -ms-flexbox;
    display: flex;
}

.selector.is-filter .selector__list-item-label::before {
    content: "";
    display: block;
    margin-right: 0.9rem;
    width: 0.6rem;
    height: 0.6rem;
    background: transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    position: relative;
    top: 4px;
}

.selector.is-filter .selector__list-item {
    text-align: left;
}

.selector.is-filter .selector__list-item input {
    display: none;
}

.selector.is-filter .selector__list-item input:checked + .selector__list-item-label {
    color: #171717;
}

.selector.is-filter .selector__list-item input:checked + .selector__list-item-label::before {
    background: #171717;
}

.selector.is-filter .selector__body {
    width: calc(100% + 4rem);
    left: -2rem;
    padding: 0 2rem 4rem 2rem;
}

.selector.is-filter .selector__body::after {
    content: "";
    display: block;
    width: calc(100% - 4rem);
    height: 1px;
    background: #171717;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}


input::-webkit-input-placeholder {
    color: #171717;
    opacity: 1;
}

input::-moz-placeholder {
    color: #171717;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #171717;
    opacity: 1;
}

input::-ms-input-placeholder {
    color: #171717;
    opacity: 1;
}

input::placeholder {
    color: #c1bbb7;
    opacity: 1;
}

.form-input {
    height: 4.8rem;
    border: 1px solid #c1bbb7;
    border-radius: 2px;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 1.7rem;
    color: #171717;
}

.input-wrapper {
    display: grid;
    gap: 2rem;
}

.input-wrapper.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 500px) {
    .input-wrapper.cols-2 {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
}

.check-box-input {
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-bottom: 2rem;
    font-size: 12px;
    line-height: 155%;
}

.check-box-input a {
    text-decoration: underline;
}

.check-box-input input {
    display: none;
}

.check-box-input input:checked + .check-box-input__check::before {
    opacity: 1;
}

.check-box-input__check {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    border: 1px solid #c1bbb7;
    margin-right: 0.9rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    top: -3px;
}

.check-box-input__check::before {
    content: "";
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    background: #171717;
    border-radius: 50%;
    opacity: 0;
}

.check-box-input.is-default .check-box-input__check {
    border-radius: 2px;
}

.check-box-input.is-default .check-box-input__check::before {
    width: 100%;
    height: 100%;
    background: url(/local/templates/new_main/css/../img/icons/check-circle.svg) center no-repeat;
    border-radius: 0;
}

.product-counter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 4.8rem;
    width: 13.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #c1bbb7;
    border-radius: 2px;
    font-size: 1.7rem;
    font-weight: 400;
    justify-content: center;
}

@media screen and (max-width: 500px) {
    .product-counter {
        width: 10rem;
        height: 3.7rem;
        font-size: 1.5rem;
    }
}

.product-counter__count-input {
    -ms-flex-positive: 1;
    /*! flex-grow: 1; */
    /*! font-style: italic; */
    /*! font-family: "Spectral", serif; */
    /* font-weight: 500; */
    width: 30px;
    border: none;
    text-align: center;
    flex-basis: 0px;
    font-size: 15px;
}

.product-counter__count {
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-style: italic;
    font-family: "Spectral", serif;
    font-weight: 500;
}

.product-counter__count.is-hidden {
    display: none;
}

.product-counter__btn {
    width: 25px;
    -ms-flex-positive: 1;
    /*! flex-grow: 1; */
    /*! height: 56px; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

/* END common styles */



.header__main-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    bottom: -8px;
    font-weight: 400;
}

@media screen and (max-width: 1240px) {
    .header__main-menu {
        position: fixed;
        top: 103px;
        right: 50%;
        bottom: 0;
        left: 0;
        z-index: 500;
        background: #fff;
        padding: 2rem;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .header__main-menu.is-open {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 780px) {
    .header__main-menu {
        right: 0;
    }
}

.header__main-menu-item {
    margin-right: 1rem;
}

@media screen and (max-width: 1240px) {
    .header__main-menu-item {
        width: 100%;
        margin: 0 0 1.4rem 0;
    }
}

.header__main-menu-item.sale {
    font-weight: 500;
}

.header__main-menu-item.higlited {
    color: #9E0000;
}

.header__main-menu-item.only-mobile {
    display: none;
    color: rgba(23, 23, 23, 0.3);
}

@media screen and (max-width: 1240px) {
    .header__main-menu-item.only-mobile {
        display: block;
    }
}

.header__cart {
    position: relative;
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background: rgba(23, 23, 23, 0.8);
    padding: 80px 20px;
    overflow-y: auto;
}

@media screen and (min-width: 500px) {
    .popup.age_popup .popup__wrapper, .popup.phone-verification_popup .popup__wrapper, #subscribe-popup .popup__wrapper{
        width: calc(100% - 40px);
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (min-width: 500px) {
    .popup.is-center .popup__wrapper {
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 780px) {
    .popup.fast-buy-popup .popup__wrapper {
        padding: 4rem 1rem;
    }
}

.popup__wrapper {
    position: relative;
    width: 100%;
    max-width: 67.5rem;
    margin: 0 auto;
    background: #fff;
    padding: 5rem 4rem 4rem 4rem;
}

@media screen and (max-width: 780px) {
    .popup__wrapper {
        padding: 3.4rem 2rem;
    }
}

.popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 50;
    cursor: pointer;
}

.footer__wrapper {
    padding: 7rem 0;
    border-top: 1px solid #171717;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0 2rem;
    grid-auto-flow: row;
    grid-template-areas: "area-1 area-2 area-4 area-5 area-6 area-7"
 "area-1 area-3 area-4 area-5 area-8 area-8";
}

.footer__wrapper .area-1 {
    grid-area: area-1;
}

.footer__wrapper .area-2 {
    grid-area: area-2;
}

.footer__wrapper .area-3 {
    grid-area: area-4;
}

.footer__wrapper .area-4 {
    grid-area: area-5;
}

.footer__wrapper .area-5 {
    grid-area: area-6;
}

.footer__wrapper .area-6 {
    grid-area: area-7;
}

.footer__wrapper .area-7 {
    grid-area: area-8;
}

.footer__wrapper .area-8 {
    grid-area: area-8;
}

@media screen and (max-width: 1024px) {
    .footer__wrapper .area-3 {
        grid-area: area-3;
    }

    .footer__wrapper .area-4 {
        grid-area: area-4;
    }

    .footer__wrapper .area-5 {
        grid-area: area-5;
    }

    .footer__wrapper .area-6 {
        grid-area: area-6;
    }

    .footer__wrapper .area-7 {
        grid-area: area-7;
    }
}

@media screen and (max-width: 1200px) {
    .footer__wrapper {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-template-areas: "area-1 area-2 area-4 area-5 area-6 area-7"
 "area-1 area-3 area-4 area-5 area-6 area-7"
 "area-8 area-8 area-8 . . .";
    }
}

@media screen and (max-width: 1024px) {
    .footer__wrapper {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
      /*  grid-template-areas:
        "area-1 area-2 area-4"
        "area-1 area-3 area-4"
        "area-5 area-6 area-7"
        "area-8 area-8 area-8"; */
        grid-template-areas: "area-1 area-1 area-1"
 "area-2 area-4 area-5"
 "area-3 area-4 area-6"
 "area-3 area-4 area-7"
 "area-8 area-8 area-8";
    }
}

@media screen and (max-width: 500px) {
    .footer__wrapper {
        padding: 5rem 0;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-template-areas: "area-1 area-2"
 "area-1 area-3"
 "area-5 area-6"
 "area-8 area-8";
    }

    .footer__wrapper .area-1 {
        grid-area: 1 / 1 / 2 / 3;
    }

    .footer__wrapper .area-8 {
        grid-area: 5 / 1 / 6 / 3;
    }

    .footer__wrapper .area-1-1 {
        grid-area: 2 / 1 / 5 / 2;
    }

    .footer__wrapper .area-2-2 {
        grid-area: 2 / 2 / 5 / 3;
    }

    .footer__wrapper .area-2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .footer__wrapper .area-5 {
        grid-area: 3 / 2 / 3 / 3;
    }

    .footer__wrapper .area-4 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .footer__wrapper .aera-6 {
        grid-area: 3 / 2 / 4 / 3;
    }

    .footer__wrapper .area-7 {
        grid-area: 4 / 2 / 5 / 3;
    }

    .footer__wrapper .area-3 {
        grid-area: 2 / 2 / 3 / 3;
    }
}

.footer__menu-box {
    margin-bottom: 2rem;
}

.footer__menu-box-title {
    margin-bottom: 1rem;
    color: #bb793e;
    line-height: 130%;
}

@media screen and (max-width: 500px) {
    .footer__menu-box-title {
        font-size: 12px;
        line-height: 150%;
    }
}

.footer__menu-box-list {
    line-height: 130%;
}

@media screen and (max-width: 500px) {
    .footer__menu-box-list {
        font-size: 12px;
        line-height: 150%;
    }
}

.footer__menu-box-list a {
    display: block;
}

.footer__menu-box-item {
    display: block;
}

.footer__menu-box-list a.higlited {
    text-transform: uppercase;
    font-weight: 500;
}

.subscripbe-form {
    width: 100%;
}

.subscripbe-form form {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: flex-start;
    flex-direction: column;
}

@media screen and (max-width: 500px) {
    .subscripbe-form form .button {
        width: 100%;
        margin-top: 1rem;
    }
}

.subscripbe-form form input {
    border: 1px solid #c1bbb7;
    border-radius: 2px 0 0 2px;
    height: 4.2rem;
    padding: 0 1.7rem;
    width: 100%;
}

.subscripbe-form__notification {
    margin-top: 1.4rem;
    font-size: 12px;
    line-height: 155%;
}

@media screen and (max-width: 500px) {
    .subscripbe-form__notification {
        font-size: 0.8rem;
        line-height: 167%;
    }
}

.subscripbe-form__notification a {
    text-decoration: underline;
}

.catalog-w-sidebar {
    display: grid;
    grid-template-columns: .25fr .75fr;
    gap: 3.6rem 2rem;
}

@media screen and (max-width: 1024px) {
    .catalog-w-sidebar {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .catalog-w-sidebar {
        gap: 0rem 2rem;
    }
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.6rem 2rem;
    margin-bottom: 7rem;
}

.catalog-grid.is-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.6rem 2rem;
    margin-bottom: 7rem;
}

@media screen and (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 780px) {
    .catalog-gri, .catalog-grid.is-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .catalog-grid, .catalog-grid.is-main  {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .catalog-grid .catalog-card {
        width: calc(100% / 2 - 1rem);
    }
}

.catalog-sort-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.blog-page .catalog-sort-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 1024px) {
    .desc-catalog-sort {
        display: none !important;
    }
}

.catalog-sort {
    display: flex;
    align-items: center;
    margin-left: 5rem;
    font-weight: 400;
    position: relative;
}

.catalog-sort .selector__body {
    z-index: 150;
    width: 20rem;
    right: 0;
}

@media screen and (min-width: 500px) {
    .catalog-sort__button {
        display: none;
    }
}

@media screen and (max-width: 1025px) {
    .catalog-sort {
        margin-left: 0;
    }
}

@media screen and (min-width: 1025px) {
    .catalog-sort.mobile-visible {
        display: none;
    }
}

.catalog-filter-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.catalog-filters {
    display: none !important;
}

@media screen and (min-width: 1025px) {
    .catalog-filter-section .js-filter-wrap {
        width: 100%;
    }
    
    .mobile-filters_popup {
        display: block !important;
        position: unset !important;
        background: none !important;
        padding: 0 !important;
    }

    .mobile-filters_popup .popup__wrapper {
        padding: 0 !important;
        height: auto !important;
    }

    .mobile-filters_popup .popup__close {
        display: none !important;
    }

    .mobile-filters_popup .popup__wrapper-scroll-container {
        overflow: initial !important;
        height: auto !important;
        padding: 0 !important;
    }

    .mobile-filters_popup .mobile-filter__buttons {
        width: 100%;
        position: unset;
        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 780px) {
    .catalog-filter-section {
        margin: 0.8rem 0 1.3rem;
    }
}

.catalog-filter-section .catalog-sort {
    top: 0;
}

/* @media screen and (max-width: 1024px) {
    .catalog-filter-section .selector__header {
        font-size: 12px;
    }
} */

@media screen and (max-width: 500px) {
    .catalog-filter-section .selector__header {
        padding: 0;
    }
}

.catalog-filters {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media screen and (max-width: 1024px) {
    .catalog-filters {
        display: none;
    }
}

.catalog-filter-mobile-handler {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .catalog-filter-mobile-handler {
        display: flex !important;
    }
}

/* @media screen and (min-width: 500px) {
    .catalog-filter-mobile-handler {
        position: relative;
        top: -6px;
    }
} */

.catalog-filter-mobile-handler svg {
    margin-right: 1rem;
}

.catalog-ad {
    position: relative;
}

.catalog-card {
    position: relative;
    padding: 10px 10px 90px;
}

.catalog-card-gift {
    padding-bottom: 0;
}

.catalog-card:hover .catalog-card__fast-buy {
    opacity: 1;
    visibility: visible;
}

.catalog-card__image-box {
    position: relative;
    margin-bottom: 1rem;
    padding-top: 133.3%;
}

.catalog-card__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fbfaf9;
    border-radius: 2px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 3rem;
    aspect-ratio: 3 / 4;
}


.fast-buy-card .catalog-card__image-box, #order .catalog-card__image-box {
    padding-top: 0;
}

.fast-buy-card .catalog-card__image, #order .catalog-card__image  {
    position: relative;
    top: auto;
    left: auto;
    width: initial;
    height: initial;
}

.catalog-card__fast-buy {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    border: 1px solid #171717;
    border-radius: 50%;
    background: #ffffff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.7rem;
    height: 3.7rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

@media screen and (max-width: 1024px) {
    .catalog-card__fast-buy {
        opacity: 1;
        visibility: visible;
    }
}

.catalog-card__rating-box {
    position: absolute;
    top: 1.3rem;
    left: 1.3rem;
    z-index: 10;
}

@media screen and (max-width: 500px) {
    .catalog-card__rating-box {
        font-size: 12px;
    }
}

.catalog-card__rating {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.4rem;
}

.catalog-card__rating svg {
    margin-right: 0.6rem;
}

.catalog-card__rating-number {
    position: relative;
    top: 2px;
}

.catalog-card__reviews-counter {
    color: #c1bbb7;
    font-weight: 400;
}

.catalog-card__favorite svg{
    width: 23px;
    height: 20px;
}

.catalog-card__favorite {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    z-index: 10;

    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-card__favorite svg {
    overflow: visible;
}

.catalog-card__favorite path {
    fill: transparent;
    stroke: #c1bbb7;
    transition: 0.3s;
}

@media screen and (max-width: 500px) {
    .catalog-card__favorite {
        top: 1rem;
        right: 1rem;
    }
}

.catalog-card__favorite.is-active path {
    fill: #c1bbb7;
}

.catalog-card__name {
    font-size: 2rem;
    line-height: 125%;
    margin-bottom: 0.8rem;
    transition: 0.3s;
}

@media screen and (min-width: 780px) {
    .catalog-card__name:hover {
        color: #bb793e;
    }
}

.catalog-card__info {
    margin-top: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

@media screen and (max-width: 500px) {
    .catalog-card__info {
        font-size: 10px;
        margin-bottom: 2rem !important;
    }
}

@media screen and (max-width: 500px) {
    .catalog-card__name {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

.catalog-card__price {
    color: #bb793e;
    font-size: 1.7rem;
    line-height: 2rem;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

@media screen and (max-width: 500px) {
    .catalog-card__price {
        font-size: 1.6rem;
        line-height: 1.8rem;
        display: grid;
        gap: 0.5rem;
    }
    .catalog-card:has(.price_with_old) {
        padding-bottom: 110px;
    }
}

.catalog-card__price-old {
    padding-left: 0.6rem;
    font-size: 1.3rem;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    color: #c1bbb7;
}

@media screen and (max-width: 500px) {
    .catalog-card__price-old {
        padding-left: 0;
    }
}

.catalog-card__actions {
    margin-bottom: 4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 500px) {
    .catalog-card__actions {
        margin-bottom: 1.6rem;
    }
}

.catalog-card__actions-dell {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    border: 1px solid #c1bbb7;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 1rem;
    cursor: pointer;
}

@media screen and (max-width: 500px) {
    .catalog-card__actions-dell {
        width: 3.7rem;
        height: 3.7rem;
    }
}

.catalog-card.is-cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4rem;
    width: 100% !important;
}

@media screen and (max-width: 500px) {
    .catalog-card.is-cart {
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.catalog-card.is-cart:last-of-type {
    margin-bottom: 0;
}

.catalog-card.is-cart .catalog-card__image-box {
    margin: 0 4rem 0 0;
    width: 21rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 500px) {
    .catalog-card.is-cart .catalog-card__image-box {
        width: calc(50% - 2rem);
        margin-right: 2rem;
    }

    .catalog-card.is-cart .catalog-card__image-box .catalog-card__image {
        aspect-ratio: initial;
        padding: 1.6rem 2rem;
        min-height: 22rem;
    }
}

@media screen and (max-width: 500px) {
    .catalog-card.is-cart .catalog-card__content {
        width: 50%;
    }
}

.catalog-card.is-cart .catalog-card__name {
    display: block;
    margin-bottom: 1.2rem;
}

.catalog-card.is-disabled .catalog-card__image-box,
  .catalog-card.is-disabled .catalog-card__name,
  .catalog-card.is-disabled .catalog-card__info,
  .catalog-card.is-disabled .catalog-card__price {
    opacity: 0.3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.catalog-card.is-disabled .catalog-card__actions-dell {
    margin: 0;
}

.fast-buy-card__total {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 2.4rem;
    font-size: 1.7rem;
}

.fast-buy-card__total div {
    margin: 1rem 0;
}

.mobile-filter .accordion {
    border-top: none;
}

.mobile-filter .accordion-item:last-of-type {
    border-bottom: none;
}

.mobile-filter .accordion-item__body {
    padding-top: 1.6rem;
}

.mobile-filter .accordion-item {
    padding: 2.4rem 0;
}

.mobile-filter .check-box-input:last-of-type {
    margin-bottom: 0;
}

.mobile-filter__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
}

@media screen and (max-width: 500px) {
    .mobile-filter__buttons {
        grid-template-columns: 1fr;
        position: sticky;
        background: #fff;
        padding: 0 2rem 2rem 2rem;
        bottom: 0;
        left: 0;
        width: 100%;
    }

}


.mobile-filter__buttons .button {
    width: 100%;
}

@media screen and (max-width: 780px) {
    .product-tags-section {
        display: none;
    }
}

.product-tags {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-tags .button {
    margin: 0.5rem;
}

@media screen and (max-width: 780px) {
    .breadcrumbs-box .product__additional-info {
        display: none;
    }
}

.product__wrapper {
    display: grid;
    grid-template-columns: 1fr 44rem;
    gap: 13.5rem;
}

@media screen and (max-width: 1280px) {
    .product__wrapper {
        gap: 6rem;
    }
}

@media screen and (max-width: 1024px) {
    .product__wrapper {
        grid-template-columns: 1fr 36rem;
    }
}

@media screen and (max-width: 780px) {
    .product__wrapper {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

.product__col.left-col .product__additional-info {
    display: none;
}

@media screen and (max-width: 780px) {
    .product__col.left-col .product__additional-info {
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 1.4rem;
    }

    .product__col.left-col .product__description {
        display: none;
    }
}

.product__description.mobile-visible {
    margin-top: 2.4rem;
}

@media screen and (min-width: 780px) {
    .product__description.mobile-visible {
        display: none;
    }
}

.product__slider {
    display: grid;
    grid-template-columns: 9.5rem 1fr;
    gap: 2rem;
    margin-bottom: 7rem;
}

@media screen and (max-width: 1024px) {
    .product__slider {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 780px) {
    .product__slider {
        margin-bottom: 1.4rem;
    }

    .product__slider .swiper-arrow {
        display: none;
    }
}

.product__main-sldier {
    overflow: hidden;
    border-radius: 0.2rem;
    position: relative;
}

.product__main-sldier .swiper {
    height: 74rem;
}

@media screen and (max-width: 780px) {
    .product__main-sldier .swiper {
        height: 46rem;
    }
}

.product__main-sldier .swiper-slide {
    background: #fbfaf9;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 780px) {
    .product__main-sldier .swiper-slide {
        padding: 3rem 0 5rem;
    }
}

.product__nav-sldier {
    border-radius: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .product__nav-sldier {
        display: none;
    }
}

.product__nav-sldier .swiper {
    height: 74rem;
}

.product__nav-sldier .swiper-slide {
    background: #fbfaf9;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.5s;
}

@media screen and (min-width: 780px) {
    .product__nav-sldier .swiper-slide:hover {
        opacity: 1;
    }
}

.product__nav-sldier .swiper-slide-active {
    opacity: 1;
}

.product__title {
    padding-top: 7rem;
    font-size: 3.5rem;
    line-height: 114%;
    margin-bottom: 2.4rem;
}

@media screen and (max-width: 780px) {
    .product__title {
        padding-top: 0;
        font-size: 2.5rem;
        margin-bottom: 1.7rem;
    }
}

.product__options {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 2.6rem;
}

@media screen and (max-width: 780px) {
    .product__options {
        margin-bottom: 1.4rem;
    }
}

.product__options-col {
    margin-right: 3rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 780px) {
    .product__options-col {
        margin-bottom: 1rem;
        margin-right: 2rem;
    }
}

.product__options-col .section-title {
    margin-bottom: 0.5rem;
}

.product__options-variants {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product__option-variant {
    border-radius: 2px;
    margin: 0 1rem 1rem 0;
    transition: 0.3s;
    border-color: #171717;
    color: #171717;
}

.product__option-variant.is-disabled {
    border-color: #c1bbb7;
    color: #c1bbb7;
    cursor: not-allowed;
}

.product__option-variant.is-selected {
    border-color: #171717;
    color: #f7f7ef;
    background: #171717;
}

@media screen and (min-width: 780px) {
    .product__option-variant.is-disabled:hover {
        border-color: #c1bbb7;
        color: #c1bbb7;
        background: transparent;
    }
}

.product__price {
    margin-bottom: 3.6rem;
    color: #bb793e;
    font-size: 1.7rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

@media screen and (max-width: 780px) {
    .product__price {
        margin-bottom: 2.4rem;
        font-size: 1.5rem;
    }
}

.product__price-old {
    position: relative;
    top: 2px;
}

.product__cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3.2rem;
}

@media (max-width: 420px) {

    .button.oneClick {
        min-width: fit-content;
    }
}

.subscripbe-form__notification {
    font-size: 12px;
}

.product__cart-button.is-disabled {
    background: #c1bbb7;
    border-color: #c1bbb7;
    color: #fff;
    pointer-events: none;
    cursor: not-allowed;
}

.product__cart-counter-container {
    display: none;
    margin-right: 2rem;
    width: 21rem;
}
.js-product__cart-counter input {
    background: #171717;
    color: #fff;
}
.product__cart-counter-container .product-counter {
    width: 100%;
    height: 42px;
    color: #fff;
    background: #171717;
    border-radius: 2px;
}

.product__cart-counter-container .product-counter .product-counter__btn {
    /*! height: 100%; */
    /*! line-height: 0; */
}

.product__favorite {
    cursor: pointer;
}

.product__favorite svg {
    overflow: visible;
}

.product__favorite path {
    fill: transparent;
    stroke: #c1bbb7;
    transition: 0.3s;
}

.product__favorite.is-active path {
    fill: #c1bbb7;
}

.product__about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product__about-title {
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    line-height: 131%;
    color: #bb793e;
}

.product__about-title-icon {
    width: 1.4rem;
    margin-right: 1.3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product__about-text {
    font-weight: 400;
    line-height: 177%;
    padding-left: 2.7rem;
}

.product__additional-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 780px) {
    .product__additional-info {
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-size: 12px;
    }
}

.product__vendor-code {
    color: #c1bbb7;
    margin-right: 2rem;
    font-weight: 400;
}

.product__instock {
    font-weight: 400;
}

.login-page {
    min-height: 600px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-form {
    width: 100%;
    max-width: 44rem;
}

@media screen and (max-width: 780px) {
    .login-form {
        padding: 4rem 0 10rem !important;
    }
}

.login-form.is-login {
    padding: 0px 0  105px;
}

.login-form.is-cofirm {
    padding: 10.6rem 0 20.6rem;
    display: none;
}

.login-form.is-registration {
    padding: 6.6rem 0 16rem;
    display: none;
}

.login-form__title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 780px) {
    .login-form__title {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
        text-align: center;
    }
}

.login-form__title-w-text {
    margin-bottom: 0.6rem;
}

.login-form__text {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
}

@media screen and (max-width: 500px) {
    .login-form__text {
        text-align: center;
        font-size: 12px;
    }
}

.login-form__phone-input {
    position: relative;
    margin-bottom: 2rem;
}

.login-form__phone-input .form-input {
    padding-left: 7.4rem;
    margin-bottom: 0;
}

.login-form__phone-input .location-select {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 1.8rem;
    top: 1.8rem;
}

.login-form__phone-input .location-select__flag {
    margin-right: 1rem;
    width: 1.8rem;
}

.login-form__phone-input .location-select__arrow {
    position: relative;
    top: 1.5px;
}

.login-form__phone-input .location-select.is-open .location-select__arrow {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.login-form__phone-input .location-select-list {
    padding-left: 1.8rem;
    border: 1px solid #c1bbb7;
    border-top: none;
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 50;
}

.login-form__phone-input .location-select-list.is-open {
    display: block;
}

.login-form__phone-input .location-select-list-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    line-height: 131%;
    margin-bottom: 1.8rem;
    cursor: pointer;
}

.login-form__phone-input .location-select-list-item .flag {
    width: 1.8rem;
    margin-right: 1rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.login-form__phone-input .location-select-list-item .code {
    width: 4rem;
    margin-right: 1.8rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.login-form__phone-input .location-select-list-item .country-name {
    color: #c1bbb7;
}

.login-form__phone-input .location-select-list-item:hover .country-name {
    color: #171717;
}

.login-form__button {
    width: 100%;
}

.login-form__confirm-code-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.login-form__confirm-code-wrapper .sms-input {
    width: calc(100% / 4 - 2rem);
    height: 9.5rem;
    border: 1px solid #c1bbb7;
    text-align: center;
    font-size: 3.5rem;
}

@media screen and (max-width: 500px) {
    .login-form__confirm-code-wrapper .sms-input {
        width: calc(100% / 4 - 1rem);
        height: auto;
        aspect-ratio: 1 / 1;
        font-size: 2.5rem;
    }
}

.login-form__after-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2rem;
    color: #c1bbb7;
    font-size: 12px;
}

@media screen and (max-width: 500px) {
    .login-form__after-text {
        font-size: 0.9rem;
    }
}

.login-form__after-text-action {
    color: #171717;
    margin-left: 1rem;
    cursor: pointer;
}

.login-form__after-text-action:hover {
    color: #bb793e;
}

.phone-verification_popup-container {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.cart-page {
    padding: 6.6rem 0 0;
}

@media screen and (max-width: 780px) {
    .cart-page {
        padding: 2rem 0 0;
    }
}

.cart-page__title-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: calc(100% - 230px);
    margin: 0 auto 5.6rem;
}

@media screen and (max-width: 1360px) {
    .cart-page__title-box {
        max-width: 100%;
    }
}

@media screen and (max-width: 780px) {
    .cart-page__title-box {
        margin: 0 auto 2rem;
    }
}

.cart-page__title {
    font-size: 3.5rem;
    line-height: 114%;
}

@media screen and (max-width: 780px) {
    .cart-page__title {
        font-size: 2.5rem;
    }
}

.cart-page__clear {
    color: #c1bbb7;
    line-height: 131%;
    cursor: pointer;
    position: relative;
    top: -2px;
    /* @media screen and (max-width: 780px) {
      display: none;
    } */
}

.cart-page__clear:hover {
    color: #bb793e;
}

.cart-page__wrapper {
    display: grid;
    grid-template-columns: 1fr 44rem;
    gap: 2.5rem;
    max-width: calc(100% - 230px);
    margin: 0 auto;
}

@media screen and (max-width: 1360px) {
    .cart-page__wrapper {
        max-width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .cart-page__wrapper {
        gap: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .cart-page__wrapper {
        grid-template-columns: 1fr;
    }
}

.cart-page__cards {
    margin-bottom: 5.2rem;
}

.cart-page__form-box {
    margin-bottom: 5.2rem;
}

@media screen and (max-width: 1024px) {
    .cart-page__form-box {
        margin-bottom: 2rem;
    }
}

.cart-page__form-box-title {
    margin-bottom: 1.4rem;
    font-size: 1.7rem;
    line-height: 135%;
}

@media screen and (max-width: 780px) {
    .cart-page__form-box-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.cart-page__form-box-text {
    margin-bottom: 2rem;
    font-size: 12px;
    line-height: 155%;
}

.cart-page__form-box-text a {
    text-decoration: underline;
}

.cart-page__form-box:last-of-type {
    margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
    .cart-page__mobile-info {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .cart-page__forms {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-bottom: -2rem;
        padding-top: 3.3rem;
    }
}

.cart-info-form {
    background: #fbfaf9;
    border-radius: 2px;
    padding: 3.5rem 4rem;
    position: sticky;
    top: 15rem;
}

@media screen and (max-width: 1024px) {
    .cart-info-form {
        position: static;
        padding: 1.7rem 2rem;
    }
}

.cart-info-form__price {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.7rem;
    color: #bb793e;
    margin-bottom: 1.3rem;
}

@media screen and (max-width: 500px) {
    .cart-info-form__price {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
}

.cart-info-form__price-detail {
    margin-bottom: 2.4rem;
}

@media screen and (max-width: 500px) {
    .cart-info-form__price-detail {
        margin-bottom: 1.5rem;
    }
}

.cart-info-form__price-detail-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0.9rem;
    font-weight: 400;
}

@media screen and (max-width: 500px) {
    .cart-info-form__price-detail-item {
        font-size: 12px;
    }
}

.cart-info-form__points {
    color: #c1bbb7;
    margin-bottom: 2.7rem;
}

@media screen and (max-width: 500px) {
    .cart-info-form__points {
        margin-bottom: 1rem;
        font-size: 12px;
    }
}

.cart-info-form__promocode {
    margin-bottom: 4.2rem;
}

@media screen and (max-width: 500px) {
    .cart-info-form__promocode {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .cart-info-form.is-main {
        background: none;
        padding: 0;
    }

    .cart-info-form.is-main .cart-info-form__price,
      .cart-info-form.is-main .cart-info-form__points,
      .cart-info-form.is-main .cart-info-form__price-detail,
      .cart-info-form.is-main .cart-info-form__promocode {
        display: none;
    }
}

.promocode-field {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  /*   @media screen and (max-width: 500px) {
    flex-wrap: wrap;

    .button {
      width: 100%;
      margin-top: 1rem;
    }
  } */
}

.promocode-field input {
    border: 1px solid #c1bbb7;
    border-radius: 2px 0 0 2px;
    height: 4.2rem;
    padding: 0 1.7rem;
    width: 100%;
    background: transparent;
}

.promocode-field__clear {
    position: absolute;
    right: 1.5rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 1.7rem;
    cursor: pointer;
}

.promocode-field.is-fill .button {
    display: none;
}

.promocode-field.is-fill .promocode-field__clear {
    display: block;
}

.profile-page {
    max-width: calc(100% - 460px);
    margin: 0 auto;
    padding: 7rem 0 0;
}

@media screen and (max-width: 780px) {
    .profile-page {
        padding: 2rem 0 0;
    }
}

@media screen and (max-width: 1360px) {
    .profile-page {
        max-width: 100%;
    }
}

.profile-page__title-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.profile-page__wrapper {
    display: grid;
    grid-template-columns: 21rem 1fr;
    gap: 2rem;
}

@media screen and (max-width: 780px) {
    .profile-page__wrapper {
        display: block;
    }
}

@media screen and (min-width: 780px) {
    .profile-page__menu {
        position: sticky;
        top: 20px;
        margin-bottom: 7rem;
    }
}

@media screen and (max-width: 780px) {
    .profile-page__menu {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        overflow: auto;
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
        margin: 0 -2rem;
        padding-left: 2rem;
    }
}

.profile-page__menu a {
    display: block;
}

@media screen and (max-width: 780px) {
    .profile-page__menu a {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-right: 1rem;
        padding: 0.5rem 12px;
        background: #c1bbb7;
        border-radius: 2px;
        color: #fff;
    }

    .profile-page__menu a:last-child {
        background: #fff;
        color: #171717;
        border: 1px solid #171717;
    }
}

.profile-page__menu a.is-active {
    color: #bb793e;
}

@media screen and (max-width: 780px) {
    .profile-page__menu a.is-active {
        color: #fff;
        background: #171717;
    }
}

.profile-page__purchases-info {
    background: #fbfaf9;
    border-radius: 2px;
    padding: 4rem;
}

@media screen and (max-width: 780px) {
    .profile-page__purchases-info {
        padding: 3.5rem 2rem;
        font-size: 11px;
    }
}

.personal-data {
    line-height: 131%;
    margin-bottom: 3.6rem;
}

@media screen and (max-width: 780px) {
    .personal-data {
        margin-bottom: 2rem;
    }
}

.personal-data__name {
    color: #bb793e;
    margin-bottom: 1rem;
}

.bonuses-program {
    padding: 3.5rem 4rem 3.5rem;
    border: 1px solid #c1bbb7;
    border-radius: 2px;
}

@media screen and (max-width: 780px) {
    .bonuses-program {
        padding: 3.5rem 2rem;
    }
}

.bonuses-program__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3.4rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 780px) {
    .bonuses-program__top {
        /* flex-direction: column; */
        margin-bottom: 1rem;
    }
}

.bonuses-program__box:last-of-type {
    text-align: right;
    /*       @media screen and (max-width: 780px) {
        text-align: left;
        margin-top: 1rem;
      } */
}

.bonuses-program__box-title {
    font-size: 12px;
    color: #c1bbb7;
    margin-bottom: 1.2rem;
}

@media screen and (max-width: 780px) {
    .bonuses-program__box-title {
        margin-bottom: 0;
    }
}

.bonuses-program__box-value {
    font-size: 1.7rem;
    color: #bb793e;
}

.bonuses-program__progress {
    width: 100%;
    height: 0.8rem;
    border: 1px solid #c1bbb7;
    border-radius: 2px;
    margin-bottom: 2rem;
}

.bonuses-program__progress-bar {
    background: #bb793e;
    border-radius: 2px;
    transition: 0.5s;
    height: 100%;
}

.bonuses-program__text {
    font-size: 12px;
    color: #c1bbb7;
}

.personal-favorite {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.personal-favorite__sort {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
}

.personal-favorite-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.6rem;
}

@media screen and (max-width: 780px) {
    .personal-favorite-preview {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 500px) {
    .personal-favorite-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.6rem 2rem;
    }
}

.order-history-card {
    border: 1px solid #c1bbb7;
    border-radius: 2px;
    margin-bottom: 4rem;
    padding: 3.5rem 4rem;
}

@media screen and (max-width: 780px) {
    .order-history-card {
        padding: 2rem 2rem;
        margin-bottom: 2rem;
    }
}

.order-history-card__info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.order-history-card__number {
    font-size: 2rem;
    margin-right: 2rem;
}

.order-history-card__price {
    font-size: 1.7rem;
    color: #bb793e;
}

.order-history-card__time {
    font-size: 12px;
    color: #c1bbb7;
    margin-bottom: 2.6rem;
}

.order-history-card__detail {
    margin-bottom: 3rem;
}

@media screen and (max-width: 780px) {
    .order-history-card__detail {
        margin-bottom: 2rem;
    }
}

.order-history-card__detail-item {
    display: grid;
    grid-template-columns: 3rem 5rem 1fr 17rem;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

@media screen and (max-width: 500px) {
    .order-history-card__detail-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #c1bbb7;
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas: "area-1 area-3 area-3 area-3"
 "area-1 area-2 area-2 area-2"
 "area-1 area-4 area-4 area-4";
    }

    .order-history-card__detail-item.total-info {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "area-3 area-3 area-4 area-4";
    }
}

.order-history-card__detail-image {
    height: 4rem;
    padding: 0.4rem;
    background: #fbfaf9;
    border-radius: 2px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 500px) {
    .order-history-card__detail-image {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        height: 10rem;
        grid-area: area-1;
    }
}

.order-history-card__detail-count {
    color: #c1bbb7;
}

@media screen and (max-width: 500px) {
    .order-history-card__detail-count {
        grid-area: area-2;
    }
}

@media screen and (max-width: 500px) {
    .order-history-card__detail-name {
        grid-area: area-3;
    }
}

.order-history-card__detail-price {
    text-align: right;
}

@media screen and (max-width: 500px) {
    .order-history-card__detail-price {
        text-align: left;
        grid-area: area-4;
    }
}

.profile-adress-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.2rem;
    border: 1px solid #c1bbb7;
    border-radius: 2px;
    margin-bottom: 4rem;
    font-size: 2rem;
}

@media screen and (max-width: 780px) {
    .profile-adress-info {
        padding: 1.5rem 2rem;
        font-size: 1.6rem;
        margin-bottom: 2rem;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}

.profile-adress-info__label {
    color: #bb793e;
    font-size: 1.3rem;
}

.profile-adress-info__name {
    font-size: 2rem;
    margin-right: 2rem;
}

@media screen and (max-width: 780px) {
    .profile-adress-info__name {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.profile-adress-info__actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 2rem;
}

.profile-adress-info__action {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.profile-delivery-adress-form,
.profile-personal-data-form {
    max-width: 44rem;
}

.profile-delivery-adress-form .button,
  .profile-personal-data-form .button {
    margin-top: 2rem;
}

@media screen and (max-width: 780px) {
    .profile-delivery-adress-form,
    .profile-personal-data-form {
        max-width: 100%;
    }
}

.profile-personal-data-form .login-form__phone-input.is-disabled .location-select {
    opacity: 0.6;
    cursor: not-allowed;
}

.profile-personal-data-form .login-form__phone-input.is-disabled .form-input {
    opacity: 0.6;
    cursor: not-allowed;
}

.profile-personal-data-form__phone-check {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 1rem;
    z-index: 500;
}

.profile-personal-data-form__phone-check-icon {
    cursor: pointer;
}

.profile-personal-data-form__phone-check-icon.is-confirm {
    display: none;
}

.main-slider {
    height: 64rem;
    background: #f2f1f0;
    border-radius: 2px;
    padding: 4rem 0;
    margin-bottom: 7rem;
}

@media screen and (max-width: 1024px) {
    .main-slider {
        height: auto;
        padding: 3rem 0 5rem;
    }
}

@media screen and (max-width: 500px) {
    .main-slider {
        margin-bottom: 4rem;
    }
}

.main-slider .container {
    position: relative;
}

.main-slider__container {
    max-width: 92rem;
    margin: 0 auto;
    position: relative;
}

.main-slider__card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .main-slider__card {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.main-slider__card-content {
    width: 50%;
}

@media screen and (max-width: 1024px) {
    .main-slider__card-content {
        width: 100%;
        text-align: center;
    }
}

.main-slider__card-image {
    width: 50%;
    padding-left: 8rem;
}

@media screen and (max-width: 1024px) {
    .main-slider__card-image {
        width: 100%;
        padding-left: 0;
        margin: 0 0 3.2rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 780px) {
    .main-slider__card-image {
        width: 37vw;
    }
}

.main-slider__card-image img[data-lazysrc] {
    opacity: 0;
    visibility: hidden;
    will-change: transform;
}

.main-slider__card-image img[data-lazysrc].load {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
}

.main-slider__card-content-title {
    font-size: 3.5rem;
    line-height: 114%;
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 500px) {
    .main-slider__card-content-title {
        font-size: 2.5rem;
    }
}

.main-slider__card-content-text {
    font-size: 1.7rem;
    line-height: 135%;
    margin-bottom: 1.9rem;
    max-width: 44rem;
}

@media screen and (max-width: 1024px) {
    .main-slider__card-content-text {
        margin: 0 auto 2rem;
    }
}

@media screen and (max-width: 500px) {
    .main-slider__card-content-text {
        font-size: 1.5rem;
    }
}

.main-slider .swiper-pagination {
    bottom: auto;
    top: calc(100% + 4rem);
}

@media screen and (max-width: 1024px) {
    .main-slider .swiper-pagination {
        top: calc(100% + 2rem);
    }
}

@media screen and (max-width: 780px) {
    .main-slider .swiper-arrow {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .main-slider .button {
        margin: 0 auto;
    }
}

.choise-slider__card {
    text-align: center;
}

.choise-slider__card-image {
    border-radius: 50%;
    border: 5px solid #d6a57a;
    width: 17.2rem;
    height: 17.2rem;
    margin-bottom: 1.7rem;
}

@media screen and (max-width: 1024px) {
    .choise-slider__card-image {
        width: 100%;
        height: 100%;
        /*aspect-ratio: 1 / 1;*/
    }

    .fast-buy-card .choise-slider__card-image, #order .choise-slider__card-image {
        height: auto;
    }
}

@media screen and (max-width: 1024px) {
    .choise-slider__card-name {
        font-size: 12px;
    }
}

.choise-slider .swiper {
    max-width: 96rem;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .choise-slider .swiper {
        max-width: initial;
        width: calc(100% + 2rem);
    }
}

@media screen and (max-width: 1024px) {
    .choise-slider .swiper-slide {
        width: 14.2rem;
        /*height: 14.2rem;*/
    }
}

@media screen and (max-width: 1024px) {
    .choise-slider .swiper-arrow {
        display: none;
    }
}

.popular-categories {
    overflow: hidden;
}

.popular-categories__parallax-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 2rem;
    min-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform;
}

@media screen and (max-width: 500px) {
    .popular-categories__parallax-box {
        margin-bottom: 0;
    }
}

.popular-categories__parallax-box.to-left {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.popular-categories__parallax-box.to-right {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.popular-categories a {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    margin: 0 2rem;
    font-family: "Spectral", serif;
    font-style: italic;
    font-size: 3.5rem;
    line-height: 114%;
    letter-spacing: -0.02em;
    transition: 0.5s;
}

@media screen and (max-width: 1024px) {
    .popular-categories a {
        font-size: 2.5rem;
        margin-right: 2rem;
        margin-bottom: 1rem;
    }
}

.popular-categories a:hover {
    color: #bb793e;
}

.paristore-choise {
/*     display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; */
    margin-bottom: 12rem;
}

.paristore-choise-slider__arrow {
    color: #ffffff;
    background-color: var(--im-background-color-button);
}

.paristore-choise-slider__arrow.swiper-button-disabled {
    display: flex;
}

.paristore-choise-slider__arrow.swiper-button-lock {
    display: none;
}

.paristore-choise-slider__arrow::before,
.paristore-choise-slider__arrow::after {
    content: none;
}

.paristore-choise-slider__arrow--next {
    right: 40px;
}

.paristore-choise-slider__arrow--prev {
    left: 40px;
}

.paristore-choise-slider__arrow > svg {
    fill: currentColor;
}


@media screen and (max-width: 1024px) {
    .paristore-choise-slider {
        padding: 0 20px;
    }

    .paristore-choise-slider .swiper-slide {
        width: 320px;
    }

    .paristore-choise-slider-container {
        padding: 0;
    }

    .paristore-choise-slider__arrow {
        display: none !important;
    }
}


@media screen and (max-width: 780px) {
    .paristore-choise {
        /* grid-template-columns: repeat(1, 1fr); */
        margin-bottom: 6rem;
    }
}

.paristore-choise__card {
    display: block;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 220 / 293;
    position: relative;
}

.paristore-choise__card.is-link {
    aspect-ratio: initial;
}

@media screen and (max-width: 500px) {
    .paristore-choise__card.is-link {
        width: 100%;
        aspect-ratio: 175 / 233;
    }
}

.paristore-choise__card.is-link .paristore-choise__card-description {
    margin-bottom: 0;
}

.paristore-choise__card img {
    transition: 1s;
}

.paristore-choise__card:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.paristore-choise__card-info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.38%, #000000 100%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 4rem 2rem;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .paristore-choise__card-info {
        padding: 4rem 1rem;
    }
}

.paristore-choise__card-name {
    color: #f7f7ef;
    margin-bottom: 0.5rem;
    font-size: 3rem;
    line-height: 133%;
}

@media screen and (max-width: 1024px) {
    .paristore-choise__card-name {
        font-size: 2rem;
    }
}

.paristore-choise__card-description {
    color: #f7f7ef;
    font-family: "Nunito", sans-serif;
    margin-bottom: 2rem;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
    .paristore-choise__card-description {
        font-size: 1.5rem;
    }
}

.block-w-slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 11.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
    .block-w-slider {
        padding: 0 5rem;
    }
}

@media screen and (max-width: 1024px) {
    .block-w-slider {
        padding: 0;
    }
}

.block-w-slider__content {
    width: 40%;
    padding-right: 2rem;
}

@media screen and (max-width: 1024px) {
    .block-w-slider__content {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .block-w-slider__content br {
        display: none;
    }

    .block-w-slider__content .button {
        display: none;
    }
}

.block-w-slider__more-button {
    display: none;
    margin: 3.6rem auto 0;
}

@media screen and (max-width: 1024px) {
    .block-w-slider__more-button {
        display: block;
    }
}

.block-w-slider__content-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 114%;
}

@media screen and (max-width: 500px) {
    .block-w-slider__content-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
}

.block-w-slider__content-description {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    line-height: 135%;
}

@media screen and (max-width: 1024px) {
    .block-w-slider__content-description {
        max-width: 40rem;
        margin: 0 auto 2rem;
    }
}

@media screen and (max-width: 500px) {
    .block-w-slider__content-description {
        font-size: 1.5rem;
    }
}

.block-w-slider__slider {
    width: 60%;
    position: relative;
}

@media screen and (max-width: 1024px) {
    .block-w-slider__slider {
        width: 100%;
        margin-top: 4rem;
    }
}

.block-w-slider__slider .swiper {
    padding-bottom: 3.5rem;
}

@media screen and (max-width: 500px) {
    .block-w-slider__slider .swiper {
        padding-bottom: 0;
    }
    .new-slider-wrap .swiper-arrow-next {
        right: 0;
    }
    .new-slider-wrap .swiper-arrow-prev {
        left: 0;
    }
}

@media screen and (max-width: 1024px) {
    .podborka-wrap-slider .swiper-arrow[aria-disabled='true'],
    .gift-wrap-slider .swiper-arrow[aria-disabled='true'] {
        opacity: 50%;
    }
    .podborka-wrap-slider .swiper-arrow svg,
    .gift-wrap-slider .swiper-arrow svg {
        width: 20px;
        height: 20px;
    }

    .podborka-wrap-slider.block-w-slider__slider .swiper-arrow-prev,
    .gift-wrap-slider.block-w-slider__slider .swiper-arrow-prev {
        display: block;
        left: auto;
        right: 40px;
        top: -10px;
    }

    .podborka-wrap-slider.block-w-slider__slider .swiper-arrow-next,
    .gift-wrap-slider.block-w-slider__slider .swiper-arrow-next {
        display: block;
        right: 0;
        top: -10px;
    }
}

@media screen and (max-width: 500px) {
    /*.block-w-slider__slider:not(.podborka-wrap-slider) .swiper-wrapper {*/
    /*    display: grid;*/
    /*    grid-template-columns: repeat(2, 1fr);*/
    /*    gap: 3.6rem 2rem;*/
    /*}*/
    .podborka-wrap-slider .button {
        max-width: 100%;
        font-size: 1.2rem;
    }
}

.block-w-slider__slider .swiper-arrow {
    top: 30%;
}

@media screen and (max-width: 1024px) {
    .block-w-slider__slider .swiper-arrow {
        display: none;
    }
}

.block-w-slider__slider .swiper-arrow-prev {
    left: -4rem;
}

@media screen and (max-width: 1200px) {
    .block-w-slider__slider .swiper-arrow-prev {
        left: -2rem;
    }
}

.block-w-slider__slider .swiper-arrow-next {
    right: -4rem;
}

@media screen and (max-width: 1200px) {
    .block-w-slider__slider .swiper-arrow-next {
        right: -2rem;
    }
}

.block-w-slider__slider .swiper-pagination {
    top: auto;
    bottom: 0;
    background: #f2f1f0;
    border-radius: 1rem;
}

@media screen and (max-width: 500px) {
    .block-w-slider__slider .swiper-pagination {
        display: none;
    }
}

.block-w-slider__slider .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #171717;
    border-radius: 1rem;
}

@media screen and (max-width: 500px) {
    .gift-wrap-slider .swiper-wrapper .swiper-slide:nth-child(5),
  .corporate-clients-slider .swiper-wrapper .swiper-slide:nth-child(5) {
        display: none;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 780px) {
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.blog-card {
    position: relative;
    overflow: hidden;
}

.blog-card__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.38%, #000000 100%);
    color: #f7f7ef;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 4rem 2rem;
    text-align: center;
}

.blog-card__name {
    font-size: 2.5rem;
    line-height: 120%;
}

@media screen and (max-width: 500px) {
    .blog-card__name {
        font-size: 2rem;
    }
}

.blog-card img {
    transition: 1s;
}

.blog-card:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.6rem 2rem;
}

@media screen and (max-width: 1200px) {
    .advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.6rem 1rem;
    }
}

.advantages.one-in-row {
    grid-template-columns: repeat(1, 1fr);
}

@media screen and (max-width: 780px) {
    .advantages.one-in-row .advantages-item {
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
    }

    .advantages.one-in-row .advantages-item__icon {
        margin-right: 2rem;
    }
}

.advantages.two-in-row {
    grid-template-columns: repeat(2, 1fr);
}

.advantages-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 780px) {
    .advantages-item {
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}

.advantages-item__icon {
    width: 9.5rem;
    height: 9.5rem;
    border: 1px solid #171717;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 2rem;
}

@media screen and (max-width: 780px) {
    .advantages-item__icon {
        width: 7.5rem;
        height: 7.5rem;
        margin: 0 0 1rem 0;
    }
}

.advantages-item__text {
    line-height: 130%;
}

@media screen and (max-width: 780px) {
    .advantages-item__text {
        font-size: 12px;
    }
}

.text-block-w-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1130px;
    margin: 0 auto;
}

.text-block-w-image > *:last-child {
    margin-bottom: 0 !important;
}

.text-block-w-image.is-full-width {
    max-width: 100%;
    height: 33rem;
}

@media screen and (max-width: 1024px) {
    .text-block-w-image.is-full-width {
        height: auto;
    }
}

.text-block-w-image.is-full-width .text-block-w-image__content-wrapper {
    max-width: 44rem;
}

.text-block-w-image.is-contacts {
    height: auto;
}

.text-block-w-image.is-contacts .text-block-w-image__content {
    background: none;
}

@media screen and (max-width: 1024px) {
    .text-block-w-image.is-contacts .text-block-w-image__content {
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: left;
        padding: 0;
    }

    .text-block-w-image.is-contacts .text-block-w-image__content .button {
        margin-left: 0;
    }
}

@media screen and (max-width: 1024px) {
    .text-block-w-image.is-contacts .content-container {
        margin: 0 !important;
    }
}

@media screen and (max-width: 1024px) {
    .text-block-w-image.hidden-image-mobile {
        gap: 0;
    }

    .text-block-w-image.hidden-image-mobile .text-block-w-image__image {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .text-block-w-image {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "area-1"
 "area-2";
    }
}

.text-block-w-image__image {
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .text-block-w-image__image {
        grid-area: area-1;
        height: 26rem;
    }
}

.text-block-w-image__content {
    background: #f2f1f0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .text-block-w-image__content {
        grid-area: area-2;
        text-align: center;
        padding: 4rem 2rem 5.5rem;
    }

    .text-block-w-image__content .button {
        margin: 0 auto;
    }
}

@media screen and (max-width: 500px) {
    .text-block-w-image__content {
        padding: 3rem 2rem 3rem;
    }
}

.text-block-w-image__content-wrapper {
    max-width: 32.5rem;
}

.text-block-w-image__title {
    font-size: 3.5rem;
    line-height: 114%;
    margin-bottom: 0.8rem;
}

@media screen and (max-width: 500px) {
    .text-block-w-image__title {
        font-size: 2.5rem;
    }
}

.text-block-w-image__description {
    margin-bottom: 2rem;
    font-size: 1.7rem;
    line-height: 135%;
}

@media screen and (max-width: 500px) {
    .text-block-w-image__description {
        font-size: 1.5rem;
    }
}

.brands-section__tabs-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.brands-section__tabs-wrapper .button {
    margin: 0 0.5rem 1rem;
}


.seo-block {
    padding: 7rem 10rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 2rem;
    border-top: 1px solid #171717;
}

@media screen and (max-width: 1024px) {
    .seo-block {
        padding: 5rem 0rem 0;
    }
}

@media screen and (max-width: 780px) {
    .seo-block {
        grid-template-columns: repeat(1, 1fr);
    }
}

.seo-block__box-title {
    font-size: 3.5rem;
    margin-bottom: 0.8rem;
    line-height: 114%;
}

@media screen and (max-width: 500px) {
    .seo-block__box-title {
        font-size: 2.5rem;
    }
}

.seo-block__box-description {
    font-size: 1.7rem;
    line-height: 135%;
    margin-bottom: 2rem;
    min-height: 7rem;
}

@media screen and (max-width: 780px) {
    .seo-block__box-description {
        min-height: initial;
    }
}

@media screen and (max-width: 500px) {
    .seo-block__box-description {
        font-size: 1.5rem;
    }
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-gallery.item-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 500px) {
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.about-gallery__item {
    display: block;
    border-radius: 2px;
    overflow: hidden;
}

.about-contact-buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-contact-buttons .button {
    margin-right: 2rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 500px) {
    .about-contact-buttons .button {
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
}

.message-page-column {
    flex-direction:column;
}

.message-page {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60vh;
}

.message-page__content {
    max-width: 44rem;
    text-align: center;
}

.message-page__content .page-title {
    margin-bottom: 0.8rem;
}

.message-page__text {
    font-size: 1.7rem;
    line-height: 135%;
    margin-bottom: 2rem;
}

@media screen and (max-width: 500px) {
    .message-page__text {
        font-size: 12px;
        max-width: 31rem;
    }
}

.message-page__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.message-page__links.is-1 {
    grid-template-columns: 1fr;
}

.message-page__links.is-1 .button {
    max-width: 21rem;
    margin: 0 auto;
}

.message-page__links .button {
    width: 100%;
}

.age-check {
    max-width: 44rem;
    margin: 0 auto;
    padding: 5rem 0;
}

@media screen and (max-width: 500px) {
    .age-check {
        padding: 0;
    }
}

.age-check__title {
    margin-bottom: 0.8rem;
    text-align: left;
}

@media screen and (max-width: 500px) {
    .age-check__title {
        text-align: center;
    }
}

.age-check__text {
    font-size: 1.7rem;
    line-height: 135%;
    margin-bottom: 2rem;
}

@media screen and (max-width: 500px) {
    .age-check__text {
        font-size: 1.5rem;
        text-align: center;
    }
}

.age-check__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 500px) {
    .age-check__buttons {
        grid-template-columns: repeat(1, 1fr);
    }
}

.age-check__buttons .button {
    width: 100%;
}

.cookie-notification {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #171717;
    padding: 3rem 4rem;
    z-index: 99999;
    display: none;
}

@media screen and (max-width: 1024px) {
    .cookie-notification {
        padding: 2.6rem 2rem;
    }
}

.cookie-notification__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .cookie-notification__wrapper {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cookie-notification__text {
    color: #fff;
    margin-right: 13.5rem;
}

@media screen and (max-width: 1024px) {
    .cookie-notification__text {
        margin-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 12px;
    }
}

.cookie-notification__button {
    color: #fff;
    border-color: #fff;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.blog-slider {
    position: relative;
    max-width: 108rem;
    margin: 0 auto;
}

.blog-slider__image {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    aspect-ratio: 3 / 2;
}

.blog-slider .swiper {
    margin-top: -6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media screen and (max-width: 780px) {
    .blog-slider .swiper {
        margin-top: -4rem;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 1024px) {
    .blog-slider .swiper-arrow {
        background: #fbfaf9;
    }
}

@media screen and (max-width: 780px) {
    .blog-slider .swiper-arrow {
        display: none;
    }
}

.favorite-page .page-title + .section-title {
    margin-top: -3rem;
}

@media screen and (max-width: 1024px) {
    .favorite-page .breadcrumbs-box {
        margin-bottom: 0;
    }

    .favorite-page .breadcrumbs {
        display: none;
    }

    .favorite-page .page-title {
        text-align: left;
    }

    .favorite-page .page-title + .section-title {
        text-align: left;
    }
}

@media screen and (max-width: 1024px) {
    .favorite-page .catalog-sort-wrapper {
        position: absolute;
        right: 2rem;
        top: 10px;
    }
}

@media screen and (max-width: 500px) {
    .favorite-page .catalog-sort-wrapper {
        top: 5px;
    }
}

.search-result-page .catalog-sort-wrapper {
    margin-bottom: -1rem;
}

@media screen and (max-width: 1024px) {
    .search-result-page .section-title {
        text-align: left;
    }
}

.search-page {
    padding-bottom: 30vh;
}

.search-page__form {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media screen and (max-width: 500px) {
    .search-page__form {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .search-page__form .button {
        width: 100%;
        margin-top: 1rem;
    }
}

.search-page__form input {
    border: 1px solid #c1bbb7;
    border-radius: 2px 0 0 2px;
    height: 4.2rem;
    padding: 0 1.7rem;
    width: 100%;
}

.search-page__form .button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 21rem;
}

@media screen and (max-width: 780px) {
    .search-result-page .breadcrumbs-box,
  .search-page .breadcrumbs-box {
        margin-bottom: 0;
    }
}

.smartfilter .accordion-item__body div:not(.js-filter-search){
    max-height: 460px;
    overflow-y: auto;
    scrollbar-color:  #000 transparent;
    scrollbar-width: thin;
    padding-top: 5px;
}

.bx-filter-lable {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.bx-filter-lable .check-box-input__check {
    top: 0;
    display: flex;
    align-items: center;
}

[data-type].active {
    display: flex;
}

.footer__wrapper {
    position: relative;
}

.footer-map {
    position: absolute;
    bottom: 20%;
    grid-area: area-9;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__menu-social_link:hover path {
    stroke: #bb793e;
}

.footer__menu-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.area-5 .footer__menu-social {
    display: none;
}

@media (max-width: 1200px) {
    .footer-map {
        bottom: 0;
        position: static;
        width: 100%;
    }

    .footer-map iframe {
        width: 100%;
    }

    .footer__wrapper {

        grid-template-areas: "area-1 area-2 area-4 area-5 area-6 area-7"
 "area-1 area-3 area-4 area-5 area-6 area-7"
 "area-9 area-9 area-9 area-9 area-9 area-9 "
 "area-8 area-8 area-8 area-8 area-8 area-8";
    }
}

@media (max-width: 500px) {
    .footer__wrapper {
        grid-template-areas: "area-1 area-2"
         "area-1 area-3"
         "area-5 area-6"
         "area-9 area-9"
         "area-8 area-8";
    }

    .area-5 .footer__menu-social {
        display: flex;
    }
}

@media (max-width: 500px) {
    .callback_popup .popup__wrapper {
        height: 50vh;
    }
}
.catalog-grid .catalog-card:not(.ia-card) .button,
.catalog-grid .catalog-card:not(.ia-card) .js-product__cart-counter {
    opacity: 0;
    width: calc(100% - 20px);
    bottom: 10px;
    position: absolute;
    margin-right: 0;
    min-width: unset;
    justify-content: center;
}

.catalog-grid .catalog-card .js-product__cart-counter,
.catalog-grid .catalog-card:not(.is-cart) .product-counter__count-input {
    color: #fff;
    background: #171717;
    border-radius: 2px;
}
.catalog-grid .catalog-card .product-counter {
    border: unset;
}
.catalog-grid .catalog-card:hover {
    box-shadow: 4px 8px 36px 0px #1616160F;
}
/* .catalog-grid .catalog-card:hover .button,
.catalog-grid .catalog-card:hover .js-product__cart-counter {
    opacity: 1;
} */
.catalog-grid .catalog-card:not(.ia-card) .js-product__cart-counter {
    bottom: 10px;
    position: absolute;
}
@media(width < 993px) {
    .catalog-grid .catalog-card .button,
    .catalog-grid .catalog-card .js-product__cart-counter {
        opacity: 1;
    }
}
.catalog-grid .catalog-card__price.price_with_old {
    color: #9E0000;
}
.catalog-grid .catalog-card__price {
    color: #000;
}
.sale-sticker {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    color: #fff;
    background: #9E0000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Nunito;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    bottom: 15px;
    left: 15px;
    position: absolute;
    z-index: 10;
}
@media(width < 500px) {
    .sale-sticker {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
    .catalog-card .sale-sticker {
        bottom: 5px;
        left: 7px;
    }
    .block-w-slider .catalog-card .button,
    .catalog-grid .catalog-card .button {
        font-size: 10px;
        padding-left: 2px !important;
        padding-right: 2px !important;
        text-align: center;
        line-height: 14px;
    }
    .product__cart-counter-container .product-counter {
        height: 40px;
    }
}
.product__wrapper--new.product__wrapper {
    grid-template-columns: 1fr 55rem;
}
.product__wrapper--new .product__title {
    padding: 0px 60px 0 0;
    font-size: 3.2rem;
    margin-bottom: 1rem;
}
.product__wrapper--new .product__additional-info {
    margin-bottom: 1.5rem;
}
.product__wrapper--new .product_subtitle_small {
    margin-top: 0;
    letter-spacing: -0.01em;
}
.product__wrapper--new .product__title-wrap {
    position: relative;
}
.product__wrapper--new .product__rating-link {
    display: flex;
    position: absolute;
    right: 0;
    top: 3px;
    align-items: center;
}
.product__wrapper--new .product__rating-value {
    margin-left: 3px;
    font-size: 12px;
}
.product__wrapper--new .product__price {
    font-size: 2.4rem;
    color: #000000;
    line-height: 2.9rem;
    margin-top: 3.6rem;
}
.product__wrapper--new .element-quantity-select--new .element-quantity-select__wrap {
    display: flex;
    border: unset;
    box-shadow: unset;
    position: static;
}
.product__wrapper--new .element-quantity-select--new .element-quantity-select__wrap li {
    border: 1px solid #C1BBB7;
    margin-right: 15px;
    border-radius: 2px;
    font-family: Spectral;
    font-size: 16px;
    font-style: italic;
    line-height: 24.35px;
    letter-spacing: -0.02em;
}
.product__wrapper--new .element-quantity-select--new .element-quantity-select__wrap li._active {
    background: #fff;
    border-color: #171717;
}
.product__wrapper--new .element-quantity-select--new .element-quantity-select__wrap li a, .product__wrapper--new .element-quantity-select--new .element-quantity-select__wrap li span {
    padding: 11px 17px;
    color: #000000 !important;
}
.product__wrapper--new .product__favorite path {
    stroke: #000;
}
.product__wrapper--new .product__favorite.is-active path {
    fill: #000;
}
.product__wrapper--new .product__cart {
    align-items: unset;
}
.product__wrapper--new .product__cart-button {
    min-width: unset;
}
.product__wrapper--new .product__cart .button {
    width: 45%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-right: 2rem;
}
.product__wrapper--new .product__cart .button.oneClick {
    white-space: nowrap
}
.product__wrapper--new .product__cart-counter-container {
    width: 45%;
    margin-right: 1rem;
}
.product__wrapper--new .product__favorite {
    border: 1px solid #171717;
    border-radius: 2px;
    flex-basis: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product__wrapper--new .product__instock span {
    color: #FF4433;
}
.product__wrapper--new.product__wrapper .product__cart-counter-container .product-counter {
    height: 48px;
}
.product__wrapper--new .product-img__labels--new {
    margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .product__wrapper--new.product__wrapper {
    grid-template-columns: 1fr 1fr;
  }
    .product__wrapper--new .product__cart .button {
        margin-right: 1rem
    }
}
@media screen and (max-width: 780px) {
  .product__wrapper--new.product__wrapper {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .product__wrapper--new .product__additional-info {
    -ms-flex-pack: justify;
    justify-content: start;
    font-size: 12px;
  }
    .product__wrapper--new .product__title {
        padding-right: 0;
        font-size: 2.4rem;
    }
    .product__wrapper--new .product__rating-link {
        top: calc(100% + 1rem)
    }
    .product__wrapper--new .product_subtitle_small {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .product__wrapper--new .element-quantity-select--new .element-quantity-select__wrap li {
        font-size: 14px;
    }
    .product__wrapper--new .product__price {
        font-size: 2rem;
        margin: 2rem 0;
    }
}
@media screen and (max-width: 500px) {
    .product__wrapper--new .product__cart {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .product__wrapper--new .product__cart .product__cart-button,
    .product__wrapper--new .product__cart-counter-container {
        width: 100% !important;
        margin-right: 0;
        margin-top: 1rem;
        order: 3;
    }
    .product__wrapper--new .product__cart .button.oneClick,
    .product__wrapper--new .product__cart .button.findOut {
        flex-grow: 1;
    }

}
@media(width > 1250px){
    .cart-page__wrapper {
      /*grid-template-columns: 1fr 55rem;*/
    }
} 
.cart-page__forms input::placeholder,
.promocode-field input::placeholder {
    color: #171717;
}
.cart-page__wrapper .control {
    font-size: 11px;
    line-height: 17px;
    margin-bottom: 10px;
}
.cart-page__wrapper .control_indicator {
    top: 50%;
        transform: translateY(-50%);
}
.login-form__button {
    margin-top: 20px;
}

.cart-page__wrapper .catalog-card__price {
    position: static;
    color: #000;
}
.section--how {
    margin-bottom: 5rem;
}
.cart-page__wrapper .catalog-card {
        padding-bottom: 0;
    }
@media screen and (max-width: 780px) {
  .cart-page__form-box-title {
    font-size: 1.7rem;
  }
  .cart-page__form-box-title.pay-title {
    font-family: Spectral;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.02em;
  }
  .section--how {
      margin-bottom: 1rem;
    }
    
    .cart-page__forms input,
    .promocode-field input {
        font-size: 12px;
    }
    .cart-page__cards .catalog-card__price {
        color: #BB793E;
    }
}
/* End */


/* Start:/local/templates/new_main/css/custom.css?175525283040282*/
#subscribe-popup .popup__wrapper {
    padding: 0;
    max-width: 810px;
    background: transparent;
}

#subscribe-popup .popup-content {
    display: flex;
    flex-direction: row-reverse;
}

#subscribe-popup .popup-content .left {
    position: absolute;
    z-index: 1;
    left: 0;
    height: 100%;
}

#subscribe-popup .popup-content .left img {
    height: 100%;
}

#subscribe-popup .popup-content .right {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
    background: white;
    padding: 35.5px 53.5px 31px 53.5px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

#subscribe-popup .sub-title {
    font-family: Spectral;
    font-size: 36px;
    font-style: italic;
    font-weight: 400;
    text-align: left;
}

#subscribe-popup .sub-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
}

#subscribe-popup .sub-text b {
    font-weight: 700;
}

#subscribe-popup form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#subscribe-popup input {
    box-sizing: border-box;
    border: 1px solid rgb(228, 228, 228);
    background: rgb(255, 255, 255);
    color: #171717;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    height: 48px;
    padding-left: 15px;
    margin-bottom: 5px;
}

#subscribe-popup input::placeholder {
    color: #171717;
}

#subscribe-popup input[type=submit] {
    background: rgb(23, 23, 23);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
    padding-left: 0;
}

#subscribe-popup ul li {
    color: rgb(102, 102, 102);
    font-size: 10px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 9px;
}

#subscribe-popup .support-text {
    margin-top: 4px;
}

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    color: rgb(23, 23, 23);
    font-family: Arial;
    font-size: 9px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0;
    text-align: left;
}

.control a {
    text-decoration: underline;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 0;
}

.control:hover input~.control_indicator,
.control input:focus~.control_indicator {
    background: #FFFFFF;
}

.control input:checked~.control_indicator {
    background: #ffffff;
}

.control:hover input:not([disabled]):checked~.control_indicator,
.control input:checked:focus~.control_indicator {
    background: #FFFFFF;
}

.control input:disabled~.control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked~.control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    left: 4px;
    top: 2px;
    width: 7px;
    height: 7px;
    border: solid #171717;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.control-checkbox input:disabled~.control_indicator:after {
    border-color: #7b7b7b;
}

#subscribe-popup .js-popup-close {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 10;
}

.choise-slider__card-image {
    overflow: hidden;
}

.breadcrumbs a:last-of-type::after {
    display: block !important;
}

.check-box-input input:required {
    display: inline-block;
    opacity: 0;
    position: absolute;
}

.loader-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    display: none;
}

.loader {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -50px 0 0 -50px;
    z-index: 2;
    background: url(/local/templates/new_main/css/../img/loader.svg) center center no-repeat;
}

.basket__loading .loader-bg {
    display: block;
}

.basket__loading .basket__wrp,
.basket__loading .cart-page__wrapper {
    opacity: 0.6;
}

.promocode-field {
    margin-bottom: 10px;
}

.promocode-text.promocode-text__err {
    color: #f44336;
}

.promocode-text.promocode-text__complete {
    color: #009688;
}

.swal2-html-container {
    margin: 1em 1.6em 1em;
    font-size: 1.5em;
}

.swal2-cancel.button {
    margin-left: 10px;
}

.catalog-card__image img,
.product__nav-sldier .swiper-slide img,
.product__main-sldier .swiper-slide img {
    mix-blend-mode: multiply;
    filter: brightness(1.05);
    width: auto;
}

.brands .brands-list {
    display: flex;
    flex-wrap: wrap;
}

.brands .brands-list-item {
    flex: 1 0 20%;
    margin: 1%;
}

.brands-list-item__wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background: #f9f9f9;
    text-align: center;
    line-height: 200px;
    flex-direction: column;
}

.brands-list--simple .brands-list-item__wrap {
    background: transparent;
}

.brands-list-item__wrap:hover {
    opacity: 1;
}

.brands-list-item__wrap img {
    display: inline-block;
    vertical-align: middle;
    outline: none;
    max-width: 80%;
    height: auto;
    transition: all .3s ease-out;
    mix-blend-mode: multiply;
    filter: brightness(1.05);
}

.brands-list-item__wrap .no-photo {
    width: 70px;
    height: 70px;
    opacity: .3;
    transition: all .3s ease-out;
}

.brands-list-item__wrap:hover .no-photo {
    opacity: .6;
}

.brands-list-item__wrap span {
    position: absolute;
    bottom: 10px;
    left: 0;
    display: block;
    padding: 0 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

@media screen and (max-width: 780px) {
    .brands .brands-list-item {
        flex: 1 0 31.3%;
        margin: 1%;
    }
}

@media screen and (max-width: 500px) {
    .brands .brands-list-item {
        flex: 1 0 48%;
        margin: 1%;
    }
}

.element-faq h3 {
    margin: 3rem 0 1rem;
    font-weight: bold;
}

.element-faq-item {
    margin-bottom: 2rem
}

.element-faq-item__btn {
    font-weight: 600;
}

.catalog-card__no-available p {
    z-index: 10;
}

.catalog-card__no-available {
    position: absolute;
    top: 0;
    z-index: 1;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(251, 250, 249, 0.8);
}


.section-empty {
    text-align: center;
    padding: 10vh 0;
}

.sitemap>li {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 5rem;
}

.sitemap-title {
    flex: 0 1 20%;
    font-weight: 700;
}

.sitemap-child {
    flex: 0 1 80%;
    display: flex;
    flex-wrap: wrap;
}

.sitemap-child .header__top-menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
}

.sitemap-child li,
.sitemap-child .header__top-menu a {
    flex: 0 1 25%;
    padding: 0 3rem 0 0;
    margin: 0 0 1rem;
}

@media screen and (max-width: 1024px) {

    .sitemap-child li,
    .sitemap-child .header__top-menu a {
        flex: 0 1 33.3%;
    }
}

@media screen and (max-width: 780px) {
    .sitemap-title {
        flex: 0 1 30%;
    }

    .sitemap-child {
        flex: 0 1 70%;
    }

    .sitemap-child li,
    .sitemap-child .header__top-menu a {
        flex: 0 1 50%;
    }
}

@media screen and (max-width: 500px) {
    .sitemap-title {
        margin-bottom: 2rem;
    }

    .sitemap>li {
        flex-direction: column;
    }
}

.product_subtitle_small {
    margin-top: -10px;
    margin-bottom: 29px;
    font-size: 1.8rem;
    line-height: 114%;
    letter-spacing: -0.06em;
    color: #717171;
}

.element-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.element-quantity-select {
    position: relative;
    flex: 0 0 50%;
}

.element-quantity-select__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 0 28px;
    width: 100%;
    height: 60px;
    border: 1px solid #ccc;
    line-height: 60px;
    text-align: left;
    cursor: pointer;
}

.element-quantity-select__btn span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.element-quantity-select__btn._active svg {
    transform: rotate(180deg);
}

.element-quantity-select__wrap {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 5;
    display: none;
    width: 100%;
    max-height: 232px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}

.element-quantity-select__wrap::-webkit-scrollbar {
    width: 3px;
    background: transparent;
}

.element-quantity-select__wrap::-webkit-scrollbar-thumb {
    background-color: #bebbb5;
    border-radius: 3px;
}

.element-quantity-select__wrap::-webkit-scrollbar-track {
    border-width: 0;
}

.element-quantity-select__wrap li._active {
    background-color: #cccccc;
}

.element-quantity-select__wrap li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.element-quantity-select__wrap li a,
.element-quantity-select__wrap li span {
    display: block;
    padding: 19px 28px;
}

.element-quantity-select__wrap li svg {
    margin-right: 23px;
}

.element-quantity-select__wrap li+li {
    border-top: 1px solid #ccc;
}

@media (max-width: 550px) {
    .element-quantity-select {
        flex: 0 0 100%;
    }
}


.header__main-menu {
    bottom: 0 !important;
    padding-top: 15px;
}

@media screen and (max-width: 1240px) {
    .header__main-menu {
        padding-top: 20px;
    }
}

.head-nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 13px;
    line-height: 130%;
}

.head-nav>div[id^=bx_incl_area] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: 13px;
    line-height: 130%;
}

.head-nav>li {
    padding: 0 12.5px 17px;
}

.head-nav>li>p {
    cursor: pointer;
}

.head-nav>li:hover>p {
    opacity: .4;
}

.head-nav li a._red {
    color: #FF7571;
}

.head-nav>li:hover>a,
.head-nav>li>a._active {
    opacity: .4;
}

.head-nav-sub {
    position: absolute;
    top: 100%;
    left: -999999px;
    opacity: 0;
    width: 100%;
    min-height: 440px;
    background: #fff;
    transition: opacity .2s ease-out, padding .2s ease-out;

}

.head-nav li {
    list-style-type: none;
}

.head-nav li:hover .head-nav-sub {
    left: 0;
    opacity: 1;
    transition: opacity .1s ease-out, padding .1s ease-out;
    transition-delay: 0.3s;
    z-index: 9999;
}

.head-nav-sub-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 36px 42px 36px 28px;
}

.head-nav-sub-wrap__info {
    position: absolute;
    bottom: 0;
    padding: 36px 40.5px;
    color: #FF7571;
}

.head-nav-sub__left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
}

.head-nav-sub__left ul {
    flex: 0 0 calc(23% - 34px);
}

.head-nav-sub__left--column ul {
    flex: 0 0 calc(36% - 30px);
    column-count: 2;
    page-break-inside: avoid;
    break-inside: avoid;
}

.head-nav-sub__left ul li {
    margin-bottom: 14px;
    color: rgba(0, 0, 0, .4);
}

.head-nav-sub__left ul li a {
    display: inline-block;
    letter-spacing: .5px;
    color: #000;
}

.head-nav-sub__left ul li._parent a {
    color: rgba(0, 0, 0, .4);
}

.head-nav-sub__left ul li._parent a:hover {
    opacity: 1;
    color: #000;
}

.head-nav-sub__left ul li a.head-nav-label:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.head-nav-sub__left ul li a.head-nav-label._limit:after {
    background: #FFD7A0;
}

.head-nav-sub__left ul li a.head-nav-label._gift:after {
    background: #E35935;
}

.head-nav-sub__left ul li a.head-nav-label._bestseller:after {
    background: #396781;
}

.head-nav-sub__left ul li a.head-nav-label._top25:after {
    background: #BAB5AA;
}

.head-nav-sub__left ul li a.head-nav-label._new:after {
    background: #44983c;
}



.mobile_menu_li a.head-nav-label:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.mobile_menu_li a.head-nav-label._limit:after {
    background: #FFD7A0;
}

.mobile_menu_li a.head-nav-label._gift:after {
    background: #E35935;
}

.mobile_menu_li a.head-nav-label._bestseller:after {
    background: #396781;
}

.mobile_menu_li a.head-nav-label._top25:after {
    background: #BAB5AA;
}

.mobile_menu_li a.head-nav-label._new:after {
    background: #44983c;
}





.head-nav-sub__right {
    flex: 0 0 288px;
}

.head-nav-sub__right p {
    margin-bottom: 10px;
    text-align: center;
}

.head-nav-sub__right img {
    width: 288px;
    height: 288px;
    object-fit: cover;
    object-position: center;
}

.head-btns {
    position: absolute;
    top: calc(100% - 4px);
    right: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.head-info ._view,
.head-btns ._view {
    display: block;
}

.head-info ._view._scroll,
.head-btns ._view._scroll {
    display: none;
}

.head-info ._hide,
.head-btns ._hide {
    display: none;
}

.head-info ._hide._scroll,
.head-btns ._hide._scroll {
    display: flex;
}

.head-btns li {
    position: relative;
    padding-bottom: 2px;
    width: 26px;
    text-align: center;
}

.head-btns li+li {
    margin-left: 16px;
}

.head-btns li#smallCart {
    width: 34px;
    margin-left: 0;
    padding-left: 16px;
}

.head-btns li svg {
    min-height: 20px;
}

.head-btns li span {
    display: none;
}

.head-btns li a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.head-btns li._active a span,
.head-btns li a p {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 9px;
    line-height: 14px;
    letter-spacing: 0;
}

.head-btns li._active a span:before {
    content: '(';
}

.head-btns li._active a span:after {
    content: ')';
}

.head-btns li.head-btns__btn {
    position: relative;
    top: -6px;
    width: auto;
}

.head-btns li.head-btns__btn a {
    padding: 0 19px;
    width: auto;
    height: 33px;
    font-size: 11px;
    line-height: 33px;
}

.menu_mobile_version {
    display: none;
}

.mobile_menu_li {
    margin-bottom: 30px;
    font-size: 14px;
}

.mobile_subsections .mobile_menu_li {
    margin-bottom: 14px;
}

.mobile_subsections {
    display: none;
}

.mobile_subsections.active {
    display: block;
    margin-top: 20px;
    margin-bottom: 30px;
}

.menu.selector__arrow-icon {
    transform: rotate(-90deg);
    width: max-content;
    height: max-content;
}

.mobile_menu_have_sections {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.menu.selector__arrow-icon.active {
    transform: rotate(0deg);
}

@media screen and (max-width: 1240px) {
    .menu_desktop_version {
        display: none;
    }

    .menu_mobile_version {
        display: block;
    }
}

.pcatalog-card__price {
    color: #bb793e;
    font-size: 1.7rem;
    line-height: 2rem;
    margin-top: 2rem;
}

.product-img__label {
    margin-bottom: 5px;
    margin-right: 5px;

}

.product-img__labels--new .product-img__label {
    background: #fff;
    padding: 0 5px;
    border-radius: 16px;
}

.product-img__label span {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
    line-height: 120%;
    opacity: .4;
    transition: all .15s ease-out;
}

.product-img__label:hover span {
    opacity: 1;
}

.product-img__label:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 14px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
}

.product-img__label._bestseller:before {
    background: #39677f;
}

.product-img__label._limit:before {
    background: #FFD7A0;
}

.product-img__label._limit1:before {
    background: #FFD7A0;
}

.product-img__label._top25:before {
    background: #BAB5AA;
}

.product-img__label._gift:before {
    background: #E35935;
}

.product-img__label._gift1:before {
    background: #E35935;
}

.product-img__label._new:before {
    background: #44983c;
}

.product-img__label._feb23:before {
    margin: 0 12px 0 -2px;
    width: 16px;
    height: 16px;
    clip-path: polygon(50% 2.45%, 61.8% 38.77%, 100% 38.77%, 69.1% 61.23%, 80.9% 97.55%, 50% 75.1%, 19.1% 97.55%, 30.9% 61.23%, 0% 38.77%, 38.2% 38.77%);
    background-color: red;
}

.product-img__labels--new {
    display: flex;
    margin-left: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.catalog-card .product-img__labels--new {
    padding-right: 50px;
}

.product-img__labels--new .product-img__label:before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 0;
    background: center center no-repeat;
    background-size: contain;
    margin-right: 0;
}

.product-img__labels--new .product-img__label span {
    font-family: Nunito;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    opacity: 1;

}

.product-img__labels--new .product-img__label._limit:before,
.product-img__labels--new .product-img__label._limit1:before {
    background-image: url(/images/icons/diamond.svg);
}

.product-img__labels--new .product-img__label._gift:before,
.product-img__labels--new .product-img__label._gift1:before {
    background-image: url(/images/icons/gift.svg);
}

.product-img__labels--new .product-img__label._box_price:before {
    background-image: url(/images/icons/box.svg);
}

.product-img__labels--new .product-img__label._bestseller:before,
.product-img__labels--new .product-img__label._top25:before {
    background-image: url(/images/icons/fire.svg);
}

.product-img__labels--new .product-img__label._new:before {
    content: none;
}

.product-img__labels--new .product-img__label._new {
    display: inline-block;
    background: #000;
    border-radius: 16px;
}

.product-img__labels--new .product-img__label._new span {
    color: #fff;
    padding: 4px 8px;
}

.reviews {
    margin-bottom: 140px;
}

.reviews-rating {
    margin-top: -11px;
}

.reviews-wrap {
    margin: 0 auto 40px;
    max-width: 950px;
}

.reviews-wrap .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.reviews-wrap .owl-dot {
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px;
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    transition: all .2s ease-out;
}

.reviews-wrap .owl-dot.active {
    background: #000;
}

.review {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px 0 3px;
    border-top: 2px solid #7f7f7f;
}

.review-info {
    flex: 0 0 190px;
}

.review-info__date {
    color: rgba(0, 0, 0, .4);
}

.review-info__rating {
    margin: 12px 0 6px;
    font-size: 0
}

.review-info__rating li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.review-text {
    flex-grow: 1;
}

.review-text__comment {
    margin-bottom: 32px;
}

.review-text__plus,
.review-text__minus {
    margin-bottom: 15px;
}

.reviews .title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
}

.reviews .title h2 {
    font-size: 25px;
    margin: 40px 0 20px;
    line-height: 120%;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}

@media (max-width: 650px) {
    .review {
        flex-wrap: wrap;
    }

    .review-info {
        position: relative;
        flex: 0 0 100%;
        padding-right: 130px;
    }

    .review-info__rating {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
    }

    .review-text {
        flex: 0 0 100%;
        padding: 30px 0 10px;
    }

    .review-text__comment {
        margin-bottom: 15px;
    }
}

.brands-section__slider-item img,
.brands-list-item__wrap img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.paristore-choise__card-info .button {
    background: #dedede;
    border: 1px solid #dedede;
    color: #000000;
}

.paristore-choise__card-info .button:hover {
    background: #bb793e;
    border-color: #bb793e;
    color: #f7f7ef;
}

.product__about-col a.product__about-text {
    color: #000000;
}

a.product__about-text:hover {
    color: #949494;
}

.product__about-text {
    display: block;
}

a.product__about-text {
    text-decoration: none;
}

.catalog-card__price {
    position: absolute;
    bottom: 70px;
}

.fast-buy-card .catalog-card__price {
    position: static;
}

.gift-wrap-slider .catalog-card__price-block {
    display: flex;
    flex-direction: column;
}

.gift-wrap-slider .catalog-card__price {
    position: static;
}

.gift-wrap-slider .catalog-card__price-old {
    padding: 0;
}

.catalog-card__reviews-counter {
    position: absolute;
    top: 10px;
    z-index: 1;
    left: 10px;
}

.catalog-card__reviews-counter-no-absolute {
    position: initial;
}

.swiper-wrapper .swiper-slide {
    position: initial;
}

.swiper-wrapper .catalog-card {
    position: initial;
}

.swiper-wrapper .pcatalog-card__price {
    position: absolute;
    width: max-content;
    bottom: 0;
}

@media screen and (max-width: 500px) {
    .swiper-wrapper .swiper-slide {
        position: relative;
    }
}

.catalog-sort.selector:first-child {
    margin-right: 20px;
}

.catalog-sort-wrapper {
    flex-wrap: wrap;
    max-width: 100%;
}

@media screen and (max-width: 780px) {
    .catalog-card .product-img__labels:not(.product-img__labels--cigar) {
        display: none;
    }

    .product-img__labels--new .product-img__label {
        line-height: 12px;
    }

    .product-img__labels--new .product-img__label._new+.product-img__label {
        margin-top: 0;
        margin-left: 0;
    }

    .product-img__labels--new .product-img__label span {
        font-size: 8px;
        line-height: 12px;
    }

    .product-img__labels--new .product-img__label._new {
        line-height: 20px;
    }

    .product-img__labels--new .product-img__label._new span {
        padding: 0 4px;
    }

    .product-img__labels--new .product-img__label::before {
        width: 12px;
        height: 12px;
    }
}

.paristore-choise__card-name {
    margin-bottom: 10px;
}

.element-stars {
    text-align: left;
}

.bid-rating__value {
    margin-left: 0;
}

.bid-rating__value li:first-child {
    margin-left: 0;
}

.cart-page__cards-elem {
    margin-bottom: 20px;
}

.bx-filter .bx-filter-input-container input {
    font: inherit;
}

.btn {
    font-family: "InputSans", sans-serif;
}

body.header_fixed {
    margin-bottom: 101px;
    padding-top: 1px;
}

body.header_fixed main {
    margin-top: 189px;
}

@media (max-width: 1240px) {
    body.header_fixed {
        margin-bottom: 0px;
    }

    body.header_fixed main {
        margin-top: 103px;
    }

    .header__main-menu.is-open {
        top: 103px;
    }
}

.header__bottom__fixed .header__main-menu.is-open {
    top: 105px;
}

.menu.selector__arrow-icon svg {
    height: 7px;
    width: 18px;
}

@media (max-width: 600px) {
    .header__main-menu.is-open {
        top: 141px;
    }

    .im-hero-slider__title {
        margin: 0 10px;
    }

    .breadcrumbs {
        font-size: 1.1rem;
    }

    .header__main {
        top: 39px;
        width: 100%;
        z-index: 500;
    }

    body.header_fixed .header__main {}

    #bx-panel {
        display: none !important;
    }

    .header__main-menu {
        top: 105px;
    }
}

.search-page__form input::placeholder,
.search-page__form .button {
    font-family: "InputSans", sans-serif;
}

.catalog-card__fast-buy._added {
    background: #d89457;
}

.check-box-input a {
    text-decoration: none !important;
}

.check-box-input:hover {
    color: #bb793e;
}

.head-nav-sub-wrap {
    padding-left: 12px;
}

.personal-favorite.new {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1024px) {
    .personal-favorite.new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.header__main-menu.bottom_border {
    border-bottom: 1px solid #bb793e;
}

.fancybox__container {
    z-index: 10000;
}

body.header_fixed .header {
    -webkit-box-shadow: 0px 7px 14px -1px rgba(34, 60, 80, 0.17);
    -moz-box-shadow: 0px 7px 14px -1px rgba(34, 60, 80, 0.17);
    box-shadow: 0px 7px 14px -1px rgba(34, 60, 80, 0.17);
}

.top-button__button-up {
    display: none;
}


@media screen and (min-width: 1240px) {
    .header.hide_header_menu .header__bottom {
        display: none;
    }
}

@media screen and (min-width: 600px) {
    .top-button__button-up {
        z-index: 5000;
        display: none;
        width: 55px;
        height: 55px;
        position: fixed;
        bottom: 40px;
        right: 40px;
        background: white;
        border-radius: 50%;
        cursor: pointer;
        -webkit-box-shadow: 0px 0px 11px 11px rgba(34, 60, 80, 0.09);
        -moz-box-shadow: 0px 0px 11px 11px rgba(34, 60, 80, 0.09);
        box-shadow: 0px 0px 11px 11px rgba(34, 60, 80, 0.09);
    }

    .top-button__button-up.show {
        display: block;
    }
}

.menu_hide_desc {
    display: none;
}

@media screen and (max-width: 500px) {
    .subscripbe-form form .button {
        margin-top: 0rem;
    }

    .menu_hide_desc {
        display: block;
    }

    .menu_hide_mobile {
        display: none;
    }

    .footer__wrapper .area-8 {
        margin-top: 30px
    }

}


.button--ghost-transparent {
    background: transparent !important;
}

:root {
    --pdf-page-padding: 40px;
}

.pdf-page {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
}

.pdf-page__section-separator {
    width: 300px;
    height: 1px;
    background: #000000;
    margin: 0 auto;
}

.pdf-page .mb-100 {
    margin-bottom: 30px;
}

.pdf-page__h2 {
    font-size: 2.8rem;
    line-height: 100%;
}

.pdf-page__h3 {
    font-size: 2.2rem;
    line-height: 100%;
    font-weight: 500;
}

.pdf-page__h4 {
    font-size: 1.8rem;
    line-height: 100%;
    font-weight: 500;
}

.pdf-page__headeing-section {
    position: relative;
    color: #edeae2;
    height: 100vh;
}

.pdf-page__headeing-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 5;
}

.pdf-page__headeing-section-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pdf-page__headeing-section-content {
    position: absolute;
    z-index: 15;
    top: calc(var(--pdf-page-padding) * 3);
    left: var(--pdf-page-padding);
}

.pdf-page__headeing-section-number {
    position: absolute;
    z-index: 15;
    top: var(--pdf-page-padding);
    right: var(--pdf-page-padding);
    font-size: 2.6rem;
}

.pdf-page__headeing-section-header {
    font-size: 4rem;
    line-height: 100%;
}

.pdf-page__headeing-section-subheader {
    font-size: 2.4rem;
}

.pdf-page__headeing-section-description {
    padding-top: 40px;
    font-size: 1.4rem;
    max-width: 230px;
}

.pdf-center-section__tile {
    margin-bottom: 40px;
}

.pdf-center-section__container {
    display: grid;
    grid-template-columns: 400px 250px;
    gap: 40px;
    justify-content: space-between;
}

.pdf-medium-text,
.pdf-small-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 780px) {
    .pdf-small-text.list-1 {
        margin-top: -100px;
    }
}


.pdf-small-text__content {
    font-size: 12px;
    line-height: 120%;
}

.pdf-small-text__price {
    font-size: 16px;
}

.pdf-page-right-img {
    max-width: 100%;
    margin-left: auto;
}

.pdf-sidebar-section {
    display: flex;
    gap: 40px;
}

.pdf-sidebar-section.is-revers {
    flex-direction: row-reverse;
}

.pdf-sidebar-section__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
    width: 400px;
    padding-top: 60px;
}

.pdf-sidebar-section__image {
    width: 100%;
}

@media screen and (max-width: 780px) {
    :root {
        --pdf-page-padding: 20px;
    }

    .pdf-page__headeing-section-content {
        top: calc(var(--pdf-page-padding) * 4);
    }

    .pdf-page__headeing-section-header {
        font-size: 3rem;
    }

    .pdf-page__headeing-section-subheader {
        font-size: 2rem;
    }

    .pdf-page__headeing-section-description {
        padding-top: 10px;
    }

    .pdf-page {
        gap: 20px;
    }

    .pdf-page .mb-100 {
        margin-bottom: 20px;
    }

    .pdf-page__h2 {
        font-size: 2.2rem;
    }

    .pdf-page__h2 br {
        display: none;
    }

    .pdf-page-right-img {
        max-width: 100%;
    }

    .pdf-center-section__container {
        grid-template-columns: 1fr;
    }

    .pdf-sidebar-section__content {
        padding: 0;
        width: 100%;
    }

    .pdf-sidebar-section {
        flex-direction: column-reverse !important;
    }
}

.short_pages_btn_wrap {
    margin-bottom: 20px;
    justify-content: flex-start;
}

@media screen and (min-width: 780px) {
    .button--ghost:hover {
        background: #171717 !important;
        border-color: #171717;
        color: #f7f7ef;
    }
}

.header-search__result {
    position: absolute;
    top: calc(100% + 5px);
    width: 100%;
    background: #fff;
    padding: 12px;
    z-index: 100;
    box-shadow: 0px 7px 14px -1px rgba(34, 60, 80, 0.17);

    transition: .3s;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, -10px);
}

.header-search__result.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.header-search__history {
    padding-bottom: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #C1BBB7;
}

.header-search__history-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.header-search__history-title {
    font-weight: 600;
    font-size: 17px;
    color: #171717;
}

.header-search__history-clear {
    font-weight: 400;
    font-size: 9px;
    letter-spacing: -0.01em;
    color: #c1bbb7;
    cursor: pointer;
}

.header-search__history-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header-search__history-list-item {
    color: #c1bbb7;
    font-weight: 400;
    font-size: 11px;
    line-height: 155%;
    letter-spacing: -0.01em;
}

.header-search__history-list span {
    color: #171717;
}

.header-search__slider .swiper {
    padding-bottom: 20px;
}

.header-search__slider .swiper-slide {
    width: 300px;
}

.header-search__slider .swiper-pagination {
    top: auto;
    bottom: 0;
    background: #f2f1f0;
    border-radius: 1rem;
}

.header-search__slider .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #171717;
    border-radius: 1rem;
}

.header-search__slider-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.header-search__slider-arrows .swiper-arrow {
    position: unset;
    width: 16px;
    height: 16px;
    transform: none;
}

.header-search__slider-arrows .swiper-arrow.swiper-button-disabled {
    display: block;
    opacity: .3;
}

.header-search__card {
    width: 100%;
}

.header-search__card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.header-search__card-rating {
    font-size: 13px;
    letter-spacing: -0.01em;
    color: #171717;
}

.header-search__card-articul {
    font-size: 13px;
    letter-spacing: -0.01em;
    color: #c1bbb7;
}

.header-search__card-main {
    display: flex;
    gap: 10px;
}

.header-search__card-image-box {
    position: relative;
    height: 102px;
    width: 53px;
    flex-shrink: 0;
}

.header-search__card-image-box .catalog-card__image {
    padding: 0;
    background: none;
}

.header-search__card-main .catalog-card__name {
    font-size: 1.7rem;
}


.header-search__card-main .pcatalog-card__price {
    position: unset;
    margin: 0 0 10px 0;
}

.header-search__card-main .button {
    height: 30px;
    font-size: 14px;
    padding: 1.5px 23px 2px;
}

/*Поиск*/
.header-search__result {
    position: initial;
}

.header-search__result_absolute {
    position: absolute;
}

.header-search__slider .swiper .swiper-wrapper .swiper-slide {
    height: auto;
    display: block;
}

.header-search__slider .swiper .swiper-wrapper .swiper-slide .header-search__card {
    height: 100%;
}

.header-search__slider .swiper .swiper-wrapper .swiper-slide .header-search__card-main .header-search__card_main-props {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-search__slider .swiper .swiper-wrapper .swiper-slide .header-search__card-main {
    height: calc(100% - 30px);
}

.header__main-right {
    align-items: center;
}

.header-search__form .button {
    line-height: 20px;
}

.search_mobile_active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9999999999;
    -webkit-box-shadow: -1px 13px 22px -9px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 13px 22px -9px rgba(0, 0, 0, 0.75);
    box-shadow: -1px 13px 22px -9px rgba(0, 0, 0, 0.75);
}

.header_search_container.active {
    background-color: rgba(0, 0, 0, .25098039215686274);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.header_search_container.active .header-search__form input {
    height: 4.9rem;
}

.header_search_container.active .header-search__form .button {
    height: 4rem;
}

.header_search_container.active .header-search__result {
    top: calc(100% + 1px);
}

.header_search_close {
    font-family: 'Geometria', Helvetica, Arial, sans-serif;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.037em;
    text-transform: uppercase;
    display: block;
    border: none;
    padding: 2px 0 0;
    color: #28282A;
    background-color: transparent;
    flex-shrink: 0;
    margin: 0 0 0 8px;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
    cursor: pointer;
}

div.title-search-result {
    z-index: 99999 !important;
}

@media (min-width: 1024px) {
    .header_mobile_search_icon {
        display: none;
    }

    .header_search_close {
        display: none;
    }
}

@media (max-width: 1024px) {
    div.title-search-result {
        z-index: 99999 !important;
    }

    .header_search_container.active .header-search__form .button {
        height: 3.3rem;
        font-size: 1.4rem;
        line-height: 14px;
    }

    .header_search_container.active .header-search__form input {
        margin-right: 20px;
    }

    #subscribe-popup .popup-content .left {
        display: none;
    }

    #subscribe-popup .popup-content {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
    }

    #subscribe-popup .popup-content .right {
        padding: 20px;
    }

    #subscribe-popup .js-popup-close {
        top: 20px;
        right: 20px;
    }

    #subscribe-popup .sub-title {
        font-size: 24px;
    }

    #subscribe-popup .sub-text {
        font-size: 14px;
    }
}

.seo_text_wrap h2,
.seo_text_wrap h3,
.seo_text_wrap h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {

    input,
    textarea,
    select {
        font-size: 16px;
    }
}

.short_pages_btn_wrap .button {
    border: 1px solid #c1bbb7;
    padding: 3px 1.1rem;
    font-size: 1.3rem;
    line-height: 2.3rem;
    font-family: input-sans, sans-serif;
    font-style: normal;
}

.menu-info {
    display: none;
}

.menu-info__icon {
    width: 32px;
    height: 32px;
    background: #000 center center no-repeat;
    background-size: 16px;
    margin-right: 10px;
}

.menu-info__icon--inst {
    background-image: url(/images/icons/streamline_instagram-solid.svg);
}

.menu-info__icon--wa {
    background-image: url(/images/icons/ri_whatsapp-fill.svg);
}

.menu-info__icon--tg {
    background-image: url(/images/icons/lineicons_telegram.svg);
}

.menu-info__icon--tel {
    background-image: url(/images/icons/iconoir_phone-solid.svg);
}

@media(width < 1241px) {
    .header__main-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-100%);
    }

    .header__main-menu.is-open {
        transform: translateX(0);
    }

    .menu_mobile_version {
        width: 100%;
    }

    .mobile_menu_have_sections {
        justify-content: space-between;
    }

    .mobile_subsections {
        padding-left: 15px;
    }

    .menu-about {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .menu-about .only-mobile {
        color: #171717;
    }

    .menu-about .header__main-menu-item.higlited {
        order: -1;
        margin-bottom: 25px;
        margin-top: -10px;
    }

    .header__main-menu-item.sale {
        font-size: 14px;
    }

    .menu-info {
        display: flex;
        width: 100%;
        margin-top: 30px;
    }
}

@media(width < 992px) {
    .product-img__labels--new {
        display: flex !important;
        /*! margin: 0; */
        margin-left: 10px;
        margin-top: 5px;
    }

    .catalog-card__favorite {
        top: 1.5rem !important;
        right: 1.5rem;
    }
}

.button--ghost.active {
    background: #171717 !important;
    border-color: #171717;
    color: #f7f7ef;
}

@media(width < 500px) {
    .product-img__labels--new {
        display: flex !important;
        padding-right: 0;
        flex-direction: column;
        align-items: start;
    }
}

.swiper .catalog-card:has(.catalog-card__price-old) .catalog-card__price {
    color: #9E0000;
}

.swiper .catalog-card__reviews-counter {
    display: none;
}

.label-discount {
    border-radius: 15px;
    padding: 5px 8px;
    background-color: #000000FF;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 15px 0 5px 10px;
    max-width: max-content;
}

.product-img__labels--new .label-discount {
    margin: 0 5px 5px 0;
}

.label-discount__text {
    line-height: 100%;
    font-size: 10px;
    color: #FFFFFFFF;
    opacity: 1;
}

.catalog-card__labels {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 10px;
    left: 5px;
    z-index: 10;
}

@media screen and (max-width: 780px) {
    .label-discount {
        margin: 12px 0 5px 0;
        padding: 5px 8px;
    }

    .label-discount__text {
        font-size: 8px;
    }
}

.product__wrapper--new .swiper-arrow-prev:hover,
.product__wrapper--new .swiper-arrow-next:hover {
    background: #fff;
}

.product__wrapper--new .swiper-arrow-prev {
    left: 1rem;
}

.product__wrapper--new .swiper-arrow-next {
    right: 1rem;
}

@media(width > 780px) {
    .product__wrapper--new .product__main-sldier .swiper-slide {
        padding: 0 50px;
    }
}

@media(width < 500px) {
    .product-img__labels--new {
        margin-left: 0;
        white-space: nowrap;
    }

    .catalog-card .product-img__labels--new {
        padding-right: 0px !important;
    }

    .catalog-card__favorite,
    .catalog-card__favorite svg {
        width: 15px !important;
        height: 15px !important;
    }

    .catalog-card {
        padding: 3px 3px 90px;
    }

    .catalog-card__rating-box {
        top: 0.5rem;
        left: 0.5rem;
    }

    .catalog-card__favorite {
        top: 0.8rem !important;
        right: 0.5rem !important;
    }

    .catalog-grid .catalog-card .button,
    .catalog-grid .catalog-card .js-product__cart-counter {
        width: calc(100% - 6px);
    }
}

@media screen and (max-width: 600px) {
    .personal-favorite.new {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* End */


/* Start:/local/templates/new_main/css/custom_new.css?175931815998035*/
/* new ia styles */

html,
body {
    scrollbar-gutter: stable;
}

:root {
    --border-radius-default: 20px;
    --border-radius-image: 12px;
    --border-radius-btn: 10px;
    --border-radius-btn-big: 10px;
    --border-radius-chips: 16px;
    --border-radius-sticker: 8px;
    --border-radius-input: 6px;
    --border-radius-max: 30px;

    --image-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.38%, #000000 100%);

    --color-primary: #171717;
    --color-secondary: #717171;
    --color-accent: #BB793E;
    --color-accent-light: #D6A57A;

    --color-default: #FFFFFF;
    --color-dark-grey: #C1BBB7;
    --color-grey: #DEDEDE;
    --color-surface-grey: #F2F1F0;
    --color-surface-light: #FBFAF9;
    --color-red: #9E0000;
    --color-red-ultra: #CD1C18;

    --transition-default: all .2s linear;
    --transition-easy: all .8s ease;

    --swiper-pagination-bullet-new-gap: 6px;
}

.ia-order {
    position: relative;
    padding-top: 6px;
}

.ia-order * {
    font-family: 'Aeroport', sans-serif;
    letter-spacing: 0;
}

.ia-btn {
    appearance: none;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    border: none;
    padding: 13px 30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-default);
    background: var(--color-primary);
    width: max-content;
    max-width: 100%;
    transition: var(--transition-default);
}

.ia-btn:disabled {
    background: var(--color-dark-grey);
}

.ia-btn--ghost {
    background: none;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.ia-btn--white {
    background: var(--color-default) !important;
    color: var(--color-primary) !important;
}

.ia-order__submit {
    width: 100%;
    margin-top: 20px;
}

.ia-order p {
    margin-bottom: 15px;
}

/* TODO поправить при доработке хлебных крошек */
.ia-order__clear {
    position: absolute;
    right: 0;
    top: -74px;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;

}

.ia-order__form {
    position: relative;
    width: 100%;
}

.ia-order__wrapper {
    display: grid;
    grid-template-columns: 57.5% 41%;
    column-gap: 2rem;
}

.ia-order__column {
    max-width: 100%;
}

.ia-order__basket {
    padding: 22px 40px;
    border-radius: var(--border-radius-default);
    background: var(--color-surface-light);
}

.ia-order__basket--not-available {
    background: none;
}

.ia-order__title {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
}

.ia-order__block {
    margin-bottom: 52px;
}

.ia-order__block--total {
    position: sticky;
    top: 130px;
}

.ia-order__block--pack.is-mobile {
    display: none;
}

.ia-order__subtitle {
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
}

.ia-order .check-box-input {
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
}

.ia-order .check-box-input__check {
    top: 0;
}

.ia-order .login-form__phone-input {
    margin-bottom: 0;
}

.login-form__phone-input .ia-form__input::placeholder {
    color: var(--color-primary);
}

.login-form__phone-input .ia-form__input {
    padding-left: 7.4rem;
}

.ia-order .cart-info-form {
    padding: 40px;
    background: var(--color-surface-light);
    border-radius: var(--border-radius-default);
}

.ia-order .cart-info-form__price {
    font-size: 16px;
}

.ia-order .cart-info-form__price-detail {
    margin-bottom: 10px;
    font-size: 14px;
}

.ia-order .cart-info-form__price-detail-item {
    margin-bottom: 16px;
}

.ia-order .promocode-field input {
    height: 48px;
    border: none;
    background: var(--color-default);
    border-top-left-radius: var(--border-radius-image);
    border-bottom-left-radius: var(--border-radius-image);
    overflow: hidden;
}

.ia-order .promocode-field input::placeholder {
    color: var(--color-dark-grey);
}

.ia-order .promocode-field input.good {
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-image);
}

.ia-order .promocode-field input.err {
    border: 1px solid var(--color-red);
    border-radius: var(--border-radius-image);
}

.ia-order .promocode-field button {
    height: 48px;
    padding: 16px 41px;
    border-radius: 0;
    border-top-right-radius: var(--border-radius-image);
    border-bottom-right-radius: var(--border-radius-image);
    border: none;
    background: var(--color-primary);
    color: var(--color-default);
}

.ia-order .control-checkbox {
    margin-bottom: 14px;
    width: 90%;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
}

.ia-order .control-checkbox .control_indicator:after {
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: none;
    transform: none;
    background: url(/local/templates/new_main/css/../svg/done.svg);
    background-position: center;
    background-size: cover;
}

.ia-order .control_indicator {
    top: 50%;
    margin-top: -10px;
    border: 1px solid var(--color-dark-grey);
    border-radius: 4px;
}

.ia-form__input {
    height: 48px;
    border: none;
    border-radius: var(--border-radius-image);
    background: var(--color-surface-grey);
    width: 100%;
    margin-bottom: 16px;
    padding: 0 1.7rem;
    color: var(--color-primary);
}

.ia-form__input.is-error {
    border: 1px solid var(--color-red);
    margin-bottom: 6px;
}

.ia-order input.ia-form__input.is-error~.control_indicator {
    border: 1px solid var(--color-red);
    margin-top: -20px;
}

.ia-form__error {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--color-red);
    display: inline-block;
    margin-bottom: 17px;
}

.ia-order__form-box {
    margin-bottom: 36px;
}

.ia-order__delivery-info {
    display: flex;
    flex-direction: column;
    margin-top: 38px;
    gap: 20px;
    font-size: 14px;
    line-height: 140%;
}

.ia-order .promocode-field__clear {
    width: 24px;
    height: 24px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 1rem;
}

.ia-order .promocode-field__clear svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
    pointer-events: none;
}

.ia-order .promocode-text.promocode-text__err {
    color: var(--color-red);
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
}

.ia-order .promocode-text.promocode-text__complete {
    color: var(--color-accent);
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
}

.ia-order .promocode-field input {
    font-size: 14px;
    background: var(--color-surface-grey);
}

.ia-order__promo {
    color: var(--color-accent);
}

.ia-form__alert {
    color: var(--color-red);
}

.order-item {
    padding: 19px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-dark-grey);
    gap: 20px;
}

.order-item:nth-last-child(1) {
    border-bottom: none;
}

.order-item__img {
    position: relative;
    width: 95px;
    height: 95px;
    padding: 16px;
    display: flex;
    background: var(--color-default);
    border-radius: var(--border-radius-image);
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex: none;
}

.order-item__img img {
    mix-blend-mode: multiply;
    filter: brightness(1.05);
    object-fit: contain;
    object-position: center;
}

.order-item__img a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.order-item__actions,
.order-item__counter {
    display: flex;
    align-items: center;
}

.order-item__info {
    width: 43%;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    align-self: stretch;
}

.order-item__props {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-secondary);
}

.order-item__name {
    width: 70%;
}

.order-item__section {
    color: var(--color-accent);
}

.order-item__section:empty {
    display: none;
}

.order-item__counter {
    border: 1px solid var(--color-grey);
    border-radius: var(--border-radius-input);
    margin-right: 8px;
    overflow: hidden;
}

.order-item__btn {
    width: 22px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    background: var(--color-default);
}

.order-item__quantity {
    border: none;
    width: 34px;
    text-align: center;
    appearance: none;
    height: 26px;
    font-size: 14px;
    line-height: 1;
}

.order-item__delete {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-grey);
    border-radius: var(--border-radius-input);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.order-item__delete svg {
    margin-top: 1px;
    width: 12px;
    height: 13px;
    fill: var(--color-primary);
    pointer-events: none;
}

.order-item__price {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    white-space: nowrap;
}

.order-item__old-price {
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0;
    vertical-align: middle;
    text-decoration: line-through;
    color: var(--color-secondary);
}

@media screen and (max-width: 1024px) {
    .ia-order__wrapper {
        grid-template-columns: 100%;
    }

    .ia-order .ia-basket-slider .swiper-arrow-prev {
        left: -35px !important;
    }

    .ia-order .ia-basket-slider .swiper-arrow-next {
        right: -35px !important;
    }

    .ia-order__clear {
        top: -60px;
    }
}

@media screen and (max-width: 767px) {

    .ia-order {
        margin-bottom: 17px;
        padding-top: 0;
    }

    .ia-order__clear {
        top: -51px;
        font-size: 12px;
    }

    .ia-order__basket {
        background: none;
        padding: 0;
    }

    .ia-order__title--main {
        margin-bottom: 7px;
    }

    .ia-order__block {
        margin-bottom: 34px;
    }

    .ia-order__block--pack {
        display: none;
    }

    .ia-order__block--pack.is-mobile {
        display: block;
        margin-bottom: 19px;
    }

    .ia-order__block--basket {
        margin-bottom: 19px;
    }

    .ia-order__form-box {
        margin-bottom: 18px;
    }

    .ia-order .cart-info-form {
        background: none;
        padding: 0;
    }

    .ia-order .cart-info-form__price-detail-item {
        font-size: 14px;
        margin-bottom: 13px;
    }

    .ia-order .cart-info-form__promocode {
        margin-bottom: 33px;
    }

    .ia-order .control-checkbox {
        margin-bottom: 18px;
        font-size: 12px;
    }

    .ia-order__delivery-info {
        margin-top: 16px;
        gap: 16px;
        font-size: 12px;
    }

    .ia-order__submit {
        margin-top: 16px;
    }

    .order-item {
        position: relative;
        padding: 16px 0;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }

    .order-item__props {
        margin-top: 6px;
        font-size: 12px;
    }

    .order-item__section {
        width: 100%;
    }

    .order-item__img {
        width: 104px;
        height: 104px;
        background: var(--color-surface-light);
    }

    .order-item__info {
        width: 65%;
    }

    .order-item__name {
        width: 100%;
    }

    .order-item__delete {
        position: absolute;
        bottom: 16px;
        right: 0;
        width: 32px;
        height: 32px;
    }

    .order-item__counter {
        justify-content: center;
        width: 104px;
        margin-right: 0;
    }

    .order-item__btn {
        width: 29px;
        height: 29px;
    }

    .order-item__btn.is-minus {
        padding-left: 7px;
    }

    .order-item__btn.is-plus {
        padding-right: 7px;
    }

    .order-item__price {
        margin-left: -2px;
        font-size: 16px;
        padding-top: 5px;
        width: 46%;
        text-align: left;
        white-space: normal;
    }

    .order-item__old-price {
        font-size: 14px;
    }
}

/* New home page ia styles */

.section {
    margin-bottom: 100px;
}

.section-title {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 40px;
    line-height: 120%;
}

.ia-title {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 40px;
    line-height: 120%;
    font-style: normal;
}

.ia-title--section {
    text-align: left;
}

.ia-subtitle {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    font-size: 20px;
    line-height: 120%;
}

.seo-block__box-description {
    margin-bottom: 2.1rem;
}

.ia-choise-slider * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
}

.ia-choise-slider .swiper-arrow {
    top: 133px;
}

.ia-choise-slider .swiper-arrow svg {
    fill: var(--color-primary);
}

.ia-choise-slider .swiper-arrow-next {
    right: 3.5rem;
}

.ia-choise-slider .swiper-arrow-prev {
    left: 3.5rem;
}

.ia-paristore-choise--first {
    margin-bottom: 2rem;
}

.ia-paristore-choise .paristore-choise__card {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    border-radius: var(--border-radius-max);
}

.ia-paristore-choise .paristore-choise__card-info {
    padding: 4.6rem 2rem;
    background: var(--image-gradient);
}

.ia-paristore-choise .paristore-choise__card-name {
    letter-spacing: 0;
    margin-bottom: 0;
    font-family: 'Aeroport', sans-serif !important;
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    font-style: normal;
}

.ia-paristore-choise .paristore-choise__card-info .ia-btn {
    margin-top: 12px;
    width: max-content;
    min-width: 160px;
}

.ia-paristore-choise .paristore-choise {
    margin-bottom: 0;
}

.catalog-card_label {
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 10;
    display: flex;
    display: -webkit-flex; 
    flex-direction: column;
    gap: 4px;
    padding: 10px;
}

.catalog-card_label .sticker_link,
.bottom_shield .sticker_link {
    height: 25px;
    width: 44px;
    display: flex;
    display: -webkit-flex; 
    align-items: center;
    justify-content: center;
    background: var(--color-default);
    border-radius: var(--border-radius-sticker);
    font-size: 12px;
    line-height: 140%;
    font-weight: 700;
    letter-spacing: 0px;
    color: var(--color-accent);
    box-shadow: 0px 0px 7px 0px #FBFAF9, 0px 2px 5px 0px #E8E8E8;
    -webkit-box-shadow: 0px 0px 7px 0px #FBFAF9, 0px 2px 5px 0px #E8E8E8;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.tooltip {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    padding: 10px;
    background: var(--color-primary);
    color: var(--color-default);
    border-radius: var(--border-radius-sticker);
    font-size: 12px;
    line-height: 140%;
    font-weight: 300;
    flex-direction: column;
    gap: 2px;
    overflow: visible;
    z-index: 2;

    & .tooltip__content {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    & h4 {
        margin: 0;
        font-weight: 700;
    }

    & p {
        margin: 0;
    }

    & * {
        white-space: nowrap;
    }
}

.catalog-card_label .sticker_link.sticker_link--sale,
.catalog-card_label .sticker_link.sticker_link--DISCOUNT,
.bottom_shield .sticker_link.sticker_link--sale,
.bottom_shield .sticker_link.sticker_link--DISCOUNT {
    background: var(--color-red-ultra);
    color: var(--color-default);
}

.tooltip__arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 10px;
    height: 8.66px;
    background-color: #171717;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateX(-50%);
    z-index: 2;
}

.catalog-card_label .sticker_link .tooltip__arrow {
    display: none;
}


.bottom_shield, .bottom_shield--full  {
    display: none;
}

@media screen and (min-width: 1025px) {

    .catalog-card_label .sticker_link .tooltip {
        display: none;
    }

    .catalog-card_label .sticker_link:hover .tooltip,
    .catalog-card_label .sticker_link:hover .tooltip__arrow {
        display: flex;
    }

    .tooltip .sticker_link {
        display: none;
    }

    .tooltip .tooltip__line {
        display: none;
    }

}

@media screen and (max-width: 1024px) {


    .catalog-card_label .sticker_link .tooltip {
        display: none;
    }

    .bottom_shield {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0px;
        padding: 0 20px;
        height: 0px;
        background: var(--color-default);
        color: var(--color-primary);
        border-radius: 0px;
        font-family: 'Aeroport', sans-serif !important;
        font-weight: 300;
        font-size: 12px;
        line-height: 140%;
        font-weight: 300;
        justify-content: center;
        align-items: center;
        gap: 20px;
        overflow: hidden;
        opacity: 0;
        z-index: 3001;
        transition:  all .4s linear;
        -webkit-transition: all .4s linear; 
        border-top: solid 1px #F2F1F0;

        & .bottom_shield_content {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        & .tooltip__content {
            display: flex;
            flex-direction: column;
            gap: 2px;
            width: calc(100% - 70px);
        }

        & .tooltipLine {
            display: flex;
            gap: 20px;
            width: 100%;
            align-items: center;
        }

        & h4 {
            margin: 0;
            font-size: 14px;
            font-weight: 700;
        }

        & p {
            margin: 0;
        }

        & * {
            white-space: nowrap;
        }

        & .close_shield {
            position: absolute;
            right: 10px;
            top: 10px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            & svg {
                width: 14px;
                height: 14px;
                fill: var(--color-primary);
            }
        }
    }

    .bottom_shield.open {
        height: 100px;
        opacity: 1;
    }

    .bottom_shield.two_tooltip.open {
        height: 158px;
        opacity: 1;
    }

    .bottom_shield .tooltip__line {
        position: absolute;
        top: 10px;
        left: 50%;
        width: 60px;
        height: 5px;
        background-color: var(--color-grey);
        border-radius: 53px;
        transform: translateX(-50%);
    }

    .bottom_shield--full {
        position: fixed;
        display: block;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0px;
        height: 0px;
        overflow: hidden;
        background: #000000B2;
        opacity: 0;
        z-index: 3000;
        transition:  opacity ease 0.2s; 
        -webkit-transition: opacity ease 0.2s; 
    }
    .bottom_shield--full.open {
        height: 100dvh;
        opacity: 1;
    }
}

.ia-favorite {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ia-favorite svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-dark-grey);
    fill: transparent;
}

.ia-favorite.is-active svg {
    fill: var(--color-dark-grey);
}


/* карточка товара */

.ia-card {
    width: 100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.ia-card.card-openTooltip {
    z-index: 50;
}

.ia-card * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
}

.catalog-grid .catalog-card.ia-card:hover {
    box-shadow: none;
}

.ia-card .catalog-card__image {
    border-radius: var(--border-radius-default);
    overflow: hidden;
    z-index: 1;
    padding: 26px 21px;
}

.ia-card .catalog-card__image.is-not-available {
    & img {
        opacity: .3;
    }
}

.ia-card .ia-favorite {
    top: 10px !important;
    right: 10px !important;
}

.ia-card .catalog-card__image-box {
    padding-top: 127.3%;
    margin-bottom: 12px;
}

.ia-card--section .catalog-card__image-box {
    padding-top: 132%;
}

.ia-card_info-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 104px;
    overflow: hidden;
}

.ia-card__section {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-secondary);
}

.ia-card .catalog-card__name {
    margin-bottom: 0;
    font-family: 'Aeroport', sans-serif !important;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.ia-card .catalog-card__info {
    margin: 0 0 12px;
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    color: var(--color-secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.ia-card__available {
    margin-top: auto;
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
    color: var(--color-secondary);
}

.ia-card .catalog-card__price-block {
    margin-top: 3px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: max-content;
    max-width: 100%;
    flex-direction: row;
    gap: 5px;
}

.ia-card .catalog-card__availability {
    font-size: 12px;
    color: var(--color-secondary);
}

.ia-card .catalog-card__price {
    position: relative;
    bottom: 0;
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    color: var(--color-accent);
    display: flex;
    align-items: end;
    gap: 5px;
}

.ia-card .catalog-card__price.is-sale {
    color: var(--color-red);
}

.ia-card .catalog-card {
    padding: 10px 10px 20px;
}

.ia-card .js-cart-wrap {
    margin-top: 15px;
    width: 100%;
    position: relative;
    height: 42px;
    opacity: 0;
    z-index: -1;
    transition: var(--transition-default)
}


.ia-card .js-cart-wrap:has(.js-product__cart-counter[style='display: block;']) {
    opacity: 1;
    z-index: 0;
}

.ia-slider {
    & .ia-card .js-cart-wrap {
        opacity: 1;
        z-index: 0;
    }

    & .ia-card .product__cart-button-disabled {
        opacity: 1;
        z-index: 0;
    }
}

.ia-box {
    & .ia-card .js-cart-wrap {
        opacity: 1;
        z-index: 0;
    }
    
}

.ia-card:hover .js-cart-wrap {
    opacity: 1;
    z-index: 1;
}

.ia-card .product__cart-button {
    width: 100%;
    margin: 0 0 0 0;
}

.ia-card .product__cart-button.disabled {
    opacity: .5;
    pointer-events: none;
}

.ia-card .product__cart-button--disabled {
    margin-top: 15px;
}

.ia-card .product__cart-counter-container {
    width: 100% !important;
}

.ia-card .product-counter {
    border-radius: var(--border-radius-image);
    background: var(--color-surface-grey);
    padding: 2px;
    justify-content: space-between;
    align-items: stretch;
    border: none;
}

.ia-card .product-counter__btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--border-radius-btn);
    appearance: none;
    flex: none;
    transition: var(--transition-default);
}

.ia-card .product-counter__btn.is-plus {
    background: var(--color-primary);
}

.ia-card .product-counter__btn.is-minus {
    background: transparent;
}

.ia-card .product-counter__btn.is-plus.disabled {
    opacity: .5;
    pointer-events: none;
}

.ia-card .product-counter__btn.is-minus.disabled {
    opacity: .5;
    pointer-events: none;
}

.ia-card .product-counter__btn.is-plus:active,
.ia-card .product-counter__btn.is-minus:active {
    background: var(--color-accent);
}

.ia-card .product-counter__btn svg {
    fill: var(--color-primary);
    width: 24px;
    height: 24px;
}

.ia-card .product-counter__btn.is-plus svg {
    fill: var(--color-default);
}

.ia-card .js-product__cart-counter input,
.catalog-grid.is-main .ia-card .js-product__cart-counter input {
    background: var(--color-default);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    flex-basis: 60px;
    margin: 0 3px;
    border-radius: var(--border-radius-btn);
}

.ia-card:has(.catalog-card__price-old) .catalog-card__price {
    color: var(--color-red);
    /* width: 100%; */
}

.ia-card .catalog-card__price-old {
    color: var(--color-dark-grey);
    font-weight: 300;
    font-size: 12px;
    line-height: 140%;
}

.ia-card .product__cart-button-disabled {
    width: 100%;
    min-width: 100%;
    margin-top: 15px;
    background: var(--color-dark-grey);
    position: relative;
    opacity: 0;
    z-index: -1;
    transition: var(--transition-default);
    cursor: pointer;
}

.ia-card:hover .product__cart-button-disabled {
    opacity: 1;
    z-index: 1;
}

@media screen and (max-width: 1024px) {

    .ia-card .product__cart-button-disabled,
    .ia-card .js-cart-wrap {
        opacity: 1;
        z-index: 1;
    }
}

@media screen and (max-width: 550px) {

    .ia-card .catalog-card__image {
        padding: 10px 29px;
    }

    .ia-box--set .ia-card .catalog-card__image {
        padding: 5px 10px;
    }

    .ia-card .catalog-card__info {
        margin-bottom: 10px !important;
    }
}

/* Селекторы */

.selector {
    position: relative;
}

.selector__header {
    font-family: 'Aeroport', sans-serif;
    display: flex;
    align-items: center;
    padding: 0 0 0 0;
    gap: 4px;
    cursor: pointer;
}

.selector__body {
    display: none;
    font-family: 'Aeroport', sans-serif;
    z-index: 150;
    width: max-content;
    right: 0;
    max-height: 24rem;
    position: absolute;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: var(--border-radius-image);
    box-shadow: 0px 4px 15px 0px #00000017;
    padding: 20px 28px 20px 20px;
}

.selector__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 0 0;
}

.selector__list-item {
    font-size: 14px;
    color: var(--color-secondary);
}

.selector__arrow-icon svg {
    transition: var(--transition-default);
}

.is-open .selector__body {
    display: block;
}

.is-open .selector__arrow-icon svg {
    transform: rotate(-180deg);
}

/* кнопки */
.ai-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--border-radius-btn);
    padding: 0 16px;
    min-height: 32px;
    line-height: 1;
    background-color: var(--color-surface-grey);
    color: var(--color-primary);
    transition: var(--transition-default);
    white-space: nowrap;
    font-family: 'Aeroport', sans-serif;
    cursor: pointer;

    & svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    & svg path {
        fill: var(--color-primary);
        transition: var(--transition-default);
    }

    & svg *.stroke-type {
        fill: transparent;
        stroke: var(--color-primary);
        transition: var(--transition-default);
    }
}

.ai-button-transparent {
    background-color: transparent;
    border: solid 1px var(--color-primary);
}

.ai-button-medium {
    border-radius: var(--border-radius-btn-big);
    min-height: 40px;
    min-width: 40px;
}

.ai-button-big {
    border-radius: var(--border-radius-btn-big);
    min-height: 42px;
}

.ai-button:hover {
    background-color: var(--color-accent-light);
    color: var(--color-default);

    & svg path {
        fill: var(--color-default);
    }

    & svg *.stroke-type {
        fill: transparent;
        stroke: var(--color-default);
    }
}

.ai-button-transparent:hover {
    background-color: #FBFAF9;
    border: solid 1px var(--color-primary);
    color: var(--color-primary);
}

.ai-button-black {
    background-color: var(--color-primary);
    border: solid 1px var(--color-primary);
    color: var(--color-default);
}

.ai-button-black:hover {
    border-color: var(--color-accent-light);
    color: var(--color-primary);
}


.ai-chips {
    border-radius: var(--border-radius-chips);
    font-size: 14px;
}

.ai-chips.active {
    background-color: var(--color-primary);
    color: var(--color-default);
}

@media screen and (max-width: 767px) {
    .ai-chips {
        font-size: 12px;
        height: 28px;
        min-height: 28px;
        padding: 0 12px;
        border-radius: 14px;
    }
}


/* список товаров в подкаталоге */

.ai-catalog-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 1024px) {
    .ia-catalog-filter-box {
        position: fixed;
        top: 104px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        background: var(--color-default);
        height: 0;
        opacity: 0;
        overflow: hidden;
        transition: var(--transition-easy);

        & .ia-catalog-filter-section {
            padding: 10px 0;
        }
    }

    .ia-catalog-filter-box.scrolled {
        height: 58px;
        opacity: 1;
        z-index: 1000;
        overflow: visible;
    }
}

.ia-catalog-filter-section {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

@media screen and (max-width: 550px) {

    .ia-catalog-filter-section .catalog-sort,
    .ia-catalog-filter-section .catalog-filter-mobile-handler {
        width: calc(50% - 10px);
    }

    .ia-catalog-filter-section .catalog-sort .selector__header {
        width: 100%;
        white-space: normal;
    }
}

.ia-h1_section {
    display: none;
}

@media screen and (max-width: 1024px) {
    .ia-h1_section {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 20px;
        margin-bottom: 40px;
    }
}

.ai-catalog-sort-wrapper .catalog-sort.selector,
.ai-catalog-sort-wrapper .catalog-sort.selector:first-child {
    margin: 0 0 0 0;
}

.ai-catalog-w-sidebar {
    display: grid;
    grid-template-columns: .25fr .75fr;
    gap: 90px;
}

.ai-catalog-w-sidebar * {
    font-family: 'Aeroport', sans-serif;
}

@media screen and (max-width: 1024px) {
    .ai-catalog-w-sidebar {
        display: block;
    }
}


.product-sections {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.section-chips {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.chips-btn {
    border-radius: var(--border-radius-chips);
    border: 2px solid var(--color-grey);
    font-size: 14px;
    cursor: pointer;
    background-color: var(--color-default);
    color: var(--color-primary);
    display: none;
}

.chips-btn.is-show {
    display: flex;
}

.chips-btn:hover {
    border: 2px solid var(--color-accent);
    background-color: var(--color-accent);
}

.section-chips {
    & .ai-chips.is-hide-chips {
        display: none;
    }
}

.section-chips.is-showed {
    & .ai-chips.is-hide-chips {
        display: flex;
    }
}

@media screen and (max-width: 1024px) {
    .chips-btn {
        display: none !important;
    }

    .section-chips {
        padding: 0 20px;
        flex-wrap: nowrap;
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;

        & .ai-chips.is-hide-chips {
            display: flex;
        }
    }

    .section-chips::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .section-chips__wrapper {
        overflow: hidden;
        width: calc(100% + 40px);
        margin: 0 -20px;
    }
}

@media screen and (max-width: 767px) {
    .section-chips {
        gap: 10px;
        margin-bottom: 34px;
    }
}

.catalog-grid.ia-catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 21px;
    margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
    .catalog-grid.ia-catalog-grid {
        gap: 24px 20px;
    }
}

@media screen and (max-width: 400px) {
    .catalog-grid.ia-catalog-grid {
        gap: 24px 12px;
    }
}

.catalogBanner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    border-radius: 30px;
    background-color: var(--color-primary);
    position: relative;

    & .catalogBanner__image {
        position: absolute;
        right: 60%;
        width: auto;
        min-height: 100%;
        min-width: 40%;
    }

    & .catalogBanner__imageGradient {
        position: absolute;
        right: 60%;
        width: 20%;
        height: 100%;
        background: linear-gradient(90deg, rgba(4, 4, 4, 0) 0%, #171717 97.67%);
    }

    & .catalogBanner__content {
        position: relative;
        margin-left: 40%;
        padding: 32px;
        display: flex;
        min-height: 276px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        font-family: 'Aeroport', sans-serif;
        color: var(--color-default);
        font-size: 16px;
        z-index: 3;

        & h3 {
            font-size: 40px;
        }
    }
}

.catalogBannerMobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .catalogBannerMobile {
        display: flex;
    }

    .catalogBannerDesktop {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .catalogBannerMobile {
        display: none;
    }

    .catalogBannerDesktop {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    .catalogBanner {
        border-radius: 26px;

        & .catalogBanner__content {
            padding: 20px;
            min-height: 160px;
            gap: 0px;
            font-size: 14px;

            & h3 {
                font-size: 30px;
            }
        }
    }

    .catalogBannerMobile {
        display: flex;
    }

    .catalogBannerDesktop {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .catalogBanner {
        border-radius: 20px;

        & .catalogBanner__content {
            padding: 20px;
            min-height: 160px;
            gap: 0px;
            font-size: 12px;
            z-index: 3;

            & h3 {
                font-size: 24px;
            }
        }
    }
}

.catalog-grid.ia-catalog-grid .ia-card {
    padding: 0 0 0 0;
    width: calc(33.3% - 14px);

    @media screen and (max-width: 1200px) {
        width: calc(50% - 11px);
    }

    @media screen and (max-width: 1024px) {
        width: calc(33.3% - 14px);
    }

    @media screen and (max-width: 767px) {
        width: calc(50% - 10px);
    }

    @media screen and (max-width: 400px) {
        width: calc(50% - 6px);
    }

    @media screen and (max-width: 380px) {
        width: 100%;
    }
}


.catalog-grid.ia-catalog-grid .ia-card .js-product__cart-counter {
    background: transparent;
}

.ai-seo_text_wrap,
.seo_text_wrap {
    & * {
        font-family: 'Aeroport', sans-serif;
    }

    h2 {
        margin-bottom: 15px;
        font-size: 20px;
    }
}

/* список товаров в подкаталоге End */

/* хлебные крошки */
.breadcrumbs,
.breadcrumbs * {
    font-family: 'Aeroport', sans-serif;
}

/* пагинация */
.ai-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 20px;
    font-family: 'Aeroport', sans-serif;
}

.ai-pagination * {
    font-size: 14px;
    font-family: 'Aeroport', sans-serif;
}

.ai-pagination__pages {
    display: flex;
    align-items: center;
    column-gap: 20px;
    row-gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-pagination__pages a {
    color: var(--color-dark-grey);

    &:hover {
        color: var(--color-accent);
    }

    &.is-current {
        color: var(--color-primary);
        cursor: default;

        &:hover {
            color: var(--color-primary);
        }
    }

}

.ai-pagination__button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    flex: none;

    & svg {
        width: 16px;
        height: 16px;
        fill: var(--color-primary);
    }

    &:hover {
        color: var(--color-accent);

        & svg {
            fill: var(--color-accent);
        }
    }
}

.seo-block * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
}

.seo-block__box {
    border-radius: var(--border-radius-max);
    overflow: hidden;
}

.seo-block img {
    object-fit: cover;
}

.seo-block__box .button {
    box-sizing: border-box;
    appearance: none;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--color-default) !important;
    padding: 13px 30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    color: var(--color-default) !important;
    width: max-content;
    min-width: 158px;
    transition: var(--transition-default);
}

.seo-block__box .seo-block__box-title {
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
}

.seo-block__box .seo-block__box-description {
    width: 80%;
    margin-bottom: 0;
    line-height: 140%;
    font-size: 16px;
    min-height: 11rem;
}

.seo-block__box-title {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 40px;
    line-height: 120%;
    font-style: normal;
}

.section .ia-brands {
    margin-bottom: 85px;
}

.ia-brands .container {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.ia-brands h3 {
    font-family: 'Aeroport', sans-serif;
    letter-spacing: 0;
    font-weight: 300;
    font-size: 40px;
    line-height: 120%;
    font-style: normal;
    text-align: center;
}

.ia-brands .brands-section__slider {
    position: relative;
    padding: 0;
    width: calc(100% + 40px);
    margin: 0 -20px;
}


.ia-brands .brands-section__slider-item img {
    filter: none;
}

.ia-brands .brands-section__slider .swiper-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-default);
    cursor: pointer;
    position: absolute;
}

.ia-brands .brands-section__slider .swiper-button-disabled {
    pointer-events: none;

    & svg {
        fill: var(--color-dark-grey);
    }
}

.ia-brands .brands-section__slider .swiper-arrow-prev {
    right: 88px;
    left: auto;
    top: -36px
}

.ia-brands .brands-section__slider .swiper-arrow-next {
    right: 20px;
    top: -36px
}

.brands-section .swiper-wrapper .swiper-slide {
    padding: 15px;
}

.brands-section .swiper-wrapper .swiper-slide a {
    padding: 12px 20px;
    width: 100%;
    aspect-ratio: 1.42 / 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-default);
    border-radius: 12px;
    box-shadow: 0px 4px 15px 0px #00000017;
    overflow: hidden;
}

.image-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    font-family: 'Aeroport', sans-serif !important;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-accent);
}

.image-brand-logo.no-photo {
    /* background: url('/local/templates/new_main/css/../img/brands/no_photo.png') center center no-repeat;
    background-size: 40% 40%; */
    color: var(--color-primary);
}


.brands-section .swiper-wrapper .swiper-slide a img {
    filter: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}




@media screen and (max-width: 780px) {

    .section .ia-brands {
        margin-bottom: 37px;
    }

    .ia-brands .container {
        gap: 19px;
        overflow: hidden;
    }

    .ia-brands .brands-section__slider {
        display: block;
        width: 80%;
        margin: 0 20% 0 0;
        transition: margin 0.8s ease;
    }

    .brands-section__slider .swiper {
        overflow: visible;
    }

    .brands-section .swiper-wrapper .swiper-slide {
        padding: 20px 6px;
    }

    .ia-brands .brands-section__slider .swiper-arrow {
        display: none;
    }
}

@media screen and (max-width: 500px) {

    .ia-brands h3 {
        font-size: 30px;
    }

    .ai-pagination__pages {
        column-gap: 12px;
    }
}




.ia-text-img * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
}

.ia-text-img .text-block-w-image {
    max-width: 100%;
}

.ia-text-img .text-block-w-image__image {
    border-radius: var(--border-radius-max);
    overflow: hidden;
}

.ia-text-img .text-block-w-image__content {
    border-radius: var(--border-radius-max);
}

.ia-text-img .text-block-w-image__title {
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
    font-style: normal;
}

.ia-text-img .text-block-w-image__description {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 0;
}


.advantages {
    margin-top: 33px;
    padding-bottom: 5px;
}

.advantages * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
}

.advantages-item__text {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
}

.b-section {
    margin-top: 2.4rem;
}

.ia-box * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    font-weight: 300;
}

.ia-box .slider-title {
    font-size: 40px;
    line-height: 120%;
    font-style: normal;
}

.ia-box .block-w-slider__content {
    width: 36%;
    border-radius: var(--border-radius-max);
    overflow: hidden;
}

.ia-box .block-w-slider__content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--image-gradient);
    z-index: 0;
}

.ia-box .block-w-slider-img {
    height: 100%;
}

.ia-box .block-w-slider__content-title {
    position: relative;
    margin-bottom: 8px;
    z-index: 1;
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

.ia-box .block-w-slider__content-description {
    position: relative;
    margin-bottom: 25px;
    width: 87%;
    z-index: 1;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
}

.ia-box .block-w-slider__content .ia-btn {
    position: relative;
    z-index: 1;
    width: max-content;
    min-width: 225px;
    margin-left: 34px;
    margin-bottom: 34px;
}

.ia-box .block-w-slider__slider {
    width: 57%;
    position: relative;
}

.ia-box .block-w-slider__slider .swiper {
    width: calc(100% - 100px);
    /* padding-bottom: 2.8rem; */
}

.ia-box .block-w-slider__slider .swiper-arrow {
    top: 50%;
}

.ia-box .swiper-arrow-next {
    right: 0;
}

.ia-box .swiper-arrow-prev {
    left: 0;
}

.ia-box .ia-card .catalog-card__image-box {
    margin-bottom: 8px;
    padding-top: 130.5%;
}

.ia-box .ia-card__section {
    margin-bottom: 2px;
}

.ia-box .ia-card_info-box {
    min-height: 132px;
}


.ia-box .ia-card .catalog-card__price {
    font-size: 16px;
}

.ia-box .ia-card .js-cart-wrap {
    margin-top: 9px;
}

.ia-box .block-w-slider__slider .swiper-pagination {
    width: calc(100% - 20px);
    left: 10px;
    border-radius: var(--border-radius-btn);
}

.ia-box .block-w-slider__slider .swiper-pagination .swiper-pagination-progressbar-fill {
    border-radius: var(--border-radius-btn);
}

.ia-box .catalog-card {
    height: 100%;
}

.ia-box--set .ia-card .catalog-card__image-box {
    padding-top: 133.5%;
    margin-bottom: 9px;
}

.ia-box--set .ia-card .catalog-card__info {
    font-size: 14px;
}

.ia-box--set .ia-card .ia-btn {
    margin-top: auto;
    width: 100%;
    padding: 13px;
}

.ia-box--set .ia-card {
    height: 100%;
}

.ia-box--set .ia-card_info-box {
    min-height: 142px;
}

.ia-box--set .ia-card .catalog-card__name {
    font-size: 20px;
    line-height: 120%;
}

.ia-box--set .block-w-slider__slider .swiper {
    padding-bottom: 3.7rem;
}

.ia-box--set .block-w-slider__content .block-w-slider__content-description {
    margin-bottom: 40px;
    padding: 0 40px;
}

.ia-box--set .block-w-slider__content .block-w-slider__content-title {
    padding: 0 40px;
    font-weight: 300;
    font-size: 30px;
    line-height: 120%;
}

.footer * {
    font-family: 'Aeroport', sans-serif;
    letter-spacing: 0;
    line-height: 140%;
}

footer.footer {
    position: relative;
    z-index: 101;
    background-color: var(--color-default);
}

.footer__menu-box-title {
    font-size: 14px;
    color: var(--color-accent);
}

.footer__wrapper {
    padding: 7.2rem 0 5rem;
}

.footer__menu-box-list a {
    margin-bottom: 6.5px;
    font-size: 14px;
}

.footer__menu-box-list div {
    font-size: 14px;
}

.footer__menu-box-item {
    font-size: 14px;
    margin-bottom: 6.5px;
}

.footer__wrapper .area-8 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer__notification {
    font-size: 12px;
    padding: 65px 0 85px 0;
    border-top: 1px solid #171717;
}

.footer__notification p {
    text-align: left !important;
    margin-bottom: 20px;
}

.footer__notification p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 500px) {
    .footer__notification p {
        margin-bottom: 12px;
    }
}

.footer-map {
    bottom: 10.5%;
}

.footer-map__text {
    font-size: 14px;
}

.footer-map iframe {
    border-radius: var(--border-radius-image);
    overflow: hidden;
}

.subscripbe-form__notification {
    font-size: 14px;
    margin-top: 1.9rem;
}

.subscripbe-form {
    margin-bottom: 2.5rem;
}

.subscripbe-form .ia-single-input {
    width: 97%;
}

.subscripbe-form__notification a {
    text-decoration: none;
}

.ia-single-input {
    display: flex;
    align-items: center;
    height: 42px;
    border-radius: var(--border-radius-btn);
    overflow: hidden;
}

.ia-single-input input {
    appearance: none;
    font-size: 14px;
    height: 42px !important;
    border: none !important;
    background: var(--color-surface-grey);
    border-top-left-radius: var(--border-radius-image);
    border-bottom-left-radius: var(--border-radius-image);
    overflow: hidden;
}

.ia-single-input button {
    height: 42px;
    padding: 13px 18px;
    border-radius: 0;
    border-top-right-radius: var(--border-radius-image) !important;
    border-bottom-right-radius: var(--border-radius-image) !important;
    border: none;
    background: var(--color-primary);
    color: var(--color-default);
}

.ia-single-input input::placeholder {
    color: var(--color-dark-grey);
}

.ia-single-input input.good {
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius-image);
}

.ia-single-input input.err {
    border: 1px solid var(--color-red);
    border-radius: var(--border-radius-image);
}

@media screen and (max-width: 1280px) {
    .seo-block__box {
        height: 600px !important;
    }

    .ia-box .block-w-slider__slider .swiper {
        width: 100%;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-prev {
        left: -32px;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-next {
        right: -32px;
    }

}

@media screen and (max-width: 1200px) {
    .subscripbe-form .ia-single-input {
        width: 100%;
    }

    .footer-map iframe {
        height: 100%;
        min-height: 200px;
    }

    .footer__wrapper .area-8 {
        margin-top: 33px;
    }
}

@media screen and (max-width: 1024px) {
    .ia-box .block-w-slider__slider .swiper-arrow {
        display: flex;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-prev {
        right: auto;
        left: -32px;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-next {
        right: -32px;
    }

    .ia-box .swiper-arrow svg {
        width: 16px;
        height: 16px;
    }

    .ia-box .block-w-slider__slider {
        margin-top: 0;
    }

    .ia-box .ia-card .catalog-card__name {
        font-size: 16px;
    }

    .ia-box--set .block-w-slider__slider .swiper {
        width: 100%;
    }

    .ia-box--set .ia-card .catalog-card__name {
        font-size: 16px;
    }

    .ia-paristore-choise .paristore-choise__card-info {
        padding: 4.3rem 1rem;
    }
}

@media screen and (max-width: 992px) {
    .ia-box .block-w-slider__content {
        width: 100%;
        padding: 0;
    }

    .ia-box .block-w-slider__slider {
        width: 100%;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-next {
        right: 0;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-prev {
        left: 0;
    }

    .ia-box .block-w-slider__slider .swiper-pagination {
        display: none;
    }
}

@media screen and (max-width: 780px) {
    .section {
        margin-bottom: 52px;
    }

    .ia-card .catalog-card__image-box {
        padding-top: 115.3%;
        margin-bottom: 13px;
    }

    .ia-card--section .catalog-card__image-box {
        padding-top: 105%;
        margin-bottom: 8px;
    }

    .ia-card_info-box {
        min-height: 96px;
        gap: 4px;
    }

    .ia-card__section {
        font-size: 12px;
        line-height: 1.2;
    }

    .ia-card .catalog-card__name {
        font-size: 14px;
        line-height: 140%;
    }

    .ia-card .catalog-card__price {
        font-size: 14px;
    }

    .ia-card .product-counter {
        height: 42px;
    }

    .ia-card .js-cart-wrap {
        margin-top: 10px;
    }

    .ia-card--section .js-cart-wrap {
        margin-top: 10px;
    }

    .ia-card .product__cart-button--disabled {
        margin-top: 10px;
    }

    .ia-card .catalog-card__price-block {
        /* flex-direction: column; */
        width: 100%;
        gap: 2px;

        & span {
            margin: 0;
        }
    }

    .ia-card .catalog-card__price-old {
        margin: 5px 0 -4px;
    }

    .ia-card .product__cart-button {
        font-size: 14px !important;
        width: 100% !important;
    }

    
    .ia-card .product__cart-button-disabled {
        padding: 13px 5px;
        margin-top: 10px;
    }

    .ia-paristore-choise--first {
        margin-bottom: 2.6rem;
    }

    .ia-paristore-choise .paristore-choise__card-info {
        padding: 40px 30px;
    }

    .advantages {
        padding-bottom: 0;
    }

    .ia-box .ia-card .catalog-card__name {
        font-size: 14px;
    }

    .ia-box .ia-card .js-cart-wrap {
        margin-top: 10px;
    }

    .ia-box .ia-card .js-cart-wrap {
        margin-top: 10px;
    }

    .ia-box .ia-card .catalog-card__image-box {
        padding-top: 115.3%;
        margin-bottom: 14px;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-next {
        right: -20px;
    }

    .ia-box .block-w-slider__slider .swiper-arrow-prev {
        display: none;
    }

    .ia-box--set .ia-card .catalog-card__image-box {
        padding-top: 121%;
        margin-bottom: 14px;
    }

    .ia-box--set .ia-card_info-box {
        gap: 14px;
        min-height: 104px !important;
    }

    .ia-box--set .ia-card .ia-btn {
        font-size: 14px;
    }

    .ia-box--set .ia-card .catalog-card__name {
        font-size: 14px;
    }

    .ia-box .ia-card_info-box {
        min-height: 96px;
    }

    .ia-card .catalog-card__info {
        font-size: 12px !important;
        max-height: 38px;
        overflow: hidden;
    }

    .ia-box--set .ia-card .catalog-card__info {
        font-size: 12px !important;
        max-height: none;
    }

    .ia-slider .ia-card .catalog-card__info {
        margin-top: 2px;
    }
/* 
    .is-main .ia-card .catalog-card__info {
        margin-top: 2px;
    } */

    .is-main .ia-card .catalog-card__price-block {
        margin-top: 4px;
    }

    .ia-box--set .block-w-slider__slider .swiper {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 600px) {

    .seo-block {
        gap: 2rem;
    }

    .seo-block__box {
        height: 426px !important;
    }

    .seo-block__box .seo-block__box-description {
        width: 95%;
    }

    .seo-block__box .button {
        width: calc(100% - 60px);
        margin-bottom: 33px !important;
    }

    .ia-box .block-w-slider__content-title {
        margin-bottom: 6px;
        font-size: 20px;
        padding: 0 24px !important;
    }

    .ia-box .block-w-slider__content-description {
        padding: 0 24px !important;
        font-size: 14px;
        width: 100%;
    }

    .ia-box .block-w-slider__content .ia-btn {
        width: 100%;
        max-width: calc(100% - 48px);
        margin-left: 24px;
        margin-bottom: 24px;
    }

    .ia-box .block-w-slider__slider .swiper {
        padding-bottom: 0;
    }

    .ia-box--set .block-w-slider__content .block-w-slider__content-title {
        padding: 0 38px !important;
    }

    .ia-box--set .block-w-slider__content .block-w-slider__content-description {
        margin-bottom: 38px;
        padding: 0 38px !important;
        font-size: 16px;
    }

    .footer__wrapper {
        padding: 5rem 0;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        padding: 2rem 0 2.5rem;
        grid-template-areas:
            "area-1 area-2"
            "area-1 area-3"
            "area-5 area-6"
            "area-9 area-9"
            "area-8 area-8";
    }

    .footer__wrapper .area-1 {
        grid-area: 1 / 1 / 2 / 3;
    }

    .footer__wrapper .area-8 {
        grid-area: 5 / 1 / 6 / 3;
    }

    .footer__wrapper .area-1-1 {
        grid-area: 2 / 1 / 5 / 2;
    }

    .footer__wrapper .area-2-2 {
        grid-area: 2 / 2 / 5 / 3;
    }

    .footer__wrapper .area-2 {
        grid-area: 2 / 1 / 3 / 2;
    }

    .footer__wrapper .area-5 {
        grid-area: 3 / 2 / 3 / 3;
    }

    .footer__wrapper .area-4 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .footer__wrapper .aera-6 {
        grid-area: 3 / 2 / 4 / 3;
    }

    .footer__wrapper .area-7 {
        grid-area: 4 / 2 / 5 / 3;
    }

    .footer__wrapper .area-3 {
        grid-area: 2 / 2 / 3 / 3;
    }

    .footer__menu-box-title {
        margin-top: 0;
        font-size: 12px;
    }

    .footer__menu-box-list a {
        margin-bottom: 6.2px;
        font-size: 12px;
    }

    .footer__menu-box {
        margin-bottom: 2.2rem;
    }

    .footer__menu-box-list {
        width: 86%;
    }

    .footer .menu_hide_mobile {
        display: none;
    }

    .footer .menu_hide_desc {
        display: block;
    }

    .footer__menu-box-item {
        font-size: 12px;
        margin-bottom: 6.2px;
    }

    .footer__menu-box-list div {
        font-size: 12px;
    }

    .footer-map__text {
        font-size: 12px;
        width: 70%;
        margin-top: 1rem;
    }

    .footer-map {
        gap: 10px;
    }

    .subscripbe-form__notification {
        font-size: 12px;
    }
}

@media screen and (max-width: 500px) {
    .b-section {
        margin-top: 2rem;
    }

    .seo-block__box-title {
        font-size: 30px;
    }

    .ia-choise-slider * {
        font-size: 12px;
    }

    .section-title {
        font-size: 30px;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.3rem;
    }

    .ia-title {
        font-size: 30px;
    }

    .ia-title--section {
        margin-bottom: 40px;
        font-size: 20px;
        text-align: center;
    }

    .ia-subtitle {
        font-size: 20px;
    }

    .ia-card {
        padding: 0;
    }

    .ia-favorite {
        width: 32px !important;
        height: 32px !important;
    }

    .ia-favorite svg {
        width: 32px !important;
        height: 32px !important;
    }


    .advantages {
        gap: 3rem 2.6rem;
        margin-top: 24px;
    }

    .advantages-item__text {
        font-size: 12px;
    }

    .advantages-item__icon {
        margin: 0 0 1.2rem 0;
    }

    .ia-text-img .text-block-w-image__description {
        padding: 0 30px;
    }

    .ia-text-img .text-block-w-image__content {
        padding: 3rem 2rem 3.3rem;
    }

}

@media screen and (hover: hover) {

    .ia-btn:not(.disabled):hover {
        background-color: var(--color-accent) !important;
        color: var(--color-default) !important;
    }

    .ia-btn.disabled:hover {
        opacity: 0.5;
    }

    .ia-btn--white:not(.disabled):hover {
        background-color: var(--color-accent) !important;
        color: var(--color-default) !important;
    }

    .ia-btn--ghost:not(.disabled):hover {
        background-color: var(--color-primary) !important;
        color: var(--color-default) !important;
        border: 1px solid var(--color-primary);
    }

    .seo-block__box .button:hover {
        background: var(--color-primary) !important;
    }

    .ia-card .product-counter__btn.is-plus:not(.disabled):hover,
    .ia-card .product-counter__btn.is-minus:not(.disabled):hover {
        background: var(--color-accent);
    }

    .ia-card .product-counter__btn.is-plus.disabled:hover,
    .ia-card .product-counter__btn.is-minus.disabled:hover {
        opacity: 0.5;
    }

}

/* Header */
.header * {
    font-family: 'Aeroport', sans-serif;
    letter-spacing: 0;
    line-height: 140%;
}

body.header_fixed .header-inner-container {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: white;
    z-index: 1010;
}

.header__top {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    top: 0;
    z-index: 5000;
    background: #171717;
    color: var(--color-default);
    font-size: 14px;
}

.header__top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__top-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.header__top-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.top-menu__link svg {
    width: auto;
    height: 20px;
}

.top-menu__link:hover path {
    stroke: #bb793e;
}

.top-menu__link_text {
    margin-left: 4px;
}

.header__main {
    background: var(--color-default);
}

.header__main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 98px;
    border-bottom: 1px solid #c1bbb7;
}

.header__main-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__main-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__main-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__main-icon-button {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.header__main-icon-button svg {
    width: 24px;
    height: 24px;
    transition: 0.2s;
    fill: var(--color-primary);
}

.header__main-icon-button:hover svg {
    fill: #bb793e;
}

.header__main-icon-button_home {
    display: none;
}

.header__main-icon-button-title {
    display: none;
}

.header__cart-counter {
    position: absolute;
    right: -10px;
}

.header__main-burger {
    display: none;
    cursor: pointer;
    width: 24px;
}

.burger-checkbox {
    position: absolute;
    visibility: hidden;
    left: -9999px;
}

.burger-btn {
    cursor: pointer;
    position: relative;
    border: none;
    background: transparent;
    width: 24px;
    height: 15px;
}

.burger-btn span {
    display: block;
    height: 2px;
    background: #171717;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    transition: 0.15s;
}

.burger-btn::before,
.burger-btn::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: #171717;
}

.burger-btn::before {
    top: 0;
    transition: top .3s .15s, transform .3s;
}

.burger-btn::after {
    bottom: -1px;
    transition: bottom .3s .15s, transform .3s;
}

.burger-checkbox:checked+.burger-btn span {
    opacity: 0;
}

.burger-checkbox:checked+.burger-btn::before {
    top: 8px;
    transform: rotate(45deg);
    transition: top .3s, transform .3s .15s;
}

.burger-checkbox:checked+.burger-btn::after {
    bottom: 5px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
}

.header__main-burger-open-icon {
    display: block;
}

.header__main-burger-close-icon {
    display: none;
}

.header__main-burger.is-active .header__main-burger-open-icon {
    display: none;
}

.header__main-burger.is-active .header__main-burger-close-icon {
    display: block;
}

.header-search {
    width: 440px;
    position: relative;
}

.header-search__form {
    width: 100%;
    display: flex;
    align-items: center;

}

.header-search__form input {
    border: none;
    border-radius: 2px 0 0 2px;
    height: 42px;
    padding: 0 40px 0 16px;
    background-color: #F2F1F0;
    border-radius: var(--border-radius-image);
    width: 100%;
    color: var(--color-primary);
    font-size: 14px;
}

.header-search__form input::placeholder {
    color: #C1BBB7;
}

.header-search__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0, -50%);
}

@media screen and (max-width: 1240px) {
    .header__main-wrapper {
        height: 64px;
    }

    .header__main-left {
        align-items: center;
    }

    .header-search__form input {
        height: 32px;
        font-size: 12px;
    }

    .header__main-logo {
        width: 90px;
        height: auto;
    }

    .header__main-burger {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    .top-menu__callback {
        display: block;
    }

    .header__top-menu .desktop {
        display: none;
    }

    .header__main-wrapper {
        border-bottom: none;
    }

    .header__main {
        border-bottom: 1px solid #c1bbb7;
    }

    .header__main-right {
        gap: 0;
        width: 50%;
    }

    .header__main-buttons {
        position: fixed;
        top: calc(100dvh - 64px);
        background-color: #FFFFFF;
        left: 0;
        right: 0;
        width: 100%;
        height: 64px;
        border-top: solid 1px #F2F1F0;
        gap: 20px;
        justify-content: space-evenly;
        opacity: 1;
        transition: all ease 0.2s;
        -webkit-transition: all ease 0.2s; 
    }

    .header__main-buttons.closed {
        height: 0px;
        overflow: hidden;
        opacity: 0;
        top: 100dvh;
    }

    .header__main-icon-button {
        width: fit-content;
        height: fit-content;
    }

    .header__cart-counter {
        position: absolute;
        right: 50%;
        top: 0px;
        transform: translate(120%, -43%);
    }

    .header__main-icon-button_home {
        display: flex;
        order: 1;
    }

    .header__main-icon-button_basket {
        order: 2;
    }

    .header__main-icon-button_wishlist {
        order: 3;
    }

    .header__main-icon-button_personal {
        order: 4;
    }

    .header__main-icon-button svg {
        transition: 0.2s;
        fill: #717171;
    }

    .header__main-icon-button.active svg,
    .header__main-icon-button:hover svg {
        fill: #BB793E;
    }

    .header__main-icon-button-title {
        display: flex;
        justify-content: center;
        font-size: 12px;
        color: #717171;
    }

    .header__main-icon-button.active .header__main-icon-button-title,
    .header__main-icon-button:hover .header__main-icon-button-title {
        color: #BB793E;
    }

    .header_search_container {
        width: 100%;

        & svg {
            width: 12px;
            height: 12px;
        }
    }

    .header-search__icon {
        right: auto;
        left: 9px;
    }

    .header-search__form input {
        padding: 0 10px 0 28px;
    }

    .header-search {
        width: 100%;
    }
}

@media(max-width: 600px) {
    .header__top {
        font-size: 12px;
    }

    .header__top-menu {
        display: none;
    }

    .header__top-contacts {
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
        flex-direction: row-reverse;
    }

    .header__main-menu.is-open {
        top: 106px !important;
    }
}

@media(max-width: 400px) {
    .header__top {
        font-size: 11px;
    }
}


/* ia detail product */
.tags-notes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-top: 1px solid #c1bbb7;
    padding-top: 30px;
}

.tag-note {
    display: flex;
    white-space: nowrap;
    background-color: #F2F1F0;
    border: none;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 16px;
    font-size: 14px;
    line-height: 1;
    color: var(--color-primary);
    border-radius: 16px;
}

.breadcrumbs-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-bottom: 48px;
    gap: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 140%;
    gap: 6px;
}

.breadcrumbs a {
    display: flex;
    align-items: center;
}

.breadcrumbs a::after {
    content: "/";
    display: block;
    margin-left: 6px;
}

.breadcrumbs a:hover::after {
    color: var(--color-primary);
}

.breadcrumbs .breadcrumbParent:nth-last-child(1) a::after {
    display: none !important;
}

/* .breadcrumbs a:last-of-type::after {
    display: none;
} */

@media(max-width: 1024px) {
    .breadcrumbs-box {
        margin-bottom: 34px;
    }

    .breadcrumbs {
        font-size: 12px;
    }
}

#bx-panel {
    /* #bx-panel.bx-panel-folded { */
    z-index: 1000000 !important;
}

/* header menu */

.header__main-menu {
    justify-content: space-between;
    font-size: 14px;
}

.head-nav>li {
    padding: 0;
}

.menu-item-link {
    padding: 6px;
    display: flex;
    height: 31.5px;
    align-items: center;
}

.gift-menu-item.menu_desktop_version {
    padding: 0 !important;
}

.menu-about {
    display: flex;
    gap: 20px;
    padding-right: 3px;
}

.menu-about a {
    margin-right: 0;
    padding: 6px;
    display: flex;
    height: 31.5px;
    font-weight: 700 !important;
}

@media screen and (max-width: 1280px) {
    .menu-item-link {
        font-size: 13px;
    }
}

@media screen and (min-width: 1241px) {

    .header__bottom {
        padding-bottom: 5px;
    }

    .header__main-wrapper {
        padding-top: 16px;
    }

    .header_search_container {
        margin-right: 30px;
    }

    .header__main-right {
        gap: 0;
    }

    .header-search__icon {
        right: 20px;

        & svg {
            width: 18px;
            height: 18px;
        }
    }
}


.ia-hidden {
    opacity: 0;
    height: 0;
    pointer-events: none;
}

.review-page {
    position: relative;
    margin-bottom: 36px;
    padding-top: 6px;
    display: grid;
    grid-template-columns: 44rem 1fr;
    gap: 13.5rem;
}

.review-page * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0 !important;
    font-weight: 300;
}

.review-page__close {
    position: absolute;
    right: 0;
    top: -70px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    & svg {
        width: 14px;
        height: 14px;
        pointer-events: none;
        fill: var(--color-primary);
        transition: var(--transition-default);
    }
}

.review-page__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.review-page__info {
    margin-bottom: 3rem;
}

.review-page__img {
    aspect-ratio: 1/1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-light);
    border-radius: var(--border-radius-default);
}

.review-page__img img {
    mix-blend-mode: multiply;
    filter: brightness(1.05);
    object-fit: contain;
    object-position: center;
}

.review-page__text {
    display: flex;
    flex-direction: column;
}

.review-page__section {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-secondary);
}

.review-page__name {
    font-size: 20px;
    line-height: 120%;
}

.review-page__body {
    padding-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 22px;
}

.review-page__btn {
    min-width: 100%;
    grid-column: 1 / -1;
}

.review-page__num {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 120%;
}

.review-page__stars {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;

    & svg {
        margin: 0 3px;
        width: 18px;
        height: 18px;
        fill: var(--color-primary);
    }

    & svg._light {
        opacity: .2;
    }

}

.review-page__count {
    font-size: 14px;
    line-height: 140%;
}

.percent__item {
    margin-bottom: 12px;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 140%;
}

.percent__item:nth-last-child(1) {
    margin-bottom: 0;
}

.percent__star {
    margin-left: -3px;
    width: 11px;
    height: 11px;
    fill: var(--color-primary);
}

.percent__line {
    flex-grow: 1;
    height: 2px;
    display: flex;
    background-color: var(--color-dark-grey);
}

.percent__indicator {
    height: 2px;
    display: flex;
    background-color: var(--color-accent);
}

.percent__num {
    flex: none;
    width: 9px;
}

.percent__perc {
    flex: none;
    width: 30px;
}

.review-page__title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 120%;
}

.review-page__title-mob {
    display: none;
    margin-bottom: 23px;
    font-size: 30px;
    line-height: 120%;
}

.review-page__tags {
    margin-bottom: 24px;
}

.tags {
    display: flex;
    gap: 11px;
}

.tags__item {
    box-sizing: border-box;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-primary);
    border-radius: var(--border-radius-default);
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition-default);

    & svg {
        width: 12px;
        height: 12px;
        fill: var(--color-primary);
        transition: var(--transition-default);
    }
}

.tags__item.is-active {
    color: var(--color-default);
    background-color: var(--color-primary);

    & svg {
        fill: var(--color-default);
    }
}

.add-review {
    position: relative;
}

.add-review * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0 !important;
    font-weight: 300;
}

.add-review__close {
    position: absolute;
    right: 0;
    top: -68px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    & svg {
        width: 14px;
        height: 14px;
        pointer-events: none;
        fill: var(--color-primary);
        transition: var(--transition-default);
    }
}

.add-review__wrapper {
    max-width: 1102px;
    margin: 0 auto;
    padding: 4px 0 100px;
    display: grid;
    grid-template-columns: .33fr .58fr 1fr;
    gap: 20px;
}

.add-review__tabs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.add-review__tab {
    display: flex;
    align-items: center;
    transition: var(--transition-default);
    font-size: 16px;
    line-height: 140%;
    color: var(--color-dark-grey);
    cursor: pointer;
}

.add-review__tab:nth-child(1) {
    color: var(--color-primary);

    & .add-review__ind {
        background-color: var(--color-primary);
    }
}

.add-review__tab.is-active {
    color: var(--color-primary);

    & .add-review__ind {
        background-color: var(--color-accent);
    }
}

.add-review__ind {
    margin-right: 10px;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 10px;
    background-color: var(--color-default);
}

.add-review__img {
    margin-bottom: 24px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-light);
    border-radius: var(--border-radius-default);
}

.add-review__img img {
    mix-blend-mode: multiply;
    filter: brightness(1.05);
    object-fit: contain;
    object-position: center;
}

.add-review__info {
    display: flex;
    flex-direction: column;
}

.add-review__section {
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-secondary);
}

.add-review__name {
    font-size: 20px;
    line-height: 120%;
}

.add-review__title {
    font-size: 30px;
    line-height: 120%;
}

.add-review__subtitle {
    margin-top: 10px;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-secondary);
}

.add-review__grade {
    margin-top: 45px;
    display: flex;
    gap: 99px;
}

.add-review__rating {
    display: flex;
    gap: 21px;

    & li {
        cursor: pointer;
    }

    & svg {
        margin: 0 3px;
        width: 17px;
        height: 17px;
        fill: var(--color-primary);
    }

    & svg._light {
        opacity: .2;
    }
}

.add-review__text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 140%;
}

.add-review__num {
    font-size: 40px;
    line-height: 100%;
}

.add-review__btn {
    margin-top: 40px;
    min-height: 48px;
    padding: 13px 41px !important;
    cursor: pointer;
}

.add-review__btn--mob {
    display: none !important;
}

.add-review__comment {
    margin-top: 41px;
    appearance: none;
    font-size: 14px;
    /* height: 48px; */
    border: none;
    background: var(--color-surface-grey);
    border-radius: var(--border-radius-image);
    overflow: hidden;
    color: var(--color-primary);
    width: 100%;
    padding: 12px 16px;
    height: auto;
    overflow: hidden;
    resize: none;
}

.add-review__mirror {
    white-space: pre-wrap;
    visibility: hidden;
    position: absolute;
    z-index: -1;
}

.add-review__textarea {
    position: relative;
}

.add-review__comment.is-error {
    border: 1px solid var(--color-red);
    margin-bottom: 6px;
}

.add-review__error {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    color: var(--color-red);
    display: inline-block;
}

.add-review__comment::placeholder {
    color: var(--color-dark-grey);
}

.add-review__tab-item {
    display: none;
    flex-direction: column;
}

.add-review__tab-item.is-active {
    display: flex;
}

.add-review__separator {
    width: 7px;
    height: 12px;
    fill: var(--color-primary);
    display: none;
}

.add-review__tnx {
    max-width: 431px;
    padding: 4px 0 100px;
    margin: 0 auto;
    text-align: center;

    & h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 120%;
    }

    & span {
        font-size: 16px;
        line-height: 140%;
    }
}

@media screen and (min-width: 1024px) and (hover: hover) {
    .tags__item:hover {
        color: var(--color-default);
        background-color: var(--color-primary);

        & svg {
            fill: var(--color-default);
        }
    }

    .review-page__close:hover {
        & svg {
            fill: var(--color-accent);
        }
    }

    .add-review__close:hover {
        & svg {
            fill: var(--color-accent);
        }
    }

    .add-review__tab:hover {
        color: var(--color-primary);
    }
}

.add-review-container:not(.is-success) {
    & .add-review__slider {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .review-page {
        gap: 4.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .review-page {
        grid-template-columns: 1fr;
    }

    .review-page__head {
        display: none;
    }

    .review-page__title {
        display: none;
    }

    .review-page__title-mob {
        display: block;
    }

    .review-page__tags {
        padding-bottom: 4px;
        margin-bottom: 20px;
        overflow: hidden;
        width: calc(100vw - 20px);
        margin-right: -20px;
    }

    .review-page__filter {
        overflow: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* scrollbar-width: thin;
        scrollbar-color: #17171700; */
    }

    .review-page__filter::-webkit-scrollbar-thumb {
        background: #17171700;
    }

    .review-page__filter::-webkit-scrollbar {
        display: none;
    }

    .review-page__info {
        margin-bottom: 0;
    }

    .tags {
        width: max-content;
        padding-right: 20px;
    }

    .add-review__wrapper {
        height: 100%;
        padding: 36px 0 20px;
        display: flex;
        flex-direction: column;
        gap: 36px;
    }

    .add-review__tnx {
        padding: 0 0 20px;
    }

    .add-review__separator {
        display: block;
    }

    .add-review__tabs {
        flex-direction: row;
        gap: 18px;
        align-items: center;
    }

    .add-review__tab {
        font-size: 14px;
    }

    .add-review__tab.is-active {
        color: var(--color-accent);
    }

    .add-review__ind {
        display: none;
    }

    .add-review__product {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 2.7fr;
    }

    .add-review__img {
        margin-bottom: 0;
        border-radius: var(--border-radius-image);
        aspect-ratio: 1/1.15;
    }

    .add-review__info {
        margin-top: 0;
    }

    .add-review__section {
        margin-bottom: 0;
        font-size: 14px;
    }

    .add-review__title {
        font-size: 20px;
    }

    .add-review__subtitle {
        margin-top: 12px;
    }

    .add-review__grade {
        margin-top: 72px;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .add-review__rating {
        gap: 24px;

        & svg {
            width: 22px;
            height: 22px;
        }
    }

    .add-review__text {
        margin-top: 24px;
    }

    .add-review__btn {
        margin: auto 0 0;
        width: 100% !important;
    }

    .add-review__btn--mob {
        margin: 10px 0 0;
        display: flex !important;
    }

    .add-review-container:not(.is-success) {
        background-color: var(--color-default);
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        z-index: 9999;
    }

    .add-review__content {
        height: 100%;
    }

    @supports (-webkit-touch-callout: none) {
        .add-review-container {
            height: -webkit-fill-available;
        }
    }

    .add-review {
        height: 100%;
        overflow: auto;
    }

    .add-review-container.is-success {
        & .add-review {
            overflow: visible;
        }
    }

    .add-review__body {
        flex-grow: 1;
    }

    .add-review__tab-item {
        height: 100%;
    }

    .add-review__close {
        top: 34px;
    }

    .add-review__comment {
        margin-top: 12px;
    }

    .add-review-container.is-success .add-review__close {
        top: -56px;
    }

    .review-page__close {
        top: -53px;
    }

}

@media screen and (max-width: 780px) {
    .review-page {
        padding-top: 0;
    }

    .review-page__body {
        padding-top: 0;
    }

    .add-review-container.is-success .add-review__close {
        top: -55px;
    }
}

@media screen and (max-width: 550px) {

    .review-page {
        gap: 3.4rem;
    }

    .review-page__title-mob {
        font-size: 20px;
    }

    .review-page__body {
        grid-template-columns: 0.8fr 1fr;
    }

    .review-page__stars {
        margin-bottom: 14px;
        gap: 5px;

        & svg {
            width: 11px;
            height: 11px;
        }
    }

    .percent__star {
        margin-left: -5px;
        margin-right: 3px;
    }

    .review-page__close {
        top: 0;
    }

    .add-review__tnx {
        padding: 0 0 30px;
        max-width: 70%;

        & h2 {
            font-size: 20px;
            margin-bottom: 24px;
        }

        & span {
            font-size: 14px;
        }
    }

    .add-review-container .ia-rev-slider .ia-title {
        font-size: 20px;
    }
}

.ia-rev-slider {
    & .ia-card {
        padding: 0;
        height: 100%;
    }

    & .ia-card .catalog-card__info {
        font-size: 14px;
    }

    & .ia-card__available {
        margin-top: auto;
    }

    & .ia-card__section {
        margin-bottom: 2px;
    }

    & .ia-card_info-box {
        min-height: 110px;
    }

    & .swiper-button-disabled {
        display: flex;

        & svg {
            fill: var(--color-dark-grey);
        }
    }

    & .swiper-arrow-next {
        right: 0;
    }

    & .swiper-arrow-prev {
        left: auto;
        right: 7rem;
    }

    & .ia-card .catalog-card__image-box {
        padding-top: 118.5%;
        margin-bottom: 12px;
    }

    /* & .ia-card .catalog-card__info {
        aspect-ratio: 8 / 1;
    } */

    & .swiper-wrapper .swiper-slide {
        height: auto;
    }
}

.ia-rev-slider__title {
    margin-bottom: 24px;
    position: relative;
    padding: 0 11rem;
    text-align: center;
}

.product-container .section {
    margin-bottom: 7.5rem;
}

@media screen and (max-width: 1024px) {
    .ia-rev-slider {
        & .ia-title {
            font-size: 30px;
        }
    }
}

@media screen and (max-width: 780px) {

    .ia-rev-slider {
        width: calc(100% + 20px);
        overflow: hidden;

        & .swiper {
            width: 114%;
        }

        .swiper-arrow {
            display: none;
        }

        & .ia-card .catalog-card__image-box {
            padding-top: 121.5%;
        }

        & .ia-card .catalog-card__info {
            /* margin-top: 2px; */
            font-size: 12px;
        }

        & .ia-card_info-box {
            min-height: 96px;
        }

        .ia-card .catalog-card__price-block {
            flex-direction: row;
        }

        & .ia-card__section {
            margin-bottom: 0;
        }

    }

    .product-container .section {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 550px) {

    .ia-rev-slider__title {
        padding: 0 40px 0 20px;
    }
}

.awards__items--block-product {
    right: 12px;
}

@media screen and (max-width: 569px) {

    .awards__item-product b,
    .awards__item-product strong {
        margin-top: 0;
    }

    .awards__item-product {
        font-size: 5px;
    }
}

.ia-container {
    margin: 0 auto;
    max-width: 1140px;
    padding: 0 40px;
}

.ia-container--max {
    max-width: 1360px;
}

.ia-promo {
    padding-top: 6px;
}

.ia-promo * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    word-break: break-word;
}

.ia-banner {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius-max);
}

.ia-banner__info {
    position: relative;
    z-index: 1;
    flex-basis: 61.5%;
    background-color: var(--color-primary);
    color: var(--color-default);
    padding: 49px 80px 49px 89px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 340px;
}

.ia-banner__desc {
    width: 95%;
    font-size: 16px;
    line-height: 140%;
}

.ia-banner__info::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    width: 10rem;
    background: linear-gradient(90deg, rgba(4, 4, 4, 0) 0%, #171717 97.67%);
}

.ia-banner__img {
    position: relative;
    flex-basis: 38.5%;
    display: flex;
}

.ia-banner__img img {
    position: absolute;
    object-fit: cover;
    /* object-position: center; */
    object-position: top;
    width: 100%;
    height: 100%;
}

.ia-banner__title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 120%;
    font-weight: 700;
}

h1.ia-banner__title {
    margin-bottom: 20px;
}

.ia-banner__btn {
    margin-top: 20px;
    min-width: 200px;
}

.ia-banner--single {

    & .ia-banner__info {
        flex-basis: 55.8%;
        padding: 49px 56px;
    }

    & .ia-banner__info::before {
        content: '';
        position: absolute;
        right: 100%;
        top: 0;
        height: 100%;
        width: 10rem;
        background: linear-gradient(90deg, rgba(4, 4, 4, 0) 0%, #171717 97.67%);
    }

    & .ia-banner__img {
        flex-basis: 45.2%;
    }
}

.ia-promo__info {
    margin: 0 auto;
    max-width: 90rem;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
}

.ia-promo__title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 120%;
    font-weight: 700;
}

.ia-promo__banner {
    margin-bottom: 100px;
}

.ia-promo__block {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.ia-promo__swiper {
    & .swiper-wrapper {
        column-gap: 20px;
        row-gap: 50px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.ia-card.ia-card--promo {
    padding: 0;
    height: 100%;
}

.ia-card__img {
    position: relative;
    margin-bottom: 14px;
    padding: 20px;
    display: flex;
    overflow: hidden;
    border-radius: 40px;
    background: var(--color-surface-light);
    aspect-ratio: 1 / 1;
}

.ia-card__img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: center;
    mix-blend-mode: multiply;
    filter: brightness(1.05);
}

.ia-card__img a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ia-card__name {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
}

.ia-card__button {
    margin-top: auto;
    width: 100% !important;
}

.ia-card__info {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 140%;
}

.ia-promo__block--banner {

    & .ia-card__img {
        margin-bottom: 20px;
    }

    & .ia-card__name {
        margin-bottom: 23px;
        font-weight: 300;
        /* width: 77%; */
    }

    & .ia-card:has(.ia-card__info) .ia-card__name {
        width: 100%;
        margin-bottom: 6px;
    }
}

.ia-contacts {
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 58px;
}

.ia-contacts * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
    word-break: break-word;
}

.ia-contacts__map {
    background-color: var(--color-surface-light);
    overflow: hidden;
}

.ia-contacts__title {
    margin-bottom: 8px;
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
}

.ia-contacts__subtitle {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 35px;
}

.ia-contacts__label {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
}

.ia-contacts__text {
    font-size: 16px;
    line-height: 140%;
    display: flex;
    flex-direction: column;
}

.ia-contacts__item {
    margin-bottom: 24px;
    width: 60%;
}

.ia-contacts__social {
    padding-top: 8px;
    display: flex;
    gap: 20px;

    & svg {
        fill: var(--color-primary);
    }

    & a:hover svg {
        fill: var(--color-accent);
    }
}

.ia-contacts__map {
    position: relative;
    display: flex;

    & .ymaps-layers-pane {
        filter: grayscale(1);
        -ms-filter: grayscale(1);
        -webkit-filter: grayscale(1);
        -moz-filter: grayscale(1);
        -o-filter: grayscale(1);
    }

    & .bx-yandex-view-layout {
        width: 100%;
        height: 100%;
        position: absolute;
    }

    & .bx-yandex-view-map {
        width: 100%;
        height: 100%;
    }

    & .bx-yandex-map {
        width: 100% !important;
        height: 100% !important;
    }
}

@media screen and (max-width: 900px) {
    .ia-container {
        padding: 0 20px;
    }

    .ia-banner {
        flex-direction: column;
        border-radius: 0;
        gap: 25px;
    }

    .ia-banner__img {
        flex-basis: auto;
        aspect-ratio: 1.66 / 1;
        border-radius: var(--border-radius-default);
        overflow: hidden;
    }

    .ia-banner__info {
        min-height: auto;
        padding: 0;
        flex-basis: auto;
        background: none;
        color: var(--color-primary);
        justify-content: flex-start;
    }

    .ia-banner__info::before {
        content: none;
    }

    .ia-banner__title,
    h1.ia-banner__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .ia-banner__desc {
        font-size: 12px;
        width: 100%;
    }

    .ia-banner--single {
        & .ia-banner__img {
            flex-basis: auto;
            aspect-ratio: 1.78 / 1;
            border-radius: var(--border-radius-max);
        }

        & .ia-banner__info {
            flex-basis: auto;
            padding: 0;
        }

        & .ia-banner__desc {
            font-size: 16px;
        }
    }

    .ia-banner--square {
        & .ia-banner__img {
            aspect-ratio: 1 / 1;
            border-radius: var(--border-radius-max);
        }

        & .ia-banner__desc {
            font-size: 16px;
        }
    }

    .ia-promo__banner {
        margin-bottom: 52px;
    }

    .ia-promo__block {
        margin-bottom: 52px;
        gap: 24px;
    }

    .ia-promo__block--banner {
        & .ia-card__name {
            width: 100%;
        }

        & .ia-card__img {
            margin-bottom: 10px;
        }
    }

    .ia-promo__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .ia-promo__info {
        text-align: left;
        font-size: 12px;
    }

    .ia-promo__items {
        width: calc(100% + 40px);
        margin-left: -20px;
        overflow: hidden;
    }

    .ia-banner__btn.ia-btn {
        width: 100%;
        background: var(--color-primary) !important;
        color: var(--color-default) !important;
    }

    .ia-banner__btn {
        margin-top: 22px;
    }

    .ia-contacts {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        margin: 0 auto 52px;
    }

    .ia-contacts__map {
        aspect-ratio: 1.66 / 1;
    }

    .ia-contacts__title {
        margin-bottom: 12px;
        font-size: 16px;
    }

    .ia-contacts__subtitle {
        font-size: 12px;
        margin-bottom: 22px;
    }

    .ia-contacts__label {
        font-size: 12px;
    }

    .ia-contacts__text {
        font-size: 12px;
    }

    .ia-contacts__item {
        margin-bottom: 26px;
        width: 100%;
    }

    .ia-contacts__social {
        padding-top: 0;
    }

    .ia-promo__swiper {
        padding-right: 40px !important;

        & .swiper-wrapper {
            display: flex;
            column-gap: unset;
            row-gap: unset;
            padding-left: 20px;
        }

        & .swiper-wrapper .swiper-slide {
            height: auto;
        }
    }

    .ia-card__img {
        margin-bottom: 8px;
        padding: 30px;
        border-radius: var(--border-radius-max);
    }

    .ia-card__info {
        margin-bottom: 20px;
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .ia-rev-slider.ia-search-slider {
        width: 100%;

        & .swiper-wrapper {
            gap: 50px 21px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }

        & .swiper {
            width: 100%;
        }

       & .slider-title {
            font-size: 20px;
        }

        & .ia-rev-slider__title {
            margin-bottom: 20px !important;
            padding: 0;
        }

        & .ia-card .catalog-card__image-box {
            margin-bottom: 8px;
            padding-top: 105%;
        }

    }

}

@media screen and (max-width: 767px) {
    .ia-rev-slider.ia-search-slider {

        & .swiper-wrapper {
            gap: 24px 20px;
            grid-template-columns: 1fr 1fr;
        }

        & .swiper-slide {
            margin-right: 0 !important;
        }

    }

}

@media screen and (max-width: 400px) {
    .ia-rev-slider.ia-search-slider {

        & .swiper-wrapper {
            gap: 24px 12px;
        }

    }

}
/* End */


/* Start:/local/templates/new_main/css/new_pages.css?175938697628854*/
/* im-container */
.im-container-670,
.im-container-900 {
    margin: 0 auto;
}

.im-container-670 {
    max-width: 670px;
}

.im-container-900 {
    max-width: 900px;
}

/* im-details-block */
.im-details-block {
    display: flex;
    flex-direction: column;
    row-gap: 54px;
    max-width: 750px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.im-details-block__title {
    margin-bottom: 42px;
    font-size: 35px;
    font-weight: 400;
    line-height: 114.286%;
}

/* im-details */
.im-details {
    border-bottom: 1px solid rgba(23, 23, 23, 0.30);
    border-radius: 2px;
}

.im-details {
    padding-bottom: 33px;
}

.im-details:not(:first-of-type) {
    padding-top: 33px;
}

.im-details[open]>.im-details__summary::after {
    rotate: -180deg;
}

.im-details__summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 17px;
    letter-spacing: -0.17px;
    line-height: 135.294%;
    cursor: pointer;
    user-select: none;
}

.im-details__summary-text {
    max-width: 620px;
}

.im-details__summary::after {
    margin-left: 15px;
    content: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMSAxTDYgNkwxIDEiIHN0cm9rZT0iIzE3MTcxNyIgc3Ryb2tlLXdpZHRoPSIxLjIiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiLz4KPC9zdmc+Cg==');
    transition: rotate 0.3s;
}

.im-details__content {
    margin-top: 10px;
}

/* im-cigar-club-hero */
.im-cigar-club-hero {
    padding-bottom: 51px;
    color: #fff;
}

.im-cigar-club-hero__container {
    display: grid;
}

.im-cigar-club-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 60px 20px 231px;
    grid-area: 1 / 1;
}

.im-cigar-club-hero__image-wrapper {
    position: relative;
    grid-area: 1 / 1;
}

.im-cigar-club-hero__image-wrapper::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    content: '';
}

.im-cigar-club-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.im-cigar-club-hero__title {
    margin-bottom: 8px;
    font-size: 35px;
    line-height: 114.286%;
    letter-spacing: -0.7px;
}

.im-cigar-club-hero__text {
    max-width: 555px;
    margin-bottom: 19px;
    font-size: 17px;
    line-height: 135.294%;
    letter-spacing: -0.17px;
}

.im-cigar-club-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.im-cigar-club-hero__button {
    background-color: transparent;
    border-color: #fff;
}

/* im-cigar-club-menu */
.im-cigar-club-menu {
    padding-bottom: 52px;
}

.im-cigar-club-menu__title {
    margin-bottom: 19px;
}

.im-cigar-club-menu__img {
    height: auto;
}

/* im-cigar-club-contacts */
.im-cigar-club-contacts {
    padding-bottom: 80px;
}

.im-cigar-club-contacts__title {
    margin-bottom: 11px;
}

.im-cigar-club-contacts__phone {
    margin-bottom: 10px;
    color: #BB793E;
    font-size: 17px;
}

.im-cigar-club-contacts__text {
    margin-bottom: 18px;
}

.im-cigar-club-contacts__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

/* im-cigar-club-text-block */
.im-cigar-club-text-block {
    padding-bottom: 53px;
}

.im-cigar-club-text-block__title {
    margin: 45px 0 10px;
}

/* im-cigar-club-slider */
.im-cigar-club-slider {
    padding-bottom: 52px;
}

.im-cigar-club-slider__pagination>.swiper-pagination-bullet {
    opacity: 1;
}

.im-cigar-club-slider__swiper-img {
    height: auto;
}

@media (max-width: 1024px) {

    /* im-cigar-club-hero */
    .im-cigar-club-hero__content {
        padding: 20px 60px;
    }
}

@media (max-width: 600px) {

    /* im-details-block */
    .im-details-block {
        row-gap: 35px;
        padding-bottom: 60px;
    }

    .im-details-block__title {
        margin-bottom: 26px;
        font-size: 25px;
    }

    /* im-details */
    .im-details {
        padding-bottom: 23px;
    }

    .im-details:not(:first-of-type) {
        padding-top: 23px;
    }

    .im-details__summary {
        font-size: 15px;
    }

    .im-details__summary-text {
        max-width: 310px;
    }

    /* im-cigar-club-hero */
    .im-cigar-club-hero {
        padding-bottom: 35px;
    }

    .im-cigar-club-hero__content {
        padding: 36px 21px;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }

    .im-cigar-club-hero__title {
        margin-bottom: 5px;
        font-size: 25px;
    }

    .im-cigar-club-hero__text {
        margin-bottom: 0;
        font-size: 15px;
    }

    .im-cigar-club-hero__buttons {
        margin-top: 20px;
    }

    .im-cigar-club-hero__image-wrapper::before {
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    }

    /* im-cigar-club-text-block */
    .im-cigar-club-text-block {
        padding-bottom: 36px;
    }

    .im-cigar-club-text-block__title {
        margin: 29px 0 9px;
    }

    .im-cigar-club-text-block__text {
        font-size: 11px;
    }

    /* im-cigar-club-menu */
    .im-cigar-club-menu {
        padding-bottom: 34px;
    }

    .im-cigar-club-menu__title {
        margin-bottom: 14px;
    }

    .im-cigar-club-menu__img-wrapper {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    /* im-cigar-club-contacts */
    .im-cigar-club-contacts__phone {
        font-size: 15px;
    }

    .im-cigar-club-contacts__text {
        font-size: 11px;
    }

    .im-cigar-club-contacts {
        padding-bottom: 60px;
    }

    .im-cigar-club-contacts__buttons {
        gap: 10px;
    }

    /* im-cigar-club-slider */
    .im-cigar-club-slider__swiper-img {
        width: 100%;
    }
}

/* im-hero-slider */
.im-hero-slider {
    width: 100%;
    margin: 0 auto 60px;
}

@media (min-width: 600px) {
    .im-hero-slider {
        aspect-ratio: 9 / 4;
    }
}

.im-hero-slider__slide {
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--im-background-color-slide);
    background-image: var(--im-bg-desktop);
}

.im-hero-slider__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: center;
    min-height: inherit;
    height: 100%;
}

.im-hero-slider__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
    padding: 20px 0;
    grid-column: 3 / span 4;
}

@media (min-width: 600px) {
    .im-hero-slider__content.is-right {
        grid-column: span 4 / 12;
    }

    .im-hero-slider__content.is-center {
        justify-content: flex-end;
        align-items: center;
        grid-column: 3 / 11;
        /* padding-bottom: 80px; */
        margin-bottom: -25%;
    }
}

.im-hero-slider__title {
    margin-bottom: 8px;
    font-size: 35px;
    line-height: 114.286%;
    color: var(--im-color-title);
}

.im-hero-slider__text {
    margin-bottom: 19px;
    font-size: 17px;
    line-height: 135.294%;
    letter-spacing: -0.17px;
    color: var(--im-color-text);
}

.im-hero-slider__button {
    color: var(--im-color-button);
    background-color: var(--im-background-color-button);
}

.im-hero-slider__nav-button.swiper-button-disabled {
    display: flex;
}

.im-hero-slider__nav-button.swiper-button-lock {
    display: none;
}

.im-hero-slider__nav-button::before,
.im-hero-slider__nav-button::after {
    content: none;
}

.im-hero-slider__nav-button {
    color: var(--im-fill-nav-button-icon);
}

.im-hero-slider__nav-button--next {
    right: 40px;
}

.im-hero-slider__nav-button--prev {
    left: 40px;
}

.im-hero-slider__nav-button>svg {
    fill: currentColor;
}

.im-hero-slider__img-wrap {
    grid-column: 7 / span 4;
}

.im-hero-slider__img-wrap>img {
    margin-left: auto;
}

.im-hero-slider__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.im-hero-slider__video--mobile {
    display: none;
}

@media (max-width: 900px) {
    .im-hero-slider__container {
        display: flex;
        flex-direction: column;
    }

    .im-hero-slider__content {
        justify-content: flex-start;
        min-height: unset;
        align-items: center;
        text-align: center;
    }

    .im-hero-slider__img-wrap {
        padding: 20px 20px 40px;
    }

    .im-hero-slider__img-wrap>img {
        margin-right: auto;
    }

    .im-hero-slider__nav-button {
        display: none;
    }
}

@media (max-width: 600px) {
    .im-hero-slider-container {
        padding: 0;
    }

    .im-hero-slider__container {
        justify-content: center;
    }

    .im-hero-slider__container.is-mobile-top {
        justify-content: flex-start;
    }

    .im-hero-slider__container.is-mobile-bottom {
        justify-content: flex-end;
        padding-bottom: 4rem;
    }


    .im-hero-slider__img-wrap>img {
        height: 320px;
        object-fit: contain;
    }

    .im-hero-slider__slide {
        height: auto;
        /* min-height: 640px; */
        background-image: var(--im-bg-mobile);
        aspect-ratio: 32 / 45;
    }

    .im-hero-slider__video--desktop {
        display: none;
    }

    .im-hero-slider__video--mobile {
        display: block;
    }

    .im-hero-slider__title {
        color: var(--im-color-title-mobile);
    }

    .im-hero-slider__text {
        color: var(--im-color-title-mobile);
        margin: 0 20px 20px;
    }
}


/* New home page ia styles */

.im-hero-slider__nav-button>svg {
    fill: var(--color-default) !important;
}

.im-hero-slider {
    margin: 0 auto 52px;
    border-radius: var(--border-radius-max);
}

.im-hero-slider * {
    font-family: 'Aeroport', sans-serif !important;
    letter-spacing: 0;
}

.im-hero-slider__button {
    appearance: none;
    height: 42px;
    border-radius: 12px;
    border: none;
    padding: 13px 30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-default);
    color: var(--color-primary);
    width: max-content;
    min-width: 200px;
    transition: var(--transition-default);
}

.im-hero-slider__title {
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
}

.im-hero-slider__content {
    padding: 0 0 20px;
}

.im-hero-slider__text {
    line-height: 1.4;
    font-weight: 300;
    font-size: 16px;
    width: 90%;

}

.im-hero-slider .swiper-pagination-bullets {
    bottom: 16px;
}

.im-hero-slider .swiper-pagination-bullet {
    background: var(--color-dark-grey);
}

.im-hero-slider .swiper-pagination-bullet-active {
    background: var(--color-default);
}

.im-hero-slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-new-gap, 6px);
}

@media screen and (min-width: 1024px) and (hover: hover) {

    .im-hero-slider__button:hover {
        background-color: var(--color-accent) !important;
        color: var(--color-default) !important;
    }
}

@media (min-width: 600px) {
    .im-hero-slider {
        aspect-ratio: 9 / 5;
    }
}

@media (min-width: 900px) {
    .im-hero-slider {
        aspect-ratio: 9 / 4;
    }
}

@media screen and (max-width: 900px) {
    .im-hero-slider {
        border-radius: 0;
    }

    .im-hero-slider__container {
        position: relative;
    }

    .im-hero-slider__container:has(.im-hero-slider__button)::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0) 6.5%, #000000 58.67%);
    }

    .im-hero-slider__content {
        position: relative;
        z-index: 1;
        padding: 30px 48px;
    }
}

@media (max-width: 600px) {
    .im-hero-slider__title {
        font-weight: 300;
        font-size: 30px;
    }

    .im-hero-slider__text {
        width: 88%;
    }

    .im-hero-slider__button {
        min-width: 160px;
    }

    .im-hero-slider__slide {
        aspect-ratio: 32 / 44.5;
    }
}

/* New page styles */
.img-content {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-max);
    margin-bottom: -30px;
}

.container--left-menu {
    display: flex;
    gap: 140px;
}

.page-left-menu {
    width: 205px;
    height: calc(100vh - 200px);
    padding: 20px 0;
    position: sticky;
    top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container--left-menu .page-content {
    width: calc(100% - 345px);
    display: flex;
    flex-direction: column;
    gap: 100px;
    font-family: 'Aeroport', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-primary);
    padding-bottom: 100px;
}

.ia-section {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.ia-section-top {
    margin-bottom: -30px;
}

.img-content--about_mobile {
    display: none;
}

@media screen and (max-width: 1240px) {
    .page-left-menu {
        display: none;
    }

    .container--left-menu .page-content {
        width: 100%;
        gap: 80px;
        padding-bottom: 80px;
    }

    .ia-section {
        gap: 80px;
    }
}

@media screen and (max-width: 980px) {

    .container--left-menu .page-content {
        gap: 60px;
        padding-bottom: 60px;
    }


    .ia-section {
        gap: 60px;
    }
}

@media screen and (max-width: 767px) {

    .container--left-menu .page-content {
        gap: 32px;
        padding-bottom: 32px;
    }

    .ia-section {
        gap: 32px;
    }

    .img-content {
        border-radius: 12px;
    }

    .ia-section-top {
        margin-bottom: 0px;
    }

    .img-content--about {
        display: none;
    }

    .img-content--about_mobile {
        display: block;
    }

    .about-contacts-title,
    .about-team-title {
        font-size: 14px;
    }
}

/* New about page ia styles */

.about-texts__item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.about-texts__item__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    font-family: 'Aeroport', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-primary);
}

.about-texts__item__content_mobile {
    display: none;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    font-family: 'Aeroport', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-primary);
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about-texts__item__content {
         display: none;
    }
    .about-texts__item__content_mobile {
        display: flex;
        font-size: 14px;
    }
}



.about_header {
    font-size: 30px;
    line-height: 120%;
    padding: 0 0 0 22px;
    margin: 0 0 12px 0;
    position: relative;
}

.about_header::before {
    content: '/';
    color: var(--color-accent);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about_header {
        padding: 0 0 0 18px;
        font-size: 24px;
    }
}

.about-texts__item__content p, .about-texts__item__content_mobile p {
    margin: 0 0 20px 0;
    padding: 0;
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about-texts__item__content p, .about-texts__item__content_mobile p {
        margin: 0 0 12px 0;
    }
}

.about-texts__item__content p:last-child, .about-texts__item__content_mobile p:last-child {
    margin-bottom: 0;
}

.about-texts__item--two_text .about-texts__item__content {
    justify-content: space-between;
    min-height: 100%;
}

.about-texts__item--with_img .about-texts__item__content {
    width: calc(55% - 10px);
}

.about-texts__item__img {
    width: calc(45% - 10px);
    overflow: hidden;
    border-radius: var(--border-radius-max);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-texts__item__img img {
    width: 100%;
    height: auto;
}

.about-texts__item__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about-texts__item {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 32px;
    }

    .about-texts__item--with_img .about-texts__item__content, .about-texts__item--with_img .about-texts__item__content_mobile {
        width: 100%
    }

    .about-texts__item--two_text .about-texts__item__content, .about-texts__item--two_text .about-texts__item__content_mobile {
        justify-content: normal;
        min-height: fit-content;
        gap: 32px;
    }

    .about-texts__item__img {
        width: 100%;
        border-radius: var(--border-radius-default);
    }

    .about-texts__item__img img {
        width: 100%;
        max-height: 500%;
    }
}

.ia-section-successes {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: -50px;
}

@media screen and (max-width: 1240px) {
    .ia-section-successes {
        margin-top: -40px;
    }
}

@media screen and (max-width: 980px) {
    .ia-section-successes {
        margin-top: -30px;
    }
}

@media screen and (max-width: 767px) {
    .ia-section-successes {
        margin-top: -12px;

    }
}

@media screen and (max-width: 700px) {
    .ia-section-successes {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.about-successes__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: calc(25% - 15px);
    font-family: 'Aeroport', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-secondary);
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about-successes__item {
        gap: 14px;
        font-size: 14px;
    }
}

@media screen and (max-width: 700px) {
    .about-successes__item {
        gap: 14px;
        width: calc(50% - 10px);
        font-size: 14px;
    }
}

.about-successes__item h3 {
    display: flex;
    width: 100%;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-wrap: nowrap;
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about-successes__item h3 {
        gap: 6px;
    }
}

.about-successes__item h3 img {
    display: block;
    width: 26px;
    height: 26px;
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about-successes__item h3 img {
        width: 18px;
        height: 18px;
    }
}

.about-successes__item__text {
    font-size: 40px;
    line-height: 120%;
    color: var(--color-accent);
}


@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 767px) {
    .about-successes__item__text {
        font-size: 30px;
    }
}

.about-successes__item__divider {
    width: 0px;
    height: 100%;
    border-right: solid 1px var(--color-dark-grey);
    overflow: hidden;
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 700px) {
    .about-successes__item__divider {
        display: none;
    }
}

.ia-section-team {
    gap: 40px;
}

.ia-team-slider {
    display: none;
}

.about-team {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.text-open {
    display: none;
    z-index: 3;
    cursor: pointer;
}

.about-team__item {
    width: calc(33.33% - 16px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.about-team__item__img {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-default);
    height: 480px;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-team__item:hover .about-team__item__img {
    height: 125px;
    max-width: 200%;
    max-height: 200%;
    background-position: center calc(50% - 25%);
}

.about-team__item h3 {
    font-size: 20px;
    line-height: 120%;
}

.about-team__item__job-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 36px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
    line-height: 140%;
    color: var(--color-primary);
    border: 1px solid var(--color-dark-grey);
    border-radius: 54px;
}

.about-team__item__text {
    display: block;
    font-size: 12px;
    line-height: 140%;
    opacity: 0;
    transition: opacity 1.2s ease;
    position: absolute;
    top: 245px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.about-team__item:hover .about-team__item__text {
    opacity: 1;
}

.about-team__item__text ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.about-team__item__text ul li {
    display: block;
    padding: 0 0 0 20px;
    position: relative;
}

.about-team__item__text ul li::before {
    content: '\2022';
    position: absolute;
    top: 0px;
    left: 3px;
    font-size: 12px;
    line-height: 140%;
    color: var(--color-primary);
}

@media screen and (max-width: 1400px) {
    .about-team__item {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 1240px) {
    .about-team__item {
        width: calc(33.33% - 16px);

    }

    .about-team__item__img {
        cursor: pointer !important;
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-team__item:hover .about-team__item__img {
        background-position: center center;
        position: relative;
        height: 480px;
    }

    .about-team__item.open-text .about-team__item__img {
        height: 125px;
        max-width: 200%;
        max-height: 200%;
        background-position: center calc(50% - 25%);
    }

    .about-team__item .about-team__item__text,
    .about-team__item:hover .about-team__item__text {
        opacity: 0;
    }

    .about-team__item.open-text .about-team__item__text,
    .about-team__item.open-text:hover .about-team__item__text {
        opacity: 1;
    }

    .text-open {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .about-team__item .text-open .svg_plus {
        fill: #DEDEDE;
        transition: fill 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-team__item.open-text .text-open .svg_plus {
        fill: transparent
    }

}

@media screen and (max-width: 980px) {
    .ia-section-team {
        gap: 30px;
    }
}

@media screen and (max-width: 900px) {
    .about-team__item {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 700px) {
    .ia-section-team {
        gap: 20px;
    }

    .about-team {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media screen and (max-width: 600px) {

    .ia-section-team {
        width: calc(100% + 40px);
        margin: 0 -20px;
        overflow: hidden;
    }

    .about-team-title {
        margin: 0 20px;
    }

    .ia-team-slider {
        display: block;
        width: calc(80% - 20px);
        margin: 0 20% 0 20px;
        transition: margin 0.8s ease;
    }

    .ia-team-slider-reverse {
        margin: 0 20px 0 20%;  
    }

    .ia-team-slider .swiper { 
        overflow: visible;
    }

    .about-team {
        display: none;
    }

    .about-team__item {
        margin-right: auto;
        box-sizing: border-box;
    }

    .about-team__item__img {
        height: calc(80vw * 1.7);
        cursor: pointer !important;
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-team__item:hover .about-team__item__img {
        height: calc(80vw * 1.7);
        background-position: center center;
        position: relative;
    }

    .about-team__item.open-text .about-team__item__img {
        height: 125px;
        max-width: 200%;
        max-height: 200%;
        background-position: center calc(50% - 25%);
    }

    .about-team__item .about-team__item__text,
    .about-team__item:hover .about-team__item__text {
        opacity: 0;
    }

    .about-team__item.open-text .about-team__item__text,
    .about-team__item.open-text:hover .about-team__item__text {
        opacity: 1;
    }

    .text-open {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .about-team__item .text-open .svg_plus {
        fill: #DEDEDE;
        transition: fill 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-team__item.open-text .text-open .svg_plus {
        fill: transparent
    }
}

.ia-section-contacts {
    gap: 40px;
}

.about-contacts-map {
    width: 100%;
    aspect-ratio: 1.561 / 1;
    overflow: hidden;
    border-radius: var(--border-radius-default);
    background-image: url('/local/templates/new_main/css/../img/about/address_01.png'), url('/local/templates/new_main/css/../img/about/address_02.png');
    background-position: left top, right top;
    background-repeat: no-repeat, no-repeat;
    background-size: auto 100%, auto 100%;
    display: flex;
    align-items: end;
}

.about-contacts-map__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: end;
    width: 46%;
    margin: 0 0 40px 40px;
    color: var(--color-default);
}

.about-contacts-map__content h3 {
    font-size: 30px;
    line-height: 120%;
    color: var(--color-default);
}

.about-contacts-map__content p {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.about-contacts-map__content p.address_text_mobile {
    display: none;
}

.about-contacts-map__content__btn {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-default);
    border: 1px solid var(--color-default);
    border-radius: 54px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-contacts-map__content__btn:hover {
    color: var(--color-accent-light);
    border-color: var(--color-accent-light);
}

@media screen and (max-width: 1240px) {}

@media screen and (max-width: 980px) {
    .ia-section-contacts {
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {
    .ia-section-contacts {
        gap: 20px;
    }

    .about-contacts-map {
        aspect-ratio: auto;
        height: calc(100dvh - 320px);
        background-image: url('/local/templates/new_main/css/../img/about/address.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .about-contacts-map__content {
        width: calc(100% - 40px);
        margin: 0 20px 30px 20px;
        font-size: 16px;
    }
    .about-contacts-map__content p.address_text {
        display: none;
    }

    .about-contacts-map__content p.address_text_mobile {
        display: block;
    }

    .about-contacts-map__content__btn {
        width: 100%;
    }
}

.ia-section-connection {
    gap: 40px;
    align-items: center;
}

.ia-section-connection h2 {
    font-size: 30px;
    line-height: 120%;
}

.about-connection__all {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.about-connection__phones {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.about-connection__menu-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.about-connection__menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.about-connection__menu-social a svg {
    width: 32px;
    height: 32px;
}

@media screen and (max-width: 767px) {
    .ia-section-connection {
        gap: 20px;
        font-size: 14px;
    }

    .ia-section-connection h2 {
        font-size: 20px;
        line-height: 120%;
    }
}
/* End */


/* Start:/local/templates/new_main/css/ext.css?175277726610235*/
.one-click-fields input {justify-content: center;}
.one-click-form-container {max-height: 100vh; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #000 #eee;}


.one-click-form-container::-webkit-scrollbar {width: 4px;}
.one-click-form-container::-webkit-scrollbar-track {background: #eee}
.one-click-form-container::-webkit-scrollbar-thumb {background-color: #000; border-radius: 2px; border: 0;}

.one-click-form-container .one-click-form {position: relative;}
.one-click-form-overlay_coupon {position: absolute; top: 0; left: 0; z-index: 2; display: none; width: 100%; height: 100%; padding-top: 99.9%; overflow: hidden; background: url('/local/templates/new_main/img/loader.svg') center center no-repeat rgba(255, 255, 255, 0.7);}
.one-click-form-overlay_coupon.loading_coupon {display: block;}

#one-click-form-block .cart-info-form__promocode button {font: inherit !important; max-height: 40px; margin: 0; padding: 0; height: 40px; width: 107px; min-width: 107px;}
#one-click-form-block .cart-info-form__promocode input[type="text"] {margin: 0;}
#one-click-form-block .cart-info-form__promocode input[type="text"]:disabled {text-transform: uppercase; color: #aeaeae}

#one-click-form-block .cart-info-form__promocode {margin-bottom: 7px;}

#one-click-form-block .cart-info-form__price-detail-item {margin-bottom: 0px;}
#one-click-form-block .promocode-text.promocode-text__err {line-height: 110%; margin-bottom: 17px;}
#one-click__promo--prices {margin-bottom: 27px; display: none;}
#one-click__promo--clear {display: none; background: transparent; padding: 15px; right: calc(1.5rem - 15px)}


.modal__addtocart--block {display: flex;  align-items: center; justify-content: left; position: fixed; top: 117px; right: -447px; z-index: 2999; height: 110px; max-height: 110px; width: 420px; max-width: 420px; background: rgba(0, 0, 0, 0.9); padding: 0px 20px; overflow: hidden; transition: all 0.37s ease-in-out;}
.modal__addtocart--block.show__block {right: 17px;}
.inner__addtocart--block {display: flex;  align-items: center; justify-content: left; overflow: hidden;}
.image__addtocart--block {width: 70px; min-width: 70px; height: 70px; max-height: 70px; overflow: hidden; background: #fff; display: flex;  align-items: center; justify-content: center;}
.image__addtocart--block img {max-height: 57px; width: auto; max-width: 100%; height: auto; overflow: hidden;}
.content__addtocart--block {overflow: hidden; max-height: 70px; height: 70px; color: #fff; margin-left: 20px;}
.product__addtocart--block {overflow: hidden; max-width: 100%; padding: 13px 0px 11px 0px;}
.product__addtocart--block span {overflow: hidden; max-width: 100%; display: block; white-space: nowrap; font-size: 14px; font-weight: bold; line-height: 100%;}

.message__addtocart--block {display: flex;  align-items: center; justify-content: left; width: 100%; font-size: 12px; line-height: 100%; padding-top: 3px;}
.message__addtocart--block svg {min-width: 14px; margin-right: 7px; position: relative; top: -1px;}

.unit__addtocart--block {text-transform: uppercase; font-size: 10px;}


.header__main-icon-button.header__cart.mobile_hidden  {display: block}
.header__cart.mobile_hidden .header__cart-counter.js-basket-lite-count {top: -1.3rem; height: 17px; max-height: 17px; display: flex; align-items: center; justify-content: center; padding: 1px 2px 0px 1.5px; border-radius: 4px; font-size: 10px; color: #fff; background: #ca793e; border: solid 1px #ca793e; line-height: 100%}
.header__cart.mobile_visible .header__cart-counter.js-basket-lite-count {height: 17px; max-height: 17px; display: flex; align-items: center; justify-content: center; padding: 1px 2px 0px 1.5px; border-radius: 4px; font-size: 10px; color: #fff; background: #ca793e; border: solid 1px #ca793e;  line-height: 100%}
.header__favorite--count-fill {height: 17px; max-height: 17px; display: flex; align-items: center; justify-content: center; padding: 1px 2px 0px 1.5px; border-radius: 4px; font-size: 10px; color: #fff; background: #ca793e; border: solid 1px #ca793e;  line-height: 100%}


#smallCart {position: relative; padding-bottom: 7px; padding-top: 7px; cursor: pointer;}
.smallcart__inner--block {position: absolute; top: 27px; right: -7px; padding-top: 17px; z-index: 999; display: none;}
.smallcart__inner--content {background: #f8f8f8; width: 670px; height: auto; min-height: 300px; max-height: calc(100vh - 107px); border: solid 1px #c1bbb7; border-radius: 3px; display: flex; align-items: flex-start; justify-content: center; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #000 #eee; box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2); cursor: default;}
.loaded__hover--basket {width: 177px; margin: 137px auto auto auto;}

.smallcart__inner--content::-webkit-scrollbar {width: 4px;}
.smallcart__inner--content::-webkit-scrollbar-track {background: #eee}
.smallcart__inner--content::-webkit-scrollbar-thumb {background-color: #000; border-radius: 2px; border: 0;}

.smallcartbasket__hover--block {width: 100%; min-width: 100%; max-width: 100%; padding: 0px 10px;}
.smallcartbasket__hover--block .bx-sbb-empty-cart-container {height: 100%; width: 100%; min-height: 300px; flex-wrap: wrap; display: flex; align-items: center; justify-content: center; }
.smallcartbasket__hover--block .bx-sbb-empty-cart-container div {width: 100%; text-align: center; max-height: 30px;}


.smallcart__inner--content .basket__wrp_hover {width: 100% !important; padding: 20px}
.smallcart__inner--content .fast-buy-card__title  {font-weight: bold; font-size: 17px; padding-bottom: 10px; margin-bottom: 27px; margin-top: 7px; border-bottom: solid 1px #000;}
.smallcart__inner--content .catalog-card_hover {display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; padding-bottom: 17px; border-bottom: solid 1px #aeaeae}
.smallcart__inner--content .catalog-card_hover:last-child {border-bottom: solid 0px #dedede}

.smallcart__inner--content .catalog-card__image_hover {width: 70px; min-width: 70px; height: 70px; max-height: 70px; overflow: hidden; background: #fff; display: flex;  align-items: center; justify-content: center;}
.smallcart__inner--content .catalog-card__image_hover img {max-height: 57px; width: auto; max-width: 100%; height: auto; overflow: hidden; border: solid 1px #fff; border-radius: 4px;}
.smallcart__inner--content .catalog-card__content_hover {width: calc(100% - 70px); padding-left: 20px; display: flex; align-items: center; justify-content: space-between;}
.smallcart__inner--content .fast-buy-card__total_hover {display: flex; align-items: center; justify-content: left; font-size: 15px; font-weight: bold; margin: 17px 0px 27px 0px;}
.smallcart__inner--content .fast-buy-card__total_hover div {margin-right: 7px;}
.smallcart__inner--content .delivery-info_hover {margin: 27px 0px 27px 0px; padding-top: 27px; line-height: 120%; font-size: 13px; border-top: solid 1px #000;}
.smallcart__inner--content .catalog-card__name_hover {width: 257px; line-height: 110%; height: 70px; overflow: hidden; display: flex; align-items: center; justify-content: left;}
.smallcart__inner--content .catalog-card__price_hover {font-weight: normal; font-size: 12px; min-width: 117px; max-width: 117px; white-space: nowrap; display: flex; align-items: center; justify-content: right; flex-wrap: wrap; line-height: 120%;}
.smallcart__inner--content .catalog-card__price_hover .catalog-card__price-old {width: 100%; display: block; font-size: 11px; max-width: 117px; display: flex; align-items: center; justify-content: right; line-height: 120%;}
.smallcart__inner--content .catalog-card__actions_hover {display: flex; align-items: center; justify-content: left; height: 70px; min-width: 117px}
.smallcart__inner--content .product-counter_hover {display: flex; align-items: center; justify-content: left; width: 80px; background: #fff; height: 27px; border-radius: 3px; border: solid 1px #dedede;}
.smallcart__inner--content .product-counter__count-input {font-size: 12px; color: #171717;}
.smallcart__inner--content .catalog-card__actions-dell_hover {width: 27px; height: 27px; border: solid 1px #dedede; border-radius: 3px; display: flex; align-items: center; justify-content: center; margin-left: 7px; cursor: pointer; background: #fff;}
.smallcart__inner--content .catalog-card__actions-dell_hover svg {width: 12px; height: 12px;}
.smallcart__inner--content .product-counter__btn.is-minus {box-shadow: 0; border: 0; background: #fff;}
.fast-buy-card__total_hover {position: relative; width: 100%;}

.fast-buy-card__total_hover .total__basket--button {position: absolute; top: -12px; right: 0px; height: 42px; width: 227px; display: block; background: #000; color: #fff; display: flex; align-items: center; justify-content: center;text-transform: lowercase; text-decoration: none !important; font-weight: normal !important; font-size: 10pt !important;}

.bx-sbb-empty-cart-text {font-size: 16px; font-weight: bold;}
.bx-sbb-empty-cart-text .bx-sbb-empty-cart-desc {font-size: 14px; font-weight: normal;}
.delivery-info_hover {line-height: 120%; font-size: 13px !important;}
#total__basket--hover {position: relative;}
.total__basket--hover-no_discount {position: absolute; left: calc(100% + 7px); top: 50%; transform: translateY(-47%); text-decoration: line-through; color: #c1bbb7; font-size: 12px; min-width: 177px;}


@media (max-width: 569px) {
.modal__addtocart--block {top: -142px; right: 15px; width: calc(100% - 30px); max-width: 100%;}
.modal__addtocart--block.show__block {top: 42px;}
}

@media (max-width: 800px) {
.one-click-form-container {max-width: calc(100% - 20px) !important; margin-top: 10px; margin-bottom: 10px;}
}

.isnLth .cookie-notification.js-cookie-popup {display: none !important}
.isnLth .popup.age_popup.js-age-popup {display: none !important}
.isnLth #subscribe-popup {display: none !important}

@media (max-width: 339px) {
.header__cart.mobile_hidden .header__cart-counter.js-basket-lite-count, 
.header__cart.mobile_visible .header__cart-counter.js-basket-lite-count,
.header__favorite--count-fill {height: 10px; max-height: 10px; font-size: 6.7px; top: -0.5rem; padding: 2px 2px 1px 2px;}
}
/* End */


/* Start:/local/components/itaces/menu.sections/templates/.default/style.css?175669980112421*/
body:has(.ia-menu__popup.is-active) {
    overflow: hidden;
}

body.header_fixed .header {
    position: relative;
    z-index: 2999;
}

.header-search__result {
    z-index: 1999;
}   

.ia-menu {
    font-family: 'Aeroport', sans-serif !important;
    font-weight: 300;
    letter-spacing: 0;
    word-break: break-word;
}

.ia-menu__btn {
    position: relative;
    appearance: none;
    box-sizing: border-box;
    height: 42px;
    border-radius: 12px;
    border: none;
    padding: 9px 12px 9px 48px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    color: var(--color-default);
    background: var(--color-primary);
    width: max-content;
    max-width: 100%;
    transition: var(--transition-default);
}

.ia-menu__burger {
    position: absolute;
    left: 15px;
    top: 50%;
    width: 18px;
    height: 2px;
    transform: translateY(-50%);
    background-color: var(--color-default);
    border-radius: var(--border-radius-image);
    transition: var(--transition-default);
    display: block;
}

.ia-menu__burger::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    height: 2px;
    width: 18px;
    display: block;
    transition: var(--transition-default);
    background-color: var(--color-default);
    border-radius: var(--border-radius-image);
}

.ia-menu__burger::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 2px;
    width: 18px;
    display: block;
    transition: var(--transition-default);
    background-color: var(--color-default);
    border-radius: var(--border-radius-image);
}

.ia-menu__btn.is-active {
    & .ia-menu__burger {
        background-color: transparent;
    }

    & .ia-menu__burger::before {
        transform: translate(0, 5px) rotate(45deg);
    }

    & .ia-menu__burger::after {
        transform: translate(0, -6px) rotate(-45deg);
    }
}

.ia-menu__popup {
    position: fixed;
    top: 138px;
    left: 0;
    right: 0;
    height: calc(100vh - 138px);
    z-index: 1999;
    transition: var(--transition-default);
    opacity: 0;
    pointer-events: none;
    background: rgba(23, 23, 23, 0.8);
    display: flex;
}

.ia-menu__wrapper {
    padding-top: 20px;
    background-color: var(--color-default);
    overflow-y: auto;
    scrollbar-gutter: stable;
    width: 100%;
}

.ia-menu__popup.is-active {
    opacity: 1;
    pointer-events: visible;
}

.ia-menu__links {
    padding-bottom: 52px;
}

.ia-menu__link {
    padding: 7px 12px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--border-radius-image);
    color: var(--color-primary);
    font-size: 16px;
    line-height: 140%;
    transition: var(--transition-default);
    background-color: var(--color-default);
}

.ia-menu__link.is-active {
    color: var(--color-primary);
    background: var(--color-surface-grey);

    & svg {
        opacity: 1;
    }
}

.ia-menu__li--title {
    margin-bottom: 8px;
    padding: 7px 12px;
    height: 38px;
    display: flex;
    align-items: center;
    color: var(--color-accent);
    font-size: 20px;
    line-height: 120%;
}

.ia-menu__link.is-red {
    color: var(--color-red);
}

.ia-menu__link svg {
    opacity: 0;
    transition: var(--transition-default);
}

.ia-menu__container {
    display: grid;
    grid-template-columns: 1fr 3.9fr;
    column-gap: 40px;
}

.ia-menu__head {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.ia-menu__body {
    margin-top: 40px;
    padding-bottom: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.ia-menu__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ia-menu__card {
    display: flex;
}

.ia-menu__card a {
    position: relative;
    width: 100%;
    min-height: 140px;
    padding: 12px;
    display: flex;
    border-radius: var(--border-radius-image);
    box-shadow: 0px 4px 15px 0px #0000001A;
    flex-wrap: wrap;
    transition: var(--transition-default);
}

.ia-menu__text {
    font-size: 20px;
    line-height: 120%;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.ia-menu__card:has(img) {
    .ia-menu__text {
        width: 86%;
    }
}

.ia-menu__img {
    width: 26%;
    aspect-ratio: 1 / 1.35;
    display: flex;
    position: absolute;
    right: 19px;
    bottom: 12px;
    z-index: 0;

    & img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        mix-blend-mode: multiply;
        filter: brightness(1.05);
    }
}

.ia-menu__tags {
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 14px;
}

.ia-menu__tag {
    display: flex;
    height: max-content;
}

.ia-menu__tag a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    height: 32px;
    color: var(--color-primary);
    background-color: var(--color-surface-grey);
    border-radius: 100px;
    font-size: 14px;
    line-height: 140%;
    transition: var(--transition-default);
}

.ia-menu__tab {
    display: none;
}

.ia-menu__tab.is-active {
    display: block;
}

.ia-menu__mob {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 100%;
    display: none;
    flex-direction: column;
    background-color: var(--color-default);
    z-index: 9999;
}

.ia-menu__links-mob {
    position: relative;
    padding: 2px 40px 20px;
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.ia-menu__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex: none;
    padding: 20px 40px;
    background: var(--color-default);
}

.ia-menu__icon {
    flex: none;
    width: 50px;
    height: 50px;
    padding: 9px;
    cursor: pointer;

    & svg {
        width: 100%;
        height: 100%;
        fill: var(--color-primary);
        pointer-events: none;
    }
}

.ia-mob-tab  {
    position: fixed;
    top: 104px;
    width: 100%;
    height: calc(100vh - 104px);
    height: calc(100dvh - 104px);
    max-width: 620px;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 20px 100px;
    display: none;
    flex-direction: column;
    background-color: var(--color-default);
}

.ia-mob-tab.is-active {
    display: flex;
}

.ia-menu__links-mob:has(.ia-menu__mob-tab.is-active) {
    overflow: hidden;
}

.ia-mob-tab__head {
    position: relative;
    padding: 0 50px 10px;
    text-align: center;
    font-size: 20px;
    line-height: 120%;
    
}

.ia-mob-tab__close {
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    & svg {
        transform: rotate(180deg);
    }
}

.ia-mob-tab__search {
    position: relative;
    margin: 26px 0 24px;
}

.ia-mob-tab__icon {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    & svg {
        width: 18px;
        height: 18px;
        fill: var(--color-dark-grey);
    }
}

.ia-mob-tab__input {
    appearance: none;
    border: none;
    background-color: var(--color-default);
    font-size: 16px;
    padding: 12px 30px 12px 0;
    width: 100%;
}

.ia-mob-tab__input input::placeholder {
    color: var(--color-dark-grey);
}

.ia-mob-tab__content {
    position: relative;
    overflow: hidden;
    width: calc(100% + 20px);
    height: 100%;
}

.ia-mob-tab__list {
    width: 100%;
}

.ia-mob-tab__wrapper {
    overflow: auto;
    scrollbar-gutter: stable;
    display: flex;
    height: 100%;
    scroll-behavior: smooth;
}

.ia-mob-tab__ul {
    width: 100%;
}

.ia-mob-tab__li {
    margin-bottom: 7px;
    display: inline-block;
    width: 80%;
    padding: 6px 0;
    font-size: 16px;
    color: var(--color-primary);
}

.ia-mob-tab__li.is-hide {
    display: none;
}

.ia-mob-tab__li--title {
    margin: 10px 0 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
}

.ia-menu__alphab {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    gap: 10px;
    align-items: end;
    align-content: end;
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.ia-menu__letter {
    cursor: pointer;
    font-size: 12px;
    line-height: 140%;
    color: var(--color-secondary);
    transition: var(--transition-default);
    text-align: center;
    width: 11px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ia-menu__letter.is-active {
    font-size: 16px;
    color: var(--color-primary);
}

.ia-menu__mob-tab .ia-menu__list {
    margin-top: 3px;
    width: 100%;
    padding-right: 20px;
}

@media screen and (min-width: 1024px) and (hover: hover) {

    .ia-menu__btn:hover {
        background-color: var(--color-accent) !important;
        color: var(--color-default) !important;
    }

    .ia-menu__li a:hover {
        color: var(--color-primary);
        background: var(--color-surface-grey);

        & svg {
            opacity: 1;
        }
    }

    .ia-menu__link.is-simple:hover {
        color: var(--color-default);
        background: var(--color-primary);
    }

    .ia-menu__card a:hover {
        box-shadow: 0px 4px 15px 0px #00000033;
        color: var(--color-primary);
    }

    .ia-menu__tag a:hover {
        background-color: var(--color-accent-light);
        color: var(--color-default);
    }

}

@media screen and (max-width: 1240px) {

    .header__main-left {
        gap: 15px;
        margin-left: -3px;
    }

    .header__main-burger {
        display: none;
    }

    .ia-menu {
        order: -1;
    }

    .ia-menu__btn {
        width: 32px;
        height: 32px;
        background-color: var(--color-default);
        padding: 3px;
    }

    .ia-menu__btn:hover {
        background-color: var(--color-default) !important;
    }

    .ia-menu__burger {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
        background-color: var(--color-primary);
    }

    .ia-menu__burger::before {
        background-color: var(--color-primary);
    }

    .ia-menu__burger::after {
        background-color: var(--color-primary);
        bottom: -5px;
    }

    .ia-menu__btn.is-active {

        & .ia-menu__burger::before {
            transform: translate(-2px, 6px) rotate(45deg);
        }

        & .ia-menu__burger::after {
            transform: translate(-2px, -4px) rotate(-45deg);
        }
    }

    .ia-menu__name {
        display: none;
    }

    .ia-menu__list {
        gap: 0;
    }

    .ia-menu__popup {
        top: 104px;
        height: calc(100vh - 104px);
        height: calc(100dvh - 104px);
    }

    .ia-menu__wrapper {
        display: none;
    }

    .ia-menu__mob {
        display: flex;
    }

    .ia-menu__li {
        padding: 7px 0;
        border-bottom: 1px solid var(--color-grey);
    }

    .ia-menu__li--prop {
        font-weight: 700;
        background: var(--color-default);
        padding: 3px 0 0;
        margin: -3px 0 0;
        border-bottom: none;
    }

    .ia-menu__li:nth-last-child(1) {
        border-bottom: none;
    }

    .ia-menu__link {
        height: 50px;
        padding: 7px 0;
        font-size: 20px;
        line-height: 120%;
        border-radius: 0;
        & svg {
            opacity: 1;
        }
    }
}

@media screen and (max-width: 1024px) {
    .ia-menu__links-mob {
        padding: 2px 20px 20px;
    }

    .ia-menu__bottom {
        padding: 20px;
    }
}
/* End */


/* Start:/local/components/sotbit/search.page/templates/a_search_head/style.css?175931741213829*/
.header_search_container {
    margin-right: 32px;
}

body:has(.ia-search-title.is-focus) {
    overflow: hidden;
}

.ia-search-title.is-focus {
    & .ia-search-title__overlay {
        opacity: 1;
        pointer-events: visible;
    }

    & .ia-search-title__input {
        background-color: var(--color-default);
    }

    & .ia-search-title__result-wrapper {
        display: block;
    }

}

.ia-search-title * {
    word-break: break-word;
}

.ia-search-title {

    & .section {
        width: 100%;
        margin-bottom: 0 !important;
    }

    & .ia-search-slider {
        display: none;
    }

    & .sticker_link {
        word-break: normal;
    }
}


.ia-search-title__result {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-height: 100%;
    overflow: hidden;
    align-self: stretch;
    background: var(--color-default);
    box-shadow: 0px 4px 15px 0px #00000017;

    & .container {
        padding: 0;
    }
}

.ia-search-title__form {
    position: relative;
    z-index: 2;
}

.ia-search-title__overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background: rgba(23, 23, 23, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-default);
    z-index: 1;
}

.ia-search-title__wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.ia-search-title__input {
    border: none;
    border-radius: 2px 0 0 2px;
    height: 42px;
    padding: 0 100px 0 16px;
    background-color: var(--color-surface-grey);
    border-radius: var(--border-radius-image);
    width: 100%;
    color: var(--color-primary);
    font-size: 14px;
    text-overflow: ellipsis;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    touch-action: none;
}

.ia-search-title__btns {
    position: absolute;
    right: 14px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ia-search-title__icon {
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;

    & svg {
        fill: var(--color-dark-grey);
        transition: var(--transition-default);
        pointer-events: none;
    }

}

.ia-search-title__icon.show,
.ia-search-title__icon--search {
    display: flex;
}

.ia-search-title__delimeter {
    display: none;
    width: 1px;
    height: 18px;
    background-color: var(--color-dark-grey);
}

.ia-search-title__icon.show+.ia-search-title__delimeter {
    display: block;
}

.ia-search-title__result-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    border-radius: var(--border-radius-default);
    overflow: hidden;
    box-shadow: 0px 4px 15px 0px #00000017;
    z-index: 3;
    background: var(--color-default);
    display: none;
    flex-grow: 1;
}

.ia-search-title__result-wrapper.is-wait {
    opacity: .7;
}

@keyframes loader {
    33%{background-size:calc(100%/3) 0%  ,calc(100%/3) 100%,calc(100%/3) 100%}
    50%{background-size:calc(100%/3) 100%,calc(100%/3) 0%  ,calc(100%/3) 100%}
    66%{background-size:calc(100%/3) 100%,calc(100%/3) 100%,calc(100%/3) 0%  }
}

.ia-search-title__result-wrapper.is-wait::before {
    content: '';
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    background-color: #f2f1f0;
}

.ia-search-title__result-wrapper.is-wait::after {
    content: '';
    opacity: 1;
    position: absolute;
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(circle closest-side, var(--color-primary) 90%, #0000);
    background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
    background-size: calc(100% / 3) 100%;
    animation: loader 1s infinite linear;
}

.ia-search-title__history-list {
    overflow: auto;
    /* max-height: 240px; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-color: var(--color-dark-grey) var(--color-default);
    scrollbar-width: thin;
}

.ia-search-title__history-list:has(.ia-search-title__history-item) {
    margin: 14px 14px 12px;
}

.ia-search-title__history-item {
    display: flex;
    width: 100%;
    padding: 16px 10px;
    justify-content: space-between;
    align-items: center;
}

.ia-search-title__history-item:nth-child(n+4) {
    display: none;
}

.ia-search-title__history-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;

    & svg {
        /* padding-top: 2px; */
        width: 16px;
        height: 16px;
        fill: var(--color-secondary);
        pointer-events: none;
        flex: none;
    }
}

.ia-search-title__history-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 20px;
    height: 20px;

    & svg {
        width: 9px;
        height: 9px;
        fill: var(--color-dark-grey);
        transition: var(--transition-default);
        pointer-events: none;
    }
}

.ia-search-title__sections {
    width: calc(100% + 24px);
    margin: 0 -12px 8px;
    padding: 0 12px;
}

.ia-search-title__tag {
    width: max-content;

    & a {
        height: 32px;
        line-height: 1;
        font-size: 14px;
        background-color: var(--color-surface-grey);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 0 16px;
        height: 32px;
        border-radius: var(--border-radius-default);
        cursor: pointer;
        transition: var(--transition-default);
    }

    & a:active {
        background-color: var(--color-primary);
        color: var(--color-default);
    }

    & b {
        font-weight: 300;
    }
}

.ia-search-title__link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 140%;
    cursor: pointer;

    svg {
        fill: var(--color-primary);
    }
}

.ia-search-title__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ia-search-title__item {
    position: relative;
    padding: 8px 12px;
    border-radius: var(--border-radius-image);
    display: flex;
    align-items: center;
    transition: var(--transition-default);
    background-color: var(--color-default);
    cursor: pointer;

    & svg {
        width: 12px;
        height: 12px;
        fill: var(--color-secondary);
        flex: none;
        margin-right: 10px;
    }

    & a {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
}

.ia-search-title__info {
    display: flex;
    flex-direction: column;
}

.ia-search-title__section {
    display: flex;
    gap: 5px;
    font-size: 12px;
    line-height: 140%;
    color: var(--color-dark-grey);
}

.ia-search-title__name {
    font-size: 14px;
    line-height: 140%;
    color: var(--color-primary);

    & b {
        font-weight: 300;
    }
}

.ia-search-title__cancel {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.4;
    height: 32px;
    flex: none;
}

.ia-search-title__popular {
    width: 100%;
    display: none;
    overflow: hidden;
    gap: 10px;
    flex-direction: column;
    padding: 20px;
}

.ia-search-title__popular--nothing {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 20px 20px 24px;
}

.ia-search-title__popular-list {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
}

.ia-search-title__title {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
}

.ia-search-title__sections-mob {
    margin-bottom: 24px;
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.ia-search-title__section-mob {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    line-height: 140%;
    min-height: 20px;

    & svg {
        width: 13px;
        height: 13px;
        margin-left: 2px;
    }

    & b {
        font-weight: 300;
    }
}

.ia-search-title__items-mob {
    width: 100%;
    display: none;
}

.ia-search-title__btn-submit {
    width: 100%;
    display: none;
}

.ia-search-title__nothing {
    margin-bottom: 16px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 4px;
    width: 100%;
}

.ia-search-title__nothing-title {
    font-size: 20px;
    line-height: 120%;
}

.ia-search-title__nothing-subtitle {
    font-size: 12px;
    line-height: 140%;
}

@media screen and (min-width: 1024px) and (hover: hover) {

    .ia-search-title__icon:hover {

        & svg {
            fill: var(--color-primary);
        }
    }

    .ia-search-title__tag {
        & a:hover {
            background-color: var(--color-accent);
            color: var(--color-default);
        }
    }

    .ia-search-title__link:hover {
        & svg {
            fill: var(--color-accent);
        }
    }

    .ia-search-title__item:hover {
        background-color: var(--color-surface-grey);
    }
}

@media screen and (max-width: 1024px) {

    .header_search_container {
        margin-right: 0;
    }

    .ia-search-title__nothing {
        margin-top: 0;
    }

    .ia-search-title {
        & .catalog-grid.ia-catalog-grid {
            margin-bottom: 24px;
        }

        & .ia-card .catalog-card__image-box {
            margin-bottom: 8px;
            padding-top: 105%;
        }

        & .ia-card .catalog-card__name {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            max-height: 3em;
        }

        & .ia-search-slider {
            display: block;
        }
    }

    .ia-search-title__input {
        height: 32px;
        padding: 0 10px 1px 28px;
        font-size: 12px;
    }

    .ia-search-title__btns {
        right: auto;
        left: 0;
    }

    .ia-search-title__icon {
        display: none !important;
    }

    .ia-search-title__delimeter {
        display: none !important;
    }

    .ia-search-title__icon--search {
        display: flex !important;
    }

    .ia-search-title.is-focus {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: var(--color-default);
        display: flex;
        flex-direction: column;

        & .ia-search-title__overlay {
            display: none;
        }

        & .ia-search-title__form {
            padding: 56px 20px 16px;
            border-bottom: 1px solid var(--color-dark-grey);
        }

        & .ia-search-title__input {
            background-color: var(--color-surface-grey);
        }

        & .ia-search-title__cancel {
            display: flex;
        }

        & .ia-search-title__btn-submit {
            display: flex;
        }



    }

    .ia-search-title__items-mob {
        display: block;
    }

    .ia-search-title__wrapper {
        gap: 10px;
    }

    .ia-search-title__result-wrapper {
        position: relative;
        top: 0;
        box-shadow: none;
        border-radius: 0;
        overflow: auto;
        scrollbar-width: none;
        flex-direction: column;
    }

    .ia-search-title__popular {
        display: flex;
    }

    .ia-search-title__tag {
        & a {
            padding: 0 12px;
            font-size: 12px;
            height: 28px;
        }
    }

    .ia-search-title__history-item:nth-child(n+4) {
        display: flex;
    }

    .ia-search-title__history-item {
        padding: 6px;
    }

    .ia-search-title__history-list {
        gap: 8px;
    }

    .ia-search-title__history-link {
        gap: 4px;
        color: var(--color-secondary);
    }

    .ia-search-title__result {
        padding: 0 20px 100px;
        box-shadow: none;
    }

    .ia-search-title__result.is-empty {
        padding-top: 41px;
    }

    .ia-search-title__sections {
        display: none;
    }

    .ia-search-title__sections-mob {
        display: flex;
    }

    .ia-search-title__title {
        margin-bottom: 13px;
    }

    .ia-search-title__result-wrapper:has(.is-full) {

        & .ia-search-title__popular {
            padding-top: 0;
            
            & .ia-search-title__title {
                display: none;
            }

            & .ia-search-title__popular-list {
                display: none;
            }
        }

    }

    .ia-search-title__result-wrapper:has(.is-empty) {
        & .ia-search-title__popular:not(.ia-search-title__popular--nothing) {
            display: none;
        }
    }

    .ia-search-title__link,
    .ia-search-title__items {
        display: none;
    }

    .ia-search-title__history-remove {

        & svg {
            fill: var(--color-secondary);
        }
    }

}
/* End */


/* Start:/local/components/itaces/menu.line/templates/.default/style.css?17562079521041*/
.ia-line__li {
    padding: 6px 0 !important;
}

.ia-line__li a {
    font-size: 14px;
    line-height: 140%;
    color: var(--color-primary);
    background-color: var(--color-default);
    transition: var(--transition-default);
    padding: 0 6px;
    display: flex;
    height: 20px;
    align-items: center;
    border-radius: 4px;
}

.head-nav>li:hover>a, 
.head-nav>li>a._active:hover {
    opacity: 1 !important;
    background-color: var(--color-surface-grey);
}

.header__main-logo {
    padding-top: 6px;
}

.header__main-menu {
    align-items: center;
}

a.header__main-menu-item {
    height: 20px;
    padding: 0 6px;
    transition: var(--transition-default);
    border-radius: 4px;
}

a.header__main-menu-item:hover {
    background-color: var(--color-surface-grey);
    color: var(--color-primary);
}

a.header__main-menu-item.higlited:hover {
    color: var(--color-red);
}

@media screen and (max-width: 1024px) {
    .header__main-logo {
        padding-top: 0;
    }
}
/* End */


/* Start:/local/components/im/callback.form/templates/a_callback/style.css?17555047682333*/
.ia-popup {
    background: #00000080;
    font-family: 'Aeroport', sans-serif !important;
    font-weight: 300;
    letter-spacing: 0;
    word-break: break-word;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    padding: 80px 20px;
    overflow-y: auto;
    color: var(--color-primary);
}

.ia-popup.is-active {
    display: flex;
}

.ia-popup.is-success {

    & .ia-popup__form {
        display: none;
    }

    & .ia-popup__success {
        display: block;
    }
}

.ia-popup__wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: auto;
    padding: 20px;
    background: var(--color-default);
    border-radius: var(--border-radius-default);
}

.ia-popup__title {
    margin-bottom: 40px;
    padding-right: 40px;
    font-size: 20px;
    line-height: 120%;
}

.ia-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 24px;
    height: 24px;
	cursor: pointer;

    & svg {
        fill: var(--color-primary);
        transition: var(--transition-default);
    }
}

.ia-popup__form {
    & .login-form__phone-input {
        margin-bottom: 4px;
    }

    & .login-form__phone-input .location-select {
        left: 1.6rem;
    }

    & .login-form__phone-input .ia-form__input {
        padding-left: 7rem;
    }

    & .ia-form__input {
        font-size: 14px;
    }
}

.ia-popup__politics {
    margin-top: 6px;
    font-size: 14px;
    line-height: 140%;
    width: 98%;

    & a {
        text-decoration: underline;
    }
}

.ia-popup__btn {
    margin-top: 40px;
    width: 100%;
}

.ia-popup__success {
    display: none;
}

.ia-popup__success-title {
    font-size: 14px;
    line-height: 140%;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.ia-popup__success-message {
    font-size: 12px;
    line-height: 140%;
}

.ia-popup__success-btn {
    width: 100%;
    margin-top: 40px;
}

.ia-popup__close:active {
	& svg {
		fill: var(--color-accent);
	}
}

@media screen and (min-width: 1024px) and (hover: hover) {
	.ia-popup__close:hover {
		& svg {
			fill: var(--color-accent);
		}
	}

}

@media screen and (max-width: 1240px) {
    .ia-popup {
        background: #000000B2;
    }
}
/* End */


/* Start:/local/templates/new_main/template_styles.css?17496260679803*/
@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: normal;
    font-weight: 300;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-light.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-light.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: normal;
    font-weight: 400;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-light.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-light.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: normal;
    font-weight: 500;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-medium.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-medium.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: normal;
    font-weight: 700;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-bold.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-bold.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: italic;
    font-weight: 300;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-lightItalic.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-lightItalic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: italic;
    font-weight: 400;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-lightItalic.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-lightItalic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: italic;
    font-weight: 500;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-mediumItalic.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-mediumItalic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Aeroport';
    font-style: italic;
    font-weight: 700;
    src: url('/local/templates/new_main/./fonts/aeroport/Aeroport-boldItalic.woff') format('woff'),
         url('/local/templates/new_main/./fonts/aeroport/Aeroport-boldItalic.ttf') format('truetype');
}

.catalog-card__compare {
    position: absolute;
    top: 1.5rem;
    right: 5rem;
    cursor: pointer;
    z-index: 100;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-card__compare.is-active path,
.catalog-card__compare.is-active rect
{
    fill: #ff6262;
}

.compare-goods-clear {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(0, 0,0,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.compare-goods-aside {
    display: flex;
    flex-direction: column;
    gap: 62px;
    margin-top: auto;
    margin-bottom: 90px;
}

.compare-items {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(0, 0,0,0.4);
}

.compare-goods-container {
    display: flex;
    gap: 40px;
}

.compare-goods-wrapper {
    display: flex;
    gap: 200px;
}

.product-compare-list {
    margin: 0;
    padding: 0;
    margin-top: 40px;
}

.product-compare-list__item {
    list-style: none;
    padding: 30px 0;
    border-top: 1px solid #ddd9d0;
}

.product-compare-list__item:last-child {
    border-bottom: 1px solid #ddd9d0;
}

.compare-goods-content .product-btn {
    width: 100%;
    opacity: 1;
    margin-top: 40px;
    display: block;
}

.compare-goods-content {
    width: 1200px;
    overflow: scroll;
}

.compare-goods-container {
    width: 1400px;
}

.delete-good {
    float: right;
    cursor: pointer;
}

.product-img__favorite {
    height: 100px;
}

@media(max-width: 700px) {
    .compare-goods-wrapper {
        display: flex;
        gap: 30px;
    }
}

.compare-goods .js-add-cart-compare {
    cursor: pointer;
}

.compare-goods .js-add-cart-compare:hover {
    color: #9f8300;
}

.compare-goods .js-add-cart-compare._added {
    color: #9e8989;
    font-weight: bold;
}

.compare-goods-clear:hover {
    color: rgb(57 57 57 / 40%);
}

@media (max-width: 991px) {
    .card-bottom-button{
        opacity: 0 !important;
        visibility: hidden !important;
    }
    .card-top-button{
        opacity: 1 !important;
        visibility: visible !important;
    }
}
@media (min-width: 992px) {
    .card-top-button{
        opacity: 0 !important;
        visibility: hidden !important;
    }
    .card-bottom-button{
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 550px) {
    .one-click-quntity-wrapper {
        flex-wrap: wrap;
    }

    .one-click-quntity-wrapper .product-counter {
        margin-top: 15px;
    }
}

.gift-menu-item.menu_desktop_version {
    padding: 0 20px 17px 10px;
}

.gift-menu-item .menu-item-text {
    display: none;
}

.gift-menu-item .menu-item-link:hover svg rect {
    stroke: #bb793e;
}

.gift-menu-item .menu-item-link:hover svg path,
.gift-menu-item .menu-item-link:hover svg rect:not(:first-child) {
    stroke: #bb793e;
    fill: #bb793e;
}

@media (width < 1241px) {
    .gift-menu-item .menu-item-text {
        display: block;
    }

    .gift-menu-item .gift-menu-item-icon {
        display: none;
    }
}

.gift-menu-item-icon {
    height: 16px;
}

.one-click-offers-select__hide {
    display: none;
}

.block-w-slider__slider .swiper-wrapper .swiper-slide {
    height: auto;
}

.block-w-slider-img {
    position: absolute;
    z-index: -1;
}

.block-w-slider {
    gap: 32px;
    padding: 0;
}

.block-w-slider__content {
    display: flex;
    width: 35%;
    padding-right: 0;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    justify-content: flex-end;
}

.block-w-slider-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    object-fit: cover;
}

.block-w-slider__content .block-w-slider__content-title,
.block-w-slider__content .block-w-slider__content-description {
    color: #fff;
    padding: 0 34px;
}

.block-w-slider__content .button {
    background: #fff;
    color: #171717;
    margin-left: 34px;
    margin-bottom: 34px;
}

.seo-block {
    padding: 0;
    border-top: 0;
}

.seo-block__box-title.title.main-title {
    text-align: center;
    margin-bottom: 32px;
}

.seo-block__box {
    position: relative;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.seo-block img {
    width: 100%;
    position: absolute;
    z-index: -1;
    height: 100%;
}

.seo-block__box .seo-block__box-title,
.seo-block__box .seo-block__box-description {
    color: #fff;
    padding: 0 42px;
}

.seo-block__box .button {
    background: #171717;
    border: 1px solid #fff;
    color: #fff;
    margin-left: 42px;
    margin-bottom: 52px;
    margin-top: 32px;
}

.seo-block__box .button .button-icon-after {
    display: none;
}

#order {
    margin-top: 60px;
}

.cart-page__title title {
    margin: 0;
}

.cart-page__title-box,
.cart-page__wrapper {
    max-width: 100%;
    margin: 0;
}

.container.container--basket {
    margin: 0;
}

.cart-page__title.title {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.order__wrapper .cart-page__col .catalog-card__price {
    width: 200px;
    align-items: flex-end;
}

.order__wrapper .cart-page__col .catalog-card__actions_hover {
    margin-left: auto;
}

.cart-page__wrapper .block-w-slider {
    gap: 0;
}

.cart-page__wrapper .block-w-slider .cart-page__form-box-text {
    margin-bottom: 0;
}

.cart-page__title-box {
    margin-bottom: 32px !important;
    align-items: center;
}

.cart-page__col .cart-list_hover {
    margin-bottom: 52px;
}

/*.new-slider-wrap {*/
/*    position: relative;*/
/*}*/

.cart-page__wrapper .cart-page__col .catalog-card_hover {
    margin-top: 0;
}

.catalog-card__info p {
    margin-bottom: 0;
}

.cart-page__wrapper .swiper-arrow {
    transform: initial;
}

@media (max-width: 992px) {
    .block-w-slider__content {
        height: 426px;
        width: 100%;
        text-align: left;
        padding: 34px 0;
    }

    .block-w-slider__content .block-w-slider__content-description {
        margin: 0;
        margin-bottom: 24px;
    }

    .block-w-slider__content .button {
        display: block;
    }

    .seo-block {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) {
    .block-w-slider__content {
        padding: 17px 0;
    }

    .block-w-slider__content .block-w-slider__content-title,
    .block-w-slider__content .block-w-slider__content-description {
        padding: 0 17px;
    }

    .block-w-slider__content .button {
        margin-left: 17px;
        margin-bottom: 40px;
    }

    .seo-block__box {
        height: 426px;
    }

    .seo-block__box .seo-block__box-title,
    .seo-block__box .seo-block__box-description {
        color: #fff;
        padding: 0 30px;
    }

    .seo-block__box .button {
        margin-left: 30px;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .order__wrapper .cart-page__col .catalog-card__content_hover {
        flex-direction: column;
        align-items: flex-start;
    }

    .order__wrapper .cart-page__col .catalog-card__price {
        width: auto;
        align-items: flex-start;
    }

    .order__wrapper .cart-page__col .catalog-card__actions_hover {
        margin-left: initial;
    }
}

.phone-mask + .error-message {
    margin-top: 16px;
}

.error-message {
    font-size: 13px;
    margin-top: -5px;
    margin-bottom: 16px;
    padding-left: 16px;
    color: #9E0000;
}

.form-input.error {
    border: 1px solid #9E0000;
}

@media (max-width: 600px) {
    .phone-mask + .error-message {
        margin-top: 12px;
    }

    .error-message {
        font-size: 13px;
        margin-top: -10px;
        margin-bottom: 20px;
        padding-left: 10px;
        color: #9E0000;
    }
}

/* End */
/* /local/css/itaces.pairstore/basket.css?17521562895307 */
/* /local/templates/new_main/css/swiper-bundle-9.min.css?175093580218065 */
/* /local/templates/new_main/css/fancybox.css?174763284315598 */
/* /local/templates/new_main/css/style.css?175940394494696 */
/* /local/templates/new_main/css/custom.css?175525283040282 */
/* /local/templates/new_main/css/custom_new.css?175931815998035 */
/* /local/templates/new_main/css/new_pages.css?175938697628854 */
/* /local/templates/new_main/css/ext.css?175277726610235 */
/* /local/components/itaces/menu.sections/templates/.default/style.css?175669980112421 */
/* /local/components/sotbit/search.page/templates/a_search_head/style.css?175931741213829 */
/* /local/components/itaces/menu.line/templates/.default/style.css?17562079521041 */
/* /local/components/im/callback.form/templates/a_callback/style.css?17555047682333 */
/* /local/templates/new_main/template_styles.css?17496260679803 */
