/**
 * Style of WooCommerce cart pages
 */

td.product-name a {
	text-align: left;
}
.woocommerce-cart table.cart img {
    width: 100px;
}
#yc_woo_cart h2 {
    font-size: 1.4rem;
}
#yc_woo_cart section.shipping-calculator-form p,
#yc_woo_cart section.shipping-calculator-form select {
    width: 100% !important;
}
section#yc_woo_cart {
    padding-top: 50px !important;
}
#yc_woo_cart section.shipping-calculator-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 !important;
}
#yc_woo_cart a.shipping-calculator-button {
    text-align: left;
}
#yc_woo_cart a.checkout-button {
    margin: 0 auto;
    float: right;
}
/* 'No delivery' info message on cart page */
#yc_woo_cart .cart_relative {
    position: relative;
}
#yc_woo_cart .woocommerce table.shop_table td.cart_absolute_message {
    color: red;
    position: absolute;
    bottom: 0;
    bottom: -10px;
    right: 15px;
    right: 0;
    font-size: .9rem;
    border-top: none;
}
/* RESPONSIVE */
@media all and (max-width: 768px) {
    #yc_woo_cart table.shop_table_responsive tr td.product-thumbnail::before {
        display: none;
    }
    #yc_woo_cart td.product-thumbnail {
        display: block;
    }
    #yc_woo_cart td.product-name a {
        text-align: right;
    }
    #yc_woo_cart td,
    #yc_woo_cart a.checkout-button {
        font-size: 1rem;
    }
    #yc_woo_cart h2 {
        font-size: 1.2rem;
    }
}