#order-standard_cart .products .product {
    padding: 1px 0 10px 0;
    margin: 0 0 20px 0;
    /*background: #fff;*/
    border-radius: 3px;
    border: 1px solid #ddd;
    background: url(../img/wisp-bg.webp) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#order-standard_cart .product-info {
    margin: 0 0 20px 0;
    padding: 6px 15px;
    font-size: 0.85em;
    background-color: #f8f8f8;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;

	background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
    border-radius: 2px;
    position: relative;
    padding: 30px 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#order-standard_cart .summary-container {
    margin: 0;
    padding: 10px;
    min-height: 100px;
    border-radius: 3px;
    background-color: #f8f8f8;
    font-size: 0.8em;

    background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#order-standard_cart .summary-container:hover {
    border: 1px dashed var(--sky-color);
}

#order-standard_cart .view-cart-items .item {
	background-color: var(--bg-color);
    border: 1px solid var(--bg-color);
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

#order-standard_cart .view-cart-tabs .nav-tabs>li.active>a {
	background-color: #2a9fd6;
}