.wrap-pro{
    display: flex;
}

.wrap-pro .list-pro{
    flex-grow: 1;
    
}
.wrap-pro .list-pro .pro{
    display: flex;
    position: relative;
    margin: 20px auto;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
}
.wrap-pro .list-pro .pro .img-pro{
    flex-grow: 0;    
    flex-shrink: 0; 
    width: 200px;
    height: 200px;
}
.wrap-pro .list-pro .pro img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wrap-pro .list-pro .pro:hover{
    box-shadow: 2px 5px 10px rgba(70, 76, 85, 0.16);
}
.wrap-pro .list-pro .pro .info-pro{
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
}
.wrap-pro .list-pro .pro .remove-item{
    color: #ffbc00;
    text-decoration: none;
    line-height: 25px;
    font-size: 0.9em;
    font-weight: 700;
}
.wrap-pro .list-pro .pro .title-pro{
    font-size: 1.1em;
    text-decoration: none;
    color: inherit;
}
.wrap-pro .list-pro .pro .title-pro,
.wrap-pro .list-pro .pro .code-pro{
    font-weight: 700;
}
.wrap-pro .list-pro .pro .code-pro{
    line-height: 25px;
    font-size: 0.9em;
}
.wrap-pro .list-pro .pro .code{
    color: #ffbc00;
}
.wrap-pro .list-pro .pro .desc-pro{
    font-size: 0.8em;
    flex-grow: 1;
    padding: 10px 0px;
    overflow: hidden;
}
.wrap-pro .list-pro .pro .subtotal{
    color: red;
    font-weight: 700;
}
.wrap-pro .list-pro .pro .desc-pro.empty{
    color: #949494a8;
}
.wrap-pro .list-pro .pro .price-pro{
    font-weight: 700;
    color: rgb(58, 63, 71);
}
.wrap-pro .temp-bill{
    flex-grow: 0;    
    flex-shrink: 0;   
    /* flex-basis: 250px; */
    width: 25vw;
    min-width: 250px;
    max-width: 300px;
    margin:20px 0px  0px 20px;
}
.wrap-pro .temp-bill .bill {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}
.wrap-pro .temp-bill .bill div{
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.wrap-pro .temp-bill .bill .discount{
    height: 70px;
}
.wrap-pro .temp-bill .bill .cash{
    border-top:2px solid #f9f9f9;
}
.wrap-pro .temp-bill .bill span:last-child{
    font-weight: 700;
}
.wrap-pro .temp-bill .bill .cash span:last-child{
    color: red;
}
.wrap-pro .temp-bill .bill div span:first-child{
    color: #464c5588;
    font-weight: 700;
    font-size: 0.8em;
}
.wrap-pro .temp-bill > a{
    color: white;
    padding: 14px;
    background-color: #ffbc00;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    width: 100%;
    display: block;
    margin: 20px 0px;
    text-align: center;
}
.wrap-pro .temp-bill > a:hover{
    box-shadow: 0px 5px 10px rgba(128, 128, 128, 0.651);
    background-color: #ffbb0085;
}

.wrap-pro .temp-bill button[type='submit']{
    color: white;
    padding: 14px;
    background-color: #ffbc00;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    width: 100%;
    display: block;
    margin: 20px 0px;
    text-align: center;
    border: 0;
}
.wrap-pro .temp-bill button[type='submit']:hover{
    box-shadow: 0px 5px 10px rgba(128, 128, 128, 0.651);
    background-color: #ffbb0085;
}

@media screen and (max-width:991.8px){
    .wrap-pro{
        flex-direction: column;
    }
    .wrap-pro .temp-bill{
        width: 100%;
        margin: 0px auto;
        max-width: 100%;
    }
    .wrap-pro .list-pro .pro .img-pro{
        width: 80px;
    }
    .wrap-pro .list-pro .pro .img-pro img{
        height: auto;
    }
}

.remove-coupon{
    position: relative;
    float: right;
    right: 1rem;
    top: -2rem;
    color: grey;
}