/* Carro de compras */
.shopCartSpan{
    border: 1px solid rgb(160, 160, 160);
    padding: 10px !important;
    border-radius: 50px;
    height: 40px;
    margin-left: 20px;
    color: rgb(160, 160, 160);
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 1;
}
.carroHeader{
    font-size: 18px;
}
.carroHeader:hover{
    font-weight: bold;
}
.carroHeader>p{
    margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
    .shopCartSpan{
        margin-top: 145px;
        margin-left: -30px;
    }
}
@media only screen and (max-width: 978px) {
    .shopCartSpan{
        margin-top: 170px;
        margin-left: -30px;
    }
}
@media only screen and (max-width: 770px) {
    .shopCartSpan{
        right: 0;
    }
}
@media only screen and (max-width: 669px) {
    .shopCartSpan{
        margin-top: 195px;
    }
    .aCateg{
        padding-left: 2px;
        padding-right: 2px;
    }
}
@media only screen and (max-width: 576px) {
    .shopCartSpan{
        margin-top: 235px;
    }
}
.cantiCircle,.cartNumShopItems{
    background: rgb(54, 172, 30);
    border: 1px solid rgb(22, 141, 28);
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: white !important;
    width: 19px;
    height: 19px;
}
.cantiCircle{
    display: table-caption;
    margin-bottom: 12px;
    margin-left: -6px;
}
.cartNumShopItems{
    position: absolute;
    margin-top: -8px;
    margin-left: 4px;
}
.shopCart:hover{
    background-color: rgb(240,250,255);
    color: rgb(0, 156, 0) !important;
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
#theCarro{
    display: none;
    position: absolute;
    width: 380px;
    margin-left: -180px;
}
@media only screen and (max-width: 1600px) {
    #theCarro{
        margin-left: -200px;
    }
}
@media only screen and (max-width: 1400px) {
    #theCarro{
        margin-left: -250px;
    }
}
@media only screen and (max-width: 1270px) {
    #theCarro{
        margin-left: -300px;
    }
}
@media only screen and (max-width: 1090px) {
    #theCarro{
        margin-left: -340px;
    }
}
.theCarroBody{
    margin-top: 7px;
    background-color: white;
    border: 1px solid rgb(200,200,200);
}
.carroHeader{
    text-align: center;
    cursor: pointer;
}
.carroItems{
    height: 400px !important;
    overflow-y: scroll;
    cursor: default;
}
.carroOpts, .carroHeader{
    padding: 10px;
    border: 1px solid rgb(200,200,200);
}
.subtotalCarro{
    padding: 10px;
}
.carroItemDiv{
    padding: 20px 10px;
}
.carroItemDiv:hover{
    background-color: rgb(230,240,250);
}
.carroItemName{
    color: rgb(112, 112, 112);
    padding-bottom: 10px;
}
.carroItemImg{
    width: 52px;
}
.carroItemVals{
    width: 70px;
}
.valMonto{
    margin: 0 !important;
}
.valDesc{
    display: table-caption;
    background-color: rgb(151, 151, 0);
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 7px;
    margin-left: 8px;
    margin-right: 0 !important;
    margin-bottom: -5px !important;
    padding: 3px 7px;
}
.carroItemImg>img{
    max-width: 50px;
}

.finalizarCompra a, .verCarro a{
    color: white !important;
}