
:root {
	--primary-blue: #0844bc;
	--primaty-yellow: #fae200;
	--border-gray: #666668;
}
.cart .cart-title{
    text-align: center;
    margin-top:2rem ;
}
.cart .table-responsive{
    margin:2rem 0;
}
.cart table{
    width: 80%;
    margin: auto;
    border: 1px solid rgb(222,226,230);
}
.cart .table thead th{
    border: 0;
}
.cart .table th{
    padding: 0.25rem;
}

.cart .minus-and-plus{
    font-size: 1rem;
    width: 1.7rem;
    height: 1.7rem;
}

.cart .remove-from-cart{
    font-size: 0.7rem;
    width: 1.5rem;
    height: 1.5rem;
}

.cart .product-detail{
    display: flex;
    flex-direction: row;

}
.cart .product-detail .content{
    display: grid;
    margin-left: 10px;
}


.cart .total{
    background-color: #ebf0f7  ;
    padding-right: 10%;
    display: flex;
    justify-content: flex-end;
}

.cart .total .content{
    padding: 2rem;
    padding-right: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
}
.cart .total .content .title{
    margin-right: 10vw;
}

.cart .total .content .separator{
    width: 100%;
    height: 1px;
    background-color: var(--border-gray);    
    grid-column: 1/-1;
    margin: 10px 0;
}
.cart .total .content .price.big , .cart .total .content .title.big{
    padding-bottom: 10px 0;
    font-weight: 600;
}

.cart .total .content .button{
    grid-column: 1/-1;
    color: white;
    font-weight: 900;
    background-color: var(--primary-blue);
    border:2px solid var(--primary-blue);
    margin-bottom: 12px;
    opacity: 0.8;   
    transition: all 0.3s ease-out;
    width: 100%;
    margin:10px 0;
}
.cart .total .content .button:hover{
    opacity: 1;   
    transition: all 0.3s ease-out;

}
@media only screen and (max-width:700px) {
    .cart table{
        width: 100%;
        margin-right: 10px;
        margin-left: 10px;
    }
    .cart .total{
        justify-content:center
    }
    .cart .minus-and-plus{
        font-size: 0.7rem;
        width: 1.3rem;
        height: 1.3rem;
    }
    .cart .product-detail{
        display: flex;
        flex-direction: column;
    
    }

    
    .cart .btn-outline-secondary {
        border: 0;
    }
    .cart .btn-outline-secondary:hover, 
    .cart .btn-outline-secondary:focus{
        background-color: white;
        color:#77838f;
    }
}