#checkout-background{
    width:90%;
    margin: 0 auto;
}

#checkout-table{
    margin-top: 30px;
    width: 100%;
    background-color: white;
    outline: black 1px solid;
    border-radius: 20px;
}

#checkout-item-box{
    height: 200px;
    border-bottom: lightgray 1px solid;
    z-index: -1;
}

#checkout-images{
    width: 50%;
    float: left;
    align-items: center;
    display: flex;
    height: 100%;
}

#checkout-img{
    width: 100%;
    height: 90%;
    object-fit: cover;
}

#checkout-details{
    padding: 25px 10px;
    width: 50%;
    float: right;
}

#checkout-title{
    font-size: 24px;
    font-weight: 700;
}

#checkout-final-price, #checkout-initial-price, #checkout-discount{
    display: inline;
}

#checkout-final-price{
    font-size: 18px;
    padding: 5px 5px 0 0 ;
}

#checkout-discount{
    color:#299E00;
}

#checkout-initial-price{
    padding: 0 5px;
    color:#646464;
    text-decoration-line: line-through;
}

#checkout-quantity{
    margin-top: 70px;
    font-size: 16px;
    padding-right: 30px;
}

#checkout-delete{
    float: right;
    margin: 70px 20px 0 0;
}

@media only screen and (max-width:380px)  {
    #checkout-images{
        width:30%;
    }
    #checkout-details{
        width: 70%;
        padding: 25px 5px;
    }
    #checkout-quantity{
        margin-top: 40px;
        padding-right: 10px;
    }
    
    #checkout-delete{
        margin: 40px 20px 0 0;
    }
}

#checkout-total{
    padding-top: 10px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

#total-text{
    font-size: 24px;
    font-weight:bolder;
    float: left;
    margin-left: 30%;
}

#checkout-payment{
    float: right;
    bottom:0;
}

#total-price{
    width: 100%;
    margin-top: 1px;
}

#total-number{
    float: left;
    font-size: 24px;
    margin-left: 20%;
}

#checkout-payment{
    background-color: #002482;
    color:white;
    border-radius: 10px;
    border:none;
    padding: 5px 10px;  
    font-size: 16px;
    float: right;
    margin-right: 20px;
}

@media only screen and (max-width:380px)  {
    #total-number{
    margin-left: 10%;
   }
   #total-text{
    margin-left: 10%;
   }
   #checkout-payment{
    font-size: 16px;
   }
}

@media only screen and (max-width:620px)  {
    #checkout-total{
     height:70px;
    }
}