

/* Start:/local/templates/atvstyle2023/components/bitrix/catalog.element/model_schema/style.css?17799806505232*/
body {
    --zoomist-slider-bg-color: rgba(12, 12, 12, 0.8);
    --zoomist-slider-track-color: #444;
    --zoomist-slider-track-color-hover: #666;
    --zoomist-slider-button-color: #ccc;
    --zoomist-zoomer-button-color: rgba(12, 12, 12, 0.9);
    --zoomist-zoomer-button-color-hover: rgba(24, 24, 24, 0.9);
    --zoomist-zoomer-button-color-disabled: rgba(12, 12, 12, 0.8);
    --zoomist-zoomer-icon-color: #ccc;
    --zoomist-zoomer-icon-color-hover: #eee;
    --zoomist-zoomer-icon-color-disabled: #666;
    --body-background-image: linear-gradient(
            to bottom right,
            #333,
            #191919
    );
}

.schema-block__inner {
    gap: 1rem;
}

.schema .schema-block__left {
    top: 0!important;
}

.schema-other {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.schema-other__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schema-other__title {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.25;
    color: #111827;
}

.schema-other__nav {
    display: flex;
    flex-shrink: 0;
    gap: .5rem;
}

.schema-other__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background-color: #fff;
    transform: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.schema-other__btn:hover:not(:disabled) {
    border-color: #276967;
    background-color: #f9fafb;
}

.schema-other__btn:disabled {
    opacity: .35;
    cursor: default;
}

.schema-other__btn .svg {
    width: 1rem;
    height: 1rem;
}

.schema-other__btn--prev .svg {
    transform: rotate(90deg);
}

.schema-other__btn--next .svg {
    transform: rotate(-90deg);
}

.schema-other__slider {
    overflow: hidden;
}

.schema-other__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 4.5rem) / 4);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.schema-other__track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.schema-other__track::-webkit-scrollbar {
    display: none;
}

.schema-other__item {
    min-width: 0;
    height: 100%;
    scroll-snap-align: start;
}

.schema-other__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 17rem;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    background-color: #fff;
    color: #111827;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
    -webkit-user-drag: none;
}

.schema-other__card:hover {
    border-color: #276967;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .14);
}

.schema-other__card.is-active {
    border-color: #276967;
    cursor: default;
}

.schema-other__card.is-active:hover {
    box-shadow: none;
}

.schema-other__image {
    display: block;
    position: relative;
    flex: 0 0 11.5rem;
    height: 11.5rem;
    padding: 1rem;
    background-color: #fff;
    overflow: hidden;
}

.schema-other__image-file {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
}

.schema-other__name {
    display: -webkit-box;
    flex: 1 0 auto;
    height: 5.5rem;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.35;
    text-align: center;
    color: #111827;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    -webkit-line-clamp: 3;
}

@media only screen and (min-width: 861px) {
    .schema-block__right {
        display: flex;
        flex-direction: column;
        height: var(--schema-left-height, auto);
        max-height: var(--schema-left-height, none);
        min-height: 0;
        overflow: hidden;
    }
}

@media only screen and (max-width: 640px) {
    .schema-other {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .schema-other__head {
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .schema-other__title {
        font-size: 1.25rem;
    }

    .schema-other__track {
        grid-auto-columns: 100%;
        gap: 1rem;
    }

    .schema-other__btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .schema-other__card {
        min-height: 14rem;
    }

    .schema-other__image {
        flex-basis: 10rem;
        height: 10rem;
    }
}

@media only screen and (max-width: 1050px) and (min-width: 641px) {
    .schema-other__track {
        grid-auto-columns: calc((100% - 1.5rem) / 2);
    }
}

.schema__item__image {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}
.schema__item__image::after {
    content: "";
    display: block;
    padding-top: 100%;
}
.schema__item__image picture > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: auto;
}

/* End */


/* Start:/local/templates/atvstyle2023/css/zoomist.css?17436627444557*/
:root{--zoomist-wrapper-bg-color: #fff;--zoomist-slider-bg-color: rgba(255, 255, 255, .8);--zoomist-slider-border-radius: 0 0 4px 0;--zoomist-slider-padding-x: 20px;--zoomist-slider-padding-y: 20px;--zoomist-slider-track-color: #ddd;--zoomist-slider-track-color-hover: #ccc;--zoomist-slider-bar-size: 120px;--zoomist-slider-bar-side: 2px;--zoomist-slider-bar-border-radius: 2px;--zoomist-slider-bar-color: #666;--zoomist-slider-bar-color-hover: #444;--zoomist-slider-button-size: 12px;--zoomist-slider-button-color: #fff;--zoomist-zoomer-button-size: 48px;--zoomist-zoomer-button-color: rgba(255, 255, 255, .8);--zoomist-zoomer-button-color-hover: rgba(255, 255, 255, .9);--zoomist-zoomer-button-color-disabled: rgba(255, 255, 255, .8);--zoomist-zoomer-button-opacity-disabled: .7;--zoomist-zoomer-icon-size: 14px;--zoomist-zoomer-icon-color: #333;--zoomist-zoomer-icon-color-hover: #111;--zoomist-zoomer-icon-color-disabled: #999;--zoomist-modules-tranistion-duration: .3s}.zoomist-container{position:relative;padding:0!important;-webkit-user-select:none;user-select:none}.zoomist-wrapper{position:relative;z-index:1;width:100%;height:100%;padding:0!important;overflow:hidden;background-color:var(--zoomist-wrapper-bg-color)}.zoomist-image{position:relative;max-width:none!important;max-height:none!important}.zoomist-slider{position:absolute;z-index:2;top:0;left:0;padding:var(--zoomist-slider-padding-y) var(--zoomist-slider-padding-x);background-color:var(--zoomist-slider-bg-color);border-radius:var(--zoomist-slider-border-radius)}.zoomist-slider:hover .zoomist-slider-wrapper{background-color:var(--zoomist-slider-track-color-hover)}.zoomist-slider:hover .zoomist-slider-bar{background-color:var(--zoomist-slider-bar-color-hover)}.zoomist-slider:hover .zoomist-slider-button:before{box-shadow:0 0 8px #0009}.zoomist-slider-horizontal .zoomist-slider-wrapper{align-items:center;justify-content:flex-start;width:var(--zoomist-slider-bar-size);height:var(--zoomist-slider-bar-side)}.zoomist-slider-horizontal .zoomist-slider-bar{top:0;width:calc(var(--value) * 1%);height:100%}.zoomist-slider-horizontal .zoomist-slider-button{left:calc(var(--value) * 1%)}.zoomist-slider-vertical .zoomist-slider-wrapper{align-items:flex-end;justify-content:center;width:var(--zoomist-slider-bar-side);height:var(--zoomist-slider-bar-size)}.zoomist-slider-vertical .zoomist-slider-bar{bottom:0;width:100%;height:calc(var(--value) * 1%)}.zoomist-slider-vertical .zoomist-slider-button{bottom:calc(var(--value) * 1%)}.zoomist-slider-wrapper{position:relative;display:flex;background-color:var(--zoomist-slider-track-color);transition:background-color var(--zoomist-modules-tranistion-duration)}.zoomist-slider-bar{position:absolute;z-index:0;left:0;display:block;border-radius:var(--zoomist-slider-bar-border-radius);background-color:var(--zoomist-slider-bar-color);transition:background-color var(--zoomist-modules-tranistion-duration)}.zoomist-slider-button{position:relative;z-index:1;display:block;width:0!important;height:0!important}.zoomist-slider-button:before{content:"";position:absolute;left:calc(var(--zoomist-slider-button-size) * -.5);top:calc(var(--zoomist-slider-button-size) * -.5);width:var(--zoomist-slider-button-size);height:var(--zoomist-slider-button-size);display:block;background-color:var(--zoomist-slider-button-color, #fff);border-radius:50%;box-shadow:0 0 4px #0006;transition:box-shadow var(--zoomist-modules-tranistion-duration)}.zoomist-zoomer{position:absolute;z-index:2;top:0;right:0;border-radius:0 0 0 4px;overflow:hidden}.zoomist-zoomer-button{position:relative;display:flex;justify-content:center;align-items:center;width:var(--zoomist-zoomer-button-size);height:var(--zoomist-zoomer-button-size);background:none;background-color:var(--zoomist-zoomer-button-color);border:0;transition:background-color var(--zoomist-modules-tranistion-duration);cursor:pointer}.zoomist-zoomer-button:hover{background-color:var(--zoomist-zoomer-button-color-hover)}.zoomist-zoomer-button:hover .zoomist-zoomer-icon{fill:var(--zoomist-zoomer-icon-color-hover)}.zoomist-zoomer-button.zoomist-zoomer-disabled{pointer-events:none;background-color:var(--zoomist-zoomer-button-color-disabled);opacity:var(--zoomist-zoomer-button-opacity-disabled)}.zoomist-zoomer-button.zoomist-zoomer-disabled .zoomist-zoomer-icon{fill:var(--zoomist-zoomer-icon-color-disabled)}.zoomist-zoomer-icon{width:var(--zoomist-zoomer-icon-size);height:var(--zoomist-zoomer-icon-size);fill:var(--zoomist-zoomer-icon-color);transition:fill var(--zoomist-modules-tranistion-duration)}
/* End */


/* Start:/local/components/atv/model_products/templates/.default/style.css?17804834436022*/
a.schema__popup__title {
    text-decoration: none;
    color: rgb(31, 41, 55);
}
a.schema__popup__title:hover {
    text-decoration: underline;
}
.btn--main-inverse {
    border: 2px solid #276967;
    background-color: #fff;
    border-radius: 4px;
    color: #276967;
}

.btn--main-inverse span {
    color: #276967;
}

.schema-table__accordion.schema-row-group {
    display: none;
    background-color: #f3f4f6;
    transition: all 0.2s ease-out;
}

.schema-table__accordion.schema-row-group.active {
    display: table-row-group;
    background-color: #f3f4f6;
}

.schema-table__item {
    position: relative;
}

.schema-table__item.is-open > .schema-table__row:not(.schema-table__row--head) .schema-table__col {
    background-color: #eef7f5;
}

.schema-table__item.is-open > .schema-table__row:not(.schema-table__row--head) .schema-table__col:first-child {
    box-shadow: inset 4px 0 0 #276967;
}

.schema-table__scroll-hint {
    position: sticky;
    bottom: 12px;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: -52px auto 12px;
    border-radius: 50%;
    background-color: #276967;
    box-shadow: 0 8px 24px rgba(39, 105, 103, 0.3);
    cursor: pointer;
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.schema-table__scroll-hint.is-visible {
    display: flex;
}

.schema-table__scroll-hint:hover {
    opacity: 1;
    transform: translateY(2px);
}

.schema-table__scroll-hint .svg {
    width: 16px;
    height: 16px;
}

.schema-table__buttons {
    display:flex;
    flex-wrap:nowrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.schema-table__buttons .count {
    flex-shrink: 0;
    margin-right: 0;
    padding-top: 0;
}

.schema-table__buttons .count__btn {
    background-color: white;
}

.schema-table__buttons .btn--icon {
    flex-shrink: 0;
}

.schema-count-row {
    display: flex;
    flex-wrap: nowrap;
}

.schema-table__col {
    vertical-align: middle!important;
}

@media only screen and (min-width: 861px) {
    .schema-block__right {
        --schema-table-number-width: 80px;
        --schema-table-price-width: 115px;
        --schema-table-action-width: 150px;
        --schema-table-open-action-width: 224px;
    }

    .schema-table--head {
        flex: 0 0 auto;
    }

    .schema-block__table-scroll {
        position: relative;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .schema-block__table-scroll .schema-table--body {
        display: block;
        margin: 0;
    }

    .schema-block__table-scroll .schema-table__item {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .schema-block__right .schema-table__col:first-child {
        width: var(--schema-table-number-width);
        text-align: center;
    }

    .schema-block__right .schema-table__col:nth-child(3) {
        width: var(--schema-table-price-width);
        text-align: center;
    }

    .schema-block__right .schema-table__col:nth-child(4) {
        width: var(--schema-table-action-width);
    }

    .schema-block__right .schema-table__item.is-open .schema-table__col:nth-child(4) {
        width: var(--schema-table-open-action-width);
    }

    .schema-block__right .schema-table--body .schema-table__item:last-child > .schema-table__row .schema-table__col {
        border-bottom: 0;
    }
}

@media only screen and (min-width: 1921px) {
    .schema-block__right {
        --schema-table-number-width: 4.46429vw;
        --schema-table-price-width: 6.41741vw;
        --schema-table-action-width: 8.37054vw;
        --schema-table-open-action-width: 12.5vw;
    }
}

@media only screen and (max-width: 1280px) and (min-width: 1051px) {
    .schema-block__right {
        --schema-table-number-width: 6.25vw;
        --schema-table-price-width: 8.98438vw;
        --schema-table-action-width: 11.71875vw;
        --schema-table-open-action-width: 17.5vw;
    }
}

@media only screen and (max-width: 1050px) and (min-width: 861px) {
    .schema-block__right {
        --schema-table-number-width: 7.61905vw;
        --schema-table-price-width: 10.95238vw;
        --schema-table-action-width: 14.28571vw;
        --schema-table-open-action-width: 21.33333vw;
    }
}

@media only screen and (max-width: 860px) {
    .schema-table__item {
        display: contents;
    }

    .schema-table__scroll-hint,
    .schema-table__scroll-hint.is-visible {
        display: none;
    }

    .schema-table__accordion.schema-row-group.active {
        display: table-row-group;
    }
}

@media only screen and (max-width: 640px) {
    .schema-table__row:not(.schema-table__row--head)::after {
        content: "";
        display: block;
        clear: both;
    }

    .schema-table__item.is-open > .schema-table__row:not(.schema-table__row--head) {
        box-shadow: inset 4px 0 0 #276967;
    }

    .schema-table__item.is-open > .schema-table__row:not(.schema-table__row--head) .schema-table__col {
        background-color: transparent;
    }

    .schema-table__item.is-open > .schema-table__row:not(.schema-table__row--head) .schema-table__col:first-child {
        background-color: #e5e7eb;
        box-shadow: none;
    }

    .schema-table__accordion.schema-row-group.active {
        display: block;
    }

    .schema-table__accordion .schema-table__row:not(.schema-table__row--head) .schema-table__col:nth-child(3) {
        margin-top: 3vw;
    }

    .schema-table__accordion .schema-table__row:not(.schema-table__row--head) .schema-table__col:nth-child(4) {
        width: 100%;
    }

    .schema-table__accordion .schema-table__row:not(.schema-table__row--head) .schema-table__col:nth-child(4)>div {
        margin: 8px 0;
    }

    .schema-table__accordion .schema-table__buttons {
        justify-content: center;
    }

    .schema-table__accordion.schema-row-group.active .schema-table__row:not(:last-child) {
        margin-bottom: 20vh;
    }
}

/* End */
/* /local/templates/atvstyle2023/components/bitrix/catalog.element/model_schema/style.css?17799806505232 */
/* /local/templates/atvstyle2023/css/zoomist.css?17436627444557 */
/* /local/components/atv/model_products/templates/.default/style.css?17804834436022 */
