/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/

/*------------------------------------------------------------------
[Table of contents]
1. HTML5 display-role reset for older browsers
  1.1 css reset  
2. Header Cart CSS
3. addtocart
3. woocommerce
4. media

-------------------------------------------------------------------*/



/* ---------------------------------------------------------- 
    1. HTML5 display-role reset for older browsers
---------------------------------------------------------- */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
input,
button,
select,
textarea {
    outline: none;
}

::-webkit-input-placeholder {
    color: #717171;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #717171;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #717171;
}

:-ms-input-placeholder {
    color: #717171;
}

a {
    outline: none;
    text-decoration: none;
    color: #0295eb;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: #0095eb;
}

::-moz-selection {
    color: #fff;
    background: #0095eb;
}

::selection {
    color: #fff;
    background: #0095eb;
}

/* 1.1 css reset */

.clear {
    clear: both;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

img {
    max-width: 100%;
    vertical-align: top;
}


/* ---------------------------------------------------------- 
               2. Header Cart CSS
   ---------------------------------------------------------- */

.header-cart .count {
    position: absolute;
    font-size: 13px;
    right: -11px;
    border-radius: 60%;
    padding: 4px;
    color: #ececec;
    background-color: white;
    border: 1px solid #ececec;
    top: -5px;
    height: 20px;
    text-align: center;
    line-height: 11px;
    min-width: 20px;
}

.header-cart i.fa.fa-shopping-cart {
    position: relative;
    font-size: 30px;
    display: inline-block;
    color: #0295eb;
}

.amount-title {
    margin: 0 0 0 10px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0.6;
    display: inline-block;
    color: #43515d;
}

.amount-cart {
    font-size: 14px;
    font-weight: bold;
    margin-left: 4px;
    display: inline-block;
    color: #43515d;
}

.header-cart,
.header-login {
    position: relative;

    text-transform: uppercase;
    color: #000;
}

.header-cart-inner {
    display: inline-block;
    margin-right: 20px;
}

.header-cart a,
.header-login a {
    color: #43515d;
}

.main-header-cart span.quantity {
    color: #43515d;
}

.main-header-cart p.woocommerce-mini-cart__total.total {
    color: #43515d;
}

.header-cart a:hover,
.header-login a:hover,
.header-cart a:hover .count {
    color: #0295eb;
    display: inline-block;
    border-color: #0295eb;
}

.main-header-cart {
    position: absolute;
    top: 100%;
    padding: 7px;
    border: 1px solid #e2e2e2;
    display: none;
    opacity: 0;
    z-index: 99;
    min-width: 300px;
    text-align: left;
    right: 0;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    background: #fff;
    top: 29px;
}

.header-cart-inner:hover .main-header-cart {
    display: block;
    opacity: 1;
}

.header-cart-inner .main-header-cart p {
    margin-bottom: 0;
    color: #43515d;
    font-size: 14px;
}

/* Header Cart CSS */


/* ---------------------------------------------------------- 
             2. addtocart & wishlist 
   ---------------------------------------------------------- */


.wishlist_table .add_to_cart.button,
.yith-wcwl-add-button a.add_to_wishlist,
.yith-wcwl-popup-button a.add_to_wishlist,
.wishlist_table a.ask-an-estimate-button,
.wishlist-title a.show-title-form,
.hidden-title-form a.hide-title-form,
.woocommerce .yith-wcwl-wishlist-new button,
.wishlist_manage_table a.create-new-wishlist,
.wishlist_manage_table button.submit-wishlist-changes,
.yith-wcwl-wishlist-search-form button.wishlist-search-button {
    margin: 0px;
    box-shadow: none;
    text-shadow: none;
    border-radius: 3px;
}

.add-to-wishlist-custom img.ajax-loading {
    display: none !important;
}

.add-to-wishlist-custom {
    color: #0295eb;
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 5px;
}


/* ---------------------------------------------------------- 
             3. woocommerce
   ---------------------------------------------------------- */

.woocommerce ul.products li.product:hover .feedback {
    color: white;
}

.woocommerce ul.products li span.feedback {
    display: block;
    font-size: 12px;
    line-height: 46px;
    position: absolute;
    left: 10px;
    top: 10px;
    background: #dfac05;
    color: #fff;
    width: 93.5%;
    height: 45px;
}

.woocommerce ul.products li.product {
    text-align: center;
}

.woocommerce ul.products li.product:hover .button {
    background: #0295eb;
    color: #fff;
    padding: 10px 35px;
}

.woocommerce ul.products li.product .button,
.add-to-wishlist-custom {
    width: initial !important;
}

.woocommerce ul.products li.product img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 1.3s ease-in-out;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.06);
    overflow: hidden;
    display: inline-block;
}

.add-to-wishlist-custom .yith-wcwl-add-button a::before {
    font-family: 'FontAwesome';
    content: "\f004";
    margin-right: 5px;
}

a.add_to_wishlist {
    cursor: pointer;
    padding: 0px 0 10px;
    display: inline-block;
    margin: 0 auto;
}

.yith-wcwl-wishlistaddedbrowse.show {
    margin-bottom: 5px;
}

.woocommerce ul.products li.product .button::before {
    font-family: 'FontAwesome';
    content: "\f07a";
    margin-right: 5px;
    position: relative;
}

.woocommerce ul.products li.product {
    text-align: center;
    border: solid 1px #ececec03;
}

.woocommerce ul.products li.product:hover .button {}

.woocommerce ul.products li.product .button.product_type_external {
    padding: 10px 15px;
}

.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt[disabled]:disabled:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #0295eb;
    color: #fff;
    transform: scale(1.05);
}

.woocommerce ul.products li.product .price {
    color: #000000;
    font-size: 14px;
}

.yith-wcwl-wishlistexistsbrowse a {
    color: #dfac05;
    font-weight: 500;
    padding: 0px 5px;
    display: inline-block;
    border-radius: 0;
    display: inline-block;
}

.woocommerce ul.products li.product .button {
    margin-top: 0;
    color: #222;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    word-wrap: break-word;
    border-radius: 0;
    padding: 10px 15px;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #fff;
    color: #0295eb;
    border-radius: 0;
}

.woocommerce ul.products li.product:hover .add-to-wishlist-custom {
    opacity: 1;
    display: block;
    margin-bottom: 5px;
}

.woocommerce a.added_to_cart {
    margin-top: 0;
    color: #222;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    line-height: 15px;
    word-wrap: break-word;
    border-radius: 0;
    background: #0295eb;
    color: #fff;
    padding: 9px 35px;
    border: solid 1px #0295eb;
}

.woocommerce a.added_to_cart:hover {
    background: #fff;
    color: #0295eb;
    border: solid 1px #0295eb;
}

.woocommerce-MyAccount-navigation ul li {
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    position: relative;
}

.woocommerce-MyAccount-navigation ul li a {
    padding: .875em 20px;
    display: block;
}

.woocommerce-MyAccount-navigation ul {
    padding: 0;
}

.entry-summary td.label {
    color: #000;
}

table.cart td.product-quantity .qty {
    padding: .626em;
    width: 3.706325903em;
}

.woocommerce .woocommerce-result-count {
    color: #949494;
    float: right;
    margin-top: 5px;
    border: solid 1px #ececec;
    padding: 2px 15px;
    font-weight: 100;
}

.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    color: #888888;
    outline: none;
    border: solid 1px #ececec;
    background: #fff;
    height: 30px;
    font-size: 15px;
    font-weight: 100;
    margin-top: 5px;
}

.woocommerce ul.products li.product .onsale {
    top: -10px;
    right: inherit;
    margin: 0;
    left: -10px;
    border-radius: 50%;
    min-height: auto;
    background: #0295eb;
    transition: 0.5s all;
    width: 50px;
    height: 50px;
    transform: rotate(-20deg);
    line-height: 44px;
}

.woocommerce ul.products li.product.last {
    margin-right: 0;
}

.woocommerce ul.products li.product:hover span.onsale {
    left: 10px;
    top: 10px;
    transform: rotate(0deg);
}

.woocommerce ul.products li.product:hover {
    border: solid 1px #0295eb;
}

.woocommerce ul.products li.product {
    transition: 0.5s all;
    padding: 10px 10px 20px;
    margin: 0 2.8% 2.992em 0;
    border: solid 1px #ececec;
    -webkit-transition: .5s ease-in-out;
    transition: .5s cubic-bezier(0.42, 0, 0.73, 0.34);
    width: 22.9%;
}

.woocommerce ul.products li.first,
.woocommerce-page ul.products li.first {
    clear: none;
}

.woocommerce .woocommerce-ordering {
    margin: 0 5px 20px;
    float: left;
}

.woocommerce ul.products li.product .price del {
    color: inherit;
    opacity: .5;
    display: inline-block;
    padding: 0 2px;
}

.woocommerce ul.products li.product .price {
    margin: 8px 0 8px;
}

.woocommerce ul.products li.product:hover:before {
    content: '';
}

.woocommerce ul.products li.product .price ins {
    font-weight: 600;
    letter-spacing: 0.9px;
}

.woocommerce ul.products li.product:hover .add-to-wishlist-custom a {
    font-weight: normal;
    display: block;
}
.woocommerce ul.products li.product .add-to-wishlist-custom a {
    font-weight: normal;
    display: block;
    color: #deac04;
    padding-bottom: 0;
}
.woocommerce ul.products li.product:hover .add-to-wishlist-custom img{
    display: none !important;
}

.woocommerce ul.products li.product:hover .add-to-wishlist-custom:hover .yith-wcwl-wishlistexistsbrowse.show a {
    color: #fff;
}

.woocommerce ul.order_details li {
       background: #ffffff;
    padding: 20px;
    border: 0;
        border: solid 1px #e5e5e5;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
    float: left;
    margin-left: 0;
    width: 32px;
    height: auto;
    box-shadow: none;
    margin-right: 18px;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
    padding-left: 0;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
    position: absolute;
    top: 0;
    right: 0;
    left: inherit;
}

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
    margin-right: 5px;
    margin-bottom: 5px;
    display: block;
    text-align: center;
    margin: 9px auto;
    border: solid 1px #ececec;
    width: 60%;
}


/* WISHLIST */

.woocommerce table.wishlist_table tbody td {
    background: #fff;
}

.woocommerce table.wishlist_table thead th,
.woocommerce table.wishlist_table tbody td {
    border-color: rgba(231, 231, 231, 0.05);
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-top: 0;
}

.woocommerce table.wishlist_table thead th {
    text-align: center;
}

.woocommerce table.wishlist_table thead th.product-name {
    text-align: left;
}

.woocommerce table.shop_table {
    border-radius: 0;
}

.woocommerce table.wishlist_table tbody td {
    font-size: 14px;
    font-weight: 500;
}

.woocommerce .wishlist_table td.product-add-to-cart a {
    display: block!important;
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
    background-color: #fff;
    border: solid 1px #0295eb;
    color: #0295eb;
    padding: 10px;
    transition: 0.5s all;
    font-weight: 500;
    float: right;
}
.woocommerce table.shop_table {
    border: 1px solid rgba(0,0,0,.1);
    text-align: center;
    
    border-collapse: separate;
    border-radius: 5px;
    margin: 20px auto;
}
.woocommerce a.remove {
    display: block;
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    border-radius: 0;
    color: #0295eb!important;
    text-decoration: none;
    font-weight: 500;
    line-height: 21px;
}

.woocommerce table.shop_table tfoot td {

    background-color: rgb(255, 255, 255);
    padding: 15px 12px;
    color: #0295eb;
}

.woocommerce .woocommerce-checkout-review-order-table tfoot td {
    border-top: solid 1px #e5e5e5 !important;
}

.woocommerce-message {
    border-top-color: #0295eb;
}

.woocommerce-message::before {
    color: #0295eb;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
    margin: 10px;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
    padding-left: 0;
}

.woocommerce a.remove:hover {
    background: #0295eb;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
    margin: 20px 10px;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 500;
    border-radius: 3px;
    left: auto;
    color: #b8b8b8;
    background-color: #ffffff;
    white-space: nowrap;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    /* Fallback for non-webkit */
    display: -webkit-box;
    /* Fallback for non-webkit */
    margin: 0 auto;
    line-height: 30px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.woocommerce ul.products li.product:hover span.price {}

.breadcrumbs-inner {
    text-align: left;
    margin: 0;
    font-size: 14px;
    border-bottom: 0;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 100;
    display: none;
}

.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    background: #0295eb;
    color: #ffffff;
    transition: 0.5s all;
    outline: none;
    margin-left: 50px;
}

.woocommerce div.product form.cart .button:hover {
    background: #fff;
    color: #0295eb;
}

.yith-wcwl-wishlistexistsbrowse {
    margin-bottom: 5px;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: #ffffff;
    color: #0295eb;
    -webkit-font-smoothing: antialiased;
    border: solid 1px #0295eb;
    width: 280px;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.woocommerce .cart-collaterals .cross-sells ul.products li,
.woocommerce-page .cart-collaterals .cross-sells ul.products li {
    width: 43%;
    margin-top: 30px !important;
}

.woocommerce-info {
    border-top-color: #0295eb;
}

.woocommerce-info::before {
    color: #0295eb;
}

.woocommerce form .form-row label.inline {
    display: block;
    margin: 20px 0 0;
}

.woocommerce form .form-row.woocommerce-invalid label {
    color: #0295eb;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #0295eb;
}

.woocommerce-error {
    border-top-color: #0295eb;
}

.woocommerce-error::before {
    content: '\e016';
    color: #0295eb;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox span {
    display: inline-block;
    padding-left: 20px;
}

.woocommerce form .form-row .input-checkbox {
    display: inline-block;
    margin: 8px 0 0;
}

.woocommerce-thankyou-order-received {
    font-size: 20px;
    display: inline-block;
    margin-bottom: 30px;
    color: #0295eb;
}

.woocommerce-thankyou-order-details.order_details {
    border: dashed 1px #0295eb;
    padding: 20px;
}

address {
    border: solid 1px #e5e5e5;
    padding: 20px;
    box-sizing: border-box;
}

.woocommerce-account .addresses .title h3 {
    float: left;
    padding: 0;
    margin: 0;
}

.woocommerce-Address header.woocommerce-Address-title.title {
    display: block;
    margin: 20px 0;
}

.woocommerce ul.products li.product .add_to_cart_button.added {
    display: none;
}
section.up-sells.upsells.products h2,section.related.products h2 {
    margin-bottom: 40px;
}

section.up-sells.upsells.products, section.related.products {
    padding: 20px 50px 0px;
    background: #fff;
    margin: 50px 0 0;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.10), inset 0 0px 1px 0 rgba(0, 0, 0, 0.13);
    display: inline-block;
    width: 100%;
}


.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: #ffffff;
    color: #515151;
    border-top: 3px solid #0295eb;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.10), inset 0 0px 1px 0 rgba(0, 0, 0, 0.13);
        line-height: 30px;
}


.summary.entry-summary a.add_to_wishlist{
        vertical-align: middle;
    float: left;
    background: #dfac05;
    color: #ffffff;
    transition: 0.5s all;
    outline: none;
    display: inline-block;
    padding: 12px 70px;
    margin-bottom: 30px
}

.summary.entry-summary a.add_to_wishlist:hover {
    background: white;
    border: solid 1px #e0ac05;
    color: #e0ac05;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #dfac05;
    font-size: 1.25em;
}
.woocommerce div.product div.images .flex-control-thumbs{margin-top: 30px;}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
    list-style: none;
    padding: 10px;
    box-sizing: border-box;
}
.pswp__bg{background: rgba(0, 0, 0, 0.8);}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
     
    border: solid 1px #ececec;
    padding: 15px;
    box-sizing: border-box;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
   
    border: solid 1px #ececec;
    padding: 25px;
    box-sizing: border-box;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger{top: 0.9em;
    right: 0.8em;}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{color: #fff;}

.woocommerce div.product .woocommerce-tabs ul.tabs li{ background-color: #0295eb;    border: 1px solid #ececec;}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{color: #ccc;}

.single-product p.form-submit {
    display: block;
    border: solid 1px #ececec;
    width: 200px;
    margin: 30px auto !important;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
    display: inline-block;
    width: auto;
    padding: 12px 10px;
    margin-right: 15px;
    border-radius: 0;
    color: #ccc;
}
/* ---------------------------------------------------------- 
             4. media
   ---------------------------------------------------------- */


@media screen and (min-width: 768px) {
    .woocommerce-cart-form table.cart td,
    .woocommerce-cart-form table.cart th {
        padding: 2.618em;
    }

    table th {
        background-color: #fff;
    }

    table thead th {
        text-transform: uppercase;
        padding: 1.41575em;
        vertical-align: middle;
        font-weight: 900;
    }

    table.cart td.product-remove,
    table.cart td.actions {
        border-top-color: #ffffff;
    }

    table.shop_table_responsive tbody tr td,
    table.shop_table_responsive tbody tr th {
        text-align: left;
    }

    table.cart td.product-remove a.remove {
        float: none;
        position: relative;
        top: auto;
        right: auto;
    }

    table.shop_table_responsive tbody tr td,
    table.shop_table_responsive tbody tr th {
        text-align: left;
    }

    table td,
    table th {
        padding: 1em 1.41575em;
        text-align: left;
        vertical-align: top;
    }

    table.cart td {
        padding: 70px;
    }
    .woocommerce table.shop_table td {
        border: none;
        background-color: #fff;
        padding: 15px 12px;
        border-top:solid 1px #ececec;
    }
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text,
 .woocommerce-checkout table.cart td.actions .coupon .input-text{    border: 1px solid #ececec;}

 .woocommerce .cart-collaterals .cart_totals h2, .woocommerce-page .cart-collaterals .cart_totals h2 {
    margin-bottom: 30px;
}
    .input-text:focus,
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="url"]:focus,
    input[type="password"]:focus,
    input[type="search"]:focus,
    textarea:focus {
        background-color: rgba(230, 230, 230, 0.22);
        color: #2b2c30;
    }
    .input-text,
    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="password"],
    input[type="search"],
    textarea {
        padding: .850469716em;
        background-color: rgb(255, 255, 255);
        border: solid 1px rgba(204, 204, 204, 0.42);
        color: #43454b;
        outline: 0;
        -webkit-appearance: none;
        border-radius: 2px;
        box-sizing: border-box;
        font-weight: 400;
        box-shadow: none;
    }
    .woocommerce #content table.cart td.actions .input-text,
    .woocommerce table.cart td.actions .input-text,
    .woocommerce-page #content table.cart td.actions .input-text,
    .woocommerce-page table.cart td.actions .input-text {
        display: inline-block;
        width: auto;
        padding: 13px;
    }
    .woocommerce .cart .button,
    .woocommerce .cart input.button,
    .woocommerce input.button:disabled[disabled],
    .woocommerce button.button.alt.disabled {
        padding: 15px;
    }
    .woocommerce-cart .cart-collaterals .cart_totals tr th,
    .woocommerce-checkout .cart-collaterals .cart_totals tr td,
    .woocommerce table.shop_table th {
        padding: 15px 12px;
        background: #e5e5e54d;
    }
}