html {
    font-size: 62.5%;

}
*, *::after, *::before{
    box-sizing: border-box;
}

body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.esencial {

        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
        border-radius: 10px;
        margin-top: 30px;
        padding: 20px;
        min-width: 200px;
   
}
.cantidad input::-webkit-outer-spin-button,
.cantidad input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.cantidad {
    width:50px;  
    height: 50px;
    border: 2px solid #757575;
    border-radius: 50%;
    overflow: hidden;
}
.remove {
    
    width:35px;
    height: 35px;  
    right: -10px;
    top: -5px;
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    
    background-color: #DCD9D4;
background-image: linear-gradient(to bottom, rgba(255,255,255,0.50) 0%, rgba(0,0,0,0.50) 100%), radial-gradient(at 50% 0%, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0.50) 50%);
background-blend-mode: soft-light,screen;
    text-align: center;
}

.cantidad input:focus {
    outline: none;
}
.cantidad input[type="number"]{
    font-size: 2rem;

}
.items {
    padding: 0px 10px;
   
}

.items li {
    margin: 0px;
}

input {
    padding: 7px;
    border: none;
    border-bottom: 2px solid #182848;
    width: 100%;
    color: #182848;
}
label {
    padding: 5px;
    font-weight: bold;
    font-size: 1.5rem;
}
.items ul {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    list-style: none;
    padding: 5px;
    
    
}
.items input {
        padding: 10px;
        border: 2px solid white;
        font-size: 1.5rem;
}
.items li {
    padding: 10px;
}
.items .add-item {
    background: none;
    text-align: center;
    cursor: pointer;
    border: 1px solid #000;   
}

.add-item li{
    width: 100%;
}

.add-item img {
        width: 3rem;
}

span {
        font-size: 1.8rem;
        font-weight: bold;
    }


.btn {
    background-color: #063fb3; font-weight: bold; color: #fff; cursor: pointer; margin-top: 30px;
    font-size: 2rem;
    text-shadow: 0 3px 1px #000;
    
}

@media screen and (min-width: 1024px) {
    .container {
        max-width: 1024px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        
        
    }
    .esencial {
       max-width: 300px;
       max-height: 280px;
    }
    .items {
        min-width: 600px;
        
        
    }
    .items ul{display: flex;
        flex-direction: row;
        margin-top: 30px;
        justify-content: space-around;
        margin-left: 10px;
        border-radius: 10px;
        background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
        box-shadow: 0 2px 3px #000;
        
    }

   .items input {
        border-radius: 7px;
   }
 
   .btn {
    font-size: 1.8rem;
    
   } 
   
}