
/* Checkout CSS, Rebecca */

.quantity-sign {
    color: #000;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.quantity-sign:hover {
    transition: 0.2s ease-in-out;
    background: #62b0df;
}
.disabled-quantity {
    color: #ccc;
    cursor: default;
}
.disabled-quantity:hover {
    transition: 0.2s ease-in-out;
    background: #fff;
}
.plus-quantity {
    margin-right: -1px;
}

.quantity-output {
    padding: 10px;
}

.product-quantity-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 120px;
    border: 1px solid  #ccc;

    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.woocommerce-checkout-review-order-table .cart_item {
        position: relative;
        transform: translate(0);
}

.woocommerce-checkout-review-order-table .product-name {
    font-size: 13px;
}


.remove-prouct {
    position: absolute;
    top: 5px;
    right: 5px;
        padding: 5px;
        border: 1px solid  #ccc;
        cursor: pointer;
        border-radius: 5px;
}
.remove-prouct i{
    font-size: 12px;
    color: #000;
}

.remove-prouct:hover{
    transition: 0.2s ease-in-out;
    background: #62b0df;

}
.woocommerce-checkout-review-order-table .cart_item img {
    margin-top: -15px;
    margin-right: 10px;
}
