/* General Styles 
* {
    font-family: 'DM Sans', sans-serif;
}
*/

#cardProducts {
    margin: 0rem;
}
@media(max-width: 992px) {
    #featuredProducts { margin: .5rem 0rem;}
}

/* title & nav carousel */
#cardProducts .titleCarouselFeatured {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#cardProducts .navsFeatured {
    display: flex;
    align-items: center;
    justify-content: center;
}
#cardProducts .navsFeatured a {
    padding: 10px;
    transition: 150ms all ease-out;
}
#cardProducts .navsFeatured a:first-of-type:hover {
    transform:translateX(-5px);
    transition: 150ms all ease-out;
}
#cardProducts .navsFeatured a:last-of-type:hover {
    transform:translateX(5px);
    transition: 150ms all ease-out;
}
@media(max-width: 992px){
    #cardProducts .titleCarouselFeatured h2 {
        font-size: 20px;
        margin: 0px;
    }
    #cardProducts .navsFeatured img {
        height: 20px;
    }
}

/* featured list */
.cardList { 
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
}
@media(max-width: 992px) {
    .cardList {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }
}
@media(min-width: 1920px) {
    .cardList {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


/* featured elements */
.cardItem {
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    border: 1px solid #DAE1E9;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    align-items: center;
    /* height: 328px; */
    padding: 30px 30px 24px 30px;
    transition:ease all 250ms;
}
.cardItem img {
    max-height: 50px;
    width: 100%;
    object-fit: contain;
}
.cardItem:hover {
    /*box-shadow: 0px 0px 10px rgba(92, 177, 50, 0.62);*/
    transition:ease all 250ms;
}
.cardItem:hover {
    border: 1px solid #222222;
    transition:ease all 250ms;
}

/* fredhy 6-10-2021
.cardItem .caption {   
    height: 160px;
} 
*/
.cardItem .caption h4 {
    /*line-height: 1px;*/
    font-size: 24px;
    font-weight: 500;
    color: #222222;
    overflow: hidden;
    height: auto;
}
.cardItem .caption .price {
    line-height: 39.06px;
    font-size: 30px;
    font-weight: 500;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cardItem .caption .price  span {
    background: #ADF5A7;
    width: 75px;
    height: 29px;
    padding: 4px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #2D7726;
    border-radius: 2px;
    margin-left: .5rem;
}
.cardItem .caption .originalPrice{
    color: #929BA4;
    text-decoration: line-through;
}
.cardItem .caption .sku{
    color: #929BA4;
}
.cardItem .caption .originalPriceR {
    color: #929BA4;
    text-decoration: line-through;
    display:none;
}
@media(max-width: 992px) {
    .cardItem .caption .originalPriceR {
        display: block;
        font-size: 14px;
        margin: 0px 6px;
    }
    .cardItem .caption .originalPrice {
        display: none;
    }
    .cardItem .caption .price span {
        width: auto;
        height: 20px;
        padding: 0px 6px;
        font-size: 10px;
    }
    .cardItem .caption .sku {font-size: 12px;}
}
.cardItem .caption .btn {
    background: #D6F1DA;
    border-color: #D6F1DA;
    color: #4EA05B;
    width: 100%;
    margin-top: .5rem;
}
/* nuevo estilo 06-10-2021 */
.cardItem .caption .group .btn {
    margin-top: 0px;
    position: absolute;
    z-index: 1;
    height: 48px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cardItem .group {
    position: relative;
    /* margin-top: 16px; */
}
.cardItem .group .qty-input {
    width: 100%;
    justify-content: space-between;
}
/**/
@media(max-width:992px) {
    .cardItem {
        padding: 20px;
        grid-template-columns: 80px 1fr;
        position: relative;
    }
    .cardItem .caption h4 {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        margin-bottom: .1rem;
        height: auto;
    }
    .cardItem .caption .price {
        font-size: 18px;
        font-weight: 500;
        
    }
    .featuredItem .caption .originalPriceR {
        display:block;
        font-size: 14px;
        padding-left: .5rem;
    }
    .featuredItem .caption .price  span {
        height: 24px;
    }
    .featuredItem .caption .originalPrice {
        display:none;
    }
    /* 06-10-2021
    .cardItem .caption {
        height: 80px;
    }
     */
     .cardItem .group {
        margin-top: 0px;
    }
    .cardItem .caption .btn {
        padding: 0px;
        margin-top: .1rem;
    }
}

/* view listed */
.listed { grid-template-columns: 1fr;}
.listed .cardItem {
    grid-template-columns: 80px 1fr;
    padding: 10px 30px 10px 10px;
}
.listed .cardItem .caption {
    width:100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 140px;
    /* grid-template-columns: 1fr 140px  250px; */
    align-items: center;
}
.listed .caption .priceGroup {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.listed .priceGroup .originalPriceR {
    display: block;
    font-size: 14px;
    padding-left: .5rem;
}
.listed .priceGroup .originalPrice {display: none;}
.listed .caption h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 20.83px;
}
.listed .caption .brand {padding: 0px 40px 0px 20px;}
.listed img {border: 1px solid #DAE1E9;border-radius: 4px; padding: 5px;}
.listed .cardItem:hover img { transform:scale(1);}
.listed .cardItem .caption h4 {
    height: auto;
}
@media(max-width:992px) {
    .listed .cardItem .caption {
        /* display: block; */
        grid-template-columns: 1fr 100px;
        grid-gap: .2rem;
    }
    .listed .caption h4 {font-size: 12px;}
    .listed .caption .brand {padding: 0px;}
    .listed .cardItem { padding: 10px;}
}




/* view cart List*/
.cartList .cardItem {
    width: 100%;
    grid-template-columns: 50px 1fr 80px;
    padding: 0px;
    margin-bottom: 10px;
    
}

.cartList .cardItem a {
    text-decoration: none;
    color: #222222;
    
}
.cartList .cardItem img {
/*    height: 65px;*/
/*    border: 1px solid #DAE1E9;*/
/*    padding: 10px;*/
/*    border-radius: 4px;*/
    
}
.cartList .caption {
    display: grid;
    grid-template-columns: 1fr 200px 80px;
    padding: 0px;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}
.cartList .caption h4,
.cartList .precio,
.cartList .eliminar {
    font-size: 15px;
    font-weight: 400;
}
.cartList .qty-input {
    border: none;
}
.cartList .cardItem > a:last-of-type span {display: none;}
@media(max-width: 992px){
    .cartList .qty-input {
        border: 1px solid #DAE1E9;
        height: 50px;
        height: 28px;
    }
    .cartList .cardItem {
        padding: 2px 10px;
    }
    .cartList .cardItem > a:last-of-type span {display: block;}
}

.cardItem:hover {
    box-shadow: 0px 0px 10px rgba(35, 140, 212, 1);
    transition:ease all 250ms;
}

.cartList .cardItem {
    grid-row-gap: 0;

}

.precio{
    text-align: right;
    padding-right: 5px;
}

.cartList .caption {
    grid-template-columns:60% 100px 100px;   
}