.container{
    margin: auto;
    /*max-width: 75vw;*/
    padding-top: 10px;
    transition: transform .5s;
}

svg{
    width: 20px;
}


.icon-cart{
    position: relative;
}
.icon-cart span{
    position: absolute;
    background-color: red;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: -20px;
}


.listProduct {
   /* display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    */
}

.listProductNew {
   /* display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    */
}



/* cart */
.cartTab{
    width: 400px;
    background-color: #fff;
    color: #000;
    position: fixed;
    top: 0;
    right: -400px;
    bottom: 0;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: .5s;
    z-index: 999;
    
    -webkit-box-shadow: -4px 0px 5px 0px rgba(0,0,0,0.23);
    -moz-box-shadow: -4px 0px 5px 0px rgba(0,0,0,0.23);
    box-shadow: -4px 0px 5px 0px rgba(0,0,0,0.23);
    }
body.showCart .cartTab{
    right: 0;
}
body.showCart .container{
    transform: translateX(-250px);
}
.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab button{
    background-color: #E40015;
    color: white;
    border: none;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    cursor: pointer;
    font-size: 16px;
}
.cartTab .close{
    background-color: #eee;
    color: black;
}
.listCart .item img{
    width: 100%;
}
.listCart .item{
    display: grid;
    grid-template-columns: 70px 150px 50px 1fr;
    gap: 10px;
    text-align: center;
    align-items: center;
}
.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 50%;
    color: #555;
    cursor: pointer;
}
.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: black;
    cursor: auto;
}
.listCart .item:nth-child(even){
    background-color: #eee1;
}
.listCart{
    overflow: auto;
    margin-top: 3rem;
}
.listCart::-webkit-scrollbar{
    width: 0;
}
