#page_content.cart_page{
    width: 100%;
}

#page_content.cart_page .banner{
    width: 100%;
    height: 10em;
    background-image: url("../../images/cart/banner.webp");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}


#page_content.cart_page #page_title{
    font-size: min(4em, 10vw);
    font-weight: 200;
}



.cart_detail_container{
    width: 95%;
    max-width: 100em;
    margin: 3em auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2em;
    font-size: min(1em, 3.5vw);
}




.cart_detail_container .total_item_container{
    width: 100%;
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 2.5em;
    color: #777777;
}




.cart_detail_container .cart_header{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    padding-bottom: 1em;
    border-bottom: 1px solid silver;
    color: #838383;
    margin-bottom: 1em;
}


.cart_detail_container .cart_header .cel{
    text-align: center;
    padding: 0.5em;
}


.cart_detail_container .cart_header .cel,
.cart_detail_container .cart_body .item_row .cel{
    padding: 0 0.5em;
}


.cart_detail_container .cart_header .cel.product,
.cart_detail_container .cart_body .item_row .cel.product{
    width: 40%;
    text-align: left;
}

.cart_detail_container .cart_header .cel.quantity,
.cart_detail_container .cart_body .item_row .cel.quantity{
    width: 30%;
}

.cart_detail_container .cart_header .cel.total,
.cart_detail_container .cart_body .item_row .cel.total{
    width: 25%;
    text-align: right;
}



.cart_detail_container .cart_body{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3em;
    width: 100%;
}


.cart_detail_container .cart_body .any{
    margin: 5em auto;
    font-size: 1.25em;
    font-style: italic;
    color: #656565;
}


.cart_detail_container .cart_body .item_row{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.cart_detail_container .cart_body .item_row .cel{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-self: stretch;
}


.cart_detail_container .cart_body .item_row .cel.product{
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
}



.cart_detail_container .cart_body .item_row .cel.product .image_container{
    width: 5em;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #efefef;
    padding: 0.25em;
}


.cart_detail_container .cart_body .item_row .cel.product .image_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.cart_detail_container .cart_body .item_row .cel.product .product_detail_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
}


.cart_detail_container .cart_body .item_row .cel.product .product_detail_container .product_name{
    font-size: 1.1em;
    font-weight: 500;
    color: #5e5e5e;
}

.cart_detail_container .cart_body .item_row .cel.product .product_detail_container .product_price{
    font-size: 0.9em;
    font-weight: 400;
    color: #727272;
}





.cart_detail_container .cart_body .item_row .cel.quantity{
    gap: 1em;
    flex-wrap: nowrap;
}

.cart_detail_container .cart_body .item_row .cel.quantity .set_product_quantity{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    aspect-ratio: 1 / 1;
    padding: 0.35em;
    border-radius: 50%;
    background-color: #f3f3f3;
    font-size: 1.35em;
    /*box-shadow: 0 0 2px #858585;*/
    cursor: pointer;
    transition: 0.25s background-color, 0.25s box-shadow;
}

.cart_detail_container .cart_body .item_row .cel.quantity .set_product_quantity .app_icon{
    min-width: initial;
    max-width: 100%;
}

.cart_detail_container .cart_body .item_row .cel.quantity .set_product_quantity:hover{
    background-color: #e1e1e1;
    box-shadow: none;
}


.cart_detail_container .cart_body .item_row .cel.quantity .quantity{
    font-size: 1.15em;
    font-weight: 300;
}



.cart_detail_container .cart_body .item_row .cel.total{
    font-size: 1.1em;
    font-weight: 300;
    color: #2a2a2a;
    justify-content: flex-end;
}




.cart_detail_container .cart_footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 45em;
    padding: 2em 1em 2em 0.25em;
    border-top: 2px solid silver;
    align-self: flex-end;
    margin-top: 1em;
}

.cart_detail_container .cart_footer .label{
    font-weight: 300;
    font-size: 1.25em;
    color: #707070;
}

.cart_detail_container .cart_footer .total_price{
    font-size: 1.25em;
    font-weight: 400;
    color: #4d4d4d;
}






.cart_detail_container .cta_container{
    width: 100%;
    padding: 2em 0;
    background: #ffffff3b;
    backdrop-filter: blur(5px);
    position: sticky;
    bottom: 4em;
}


.cart_detail_container .place_the_order{
    margin: auto;
    background: #393939;
    width: 100%;
    max-width: 40em;
}

