*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    overflow: hidden;
    width: 100%;
    height: 100%;
}
body{
    width: 100%;
    height: 100%;

}


/*Reuse*/
.mid_align{
    display: flex;
    align-items: center;
    text-align: center;
}

.row{
    display: flex;
    flex-direction: row;
}

.col{
    display: flex;
    flex-direction: column;
}


.rec_horizontal{
    width: 100%;
    height: 1px;
    background-color: #cfcfcf;
    margin-top: 20px;
}

.rec_vertical{
    height: 70%;
    width: 1px;
    background-color: #cfcfcf;
    margin:  0 10px;
    min-height: 20px;
}





i{
    color: #616060;
}

a{
    text-decoration: none;
    color: #000000;
}


.f12{
    font-size: 12px;
}


.f16{
    font-size: 16px;
}
.f18{
    font-size: 18px;
}

.f22{
    font-size: 22px;

}

.bold{
    font-weight: 500;
}



/*Wrap*/
.wrap{
    margin-bottom: 20px;
    height: 150px;
    width: 100%;
    padding: 0 10px;
    background-color: rgba(206, 239, 244, 0.38);
    border-radius: 10px;
}

.image{
    width: 20%;
    height: 100%;
}
.image img{
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.description{
    height: 100%;
    width: 50% ;
    padding: 20px ;
    display: flex;
    text-align: left;
}

.description .title{
    font-weight: 500;
    display: flex;
    text-align: left;
    font-size: 18px ;
}

.description .color{
    width: 100%;
    display: flex;
    text-align: left;
    font-size: 14px ;
    font-weight: 400;
    padding: 10px 0;
}

.color_name{
    margin-bottom: 5px;
}


.description .status{
    width: 100%;
    display: flex;
    text-align: left;
    font-size: 14px ;
    font-weight: 400;

}.description .status .status_type{
     padding: 2px 10px;
     border: 1px solid #cfcfcf;
     background-color: #EFF8F1;
     border-radius: 5px;
     color: #007B55;
     width: 90px;
 }




/*Price*/

.section_price{
    height: 100%;
    width: 30%;
    padding: 30px 0;
    justify-content: space-evenly;
}
.section_price .price{
    margin-bottom: 5px;
    font-size: 18px ;
    font-weight: 600;
    color: #0170F0;
    display: flex;
    justify-content: center;
}

.quantity{
    width: 70%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #cfcfcf;
    padding: 0 10px;
    border-radius: 20px;
}

.quantity .num{
    width: 60%;
    height: 100%;
    margin:0;
    justify-content: center;
    border-left: 1px solid #cfcfcf;
    border-right: 1px solid #cfcfcf;
}

.quantity button{
    background-color: unset;
    border: none;
    cursor: pointer;
    width: 20%;
    height: 100%;
}

.quantity i{

}


.remove{
    margin-top:10px;
}
.del{
    cursor: pointer;
}