/*
Theme Name: Designsupply Theme

WooCommerce styles override
*/

/**
 * Shop tables
 */

@import url(woocommerce_checkout.css);

table.shop_table_responsive thead {
    display: none;
}

table.shop_table_responsive tbody th {
    display: none;
}

table.shop_table_responsive tr td {
    display: block;
}

table.shop_table_responsive tr td::before {
    content: attr(data-title) ": ";
    float: left;
}

table.shop_table_responsive tr td.product-remove a {
    text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
    display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
    display: none;
}

table.shop_table_responsive tr td.download-actions .button {
    display: block;
    text-align: center;
}

@media screen and (min-width: 48em) {

    table.shop_table_responsive thead {
        display: table-header-group;
    }

    table.shop_table_responsive tbody th {
        display: table-cell;
    }

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

    table.shop_table_responsive tr td {
        display: table-cell;
    }

    table.shop_table_responsive tr td::before {
        display: none;
    }
}

/**
  * Products
  */
ul.products {
    margin: 0;
    padding: 0;
    display: grid;
}

.products .product {
    list-style: none;
    position: relative;
    background-color: #F4F8F9;
    border-radius: 10px;
    padding: 20px;
}

ul.products li.product img {
    display: block;
    margin-bottom: 30px;
    width: 100%;
}

ul.products {
    gap: 58px 30px;
    grid-template-columns: repeat(3, 1fr);
}

ul.products.columns-1 {
    grid-template-columns: repeat(1, 1fr);
}

ul.products.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

ul.products.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

ul.products.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

ul.products.columns-6 {
    grid-template-columns: repeat(6, 1fr);
}


/**
  * Single product
  */
.single-product div.product {
    position: relative;
}

.single-product div.product .woocommerce-product-gallery {
    position: relative;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 2em;
    right: 1em;
    display: block;
    z-index: 99;
}

.stock:empty::before {
    display: none;
}

.stock.out-of-stock {
    color: #e2401c;
}

/**
  * General WooCommerce components
  */

/**
  * Header cart
  */
.site-header-cart {
    position: relative;
    margin: 0;
    padding: 0;
}

.site-header-cart .cart-contents {
    text-decoration: none;
}

.site-header-cart .widget_shopping_cart {
    display: none;
}

.site-header-cart .product_list_widget {
    margin: 0;
    padding: 0;
}

/**
  * Star rating
  */
.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.618em;
    line-height: 1.618;
    width: 5.3em;
    font-family: star;
    font-weight: 400;
}

.star-rating::before {
    content: "\53\53\53\53\53";
    opacity: 0.25;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.star-rating span::before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
    color: #4169e1;
}

p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    margin-right: 1px;
    font-weight: 400;
}

p.stars a::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: star;
    content: "\53";
    color: #404040;
    text-indent: 0;
    opacity: 0.25;
}

p.stars a:hover~a::before {
    content: "\53";
    color: #404040;
    opacity: 0.25;
}

p.stars:hover a::before {
    content: "\53";
    color: #4169e1;
    opacity: 1;
}

p.stars.selected a.active::before {
    content: "\53";
    color: #4169e1;
    opacity: 1;
}

p.stars.selected a.active~a::before {
    content: "\53";
    color: #404040;
    opacity: 0.25;
}

p.stars.selected a:not(.active)::before {
    content: "\53";
    color: #4169e1;
    opacity: 1;
}

/**
  * Tabs
  */
.woocommerce-tabs {
    padding-top: 20px;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: #F4F8F9;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 5px;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 16px;
    display: block;
    color: #000;
    line-height: 1.4em;
    padding: 14px;
    text-transform: uppercase;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: #FF3AC0;
}

.woocommerce-tabs ul.tabs li.active a {
    font-weight: 700;
}

.woocommerce-tabs .panel h2 {
    display: none;
}

.woocommerce-Tabs-panel {
    padding-top: 60px;
}

.woocommerce-Tabs-panel,
.woocommerce-Tabs-panel ul,
.woocommerce-Tabs-panel ol,
.woocommerce-Tabs-panel p {
    color: #757575;
    font-size: 16px;
    line-height: 1.4em;
    font-weight: 400;
}

.woocommerce-Tabs-panel h1 {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    line-height: 1.4em;
    margin-bottom: 40px;
}

span.price {
    display: none;
}

/**
  * Password strength meter
  */
.woocommerce-password-strength {
    text-align: right;
}

.woocommerce-password-strength.strong {
    color: #0f834d;
}

.woocommerce-password-strength.short {
    color: #e2401c;
}

.woocommerce-password-strength.bad {
    color: #e2401c;
}

.woocommerce-password-strength.good {
    color: #3d9cd2;
}

/**
  * Forms
  */
.form-row.woocommerce-validated input.input-text {
    box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
    box-shadow: inset 2px 0 0 #e2401c;
}

.required {
    color: #f00;
}

/**
  * Notices
  */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
    background-color: #0f834d;
    clear: both;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4em;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-noreviews a,
p.no-comments a {
    color: #fff;
    text-decoration: underline !important;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
    background-color: #3d9cd2;
}

.woocommerce-notices-wrapper ul {
    padding-left: 30px;
}

.woocommerce-error {
    background-color: #e2401c;
}

.demo_store {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 1em;
    background-color: #3d9cd2;
    z-index: 9999;
}


@media screen and (min-width: 48em) {

    /**
      * Header cart
      */
    .site-header-cart .widget_shopping_cart {
        position: absolute;
        top: 100%;
        width: 100%;
        z-index: 999999;
        left: -999em;
        display: block;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    }

    .site-header-cart:hover .widget_shopping_cart,
    .site-header-cart.focus .widget_shopping_cart {
        left: 0;
        display: block;
    }
}

/**
  * WooCommerce widgets
  */

/**
  * WooCommerce Price Filter
  */
.widget_price_filter .price_slider {
    margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
    text-align: right;
    line-height: 2.4;
}

.widget_price_filter .price_slider_amount .button {
    float: left;
}

.widget_price_filter .ui-slider {
    position: relative;
    text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1em;
    height: 1em;
    cursor: ew-resize;
    outline: none;
    background: #4169e1;
    box-sizing: border-box;
    margin-top: -0.25em;
    opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
    margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover,
.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
    box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    border: 0;
    background: #4169e1;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
    height: 0.5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
    height: 100%;
}

.products .product a.woocommerce-LoopProduct-link {
    position: relative;
    display: block;
}

.products .product h2.woocommerce-loop-product__title,
.products .product a .subtitle {
    padding: 0 24px;
}

.products .product a .subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.product a .actual-price.price-new {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    padding: 0 24px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.product a .actual-price.price-new .sale-text {
    font-weight: 600;
}

.product a .actual-price.price-new .price-product del {
    text-decoration: none;
}

.products .product .button,
.product a .actual-price.price-new .sale-product-price {
    margin: 0 -24px;
    background-color: #FF3AC0;
    font-weight: 500;
    color: #fff;
    padding: 8px 24px;
    border-radius: 6px;
}


.products .product .button {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.products .product .button.add_to_cart_button svg {
    fill: #fff;
    width: 32px;
    margin: -5px 12px -5px -12px;
}

.products .product .button:hover,
.product a .actual-price.price-new .sale-product-price:hover {
    color: #000;
}

.products li.product .button.add_to_cart_button:hover svg {
    fill: #000;
}

.products li.product a.woocommerce-LoopProduct-link>span.price {
    display: none !important;
}

.woocommerce .product span.onsale {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FF3AC0;
    padding: 4px 10px !important;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
	z-index: 3;
}

.elementor-pagination,
.woocommerce-pagination ul {
    list-style: none;
    display: flex;
    flex: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.elementor-pagination a,
.elementor-pagination span,
.woocommerce-pagination ul li .page-numbers {
    color: #8B8B94;
    font-size: 29px;
    font-weight: 400;
    display: inline-block;
    width: 55px;
    height: 55px;
    padding: 12px;
    border: #FF3AC0 solid 1px;
    border-radius: 5px;
    text-align: center;
}

.elementor-pagination a:hover,
.elementor-pagination span.current,
.woocommerce-pagination ul li .page-numbers.current,
.woocommerce-pagination ul li a.page-numbers:hover {
    background-color: #FF3AC0 !important;
    color: #fff;
}


.elementor-pagination .prev,
.elementor-pagination .next,
.woocommerce-pagination ul li .prev,
.woocommerce-pagination ul li .next {
    font-size: 0 !important;
    position: relative;
}

.elementor-pagination .prev:after,
.elementor-pagination .next:after,
.woocommerce-pagination ul li .prev:after,
.woocommerce-pagination ul li .next:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 22px;
    height: 22px;
    border-top: #FF3AC0 solid 1px;
    border-left: #FF3AC0 solid 1px;
    transform-origin: 16px 2px;
}

.elementor-pagination .next:after,
.woocommerce-pagination ul li .next:after {
    transform: translate(-50%, -50%) rotate(135deg);
    transform-origin: 8px 10px;
}

.elementor-pagination .prev:hover:after,
.elementor-pagination .next:hover:after,
.woocommerce-pagination ul li .prev:hover:after,
.woocommerce-pagination ul li .next:hover:after {
    border-color: #fff;
}

.woocommerce .cyan-style .product span.onsale,
.cyan-style .product a.button,
.cyan-style .product a .actual-price.price-new .sale-product-price {
    background-color: #01D0E1;
}

.products .product a h2.woocommerce-loop-product__title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 12px;
}


table.cart {
    background-color: #F4F8F9;
    border-radius: 15px;
    overflow: hidden;
}

table.cart thead {
    background-color: #FF3AC0;
}

table.cart thead th {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6em;
    padding: 12px 15px;
    text-align: center;
    width: 18%;
}

table.cart thead th span {
    border-right: #fff solid 1px;
    display: block;
    margin-right: -15px;
}

table.cart thead th:last-child span {
    border-right: 0px;
}

table.cart thead th:first-child {
    text-align: left;
    width: 39%;
    padding-left: 30px;
}

table.cart thead th:last-child {
    width: 7%;
}

table.cart tbody td {
    padding: 25px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px;
    border-bottom: #80ABD0 solid 1px;
    border-right: #80ABD0 solid 1px;
}

table.cart tbody tr td:last-child {
    border-right: 0;
}

/*table.cart tbody tr:nth-last-child(2) td,}*/
table.cart tbody tr:last-child td {
    border-bottom: 0;
}

table.cart tbody td.product-thumbnail {
    display: flex;
    align-items: center;
    text-align: left;
}

table.cart tbody td.product-thumbnail>* {
    display: block;
    width: 50%;
}

table.cart tbody td.product-thumbnail>*:first-child {
    padding-right: 25px;
}

table.cart tbody td a.remove {
    font-size: 60px;
    line-height: normal;
}

table.cart tbody td input.qty {
    background-color: #fff;
    text-align: center;
    border: 0;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #000;
    padding: 10px;
    max-width: 70px;
}

table.cart tbody tr td.actions {
    border-top: #FF3AC0 solid 15px;
}

.crt_tbl_ftr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

button {
    cursor: pointer;
}

.ckot-wrapper form button,
a.checkout-button,
.crt_tbl_ftr button {
    border: 0;
    background-color: #FF3AC0;
    color: #fff;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 9px 25px;
}

.ckot-wrapper .ckot-coupan form button {
    background-color: #01D0E1;
}

.ckot-wrapper form button:hover,
a.checkout-button:hover,
.crt_tbl_ftr button:hover {
    color: #000;
}

.crt_tbl_ftr input.input-text {
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 500;
    color: #000;
    padding: 9px 15px;
    border: #AEBCC0 solid 1px;
    background-color: #fff;
    border-radius: 6px;
    max-width: 220px;
}

.crt_tbl_ftr input.input-text::placeholder {
    color: #AEBCC0;
}

.woocommerce-checkout>h3#order_review_heading,
.cart_totals>h2 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    background-color: #FF3AC0;
    line-height: 1.4em;
    padding: 16px 60px;
    border-radius: 15px 15px 0 0;
}

.cart_ttl {
    background-color: #F4F8F9;
    border-radius: 0 0 15px 15px;
}

.cart_ttl table.shop_table {
    margin: 0;
}

.cart_ttl table.shop_table,
.cart_ttl table.shop_table th {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.cart_ttl table.shop_table tr>th {
    border-bottom: #80ABD0 solid 1px;
    padding: 20px 0 20px 60px;
    width: 135px;
}

.cart_ttl table.shop_table tr>td {
    border-bottom: #80ABD0 solid 1px;
    padding: 20px 0;
}

.wc-proceed-to-checkout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
}

.wc-proceed-to-checkout:before,
.wc-proceed-to-checkout:after {
    display: none;
}

.wc-proceed-to-checkout span.woocommerce-Price-amount {
    font-size: 24px;
    font-weight: 600;
    color: #FF3AC0;
    line-height: 1.4em;
}


/*Checkout page classes */
.ckot-wrapper {
    padding: 25px 40px 50px;
    display: flex;
    background-color: #F4F8F9;
    gap: 44px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.ckot-wrapper>* {
    width: 50%;
}

.ckot-wrapper .woocommerce-info {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.ckot-wrapper .woocommerce-info a {
    display: block;
    font-size: 22px;
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    background-color: #FF3AC0;
    margin: 8px 0 0;
}

.ckot-wrapper .woocommerce-info a:hover {
    color: #fff;
}

.ckot-wrapper .ckot-coupan .woocommerce-info a {
    background-color: #01D0E1;
}

.ckot-wrapper form {
    display: block;
    margin-top: 10px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: #000;
}

.woocommerce-billing-fields label,
.woocommerce-account-fields label,
.woocommerce-shipping-fields label,
.woocommerce-additional-fields label,
.woocommerce-terms-and-conditions-wrapper .validate-required label,
#customer_login p.woocommerce-form-row label,
#customer_login p.woocommerce-FormRow label,
form.woocommerce-ResetPassword.lost_reset_password p.woocommerce-form-row label,
.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row label,
.wpcf7-form label,
.ckot-wrapper form label {
    display: block;
    margin-bottom: 6px;
}

.woocommerce label.checkbox {
    margin-bottom: 0 !important;
}

.ckot-wrapper form input:not([type='checkbox']) {
    width: 100%;
    background-color: #F4F8F9;
    font-size: 16px;
    line-height: 1.4em;
    border: 0;
    color: #000;
    border-radius: 6px;
    padding: 10px 15px;
}

.woocommerce-shipping-fields,
.woocommerce-billing-fields,
.woocommerce-account-fields,
.woocommerce-additional-fields,
.woocommerce-checkout-payment,
.woocommerce-EditAccountForm.edit-account,
.wpcf7-form {
    background-color: #F4F8F9;
    border-radius: 15px;
    padding: 50px 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: #000;
    margin-bottom: 30px;
}

.wpcf7-form,
.woocommerce-checkout-payment {
    margin-bottom: 0;
}

.wpcf7-form {
    padding: 0;
}

.woocommerce-billing-fields h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.woocommerce-billing-fields input,
.woocommerce-account-fields input.input-text,
.woocommerce-shipping-fields input,
.woocommerce-additional-fields textarea,
#customer_login p.woocommerce-FormRow input,
#customer_login p.woocommerce-form-row input:not([type="checkbox"]),
form.woocommerce-ResetPassword.lost_reset_password p.woocommerce-form-row input,
.woocommerce-EditAccountForm.edit-account p.woocommerce-form-row input,
.wpcf7-form input.wpcf7-text,
.wpcf7-form .wpcf7-textarea {
    width: 100%;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.4em;
    border: 0;
    color: #000;
    border-radius: 6px;
    padding: 18px;
}

.wpcf7-form .wpcf7-textarea {
    min-height: 281px;
}

.wpcf7-form .wpcf7-textarea.two_row {
    height: 168px;
    min-height: auto;
}

#account_display_name_description {
    margin-top: 5px;
    color: #757575;
    display: block;
}

.woocommerce-EditAccountForm.edit-account legend {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6em;
    margin-bottom: 10px;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 44px;
}

.woocommerce-billing-fields__field-wrapper p,
.woocommerce-account-fields p,
.woocommerce-shipping-fields__field-wrapper p {
    margin: 0;
}

p#billing_email_field {
    grid-area: 1 / 1 / 2 / 3;
}

p#billing_country_field span.woocommerce-input-wrapper,
p#shipping_country_field span.woocommerce-input-wrapper {
    background-color: #fff;
    border-radius: 6px;
    padding: 18px;
    display: block;
}

p#billing_address_2_field,
p#shipping_address_2_field {
    padding-top: 22.5px;
}

#customer_details label.woocommerce-form__label-for-checkbox input[type="checkbox"],
.woocommerce-terms-and-conditions-wrapper .validate-required input#terms,
#customer_login p.submit-row input[type="checkbox"],
.wpcf7-form .checkbox label input[type="checkbox"] {
    display: none;
}

.woocommerce-terms-and-conditions-wrapper .validate-required label,
#customer_details label.woocommerce-form__label-for-checkbox,
#customer_login p.submit-row label,
.wpcf7-form .checkbox label {
    position: relative;
    min-height: 35px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.woocommerce-terms-and-conditions-wrapper .validate-required label:before,
#customer_details label.woocommerce-form__label-for-checkbox:before,
#customer_login p.submit-row label:before,
.wpcf7-form .checkbox label:before {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 6px;
}

.woocommerce-terms-and-conditions-wrapper .validate-required label>span,
#customer_details label.woocommerce-form__label-for-checkbox>span,
#customer_login p.submit-row label>span,
.wpcf7-form .checkbox label>span {
    width: calc(100% - 50px);
}

.woocommerce-terms-and-conditions-wrapper .validate-required label input#terms:checked~span:after,
#customer_details label.woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox:checked~span:after,
#customer_login p.submit-row label input[type="checkbox"]:checked~span:after,
.wpcf7-form .checkbox label input[type="checkbox"]:checked~span.wpcf7-list-item-label:after {
    content: "";
    display: block;
    width: 16px;
    height: 8px;
    border-left: #71B097 solid 2px;
    border-bottom: #71B097 solid 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 11px;
    left: 10px;
}

.woocommerce-account-fields .create-account #account_password_field {
    padding-top: 15px;
}

.woocommerce-shipping-fields h3 {
    font-size: 14px;
    font-weight: 400;
}

table.woocommerce-checkout-review-order-table {
    background-color: #F4F8F9;
    border-radius: 0 0 15px 15px;
    text-align: left;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
    color: #000;
    border-collapse: collapse;
}

table.woocommerce-checkout-review-order-table th,
table.woocommerce-checkout-review-order-table td {
    padding: 22px 0 22px 60px;
    font-weight: 400;
    border-bottom: #80ABD0 solid 1px;
}

table.woocommerce-checkout-review-order-table tfoot tr:last-child th,
table.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    border-bottom: 0;
}


table.woocommerce-checkout-review-order-table tr.order-total th,
table.woocommerce-checkout-review-order-table tr.order-total td strong {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #FF3AC0;
}

.woocommerce-checkout-payment ul {
    margin: 0;
    padding: 0;
}

.form-row.place-order {
    padding-top: 32px;
    margin-top: 40px;
    position: relative;
    text-align: center;
}

.form-row.place-order:before {
    content: "";
    display: block;
    border-top: #80ABD0 solid 1px;
    position: absolute;
    top: 0;
    left: -40px;
    right: -40px;
}

.woocommerce-terms-and-conditions-wrapper .validate-required label {
    font-weight: 700;
    gap: 0;
}

.woocommerce-terms-and-conditions-wrapper .validate-required label::before {
    margin-right: 15px;
}

.wpcf7-form input.wpcf7-submit,
.form-row.place-order button#place_order {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    text-transform: uppercase;
    display: block;
    padding: 34px 48px;
    border: #000 solid 1px;
    border-radius: 12px;
    background-color: transparent;
    margin: 22px auto 0;
    min-width: 231px;
    cursor: pointer;
}

.woocommerce-EditAccountForm.edit-account button.woocommerce-Button:hover,
form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button:hover,
#customer_login button.woocommerce-button:hover,
.form-row.place-order button#place_order:hover,
.wpcf7-form input.wpcf7-submit:hover,
.lost_reset_password .woocommerce-Button.button:hover{
    background-color: #FF3AC0;
    color: #fff;
    border-color: #FF3AC0;
}

.wpcf7-form input.wpcf7-submit {
    margin-top: 0;
}

form.woocommerce-ResetPassword.lost_reset_password,
#customer_login>div {
    background-color: #F4F8F9;
    padding: 40px;
    border-radius: 15px;
    max-width: 730px;
    margin: auto;
    font-size: 14px;
    color: #000;
    line-height: 1.4em;
    display: block;
}

#customer_login>div>h2 {
    display: none;
}

#customer_login p.submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

#customer_login .woocommerce-LostPassword.lost_password {
    text-align: center;
}

#customer_login .woocommerce-LostPassword.lost_password a {
    font-size: 16px;
    color: #757575;
}

#customer_login .woocommerce-LostPassword.lost_password a:hover {
    color: #000;
}

.woocommerce-EditAccountForm.edit-account button.woocommerce-Button,
form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-button,
#customer_login button.woocommerce-button,
.lost_reset_password .woocommerce-Button.button{
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4em;
    text-transform: uppercase;
    display: inline-block;
    padding: 16px 65px;
    border: #000 solid 1px;
    border-radius: 12px;
    background-color: transparent;
}

.woocommerce-EditAccountForm.edit-account button.woocommerce-Button {
    margin-top: 25px;
}

/*********** MY ACOOUNR CLASSES START ***********/
.logged-in .account-wrap .woocommerce {
    display: flex;
}

.account-wrap .woocommerce-MyAccount-navigation {
    width: 435px;
    padding-right: 25px;
}

.account-wrap .woocommerce-MyAccount-content {
    width: calc(100% - 435px);
}

.account-wrap .woocommerce-MyAccount-navigation ul {
    margin: 0;
    list-style-type: none;
    background-color: #F4F8F9;
    padding: 20px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4em;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.account-wrap .woocommerce-MyAccount-navigation ul li a {
    color: #7A7C7D;
    padding: 18px 20px;
    display: block;
    background-color: #fff;
    border: #AEBCC0 solid 1px;
    border-radius: 8px;
}

.account-wrap .woocommerce-MyAccount-navigation ul li.is-active a,
.account-wrap .woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #FF3AC0;
    border-color: #FF3AC0;
    color: #fff;
}

.account-wrap .woocommerce-MyAccount-navigation ul li:last-child a {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    background-color: transparent;
    max-width: 230px;
    margin: auto;
    border-color: #000;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

.account-wrap .woocommerce-MyAccount-navigation ul li:last-child a:hover {
    background-color: #000;
    color: #fff;
}

.account-wrap .woocommerce-MyAccount-content {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    line-height: 1.4em;
}

/*********** MY ACOOUNR CLASSES End ***********/

nav.woocommerce-pagination {
    margin-top: 40px;
}

@media screen and (max-width:1730px) {

    .archive .elementor-widget-wc-archive-products .woocommerce.columns-3 ul.products,
    ul.products.columns-3,
    ul.products {
        gap: 30px 15px;
    }

    .woocommerce-pagination ul li .page-numbers {
        font-size: 24px;
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .woocommerce-pagination ul li .prev::after,
    .woocommerce-pagination ul li .next::after {
        width: 18px;
        height: 18px;
        transform-origin: 11px 2px;
    }

    .woocommerce-pagination ul li .next::after {
        transform-origin: 7px 8px;
    }
}

@media screen and (max-width:1230px) {

    ul.products.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .archive .elementor-widget-wc-archive-products .woocommerce.columns-3 ul.products,
    ul.products.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product a .actual-price.price-new,
    .products .product a h2.woocommerce-loop-product__title {
        font-size: 18px;
        line-height: normal;
    }

    .products .product h2.woocommerce-loop-product__title,
    .products .product a .subtitle,
    .product a .actual-price.price-new {
        padding: 0;
    }

    .products .product .button,
    .product a .actual-price.price-new .sale-product-price {
        margin: 0;
        padding: 8px 15px;
    }

    .products .product .button.add_to_cart_button svg {
        width: 24px;
        margin: 0px 6px 0 0px;
    }

    .elementor-pagination,
    .woocommerce-pagination ul {
        gap: 5px;
    }

    .elementor-pagination a,
    .elementor-pagination span,
    .woocommerce-pagination ul li .page-numbers {
        font-size: 20px;
        width: 40px;
        height: 40px;
        padding: 5px;
    }

    .elementor-pagination .prev:after,
    .elementor-pagination .next:after,
    .woocommerce-pagination ul li .prev::after,
    .woocommerce-pagination ul li .next::after {
        width: 14px;
        height: 14px;
        transform-origin: 9px 2px;
    }

    .elementor-pagination .next:after,
    .woocommerce-pagination ul li .next::after {
        transform-origin: 6px 6px;
    }

    table.cart thead th {
        font-size: 20px;
    }

    table.cart tbody td {
        padding: 20px;
    }

    .crt_tbl_ftr input.input-text,
    a.checkout-button,
    .crt_tbl_ftr button {
        font-size: 16px;
        height: 44px;
    }

    .ckot-wrapper {
        padding: 20px 30px 35px;
        gap: 20px
    }

    .woocommerce-shipping-fields,
    .woocommerce-billing-fields,
    .woocommerce-account-fields,
    .woocommerce-additional-fields,
    .woocommerce-checkout-payment,
    .woocommerce-EditAccountForm.edit-account {
        padding: 40px 30px;
    }

    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        gap: 20px;
    }

    .account-wrap .woocommerce-MyAccount-navigation ul li:last-child a,
    .woocommerce-checkout>h3#order_review_heading,
    .cart_totals>h2 {
        font-size: 22px;
        padding: 15px 30px;
    }

    table.woocommerce-checkout-review-order-table th,
    table.woocommerce-checkout-review-order-table td {
        padding: 18px 0 18px 30px;
    }

    .form-row.place-order::before {
        left: -30px;
        right: -30px;
    }

    .account-wrap .woocommerce-MyAccount-navigation ul {
        font-size: 16px;
        gap: 10px;
        padding: 20px 15px;
    }

    .account-wrap .woocommerce-MyAccount-navigation ul li a {
        padding: 15px;
    }

    .account-wrap .woocommerce-MyAccount-navigation {
        width: 330px;
        padding-right: 20px;
    }

    .account-wrap .woocommerce-MyAccount-content {
        width: calc(100% - 330px);
    }
}


@media screen and (max-width:1024px) {
    ul.products.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    table.cart tbody td {
        padding: 15px;
    }

    table.cart thead th:first-child {
        padding-left: 15px;
    }

    table.cart tbody td.product-thumbnail> :first-child {
        padding-right: 15px;
    }

    table.cart tbody td.product-thumbnail>* {
        line-height: normal;
    }

    .cart_totals>h2 {
        font-size: 20px;
        padding: 16px 20px;
    }

    .wc-proceed-to-checkout,
    .cart_ttl table.shop_table tr>th {
        padding: 20px;
    }

    .wc-proceed-to-checkout span.woocommerce-Price-amount {
        font-size: 20px;
    }

    .ckot-wrapper .woocommerce-info a {
        font-size: 20px;
        padding: 15px 20px;
    }

    .account-wrap .woocommerce {
        flex-direction: column;
        gap: 20px;
    }

    .account-wrap .woocommerce-MyAccount-navigation,
    .account-wrap .woocommerce-MyAccount-content {
        width: 100%;
        padding: 0;
    }
}


@media screen and (max-width:767px) {

    .product a .actual-price.price-new,
    .products .product a h2.woocommerce-loop-product__title,
    .products .product .button,
    .product a .actual-price.price-new .sale-product-price {
        font-size: 16px;
    }

    .woocommerce-tabs ul.tabs li a {
        font-size: 14px;
        padding: 12px;
    }

    .woocommerce-Tabs-panel {
        padding-top: 20px;
    }

    ul.products {
        gap: 20px 10px;
    }

    ul.products li.product img {
        margin-bottom: 15px;
    }

    .products .product a .subtitle {
        margin-bottom: 6px;
    }

    .product a .actual-price.price-new {
        gap: 6px;
    }

    table.cart tbody td {
        border-right: 0;
        text-align: left;
    }

    table.cart tbody tr td:last-child {
        border-bottom: #fff solid 20px;
    }

    .table_style01 table.cart tbody tr td:last-child {
        border-bottom: #80ABD0 solid 1px;
    }

    table.cart tbody tr:last-child td:last-child {
        border-bottom: 0;
    }

    table.shop_table_responsive tr td::before {
        min-width: 100px;
    }

    table.shop_table_responsive tr td.product-thumbnail::before {
        display: none;
    }

    table.cart tbody td a.remove {
        line-height: 30px;
    }

    .crt_tbl_ftr {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
        padding: 10px 0;
    }

    .crt_tbl_ftr .coupon {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
    }

    .crt_tbl_ftr input.input-text {
        max-width: 100%;
    }

    .cart_ttl table.shop_table tr>td {
        padding: 15px 20px;
    }

    .wc-proceed-to-checkout {
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    .ckot-wrapper {
        flex-direction: column;
        padding: 20px 20px 30px;
    }

    .ckot-wrapper .woocommerce-info a {
        margin: 0;
    }

    .ckot-wrapper>* {
        width: 100%;
    }

    .woocommerce-shipping-fields,
    .woocommerce-billing-fields,
    .woocommerce-account-fields,
    .woocommerce-additional-fields,
    .woocommerce-checkout-payment,
    .woocommerce-EditAccountForm.edit-account {
        padding: 30px 20px;
    }

    table.woocommerce-checkout-review-order-table tr.order-total th,
    table.woocommerce-checkout-review-order-table tr.order-total td strong,
    .woocommerce-billing-fields h3 {
        font-size: 20px;
    }

    .woocommerce-checkout>h3#order_review_heading,
    .cart_totals>h2 {
        font-size: 20px;
        padding: 15px 20px;
    }

    table.woocommerce-checkout-review-order-table th,
    table.woocommerce-checkout-review-order-table td {
        padding: 15px 0 15px 20px;
    }

    .form-row.place-order::before {
        left: -20px;
        right: -20px;
    }

    .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: repeat(1, 1fr)
    }

    p#billing_email_field {
        grid-area: auto;
    }

    p#billing_address_2_field,
    p#shipping_address_2_field {
        padding-top: 0;
    }
}

@media screen and (max-width:560px) {

    .archive .elementor-widget-wc-archive-products .woocommerce.columns-3 ul.products,
    ul.products.columns-2,
    ul.products.columns-3,
    ul.products.columns-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    table.cart tbody td.product-thumbnail>* {
        width: 30%;
    }

    table.cart tbody td.product-thumbnail>*:last-child {
        width: 70%;
    }

    table.cart tbody td.product-thumbnail {
        padding-top: 20px;
    }

    table.cart tbody td {
        padding: 8px 15px;
    }

    table.cart tbody td a.remove {
        font-size: 50px;
    }

    .ckot-wrapper .woocommerce-info a {
        font-size: 18px;
        padding: 12px 15px;
    }

    .ckot-wrapper form button,
    a.checkout-button,
    .crt_tbl_ftr button {
        font-size: 16px;
    }

    .woocommerce-terms-and-conditions-wrapper .validate-required label {
        text-align: left;
    }

    .wpcf7-form input.wpcf7-submit,
    .form-row.place-order button#place_order {
        padding: 20px 40px;
    }

    #customer_login>div {
        padding: 35px 20px;
    }

    .account-wrap .woocommerce-MyAccount-navigation ul li:last-child a,
    .woocommerce-EditAccountForm.edit-account button.woocommerce-Button,
    form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-button,
    #customer_login button.woocommerce-button,
.lost_reset_password .woocommerce-Button.button {
        font-size: 20px;
        line-height: normal;
        padding: 15px 30px;
    }
