

/* Start:/local/components/pageproofs/favorite.products/templates/cart/style.css?17822234401821*/
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.cart {
    margin-top: 40px;
    margin-bottom: 20px;
}

.cart__grid {}

.cart__grid__item {
    margin: 30px 0;
}
.cart__grid__item:first-child { margin-top: 0;}
.cart__grid__item:last-child { margin-bottom: 0;}

.cart-item {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.cart-item__image {
    flex: 0 1 300px;
    max-width: 300px;
}
.cart-item__image img {
    display: block;
    width: 100%;
    height: auto;
}

.cart-item__info {
    flex: 1;
}
.cart-item__actions {
    flex: 0 1 50px;
    max-width: 50px;
}
.cart-item__name {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
}
.cart-item__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.cart-item__remove-btn {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-indent: -9999px;
}
.cart-item__remove-btn:before,
.cart-item__remove-btn:after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: #000000;
    position: absolute;
    top: 50%;
    left: 10%;
}
.cart-item__remove-btn:before { transform: rotate(45deg); }
.cart-item__remove-btn:after { transform: rotate(-45deg); }

@media screen and (max-width: 560px) {
    .cart-item {
        position: relative;
    }

    .cart-item__image {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .cart-item__actions {
        display: block;
        position: absolute;
        width: 50px;
        height: 50px;
        top: 0;
        right: 0;
    }
}


/* End */
/* /local/components/pageproofs/favorite.products/templates/cart/style.css?17822234401821 */
