#slider-products .cart-product__wrapper {
    grid-gap: 18px 12px;
    background: #fff;
    /*border-radius: 16px;*/
    display: grid;
    gap: 18px 12px;
    grid-template-areas:
        "image name"
        "price bottom-box";
    grid-template-columns: 75px 1fr;
    grid-template-rows: 1fr 40px;
    height: 100%;
    overflow: hidden;
    padding: 12px;
    position: relative;
    width: 100%;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 0.5em;
}
.cart-product__image {
    grid-area: image;
    height: 75px;
    padding: 6px;
}
.cart-product__image img {
    height: 63px;
    width: 63px;
}
.cart-product__name {
    font-size: 16px;
    font-weight: 500;
    grid-area: name;
    line-height: 21px;
    width: 100%;
    min-height: 50px;
}
.cart-product__purchase-wrapper {
    align-items: center;
    display: flex;
    grid-area: bottom-box;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    grid-column-start: price;
}
.cart-product__purchase-price {
    /*align-items: baseline;*/
    align-items: center;
    color: #13181e;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    /*justify-content: space-between;*/
    line-height: 21px;
    white-space: nowrap;
}
.cart-product__purchase-wrapper .add-to-cart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.cart-product__purchase-price .ruble {
    line-height: inherit;
    margin-left: 2px;
}
.cart-product__wrapper--hidden {
    display: none!important;
}
.slider-cart-recom .slick-prev:before, .slider-cart-recom .slick-next:before {
    color: black;
}
.cart-product-header {
    display: flex;
    align-items: center;
}
#slider-products .slick-initialized .slick-slide {
    display: grid;
}
.filter-btn {
    align-items: center;
    background: #f5f5f5;
    /*border-radius: 16px;*/
    color: #000;
    display: flex;
    height: 30px;
    justify-content: center;
    padding: 0 12px;
}
.filter-btn:hover {
    background: #e6e6e6;
}
.related_types, .related_parent_type {
    display: flex;
    overflow-x: auto;
    overflow-y: auto;
    margin-bottom: 20px;
}
.related_types {
    margin-bottom: 0;
    background: #eceff2;
    padding-left: 30px;
    margin-left: -20px;
    padding-right: 20px;
    margin-right: -20px;
    padding-top: 20px;
}
#slider-products {
    background: #eceff2;
    padding-left: 20px;
    margin-left: -20px;
    padding-right: 20px;
    margin-right: -20px;
    color: white;
    padding-bottom: 30px;
}
#slider-products .slick-next {
    right: -15px;
}
#slider-products .slick-prev {
    left: -15px;
}
#slider-products .slick-dotted.slick-slider {
    margin-top: 0;
}
#slider-products .slick-dots li {
    margin: 0;
}
@media (max-width: 1200px) {
    .related_types, #slider-products {
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}