* {
    font-family: Arial, Helvetica, sans-serif;
}

.button-send {
    background-color: green;
    height: 30px;
    width: 200px;
    color: white;
    padding: 5px 5px;
    font-size: 16px;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: none;
    font-weight:500;
}

.button-send:hover {
    background-color: rgb(5, 177, 5);
    
}

.customers {
    height: 30px;
    width: 250px;
    font-size: 14px;
}

.cart {
    border: 1px solid black;
    border-radius: 20px;
    padding: 20px 20px;
    height: 300px;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    width: 100%;
    overflow-x: auto; 
    white-space: nowrap;
}

.cart:active {
    cursor: grabbing;
}

.cart::-webkit-scrollbar {
    display: none;
}

.cart-product{
    width: 200px;
    border: solid 1px black; 
    text-align: center;
    margin-left: 20px;
    padding: 10px;
}

.close-product-cart {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-weight: bold;
    color: black;
}
.cart-product {
    position: relative; /* Necessário para posicionamento do "X" */
    width: 200px;
    border: solid 1px black; 
    text-align: center;
    margin-left: 20px;
    padding: 10px;
}

.items-produtos {
    margin-top: 40px;
    align-items: center;
    text-align: center;
    height: 450px;
}

.span-product-title {
    font-weight: 800;
    text-align: center;

}

.span-product-variant{
    font-weight: 500;
    text-align: center;

}

.select-qtd-purchase {
    padding: 5px 10px;
    cursor: pointer;
    height: 30px;
    width: 200px;
    align-items: center;
}

.discount-value {
    padding: 5px 10px;
    height: 30px;
    width: 200px;
    text-align: center;
}

.select-variant {
    width: 200px;
    height: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 12px;
}

.input-variant {
    width: 200px;
    height: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.input-variant-quantidade {
    width: 100px;
    height: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: auto;
    text-align: center;
}

.button-menos-quantidade {
    background-color: rgb(182, 38, 38);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    height: 30px;
    width: 30px;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 15px;
    margin-right: 20px;
}

.button-mais-quantidade {
    background-color: green;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    height: 30px;
    width: 30px;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 15px;
    margin-left: 20px;
}

.button-variant {
    background-color: green;
    height: 30px;
    width: 200px;
    color: white;
    padding: 5px 5px;
    font-size: 16px;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: none;
    font-weight:500;
    margin-bottom: 10px;
    margin-top: 10px;
}