#list-card-product-cart{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
    padding: 90px 10px 10px 10px;
    max-height: 100vh;
    overflow-y: auto;
 
}

#empty-cart{
    display: none;
    color: white;
}
.boxCardProductCart{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    width: 300px;
    border-radius: 8px;
    position: relative;
    border: 1px solid white;
}

.divImageCardProductCart{
    height: 100px;
    width: 100px;
    border-radius: 12px;
}

.imageCardProductCart{
    height: 100%;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

.boxContentCard{
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 180px;
    border-radius: 8px;
    padding: 10px 3px;
}

.boxContentCard p{
    color: white;
    text-align: center;
}

.boxManageQuantityProduct{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.boxManageQuantityProduct i{
    color: white;
    border: 1px solid white;
    padding: 2px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
}

.trash-icon{
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#box-checkout{
    display: none;
    justify-content: center;
    flex-wrap: wrap;
    padding:30px 20px;
    margin: 10px auto;
}

#box-insert-data, #box-details-order{
    width: 50%;
    padding: 30px;
}

#form-checkout{
    padding: 20px 0;
}

#form-checkout div{
    display: flex;
    
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-left: 10px;
    padding: 0 6px;
    
}

label, h3{
    color: white;
}
input{

    background-color: rgba(128, 128, 128, 0.411);
    border: none;
    padding: 8px 10px;
    border-radius: 12px;
    color: white;
    width: 250px;
}

#btn-buy-order{

    background-color: green;
    padding: 8px;
    border-radius: 12px;
    color: white;
    border: none;
    font-weight: 800;
    cursor: pointer;
    width: 240px;
    
}

#details-order{

    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    
}

#details-order div{

    display: flex;
    gap: 20px;
    color: white;
    padding: 8px 10px;
    
}

#details-order div p, #details-order div span{

    color: white;
}

#box-generation-qrcode{
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 99;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, .9);
    backdrop-filter: blur(15px);
}
#div-qrcode{

    height: 250px;
    width: 250px;
}

#div-qrcode img{

    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;

}

#close-qrcode{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

#close-qrcode i{
    color: white;
    font-size: 24px;
}

@media (max-width: 720px){

    #list-card-product-cart{
        
        width: 100%;

    }
    #box-checkout{
        flex-direction: column-reverse;
    }
    #box-insert-data, #box-details-order{
        width: 100%;
    }
}

@media (max-width: 425px){

    #form-checkout div{
       
        gap: 10px;
        
        margin-bottom: 10px;
        margin-left: 0px;
        padding: 0 ;
        
    }

    #details-order div{

        gap: 10px;
        padding: 2px 6px;
        
    }
    #title-qrcode{
        font-size: 12px;
    }
    
}