.container{
    padding-top: 12px;
    padding-bottom: 12px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.item h1{
    color: var(--principal);
    font-size: 2.2rem;
}

.item h2{
    font-weight: bold;
}

.item p{
    line-height: 19px;
    margin-top: 6px;
}

.item .izq{
    margin-top: 24px;
    padding-top: 12px;
    padding-left: 6px;
    padding-right: 6px;
    border-right-color: var(--principal);
    border-right-width: 1px;
    border-right-style: solid;
   /*  background-color: chartreuse; */
}

.item .izq .imagen{
    padding-left: 12px;
    padding-right: 12px;
}

.item .izq .sub{
    padding: 12px 0;
}

.item .izq .descr{
    padding-bottom: 36px;
}

.item .der{
    margin-top: 24px;
   /*  background-color: aquamarine; */
    padding-left: 24px;
}

.item .der .title{
    font-size: 2rem;
    font-weight: bold;
}

.item .der .single{
    padding: 6px 0 6px 0;
}

.item button{
    color: white;
    padding: 9px 21px 9px 21px;
    background-color: #F58220;
    outline: 0;
    border: 0;
    width: 199px;
    border: 1px solid transparent;
}

.item button:hover{
    cursor: pointer;
    background-color: var(--principal);
}

.item button:active{
    background-color:#999999;
}

.item button:disabled, button[disabled]{
    pointer-events: none;
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

/* Counter */
.item .contador{
    width: 200px;
    display: flex;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.item .boton{
    padding: 6px;
    display: flex;
    justify-content: center;
}

.item input[type="number"]{
    -moz-appearance: textfield;
    width: 100px;
    text-align: center;
    font-size: 2rem;
    border: none;
    outline: none;
}

#mas, #menos{
    border: none;
    background-color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 6px 15px 6px 15px;
    color: #303f52;
}


@media screen and (max-width: 992px) {
    .item .der{
        padding-top: 9px;
    }
}

@media screen and (max-width: 576px) {
    .container h1{
        text-align: center;
    }

    .item .izq{
        border-width: 0;
        padding-left: 9px;
        padding-right: 9px;
    }

    .item .izq .descr{
        padding-bottom: 3px;
    }

    .item .der{
        margin-top: 0;
        padding-left: 9px;
        padding-right: 9px;
    }

    button{
        width: 98%;
    }
}