/* Button */

.woocommerce button.button {
    background-color: #f3f3f3;
    transition: .3s background-color;
}

/* Cupon */ 
.coupon input {
    /* width: 150px!important; */
    height: 33px!important;
    /* padding: 0.618em 1em!important; */
    /* font-size: 15px; */
}

/* Quantity input */

.woocommerce-cart-form__cart-item .quantity input {
    border: 1px solid #CCCCCC;
    padding: 5px;
    font-size: 16px;
    color: #4a4e46;
} 

@media (min-width: 768px) {
    .woocommerce-cart-form__cart-item .quantity input {
        font-size: inherit;
    } 
}

/* Cart table */

.woocommerce table.shop_table {
    border-radius: 0;
    border-collapse: collapse;
    margin-bottom: 35px;
}

.woocommerce table.shop_table th {
    color: #104432;
    font-weight: 500;
    background-color: #f3f3f3;
}

.woocommerce a.remove {
    color: #104432!important;
    line-height: 1.1;
}

.woocommerce a.remove:hover {
    background-color: #8b8b86;
}

.woocommerce table.shop_table .actions {
    background-color: #fff!important;
}

.woocommerce-cart-form__cart-item .product-name .variation p{
    display: inline;
}

/* Cart totals */

.woocommerce .cart_totals h2 {
    display: none;
}

.woocommerce .cart_totals td {
    text-align: right;
    font-weight: 700;
}

.woocommerce .cart_totals .cart-subtotal th {
    background-color: #fff;
}

.woocommerce .cart_totals .woocommerce-shipping-totals,
.woocommerce .cart_totals .tax-rate,
.woocommerce .cart_totals .order-total {
    display: none;
}

/* Cart totals layout */

@media (min-width: 1024px) {
    .woocommerce .cart_totals {
        width: 30%!important;
    }
}