

/* Start:/local/templates/v22/components/bitrix/catalog.section/v22_slider/style.css?178410203211139*/
.products-slider {
    margin-top: 48px;
}

.products-slider__title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}

.products-slider__content {
    margin-top: 24px;
}

.products-slider__container {
    position: relative;
}

.products-slider__btn {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    border: none;
    background: var(--white);
    background-image: url('/local/templates/v22/assets/images/icons/prev.svg');
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 32px #00000024;
    z-index: 2;
}

.products-slider__btn--prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.products-slider__btn--next {
    right: 0;
    transform: translate(50%, -50%) rotate(180deg);
}

.products-slider__wrapper,
.products-slider__wrapper .slick-track {
    display: flex;
    gap: 8px;
    overflow: hidden;
}

.product-slide {
    display: flex;
    flex-direction: column;
    width: 273px;
    flex: 0 0 auto;
    padding: 16px;
    border-radius: 10px;
    background: var(--white);
}

.slick-initialized .product-slide.slick-slide {
    display: flex;
    height: auto;
}

.product-slide__top {
    position: relative;
}

.product-slide__image-wrapper {
    position: relative;
    aspect-ratio: 241/160;
    border-radius: 10px;
    overflow: hidden;
}

.product-slide__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-slide__rating {
    position: absolute;
    left: 4px;
    bottom: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    padding: 3px 7px 3px 5px;
    background: var(--white);
    border: 1px solid #F1F1F1;
    border-radius: 50px;
}

.product-slide__rating::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    background: url('/local/templates/v22/assets/images/star_fill.svg');
    background-size: 100%;
}

.product-slide__stickers {
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: calc(100% - 28px);
}

.product-slide__sticker {
    --background: var(--base-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    height: 24px;
    padding: 0 9px;
    background: var(--background);
    border-radius: 24px;
}

.product-slide__sticker::before {
    --icon: none;
    display: block;
    width: 16px;
    height: 100%;
    margin: 0 3px 0 -3px;
    background: var(--icon) no-repeat;
    background-position: center;
    background-size: contain;
}

.product-slide__sticker--discount {
    --background: #F59E0B;
}

.product-slide__sticker--discount::before {
    content: '';
    --icon: url('/local/templates/v22/assets/images/label_promo.svg');
}

.product-slide__sticker--new {
    --background: #44C27E;
}

.product-slide__sticker--hit {
    --background: #E2202B;
}

.product-slide__sticker--hit::before {
    content: '';
    --icon: url('/local/templates/v22/assets/images/label_hit.svg');
}

.product-slide__sticker--action-online {
    --background: #E6599B;
}

.product-slide__favorite {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
}

.product-slide__favorite.h2o_add_favor .msg,
.product-slide__favorite.h2o_add_favor .msg-success {
    top: unset;
    bottom: -40px;
}

.product-slide__favorite.h2o_add_favor img {
    position: initial;
    width: 24px;
    height: 24px;
}

.product-slide__title {
    margin-top: 12px;
}

.product-slide__title a {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #1E293B;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-slide__title a:hover {
    text-decoration: none;
}

.product-slide__prescription {
    margin-top: 4px;
}

.product-slide__center {
    margin-bottom: 20px;
}

.product-slide__bottom {
    margin-top: auto;
}

.product-slide__availability {
    font-size: 15px;
    line-height: 20px;
    color: #00A2A9;
    cursor: pointer;
}

.product-slide__price-and-bonuses {
    margin-top: 6px;
}

.product-slide__prices {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.product-slide__price-main {
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    color: #252525;
    white-space: nowrap;
}

.product-slide__price-old {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #7F7F7F;
    white-space: nowrap;
}

.product-slide__price-old::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    border-top: 1px solid #7F7F7F;
}

.product-slide__price-discount {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: var(--white);
    white-space: nowrap;

    padding: 1px 3px 1px 3px;
    border-radius: 6px;
    background: #FF9900;
}

.product-slide__bonuses {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #ff9900;
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.product-slide__bonuses::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    background: url('/local/templates/v22/assets/html_css/icons/contour/bonuses.svg');
    background-size: 100%;
}

.product-slide__buttons-buy {
    margin-top: 12px;
}

.product-slide__buttons-buy .hor-card__buttons-col.hor-card__buttons-col--md {
    padding: 0;
    width: 100%;
}

.product-slide__buttons-buy .n-button {
    font-size: 16px;
    line-height: 24px;

    width: 100%;
    height: 44px;
    border-radius: 4px 4px 30px 4px;
}

.product-slide .product-slide__buttons-buy .counter {
    width: 100%;
    height: 44px;
    background-color: var(--base-color);
    border-radius: 4px 4px 30px 4px;
    justify-content: center;
    gap: 6px;
}

.product-slide .product-slide__buttons-buy .counter.justify-content-between {
    justify-content: center !important;
}

.product-slide__buttons-buy .js-btn-remove {
    display: none;
}

.product-slide__buttons-buy .counter.counter--sm-light .counter__input {
    background-color: #fff;
    height: 32px;
    width: 100%;
    max-width: 91px;
    border-radius: 10px;
    margin: auto 0;
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    color: #252525;
}

.product-slide__buttons-buy .counter__button {
    position: relative;
}

.product-slide__buttons-buy .counter__button::before,
.product-slide__buttons-buy .counter__button.js-btn-plus::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 2px;
}

.product-slide__buttons-buy .counter__button.js-btn-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.product-slide__buttons-buy .counter__button img {
    display: none;
}

.product-slide__not-in-store {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    color: #7F7F7F;
}

.product-slide__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.product-slide__button.template__button {
    font-size: 16px;
    line-height: 24px;
    border-radius: 4px 4px 30px 4px;
}

@media (max-width: 991px) {
    .products-slider__btn {
        display: none;
    }
}

@media (min-width: 768px) {
    .product-slide__favorite.h2o_add_favor .msg,
    .product-slide__favorite.h2o_add_favor .msg-success {
        right: 0 !important;
    }
}

@media (max-width: 767px) {
    .product-slide {
        width: 215px;
        padding: 10px;
    }

    .product-slide__image-wrapper {
        aspect-ratio: 170/96;
    }

    .product-slide__rating {
        left: 2px;
        bottom: 2px;
        font-size: 12px;
        line-height: 16px;
        padding: 1px 5px 1px 3px;
    }

    .product-slide__rating::before {
        width: 14px;
        height: 14px;
        margin-right: 2px;
    }

    .product-slide__stickers {
        position: initial;
        margin-top: 8px;
    }

    .product-slide__sticker {
        font-size: 10px;
        font-weight: 500;
        line-height: 13px;
        height: 20px;
    }

    .product-slide__sticker::before {
        width: 14px;
        margin-right: 2px;
    }

    .product-slide:not(.slick-active) .h2o_add_favor .msg,
    .product-slide:not(.slick-active) .h2o_add_favor .msg-success {
        right: 0 !important;
    }

    .product-slide__title {
        margin-top: 8px;
    }

    .product-slide__title a {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .product-slide .tag-prescription {
        font-size: 11px;
        line-height: 100%;
        padding: 4px;
        border-radius: 4px;
    }

    .product-slide__center {
        margin-bottom: 8px;
    }

    .product-slide__availability {
        font-size: 13px;
        line-height: 18px;
    }

    .product-slide__price-main {
        font-size: 20px;
        line-height: 20px;
    }

    .product-slide__bonuses {
        font-size: 12px;
        line-height: 16px;
        margin-top: 2px;
    }

    .product-slide__bonuses::before {
        width: 16px;
        height: 16px;
    }

    .product-slide__buttons-buy {
        margin-top: 8px;
    }

    .product-slide__buttons-buy .n-button {
        font-size: 14px;
        line-height: 21px;
        height: 36px;
    }

    .product-slide .product-slide__buttons-buy .counter {
        height: 36px;
        gap: 4px;
    }

    .product-slide__buttons-buy .counter.counter--sm-light .counter__input {
        height: 28px;
    }

    .product-slide__not-in-store {
        font-size: 16px;
    }

    .product-slide__buttons {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }

    .product-slide__button.template__button {
        font-size: 14px;
        line-height: 21px;
        padding: 7px;
        height: 36px;
    }

    .product-slide.slick-active .global-error-msg.right,
    .product-slide.slick-active .global-error-msg-current-store.right {
        left: 0;
        right: unset;
    }
}

@media (max-width: 575px) {
    .product-slide {
        width: 190px;
    }

    .product-slide__buttons-buy .counter.counter--sm-light .counter__input {
        max-width: 40px;
    }
}


/* End */
/* /local/templates/v22/components/bitrix/catalog.section/v22_slider/style.css?178410203211139 */
