
/** PRODUCT LIST **/

/** Product list: Products **/

body > main .product_list .product {
    align-items: center;
    border-bottom: 1px dashed #E9E9E9;
    display: flex;
    cursor: pointer;
    gap: 1.25rem;
    justify-content: space-between;
    padding: 1.25rem;
}

body > main .product_list .product:hover {
    background-color: #F9F9F9;
}

body > main .product_list .image {
    background-color: #F7F7F7;
    border-radius: 3.5rem;
    flex-shrink: 0;
    width: 7rem;
}

body > main .product_list .tag {
    line-height: 2rem;
    width: 100%;
}

body > main .product_list .unlist {
    border-radius:1rem;
    flex-shrink: 0;
	height: 7rem;
    width: 2.5rem;
}

body > main .product_list .unlist > div {
    background-color: #C9C9C9;
	background-image: url("../../svg/cancel.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
    border-radius:1rem;
    float: right;
	-webkit-transition: background 0.25s ease;
	-moz-transition: background 0.25s ease;
	-o-transition: background 0.25s ease;
    transition: background 0.25s ease;
	height: 1.9rem;
    width: 1.9rem;
}

body > main .product_list .unlist:hover > div {
    background-color: #F02004;
}

/** Product list: No products **/

body > main .product_list .no_products {
    margin: 2.5rem 1rem;
}

body > main .product_list .no_products > img {
    opacity: 0.15;
    margin: auto;
    max-width: 15rem;
    width: 50%;
}

body > main .product_list .no_products > p {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-top: 3rem;
    opacity: 0.4;
    text-align: center;
}

/** RESPONSIVE **/

@media (max-width: 750px) {

    body > main .product_list .product {
        padding: 1.25rem 2rem;
    }
}