@charset "UTF-8";
.icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.icon svg {
    width: 100%;
    height: 100%;
    transition: all .25s linear;
    fill: currentColor;
    display: block
}

body .header-top {
    background: var(--gray)
}

body .icon-place svg {
    fill: transparent;
    stroke: var(--black-2)
}

body .icon-place-arrow svg {
    fill: var(--black-2);
    opacity: .5
}

body .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange);
    padding: .0625rem 0 0 .0625rem
}

body .social-link:hover {
    background: var(--orange-2)
}

body .header-place__text {
    transition: all .25s linear
}

body .header-place:hover .header-place__text {
    color: var(--orange-2);
    border-bottom: .0625rem solid var(--orange-2)
}

body .header-place:hover .icon-place svg {
    stroke: var(--orange-2)
}

body .header-place:hover .icon-place-arrow svg {
    fill: var(--orange-2)
}

body .header-menu__link-point {
    transition: all .25s linear
}

body .header-menu__link:hover .header-menu__link-point {
    color: var(--orange-2);
    border-bottom: .0625rem solid var(--orange-2)
}

body .header-callback {
    line-height: 1
}

body .header-callback:hover {
    color: var(--orange-2);
    border-bottom: .0625rem solid var(--orange-2)
}

body .icon-action {
    background: var(--orange);
    border-radius: 50%
}

body .icon-action svg {
    fill: transparent;
    opacity: 1;
    margin-left: 0;
    width: .625rem;
    padding-left: .0625rem;
    stroke: var(--white)
}

body .header-event-item:hover svg {
    stroke: var(--orange-2)
}

body .header-event__icon svg {
    fill: transparent;
    stroke: var(--black-2)
}

body .header-event-count {
    background: var(--black);
    color: var(--white);
    font-size: .8125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

body .search-default__icon {
    position: absolute;
    right: .9375rem
}

body .header-menu__item {
    position: relative
}

body .header-menu__item:hover .header-menu__submenu {
    opacity: 1;
    z-index: 2;
    pointer-events: auto
}

body .header-menu__submenu {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    z-index: 2;
    padding-top: .9375rem;
    opacity: 0;
    transition: all .25s linear;
    pointer-events: none
}

body .submenu-items {
    transition: all .25s linear;
    white-space: nowrap;
    background: var(--white);
    box-shadow: .3125rem .3125rem 2.1875rem rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    gap: .625rem;
    padding: 1.25rem 1.375rem;
    border-radius: .625rem
}

body .submenu-link {
    border-bottom: .0625rem solid transparent;
    line-height: 1
}

body .submenu-link.active, body .submenu-link:hover {
    border-bottom: .0625rem solid var(--orange-2)
}

body .header-event-item_favorite .header-event-count {
    margin-left: -.25rem;
    background: var(--orange-2)
}

body .header-mobile {
    background: var(--gray)
}

body .button-search-open .icon svg {
    fill: var(--black);
    stroke: transparent
}

body .button-brown {
    background: var(--orange-2);
    color: var(--white)
}

body .button-brown:hover {
    background: #886a52;
    color: var(--white)
}

body .button-brown[disabled] {
    background: var(--gray-2);
    color: var(--white)
}

body .button-border {
    background: var(--white);
    border: .0625rem solid var(--gray-2)
}

body .button-border:hover {
    background: var(--orange-2);
    border: .0625rem solid var(--orange-2);
    color: var(--white)
}

body .button-border[disabled] {
    background: var(--gray-2);
    color: var(--white)
}

body .button-border-brown {
    background: var(--white);
    color: var(--orange-2);
    border: .0625rem solid var(--orange-2)
}

body .button-border-brown:hover {
    background: var(--orange-2);
    border: .0625rem solid var(--orange-2);
    color: var(--white)
}

body .button-border-brown[disabled] {
    background: var(--gray-2);
    color: var(--white)
}

.header-catalog__container {
    max-width: 75rem;
    width: 100%;
    background: #fff;
    margin: 0 auto;
    position: relative;
    border-radius: .625rem
}

.header-catalog__head {
    padding: 3.5rem 4.25rem 2.125rem;
    border-bottom: .0625rem solid var(--orange-4)
}

.header-catalog__style {
    padding: 2.5rem 3.125rem 3.125rem 4.0625rem;
    width: 18.4375rem;
    border-right: .0625rem solid var(--orange-4)
}

.header-catalog__style .button {
    padding: 0
}

.header-catalog__style-items {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2.8125rem
}

.header-catalog__style-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #797979
}

.header-catalog__style-link.active {
    color: #000
}

.header-catalog__flex {
    display: flex
}

.header-catalog__elements {
    width: calc(100% - 18.4375rem);
    justify-content: space-between;
    padding: 2.625rem 4.375rem 3.125rem 3.125rem;
    opacity: 0;
    display: none
}

.header-catalog__elements.active {
    display: flex;
    animation: showMenu .25s linear forwards
}

@keyframes showMenu {
    to {
        opacity: 1
    }
}

.header-catalog__elements-pic {
    width: 18.75rem;
    flex-shrink: 0;
    margin-left: 6.25rem
}

.header-catalog__elements-pic img {
    border-radius: .5rem
}

.header-catalog__elements-menu {
    width: calc(100% - 25rem);
    display: flex;
    justify-content: space-between
}

.header-catalog__main {
    display: flex;
    flex-direction: column;
    gap: .375rem
}

.header-catalog__main-link {
    font-size: 1rem;
    border-bottom: .0625rem solid transparent;
    display: inline-block;
    line-height: 1.2
}

.header-catalog__main-link:hover {
    color: var(--orange-2);
    border-bottom: .0625rem solid var(--orange-2)
}

.catalog-active {
    overflow: hidden;
}

.catalog-active .blackout {
    opacity: 1;
    pointer-events: auto
}

.header-catalog.active {
    opacity: 1;
    pointer-events: auto
}

.main-header__first {
    padding: 4.6875rem 1.5625rem 2.5rem;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1
}

@media (max-width: 767px) {
    .main-header__first {
        padding-top: 1.875rem
    }
}

.main-header__menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.0625rem 0;
    font-size: 1.125rem;
    font-weight: 700
}

.main-header__menu-head svg {
    transform: rotate(-90deg);
    width: .6875rem;
    height: .6875rem;
    fill: rgba(0, 0, 0, .5)
}

.main-header__menu-item {
    border-bottom: .0625rem solid var(--orange-4)
}

.main-header__menu-item:last-child {
    border-bottom: none
}

.main-header__menu {
    margin-bottom: 1.25rem
}

.main-header__light {
    display: block;
    column-count: 2;
    margin-bottom: .625rem;
    padding-right: 2.25rem
}

.main-header__light-item {
    break-inside: avoid-column;
    margin-bottom: 1.125rem
}

.main-header__light-link {
    font-size: 1.125rem;
    font-weight: 500
}

.main-header__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3.125rem
}

.main-header__bottom .header-callback, .main-header__bottom .social {
    margin-left: 0;
    font-size: 1rem
}

.main-header__bottom .social-link {
    width: 2.5rem;
    height: 2.5rem
}

.main-header__bottom .social-link img {
    width: 1.25rem
}

.main-header__menu-dop.show {
    left: 0;
    overflow-x: hidden;
}

.main-header__menu-dop.menu-level-open > .main-header__back,
.main-header__menu-dop.menu-level-open > .button,
.main-header__menu-dop.menu-level-open > .main-header__menu-dop__items > .main-header__menu-dop__item:not(.menu-level-current),
.main-header__menu-dop.menu-level-open > .main-header__menu-dop__items > .main-header__menu-dop__item.menu-level-current > .main-header__menu-dop__head {
    opacity: 0;
    pointer-events: none;
}

.main-header-phone {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: .625rem
}

.main-header__menu-dop {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 4.6875rem 1.5625rem;
    background: #fff;
    z-index: 2;
    transition: left .25s linear
}

@media (max-width: 767px) {
    .main-header__menu-dop {
        padding-top: 1.875rem
    }
}

.main-header__back {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5625rem
}

.main-header__back svg {
    transform: rotate(90deg);
    width: .6875rem;
    height: .6875rem;
    fill: rgba(0, 0, 0, .5);
    margin-right: .625rem
}

.main-header__menu-dop__items {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    padding-left: 1.375rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.875rem
}

.main-header__menu-dop__head {
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500
}

.main-header__menu-dop__head:hover {
    color: var(--orange-2)
}

.mobile-menu-active {
    overflow: hidden;
}

.mobile-menu-active .main-header {
    left: 0
}

.mobile-menu-active .blackout {
    opacity: 1;
    pointer-events: auto
}

@media (max-width: 1279px) {
    .mobile-menu-active .blackout {
        opacity: 0;
        pointer-events: none
    }
}

@media (max-width: 767px) {
    .mobile-menu-active .icon-hamburger-close {
        opacity: 1
    }

    .mobile-menu-active .icon-burger {
        opacity: 0
    }
}

button {
    transition: all .25s linear
}

@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") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: $ themeColor
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.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-ios .swiper-slide, .swiper-wrapper {
    transform: translate3d(0, 0, 0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: initial;
    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);
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 75rem
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 75rem
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.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-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .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-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: .0625rem;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: .0625rem;
    height: var(--swiper-centered-offset-after)
}

.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-lazy-preloader {
    width: 2.625rem;
    height: 2.625rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -1.3125rem;
    margin-top: -1.3125rem;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: .25rem 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 {
    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(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.swiper-arrow {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    top: calc(50% - 1.25rem);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .0625rem solid var(--white);
    transition: all .25s linear
}

.swiper-arrow svg {
    width: .625rem;
    height: .625rem;
    fill: var(--white)
}

.swiper-arrow:hover {
    background: var(--white)
}

.swiper-arrow:hover svg {
    fill: var(--black)
}

@media (max-width: 1279px) {
    .swiper-arrow {
        width: 2.5rem;
        height: 2.5rem;
        top: calc(50% - 1.25rem)
    }
}

.slider-start .swiper-arrow {
    width: 3.125rem;
    height: 3.125rem;
    top: calc(50% - 1.5625rem)
}

@media (max-width: 1279px) {
    .slider-start .swiper-arrow {
        width: 2.5rem;
        height: 2.5rem;
        top: calc(50% - 1.25rem)
    }
}

.swiper-arrow-prev {
    left: 2.5rem
}

@media (max-width: 1279px) {
    .swiper-arrow-prev {
        left: 1.25rem
    }
}

.swiper-arrow-next {
    right: 2.5rem
}

@media (max-width: 1279px) {
    .swiper-arrow-next {
        right: 1.25rem
    }
}

.swiper-button-disabled {
    opacity: .5;
    pointer-events: none
}

.slider-start .swiper-pagination {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 3.125rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 1.875rem;
    height: 2.1875rem;
    padding: 0 1.75rem;
    z-index: 1
}

@media (max-width: 1660px) {
    .slider-start .swiper-pagination {
        bottom: 1.875rem
    }
}

@media (max-width: 1279px) {
    .slider-start .swiper-pagination {
        bottom: 1.25rem
    }
}

@media (max-width: 767px) {
    .slider-start .swiper-arrow {
        display: none
    }
}

.slider-start .swiper-pagination-bullet {
    width: .625rem;
    height: .625rem;
    transition: all .25s linear;
    border-radius: 50%;
    margin: 0 .625rem;
    cursor: pointer;
    position: relative;
    background: #f1e0cc
}

.slider-start .swiper-pagination-bullet-active {
    border-radius: .625rem;
    width: 2.8125rem;
    opacity: 1
}

.slider-start .swiper-pagination-bullet-active:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 0;
    border-radius: 1.25rem;
    height: 100%;
    animation: bullet 5s linear forwards;
    background: var(--orange-2)
}

@keyframes bullet {
    to {
        width: 100%
    }
}

.product-colors-swiper {
    margin: 0
}

.product-pic-container .swiper-pagination {
    position: absolute;
    width: calc(100% - 1.25rem);
    left: .625rem;
    z-index: 1;
    bottom: 2.1875rem;
    gap: .5rem;
    display: flex;
    transition: all .25s linear;
    opacity: 0;
    height: .75rem;
    align-items: center;
    background: 0 0
}

@media (max-width: 1279px) {
    .product-pic-container .swiper-pagination {
        opacity: 1;
        bottom: -1.25rem;
        left: 0;
        width: 100%
    }
}

.product-pic-container .swiper-pagination-bullet {
    height: .75rem;
    width: 100%;
    transition: all .25s linear;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: 0 0 !important;
    position: relative
}

.product-pic-container .swiper-pagination-bullet:before {
    content: "";
    background: var(--white);
    position: absolute;
    left: 0;
    width: 100%;
    height: .125rem;
    background: #fff
}

@media (max-width: 1279px) {
    .product-pic-container .swiper-pagination-bullet:before {
        background: var(--gray-9)
    }
}

.product-pic-container .swiper-pagination-bullet-active:before {
    background: var(--black)
}

@media (max-width: 1279px) {
    .product-pic-container {
        margin-bottom: 2.5rem !important
    }
}

.slider-container {
    position: relative
}

.slider-container .swiper-arrow {
    top: 11.25rem;
    background: var(--white);
    box-shadow: .3125rem .9375rem 1.5625rem rgba(0, 0, 0, .19)
}

.slider-container .swiper-arrow svg {
    fill: var(--black)
}

@media (max-width: 1660px) {
    .slider-container .swiper-arrow {
        top: 8rem
    }
}

@media (max-width: 1279px) {
    .slider-container .swiper-arrow {
        top: calc(50% - 3.75rem)
    }
}

@media (max-width: 767px) {
    .slider-container .swiper-arrow {
        display: none
    }
}

.slider-container .swiper-arrow:hover {
    background: var(--orange-2)
}

.slider-container .swiper-arrow:hover svg {
    fill: var(--white)
}

.slider-container .swiper-arrow-prev {
    left: -1.5625rem
}

@media (max-width: 1279px) {
    .slider-container .swiper-arrow-prev {
        left: -1.125rem
    }
}

.slider-container .swiper-arrow-next {
    right: -1.5625rem
}

@media (max-width: 1279px) {
    .slider-container .swiper-arrow-next {
        right: -1.125rem
    }
}

.slider-container .swiper-button-disabled {
    display: none
}

@media (max-width: 767px) {
    .slider-project .swiper-container, .slider-series .swiper-container {
        margin: 0 -.9375rem;
        padding: 0 .9375rem
    }
}

.product-swiper {
    margin: -2.5rem;
    padding: 2.5rem
}

@media (max-width: 1279px) {
    .product-swiper {
        margin: -1.25rem;
        padding: 1.25rem
    }
}

@media (max-width: 767px) {
    .product-swiper {
        margin: -.9375rem;
        padding: .9375rem
    }
}

.idea-swiper {
    overflow: visible
}

.facts-slider .swiper-slide:last-child .fact-item {
    border-right: none
}

@media (max-width: 1279px) {
    .facts-slider .swiper-slide:last-child .fact-item {
        padding-right: 0
    }
}

@media (max-width: 1279px) {
    .facts-slider .swiper-slide:first-child .fact-item {
        padding-left: 0
    }

    .facts-slider .swiper-slide:first-child .fact-pic__info {
        left: 1.25rem
    }
}

@media (max-width: 1279px) {
    .facts-slider {
        width: calc(100% + 2.5rem);
        margin: 0 -1.25rem !important;
        padding: 0 1.25rem !important
    }
}

@media (max-width: 767px) {
    .facts-slider {
        width: calc(100% + 1.875rem);
        margin: 0 -.9375rem !important;
        padding: 0 .9375rem !important
    }
}

.input {
    border: .0625rem solid var(--gray-2);
    padding: 0 1.25rem;
    border-radius: .375rem;
    width: 100%
}

@media (max-width: 1660px) {
    .input {
        padding: 0 .9375rem
    }
}

[data-simplebar] {
    overflow: auto;
    position: relative;
    max-height: 100dvh;
    display: block
}

[data-simplebar]::-webkit-scrollbar {
    display: none;
    width: 0
}

.simplebar-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0
}

.simplebar-offset {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch
}

.simplebar-content-wrapper {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.simplebar-content-wrapper::-webkit-scrollbar, .simplebar-hide-scrollbar::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0
}

.simplebar-content:after, .simplebar-content:before {
    content: " ";
    display: table
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
    display: none
}

.simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: .0625rem;
    position: relative;
    float: left;
    max-height: .0625rem;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: .0625rem;
    min-width: .0625rem;
    overflow: hidden;
    pointer-events: none;
    z-index: -1
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden
}

[data-simplebar].simplebar-dragging {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all
}

.simplebar-scrollbar {
    position: absolute;
    left: 0;
    right: 0;
    min-height: .625rem
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: #000;
    border-radius: .4375rem;
    left: .125rem;
    right: .125rem;
    opacity: 0;
    transition: opacity .2s .5s linear
}

.simplebar-scrollbar.simplebar-visible:before {
    opacity: .5;
    transition-delay: 0s;
    transition-duration: 0s
}

.simplebar-track.simplebar-vertical {
    top: 0;
    width: .6875rem
}

.simplebar-scrollbar:before {
    top: .125rem;
    bottom: .125rem;
    left: .125rem;
    right: .125rem
}

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: .6875rem
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: 0;
    bottom: 0;
    min-height: 0;
    min-width: .625rem;
    width: auto
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0
}

.simplebar-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 31.25rem;
    width: 31.25rem;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: scrollbar !important
}

.simplebar-dummy-scrollbar-size > div {
    width: 200%;
    height: 200%;
    margin: .625rem 0
}

.simplebar-hide-scrollbar {
    position: fixed;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none
}

body > .simplebar-wrapper > .simplebar-mask > .simplebar-offset > .simplebar-content-wrapper > .simplebar-content {
    min-height: 100dvh;
    display: flex;
    flex-direction: column
}

.slider-start {
    color: var(--white);
    position: relative
}

.slider-start .swiper-slide {
    position: relative
}

.slider-start .swiper-slide:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, .5), transparent)
}

.slider-start .swiper-slide-active .slider-start__content .size-72 {
    animation: showSlide .5s linear .2s forwards
}

.slider-start .swiper-slide-active .slider-start__content .size-22 {
    animation: showSlide .5s linear .3s forwards
}

.slider-start .swiper-slide-active .slider-start__content .more-details {
    animation: showSlide .5s linear .4s forwards
}

.slider-start .container {
    position: relative;
    z-index: 1
}

@keyframes showSlide {
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.more-details__text {
    position: relative;
    padding-bottom: .125rem
}

.more-details__text:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--orange);
    height: .0625rem
}

.more-details {
    color: var(--black)
}

.more-details:hover {
    color: var(--orange)
}

.more-details:hover .icon:before {
    stroke: var(--orange)
}

.more-details_white {
    color: var(--white)
}

.more-details_white:hover {
    color: var(--orange)
}

.more-details_white:hover .icon:before {
    stroke: var(--orange)
}

.slider-start__content .size-72 {
    opacity: 0;
    transform: translateY(1.25rem)
}

.slider-start__content .size-22 {
    opacity: 0;
    transform: translateY(1.25rem)
}

.slider-start__content .more-details {
    opacity: 0;
    transform: translateY(1.25rem);
    color: var(--white)
}

.slider-start__content .more-details:hover {
    color: var(--orange-2)
}

.product {
    transition: all .25s linear;
    border-radius: .5rem
}

@media (min-width: 1279px) {
    .product:hover {
        box-shadow: 0 .25rem 1.5625rem rgba(0, 0, 0, .07)
    }

    .product:hover .swiper-pagination {
        opacity: 1
    }
}

.button-basket {
    width: 2.6875rem;
    height: 2.6875rem;
    background: var(--orange-6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0
}

.button-basket svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: transparent;
    stroke: var(--black)
}

@media (max-width: 767px) {
    .button-basket svg {
        width: 1rem;
        height: 1rem
    }
}

.button-basket.active {
    background: var(--orange-2)
}

.button-basket.active svg {
    stroke: var(--white)
}

@media(min-width: 991px) {
    .button-basket:hover {
        background: var(--gray-7)
    }

    .button-basket:hover svg {
        stroke: var(--white)
    }
}

.button-basket.loader {
    background: var(--black)
}

.button-basket.loader svg {
    opacity: 0
}

.button-basket.loader .spinner {
    opacity: 1
}

@media (max-width: 767px) {
    .button-basket {
        width: 2.1875rem;
        height: 2.1875rem
    }
}

.custom-tooltip {
    position: absolute;
    background: var(--black);
    color: var(--white);
    padding: .625rem 1.25rem;
    border-radius: .625rem;
    font-size: .75rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 9999;
    font-weight: 700;
    margin-bottom: -.3125rem
}

.custom-tooltip:before {
    content: "";
    width: .875rem;
    height: .875rem;
    position: absolute;
    left: calc(50% - .4375rem);
    bottom: -.1875rem;
    background: var(--black);
    transform: rotate(45deg)
}

.custom-tooltip.visible {
    opacity: 1
}

.custom-tooltip.bottom {
    margin-bottom: auto
}

.custom-tooltip.bottom.visible:before {
    bottom: auto;
    top: -.1875rem
}

.spinner {
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    opacity: 0
}

@media (max-width: 767px) {
    .spinner {
        width: 1rem;
        height: 1rem
    }
}

.spinner-line {
    position: absolute;
    inset: 0;
    border: .125rem solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite
}

.spinner-line2 {
    border-width: .0625rem;
    border-top-color: #fff
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

.button-favorite {
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: .625rem;
    right: .625rem;
    padding: .0625rem 0 0 0;
    z-index: 2
}

@media (min-width: 991px) {
    .button-favorite:hover .button-favorite-relative {
        opacity: 0
    }

    .button-favorite:hover .button-favorite-absolute {
        opacity: 1
    }
}

.button-favorite.active {
    background: var(--white)
}

.button-favorite.active .button-favorite-relative {
    opacity: 0
}

.button-favorite.active .button-favorite-absolute {
    opacity: 0
}

.button-favorite.active .button-favorite-delete {
    opacity: 1
}

.button-favorite.active:hover {
    background: var(--gray-8)
}

@media (max-width: 1660px) {
    .button-favorite {
        top: .3125rem;
        right: .3125rem
    }
}

@media (max-width: 767px) {
    .button-favorite {
        width: 1.875rem;
        height: 1.875rem;
        top: .3125rem;
        row-gap: .3125rem
    }
}

.button-favorite-relative {
    transition: opacity .25s linear;
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--black);
    fill: transparent
}

.button-favorite-absolute {
    opacity: 0;
    position: absolute;
    transition: opacity .25s linear;
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--orange-2)
}

.button-favorite-delete {
    opacity: 0;
    position: absolute;
    transition: opacity .25s linear;
    width: .625rem;
    height: .625rem;
    stroke: var(--black)
}

.pic-link {
    display: flex;
    flex-direction: column;
    align-items: center
}

.pic-link:hover img {
    transform: scale(1.1)
}

.pic-link__img {
    position: relative;
    padding-bottom: 137%;
    border-radius: .5rem;
    overflow: hidden;
    width: 100%
}

.pic-link__img picture {
    position: absolute
}

.pic-link__img img {
    transition: all .25s linear;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: .5rem
}

@media (max-width: 1660px) {
    .pic-link__img {
        padding-bottom: 153%
    }
}

@media (max-width: 1279px) {
    .pic-link__img {
        padding-bottom: 150%
    }
}

@media (max-width: 767px) {
    .pic-link__img {
        padding-bottom: 156%
    }
}

.popular-section {
    background-color: var(--orange-6);
    height: 56.25rem;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden
}

.popular-section .container {
    position: relative;
    z-index: 1
}

.popular-section p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 46.25rem
}

@media (max-width: 1660px) {
    .popular-section p {
        max-width: 38.4375rem
    }
}

@media (max-width: 1279px) {
    .popular-section p {
        max-width: 30.1875rem
    }
}

@media (max-width: 1660px) {
    .popular-section {
        height: 50rem
    }
}

@media (max-width: 1279px) {
    .popular-section {
        background-image: none !important;
        height: auto;
        padding: 0 0 5rem
    }
}

@media (max-width: 767px) {
    .popular-section {
        padding: 0 0 2.8125rem
    }
}

.popular-pic {
    position: absolute;
    top: 0;
    width: 28%;
    height: 100%;
    overflow: hidden
}

.popular-pic img {
    display: block;
    width: 100%;
    height: auto
}

@media (max-width: 1660px) {
    .popular-pic {
        width: 30%
    }
}

@media (max-width: 1279px) {
    .popular-pic {
        display: none
    }
}

.popular-pic_left {
    left: -4%
}

.popular-pic_right {
    right: -3%
}

.popular-door-pic {
    display: none
}

@media (max-width: 1279px) {
    .popular-door-pic {
        display: flex;
        margin-bottom: 4.375rem
    }
}

@media (max-width: 767px) {
    .popular-door-pic {
        margin-bottom: 2.5rem
    }
}

.product-tags {
    top: .9375rem;
    left: .625rem;
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    gap: .25rem;
    z-index: 2
}

@media (max-width: 1660px) {
    .product-tags {
        top: .625rem
    }
}

@media (max-width: 767px) {
    .product-tags {
        top: .625rem
    }
}

.product-tag {
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    height: 1.875rem;
    padding: 0 .625rem;
    border-radius: .625rem;
    display: flex;
    align-items: center
}

@media (max-width: 1660px) {
    .product-tag {
        font-size: .875rem
    }
}

@media (max-width: 767px) {
    .product-tag {
        font-size: .8125rem;
        height: 1.4375rem
    }
}

.product-tag_sale {
    background: var(--orange-7);
    color: var(--white)
}

.price-old {
    color: #787878;
    margin-left: 1rem;
    text-decoration: line-through
}

.section-idea {
    overflow: hidden;
    background: var(--orange-8)
}

.idea-slide {
    position: relative
}

.idea-slide__name {
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--black);
    height: 2.5625rem;
    display: flex;
    align-items: center;
    padding: 0 .9375rem;
    color: var(--white);
    position: absolute;
    border-radius: 2rem;
    pointer-events: none
}

.idea-slide__pic {
    position: relative;
    padding-bottom: 67%;
    pointer-events: none
}

.idea-slide__pic picture {
    position: absolute;
    top: 0;
    left: 0
}

.idea-slide__pic img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.idea-slide__dot {
    position: absolute
}

.idea-slide__dot.open {
    z-index: 1
}

.idea-slide__dot.open .idea-slide__dot-content {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1)
}

.idea-slide__dot-content {
    padding: 1.25rem;
    background: var(--white);
    border-radius: .625rem;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 15.625rem;
    transform: scale(.95);
    transition: opacity .25s ease, transform .25s ease
}

.idea-slide__dot-icon {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .7)
}

.idea-slide__dot-icon:before {
    content: "";
    background: var(--orange-2);
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%
}

.idea-link {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: .875rem;
    border-radius: .5rem;
    width: 1.5625rem;
    height: 1.5625rem
}

.idea-link svg {
    fill: var(--white);
    width: .625rem;
    height: .625rem
}

.idea-link:hover {
    background: var(--orange-2)
}

@media (max-width: 1279px) {
    .more-details-desktop {
        display: none !important
    }
}

@media (min-width: 1279px) {
    .more-details-mobile {
        display: none !important
    }
}

.advantages-items {
    display: flex;
    border-bottom: .0625rem solid var(--orange-4);
    padding-bottom: 2.8125rem
}

@media (max-width: 1279px) {
    .advantages-items {
        border-bottom: none;
        padding-bottom: 0;
        flex-direction: column
    }
}

.advantages-item {
    width: 33.3%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center
}

.advantages-item:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2.8125rem;
    height: 100%;
    width: .0625rem;
    background: linear-gradient(to bottom, transparent, var(--orange-4))
}

@media (max-width: 1279px) {
    .advantages-item:before {
        display: none
    }
}

.advantages-item:last-child:before {
    display: none
}

@media (max-width: 1279px) {
    .advantages-item:last-child {
        border-bottom: .0625rem solid var(--orange-4)
    }
}

.advantages-item p {
    max-width: 25.625rem;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 1660px) {
    .advantages-item p {
        max-width: 21.875rem
    }

    .advantages-item p br {
        display: none
    }
}

@media (max-width: 1279px) {
    .advantages-item p {
        max-width: 25.625rem;
        margin: 0
    }
}

@media (max-width: 1279px) {
    .advantages-item {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 2.5rem 0;
        width: 100%;
        border-top: .0625rem solid var(--orange-4)
    }

    .advantages-item .text-center {
        text-align: left
    }
}

@media (max-width: 767px) {
    .advantages-item {
        align-items: flex-start;
        padding: 1.875rem 0
    }
}

@media (max-width: 767px) {
    .advantages-item {
        padding-bottom: 5rem
    }
}

.advantages-item__pic {
    width: 10.3125rem;
    height: 10.3125rem;
    margin-top: 2.5rem;
    transform: translateY(2.8125rem);
    margin-bottom: -2.8125rem
}

@media (max-width: 1279px) {
    .advantages-item__pic {
        transform: translateY(0);
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 1.25rem;
        margin-right: 2.5rem
    }
}

@media (max-width: 767px) {
    .advantages-item__pic {
        margin-right: 0;
        flex-shrink: 0;
        width: 6.25rem;
        margin-left: .4375rem;
        height: auto;
        margin-top: 3.625rem
    }
}

.section-facts {
    padding: 6.25rem 0;
    background: var(--orange-8)
}

.facts-container {
    display: flex
}

@media (max-width: 1279px) {
    .facts-container {
        flex-direction: column
    }
}

.facts-content {
    width: 33.4375rem;
    flex-shrink: 0;
    padding-top: 12.3%;
    position: relative;
    border-right: .0625rem solid var(--orange-4)
}

.facts-content p {
    padding-left: 4.0625rem;
    margin-top: 39%
}

@media (max-width: 1660px) {
    .facts-content p {
        padding-left: 1.5625rem
    }
}

@media (max-width: 1279px) {
    .facts-content p {
        padding-left: 0;
        margin-top: 1.875rem
    }
}

.facts-content:before {
    content: "";
    position: absolute;
    top: 41%;
    right: 0;
    width: 8.4375rem;
    background: var(--orange-4);
    height: .0625rem
}

@media (max-width: 1660px) {
    .facts-content:before {
        width: 6.25rem;
        top: 36%
    }
}

@media (max-width: 1279px) {
    .facts-content:before {
        display: none
    }
}

@media (max-width: 1660px) {
    .facts-content {
        width: 30.9375rem
    }
}

@media (max-width: 1279px) {
    .facts-content {
        width: 100%;
        padding-top: 0;
        border-bottom: .0625rem solid var(--orange-4);
        border-right: none;
        padding-bottom: 2.5rem;
        margin-bottom: 3.125rem;
        flex-direction: column
    }

    .facts-content br {
        display: none;
        padding-right: 0;
        padding-bottom: 3.125rem;
        margin-bottom: 3.125rem
    }
}

@media (max-width: 767px) {
    .facts-content {
        padding-bottom: 1.875rem;
        margin-bottom: 1.875rem
    }
}

.fact-title__text {
    margin-left: 1.25rem
}

.fact-item {
    padding: 0 3.125rem 2.5rem;
    border-right: .0625rem solid var(--orange-4)
}

@media (max-width: 767px) {
    .fact-item {
        padding: 0;
        border: none
    }
}

.fact-pic__info {
    position: absolute;
    top: 1.25rem;
    left: 4.375rem
}

.fact-pic__info:hover .fact-pic__info-icon {
    background: var(--orange-2)
}

.fact-pic__info:hover .fact-pic__info-icon svg {
    fill: var(--white)
}

.fact-pic__info:hover .fact-pic__info-content {
    opacity: 1
}

@media (max-width: 767px) {
    .fact-pic__info {
        left: .625rem !important;
        top: .625rem
    }
}

.fact-pic__info-icon {
    width: 2.8125rem;
    height: 2.8125rem;
    background: var(--white);
    display: flex;
    align-items: center;
    border-radius: .25rem;
    transition: all .25s linear;
    justify-content: center
}

.fact-pic__info-icon svg {
    width: .875rem;
    height: .875rem;
    fill: var(--black)
}

.fact-pic__info-content {
    position: absolute;
    left: 0;
    top: calc(100% + 1.25rem);
    background: var(--white);
    border-radius: .625rem;
    padding: 1.5625rem 1.25rem;
    transition: all .25s linear;
    opacity: 0;
    width: 21.25rem;
    pointer-events: none
}

@media (max-width: 767px) {
    .fact-pic__info-content {
        width: 15.625rem;
        padding: 1rem
    }
}

.section-quality {
    height: 56.25rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase
}

@media (max-width: 1660px) {
    .section-quality {
        height: 43.75rem
    }
}

@media (max-width: 767px) {
    .section-quality {
        height: 24.0625rem;
        line-height: .9
    }
}

.section-selection {
    overflow: hidden;
    background: var(--orange-6)
}

.selection-flex {
    display: flex;
    align-items: center
}

@media (max-width: 1279px) {
    .selection-flex {
        flex-direction: column
    }
}

.selection-filter {
    width: 50%
}

@media (max-width: 1279px) {
    .selection-filter {
        padding: 5rem 0 3.125rem;
        width: 100%
    }
}

@media (max-width: 767px) {
    .selection-filter {
        padding: 2.5rem 0
    }
}

.selection-pic {
    width: 50%;
    position: relative;
    padding: 5.625rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.selection-pic:before {
    content: "";
    background: linear-gradient(45deg, var(--orange-2), var(--orange));
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 300%
}

@media (max-width: 1279px) {
    .selection-pic:before {
        left: -100%
    }
}

.selection-pic:after {
    content: "";
    width: 37.1875rem;
    height: 37.1875rem;
    border-radius: 50%;
    position: absolute;
    background: var(--orange-6)
}

@media (max-width: 1660px) {
    .selection-pic:after {
        width: 29.0625rem;
        height: 29.0625rem
    }
}

@media (max-width: 767px) {
    .selection-pic:after {
        width: 17.8125rem;
        height: 17.8125rem
    }
}

.selection-pic img, .selection-pic picture {
    position: relative;
    z-index: 1;
    max-height: 45rem
}

@media (max-width: 1660px) {
    .selection-pic img, .selection-pic picture {
        max-height: 38.9375rem
    }
}

@media (max-width: 767px) {
    .selection-pic img, .selection-pic picture {
        max-height: 23.75rem
    }
}

@media (max-width: 1660px) {
    .selection-pic {
        padding: 5.5rem
    }
}

@media (max-width: 767px) {
    .selection-pic {
        padding: 1.75rem 0;
        width: 100%
    }
}

.button-filter-mobile {
    display: none
}

@media (max-width: 1279px) {
    .button-filter-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3.75rem 0
    }
}

@media (max-width: 767px) {
    .button-filter-mobile {
        padding: 2.5rem 0
    }
}

.video-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.video-block:hover .video-play {
    background: var(--white)
}

.video-block img {
    border-radius: .5rem
}

.video-play {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.25rem;
    height: 6.25rem;
    padding-left: .0625rem;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(.25rem);
    border-radius: 50%;
    transition: all .25s linear
}

.video-play svg {
    width: 1.875rem;
    height: 1.875rem;
    fill: var(--orange-2)
}

@media (max-width: 1660px) {
    .video-play svg {
        width: 1.5rem;
        height: 1.5rem
    }
}

@media (max-width: 767px) {
    .video-play svg {
        width: 1.125rem;
        height: 1.125rem
    }
}

@media (max-width: 1660px) {
    .video-play {
        width: 4.6875rem;
        height: 4.6875rem
    }
}

@media (max-width: 767px) {
    .video-play {
        width: 3.4375rem;
        height: 3.4375rem
    }
}

.section-material {
    background: var(--orange-8)
}

@media (max-width: 1279px) {
    .section-material {
        flex-direction: column;
        padding-bottom: 0 !important
    }
}

@media (max-width: 767px) {
    .section-material {
        padding-bottom: 2.5rem
    }
}

.material-content {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center
}

.material-content .container {
    max-width: 48.75rem;
    position: relative;
    z-index: 1;
    padding: 0 2.5rem
}

@media (max-width: 1270px) {
    .material-content .container {
        padding: 0 1.25rem
    }
}

.material-content:before {
    content: "";
    top: 50%;
    left: 0;
    height: .0625rem;
    position: absolute;
    width: 14%;
    background: var(--orange-4)
}

@media (max-width: 1660px) {
    .material-content:before {
        width: 4.375rem
    }
}

@media (max-width: 1270px) {
    .material-content:before {
        display: none
    }
}

@media (max-width: 1270px) {
    .material-content {
        flex-direction: column;
        width: 100%;
        padding: 5rem 0
    }
}

@media (max-width: 767px) {
    .material-content {
        padding: 2.5rem 0
    }
}

.material-content__main {
    max-width: 26.375rem;
    margin-left: 4.0625rem;
    background: var(--orange-8)
}

@media (max-width: 1660px) {
    .material-content__main {
        margin-left: 3.75rem
    }
}

@media (max-width: 1279px) {
    .material-content__main {
        max-width: 100%
    }
}

@media (max-width: 767px) {
    .material-content__main {
        margin-left: 0
    }
}

.material-content-line {
    position: absolute;
    right: 24.5%;
    height: 100%;
    width: .0625rem;
    background: var(--orange-4)
}

.material-content-line:before {
    content: "";
    top: 50%;
    left: 0;
    height: .0625rem;
    position: absolute;
    width: 8.4375rem;
    background: var(--orange-4)
}

@media (max-width: 1660px) {
    .material-content-line:before {
        width: 3.75rem
    }
}

@media (max-width: 1660px) {
    .material-content-line {
        right: 3.75rem
    }
}

@media (max-width: 1279px) {
    .material-content-line {
        display: none
    }
}

.material-pic {
    width: 50%;
    height: 43.75rem;
    background-size: cover;
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .875rem;
    align-items: flex-end;
    position: relative
}

@media (max-width: 1660px) {
    .material-pic {
        height: 37.5rem;
        padding: 1.25rem
    }
}

@media (max-width: 1279px) {
    .material-pic {
        width: 100%
    }
}

@media (max-width: 767px) {
    .material-pic {
        height: 18.375rem
    }

    .material-pic .material-link {
        display: none
    }
}

.material-pic-img {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0
}

.material-pic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.material-links-mobile {
    display: none
}

@media (max-width: 767px) {
    .material-links-mobile {
        display: flex;
        margin: 1.25rem 0 2.5rem;
        padding: 0 .9375rem;
        gap: .625rem;
        overflow: auto;
        white-space: nowrap
    }

    .material-links-mobile::-webkit-scrollbar {
        display: none
    }
}

.material-link {
    height: 2.625rem;
    display: flex;
    padding: 0 .9375rem;
    border-radius: 2rem;
    position: relative;
    z-index: 1;
    align-items: center;
    background: var(--white);
    color: var(--black);
    border: .0625rem solid transparent
}

.material-link:hover {
    border: .0625rem solid var(--orange-2);
    color: var(--black)
}

@media (max-width: 767px) {
    .material-link {
        height: 2.1875rem
    }
}

.material-link.active {
    color: var(--white);
    border: .0625rem solid transparent;
    background: var(--orange-2)
}

.material-link_more {
    background: rgba(255, 255, 255, .7);
    color: var(--black)
}

.material-link_more:hover {
    color: var(--black);
    background: var(--white)
}

.section-about {
    background-size: cover
}

@media (max-width: 1279px) {
    .section-about br {
        display: none
    }
}

.home-about {
    display: grid;
    grid-template-columns:21.4375rem 21.4375rem 1fr 1fr;
    grid-auto-rows: 17.5rem;
    gap: 2.1875rem
}

@media (max-width: 1660px) {
    .home-about {
        grid-template-columns:14.875rem 14.875rem 1fr 1fr;
        gap: 1.875rem
    }
}

@media (max-width: 1279px) {
    .home-about {
        grid-template-columns:repeat(2, 1fr);
        gap: 1.875rem
    }
}

@media (max-width: 767px) {
    .home-about {
        display: flex;
        flex-direction: column;
        gap: 1.25rem
    }
}

.home-about__item {
    border-radius: .5rem;
    padding: 4.125rem 2.5rem;
    position: relative
}

@media (max-width: 1660px) {
    .home-about__item {
        padding: 4.4375rem 1.875rem
    }
}

@media (max-width: 1279px) {
    .home-about__item {
        padding: 4rem 1.875rem
    }
}

@media (max-width: 767px) {
    .home-about__item {
        padding: 2.5rem 1.25rem 3.75rem
    }

    .home-about__item .size-16 {
        max-width: 11.375rem
    }
}

.home-about__icon {
    width: 4.6875rem;
    position: absolute;
    bottom: 1.875rem;
    right: 1.875rem
}

@media (max-width: 1660px) {
    .home-about__icon {
        width: 4.0625rem
    }
}

@media (max-width: 767px) {
    .home-about__icon {
        right: 1.25rem
    }
}

.home-about__item_own {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
    padding: 7rem 3.375rem;
    position: relative;
    background-size: cover
}

@media (max-width: 1660px) {
    .home-about__item_own {
        padding: 4.0625rem 2.5rem
    }
}

@media (max-width: 1279px) {
    .home-about__item_own {
        grid-column: 1/2;
        grid-row: 1/span 2;
        padding: 3.75rem 1.875rem
    }
}

@media (max-width: 767px) {
    .home-about__item_own {
        padding: 2.5rem 1.25rem
    }
}

.home-about__item_approach {
    grid-column: 3/4;
    grid-row: 1/2;
    background-color: #aa8567
}

@media (max-width: 1279px) {
    .home-about__item_approach {
        grid-column: 2/3;
        grid-row: 1/2
    }
}

.home-about__item_deadlines {
    grid-column: 4/5;
    grid-row: 1/2;
    background-color: #f9f5f0
}

@media (max-width: 1279px) {
    .home-about__item_deadlines {
        grid-column: 2/3;
        grid-row: 2/3
    }
}

.home-about__item_materials {
    grid-column: 3/4;
    grid-row: 2/3;
    background-color: #f9f5f0
}

@media (max-width: 1279px) {
    .home-about__item_materials {
        grid-column: 1/2;
        grid-row: 3/4
    }
}

.home-about__item_team {
    grid-column: 4/5;
    grid-row: 2/3;
    background-color: transparent;
    border: .125rem solid var(--white)
}

@media (max-width: 1279px) {
    .home-about__item_team {
        grid-column: 2/3;
        grid-row: 3/4
    }
}

.home-about__item_own-pic {
    position: absolute;
    bottom: 3.625rem;
    right: 3.125rem
}

.home-about__item_own-pic img {
    border-radius: .5rem
}

@media (max-width: 1660px) {
    .home-about__item_own-pic {
        bottom: 9.1875rem;
        right: 1.875rem;
        width: 15.3125rem
    }
}

@media (max-width: 1270px) {
    .home-about__item_own-pic {
        bottom: auto;
        right: auto;
        position: relative;
        margin-top: 1.25rem
    }
}

@media (max-width: 767px) {
    .home-about__item_own-pic {
        display: none
    }
}

.section-service-home {
    background: var(--orange-8);
    overflow: hidden
}

.section-service-home-flex {
    display: flex
}

@media (max-width: 1279px) {
    .section-service-home-flex {
        flex-direction: column-reverse;
        gap: 6.25rem
    }
}

@media (max-width: 767px) {
    .section-service-home-flex {
        gap: 3.125rem
    }
}

.section-service-home-video {
    width: 50%;
    padding: 4.25rem 0
}

@media (max-width: 1279px) {
    .section-service-home-video {
        width: 100%;
        padding: 0
    }
}

.section-service-home-content {
    padding: 6.875rem 0 4.25rem 4.0625rem;
    margin-left: 5rem;
    width: calc(50% - 5rem);
    border-left: .0625rem solid var(--orange-4);
    position: relative
}

.section-service-home-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: .0625rem;
    width: 300%;
    background: var(--orange-4)
}

@media (max-width: 1660px) {
    .section-service-home-content:before {
        width: 6.25rem;
        top: 58%
    }
}

@media (max-width: 1279px) {
    .section-service-home-content:before {
        display: none
    }
}

@media (max-width: 1660px) {
    .section-service-home-content {
        margin-left: 2.125rem;
        padding: 6.25rem 0 1.875rem 3.6875rem
    }
}

@media (max-width: 1279px) {
    .section-service-home-content {
        padding: 0;
        width: 100%;
        border: none;
        margin: 0
    }
}

.section-service-home-main {
    position: relative;
    z-index: 1;
    max-width: 42.9375rem;
    padding: 0 4.0625rem 0 1.25rem;
    background: var(--orange-8);
    width: 100%
}

@media (max-width: 1660px) {
    .section-service-home-main {
        padding: 0
    }
}

.section-service-home-text {
    margin-left: 4.5rem;
    max-width: 26.375rem
}

@media (max-width: 1660px) {
    .section-service-home-text {
        margin-left: 2.625rem
    }
}

@media (max-width: 1279px) {
    .section-service-home-text {
        max-width: 100%
    }
}

@media (max-width: 767px) {
    .section-service-home-text {
        margin-left: 0
    }
}

.about-work {
    display: flex;
    border-bottom: .0625rem solid var(--orange-4)
}

@media (max-width: 1279px) {
    .about-work {
        border-bottom: none;
        flex-direction: column
    }

    .about-work br {
        display: none
    }
}

.about-work__item {
     width: 25%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 .625rem
}

.about-work__item:before {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: .0625rem;
    background: linear-gradient(to top, var(--orange-4), transparent)
}

@media (max-width: 1279px) {
    .about-work__item:before {
        display: none
    }
}

.about-work__item:last-child:before {
    display: none
}

@media (max-width: 1660px) {
    .about-work__item:first-child br {
        display: none
    }
}

@media (max-width: 1279px) {
    .about-work__item:first-child {
        border-top: .0625rem solid var(--orange-4)
    }
}

@media (max-width: 1279px) {
    .about-work__item {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 1.875rem 0;
        width: 100%;
        border-bottom: .0625rem solid var(--orange-4)
    }

    .about-work__item i {
        margin-bottom: 0
    }

    .about-work__item .size-16 {
        margin-bottom: .9375rem
    }
}

@media (max-width: 767px) {
    .about-work__item {
        align-items: flex-start
    }
}

.about-work__item-main {
    display: flex;
    flex-direction: column;
    align-items: center
}

@media (max-width: 1279px) {
    .about-work__item-main {
        align-items: flex-start;
        text-align: left
    }
}

.about-work__item-pic {
    transform: translateY(.75rem);
    margin-bottom: -.75rem;
    width: 8.4375rem;
    margin-top: 1.875rem
}

@media (max-width: 1660px) {
    .about-work__item-pic {
        width: 6.25rem
    }
}

@media (max-width: 1279px) {
    .about-work__item-pic {
        flex-shrink: 0;
        margin-left: 3.625rem;
        margin-bottom: 0;
        transform: translateY(0);
        margin-right: 2.5rem
    }
}

@media (max-width: 767px) {
    .about-work__item-pic {
        width: 4.0625rem;
        margin-right: 0;
        margin-top: 0
    }
}

.about-work__item-title {
    height: 4.6875rem
}

@media (max-width: 1660px) {
    .about-work__item-title {
        height: 2.8125rem
    }
}

@media (max-width: 1279px) {
    .about-work__item-title {
        height: auto
    }
}

.section-home-production {
    background: var(--orange-8)
}

.home-production {
    display: flex;
    gap: 2.1875rem;
    align-items: flex-start
}

@media (max-width: 1279px) {
    .home-production {
        flex-direction: column
    }
}

@media (max-width: 767px) {
    .home-production {
        gap: 0
    }
}

.home-production__content {
    flex-basis: 49.8125rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.home-production__content .size-42 span {
    margin-left: 4.5rem
}

@media (max-width: 1660px) {
    .home-production__content .size-42 span {
        margin-left: 2.875rem
    }
}

@media (max-width: 767px) {
    .home-production__content .size-42 span {
        margin-left: 1.375rem
    }
}

@media (max-width: 1660px) {
    .home-production__content .size-42 {
        font-size: 2rem
    }
}

@media (max-width: 767px) {
    .home-production__content .size-42 {
        font-size: 1.375rem
    }
}

@media (max-width: 1660px) {
    .home-production__content {
        flex-basis: 32.8125rem
    }
}

@media (max-width: 1279px) {
    .home-production__content {
        flex-basis: auto
    }
}

.home-production__main {
    margin-left: 4.5rem
}

@media (max-width: 1660px) {
    .home-production__main {
        margin-left: 0
    }
}

@media (max-width: 767px) {
    .home-production__main {
        font-size: .875rem !important;
        line-height: 1.3 !important
    }
}

@media (max-width: 1279px) {
    .home-production__pic {
        margin-top: -3.75rem
    }
}

@media (max-width: 767px) {
    .home-production__pic {
        margin-top: 2.5rem
    }
}

.map-container {
    position: relative
}

.section-coupon {
    background: url(../images/home/coupon-bg.webp);
    background-size: cover
}

.page-margin {
    margin-bottom: -6.25rem;
    overflow: hidden
}

@media (max-width: 1279px) {
    .page-margin {
        margin-bottom: -5rem
    }
}

@media (max-width: 767px) {
    .page-margin {
        margin-bottom: -3.125rem
    }
}

@media (max-width: 1660px) {
    .coupon-main__text .size-42 {
        font-size: 2rem
    }
}

.coupon-main__text-mobile {
    display: none;
    text-align: center;
    line-height: 1;
    color: var(--white)
}

@media (max-width: 1279px) {
    .coupon-main__text-mobile {
        display: block;
        font-size: 2.625rem
    }
}

@media (max-width: 767px) {
    .coupon-main__text-mobile {
        font-size: 1.375rem
    }
}

.coupon-flex {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width: 1279px) {
    .coupon-flex {
        flex-direction: column;
        gap: 2.75rem
    }
}

@media (max-width: 767px) {
    .coupon-flex {
        gap: 1.5625rem
    }
}

.coupon-main {
    color: var(--white);
    display: flex;
    align-items: center
}

@media (max-width: 1279px) {
    .coupon-main {
        display: none
    }
}

.coupon-main__icon {
    flex-shrink: 0;
    width: 8.4375rem;
    margin-right: 2.125rem
}

@media (max-width: 1660px) {
    .coupon-main__icon {
        width: 7.8125rem;
        margin-right: .875rem
    }
}

.coupon-form {
    width: calc(50% - 2.5rem)
}

@media (max-width: 1279px) {
    .coupon-form {
        width: 100%
    }
}

.coupon-form__flex {
    display: flex;
    grid-template-columns:repeat(2, 1fr);
    gap: 1.875rem
}

@media (max-width: 767px) {
    .coupon-form__flex {
        gap: 0;
        flex-direction: column
    }
}

.breadcrumb-item {
    color: var(--gray-6)
}

.pic-404 {
    width: 76.25rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-3.125rem)
}

@media (max-width: 1660px) {
    .pic-404 {
        transform: translateX(-1.875rem)
    }
}

@media (max-width: 767px) {
    .pic-404 {
        transform: translateX(-1.25rem)
    }
}

.pic-404 img {
    max-width: 76.25rem
}

@media (max-width: 767px) {
    .pic-404 img {
        max-width: 46.875rem
    }
}

.section-head {
    position: relative;
    background-size: cover;
    color: var(--white)
}

.section-head:before {
    content: "";
    background: rgba(0, 0, 0, .4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.section-head .container {
    position: relative;
    z-index: 1
}

.section-head .breadcrumb-item {
    color: var(--white)
}

.service-item {
    border-radius: .5rem;
    background: var(--gray-4);
    position: relative
}

.service-item .size-22 {
    transition: all .25s linear;
    display: inline
}

.service-item p {
    display: block;
    margin-top: 1.25rem
}

@media (max-width: 1660px) {
    .service-item p {
        margin-top: .9375rem
    }
}

.service-item:hover {
    background: var(--orange-6)
}

.service-item:hover .size-22 {
    border-bottom: .0625rem solid var(--orange-2);
    color: var(--orange-2)
}

.service-item:hover p {
    color: var(--black)
}

.icon-service {
    width: 6.25rem;
    height: 6.25rem;
    background: var(--orange-2);
    border-radius: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -3.125rem;
    left: 2.5rem;
    margin-left: 0 !important
}

.icon-service img {
    width: 2.8125rem;
    height: 2.8125rem;
    fill: transparent;
    stroke: var(--white)
}

@media (max-width: 1660px) {
    .icon-service img {
        width: 2.1875rem;
        height: 2.1875rem
    }
}

@media (max-width: 767px) {
    .icon-service img {
        width: 1.5625rem;
        height: 1.5625rem
    }
}

@media (max-width: 1660px) {
    .icon-service {
        width: 4.6875rem;
        height: 4.6875rem;
        bottom: -2.1875rem;
        left: 2.1875rem
    }
}

@media (max-width: 767px) {
    .icon-service {
        width: 3.4375rem;
        height: 3.4375rem;
        top: 1.875rem;
        right: 1.25rem;
        bottom: auto;
        left: auto
    }
}

.list-check li:before {
    content: "";
    background: url(../images/icon/tick-square.svg);
    width: 1.5rem;
    height: 1.5rem;
    top: 0;
    position: absolute;
    left: 0;
    background-size: contain
}

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

.pic-two img {
    border-radius: .5rem
}

@media (max-width: 767px) {
    .pic-two {
        display: flex;
        flex-direction: column;
        gap: 1.875rem
    }
}

.manager-invest {
    background: var(--orange-6);
    border-radius: .625rem;
    height: 32.5rem;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5.625rem
}

@media (max-width: 1660px) {
    .manager-invest {
        height: 25.9375rem;
        padding: 0 3.125rem
    }
}

@media (max-width: 1279px) {
    .manager-invest {
        height: 27.5rem;
        padding: 0 1.25rem;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        border-radius: 0
    }
}

@media (max-width: 767px) {
    .manager-invest {
        height: auto;
        padding: 3.125rem .9375rem;
        margin-left: -.9375rem;
        margin-right: -.9375rem
    }

    .manager-invest p {
        padding-right: 5.5rem
    }
}

.manager-invest__content {
    max-width: 51.5625rem
}

@media (max-width: 1660px) {
    .manager-invest__content {
        max-width: 45.9375rem
    }
}

@media (max-width: 1279px) {
    .manager-invest__content {
        max-width: 30rem
    }

    .manager-invest__content .button {
        text-align: left;
        max-width: 23.75rem;
        padding: 0 1.875rem
    }
}

.manager-invest__door {
    position: absolute;
    right: 9.6875rem;
    top: -3.4375rem
}

@media (max-width: 1660px) {
    .manager-invest__door {
        width: 12.875rem;
        top: -2.625rem;
        right: 6.25rem
    }
}

@media (max-width: 1279px) {
    .manager-invest__door {
        width: 10.3125rem;
        right: 2.125rem;
        top: -.625rem
    }
}

@media (max-width: 767px) {
    .manager-invest__door {
        top: 8.375rem;
        right: .9375rem;
        width: 4.25rem
    }
}

.main-link {
    border-radius: .375rem
}

.main-link:hover {
    border: .0625rem solid var(--orange);
    color: var(--black)
}

.main-link.active {
    background: var(--orange-2);
    color: var(--white);
    border: .0625rem solid var(--orange-2)
}

@media (max-width: 767px) {
    .main-link {
        font-size: .8125rem
    }
}

.exit .icon, .exit-mobile .icon {
    fill: transparent;
    stroke: var(--black);
    transition: all .25s linear
}

.exit-mobile:hover .icon, .exit:hover .icon {
    stroke: var(--orange-2)
}

.flex-order .status-order {
    padding: 0 2rem
}

.status-order {
    border-radius: .375rem;
    margin-left: 1.25rem
}

@media (max-width: 767px) {
    .status-order {
        margin-left: .625rem
    }
}

.status-way {
    color: #ff5f00 !important;
    border: .0625rem solid #ff5f00 !important
}

.status-delivery {
    color: var(--orange-2) !important;
    border: .0625rem solid var(--orange-2) !important
}

.status-success {
    color: #12a336 !important;
    border: .0625rem solid #12a336 !important
}

.history-order__info-date {
    margin-right: .625rem
}

.clue:hover .clue-icon {
    background: var(--black)
}

.clue-icon {
    background: #b7b7b7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--white)
}

.clue-message {
    position: absolute;
    left: -7.0625rem;
    max-width: 15.25rem;
    line-height: 1.3;
    font-size: .875rem;
    border-radius: .625rem;
    pointer-events: none;
    background: var(--black);
    color: var(--white);
    padding: 1rem .75rem;
    display: none
}

@media (max-width: 1440px) {
    .clue-message {
        left: auto;
        right: -1.125rem
    }
}

.history-order__element {
    background: var(--gray-4);
    border-radius: .5rem;
    padding: .625rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.history-order__element img {
    max-height: 100%
}

@media (max-width: 767px) {
    .history-order__element {
        padding: .4375rem
    }
}

.history-order__element-count {
    z-index: 1;
    position: absolute;
    width: 1.75rem;
    height: 1.75rem;
    right: -.875rem;
    background: var(--orange-2);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center
}

.history-order {
    border-radius: .5rem;
    pointer-events: auto
}

.history-order .size-22 {
    transition: all .25s linear;
    border-bottom: .0625rem solid transparent
}

.history-order:hover {
    border: .0625rem solid var(--orange-2);
    color: var(--black)
}

.history-order:hover .size-22 {
    color: var(--orange-2);
    border-bottom: .0625rem solid var(--orange-2)
}

.history-order:hover .button-border-brown {
    background: var(--orange-2);
    border: .0625rem solid var(--orange-2);
    color: var(--white)
}

.button-history {
    display: flex;
    align-items: center
}

.button-history .button {
    width: 10.625rem
}

@media (max-width: 767px) {
    .button-history .button {
        width: 8.75rem
    }
}

.history-order__elements {
    position: relative;
    color: var(--white)
}

.status-line {
    background: var(--gray);
    border-radius: .5rem
}

.status-line-item {
    position: relative
}

.status-line-item span {
    background: var(--gray);
    padding: 0 1.25rem;
    position: relative;
    z-index: 1
}

.status-line-item:first-child {
    justify-content: flex-start
}

.status-line-item:first-child span {
    padding-left: 0
}

.status-line-item:last-child {
    justify-content: flex-end;
    width: 10%
}

.status-line-item:last-child span {
    padding-right: 0
}

.status-line-item:before {
    content: "";
    width: 100%;
    background: var(--orange);
    position: absolute;
    left: 0;
    height: .0625rem
}

.status-line-green {
    color: #12a336
}

.status-line-green:before {
    background: #12a336
}

.status-line-gray {
    color: silver
}

.status-line-gray .icon {
    background: silver !important
}

.sidebar-lk {
    border-radius: .625rem;
    box-shadow: .3125rem .3125rem 1.5625rem rgba(0, 0, 0, .1)
}

@media (max-width: 767px) {
    .sidebar-lk {
        margin-bottom: 0 !important;
        border-radius: 0
    }
}

.sidebar-lk-main {
    position: sticky;
    top: 1.25rem
}

@media (max-width: 767px) {
    .sidebar-lk-main {
        margin: 0 -.9375rem !important
    }
}

.order-item__pic {
    background: var(--gray-4);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.375rem
}

.order-item__pic img {
    max-height: 100%
}

@media (max-width: 767px) {
    .order-item__pic {
        padding: .625rem
    }
}

.order-item__content {
    width: 100%
}

@media (max-width: 767px) {
    .order-item__content {
        position: relative
    }
}

@media (max-width: 767px) {
    .order-item__flex {
        flex-direction: column;
        margin-bottom: 0 !important
    }
}

@media (max-width: 767px) {
    .order-item__info {
        margin-top: .625rem
    }

    .order-item__info .mb-15 {
        margin-bottom: 0
    }
}

.order-item__info .price-old {
    margin-left: 1.25rem;
    transform: translateY(.1875rem)
}

@media (max-width: 1660px) {
    .order-item__info .price-old {
        margin-left: 0;
        transform: translateY(0)
    }
}

@media (max-width: 1660px) {
    .order-item__info .size-20 {
        flex-direction: column;
        align-items: flex-end
    }
}

@media (max-width: 767px) {
    .order-item__info .size-20 {
        align-items: flex-start
    }
}

@media (max-width: 767px) {
    .history-order__info-head {
        justify-content: space-between
    }
}

@media (max-width: 767px) {
    .order-item__info-count {
        margin-top: .625rem
    }
}

.favorite-order {
    display: flex;
    justify-content: flex-end
}

.favorite-order .button-favorite {
    position: relative;
    width: auto;
    height: auto;
    background: 0 0 !important
}

.favorite-order .button-favorite.active .button-favorite-absolute {
    opacity: 1 !important
}

@media (max-width: 767px) {
    .favorite-order .button-favorite {
        font-size: 0
    }
}

.favorite-order .button-favorite-relative {
    margin-right: .625rem
}

@media (max-width: 767px) {
    .favorite-order .button-favorite-relative {
        margin-right: 0
    }
}

.favorite-order .button-favorite-delete {
    display: none !important
}

.favorite-order .button-favorite-absolute {
    left: 0
}

@media (max-width: 767px) {
    .favorite-order {
        position: absolute;
        bottom: .5rem;
        right: 0
    }
}

.order-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.service-price__tr-light {
    border-top: none !important
}

.service-price__tr-light .service-price__td {
    padding-top: .625rem;
    padding-bottom: .625rem
}

.service-price__tr-light:last-child .service-price__td {
    padding-bottom: 1.875rem
}

.service-price__tr-head .service-price__td {
    padding-bottom: .625rem !important
}

.installation-instruction {
    background: var(--orange-6);
    padding: 3.75rem 5.875rem;
    border-radius: .625rem
}

@media (max-width: 1660px) {
    .installation-instruction {
        padding: 3.75rem 3.125rem
    }
}

@media (max-width: 1279px) {
    .installation-instruction {
        padding: 3.75rem 2.5rem
    }

    .installation-instruction .button {
        padding: .625rem 1.875rem;
        text-align: left;
        height: auto !important
    }
}

@media (max-width: 767px) {
    .installation-instruction {
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding: 2.5rem .9375rem
    }
}

.download-installation {
    color: var(--orange-2)
}

.download-installation .icon {
    stroke: var(--orange-2);
    fill: transparent;
    flex-shrink: 0;
    margin-right: .75rem;
    width: 1.5rem;
    height: 1.5rem
}

.download-installation:hover {
    color: var(--orange-3)
}

.download-installation:hover .icon {
    stroke: var(--orange-3)
}

@media (max-width: 767px) {
    .download-installation {
        align-items: flex-start !important
    }
}

.list-check a {
    text-decoration: underline;
    color: var(--orange-2)
}

.list-check a:hover {
    color: var(--orange-3)
}

.desires {
    display: flex;
    align-items: flex-start;
    padding: 1.875rem 5rem 1.875rem 4.5rem;
    justify-content: space-between;
    background: var(--gray-4);
    border-radius: .375rem
}

@media (max-width: 1279px) {
    .desires {
        padding: 1.875rem 1.875rem 1.875rem 2.5rem
    }
}

@media (max-width: 767px) {
    .desires {
        padding: 2.5rem 1.25rem 2.5rem 1.875rem
    }
}

.desires-pic {
    width: 9.375rem;
    flex-shrink: 0;
    margin-left: 1.875rem
}

@media (max-width: 1279px) {
    .desires-pic {
        width: 6.25rem;
        margin-left: .3125rem
    }
}

@media (max-width: 767px) {
    .desires-pic {
        display: none
    }
}

.desires-content {
    position: relative;
    margin-top: .625rem;
    display: flex;
    flex-direction: column
}

.desires-content span {
    margin-bottom: .3125rem
}

.desires-content span:last-child {
    margin-bottom: 0
}

@media (max-width: 767px) {
    .desires-content span {
        margin-bottom: .75rem
    }
}

.desires-content:before {
    content: "";
    position: absolute;
    left: -4.5rem;
    top: 0;
    height: 100%;
    width: .3125rem;
    background: var(--orange)
}

@media (max-width: 1279px) {
    .desires-content:before {
        left: -2.5rem
    }
}

@media (max-width: 767px) {
    .desires-content:before {
        left: -1.875rem
    }
}

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

@media (max-width: 1279px) {
    .list-flex {
        display: flex;
        flex-direction: column;
        gap: 1rem
    }
}

@media (max-width: 1279px) {
    .home-production__pic_service {
        margin-top: 0
    }
}

@media (max-width: 767px) {
    .home-production__pic_service {
        margin-top: 2.5rem
    }
}

.main-instruction__item {
    margin-bottom: 2.5rem
}

@media (max-width: 767px) {
    .main-instruction__item {
        margin-bottom: 1.875rem
    }
}

.main-instruction__item:last-child {
    margin-bottom: 0
}

.main-instruction__head {
    display: flex;
    align-items: center
}

.main-instruction__number {
    flex-shrink: 0;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: .625rem;
    margin-right: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-2);
    color: var(--white);
    font-weight: 500;
    font-family: Cormorant
}

@media (max-width: 767px) {
    .main-instruction__number {
        width: 3.125rem;
        height: 3.125rem;
        margin-right: 1.375rem
    }
}

.main-instruction__content {
    padding-left: 6.5625rem;
    margin-top: 1.5625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.main-instruction__content picture {
    width: auto
}

@media (max-width: 1279px) {
    .main-instruction__content {
        padding-left: 0;
        margin-top: 1.875rem
    }
}

.desires-center {
    align-items: center
}

.desires-center .desires-content {
    padding: 2.5rem 0
}

@media (max-width: 767px) {
    .desires-center .desires-content {
        padding: .3125rem 0
    }
}

@media (max-width: 767px) {
    .desires-center .desires-pic {
        display: block;
        width: 3.4375rem
    }
}

.about-work_service .about-work__item {
    padding-top: 4.6875rem;
    border-top: .0625rem solid var(--orange-4)
}

.about-work_service .about-work__item:before {
    top: 0;
    background: var(--orange-4)
}

@media (max-width: 1660px) {
    .about-work_service .about-work__item {
        padding-top: 3.75rem
    }
}

@media (max-width: 767px) {
    .about-work_service .about-work__item {
        padding-top: 1.25rem;
        border-top: none
    }

    .about-work_service .about-work__item:first-child {
        border-top: .0625rem solid var(--orange-4)
    }
}

.style-contact {
    display: flex;
    border-radius: .625rem;
    overflow: hidden;
    background: var(--orange-6)
}

@media (max-width: 1279px) {
    .style-contact {
        flex-direction: column;
        padding: 3.125rem
    }
}

@media (max-width: 767px) {
    .style-contact {
        padding: 3.125rem .9375rem;
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        border-radius: 0;
        width: auto
    }
}

.style-contact__pic {
    width: 50%
}

.style-contact__pic img {
    border-radius: .625rem
}

@media (max-width: 1279px) {
    .style-contact__pic {
        width: 100%
    }
}

.style-contact__content {
    width: 50%;
    padding: 3.125rem 4.375rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.style-contact__content .social {
    margin-left: 1.5625rem;
    gap: 1.25rem
}

.style-contact__content .social-link {
    width: 2.8125rem;
    height: 2.8125rem
}

.style-contact__content .social-link img {
    width: 1.25rem
}

.style-contact__content .button {
    max-width: 30.3125rem
}

@media (max-width: 1279px) {
    .style-contact__content .button {
        max-width: 100%
    }
}

@media (max-width: 1660px) {
    .style-contact__content {
        padding: 3.125rem
    }
}

@media (max-width: 1279px) {
    .style-contact__content {
        padding: 0;
        width: 100%;
        margin-bottom: 2.5rem
    }
}

@media (max-width: 767px) {
    .style-contact__content {
        margin-bottom: 1.875rem
    }
}

.about-work-how {
    margin-bottom: 8.125rem
}

.about-work-how .size-18 {
    min-height: 4.875rem
}

@media (max-width: 1279px) {
    .about-work-how .size-18 {
        min-height: auto
    }
}

@media (max-width: 1279px) {
    .about-work-how {
        margin-bottom: 4.375rem
    }
}

@media (max-width: 767px) {
    .about-work-how {
        margin-bottom: 3.125rem
    }
}

@media (max-width: 1279px) and (min-width: 767px) {
    .about-work_color.about-work {
        flex-flow: row wrap
    }

    .about-work_color.about-work .about-work__item-main {
        margin-bottom: 2rem
    }

    .about-work_color.about-work .about-work__item {
        padding-top: 3.125rem;
        padding-bottom: 0;
        width: 50%;
        flex-direction: column;
        text-align: center;
        align-items: center;
        border-bottom: none
    }

    .about-work_color.about-work .about-work__item:last-child {
        width: 100%;
        border-bottom: .0625rem solid var(--orange-4)
    }

    .about-work_color.about-work .about-work__item:nth-child(1):before, .about-work_color.about-work .about-work__item:nth-child(3):before {
        display: block
    }

    .about-work_color.about-work .about-work__item-pic {
        transform: translateY(.9375rem);
        z-index: 1;
        margin-bottom: -.9375rem
    }
}

.main-instruction-l .main-instruction__head {
    align-items: flex-start
}

.main-instruction__main {
    max-width: 65rem
}

@media (max-width: 767px) {
    .main-instruction__main .main-instruction__title {
        min-height: 3.125rem;
        align-items: center;
        display: flex
    }
}

@media (max-width: 767px) {
    .main-instruction__main-content {
        margin-left: -4.5rem
    }
}

.control-block {
    padding: 3.75rem 5.875rem;
    background: var(--orange-6);
    border-radius: .625rem
}

@media (max-width: 1660px) {
    .control-block {
        padding: 3.125rem
    }
}

@media (max-width: 1279px) {
    .control-block {
        padding: 3.125rem 2.5rem
    }

    .control-block .button {
        padding: .625rem 1.875rem;
        height: auto !important;
        text-align: left;
        min-height: 4.375rem
    }
}

@media (max-width: 767px) {
    .control-block {
        border-radius: 0;
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding: 2.1875rem .9375rem
    }
}

.radius img {
    border-radius: .625rem
}

.designer-block {
    background: var(--orange-6);
    border-radius: .625rem;
    padding: 3.5rem 10rem 3.5rem 5.875rem;
    display: flex;
    align-items: center;
    position: relative
}

.designer-block .button {
    width: 30.3125rem
}

@media (max-width: 1279px) {
    .designer-block .button {
        width: 18.75rem
    }
}

@media (max-width: 767px) {
    .designer-block .button {
        width: calc(100% - 8.75rem)
    }
}

.designer-block .social {
    gap: 1.25rem;
    margin-left: 2.75rem
}

@media (max-width: 767px) {
    .designer-block .social {
        margin-left: 1.875rem
    }
}

.designer-block .social-link {
    width: 2.8125rem;
    height: 2.8125rem
}

.designer-block .social-link img {
    width: 1.375rem
}

@media (max-width: 1660px) {
    .designer-block {
        padding: 3.5rem 4.375rem 3.5rem 3.125rem
    }
}

@media (max-width: 1279px) {
    .designer-block {
        padding: 3.125rem 2.5rem 4.375rem 2.5rem
    }
}

@media (max-width: 767px) {
    .designer-block {
        padding: 2.5rem .9375rem;
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        border-radius: 0
    }
}

.designer-pic {
    flex-shrink: 0;
    width: 15rem;
    margin-left: 2.5rem
}

@media (max-width: 1279px) {
    .designer-pic {
        width: 8.75rem;
        margin-left: 0;
        position: absolute;
        bottom: 2.1875rem;
        right: 3.25rem
    }
}

@media (max-width: 767px) {
    .designer-pic {
        display: none
    }
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.accordion__item {
    border-top: .0625rem solid var(--gray-2)
}

.accordion__item:last-child {
    border-bottom: .0625rem solid var(--gray-2)
}

.accordion__item.open .icon {
    background: #ececec;
    transform: rotate(0)
}

.accordion__item.open .icon svg {
    stroke: var(--black)
}

.accordion__item.open .accordion__content {
    max-height: inherit
}

@media (max-width: 767px) {
    .accordion__item {
        margin-left: -.9375rem;
        margin-right: -.9375rem
    }
}

.accordion__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    width: 100%;
    text-align: left;
    color: var(--black)
}

.accordion__head .icon {
    flex-shrink: 0;
    transition: all .25s linear;
    width: 2.8125rem;
    height: 2.8125rem;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.25rem;
    transform: rotate(45deg)
}

.accordion__head .icon svg {
    width: .9375rem;
    height: .9375rem;
    stroke: var(--white)
}

@media (max-width: 767px) {
    .accordion__head .icon svg {
        width: .75rem;
        height: .75rem
    }
}

@media (max-width: 767px) {
    .accordion__head .icon {
        width: 2.1875rem;
        height: 2.1875rem
    }
}

.accordion__head:hover .icon {
    background: var(--orange-2) !important
}

.accordion__head:hover .icon svg {
    stroke: var(--white) !important
}

@media (max-width: 767px) {
    .accordion__head {
        padding: 1.125rem .9375rem;
        font-size: 1.125rem !important
    }
}

.accordion-main {
    padding: .625rem 0 3.125rem
}

@media (max-width: 767px) {
    .accordion-main {
        padding: .625rem .9375rem 1.875rem
    }
}

.dealer-items {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 3.125rem
}

@media (max-width: 1660px) {
    .dealer-items {
        gap: 2.8125rem
    }
}

@media (max-width: 1279px) {
    .dealer-items {
        display: flex;
        flex-flow: row wrap;
        gap: 1.875rem
    }
}

@media (max-width: 767px) {
    .dealer-items {
        gap: 1.25rem
    }
}

.dealer-item {
    display: flex;
    flex-direction: column;
    padding: 3.75rem 2.5rem;
    background: #f4f4f4;
    border-radius: .5rem
}

@media (max-width: 1279px) {
    .dealer-item {
        width: calc(50% - .9375rem);
        padding: 3.75rem 1.25rem
    }
}

@media (max-width: 767px) {
    .dealer-item {
        width: 100%;
        padding: 2.5rem 1.25rem
    }
}

.dealer-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.dealer-button .button {
    width: 18.4375rem
}

.icon-repeat {
    width: 3.4375rem;
    height: 3.4375rem;
    background: 0 0 !important
}

.icon-repeat svg {
    fill: transparent !important;
    stroke: #292d32 !important
}

.icon-repeat.active, .icon-repeat:hover {
    animation: spin 2s linear infinite
}

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

.dealer-become {
    background: var(--orange-6);
    border-radius: .625rem;
    padding: 5.375rem 6.25rem;
    position: relative
}

@media (max-width: 1660px) {
    .dealer-become {
        padding: 5.375rem 3.375rem
    }
}

@media (max-width: 1279px) {
    .dealer-become {
        padding: 4.25rem 1.5625rem
    }
}

@media (max-width: 767px) {
    .dealer-become {
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding: 2.5rem .9375rem;
        border-radius: 0
    }
}

.dealer-become__content {
    width: 45rem
}

@media (max-width: 1660px) {
    .dealer-become__content {
        width: 41.875rem
    }
}

@media (max-width: 1279px) {
    .dealer-become__content {
        width: 100%
    }
}

.dealer-become__pic {
    position: absolute;
    right: 6.0625rem;
    width: 24.3125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0
}

@media (max-width: 1660px) {
    .dealer-become__pic {
        right: 2.5rem
    }
}

@media (max-width: 1279px) {
    .dealer-become__pic {
        display: none
    }
}

.dealer-become__person {
    position: relative;
    z-index: 1
}

.dealer-become__circle {
    background: var(--white);
    position: absolute;
    top: 3.75rem;
    border-radius: 50%;
    width: 29.0625rem;
    height: 29.0625rem
}

@media (max-width: 1660px) {
    .dealer-become__circle {
        width: 25rem;
        height: 25rem
    }
}

.form-flex {
    gap: 1.875rem
}

@media (max-width: 767px) {
    .form-flex {
        gap: 0;
        flex-direction: column
    }
}

.article-item__time {
    display: flex;
    align-items: center
}

.article-item__time svg {
    fill: transparent;
    stroke: var(--black-2)
}

.article-item__time .icon {
    width: 1rem;
    margin-right: .3125rem;
    margin-left: 1.875rem
}

.icon-more-details_down {
    width: .875rem;
    height: .875rem
}

.pagination-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap
}

.pagination-item {
    margin: 0 .3125rem
}

.pagination-item span {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination-item_arrow .icon[disabled] {
    pointer-events: none
}

.pagination-item_arrow .icon[disabled] svg {
    fill: rgba(0, 0, 0, .5)
}

.pagination-item_arrow .icon {
    width: 2.8125rem;
    height: .625rem
}

.pagination-item_arrow svg {
    fill: var(--black)
}

.pagination-item_arrow:hover svg {
    fill: var(--orange-2)
}

.pagination-item_arrow-prev {
    margin-right: 1.875rem
}

.pagination-item_arrow-next {
    margin-left: 1.875rem
}

.pagination-link:not(.icon) {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: .0625rem solid transparent;
    border-radius: .375rem;
    font-size: 1rem;
    font-weight: 600
}

.pagination-link:not(.icon).active {
    pointer-events: none;
    background: var(--orange-6)
}

.pagination-link:not(.icon):hover {
    color: var(--black-2);
    border: .0625rem solid var(--orange)
}

.article-back {
    display: inline-flex;
    align-items: center;
    margin-top: 2.5rem;
    color: var(--orange-2)
}

.article-back .icon {
    width: .9375rem;
    margin-right: .9375rem;
    height: .9375rem;
    fill: var(--orange-2);
    border-radius: .1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .125rem;
    border: .0625rem solid var(--orange-2);
    transition: all .25s linear
}

.article-back:hover {
    color: var(--orange-3)
}

.article-back:hover .icon {
    border: .0625rem solid var(--orange-3);
    fill: var(--orange-3)
}

.req {
    display: flex;
    flex-direction: column;
    align-items: center
}

.icon-note {
    width: 3.4375rem;
    height: 3.4375rem
}

.icon-note svg {
    fill: transparent;
    stroke: var(--orange-2)
}

.req-elements {
    display: flex
}

@media (max-width: 767px) {
    .req-elements {
        font-size: .9375rem
    }
}

.req-element:nth-child(1):after {
    content: "|";
    color: silver;
    margin: 0 .9375rem
}

@media (max-width: 767px) {
    .req-element:nth-child(1):after {
        font-size: .9375rem;
        margin: 0 .3125rem
    }
}

@media (max-width: 767px) {
    .article-swiper {
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding-left: .9375rem;
        padding-right: .9375rem
    }
}

.filter-item-show .filter-block {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.filter-item-checked .filter-default__number {
    display: flex
}

.filter-item-checked .filter-default__icon-arrow {
    opacity: 0
}

.filter-item-checked .filter-default__icon-close {
    opacity: 1;
    stroke: rgba(0, 0, 0, .5);
    fill: transparent !important;
    pointer-events: auto
}

.filter-item-checked .filter-default__icon-close:hover {
    stroke: var(--orange-2)
}

.filter-block {
    padding: 1.875rem 1.25rem;
    background: var(--white);
    border-radius: .625rem;
    box-shadow: .3125rem .3125rem 2.1875rem rgba(0, 0, 0, .1);
    pointer-events: none;
    transition: all .25s linear;
    transform: translateY(-.625rem);
    opacity: 0;
    z-index: 3
}

.range-block {
    margin-bottom: 1.875rem
}

.range-block__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.875rem
}

.range-block__item {
    display: flex;
    align-items: center;
    font-size: 1rem
}

.range-block__item input {
    width: 7.8125rem;
    padding: 0 .9375rem;
    border: .0625rem solid var(--gray-2);
    margin-left: .5625rem
}

.range-block__item input:focus, .range-block__item input:hover {
    border: .0625rem solid var(--orange-3)
}

.filter-elements {
    max-height: 10.375rem;
    margin-bottom: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: auto
}

.filter-elements::-webkit-scrollbar {
    width: .25rem;
    background: #ececec;
    border-radius: 1.875rem
}

.filter-elements::-webkit-scrollbar-thumb {
    background: #5c5c5c;
    border-radius: 1.875rem
}

.filter-element {
    color: #5c5c5c;
    font-size: 1rem;
    transition: all .25s linear
}

.filter-element .clue {
    display: inline-flex
}

.filter-element label {
    cursor: pointer
}

.filter-element.active {
    color: #000
}

.filter-element:hover {
    color: var(--orange-2)
}

.filter-element .check {
    margin-right: .9375rem
}

.filter-block-button {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 1.4375rem
}

.filter-block-button .button {
    padding: 0 1.25rem
}

.filter-default__number {
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    line-height: 0;
    right: .9375rem;
    top: -.625rem;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    font-weight: 700
}

.filter-item_right .filter-block {
    left: auto;
    right: 0
}

.filter-sort__container {
    position: relative
}

.filter-sort__items {
    top: calc(100% + .625rem);
    white-space: nowrap;
    right: 0;
    padding: .9375rem 1.25rem;
    display: flex;
    max-width: 13.125rem;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: .9375rem;
    border-radius: .625rem;
    box-shadow: .3125rem .3125rem 2.1875rem rgba(0, 0, 0, .1);
    transition: all .25s linear;
    transform: translateY(-.3125rem);
    pointer-events: none;
    z-index: 3
}

.filter-sort__item {
    border-bottom: .0625rem solid transparent;
    line-height: 1.2;
    display: inline-block
}

.filter-sort__item.active {
    border-bottom: .0625rem solid var(--orange-2);
    color: var(--orange-2)
}

.filter-sort__item:hover {
    color: var(--orange-2)
}

.filter-sort-show .filter-sort__items {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0)
}

.current-main_furniture {
    display: flex;
    flex-flow: row wrap;
    gap: 1.125rem
}

.current-main_furniture .current-main-link {
    border: .0625rem solid transparent;
    background: #f4f4f4;
    border-radius: .5rem;
    overflow: hidden
}

.current-main_furniture .current-main-link.active {
    border: .0625rem solid var(--orange-2)
}

@media (max-width: 767px) {
    .current-main_furniture .current-main-link {
        width: 5rem
    }
}

.filter-modal_product {
    overflow: auto;
    padding-bottom: 1.25rem !important
}

.filter-modal_product .button {
    flex: 1 0 auto
}

.filter-modal {
    position: fixed;
    top: 0;
    width: 25rem;
    left: -25rem;
    background: #fff;
    height: 100dvh;
    z-index: 10;
    padding: 4.6875rem 1.75rem 0 1.75rem;
    display: flex;
    flex-direction: column;
    transition: left .25s linear
}

@media (max-width: 767px) {
    .filter-modal {
        width: 100%;
        left: -100%;
        padding: 2.75rem .9375rem 0
    }
}

.filter-close {
    background: #ececec;
    width: 2.1875rem;
    height: 2.1875rem;
    position: absolute;
    top: .625rem;
    right: .625rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s linear
}

.filter-close svg {
    width: .75rem;
    height: .75rem;
    stroke: var(--black)
}

.filter-close:hover {
    background: var(--orange-2)
}

.filter-close:hover svg {
    stroke: var(--white)
}

.filter-modal__container {
    flex: 1;
    padding-bottom: 1.25rem;
    overflow: auto
}

.filter-modal__container .main-link {
    height: 3.125rem;
    border: none;
    border-bottom: .0625rem solid var(--orange-4);
    text-align: left;
    justify-content: flex-start;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500
}

.filter-modal__container .main-link:first-child {
    border-top: .0625rem solid var(--orange-4)
}

.filter-modal__container .filter-item {
    border-bottom: .0625rem solid var(--orange-4)
}

.filter-modal__container .filter-item:first-child {
    border-top: .0625rem solid var(--orange-4)
}

.filter-modal__container .filter-default__number {
    position: relative;
    top: auto;
    margin-left: .75rem;
    right: auto
}

.filter-modal__container .filter-default__icon-close {
    position: relative;
    width: .5rem;
    height: .5rem
}

.filter-modal__container .filter-modal-reset {
    margin-left: .625rem
}

.filter-modal__container .filter-default {
    display: flex;
    align-items: center;
    height: 3.125rem !important;
    width: 100%;
    border: none;
    padding: 0;
    border-radius: 0
}

.filter-modal__container .filter-default .filter-default__icon {
    position: absolute;
    right: 0;
    transition: all .25s linear
}

.filter-modal__container .filter-block {
    padding: 0;
    box-shadow: none;
    position: relative;
    border-radius: 0;
    top: auto;
    transform: translate(0);
    opacity: 1;
    width: 100%;
    height: 0;
    transition: .25s height;
    pointer-events: auto;
    overflow: hidden
}

.filter-modal__container .filter-elements {
    max-height: inherit
}

.filter-modal__container .filter-item-show .filter-block {
    padding-bottom: 1.25rem
}

.filter-modal__container .filter-item-show .filter-default__icon {
    transform: rotate(180deg)
}

.filter-modal__container .filter-item-checked .filter-default__icon-arrow {
    opacity: 1
}

.filter-modal__container::-webkit-scrollbar {
    display: none
}

.filter-modal-button {
    flex-shrink: 0;
    padding: 1.375rem 1.75rem;
    z-index: 4;
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    box-shadow: 0 .25rem 2.1875rem rgba(0, 0, 0, .25)
}

.filter-modal-button .button {
    width: 100%;
    height: 2.5rem
}

@media (max-width: 767px) {
    .filter-modal-button {
        padding: 1.375rem .9375rem;
        margin-left: -.9375rem;
        margin-right: -.9375rem
    }
}

.filter-modal-active .filter-modal {
    left: 0
}

.filter-modal-active .blackout {
    opacity: 1;
    pointer-events: auto
}

.action-item:hover .action-item__pic img {
    transform: scale(1.05)
}

.action-item:hover .action-item-title {
    border-bottom: .0625rem solid var(--orange-2)
}

.basket-item-info img {
    width: 3.4375rem;
    flex-shrink: 0;
    margin-right: 1.5rem
}

@media (max-width: 767px) {
    .basket-item-info img {
        width: 2.1875rem;
        margin-right: .75rem
    }
}

@media (max-width: 767px) {
    .basket-item-info {
        font-size: .875rem !important
    }
}

.gap-50 {
    gap: 3.125rem
}

@media (max-width: 767px) {
    .gap-50 {
        gap: 1.25rem
    }
}

.link-border {
    border-bottom: .0625rem solid transparent;
    text-decoration: none !important
}

.link-border:hover {
    border-bottom: .0625rem solid var(--orange-2)
}

.link-border.open-modal {
    border-bottom: .0625rem solid var(--orange-2)
}

.promo-button {
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .375rem;
    border: .0625rem solid var(--gray-2);
    background: var(--orange-6);
    top: 0;
    right: 0;
    transition: all .25s linear
}

.promo-button svg {
    width: .9375rem;
    height: .9375rem;
    transition: all .25s linear;
    fill: var(--black)
}

.promo-button:hover {
    background: var(--orange-2);
    border: .0625rem solid var(--orange-2)
}

.promo-button:hover svg {
    fill: var(--white)
}

.promo-button[disabled] {
    pointer-events: none;
    background: var(--gray-2)
}

.promo-input.error {
    border: .0625rem solid var(--red)
}

.promo-input.error + .promo-button {
    border: .0625rem solid var(--red)
}

.download-spec svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: .625rem;
    fill: transparent;
    stroke: rgba(0, 0, 0, .5)
}

.order-file {
    cursor: pointer
}

.order-file input.error + .order-file__button {
    border: .0625rem solid var(--red)
}

.order-file__button {
    border: .0625rem solid var(--gray-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .4375rem .4375rem .4375rem 1.25rem;
    border-radius: .375rem;
    cursor: pointer;
    transition: all .25s linear
}

.order-file__button:hover .order-file__button-text {
    cursor: var(--white);
    background: var(--orange-2)
}

.order-file__button-text {
    background: #b7b7b7;
    width: 7.5rem;
    height: 2.1875rem;
    border-radius: .375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    transition: all .25s linear
}

.radio-connection {
    gap: 1.25rem
}

@media (max-width: 767px) {
    .radio-connection {
        gap: .625rem;
        overflow: auto;
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding-left: .9375rem;
        padding-right: .9375rem
    }

    .radio-connection::-webkit-scrollbar {
        display: none
    }
}

.radio-connection__item {
    position: relative
}

.radio-connection__item input:checked + .radio-connection__label {
    background: var(--orange-2);
    border: .0625rem solid var(--orange-2);
    color: var(--white)
}

.radio-connection__item input:checked + .radio-connection__label .radio-connection__label-icon {
    background: var(--white)
}

.radio-connection__item input:checked + .radio-connection__label .radio-connection__label-icon svg {
    fill: var(--orange-2)
}

.radio-connection__item input:checked + .radio-connection__label .radio-connection__label-icon_stroke svg {
    fill: transparent;
    stroke: var(--orange-2)
}

.radio-connection__label {
    display: flex;
    align-items: center;
    width: 10.3125rem;
    border: .0625rem solid var(--gray-2);
    border-radius: .375rem;
    justify-content: center;
    transition: all .25s linear;
    cursor: pointer
}

@media (max-width: 767px) {
    .radio-connection__label {
        width: 7.5rem
    }
}

.radio-connection__label:hover {
    border: .0625rem solid var(--orange)
}

.radio-connection__label-icon {
    background: var(--orange);
    width: 1.5625rem;
    height: 1.5625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: .5rem;
    border-radius: 50%;
    transition: all .25s linear
}

.radio-connection__label-icon svg {
    width: .875rem;
    height: .875rem;
    fill: var(--white)
}

.radio-connection__label-icon_stroke svg {
    fill: transparent;
    stroke: var(--white)
}

.surveyor {
    background: var(--orange-6);
    padding: 1.5625rem 1.25rem;
    border-radius: .375rem
}

.radio-pay {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.4375rem
}

@media (max-width: 767px) {
    .radio-pay {
        display: flex;
        overflow: auto;
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding-left: .9375rem;
        padding-right: .9375rem
    }

    .radio-pay::-webkit-scrollbar {
        display: none
    }
}

.radio-pay__item {
    position: relative
}

.radio-pay__item input:checked + .radio-pay__item-label {
    background: var(--orange-2);
    border: .0625rem solid var(--orange-2);
    color: var(--white)
}

.radio-pay__item input:checked + .radio-pay__item-label .color-black-50 {
    color: var(--white)
}

.radio-pay__item input:checked + .radio-pay__item-label svg {
    stroke: var(--white)
}

@media (max-width: 767px) {
    .radio-pay__item {
        flex-shrink: 0;
        width: 14.0625rem
    }
}

.radio-pay__item-label {
    height: 10.3125rem;
    border: .0625rem solid var(--gray-2);
    padding: 1.5625rem 1.25rem 1.25rem;
    border-radius: .375rem;
    cursor: pointer;
    transition: all .25s linear
}

.radio-pay__item-label .color-black-50 {
    transition: all .25s linear
}

.radio-pay__item-label svg {
    width: 2.1875rem;
    height: 2.1875rem;
    fill: transparent;
    stroke: var(--black)
}

@media (max-width: 1660px) {
    .radio-pay__item-label {
        padding: 1.5625rem 1.125rem 1.25rem
    }
}

.radio-pay__item-label:hover {
    border: .0625rem solid var(--orange)
}

.social-page {
    gap: 2.5625rem
}

.social-page .social {
    gap: 1.0625rem
}

.social-page .social-link {
    width: 2.8125rem;
    height: 2.8125rem
}

.social-page .social-link img {
    width: 1.3125rem;
    height: 1.3125rem
}

@media (max-width: 1279px) {
    .social-page {
        gap: 3.9375rem
    }
}

@media (max-width: 767px) {
    .social-page {
        flex-direction: column;
        gap: .9375rem;
        align-items: flex-start !important
    }
}

.desires_order {
    padding: 2rem 3.125rem
}

.desires_order .desires-content:before {
    left: -3.125rem
}

@media (max-width: 767px) {
    .desires_order .desires-content:before {
        left: -1.875rem
    }
}

@media (max-width: 767px) {
    .desires_order {
        padding: 2.5rem 1.875rem
    }
}

.file-delete {
    flex-shrink: 0;
    margin-left: .625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s linear;
    background: #ececec;
    width: .625rem;
    height: .625rem;
    border-radius: 50%
}

.file-delete svg {
    width: .3125rem;
    height: .3125rem;
    fill: transparent;
    stroke: var(--black)
}

.file-delete:hover {
    background: var(--orange-2)
}

.file-delete:hover svg {
    stroke: var(--white)
}

.copy-order:hover .copy-order__icon {
    background: var(--orange-2)
}

.copy-order:hover .copy-order__icon svg {
    fill: var(--white)
}

.copy-order.active .copy-order__icon-c {
    opacity: 0
}

.copy-order.active .copy-order__icon-h {
    opacity: 1
}

.copy-order.active .copy-order__icon {
    background: green
}

.copy-order.active .copy-order__icon svg {
    fill: var(--white)
}

.copy-order__icon {
    border-radius: .375rem;
    background: #ebebeb
}

.copy-order__icon svg {
    width: .875rem;
    height: .875rem;
    fill: var(--black);
    transition: all .25s linear
}

.copy-order__icon-h {
    opacity: 0
}

.copy-order__icon-h svg {
    stroke: var(--white)
}

.project-swiper .pic-link__img {
    padding-bottom: 110%
}

.export-basket svg {
    fill: transparent;
    stroke: rgba(0, 0, 0, .5)
}

.catalog-style {
    background: var(--orange-6);
    border-radius: 2rem;
    display: flex;
    align-items: center
}

.section-product {
    color: var(--white)
}

.section-product:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .4)
}

.section-product .container {
    position: relative;
    z-index: 1
}

.section-product .breadcrumb-item {
    color: var(--white)
}

.download-catalog {
    line-height: 1
}

.download-catalog svg {
    flex-shrink: 0;
    margin-right: .625rem;
    fill: transparent;
    transition: all .25s linear;
    stroke: var(--orange-2);
    width: 1.25rem;
    height: 1.25rem
}

.download-catalog:hover .download-catalog-text {
    color: var(--orange-3);
    border-bottom: .0625rem solid var(--orange-3)
}

.download-catalog:hover svg {
    stroke: var(--orange-3)
}

@media (max-width: 767px) {
    .download-catalog {
        display: none !important
    }
}

.download-catalog_mobile {
    display: none !important
}

@media (max-width: 767px) {
    .download-catalog_mobile {
        display: flex !important;
        justify-content: center;
        margin-bottom: 3.125rem
    }
}

.download-catalog-text {
    transition: all .25s linear;
    border-bottom: .0625rem solid var(--orange)
}

.tabs__panel-head {
    display: none
}

@media (max-width: 767px) {
    .tabs__panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .8125rem 0;
        font-size: 1.25rem;
        font-weight: 700;
        width: 100%
    }

    .tabs__panel-head .icon {
        width: 2.1875rem;
        height: 2.1875rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--orange);
        transition: all .25s linear;
        stroke: #fff;
        padding: .625rem;
        transform: rotate(-45deg)
    }
}

.slider-container_product {
    margin: 3.125rem 0;
    position: relative
}

.slider-container_product .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem
}

.slider-container_product .swiper-pagination-bullet {
    transition: all .25s linear;
    border-radius: 1.875rem;
    width: .625rem;
    height: .625rem;
    background: rgba(210, 166, 121, .35);
    margin: 0 .75rem
}

.slider-container_product .swiper-pagination-bullet-active {
    width: 2.8125rem;
    height: .625rem;
    background: #d2a679
}

.tabs__panel-content p {
    max-width: 78.75rem
}

.product-system {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    row-gap: 5.3125rem;
    column-gap: 3.375rem
}

@media (max-width: 1660px) {
    .product-system {
        row-gap: 2.5rem;
        column-gap: 1.5625rem
    }
}

@media (max-width: 1279px) {
    .product-system {
        grid-template-columns:repeat(2, 1fr);
        row-gap: 2.5rem;
        column-gap: 1.875rem
    }
}

@media (max-width: 767px) {
    .product-system {
        grid-template-columns:repeat(1, 1fr);
        row-gap: 1.25rem
    }
}

.product-system__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem;
    border-radius: .5rem;
    background: var(--gray-4)
}

.product-system__item:hover {
    background: var(--orange-6)
}

.product-system__item:hover .product-system__title span {
    border-bottom: .0625rem solid var(--orange-2)
}

@media (max-width: 1660px) {
    .product-system__item {
        padding: 1.25rem 1.625rem
    }

    .product-system__item br {
        display: none
    }
}

@media (max-width: 1279px) {
    .product-system__item br {
        display: block
    }
}

.product-system__title {
    line-height: 1.3
}

.product-system__title span {
    transition: all .25s linear;
    border-bottom: .0625rem solid transparent;
    display: inline
}

.product-system__pic {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9.375rem
}

.product-system__pic img {
    max-height: 100%;
    object-fit: contain
}

@media (max-width: 1660px) {
    .product-system__pic {
        height: 7rem
    }
}

.modal-block .search-page-form {
    margin-bottom: 1.875rem;
    max-width: 100%
}

.search-modal__result {
    max-height: 32.5rem;
    flex: 1;
    overflow: auto;
    margin-right: -4.25rem;
    padding-right: 4.25rem
}

.search-modal__result::-webkit-scrollbar {
    width: .25rem;
    background: #ececec;
    border-radius: 2rem
}

.search-modal__result::-webkit-scrollbar-thumb {
    background: var(--gray-3);
    border-radius: 2rem
}

@media (max-width: 1279px) {
    .search-modal__result {
        max-height: inherit;
        margin-right: -1.25rem;
        padding-right: 1.25rem
    }
}

@media (max-width: 767px) {
    .search-modal__result {
        margin-right: -.75rem;
        padding-right: .75rem
    }
}

.search-modal__result-item {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: .0625rem solid var(--gray-5)
}

.search-modal__result-item:last-of-type {
    padding-bottom: 4.375rem;
    margin-bottom: 0;
    border-bottom: none
}

.search-modal__result-elements {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    column-gap: 4.375rem;
    row-gap: 1.875rem
}

@media (max-width: 767px) {
    .search-modal__result-elements {
        grid-template-columns:repeat(1, 1fr)
    }
}

.search-modal__result-element {
    display: flex
}

.search-modal__result-element:hover .size-20 {
    color: var(--black)
}

.search-modal__result-element:hover .search-modal__result-pic {
    background: var(--gray-8)
}

.search-modal__result-pic {
    flex-shrink: 0;
    width: 7.5rem;
    height: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .625rem;
    border-radius: .5rem;
    background: var(--gray-4);
    margin-right: 1.25rem;
    transition: all .25s linear
}

.search-modal__result-pic img {
    max-height: 100%;
    object-fit: contain
}

.search-modal__result-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.search-city {
    display: flex;
    align-items: center;
    position: relative
}

.search-city .input {
    padding: 1.125rem 3.125rem 1.125rem .9375rem
}

.button-search-city {
    position: absolute;
    right: .9375rem;
    background: 0 0 !important;
    padding: 0 !important
}

.button-search-city svg {
    width: 1.25rem;
    height: 1.25rem
}

.search-city__items {
    display: block;
    column-count: 3;
    column-gap: 1.875rem
}

.search-city__items div {
    margin-bottom: 1.25rem
}

@media (max-width: 767px) {
    .search-city__items {
        column-count: 2
    }
}

.search-city__item {
    border-bottom: .0625rem solid transparent;
    line-height: 1.1;
    display: inline-block
}

.search-city__item.active, .search-city__item:hover {
    border-bottom: .0625rem solid var(--orange-2);
    color: var(--orange-2)
}

.section-about-page {
    color: var(--white);
    background-size: cover;
    background-position: 30%
}

.section-about-page .breadcrumb-item {
    color: var(--white)
}

.section-about-page:before {
    content: "";
    background: linear-gradient(to right, #000, transparent);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.section-about-page .container {
    position: relative;
    z-index: 1
}

.history-line {
    position: relative
}

@media (max-width: 767px) {
    .history-line {
        display: none
    }
}

.history-line__item-dot {
    width: .9375rem;
    height: .9375rem;
    border-radius: 50%;
    background: #d9d9d9;
    margin-bottom: 1.875rem;
    position: relative;
    z-index: 2;
    transition: all .25s linear
}

.history-line__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.history-line__item:first-child {
    align-items: flex-start
}

.history-line__item:last-of-type {
    align-items: flex-end
}

.history-line__item.is-active .history-line__item-dot {
    background: var(--orange-2)
}

.history-line__item.is-done .history-line__item-dot {
    background: var(--orange-2)
}

.history-line__base {
    position: absolute;
    top: .4375rem;
    left: 0;
    right: 0;
    height: .0625rem;
    background: var(--orange-4);
    z-index: 0
}

.history-line__progress {
    position: absolute;
    top: .4375rem;
    left: 0;
    height: .0625rem;
    background: var(--orange-2);
    width: 0;
    z-index: 1;
    transition: width .3s ease
}

.history-slide {
    display: flex
}

@media (max-width: 1279px) {
    .history-slide {
        padding-bottom: 7.5rem
    }

    .history-slide:before {
        content: "";
        width: calc(100% - 12.625rem);
        background: var(--orange-4);
        position: absolute;
        bottom: 2.4375rem;
        left: 0;
        height: .0625rem
    }
}

@media (max-width: 767px) {
    .history-slide {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 0
    }

    .history-slide:before {
        bottom: auto;
        width: calc(100% - 11.25rem);
        left: 11.25rem;
        top: 1.75rem
    }
}

.history-slide__pic {
    flex-shrink: 0;
    width: 30.625rem;
    margin-right: 5rem
}

@media (max-width: 1660px) {
    .history-slide__pic {
        margin-right: 2.5rem
    }
}

@media (max-width: 1279px) {
    .history-slide__pic {
        width: 13.75rem
    }
}

@media (max-width: 767px) {
    .history-slide__pic {
        width: 100%;
        max-width: 25rem;
        margin: 1.25rem 0 1.875rem
    }
}

.history-slide__content {
    position: relative;
    padding-bottom: 5rem
}

.history-slide__content:before {
    content: "";
    width: calc(100% - 12.625rem);
    background: var(--orange-4);
    position: absolute;
    bottom: 2.4375rem;
    left: 0;
    height: .0625rem
}

@media (max-width: 1279px) {
    .history-slide__content:before {
        display: none
    }
}

@media (max-width: 1279px) {
    .history-slide__content {
        padding-bottom: 0
    }
}

@media (max-width: 767px) {
    .history-slide__content .size-78 {
        display: none
    }
}

.history-slide-mobile {
    display: none
}

@media (max-width: 767px) {
    .history-slide-mobile {
        display: block;
        margin-bottom: 0 !important
    }
}

.section-history {
    overflow: hidden
}

.history-swiper {
    overflow: visible
}

.history-swiper .swiper-slide:last-child .history-slide__content:before {
    display: none
}

.history-swiper-container {
    margin-top: 5rem;
    position: relative
}

.history-swiper-container .size-78 {
    color: var(--orange)
}

@media (max-width: 1279px) {
    .history-swiper-container {
        margin-top: 3.125rem
    }
}

.history-swiper-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    gap: 1.875rem;
    z-index: 2
}

.history-swiper-arrow .swiper-arrow {
    width: 4.0625rem;
    height: 4.0625rem;
    position: relative;
    box-shadow: .3125rem .9375rem 1.5625rem rgba(0, 0, 0, .19);
    background: var(--white);
    left: auto;
    right: auto
}

.history-swiper-arrow .swiper-arrow svg {
    fill: #606060;
    width: .8125rem;
    height: .8125rem
}

.history-swiper-arrow .swiper-arrow:hover {
    background: var(--orange-2)
}

.history-swiper-arrow .swiper-arrow:hover svg {
    fill: var(--white)
}

@media (max-width: 767px) {
    .history-swiper-arrow .swiper-arrow {
        width: 2.8125rem;
        height: 2.8125rem
    }
}

.history-swiper-arrow .swiper-arrow.swiper-button-disabled {
    opacity: 1;
    background: #e3e3e3
}

@media (max-width: 767px) {
    .history-swiper-arrow {
        bottom: auto;
        top: .375rem;
        gap: 1.25rem;
        background: #fff;
        right: 0;
        width: 7.625rem;
        left: auto !important;
        padding-left: .75rem
    }
}

.home-about__market {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin-top: 5.625rem
}

.home-about__market .size-100 {
    color: #bfa287
}

@media (max-width: 1279px) {
    .home-about__market {
        margin-top: 1.5rem
    }
}

@media (max-width: 767px) {
    .home-about__market {
        margin-top: 1.25rem
    }
}

.section-material_step {
    background: 0 0
}

.section-material_step .material-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.section-material_step .material-content:before {
    left: auto;
    right: 100%;
    width: 100%
}

@media (max-width: 1660px) {
    .section-material_step .material-content:before {
        display: none
    }
}

@media (max-width: 1279px) {
    .section-material_step .material-content {
        padding: 0
    }
}

.section-material_step .size-52 span {
    padding-left: 4.0625rem
}

.section-material_step .button {
    padding: 0 1.25rem
}

.section-material_step .material-content__main {
    background: var(--white);
    max-width: 31.25rem
}

@media (max-width: 1660px) {
    .section-material_step .material-content__main {
        margin-left: 0;
        max-width: 29.375rem
    }
}

@media (max-width: 1279px) {
    .section-material_step .material-content__main {
        max-width: 100%
    }
}

.section-material_step .material-pic-img {
    position: relative
}

.section-material_step .material-pic-img img {
    border-radius: .5rem
}

.section-material_step .material-pic {
    padding: 0
}

@media (max-width: 1279px) {
    .section-material_step .container.flex {
        flex-direction: column;
        gap: 3.75rem
    }
}

.step-item {
    padding: 4.375rem 0;
    border-bottom: .0625rem solid var(--orange-4);
    display: flex;
    align-items: flex-start
}

.step-item:first-child {
    border-top: .0625rem solid var(--orange-4)
}

@media (max-width: 1279px) {
    .step-item {
        padding: 3.125rem 0
    }
}

@media (max-width: 767px) {
    .step-item {
        padding: 1.875rem 0
    }
}

.step-item__pic {
    flex-shrink: 0;
    margin-right: 3.125rem;
    width: 6.25rem;
    height: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .625rem;
    background: var(--orange-2)
}

@media (max-width: 767px) {
    .step-item__pic {
        width: 4.0625rem;
        height: 4.0625rem;
        padding: 1.125rem;
        margin-right: 1.5625rem
    }
}

.step-item__title {
    margin-bottom: 1.25rem
}

@media (max-width: 767px) {
    .step-item__title {
        height: 4.0625rem;
        display: flex;
        align-items: center;
        margin-bottom: 0
    }
}

.step-item__description {
    max-width: 78.375rem
}

@media (max-width: 767px) {
    .step-item__description {
        margin-top: 1.25rem;
        margin-left: -5.625rem
    }
}

.step-idea {
    max-width: 73.75rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

.team-item p {
    color: #292d32
}

.section-team {
    background: var(--orange-8)
}

@media (max-width: 767px) {
    .section-team {
        margin-top: 3.125rem
    }
}

.team-items {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    row-gap: 3.75rem;
    column-gap: 6.25rem
}

@media (max-width: 1660px) {
    .team-items {
        column-gap: 4.125rem
    }
}

@media (max-width: 767px) {
    .team-items {
        flex-flow: row;
        overflow: auto;
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding-left: .9375rem;
        padding-right: .9375rem;
        gap: 0;
        justify-content: flex-start
    }

    .team-items::-webkit-scrollbar {
        display: none
    }
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 15.25rem
}

.team-item p {
    font-size: 1rem
}

@media (max-width: 767px) {
    .team-item {
        flex-shrink: 0;
        margin-right: 1.875rem
    }

    .team-item:last-child {
        margin-right: 0
    }
}

.team-item__pic img {
    border-radius: 50%
}

@media (max-width: 767px) {
    .certificate-swiper {
        margin-left: -.9375rem;
        margin-right: -.9375rem;
        padding-left: .9375rem;
        padding-right: .9375rem
    }
}

.certificate-slide {
    height: 25.625rem;
    padding: 3.4375rem 2.5rem;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-4)
}

.certificate-slide img {
    max-height: 100%;
    object-fit: contain
}

.certificate-slide:hover {
    background: var(--orange-6)
}

.certificate-slide:hover .certificate-slide__icon {
    opacity: 1
}

@media (max-width: 1660px) {
    .certificate-slide {
        height: 23.9375rem
    }
}

@media (max-width: 1279px) {
    .certificate-slide {
        height: 29.375rem
    }
}

@media (max-width: 767px) {
    .certificate-slide {
        height: 20.5rem
    }
}

.certificate-slide__icon {
    position: absolute;
    width: 4.0625rem;
    height: 4.0625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange-2);
    opacity: 0;
    transition: all .25s linear
}

.certificate-slide__icon svg {
    fill: var(--white);
    width: .9375rem;
    height: .9375rem
}

.material-content_production:before {
    top: 62%
}

.material-content_production .material-content-line:before {
    top: 62%
}

.production-items {
    display: flex;
    flex-flow: row wrap
}

.production-item {
    width: 50%;
    border-bottom: .0625rem solid var(--orange-4);
    padding: 3.125rem 3.75rem;
    transition: all .25s linear;
    display: flex;
    align-items: center
}

.production-item:nth-child(2n-1) {
    border-right: .0625rem solid var(--orange-4);
    padding-left: 0
}

@media (max-width: 1279px) {
    .production-item:nth-child(2n-1) {
        border-right: none
    }
}

.production-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.production-item:nth-child(1), .production-item:nth-child(2) {
    padding-top: 0
}

.production-item:hover {
    background: var(--orange-6)
}

@media (max-width: 1660px) {
    .production-item {
        padding: 3.125rem 1.875rem
    }
}

@media (max-width: 1279px) {
    .production-item:nth-child(2) {
        padding: 2.5rem 0
    }
}

@media (max-width: 767px) {
    .production-item:nth-child(2) {
        padding: 1.875rem 0
    }
}

@media (max-width: 1279px) {
    .production-item {
        padding: 2.5rem 0;
        width: 100%
    }
}

@media (max-width: 767px) {
    .production-item {
        padding: 1.875rem 0;
        align-items: flex-start
    }
}

.production-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-2);
    width: 6.25rem;
    height: 6.25rem;
    border-radius: .625rem;
    margin-right: 2.5rem
}

@media (max-width: 767px) {
    .production-item__icon {
        width: 4.0625rem;
        height: 4.0625rem;
        margin-right: 1.875rem
    }

    .production-item__icon img {
        width: 1.875rem
    }
}

.production-item__text {
    max-width: 26.375rem
}

.static-list {
    display: flex;
    align-items: flex-start
}

@media (max-width: 1279px) {
    .static-list {
        flex-direction: column;
        gap: 2.5rem
    }
}

@media (max-width: 767px) {
    .static-list {
        gap: 1.875rem
    }
}

.static-list__items {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

@media (max-width: 1279px) {
    .static-list__items {
        width: 100%
    }
}

@media (max-width: 767px) {
    .static-list__items {
        gap: 1.875rem
    }
}

.static-list__item {
    position: relative;
    padding-left: 3.9375rem;
    max-width: 39.5625rem
}

.static-list__item:before {
    content: "";
    background: url(../images/icon/tick-circle.svg) no-repeat center;
    background-size: contain;
    width: 2.1875rem;
    height: 2.1875rem;
    position: absolute;
    top: 0;
    left: 0
}

@media (max-width: 1660px) {
    .static-list__item {
        max-width: 35.9375rem
    }
}

@media (max-width: 1279px) {
    .static-list__item {
        max-width: 100%
    }
}

@media (max-width: 767px) {
    .static-list__item {
        padding-left: 3.3125rem
    }
}

.factory-items {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 3.125rem
}

@media (max-width: 1660px) {
    .factory-items {
        gap: 1.875rem
    }
}

@media (max-width: 1279px) {
    .factory-items {
        grid-template-columns:repeat(1, 1fr)
    }
}

.factory-item {
    display: flex;
    flex-direction: column
}

@media (max-width: 1279px) {
    .factory-item {
        flex-direction: row;
        align-items: center
    }
}

@media (max-width: 767px) {
    .factory-item {
        flex-direction: column-reverse
    }
}

.factory-item__pic {
    position: relative;
    padding-bottom: 66.6%
}

.factory-item__pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .5rem
}

@media (max-width: 767px) {
    .factory-item__pic img {
        position: relative
    }
}

@media (max-width: 1279px) {
    .factory-item__pic {
        width: 21.5625rem;
        flex-shrink: 0;
        margin-right: 2rem;
        padding-bottom: 36.5%;
        margin-bottom: 0 !important
    }
}

@media (max-width: 767px) {
    .factory-item__pic {
        padding-bottom: 0;
        margin-top: 1.875rem;
        margin-right: 0
    }
}

.factory-text {
    max-width: 66.25rem
}

.pic img {
    border-radius: .5rem
}

@media (max-width: 1279px) {
    .service-items_production .service-item:last-child {
        grid-column: span 2
    }
}

@media (max-width: 767px) {
    .service-items_production .service-item:last-child {
        grid-column: inherit
    }
}

.facts-content_detail .facts-text {
    margin-top: 5.625rem
}

@media (max-width: 1279px) {
    .facts-content_detail .facts-text {
        margin-top: 2.5rem
    }
}

@media (max-width: 767px) {
    .facts-content_detail .facts-text {
        margin-top: 1.25rem
    }
}

@media (max-width: 1279px) {
    .tabs-flex {
        flex-direction: column;
        gap: 2.5rem
    }
}

@media (max-width: 767px) {
    .tabs__content_general {
        margin-bottom: 2.5rem
    }

    .tabs__content_general .tabs__panel-content {
        height: 0;
        transition: height .25s linear;
        overflow: hidden
    }

    .tabs__content_general .tabs__panel {
        display: block;
        opacity: 1;
        border-top: .0625rem solid var(--orange-4)
    }

    .tabs__content_general .tabs__panel:last-child {
        border-bottom: .0625rem solid var(--orange-4)
    }

    .tabs__content_general .tabs__panel.active .tabs__panel-head .icon {
        transform: rotate(0)
    }

    .tabs__content_general .tabs__panel.active .tabs__panel-content {
        padding-bottom: 1.25rem;
        height: auto
    }
}

.product-main-slider {
    background: var(--gray-4)
}

.product-main-slider .swiper-slide {
    display: flex;
    justify-content: center
}

.switcher {
    display: flex;
    align-items: center
}

@media (max-width: 767px) {
    .switcher {
        display: none
    }
}

.switcher-icon {
    position: relative;
    margin-right: .75rem
}

.switcher-icon input {
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    pointer-events: auto
}

.switcher-icon input:checked + span:before {
    background: var(--orange-2);
    left: 1.25rem
}

.switcher-icon span {
    display: flex;
    width: 2.5rem;
    height: 1.375rem;
    background: var(--white);
    border: .0625rem solid var(--orange);
    border-radius: 2rem
}

.switcher-icon span:before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    transition: all .25s linear;
    background: #d9d9d9;
    position: absolute;
    top: .1875rem;
    left: .25rem
}

.selection-fittings .color-brown {
    border-bottom: .0625rem solid var(--orange-2);
    transition: all .25s linear
}

.selection-fittings:hover .color-brown {
    color: var(--orange-3);
    border-bottom: .0625rem solid var(--orange-3)
}

@media (max-width: 1279px) {
    .selection-fittings {
        display: none !important
    }
}

.selection-fittings_mobile {
    display: none !important
}

@media (max-width: 1279px) {
    .selection-fittings_mobile {
        display: inline-block !important
    }
}

.button-flex {
    display: flex;
    gap: 1.25rem
}

.button-flex .button {
    padding: 0 1.25rem;
    width: 100%
}

.button-flex .button-border {
    background: 0 0
}

@media (max-width: 1279px) {
    .button-flex {
        flex-direction: column
    }
}

.product-main-characteristic {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    line-height: 1.2
}

.product-main-characteristic__line {
    display: flex;
    align-items: flex-start
}

@media (max-width: 1279px) {
    .product-main-characteristic__line {
        font-size: .875rem !important
    }
}

.product-main-characteristic__label {
    min-width: 7.0625rem;
    padding-right: .625rem;
    flex-shrink: 0;
    max-width: 13.75rem
}

.set-items {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.set-item {
    display: flex;
    align-items: center
}

.set-item__number {
    width: 2.375rem;
    flex-shrink: 0
}

@media (max-width: 767px) {
    .flex-end {
        flex: 1;
        display: flex;
        align-items: flex-end
    }
}

.button-product-filter {
    display: none;
    margin-top: 1.875rem;
    color: var(--black) !important
}

@media (max-width: 767px) {
    .button-product-filter {
        display: flex;
        color: var(--black);
        width: 100%
    }

    .button-product-filter svg {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
        margin-right: .625rem;
        fill: transparent;
        stroke: var(--black)
    }
}

.more-hidden-text {
    height: 0;
    overflow: hidden;
    transition: height .25s linear
}

.swiper-pagination-idea {
    display: none
}

@media (max-width: 767px) {
    .swiper-pagination-idea {
        display: flex;
        margin-top: 1.875rem;
        gap: .5rem
    }
}

.swiper-pagination-idea .swiper-pagination-bullet {
    height: .75rem;
    width: 100%;
    transition: all .25s linear;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: 0 0 !important;
    position: relative
}

.swiper-pagination-idea .swiper-pagination-bullet:before {
    content: "";
    background: var(--white);
    position: absolute;
    left: 0;
    width: 100%;
    height: .125rem;
    background: #fff
}

@media (max-width: 1279px) {
    .swiper-pagination-idea .swiper-pagination-bullet:before {
        background: var(--gray-9)
    }
}

.swiper-pagination-idea .swiper-pagination-bullet-active:before {
    background: var(--black)
}

.current-choose-furniture.active {
    display: flex;
    align-items: center;
    margin-bottom: 1.875rem
}

.current-choose-furniture__pic {
    background: #fff;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
    border-radius: .5rem;
    overflow: hidden
}

.current-choose-furniture__title {
    font-size: .875rem
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.modal-main {
    overflow: auto;
    max-height: 100%;
    width: 100%;
    display: flex;
    justify-content: center
}

.modal-block {
    width: 100%
}

.modal-content {
    background-color: #fff;
    padding: 5.625rem 6.25rem;
    border-radius: .625rem;
    width: 100%;
    max-width: 40rem;
    position: relative;
    margin: 3.1875rem auto
}

@media (max-width: 767px) {
    .modal-content {
        padding: 3.75rem 1.25rem 2.5rem;
        width: calc(100% - 1.875rem)
    }
}

#modal-city, #modal-search {
    align-items: flex-start
}

@media (max-width: 767px) {
    .modal-content_set {
        height: 100vh;
        overflow: auto;
        width: 100%;
        padding: 2.75rem .9375rem 1.875rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        border-radius: 0
    }

    .modal-content_set .size-32 {
        padding-bottom: 1.25rem;
        border-bottom: .0625rem solid var(--orange-4)
    }
}

.modal-content_address {
    max-width: 80rem;
    padding: 3.5rem 2.5rem
}

@media (max-width: 767px) {
    .modal-content_address {
        height: 100vh;
        overflow: auto;
        width: 100%;
        padding: 2.75rem .9375rem 1.875rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        border-radius: 0
    }
}

.modal-content_search {
    max-width: 58.125rem;
    padding: 4.375rem 4.625rem 0;
    display: flex;
    flex-direction: column
}

@media (max-width: 1279px) {
    .modal-content_search {
        padding: 5.9375rem 1.5rem 0;
        margin: 0;
        max-height: 100dvh;
        width: 100% !important;
        height: 100vh;
        max-width: 100%;
        border-radius: 0
    }

    .modal-content_search .mb-40 {
        margin-bottom: 1.875rem
    }
}

@media (max-width: 767px) {
    .modal-content_search {
        padding: 2.8125rem .875rem 0
    }

    .modal-content_search .size-36 {
        margin-bottom: 1.5625rem
    }
}

.modal-content_city {
    max-width: 48rem;
    padding: 4.375rem 2.125rem;
    display: flex;
    flex-direction: column
}

@media (max-width: 1279px) {
    .modal-content_city {
        padding: 5.9375rem 1.5rem 0;
        margin: 0;
        max-height: 100dvh;
        width: 100% !important;
        height: 100vh;
        border-radius: 0
    }

    .modal-content_city .mb-40 {
        margin-bottom: 1.875rem
    }
}

@media (max-width: 767px) {
    .modal-content_city {
        padding: 2.8125rem .875rem 0
    }
}

.close-modal {
    position: absolute;
    top: .625rem;
    right: .625rem;
    background: #ececec;
    cursor: pointer;
    width: 2.1875rem;
    height: 2.1875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%
}

.close-modal svg {
    width: .75rem;
    height: .75rem;
    stroke: var(--black)
}

.close-modal:hover {
    background: var(--gray-5)
}

.modal.show {
    display: flex;
    animation: fadeIn .3s ease-out
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.input-absolute {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1
}

.input-absolute:checked + .radio-button__label {
    background: var(--orange-2);
    color: var(--white);
    pointer-events: none
}

.input-absolute:checked + .radio-button__color {
    border: .0625rem solid var(--gray-10);
    pointer-events: none
}

.radio-button__label {
    background: var(--white);
    font-size: 1rem;
    border-radius: .5rem;
    border: .0625rem solid transparent;
    transition: all .25s linear
}

.radio-button__label:hover {
    border: .0625rem solid var(--orange)
}

.selection-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

@media (max-width: 767px) {
    .selection-form {
        gap: 1.875rem
    }
}

.radio-button__color {
    cursor: pointer
}

.radio-button__color:hover {
    padding: .4375rem
}

.radio-show {
    margin-left: .3125rem;
    background: var(--white);
    width: 2.8125rem;
    height: 2.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    color: var(--black)
}

.radio-show:hover {
    background: var(--orange-2);
    color: var(--white)
}

@media (max-width: 767px) {
    .radio-show {
        width: auto !important;
        background: 0 0 !important
    }
}

.agreed {
    color: rgba(255, 255, 255, .5)
}

.agreed a {
    border-bottom: .0625rem solid
}

.agreed a:hover {
    color: var(--white)
}

@media (max-width: 767px) {
    .agreed {
        text-align: center
    }
}

.textarea {
    resize: none;
    padding: 1.25rem !important
}

.textarea::placeholder {
    color: var(--black);
    transition: all .25s linear
}

.textarea:focus::placeholder {
    opacity: 0
}

@media (max-width: 767px) {
    .textarea {
        padding: 1.25rem .9375rem !important
    }
}

body .footer {
    padding: 6.25rem 0 3.75rem;
    border-top: .0625rem solid var(--orange-4);
    line-height: 1.2;
    margin-top: 6.25rem
}

@media (max-width: 1279px) {
    body .footer {
        margin-top: 5rem;
        padding: 3.125rem 0
    }
}

@media (max-width: 767px) {
    body .footer {
        margin-top: 3.125rem;
        padding: 2.5rem 0 1.5625rem
    }
}

body .footer-info {
    display: flex;
    flex-direction: column;
    flex-basis: 20.8125rem;
    flex-shrink: 0;
    align-items: flex-start
}

@media (max-width: 1660px) {
    body .footer-info {
        flex-basis: 17rem
    }
}

@media (max-width: 1279px) {
    body .footer-info {
        flex-basis: auto;
        width: 100%
    }
}

@media (max-width: 1279px) {
    body .footer-links {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%
    }
}

body .footer-logo {
    margin-bottom: 3.125rem
}

@media (max-width: 1279px) {
    body .footer-logo {
        display: none
    }
}

body .footer-phone {
    border-bottom: .0625rem solid transparent;
    line-height: 1;
    margin-bottom: .75rem;
    display: inline-block
}

body .footer-phone:hover {
    border-bottom: .0625rem solid var(--orange-2)
}

@media (max-width: 1279px) {
    body .footer-phone {
        margin-bottom: 1.25rem
    }
}

@media (max-width: 767px) {
    body .footer-phone {
        margin-bottom: .875rem
    }
}

body .footer-time {
    opacity: .5;
    margin-bottom: 1.875rem
}

@media (max-width: 1279px) {
    body .footer-time {
        display: flex;
        margin-bottom: .75rem
    }

    body .footer-time span {
        width: 1.25rem
    }

    body .footer-time br {
        display: none
    }
}

@media (max-width: 767px) {
    body .footer-time {
        flex-flow: row wrap
    }
}

body .footer-email {
    line-height: 1;
    border-bottom: .0625rem solid;
    transition: all .25s linear;
    margin-bottom: 3.375rem;
    display: inline-block
}

@media (max-width: 1279px) {
    body .footer-email {
        margin-bottom: 0
    }
}

body .footer-menu-container {
    justify-content: space-between;
    width: 100%
}

@media (max-width: 1279px) {
    body .footer-menu-container {
        display: none
    }
}

body .footer-menu {
    width: 25%
}

@media (max-width: 1660px) {
    body .footer-menu {
        width: auto
    }
}

body .footer-menu__link {
    display: inline-block;
    line-height: 1;
    border-bottom: .0625rem solid transparent
}

body .footer-menu__link:hover {
    border-bottom: .0625rem solid var(--orange-2)
}

body .footer-menu__item {
    margin-bottom: .625rem
}

body .footer-menu__more {
    line-height: 1;
    color: var(--orange-2);
    border-bottom: .0625rem solid transparent
}

body .footer-menu__more:hover {
    border-bottom: .0625rem solid var(--orange-2)
}

body .footer-bottom {
    padding-top: 3.75rem;
    margin-top: 3.75rem;
    border-top: .0625rem solid var(--orange-4)
}

@media (max-width: 1279px) {
    body .footer-bottom {
        padding-top: 1.875rem;
        margin-top: 1.875rem
    }
}

@media (max-width: 767px) {
    body .footer-bottom {
        padding-top: 1.25rem;
        margin-top: 1.25rem
    }
}

body .footer-copy {
    margin-bottom: .9375rem
}

body .footer-text {
    opacity: .5;
    max-width: 76.25rem;
    margin-bottom: .9375rem
}

@media (max-width: 1660px) {
    body .footer-text {
        max-width: 49.5625rem
    }
}

@media (max-width: 1279px) {
    body .footer-text {
        margin-bottom: 2.5rem
    }
}

@media (max-width: 767px) {
    body .footer-text {
        margin-bottom: 1.25rem
    }
}

body .footer-politic {
    border-bottom: .0625rem solid;
    line-height: 1;
    display: inline-block;
    opacity: .5
}

body .footer-politic:hover {
    opacity: 1;
    color: var(--black)
}

body .footer-pay {
    flex-shrink: 0
}

@media (max-width: 1279px) {
    body .footer-pay {
        display: none
    }
}

@media (max-width: 767px) {
    body .footer-pay {
        margin-top: 1.875rem
    }
}

@media (max-width: 1270px) {
    body .footer-end-flex {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
}

@media (max-width: 767px) {
    body .footer-end-flex {
        flex-direction: column;
        align-items: flex-start
    }
}

body .footer-end-flex .footer-pay {
    display: none
}

@media (max-width: 1270px) {
    body .footer-end-flex .footer-pay {
        display: flex
    }
}

:root {
    --f-spinner-width: 2.25rem;
    --f-spinner-height: 2.25rem;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75
}

.f-spinner {
    margin: auto;
    padding: 0;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height)
}

.f-spinner svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none
}

.f-spinner svg :first-child {
    stroke: var(--f-spinner-color-1)
}

.f-spinner svg :last-child {
    stroke: var(--f-spinner-color-2);
    animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

.f-throwOutUp {
    animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp
}

.f-throwOutDown {
    animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
    to {
        transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
        opacity: 0
    }
}

@keyframes f-throwOutDown {
    to {
        transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
        opacity: 0
    }
}

.f-zoomInUp {
    animation: var(--f-transition-duration, .2s) ease .1s both f-zoomInUp
}

.f-zoomOutDown {
    animation: var(--f-transition-duration, .2s) ease both f-zoomOutDown
}

@keyframes f-zoomInUp {
    from {
        transform: scale(.975) translate3d(0, 1rem, 0);
        opacity: 0
    }
    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-zoomOutDown {
    to {
        transform: scale(.975) translate3d(0, 1rem, 0);
        opacity: 0
    }
}

.f-fadeIn {
    animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
    z-index: 2
}

.f-fadeOut {
    animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
    z-index: 1
}

@keyframes f-fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes f-fadeOut {
    100% {
        opacity: 0
    }
}

.f-fadeFastIn {
    animation: var(--f-transition-duration, .2s) ease-out both f-fadeFastIn;
    z-index: 2
}

.f-fadeFastOut {
    animation: var(--f-transition-duration, .1s) ease-out both f-fadeFastOut;
    z-index: 2
}

@keyframes f-fadeFastIn {
    0% {
        opacity: .75
    }
    100% {
        opacity: 1
    }
}

@keyframes f-fadeFastOut {
    100% {
        opacity: 0
    }
}

.f-fadeSlowIn {
    animation: var(--f-transition-duration, .5s) ease both f-fadeSlowIn;
    z-index: 2
}

.f-fadeSlowOut {
    animation: var(--f-transition-duration, .5s) ease both f-fadeSlowOut;
    z-index: 1
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes f-fadeSlowOut {
    100% {
        opacity: 0
    }
}

.f-crossfadeIn {
    animation: var(--f-transition-duration, .2s) ease-out both f-crossfadeIn;
    z-index: 2
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, .2s) * .5) linear .1s both f-crossfadeOut;
    z-index: 1
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes f-crossfadeOut {
    100% {
        opacity: 0
    }
}

.f-slideIn.from-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext
}

.f-slideIn.from-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev
}

.f-slideOut.to-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
    0% {
        transform: translateX(100%)
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideInNext {
    0% {
        transform: translateX(-100%)
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideOutNext {
    100% {
        transform: translateX(-100%)
    }
}

@keyframes f-slideOutPrev {
    100% {
        transform: translateX(100%)
    }
}

.f-classicIn.from-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInNext;
    z-index: 2
}

.f-classicIn.from-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicInPrev;
    z-index: 2
}

.f-classicOut.to-next {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutNext;
    z-index: 1
}

.f-classicOut.to-prev {
    animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-classicOutPrev;
    z-index: 1
}

@keyframes f-classicInNext {
    0% {
        transform: translateX(-4.6875rem);
        opacity: 0
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicInPrev {
    0% {
        transform: translateX(4.6875rem);
        opacity: 0
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicOutNext {
    100% {
        transform: translateX(-4.6875rem);
        opacity: 0
    }
}

@keyframes f-classicOutPrev {
    100% {
        transform: translateX(4.6875rem);
        opacity: 0
    }
}

:root {
    --f-button-width: 2.5rem;
    --f-button-height: 2.5rem;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 1.25rem;
    --f-button-svg-height: 1.25rem;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition)
}

@media (hover: hover) {
    .f-button:hover:not([disabled]) {
        color: var(--f-button-hover-color);
        background-color: var(--f-button-hover-bg)
    }
}

.f-button:active:not([disabled]) {
    background-color: var(--f-button-active-bg)
}

.f-button:focus:not(:focus-visible) {
    outline: 0
}

.f-button:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-button svg {
    width: var(--f-button-svg-width);
    height: var(--f-button-svg-height);
    fill: var(--f-button-svg-fill);
    stroke: currentColor;
    stroke-width: var(--f-button-svg-stroke-width);
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .15s ease;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none
}

.f-button[disabled] {
    cursor: default
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity)
}

.f-carousel__nav .f-button.is-next, .f-carousel__nav .f-button.is-prev, .fancybox__nav .f-button.is-next, .fancybox__nav .f-button.is-prev {
    position: absolute;
    z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev {
    top: 50%;
    transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev {
    top: auto;
    left: 50%;
    transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg {
    transform: rotate(90deg)
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
    pointer-events: none
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto
}

html.with-fancybox body {
    touch-action: none
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
    overflow: hidden !important;
    overscroll-behavior-y: none
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, 0.98);
    --fancybox-slide-gap: 0.625rem;
    --f-spinner-width: 3.125rem;
    --f-spinner-height: 3.125rem;
    --f-spinner-color-1: rgba(255, 255, 255, 0.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
    z-index: var(--fancybox-zIndex, 1050);
    outline: 0;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain
}

.fancybox__container *, .fancybox__container ::after, .fancybox__container ::before {
    box-sizing: inherit
}

.fancybox__container::backdrop {
    background-color: rgba(0, 0, 0, 0)
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip
}

.fancybox__viewport {
    width: 100%;
    height: 100%
}

.fancybox__viewport.is-draggable {
    cursor: move;
    cursor: grab
}

.fancybox__viewport.is-dragging {
    cursor: move;
    cursor: grabbing
}

.fancybox__track {
    display: flex;
    margin: 0 auto;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: .25rem;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 2.5rem
}

.fancybox__slide.has-html5video, .fancybox__slide.has-iframe, .fancybox__slide.has-video {
    overflow: hidden
}

.fancybox__slide.has-image {
    overflow: hidden
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
    overflow: visible
}

.fancybox__slide::after, .fancybox__slide::before {
    content: "";
    flex: 0 0 0;
    margin: auto
}

.fancybox__backdrop:empty, .fancybox__slide:empty, .fancybox__track:empty, .fancybox__viewport:empty {
    display: block
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0;
    z-index: 20
}

.is-loading .fancybox__content {
    opacity: 0
}

.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__content [contenteditable], .fancybox__content [data-selectable] {
    cursor: auto
}

.fancybox__slide.has-image > .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: .0625rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
    width: 100%;
    height: auto;
    max-height: 100%
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
    will-change: transform, width, height
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    user-select: none;
    filter: blur(0)
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: .875rem 0 .25rem 0;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible
}

.is-closing .fancybox__caption, .is-loading .fancybox__caption {
    opacity: 0;
    visibility: hidden
}

.is-compact .fancybox__caption {
    padding-bottom: 0
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: .5rem;
    z-index: 40
}

.fancybox__content > .f-button.is-close-btn {
    --f-button-width: 2.125rem;
    --f-button-height: 2.125rem;
    --f-button-border-radius: 0.25rem;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 1.375rem;
    --f-button-svg-height: 1.375rem;
    position: absolute;
    top: -2.375rem;
    right: 0;
    opacity: .75
}

.is-loading .fancybox__content > .f-button.is-close-btn {
    visibility: hidden
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
    visibility: hidden
}

.fancybox__content > .f-button.is-close-btn:hover {
    opacity: 1
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 1.5rem;
    opacity: var(--fancybox-opacity, 1);
    transition: all .25s ease
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: .75rem
}

.is-compact .fancybox__content > .f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-active-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.6);
    --f-button-svg-width: 1.125rem;
    --f-button-svg-height: 1.125rem;
    --f-button-svg-filter: none;
    top: .3125rem;
    right: .3125rem
}

.fancybox__nav {
    --f-button-width: 3.125rem;
    --f-button-height: 3.125rem;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, 0.3);
    --f-button-active-bg: rgba(24, 24, 27, 0.5);
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 1.625rem;
    --f-button-svg-height: 1.625rem;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(24, 24, 27, 0.5));
    --f-button-svg-disabled-opacity: 0.65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -1.875rem;
    right: -1.25rem;
    left: -1.25rem;
    bottom: -1.875rem;
    z-index: 1
}

.is-idle .fancybox__nav {
    animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__slide > .f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -.5));
    z-index: 30;
    cursor: pointer
}

.fancybox-protected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    user-select: none
}

.fancybox-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    z-index: 40;
    user-select: none;
    pointer-events: none
}

.fancybox-focus-guard {
    outline: 0;
    opacity: 0;
    position: fixed;
    pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > :not(.fancybox__content), .fancybox__container.is-animated[aria-hidden=false] > :not(.fancybox__backdrop,.fancybox__carousel) {
    animation: var(--f-interface-enter-duration, .25s) ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > :not(.fancybox__content), .fancybox__container.is-animated[aria-hidden=true] > :not(.fancybox__backdrop,.fancybox__carousel) {
    animation: var(--f-interface-exit-duration, .15s) ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut
}

.has-html5video .fancybox__content, .has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-vimeo .fancybox__content, .has-youtube .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: .0625rem;
    overflow: visible
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
    width: calc(100% - 7.5rem);
    height: 90%
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
    width: 100%;
    height: 100%
}

.has-html5video .fancybox__content, .has-vimeo .fancybox__content, .has-youtube .fancybox__content {
    width: 60rem;
    height: 33.75rem;
    max-width: 100%;
    max-height: 100%
}

.has-html5video .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-vimeo .fancybox__content, .has-youtube .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, .9);
    color: #fff
}

.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 {
    border: 0 !important;
    clip: rect(.0625rem, .0625rem, .0625rem, .0625rem) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: .0625rem !important;
    margin: -.0625rem !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: .0625rem !important;
    white-space: nowrap !important
}

.f-carousel__thumbs {
    --f-thumb-width: 6rem;
    --f-thumb-height: 4.5rem;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 0.125rem;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 0.5rem;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 0.25rem;
    --f-thumb-extra-gap: 1rem;
    --f-thumb-clip-width: 2.875rem
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    perspective: 62.5rem;
    transform: translateZ(0)
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .125rem;
    background-image: linear-gradient(#ebeff2, #e2e8f0);
    z-index: -1
}

.f-thumbs .f-spinner svg {
    display: none
}

.f-thumbs.is-vertical {
    height: 100%
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translate3d(0, 0, 0)
}

.f-thumbs__track {
    display: flex
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer
}

.f-thumbs__slide.is-loading img {
    opacity: 0
}

.is-classic .f-thumbs__viewport {
    height: 100%
}

.is-modern .f-thumbs__track {
    width: max-content
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((var(--f-thumb-clip-width, 0)) * -.5);
    width: calc(var(--width, 0) * .0625rem + var(--f-thumb-clip-width, 0));
    cursor: pointer
}

.is-modern .f-thumbs__slide {
    width: var(--f-thumb-clip-width);
    transform: translate3d(calc(var(--shift, 0) * -.0625rem), 0, 0);
    transition: none;
    pointer-events: none
}

.is-modern.is-resting .f-thumbs__slide {
    transition: transform .33s ease
}

.is-modern.is-resting .f-thumbs__slide__button {
    transition: clip-path .33s ease
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
    filter: drop-shadow(-.0625rem 0 0 var(--f-thumb-outline-color)) drop-shadow(.125rem 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -.0625rem 0 var(--f-thumb-outline-color)) drop-shadow(0 .125rem 0 var(--f-thumb-outline-color))
}

.f-thumbs__slide__button {
    appearance: none;
    width: var(--f-thumb-width);
    height: 100%;
    margin: 0 -100% 0 -100%;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    outline: 0;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: 0
}

.f-thumbs__slide__button:focus-visible {
    outline: 0;
    opacity: var(--f-thumb-selected-opacity)
}

.is-modern .f-thumbs__slide__button {
    --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
    clip-path: var(--clip-path)
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity)
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: f-fadeIn .2s ease-out;
    z-index: 10
}

.f-thumbs__slide__img {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    object-fit: cover;
    border-radius: var(--f-thumb-border-radius)
}

.f-thumbs.is-horizontal .f-thumbs__track {
    padding: .5rem 0 .75rem 0
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    padding: 0 .5rem
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
    --f-thumb-width: 6rem;
    --f-thumb-height: 4.5rem;
    --f-thumb-border-radius: 0.125rem;
    --f-thumb-outline: 0.125rem;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    transition: max-height .35s cubic-bezier(.23, 1, .32, 1)
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 0.5rem;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 0.25rem;
    --f-thumb-extra-gap: 1rem;
    --f-thumb-clip-width: 2.875rem;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 4rem;
    --f-thumb-clip-width: 2rem;
    --f-thumb-height: 3rem;
    --f-thumb-extra-gap: 0.625rem
}

.fancybox__thumbs.is-masked {
    max-height: 0 !important
}

.is-closing .fancybox__thumbs {
    transition: none !important
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
    --f-button-width: 2.875rem;
    --f-button-height: 2.875rem;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, 0.65);
    --f-button-hover-bg: rgba(70, 70, 73, 0.65);
    --f-button-active-bg: rgba(90, 90, 93, 0.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 1.5rem;
    --f-button-svg-height: 1.5rem;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(24, 24, 27, 0.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .5));
    pointer-events: none;
    z-index: 20
}

.fancybox__toolbar :focus-visible {
    z-index: 1
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
    flex-grow: 1;
    flex-basis: 0
}

.fancybox__toolbar__column.is-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap
}

.fancybox__infobar {
    padding: 0 .3125rem;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 1.0625rem;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none
}

.fancybox__infobar span {
    padding: 0 .3125rem
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
    position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex
}

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: .1875rem;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none
}

.vk-video-modal .fancybox__content {
    padding: 0
}

:root {
    --ss-primary-color: #5897fb;
    --ss-bg-color: #ffffff;
    --ss-font-color: #4d4d4d;
    --ss-placeholder-color: #8d8d8d;
    --ss-disabled-color: #dcdee2;
    --ss-border-color: #dcdee2;
    --ss-highlight-color: #fffb8c;
    --ss-focus-color: var(--ss-primary-color);
    --ss-success-color: #00b755;
    --ss-error-color: #dc3545;
    --ss-main-height: 2.8125rem;
    --ss-content-height: 13.3125rem;
    --ss-search-height: 2.5rem;
    --ss-option-height: auto;
    --ss-spacing-l: 0.5625rem;
    --ss-spacing-m: 0.4375rem;
    --ss-spacing-s: 0.3125rem;
    --ss-animation-timing: 0.2s;
    --ss-border-radius: 0.25rem
}

@keyframes ss-valueIn {
    0% {
        transform: scale(0);
        opacity: 0
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes ss-valueOut {
    0% {
        transform: scale(1);
        opacity: 1
    }
    100% {
        transform: scale(0);
        opacity: 0
    }
}

.ss-hide {
    display: none !important
}

.ss-main {
    display: flex;
    flex-direction: row;
    position: relative;
    user-select: none;
    color: var(--ss-font-color);
    min-height: var(--ss-main-height);
    width: 100%;
    padding: var(--ss-spacing-s);
    cursor: pointer;
    border: .0625rem solid var(--ss-border-color);
    border-radius: var(--ss-border-radius);
    background-color: var(--ss-bg-color);
    outline: 0;
    box-sizing: border-box;
    transition: background-color var(--ss-animation-timing);
    overflow: hidden
}

.ss-main:focus {
    box-shadow: 0 0 .3125rem var(--ss-focus-color)
}

.ss-main.ss-disabled {
    background-color: var(--ss-disabled-color);
    cursor: not-allowed
}

.ss-main.ss-disabled .ss-values .ss-disabled {
    color: var(--ss-font-color)
}

.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete {
    cursor: not-allowed
}

.ss-main.ss-dir-above {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.ss-main.ss-dir-below {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.ss-main .ss-values {
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--ss-spacing-m);
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden
}

.ss-main .ss-values .ss-placeholder {
    display: block;
    width: 100%;
    min-width: 0;
    padding: var(--ss-spacing-s) var(--ss-spacing-m) var(--ss-spacing-s) var(--ss-spacing-m);
    margin: auto 0 auto 0;
    line-height: 1em;
    color: var(--ss-placeholder-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ss-main .ss-values .ss-max {
    display: flex;
    user-select: none;
    align-items: center;
    width: fit-content;
    font-size: .75rem;
    color: var(--ss-bg-color);
    line-height: 1;
    padding: var(--ss-spacing-s) var(--ss-spacing-m);
    background-color: var(--ss-primary-color);
    border-radius: var(--ss-border-radius)
}

.ss-main .ss-values .ss-single {
    display: block;
    color: var(--black);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
    max-width: calc(100% - 1.25rem)
}

.ss-main .ss-values .ss-value {
    display: flex;
    user-select: none;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    background-color: var(--ss-primary-color);
    border-radius: var(--ss-border-radius);
    animation-name: ss-valueIn;
    animation-duration: var(--ss-animation-timing);
    animation-timing-function: ease-out;
    animation-fill-mode: both
}

.ss-main .ss-values .ss-value.ss-value-out {
    animation-name: ss-valueOut;
    animation-duration: var(--ss-animation-timing);
    animation-timing-function: ease-out
}

.ss-main .ss-values .ss-value .ss-value-text {
    flex: 1;
    min-width: 0;
    font-size: .75rem;
    line-height: 1;
    color: var(--ss-bg-color);
    padding: var(--ss-spacing-s) var(--ss-spacing-m);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ss-main .ss-values .ss-value .ss-value-delete {
    display: flex;
    align-items: center;
    height: var(--ss-spacing-l);
    width: var(--ss-spacing-l);
    padding: var(--ss-spacing-s) var(--ss-spacing-m);
    cursor: pointer;
    border-left: solid .0625rem var(--ss-bg-color);
    box-sizing: content-box
}

.ss-main .ss-values .ss-value .ss-value-delete svg {
    height: var(--ss-spacing-l);
    width: var(--ss-spacing-l)
}

.ss-main .ss-values .ss-value .ss-value-delete svg path {
    fill: none;
    stroke: var(--ss-bg-color);
    stroke-width: 18;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ss-main .ss-deselect {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: auto;
    padding: 0 var(--ss-spacing-m) 0 var(--ss-spacing-m)
}

.ss-main .ss-deselect svg {
    width: .5rem;
    height: .5rem
}

.ss-main .ss-deselect svg path {
    fill: none;
    stroke: var(--ss-font-color);
    stroke-width: 20;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ss-main .ss-arrow {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: .75rem;
    height: .75rem;
    margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m)
}

.ss-main .ss-arrow path {
    fill: none;
    stroke: var(--ss-font-color);
    stroke-width: 18;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition-timing-function: ease-out;
    transition: var(--ss-animation-timing)
}

.ss-content {
    position: fixed !important;
    display: flex;
    height: auto;
    flex-direction: column;
    width: auto;
    max-height: var(--ss-content-height);
    box-sizing: border-box;
    border: solid .0625rem var(--ss-border-color);
    background-color: var(--ss-bg-color);
    transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing);
    opacity: 0;
    transform: scaleY(0);
    overflow: hidden;
    z-index: 10000
}

.ss-content.ss-relative {
    position: relative;
    height: 100%
}

.ss-content.ss-fixed {
    position: fixed
}

.ss-content.ss-dir-above {
    transform-origin: center bottom;
    flex-direction: column-reverse;
    border-top-left-radius: var(--ss-border-radius);
    border-top-right-radius: var(--ss-border-radius)
}

.ss-content.ss-dir-below {
    transform-origin: center top;
    border-bottom-left-radius: var(--ss-border-radius);
    border-bottom-right-radius: var(--ss-border-radius)
}

.ss-content.ss-open {
    opacity: 1;
    transform: scaleY(1)
}

.ss-content .ss-search {
    flex: 0 1 auto;
    display: flex;
    flex-direction: row;
    border-bottom: .0625rem solid var(--ss-border-color)
}

.ss-content .ss-search input {
    display: inline-flex;
    font-size: inherit;
    line-height: inherit;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: var(--ss-search-height);
    padding: var(--ss-spacing-m) var(--ss-spacing-l);
    margin: 0;
    border: none;
    background-color: var(--ss-bg-color);
    outline: 0;
    text-align: left;
    box-sizing: border-box
}

.ss-content .ss-search input::placeholder {
    color: var(--ss-placeholder-color);
    vertical-align: middle
}

.ss-content .ss-search input:focus {
    box-shadow: none
}

.ss-content .ss-search .ss-addable {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex: 0 0 auto;
    height: auto;
    margin: 0 0 0 var(--ss-spacing-m);
    border: .0625rem solid var(--ss-border-color);
    border-radius: var(--ss-border-radius)
}

.ss-content .ss-search .ss-addable svg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 1 auto;
    width: .75rem;
    height: .75rem;
    margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m)
}

.ss-content .ss-search .ss-addable svg path {
    fill: none;
    stroke: var(--ss-font-color);
    stroke-width: 18;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ss-content .ss-list {
    flex: 1 1 auto;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.ss-content .ss-list .ss-error {
    color: var(--ss-error-color);
    padding: var(--ss-spacing-l)
}

.ss-content .ss-list .ss-searching {
    color: var(--ss-font-color);
    padding: var(--ss-spacing-l)
}

.ss-content .ss-list .ss-optgroup .ss-option {
    transition: max-height var(--ss-animation-timing) ease, opacity var(--ss-animation-timing) ease, padding-top var(--ss-animation-timing) ease, padding-bottom var(--ss-animation-timing) ease, margin-top var(--ss-animation-timing) ease, margin-bottom var(--ss-animation-timing) ease
}

.ss-content .ss-list .ss-optgroup.ss-open .ss-option {
    max-height: 6.25rem;
    opacity: 1;
    overflow: visible
}

.ss-content .ss-list .ss-optgroup.ss-close .ss-option {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    max-height: 0;
    opacity: 0;
    overflow: hidden
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text {
    flex: 1 1 auto;
    font-weight: 700;
    color: var(--ss-font-color)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow) {
    cursor: pointer
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions {
    flex: 0 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--ss-spacing-m)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    cursor: pointer
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover {
    opacity: .5
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path {
    stroke: var(--ss-error-color)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60%;
    text-align: center;
    padding: 0 var(--ss-spacing-s) 0 0
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
    flex: 0 1 auto;
    width: .8125rem;
    height: .8125rem
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path {
    fill: none;
    stroke: var(--ss-success-color);
    stroke-linecap: round;
    stroke-linejoin: round
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child {
    stroke-width: 5
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child {
    stroke-width: 11
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable {
    flex: 0 1 auto;
    display: flex;
    flex-direction: row;
    cursor: pointer
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
    flex: 1 1 auto;
    width: .625rem;
    height: .625rem
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path {
    fill: none;
    stroke: var(--ss-font-color);
    stroke-width: 18;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition-timing-function: ease-out;
    transition: var(--ss-animation-timing)
}

.ss-content .ss-list .ss-option {
    display: flex;
    align-items: center;
    min-height: var(--ss-option-height);
    white-space: normal;
    color: var(--ss-font-color);
    cursor: pointer;
    user-select: none;
    margin-bottom: .6875rem;
    border-bottom: .0625rem solid transparent;
    line-height: 1
}

.ss-content .ss-list .ss-option:hover:not(.ss-disabled) {
    color: var(--orange-2);
    border-bottom: .0625rem solid var(--orange-2)
}

.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
    color: var(--orange-2);
    border-bottom: .0625rem solid var(--orange-2)
}

.ss-content .ss-list .ss-option.ss-disabled {
    cursor: not-allowed;
    background-color: var(--ss-disabled-color)
}

.ss-content .ss-list .ss-option.ss-disabled:hover {
    color: var(--ss-font-color)
}

.ss-content .ss-list .ss-option .ss-search-highlight {
    display: inline-block;
    background-color: var(--ss-highlight-color)
}

.ss-content .ss-list .ss-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l)
}

.map-container {
    height: 50rem
}

@media (max-width: 767px) {
    .map-container {
        height: 28.0625rem
    }
}

#map {
    width: 100%;
    height: 100%
}

.map-modal {
    background: #fff;
    border-radius: .625rem;
    box-shadow: .3125rem .3125rem 2.1875rem rgba(0, 0, 0, .1);
    overflow: auto;
    padding: 2.5rem;
    box-sizing: border-box;
    width: 27.5rem;
    height: 43.75rem;
    top: 3.125rem;
    border: .0625rem solid #c7c7c7;
    position: absolute
}

@media (max-width: 1279px) {
    .map-modal {
        padding: 0;
        border: none;
        top: 1.875rem;
        width: calc(100% - 2.5rem);
        height: auto
    }

    .map-modal .size-22 {
        display: none
    }
}

.city-select {
    width: 100%;
    padding: .5rem 1rem
}

.city-select.ss-open {
    padding: 1.25rem 1rem
}

.ymaps-2-1-79-ground-pane {
    filter: grayscale(1)
}

.locations-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
    height: calc(100% - 6.6875rem);
    overflow: auto
}

@media (max-width: 1279px) {
    .locations-list {
        display: none
    }
}

.route {
    border-bottom: .0625rem solid transparent;
    color: var(--orange-2)
}

.route:hover {
    border-bottom: .0625rem solid
}

.locations-list li {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
    border-bottom: .0625rem solid #c7c7c7;
    cursor: pointer
}

.locations-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.status-shop {
    display: flex;
    align-items: center
}

.status-shop span {
    width: .3125rem;
    height: .3125rem;
    border-radius: 50%;
    margin-right: .5rem;
    flex-shrink: 0
}

.green {
    color: #12a336
}

.green span {
    background: #12a336
}

.red {
    color: red
}

.red span {
    background: red
}

.gray {
    color: gray
}

.gray span {
    background: gray
}

#closeDetail {
    width: .75rem;
    height: .75rem;
    position: absolute;
    top: .9375rem;
    right: .9375rem
}

#closeDetail svg {
    stroke: var(--black)
}

#closeDetail:hover svg {
    stroke: var(--orange-2)
}

.detailPanel__head {
    padding: 2.1875rem 1.5625rem;
    border-bottom: .0625rem solid #c7c7c7
}

.detailPanel__content {
    padding: 1.875rem 1.5625rem
}

.detailPanel__line {
    margin-bottom: 1.25rem
}

.detailPanel__label {
    height: 1.5625rem;
    padding: 0 .5rem;
    display: inline-flex;
    align-items: center;
    background: var(--orange-2);
    margin-bottom: .625rem;
    border-radius: .25rem;
    color: var(--white)
}

.ymaps-2-1-79-balloon {
    display: none !important
}

.detail-panel {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 23.4375rem;
    background: #fff;
    padding: 0;
    border-radius: .625rem;
    box-shadow: .3125rem .3125rem 2.1875rem rgba(0, 0, 0, .1);
    max-height: 70vh;
    overflow: auto;
    display: none;
    z-index: 1000
}

.detail-panel.open {
    display: block
}

.status {
    font-weight: 700;
    margin-top: .5rem;
    display: inline-block;
    padding: .375rem .5rem;
    border-radius: .25rem;
    color: #fff
}

.status.green {
    background: #33a853
}

.status.orange {
    background: #ff8c42
}

.status.red {
    background: #d9534f
}

.custom-marker {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 2.5rem;
    height: 3rem;
    transform: translate(-50%, -100%);
    cursor: pointer
}

.custom-marker svg {
    display: block
}

.cluster-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: .25rem solid #aa8567;
    background: #fff;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform .15s ease
}

.cluster-wrap .num {
    color: #aa8567;
    font-weight: 700;
    font-size: 1rem
}

.cluster-wrap.hover {
    transform: translate(-50%, -50%) scale(1.08)
}

.custom-cluster {
    position: relative;
    z-index: 2;
    display: flex;
    width: 2.75rem;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    background-size: contain
}

.custom-cluster span {
    position: absolute;
    color: #000;
    font-size: .8125rem;
    transform: translateY(-.25rem);
    font-weight: 700;
    z-index: 1
}

.ymaps-2-1-79-default-cluster {
    font-weight: 700
}

.ymaps-2-1-79-default-cluster ymaps {
    transform: translateY(.125rem);
    display: block
}

.detailPanel__pics {
    display: flex
}

.detailPanel__pic {
    display: flex;
    position: relative;
    margin-left: -.625rem
}

.detailPanel__pic img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: cover;
    border: .125rem solid var(--white);
    border-radius: 50%
}

.detailPanel__pic:first-child {
    margin-left: 0
}

.detailPanel__pic-plus {
    position: absolute;
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    font-weight: 600;
    border-radius: 50%;
    right: -.9375rem;
    top: 0;
    background: var(--white);
    border: .0625rem solid #c7c7c7
}

.tabs__nav {
    gap: 1.25rem
}

@media (max-width: 1279px) {
    .tabs__nav {
        display: grid;
        grid-template-columns:repeat(4, 1fr);
        width: 100%
    }
}

@media (max-width: 767px) {
    .tabs__nav {
        display: none !important
    }
}

.tabs__tab {
    cursor: pointer;
    padding: 0 20px;
    min-width: 11.5625rem;
    height: 2.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: .0625rem solid var(--gray-2);
    border-radius: .375rem;
    transition: all .25s linear
}

.tabs__tab:hover {
    border: .0625rem solid var(--orange-2)
}

.tabs__tab.active {
    color: var(--white);
    background: var(--orange-2);
    border: .0625rem solid var(--orange-2)
}

@media (max-width: 1279px) {
    .tabs__tab {
        width: 100%
    }
}

.tabs__panel {
    display: none
}

.tabs__panel.active {
    display: block
}

/*# sourceMappingURL=async.css.map */
