:root {
    --branco: #ffff;
    --gelo: #f1f1f1;
    --verde: #19c463;
    --preto: #2a2a2a;
}

.nav-top.cart {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background-color: var(--branco);
    padding: 10px 0px;
}

.nav-top.cart a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gelo);
    border-radius: 50%;
    color: var(--preto);
}

.nav-top.cart a:first-child {
    margin-left: 20px;
}

.nav-top.cart a:last-child {
    margin-right: 20px;
}

#listaCarrinho {
    display: flex;
    flex-flow: column wrap;
    margin-top: 20px;
    padding-bottom: 280px;
}

.item-carrinho {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 90%;
    height: 120px;
    padding: 10px 0px;
    margin: auto;
    border-bottom: 1px solid var(--gelo);
}

.page-carrinho{
    background: var(--branco);
    max-width: 100%;
}

.area-img {
    flex: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gelo);
    border-radius: 20px;
}

.area-img img {
    max-width: 120px;
    height: 120px;
    object-fit: contain;
}

.area-details {
    flex: 70%;
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    height: 100%;
}

.sup {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.name-prod {
    font-weight: 600;
    font-size: 20px;
    margin-left: 15px;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delete-item{
    font-size: 18px;
    color: #9e9e9e;
    margin-right: 10px;
}

.middle span{
    color: gray;
    margin-left: 15px;

}

.preco-quantidade {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
}

.preco-quantidade span {
    flex: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.count {
    flex: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;    
}

.minus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    color: gray;
    background: var(--branco);
    border: 1px solid var(--gelo);
    border-radius: 5px;
    font-size: 20px;
}

.qtd-item{
    width: 35px;
    text-align: center;
    background: var(--branco) !important;
}

.plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    color: var(--verde);
    background: var(--branco);
    border: 1px solid var(--verde);
    border-radius: 5px;
    font-size: 20px;
}

.flex-100{
    flex: 1;
    text-align: center;

}

.w-80{
    width: 80%;
    padding: 8px 0px;
}

#totais{
    flex-direction: column;
}

.bd-bottom{
    border-bottom: 1px solid var(--gelo);
}

@media (max-width: 400px) {
    .page-carrinho{
        background: var(--branco);
        max-width: 100%;        
    }
    .name-prod {
        font-weight: 600;
        font-size: 15px;
        margin-left: 15px;
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .count {
        flex: 40%;       
    }

    .minus {
        width: 30px;
        height: 30px;    
    }
    
    .plus {
        width: 30px;
        height: 30px;    
    }

    .delete-item{
        font-size: 25px;
        color: #b20808;
        margin-right: 10px;    
    }
}