/*
Theme Name: uinature

WooCommerce styles override
*/


/**
 * Products
 */

.products {
    max-width: 100%;
    margin: 10px auto;
    padding: 10px;
    grid-gap: 25px;
}

.products .product {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 20px;
    margin: 10px 2% 10px 0;
    padding: 10px;
    background: #ffffff;
    height: auto;
    z-index: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    /* width: 30px; */
}

.products .product .button {
    display: block;
}

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

.products.columns-1 .product {
    float: none;
    width: 100%;
}

.products.columns-2 .product {
    width: 47%;
}

.products.columns-3 .product {
    width: 29%;
}

.products.columns-4 .product {
    width: 21%;
}

.products.columns-5 .product {
    width: 15%;
}

.products.columns-6 .product {
    width: 12%;
}

.product h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
    color: #6a6a6a;
}

.products .product img {
    width: 100%;
    object-position: top;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.product .price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #2ea954;
}

.product .price del {
    font-weight: 400;
    color: #999;
    margin-right: 5px;
    font-size: 13px;
}

.product .onsale {
    font-size: 12px;
    font-weight: 700;
    color: #ff4a4a;
    background-color: #ffffff;
    padding: 2px 5px;
    border-radius: 5px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.product .add_to_cart_button,
.product .added_to_cart,
.product .add-to-wishlist {
    font-size: 13px;
    font-weight: 600;
    color: var(--tf-theme-txt-clr);
    background: var(--tf-theme-bg-clr);
    border: none;
    margin: 3px 4px;
    padding: 6px 10px;
    border-radius: 50px;
    float: left;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
}

.star-rating {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    position: relative;
}

.star-rating::before {
    content: "★★★★★";
    color: #ccc;
}

.star-rating span {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    z-index: 1;
}

.star-rating span::before {
    content: "★★★★★";
    color: #f1c40f;
    /* Change this to your desired star color */
}

.tf-product-grid-style-1.tf-sliders,
.tf-product-grid-style-2.tf-sliders,
.tf-product-grid-style-3.tf-sliders,
.tf-product-grid-style-4.tf-sliders,
.tf-product-grid-style-5.tf-sliders {
    display: flex !important;
}


/* 2nd column */

.tf-product-grid-style-2 .product {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    color: #8d8d8d;
}

.tf-product-grid-style-2 .product img {
    grid-row: 1 / 4;
}

.tf-product-grid-style-2 .product .woocommerce-LoopProduct-link {
    display: contents;
}

.tf-product-grid-style-2 .tf-pro-product-content a {
    grid-column: 2;
    grid-row: 1;
}

.tf-product-grid-style-2 .product h2 {
    margin-bottom: 15px;
    font-size: 20px;
}

.tf-product-grid-style-2 .product span.price {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 10px;
}

.tf-product-grid-style-2 .add_to_cart_button,
.tf-product-grid-style-2 .added_to_cart {
    position: absolute;
    grid-column: 2;
    grid-row: 3;
    display: inline-block;
    width: fit-content;
}

.tf-product-grid-style-2 .button.add_to_cart_button.ajax_add_to_cart {
    margin-right: 5px;
    left: 0;
}

.tf-product-grid-style-2 .added_to_cart.wc-forward {
    right: 0;
}

.tf-sliders.tf-product-grid-style-2 .product h2 {
    white-space: pre-wrap;
}

.tf-product-grid-style-3 .product .add_to_cart_button,
.tf-product-grid-style-3 .product .added_to_cart,
.tf-product-grid-style-3 .product .star-rating {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, height 0.3s ease;
    -webkit-transition: opacity 0.3s ease, height 0.3s ease;
    -moz-transition: opacity 0.3s ease, height 0.3s ease;
    -ms-transition: opacity 0.3s ease, height 0.3s ease;
    -o-transition: opacity 0.3s ease, height 0.3s ease;
}

.tf-product-grid-style-3 .product:hover .add_to_cart_button,
.tf-product-grid-style-3 .product:hover .added_to_cart,
.tf-product-grid-style-3 .product:hover .star-rating {
    height: auto;
    opacity: 1;
}


/* shop page */

.uinature_shop_product_sorting {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 2rem 0;
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    align-items: center;
}

.uinature_shop_product_sorting .woocommerce-ordering {
    width: auto;
    margin: 0;
}


/* ------------------ Woocommerce Card page------- Start */

.woocommerce .cart-collaterals::after,
.woocommerce .cart-collaterals::before,
.woocommerce-page .cart-collaterals::after,
.woocommerce-page .cart-collaterals::before {
    content: " ";
    display: table;
}

.woocommerce .cart-collaterals::after,
.woocommerce-page .cart-collaterals::after {
    clear: both;
}

.woocommerce .cart-collaterals .related,
.woocommerce-page .cart-collaterals .related {
    width: 30.75%;
    float: left;
}

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells {
    width: 48%;
    float: left;
}

.woocommerce .cart-collaterals .cross-sells ul.products,
.woocommerce-page .cart-collaterals .cross-sells ul.products {
    float: none;
}

.woocommerce .cart-collaterals .cross-sells ul.products li,
.woocommerce-page .cart-collaterals .cross-sells ul.products li {
    width: 48%;
}

.woocommerce .cart-collaterals .shipping_calculator,
.woocommerce-page .cart-collaterals .shipping_calculator {
    width: 48%;
    clear: right;
    float: right;
}

.woocommerce .cart-collaterals .shipping_calculator::after,
.woocommerce .cart-collaterals .shipping_calculator::before,
.woocommerce-page .cart-collaterals .shipping_calculator::after,
.woocommerce-page .cart-collaterals .shipping_calculator::before {
    content: " ";
    display: table;
}

.woocommerce .cart-collaterals .shipping_calculator::after,
.woocommerce-page .cart-collaterals .shipping_calculator::after {
    clear: both;
}

.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,
.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,
.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,
.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2 {
    width: 47%;
}

.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {
    content: " ";
    display: table;
}

.woocommerce .col2-set::after,
.woocommerce-page .col2-set::after {
    clear: both;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
    float: left;
    width: 48%;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: right;
    width: 48%;
}

form.woocommerce-cart-form,
.cart-collaterals {
    padding: 10px;
    position: relative;
}

form.woocommerce-cart-form {
    width: 64%;
    float: left;
    margin-right: 1%;
    max-width: 100%;
    background: white;
    border-radius: 15px;
}

.cart-collaterals {
    width: 35%;
    float: right;
    background: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.cart-collaterals .cart_totals {
    width: 100% !important;
    float: none !important;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.cart_list li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce ul.product_list_widget li::before,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.cart_list li::before,
.woocommerce-page ul.product_list_widget li::after,
.woocommerce-page ul.product_list_widget li::before {
    content: " ";
    display: table;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.product_list_widget li::after {
    clear: both;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.cart_list li img,
.woocommerce-page ul.product_list_widget li img {
    float: right;
    height: auto;
}

.button.wp-element-button {
    /* float: right; */
}

.woocommerce-cart .wp-element-button {
    float: right;
}

.woocommerce-message {
    position: fixed;
    right: 0;
    bottom: 18px;
    z-index: 99;
    padding: 33px;
}

.woocommerce .coupon {
    display: flex;
    flex-direction: row;
    width: fit-content;
    float: left;
    padding: 20px;
    background-color: #fff;
    margin: 2em 0;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--tf-theme-bg-1);
}

.woocommerce .coupon .input-text {
    width: auto;
    min-width: 15em;
    margin-right: 15px;
}

.cart-collaterals .checkout-button {
    display: block;
    margin: 35px;
}

.woocommerce-cart .product-thumbnail img {
    max-height: 70px;
    width: auto;
}


/* ------------------ Woocommerce Card page------- End */


/* ------------------ Woocommerce Nav ------- Start */

nav.woocommerce-pagination {
    background: #fff;
    margin: 5px;
    width: 100%;
    padding: 0;
    height: auto;
    border-radius: 13px;
    display: block;
    overflow: hidden;
}

.woocommerce-pagination ul {
    padding: 10px 15px;
    margin: 0;
    overflow-x: auto;
}

.woocommerce-pagination ul li {
    margin: 5px;
    float: left;
    display: inline;
    overflow: hidden;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: inline-block;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 50%;
    color: #000;
    background-color: #fff;
    float: none;
    font-weight: 800;
    transition: all 0.5s ease;
    border: 1px solid var(--tf-theme-bg-1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.woocommerce-pagination ul li a:focus,
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    color: var(--tf-theme-txt-clr);
    background: var(--tf-theme-bg-clr);
    border: 2px solid var(--tf-theme-bg-1);
}


/* ------------------ Woocommerce Nav ------- End */


/* ----Topfaida Grid System for products ------------------------ end}*/

.uinature-offers-list {
    list-style-type: none;
    padding-left: 0;
}

.uinature-offers-list .product-offer-item {
    display: flex;
    column-gap: 11px;
    position: relative;
    margin: 4px 0;
    font-size: 15px;
    padding-left: 1.5em;
}

.uinature-offers-list .product-offer-item::before {
    content: '\f02b';
    font-family: var(--tfpro-icon);
    font-size: 16px;
    font-weight: 900;
    padding: 5px;
    position: absolute;
    left: 0;
    top: 0;
    color: #388e3c;
    margin-right: 10px;
    line-height: 1;
}


/* countdown timing */

.uinature-countdown-timer {
    display: flex;
    justify-content: center;
    font-size: 1.2em;
    margin-top: 20px;
}

.uinature-countdown-timer span {
    margin: 0 4px;
    font-size: 23px;
    color: var(--tf-theme-bg-1);
    font-weight: 800;
    box-shadow: var(--tfpro-shadow-light);
    padding: 3px 12px;
}

.uinature-countdown-timer small {
    display: block;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
}


/* ------------------ Woocommerce Single product ------- Start */

.uinature_single_product_container,
.woocommerce-tabs.wc-tabs-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.woocommerce-variation-price {
    margin: 15px 0;
    padding: 15px 0;
}

.single-product .product .price ins {
    font-size: 25px;
    text-decoration: none;
    font-weight: 800;
}

.quantity {
    display: inline-flex;
    align-items: center;
}

.change-quantity {
    background-color: transparent;
    border: 1px solid #000;
    cursor: pointer;
    padding: 5px 10px;
}

.woocommerce-variation-description {
    margin: 10px 0;
    padding: 10px;
}

.single-product .input-text.qty {
    width: auto;
    max-width: 70px;
}

.single-product .variations,
.single-product .variations select {
    width: auto;
    margin: 0 5px
}

.woocommerce-variation-add-to-cart,
.product-type-simple form.cart {
    margin: 10px;
    display: flex;
    justify-content: space-evenly;
}

.product_meta {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
}

.product_meta>span {
    border-bottom: 1px solid #fbfbfb;
    font-weight: 700;
    color: #000052;
    font-size: 13px;
    padding: 2px 0;
}

.product_meta>span a,
.product_meta>span span {
    color: #006ecdb3;
    font-size: 12px;
}

.woocommerce .products>h2 {
    margin: 2rem 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.woocommerce .products>h2:before,
.woocommerce .products>h2:after {
    content: "";
    border-top: 2px solid;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
    color: #666666;
}

.woocommerce .products>h2:after {
    margin: 0 0 0 20px;
}

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

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

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

.single-product div.product .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    margin: 0;
    padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
    list-style: none;
    cursor: pointer;
    float: left;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
    opacity: 0.5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
    opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
    width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
    margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
    clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
    width: 30.79667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
    margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
    clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
    width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
    margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
    clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
    width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
    margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
    clear: both;
}

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

.stock.in-stock {
    color: #0f834d;
}

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

ul.flex-direction-nav {
    position: absolute;
    top: 30%;
    z-index: 99999;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 0px;
    list-style: none;
}

li.flex-nav-prev {
    float: left;
}

li.flex-nav-next {
    float: right;
}

a.flex-next {
    visibility: hidden;
}

a.flex-prev {
    visibility: hidden;
}

a.flex-next::after,
a.flex-prev::before {
    visibility: visible;
    font-family: var(--tfpro-icon);
    margin-right: 10px;
    font-size: 20px;
    font-weight: bold;
}

a.flex-next::after {
    content: "\f054";
}

a.flex-prev::before {
    content: "\f053";
}

ul.flex-direction-nav li a {
    color: #ccc;
}

ul.flex-direction-nav li a:hover {
    text-decoration: none;
}

.woocommerce div.product div.images {
    margin-bottom: 2em;
}

.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.woocommerce div.product div.images div.thumbnails {
    padding-top: 1em;
}

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

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
    margin: 0;
    padding: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
    background-color: #fff;
    opacity: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
    border: 1px solid #f2f2f2;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n + 2) {
    width: 25%;
    display: inline-block;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    font-size: 2em;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: #fff;
    text-indent: -9999px;
    border-radius: 100%;
    box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    border-radius: 6px;
    position: absolute;
    top: 19px;
    left: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: content-box;
}

.woocommerce div.product div.images .flex-control-thumbs {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    white-space: nowrap;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    display: inline-block;
    list-style: none;
    float: none !important;
    display: inline-block;
    width: auto;
    height: 90px;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    cursor: pointer;
    opacity: 0.5;
    margin: 0;
    height: 90px;
    width: auto;
    border: 1px solid #3a3a3a;
    padding: 5px;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    opacity: 1;
    padding: 2px;
    border: 2px solid var(--tf-theme-bg-1);
    box-shadow: var(--tf-shadow-3d);
}

.woocommerce .product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n + 1),
.woocommerce .product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n + 1),
.woocommerce .product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n + 1) {
    clear: left;
}


/* ------------------ Woocommerce Single product ------- End */


/* Mobile devices */

@media (max-width: 480px) {
    .tf-product-grid-style-2.tf-sliders .tf-slider-card {
        width: 95%;
    }
}


/* Tablet devices */

@media (min-width: 481px) and (max-width: 768px) {
    .tf-product-grid-style-2.tf-sliders .tf-slider-card {
        width: 50%;
    }
}


/* Desktop devices */

@media (min-width: 769px) {
    .tf-product-grid-style-2.tf-sliders .tf-slider-card {
        width: 32%;
    }
}


/* 
 {
    background: var(--tf-theme-bg-clr);
    color: var(--tf-theme-txt-clr);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: var(--tf-theme-font);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
} */


/*//////////////////////////////////////////






///////////////*/


/* remove */

.woocommerce-product-gallery__trigger {
    display: none;
}


/* ------------------ Woocommerce Shop Table ------- Start */

table.shop_table_responsive thead {
    display: none;
}

table.shop_table_responsive tbody th {
    display: none;
}

table.shop_table_responsive tr td {
    display: block;
    text-align: right;
    clear: both;
}

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;
    }
}

.woocommerce table.shop_attributes {
    border: 0;
    border-top: 1px dotted rgba(0, 0, 0, 0.1);
    margin-bottom: 1.618em;
    width: 100%;
}

.woocommerce table.shop_attributes th {
    width: 150px;
    font-weight: 700;
    padding: 8px;
    border-top: 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    margin: 0;
    line-height: 1.5;
}

.woocommerce table.shop_attributes td {
    font-style: italic;
    padding: 0;
    border-top: 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    margin: 0;
    line-height: 1.5;
}

.woocommerce table.shop_attributes td p {
    margin: 0;
    padding: 10px;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
    background: rgba(0, 0, 0, 0.025);
}

.woocommerce table.shop_table {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 -1px 24px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 5px;
}

.woocommerce table.shop_table th {
    font-weight: 700;
    padding: 9px 12px;
    line-height: 1.5em;
}

.woocommerce table.shop_table td {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 9px 12px;
    vertical-align: middle;
    line-height: 1.5em;
}

.woocommerce table.shop_table td small {
    font-weight: 400;
}

.woocommerce table.shop_table td del {
    font-weight: 400;
}

.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
    border-top: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
    font-weight: 700;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce table.my_account_orders {
    font-size: 0.85em;
}

.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
    padding: 15px 10px;
    vertical-align: middle;
}

.woocommerce table.my_account_orders .button {
    white-space: nowrap;
}

.woocommerce table.woocommerce-MyAccount-downloads td,
.woocommerce table.woocommerce-MyAccount-downloads th {
    vertical-align: top;
    text-align: center;
}

.woocommerce table.woocommerce-MyAccount-downloads td:first-child,
.woocommerce table.woocommerce-MyAccount-downloads th:first-child {
    text-align: left;
}

.woocommerce table.woocommerce-MyAccount-downloads td:last-child,
.woocommerce table.woocommerce-MyAccount-downloads th:last-child {
    text-align: left;
}


/**
 * Shop tables
 */


/* 
table.shop_table_responsive thead {
    display: none;
}

table.shop_table_responsive tbody th {
    display: none;
}

table.shop_table_responsive tr td {
    display: block;
    text-align: right;
    clear: both;
}

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;
}

}
*/


/**
 * Checkout
 */

.checkout.woocommerce-checkout {
    max-width: 100%;
}

.woocommerce .checkout_coupon,
.woocommerce .login,
.woocommerce .register,
.woocommerce-ResetPassword {
    border: 1px dashed var(--tf-theme-bg-1);
    padding: 20px;
    margin: 2em auto;
    text-align: left;
    border-radius: 5px;
}

.woocommerce .checkout_coupon,
.woocommerce-ResetPassword {
    width: 50%;
    background: #fff;
}

.woocommerce form .form-row::after,
.woocommerce form .form-row::before,
.woocommerce-page form .form-row::after,
.woocommerce-page form .form-row::before {
    content: " ";
    display: table;
}

.woocommerce form .form-row::after,
.woocommerce-page form .form-row::after {
    clear: both;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    display: block;
}

.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
    display: inline;
}

.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
    width: 100%;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
    box-sizing: border-box;
    width: 100%;
}


/* .woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    width: 47%;
    overflow: visible;
} */

.woocommerce form .form-row-first,
.woocommerce-page form .form-row-first {
    /* float: left;*/
}

.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
    /* float: right; */
}

.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
    clear: both;
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.woocommerce form .password-input input[type="password"],
.woocommerce-page form .password-input input[type="password"] {
    padding-right: 2.5rem;
}

.woocommerce form .password-input input::-ms-reveal,
.woocommerce-page form .password-input input::-ms-reveal {
    display: none;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
    position: absolute;
    right: 0.7em;
    top: 0.7em;
    cursor: pointer;
}

.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
    font-family: WooCommerce;
    speak: never;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-left: 0.618em;
    content: "\e010";
    text-decoration: none;
}

.woocommerce form .show-password-input.display-password::after,
.woocommerce-page form .show-password-input.display-password::after {
    color: #585858;
}

.woocommerce #payment .form-row select,
.woocommerce-page #payment .form-row select {
    width: auto;
}

.woocommerce #payment .terms,
.woocommerce #payment .wc-terms-and-conditions,
.woocommerce-page #payment .terms,
.woocommerce-page #payment .wc-terms-and-conditions {
    text-align: left;
    padding: 0 1em 0 0;
    float: left;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: right;
}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-billing-fields::before,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce .woocommerce-shipping-fields::before,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-billing-fields::before,
.woocommerce-page .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-shipping-fields::before {
    content: " ";
    display: table;
}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-shipping-fields::after {
    clear: both;
}

.woocommerce .woocommerce-terms-and-conditions,
.woocommerce-page .woocommerce-terms-and-conditions {
    margin-bottom: 1.618em;
    padding: 1.618em;
}

.woocommerce .woocommerce-oembed,
.woocommerce-page .woocommerce-oembed {
    position: relative;
}


/* ------------------ Woocommerce Checkout ------- Start */

.tf-pro-address-feild,
.tf-pro-payment-gateway,
.woocommerce-order-details,
.woocommerce-customer-details {
    box-shadow: var(--tfpro-shadow-light);
    border-radius: 10px;
    padding: 10px;
    background: var(--tfpro-bg);
    color: var(--tfpro-clr);
    z-index: 1;
    margin-right: 15px;
    /* max-width: 55%; */
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


/* payment methods */

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: #ebe9eb;
    border-radius: 5px;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
    text-align: left;
    padding: 1em;
    border-bottom: 1px solid inherit;
    margin: 0;
    list-style: none outside;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
    line-height: 2;
    text-align: left;
    margin: 0;
    font-weight: 400;
}

.wc_payment_methods label {
    display: inline-block;
}

.woocommerce-checkout-review-order {
    padding-bottom: 20px;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
    margin: 1em 0;
    font-size: 0.92em;
    border-radius: 2px;
    line-height: 1.5;
    background-color: #dfdcde;
    color: #515151;
}

#add_payment_method #payment div.payment_box span.help,
.woocommerce-cart #payment div.payment_box span.help,
.woocommerce-checkout #payment div.payment_box span.help {
    font-size: 0.857em;
    color: #767676;
    font-weight: 400;
}

#add_payment_method #payment div.payment_box .form-row,
.woocommerce-cart #payment div.payment_box .form-row,
.woocommerce-checkout #payment div.payment_box .form-row {
    margin: 0 0 1em;
}

#add_payment_method #payment div.payment_box p:last-child,
.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child {
    margin-bottom: 0;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    content: "";
    display: block;
    border: 1em solid #dfdcde;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -0.75em;
    left: 0;
    margin: -1em 0 0 2em;
}

#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
    min-width: 32px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 90px;
    box-shadow: none;
}

#add_payment_method table.cart td,
#add_payment_method table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout table.cart td,
.woocommerce-checkout table.cart th {
    vertical-align: middle;
}

#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 {
    float: left;
    box-sizing: border-box;
    border: 1px solid #d3ced2;
    padding: 6px 6px 5px;
    margin: 0 4px 0 0;
    outline: 0;
}

#add_payment_method table.cart input,
.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input {
    margin: 0;
    vertical-align: middle;
}

#add_payment_method .cart-collaterals .shipping-calculator-form,
.woocommerce-cart .cart-collaterals .shipping-calculator-form,
.woocommerce-checkout .cart-collaterals .shipping-calculator-form {
    margin: 1em 0 0 0;
}

#add_payment_method .cart-collaterals .cart_totals p small,
.woocommerce-cart .cart-collaterals .cart_totals p small,
.woocommerce-checkout .cart-collaterals .cart_totals p small {
    color: #767676;
    font-size: 0.83em;
}

#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
    border-collapse: separate;
    margin: 0 0 6px;
    padding: 0;
}

#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,
#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th {
    border-top: 0;
}

#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
    width: 35%;
}

#add_payment_method .cart-collaterals .cart_totals table td,
#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
    vertical-align: top;
    border-left: 0;
    border-right: 0;
    line-height: 1.5em;
}

#add_payment_method .cart-collaterals .cart_totals table small,
.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small {
    color: #767676;
}

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
    width: 100%;
}

#add_payment_method .cart-collaterals .cart_totals .discount td,
.woocommerce-cart .cart-collaterals .cart_totals .discount td,
.woocommerce-checkout .cart-collaterals .cart_totals .discount td {
    color: #77a464;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
    border-top: 1px solid #ebe9eb;
}

#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination,
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination {
    margin-bottom: 0;
}

#add_payment_method .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product {
    margin-top: 0;
}

#add_payment_method .checkout .col-2 h3#ship-to-different-address,
.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
    float: left;
    clear: none;
}

#add_payment_method .checkout .col-2 .notes,
.woocommerce-cart .checkout .col-2 .notes,
.woocommerce-checkout .checkout .col-2 .notes {
    clear: left;
}

#add_payment_method .checkout .col-2 .form-row-first,
.woocommerce-cart .checkout .col-2 .form-row-first,
.woocommerce-checkout .checkout .col-2 .form-row-first {
    clear: left;
}

#add_payment_method .checkout .create-account small,
.woocommerce-cart .checkout .create-account small,
.woocommerce-checkout .checkout .create-account small {
    font-size: 11px;
    color: #767676;
    font-weight: 400;
}

#add_payment_method .checkout div.shipping-address,
.woocommerce-cart .checkout div.shipping-address,
.woocommerce-checkout .checkout div.shipping-address {
    padding: 0;
    clear: left;
    width: 100%;
}

#add_payment_method .checkout .shipping_address,
.woocommerce-cart .checkout .shipping_address,
.woocommerce-checkout .checkout .shipping_address {
    clear: both;
}

@media screen and (min-width: 768px) {
    .col2-set .form-row-first {
        float: left;
        margin-right: 3.8%;
    }
    .col2-set .form-row-last {
        float: right;
        margin-right: 0;
    }
    .col2-set .form-row-first,
    .col2-set .form-row-last {
        width: 48.1%;
    }
}


/* ------------------ Woocommerce Checkout ------- End */

@media screen and (min-width: 768px) {
    .col2-set .form-row-first {
        float: left;
        margin-right: 3.8%;
    }
    .col2-set .form-row-last {
        float: right;
        margin-right: 0;
    }
    .col2-set .form-row-first,
    .col2-set .form-row-last {
        width: 48.1%;
    }
}


/* order page */

.woocommerce .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin: 15px 0;
}

.woocommerce .order_details li {
    display: inline-block;
    padding: 10px;
    list-style-type: none;
    border: 1px solid #dfdfdf;
}


/* account */


/* ------------------ Woocommerce My account page ------- Start */

.user-info {
    padding: 10px 0 0 0;
}

.uinature-admin-dashbord {
    padding: 15px;
}

.uinature-admin-dashbord-nav {
    box-shadow: var(--tfpro-shadow-light);
    padding: 10px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.uinature-user-profile {
    text-align: center;
    margin-bottom: 20px;
    background: var(--tf-theme-bg-clr);
    color: var(--tf-theme-txt-clr);
    padding: 10px 0;
    border-radius: 3px;
}

.uinature-user-profile .user-avatar img {
    border-radius: 50%;
    box-shadow: var(--tfpro-shadow-light);
    padding: 5px;
    height: 100px;
    width: 100px;
    background: #fff;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style-type: none;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul a {
    font-size: 17px;
    padding: 10px;
    display: block;
    background-color: white;
    color: #002864;
    box-shadow: var(--tfpro-shadow-light);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul .is-active a {
    background: var(--tf-theme-bg-clr);
    color: var(--tf-theme-txt-clr);
    box-shadow: var(--tfpro-shadow-3d);
}

.uinature-admin-nav-details .woocommerce-MyAccount-content {
    box-shadow: var(--tfpro-shadow-light);
    border-radius: 10px;
    margin: 0 15px;
    padding: 20px;
    position: relative;
    z-index: 1;
    background: var(--tfpro-bg);
    color: var(--tfpro-clr);
}

.woocommerce-EditAccountForm legend {
    background: #ffe000b8;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: var(--tfpro-shadow-3d);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul a::before {
    margin-right: 10px;
    font-family: var(--tfpro-icon);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
    content: "\f3fd";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
    content: "\f543";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions a:before {
    content: "\f559";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
    content: "\f019";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
    content: "\f3c5";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
    content: "\f2bd";
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
    content: "\f2f5";
}


/* ------------------ Woocommerce My account page ------- End */


/**
 * 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 ul.tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    border-bottom: 2px solid var(--tf-theme-bg-1);
}

.woocommerce-tabs ul.tabs li {
    display: inline-block;
    margin: 0;
    position: relative;
}

.woocommerce-tabs ul.tabs li a {
    padding: 10px;
    display: block;
    border-radius: 2px;
    background: var(--tf-theme-bg-clr);
    color: var(--tf-theme-txt-clr);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.woocommerce-tabs .tabs li.active a {}

.woocommerce-tabs .panel h2:first-of-type {
    margin-bottom: 1em;
}


/**
 * 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;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 1em 2em 1em 3.5em !important;
    margin: 0 0 2em;
    position: relative;
    background-color: #f7f6f7;
    color: #515151;
    border-top: 3px solid #a46497;
    border-radius: 5px !important;
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 5px !important;
}

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

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

.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
    content: " ";
    display: table;
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
    clear: both;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    font-family: WooCommerce;
    content: "\e028";
    display: inline-block;
    position: absolute;
    top: 1em;
    left: 1.5em;
}

.woocommerce-message {
    border-top-color: #8fae1b;
}

.woocommerce-message::before {
    content: "\e015";
    color: #8fae1b;
}

.woocommerce-info {
    border-top-color: #1e85be;
}

.woocommerce-info::before {
    color: #1e85be;
}

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

.woocommerce-error::before {
    content: "\e016";
    color: #b81c23;
}

.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%;
}

@media only screen and (max-width: 576px) {
    form.woocommerce-cart-form {
        width: 100%;
    }
    .cart-collaterals {
        width: 100%;
        margin-top: 15px;
    }
    .woocommerce .coupon {
        flex-wrap: wrap;
    }
    table.shop_table_responsive tr td {
        text-align: left;
    }
    .woocommerce .checkout_coupon,
    .woocommerce-ResetPassword,
    .woocommerce .col2-set .col-1,
    .woocommerce-page .col2-set .col-1,
    .woocommerce .col2-set .col-2,
    .woocommerce-page .col2-set .col-2,
    .woocommerce .order_details li {
        width: 100%;
    }
    .woocommerce .order_details li {
        text-align: left;
    }
    .uinature-admin-nav-details .woocommerce-MyAccount-content {
        margin: 0;
        padding: 5px;
    }
    .uinature-admin-dashbord {
        padding: 5px;
    }
    .uinature-admin-nav-details {
        padding: 0;
    }
    ul.products.columns-1 li.product {
        float: none;
        width: 100%;
    }
    .products.columns-2 .product,
    .products.columns-3 .product,
    .products.columns-4 .product,
    .products.columns-5 .product,
    .products.columns-6 .product {
        width: 47%;
    }
}

@media only screen and (min-width: 577px) and (max-width: 767px) {
    .products.columns-3 .product,
    .products.columns-4 .product,
    .products.columns-5 .product,
    .products.columns-6 .product {
        width: 30% !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .products.columns-4 .product,
    .products.columns-5 .product,
    .products.columns-6 .product {
        width: 22% !important;
    }
}

@media only screen and (min-width: 992px) {}