/* checkout */

.small-product {
    display: grid;
    grid-template-columns: 6rem 1fr 2.5rem;
    border: .1rem black solid;
    font-size: .9rem;
    height: 6rem;
}

.small-product img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.small-product .details {
    padding: .5rem;
    position: relative;
}

.small-product .details .price {
    margin: .5rem; 
    font-size: .9rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

.small-product .right div{
    height: 33%;
    border-left: .1rem solid black;
    border-bottom: .1rem solid black;
}

.small-product .right h2{
    margin-top: .25rem;
    font-weight: normal;
}

.small-product .right div:last-child{
    border-bottom: none;
}
.small-product .right div:last-child h2{
    margin-top: .1rem;
}

.total {
    text-align: right; 
    margin-top: .5rem;
} 
.total h2{
    margin-top: .5rem;
}