.productsSlider {
    margin-left: -4px;
    margin-right: -4px;
}
.productsSlider .slick-track {
    display: flex;
}
.productsSliderItem {
    margin-left: 4px;
    margin-right: 4px;
    padding: 14px;
    border-radius: 9px;
    border: 1px solid rgba(35, 31, 32, 0.05);
    background: #FFF;
    height: auto !important;
}
.productsSliderItem__img {
    height: 156px;
    position: relative;
    display: block;
}
.productsSliderItem__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}
.productsSliderItem--preview {
    padding: 5px 19px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 7px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 15px 0 rgba(206, 205, 218, 0.25);
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.productsSliderItem--title {
    margin-top: 10px;
    color: #231F20;
    font-size: 14px;
    line-height: 17px;
    display: block;
    transition: color 0.2s ease;
}
.productsSliderItem--title:hover {
    color: #2C63AC;
}
.productsSliderItem:hover .productsSliderItem--preview {
    opacity: 1;
}

.productsSlider__arrows {
    display: flex;
    align-items: center;
    column-gap: 6px;
}
.productsSlider--arrow {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    background: #FFF;
    border: 1px solid rgba(35, 31, 32, 0.05);
    box-shadow: 6px 6px 10px rgba(189, 200, 222, 0.6);
    cursor: pointer;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}
.productsSlider--arrow span {
    font-size: 22px;
}
.productsSlider--arrow span:before {
    color: #004E86;
    transition: color 0.2s ease;
}
.productsSlider--arrow:hover {
    box-shadow: 6px 6px 9.6px rgba(0, 78, 134, 0.16);
}
.productsSlider--arrow:active {
    background: #004E86;
    box-shadow: 6px 6px 9.6px rgba(0, 78, 134, 0.16);
}
.productsSlider--arrow:active span:before {
    color: #fff;
}
.productsSlider--right span {
    transform: rotateY(180deg);
}
.productsSlider__header {
    padding: 8px 8px 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.productsSlider--title {
    color: #383838;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}

@media screen and (max-width: 1200px) {
    .productsSlider {
        margin-left: -10px;
        margin-right: -10px;
    }
    .productsSliderItem {
        margin-left: 10px;
        margin-right: 10px;
    }
    .productsSlider__header {
        margin-bottom: 11px;
        padding: 8px 0;
    }
    .productsSliderItem--preview {
        display: none !important;
    }
}

@media screen and (max-width: 900px) {
    .productsSlider {
        margin-left: -22px;
        margin-right: -22px;
    }
    .productsSliderItem {
        width: 271px;
    }
}

@media screen and (max-width: 700px) {
    .productsSlider__arrows {
        display: none;
    }
    .productsSlider {
        margin-left: -16px;
        margin-right: -16px;
    }
    .productsSliderItem {
        width: 214px;
        margin-left: 5px;
        margin-right: 5px;
        padding: 10px;
    }
    .productsSliderItem__img {
        height: 114px;
        padding: 10px;
    }
    .productsSliderItem__img img {
        max-width: calc(100% - 20px);
        max-height: calc(100% - 20px);
    }
    .productsSliderItem--title {
        margin-top: 2px;
        font-size: 13px;
        line-height: 16px;
    }
    .productsSlider__header {
        padding: 6px 0;
    }
    .productsSlider--title {
        width: 100%;
        text-align: center;
        font-size: 18px;
        line-height: 22px;
    }
}