/* PRE SETS STORE */
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
html, body{
    font-family: Montserrat;
}
main{
    margin-top: 90px;
}
.container{
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 12px 0px;
}
.row{
    display: flex;
    flex: 1; 
    flex-direction: row;
}
.cart{
    position: absolute;

    width: 100px;
    height: 100px;

    bottom:30px;
    right: 30px;

    background-image: url("./../img/cart.png");
    background-size: 100% 100%;
}
.cart .spam{
    position: absolute;

    width: 40px;
    height: 40px;
    
    right: 20px;
    top: -10px;

    text-align:center;
    font-family: 'tahoma';
    font-weight: bold;
    color: #fff;
    line-height: 40px;

    background-color: black;
    
    border-radius: 50%;
}
/* FIM PRE SETS */






/* product page */
.product{
    width: 720px;
}
.description{
    color: #84817a;
}
.btnComprar{
    text-align: center;
    color: #fff;
    font-weight: bold;

    margin: 10px 0px;
    padding: 12px;
    border: 0px;
    border-radius: 5px;
    
    background-color: #218c74;
}
.btnComprar:hover{
    cursor: pointer;
}
.info{
    display: flex;
    flex: 1;
    flex-direction: column;
}
.price .value{
    font-size: 32px;
    color: #000;

    margin-top: 25px;
}
.price .paymentConditions{
    color: #00a650;
    margin: 10px 0px;
}
.quant{
    padding: 10px;
    border-radius: 5px;
    border: none;
}
.moreButton, .minusButton{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px; 
    height: 30px;

    margin: auto 10px;
    padding: 0px; 

    color: #00a650;
    font-weight: bold;

    border-radius: 50%;
    border: 2px solid #00a650;
}
.moreButton p{
    width: 100%;

    text-align: center;

    padding: 0px; 
    margin: 0px;
}
.moreButton:hover, .minusButton:hover{
    cursor: pointer;
}


/* CART PAGE */
.cart-list{
    width: 540px;
    
    margin: auto;
    padding: 40px;

    border-radius: 5px;

    background-color: #dfe6e9;
}
.cart-list .item{
    padding: 20px 0px;
}


.cart-list .product{
    width: auto;
}
.cart-list .product img{
    height: 120px;
}
.cart-list .product .titleProduct h1{
    font-size: 14px;
    color: red;
}

.cart-list .removeButton{
    height: 100%;
    width: 80px;

    font-weight: bold;
    line-height: 120px;
    text-align: center;
    
    transition: 0.3s all;
}
.cart-list .removeButton:hover{
    transition: 0.3s all;
    background-color: red;
}