section{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.productos{    
    width: 50%;
    margin-top: 80px;
    padding: 30px 0px;
    border-top: 2px solid #f1eff0;
    border-bottom: 2px solid #f1eff0;
    margin-bottom: 30px;    
    margin-left: 7.5%;
}

.item-compra{
    display: flex;
    justify-content: center;
    padding: 10px 0px;
    position: relative;
    border-bottom:  1px solid lightgrey;
}

.item-compra img{
    width: 150px;
    min-width: 0;
    margin-right: 50px;
    background-color: #f1eff0;
}

.item-compra .desc{
    width: 90%;
    display: flex;        
    justify-content: flex-start;    
}

.product-values{    
    width: 65%;
}

.product-values .nombre{
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins';
    color: #444854;
}

.product-values .price-product{
    display: flex;
    width: 190px;
    margin-top: 0px;
    font-weight: 600;
    font-family: 'Poppins';
    justify-content: space-between;
    color: #444854;;
}

.cantidad{
    display: flex;    
    align-items: flex-start;
    justify-content: flex-start;
}

.cantidad input{
    width: 50px;
    height: 50px;    
    position: relative;
    top: 10px;
    text-align: center;
    border: 1px solid #f1eff0;
    color: #444854;
    font-family: 'Poppins' !important;
}

.cantidad .number{
    margin-left: 5px;
    position: relative;
    top: 10px;
}

.cantidad .number > div{
    width: 25px;
    height: 25px;
    display: flex; 
    cursor: pointer;       
    align-items: center;
    font-family: 'Poppins';
    justify-content: center;        
    border: 1px solid #f1eff0;
}

.item-compra .total{    
    top: 10px;
    color: #739a4c;
    margin-left: 7%;
    font-weight: 600;
    position: relative;
    font-family: 'Poppins';
}

.resume{    
    width: 30%;
    margin-right: 7.5%;
    display: flex;
    flex-direction: column;
}

.resume-title{
    color: #444854;
    padding: 16px 0;
    margin-top: 22px;
    font-weight: 600;    
    margin-bottom: 35px;
    font-family: 'Poppins';
    border-bottom: 2px solid #f1eff0;
}

.resume .item{
    display: flex;
    color: #444854;
    font-family: 'Poppins';
    justify-content: space-between;
}

.resume-items{
    padding-bottom: 25px;
    border-bottom: 1px solid #f1eff0;
}

.subcount{
    margin: 30px 0;
    color: #444854;
}

.subcount .total{
    display: flex;
    font-size: 20px;    
    font-family: 'Poppins';
    justify-content: space-between;
    color: #444854;
}

.subcount .aviso{
    font-family: 'Poppins';
    font-size: 14px;
    color: #444854;
}

.orange-sold{
    border: none;
    min-width: 250px;
    height: 50px;
    border-radius: 50px;
    font-family: 'Poppins';
    font-weight: 700;
    color: white;
    background-color: #f89021;
    margin-bottom: 70px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


.cdescuento{
    color: #739a4c;
}

.control-elements{
    width: 210px;
    align-items: flex-start;
    justify-content: space-between;
}

.control-elements button{
    background-color: white;
    border: none !important;
    padding: .3rem;
    border-radius: 100%;
    font-size: 10px;
    cursor: pointer;
    outline: none;
    margin-left: 30px;
}

.control-elements button img{
    width: 20px;
    background-color: transparent;
}

@media(max-width:1100px){

    .item-compra img{
        margin-right: 10px;
        width: 100px;
    }
}


@media(max-width:950px){
    section{
        flex-direction: column;
    }

    .productos,.resume{
        width:97%;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media(max-width:640px){
    .desc{        
        justify-content: center;
        flex-direction: column;
    }

    .item-compra{
        position: relative;
    }

    .control-elements button{
        position: absolute;
        top: 30px;
        right: 0;
    }


    .control-elements{
        margin-top: 30px;
        margin-bottom:30px;
    }

    .item-compra{
        align-items: flex-start;
    }
}