/* 01. Common Styles */
body a, body a:focus, a:hover, a:active {
    outline: none;
}
@-moz-keyframes zozospin {
    from { -moz-transform: rotate(360deg); }
    to { -moz-transform: rotate(0deg); }
}
@-webkit-keyframes zozospin {
    from { -webkit-transform: rotate(360deg); }
    to { -webkit-transform: rotate(0deg); }
}
@keyframes zozospin {
    from {transform:rotate(360deg);}
    to {transform:rotate(0deg);}
}
.woocommerce select {
    padding: 0 10px;
    position: relative;
    background: #fff;
}
.zozo-woo-thumb-wrap {
    position: relative;
}
.zozo-woo-buttons-pack {
    text-align: center;
    margin: 0 auto;
}
.zozo-woo-buttons-pack > a, .zozo-wishlist-table .zozo-ajax-add-to-cart, .zozo-wishlist-table .zozo-wishlist-remove  {
    margin: 4px;
    position: relative;
    height: 30px;
    width: 30px;
    display: inline-block;
    background: #fff;
    text-align: center;
    line-height: 30px;
}
.zozo-woo-buttons-pack > a.zozo-product-compare-trigger {
    top: 0;
    left: 0;
    right: 0;
}
.zozo-woo-buttons-pack > a.loading:after, a.remove-cart-item.loading:after, .zozo-wishlist-table .zozo-ajax-add-to-cart.loading:after,
.zozo-wishlist-table .zozo-wishlist-remove.loading:after {
	position: absolute;
    top: -15px;
    right: -5px;
    content: "\e619";
    font-family: 'themify';
    font-size: 10px;
    text-align: center;
    background: transparent;
    border-radius: 50%;
    -webkit-animation: zozospin 4s linear infinite;
    -moz-animation: zozospin 4s linear infinite;
    animation: zozospin 4s linear infinite;
}
.zozo-woo-buttons-pack > a > span {
    display: inline-block;
    line-height: 30px;
    font-size: 18px;
}
.zozo-shop-top-meta {
    margin-bottom: 20px;
    margin-left: -10px;
    margin-right: -10px;
}
.woocommerce .zozo-shop-top-meta > * {
    display: inline-block;
    vertical-align: middle;
    float: none;
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
}
.woocommerce .zozo-shop-top-meta > *:last-child {
    float: right;
}
/* 02. Minicart/Wishlist Styles */
.mini-cart-dropdown, .mini-wishlist-dropdown {
    display: inline-block;
    position: relative;
}
.mini-cart-dropdown > a, .mini-wishlist-dropdown > a {
    position: relative;
}   
ul.cart-dropdown-menu, ul.wishlist-dropdown-menu {
    width: 300px;
    position: absolute;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    margin: 0;
    padding: 10px;
    background: #fff;
    right: 0;
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
    -webkit-box-shadow: 0 0px 15px rgba(0,0,0,0.04), 0 6px 15px rgba(0,0,0,0.04);
    -moz-box-shadow: 0 0px 15px rgba(0,0,0,0.04), 0 6px 15px rgba(0,0,0,0.04);
    box-shadow: 0 0px 15px rgba(0,0,0,0.04), 0 6px 15px rgba(0,0,0,0.04);
}
.cart-pos-left ul.cart-dropdown-menu {
    left: 0;
    right: auto;
}
ul.zozo-sticky-cart, ul.zozo-sticky-wishlist  {
    opacity: 1;
    visibility: visible;
    width: 300px;
}
.mini-cart-dropdown:hover ul.cart-dropdown-menu, .mini-wishlist-dropdown:hover ul.wishlist-dropdown-menu {
    visibility: visible;
    opacity: 1;
    z-index: 4;
}
ul.cart-dropdown-menu > li, ul.zozo-sticky-cart > li, 
ul.wishlist-dropdown-menu > li, ul.zozo-sticky-wishlist > li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}
ul.cart-dropdown-menu > li > *, ul.zozo-sticky-cart > li > *, 
ul.wishlist-dropdown-menu > li > *, ul.zozo-sticky-wishlist > li > * {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
ul.cart-dropdown-menu .product-thumbnail, ul.zozo-sticky-cart .product-thumbnail, 
ul.wishlist-dropdown-menu .product-thumbnail, ul.zozo-sticky-wishlist .product-thumbnail {
    max-width: 50px;
    width: 50px;
    vertical-align: top;
}
ul.cart-dropdown-menu > li p, ul.zozo-sticky-cart > li p, 
ul.wishlist-dropdown-menu > li p, ul.zozo-sticky-wishlist > li p {
    padding: 0;
    margin: 0;
}
ul.cart-dropdown-menu > li > .product-name, ul.zozo-sticky-cart  > li > .product-name, 
ul.wishlist-dropdown-menu > li > .product-name, ul.zozo-sticky-wishlist > li > .product-name {
    width: 170px;
    overflow: hidden;
}
ul.cart-dropdown-menu > li > .product-remove, ul.zozo-sticky-cart  > li > .product-remove, 
ul.wishlist-dropdown-menu > li > .product-remove, ul.zozo-sticky-wishlist > li > .product-remove {
    width: 30px;
    text-align: center;
}
ul.cart-dropdown-menu li.mini-view-cart > a, ul.zozo-sticky-cart li.mini-view-cart > a, 
ul.wishlist-dropdown-menu  > li.mini-view-wishlist, ul.zozo-sticky-wishlist > li.mini-view-wishlist {
    display: block;
    padding: 6px;
    text-align: center;
    margin-top: 10px;
}
a.zozo-sticky-cart-close, a.zozo-sticky-wishlist-close {
    position: absolute;
    left: -60px;
    top: 0;
    width: 30px;
    text-align: center;
}
.zozo-sticky-cart-wrap, .zozo-sticky-wishlist-wrap {
    position: fixed;
    right: -300px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
    background: #fff;
    -webkit-box-shadow: 0 0px 15px rgba(0,0,0,0.04), 0 6px 15px rgba(0,0,0,0.04);
    -moz-box-shadow: 0 0px 15px rgba(0,0,0,0.04), 0 6px 15px rgba(0,0,0,0.04);
    box-shadow: 0 0px 15px rgba(0,0,0,0.04), 0 6px 15px rgba(0,0,0,0.04);
}
.zozo-sticky-cart-wrap.cart-pos-left {
    left: -300px;
    right: auto;
}
.zozo-sticky-cart-wrap.cart-pos-left.active {
    left: 0;
    right: auto;
    z-index: 1;
}
.cart-pos-left a.zozo-sticky-cart-close {
    left: 100%;
}
.cart-pos-left .woo-icon-count {
    right: -10px;
    left: auto;
}
.zozo-sticky-cart-wrap > ul, .zozo-sticky-wishlist-wrap > ul {
    padding: 0 10px;
}
.zozo-sticky-cart-wrap.active, .zozo-sticky-wishlist-wrap.active {
    right: 0;
    z-index: 1;
}
a.remove-cart-item, a.remove-wishlist-item {
    position: relative;
}
a.remove-cart-item.loading, a.remove-wishlist-item.loading {
    color: #fff;
}
a.remove-cart-item.loading:after, a.remove-wishlist-item:after {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    color: #333;
}
.zozo-sticky-cart-wrap {
    margin-top: -50px;
}
span.zozo-product-favoured {
    position: absolute;
    right: -10px;
    z-index: 1;
    top: -10px;
    font-size: 10px;
    padding: 4px;
    background: red;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    line-height: 15px;
    text-align: center;
    color: #fff;
}
p.no-cart-items, p.no-wishlist-items {
    text-align: center;
    width: 100%;
}
/* WooCommerce shop grid/list view */
ul.products.columns-5 li.product,
.products.columns-5 .product { 
    width: 20%; 
    float: left; 
}
ul.products.columns-6 li.product { width: 16.66%; float: left; }
ul.products.list-view {
    display: block;
}
ul.products.list-view li.product {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
ul.products.list-view li.product .woocommerce-loop-product__link {
    display: flex;
    gap: 20px;
}
ul.products.list-view li.product img {
    width: 150px;
    height: auto;
}
ul.products.list-view li.product .woocommerce-loop-product__title,
ul.products.list-view li.product .price {
    margin: 0;
}
/* Woo Product Quantity */
.woocommerce .quantity .qty {
    text-align: center;
    margin: 0 10px 0 0;
    display: inline-block;
    height: 50px;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    width: 80px;
    border: 1px solid var(--cus-border-color);
    background-color: var(--cus-bg-light-clr);
}
.single-product.woocommerce .quantity .qty {
    margin: 0 0px 10px 0px;
    border-radius: 7px;
}
/* Product Question Form */
.product-question-form p {
    margin-bottom: 0;
}
.product-question-form input {
    line-height: 50px;
    padding-left: 18px;
    margin-bottom: 20px;
}
.product-question-form textarea {
    margin-bottom: 15px;
}
.product-question-form {
    margin-bottom: 54px;
}
.product-question-form h3 {
    margin-bottom: 19px;
}
.product-question-form button {
    border-radius: 30px;
    border: solid 1px;
    padding: 0px 30px;
    line-height: 43px;
    margin-top: 0 !important;
}
/* Example grid columns */
.products.grid-cols-2 .product { width: 50%; float: left; }
.products.grid-cols-3 .product { width: 33.33%; float: left; }
.products.grid-cols-4 .product { width: 25%; float: left; }
.products.grid-cols-5 .product { width: 20%; float: left; }
.products.grid-cols-6 .product { width: 16.66%; float: left; }
.woocommerce ul.zozo-woo-list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce ul.zozo-woo-list-view li.product {
    width: 100% !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.woocommerce ul.zozo-woo-list-view li.product .product-det h2 {
    font-size: 2rem;
}
.woocommerce ul.grid-cols-2 li.product,
.woocommerce ul.grid-cols-3 li.product,
.woocommerce ul.grid-cols-4 li.product,
.woocommerce ul.grid-cols-5 li.product,
.woocommerce ul.grid-cols-6 li.product {
    width: 100% !important;
}
.woocommerce .zozo-woo-list-view li.product:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.woocommerce .zozo-woo-list-view li.product img {
    position: relative;
    margin-top: 15px;
    flex: 0 0 200px;
    max-width: 200px;
}
.woocommerce ul.products.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.woocommerce ul.products.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.woocommerce ul.products.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.woocommerce ul.products.grid-cols-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.woocommerce ul.products.grid-cols-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
/* Woo content display */
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before{
    content: none;
}
/* 01. Compare Product Styles */
.zozo-woo-compare-inner .zcompare {
	position: relative;
	margin-bottom: 10px;
}
.zozo-woo-compare-inner .zcompare > * {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
}
.zozo-woo-compare-inner .zcompare > .zozo-compare-img {
    max-width: 50px;
}
.zozo-woo-compare-inner .zcompare > .zcompare-body {
	padding-left: 10px;
	width: 200px;
}
.zozo-woo-compare-inner .zcompare > .zozo-compare-product-remove {
    width: 20px;
	text-align: center;
}
.zozo-woo-compare-wrap.active {
    right: 0;
}
.zozo-woo-compare-wrap {
    position: fixed;
    top: 50%;
    right: -300px;
    width: 300px;
    transform: translateY(-50%);
    background: #fff;
	margin-top: 80px;
    z-index: 9;
    -webkit-transition: all ease 0.35s;
    transition: all ease 0.35s;
	padding: 15px;
    -webkit-box-shadow: 0 1px 10px 0 rgba(0,0,0,0.14), 0 1px 1px 0 rgba(0,0,0,0.01), 0 2px 12px -1px rgba(0,0,0,0.01);
    box-shadow: 0 1px 10px 0 rgba(0,0,0,0.14), 0 1px 1px 0 rgba(0,0,0,0.01), 0 2px 12px -1px rgba(0,0,0,0.01);
}
a.zozo-compare-close {
    position: absolute;
    top: 0;
    left: -30px;
    height: 30px;
    width: 30px;
    background: #f2f2f2;
    text-align: center;
    line-height: 30px;
}
.woo-icon-count {
    color: #fff;
    border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 9px;
    height: 14px;
    line-height: 14px;
    position: absolute;
    right: -10px;
    text-align: center;
    top: -10px;
    width: 14px;
	background: red;
}
a.zozo-compare-close .woo-icon-count {
    left: -10px;
    right: auto;
}
.zozo-woo-compare-inner .zcompare > .zcompare-body p {
    margin: 0;
}
a.zozo-woo-compare-ajax.zozo-btn {
    font-size: 12px;
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-top: 10px;
	max-width: 100px;
    border: solid 1px;
}
.zozo-compare-product-results {
    max-width: 80%;
    margin: 0 auto;
    max-height: 80%;
    margin-top: 50px;
    overflow-y: auto;
    background: #fff;
	padding: 15px;
}
a.popup-modal-dismiss {
    float: right;
}
a.zozo-woo-compare-ajax {
    position: relative;
}
a.zozo-woo-compare-ajax.loading:before {
    position: absolute;
    top: -10px;
    right: -10px;
    content: "\e619";
    font-family: 'themify';
    font-size: 10px;
    height: 17px;
    width: 17px;
    text-align: center;
    background: transparent;
    border-radius: 50%;
    -webkit-animation: zozospin 4s linear infinite;
    -moz-animation: zozospin 4s linear infinite;
    animation: zozospin 4s linear infinite;
}
td.zozo-col-name {
    width: 150px;
}
/* 02. Woo Notifier Styles */
.zozo-notofication-trigger.loading:after {
	position: absolute;
	content: "\e619";
	font-family: 'themify';
	right: 0;
	left: 0;
	font-size: 14px;
	background: transparent;
	color: #fff;
	-webkit-animation: zozospin 4s linear infinite;
	-moz-animation: zozospin 4s linear infinite;
	animation: zozospin 4s linear infinite;
	margin: 0 auto;
	display: inline-block;
}
.zozo-notofication-trigger.loading {
    position: relative;
    color: transparent;
}
span.zozo-notofication-msg.zozo-notofication-success {
    color: #00af00;
}
span.zozo-notofication-msg.zozo-notofication-failed {
    color: #f32626;
}
/* 03. Woo Ajax Search Styles */
.zozo-woo-ajax-key-search {
    position: relative;
}
.zozo-woo-key-search .input-group-text, .zozo-woo-key-search input, .zozo-woo-key-search select {
    padding: 0;
    border: 0;
}
.zozo-woo-key-search .input-group {
    padding: 5px 15px;
    border: solid 1px #f0f0f0;
    border-radius: 100px;
	padding-right: 0;
}
.zozo-woo-key-search select {
    -webkit-appearance: none;
	position: relative;
	background-image: url(../images/icon-select.png);
	background-position: right;
    background-repeat: no-repeat;
	padding-right: 34px;
	background-color: transparent;
}
.zozo-woo-key-search select:focus {
	background-color: transparent;
}
.zozo-woo-key-search .input-group-text {
    background: transparent;
}
.zozo-woo-key-search .input-group-prepend .btn {
    padding: 10px 20px;
    height: auto;
    border-radius: 100px;
    line-height: 1;
    margin-top: -6px;
    margin-bottom: -6px;
}
.zozo-woo-key-search ul.dropdown-menu {
	padding: 10px;
    width: 80%;
	max-height: 300px;
    overflow-y: scroll;
}
.zozo-woo-key-search ul.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    display: block;
	transform: scaleY(1);
    -webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);    
}
.zozo-product-ajax-res img {
    max-width: 56px;
    margin-right: 10px;
}
li.zozo-product-ajax-res .media {
    margin-bottom: 10px;
}
li.zozo-product-ajax-res .zozo-product-title {
    font-size: 14px;
}
span.zozo-woo-search-spinner:before {
    content: "\e619";
    font-family: 'themify';
    font-size: 16px;
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 12px;
    color: #333;
    -webkit-animation: zozospin 1.2s linear infinite;
    animation: zozospin 1.2s linear infinite;
    margin-top: -6px;
    margin-right: 10px;
}
.zozo-woo-key-search span.zozo-woo-search-spinner {
    position: relative;
	opacity: 0;
	visibility: hidden;
	z-index: 9;
}
.zozo-woo-key-search.loading span.zozo-woo-search-spinner {
	opacity: 1;
	visibility: visible;
}
.zozo-product-desc {
    font-size: 12px;
    margin: 0;
    line-height: 18px;
}
.zozo-product-price {
    width: 50px;
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    margin-left: 10px;
    color: #93bd33;
}
.zozo-woo-key-search a.zozo-product-ajax-link:hover {
    color: #333;
}
.zozo-woo-key-search a.zozo-product-ajax-link:hover .media {
    background: #f7f7f7;
}
.zozo-woo-key-search a.zozo-product-ajax-link .media {
	-webkit-transition: all ease 0.35s;
    transition: all ease 0.35s;
    padding: 4px;
}
button.zozo-see-more-products {
    font-size: 12px;
    font-weight: 400;
    background: #d1d1d1;
    padding: 0px 10px;
    color: #333;
    line-height: 28px;
    border-radius: 4px;
	margin: 0 auto;
    display: block;
	margin-bottom: 20px;
}
button.zozo-see-more-products:hover {
    color: #fff;
}
.zozo-woo-key-search {
    display: inline-block;
}
.zozo-woo-key-search-results li.zozo-product-ajax-res {
	position: relative;
}
.zozo-woo-key-search-results li.zozo-product-ajax-res a > * {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
}
ul.zozo-woo-key-search-results {
    list-style: none;
	max-height: 300px;
	opacity: 0;
	visibility: hidden;
    overflow-y: auto;
	transition: all ease 0.35s;
	position: absolute;
    left: 10px;
    background: #fff;
    width: 350px;
    z-index: 1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
ul.zozo-woo-key-search-results.active {
	opacity: 1;
	visibility: visible;
	transition: all ease 0.35s;	
}
ul.zozo-woo-key-search-results::-webkit-scrollbar {
    width: 4px;
}
ul.zozo-woo-key-search-results::-webkit-scrollbar-button {
    display: none;
}
ul.zozo-woo-key-search-results::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
ul.zozo-woo-key-search-results::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}
ul.zozo-woo-key-search-results.active {
	opacity: 1;
	visibility: visible;
	transition: all ease 0.35s;	
}
ul.zozo-woo-key-search-results .zozo-product-ajax-res {
    margin: 20px 0;
}
ul.zozo-woo-key-search-results > li {
    display: block;
}
.zozo-product-ajax-link .zozo-product-info > p {
    max-width: 200px;
    color: #000;
}
.zozo-input-group {
    display: flex;
    align-items:center;
    gap: 5px;
}
.zozo-input-group > * {
    display: inline-block;
    vertical-align: middle;
}
.woocommerce .zozo-input-group-text select {
    height: 40px;
    line-height: 40px;
    border-radius: 10px;
    padding-left: 10px;
    background: #fff;
}
.zozo-woo-key-search input.zozo-woo-key-field {
    border: none;
    box-shadow: none;
}
.zozo-woo-key-search button.zozo-btn:hover {
    background: transparent;
    border: none;
}
.zozo-woo-key-search button.zozo-btn {
    background: transparent;
    color: #333;
    border: none;
}
input.zozo-form-control.zozo-woo-key-field {
    height: 40px;
    border: 1px solid #f1f1f1;
    outline: none;
    border-radius: 10px;
    padding: 10px;
}
/* 04. Woo Quick View Styles */
a.zozo-woo-view-trigger {
    position: relative;
}
body .short-product-view-inner > .product {
    max-width: 80%;
    margin: 0 auto;
}
body .short-product-view-inner > .product > div {
    display: inline-block;
    width: 40%;
    margin: 0;
    padding: 0;
    float: left;
}
body .short-product-view-inner > .product {
    max-width: 80%;
    margin: 0 auto;
    background: #fff;
    display: table;
	padding: 15px;
	position: relative;
}
body .short-product-view-inner > .product > div.entry-summary {
    margin-left: 20px;
}
/* 05. Deal Products Styles */
a.zozo-product-time-deal {
    position: absolute;
    top: 10px;
    left: 11px;
    height: 30px;
    width: 30px;
    text-align: center;
    font-size: 18px;
    background: #fff;
    line-height: 32px;
}
.product-deal-progress {
    display: inline-block;
    width: 300px;
	max-width: 100%;
}
.product-deal-progress .day-counter > div {
    display: inline-block;
    position: static;
}
.zozo-progress.product-time-progress {
    height: 4px;
    width: 100%;
    background: #f3f3f3;
    position: relative;
    display: block;
    border-radius: 44px;
    overflow: hidden;
}
.zozo-progress .zozo-progress-bar {
    background: #fe6262;
    height: 100%;
    border-radius: 4px;
}
span.low-stock {
    color: #fe6262;
}
.product .day-counter {
    max-width: 300px;
}
.product .day-counter > div {
    width: 25%;
    padding: 0;
    margin: 0;
    text-align: center;
    height: auto;
}
.product .day-counter > div > div {
    transform: none;
    top: auto;
    position: static;
}
.product .day-counter > div h3 {
    font-size: 12px;
    font-weight: normal;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: 0 auto;
    background: #333;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 10px;
}
.product .day-counter > div span {
    font-size: 12px;
}
.progress.product-time-progress {
    height: 5px;
	max-width: 300px;
}
.product-deal-progress .day-counter {
    margin-bottom: 10px;
}
.progress.product-time-progress {
    margin-bottom: 20px;
}
.product .progress-title {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 3px;
}

.loop-product-wrap a.zozo-product-time-deal {
    opacity: 1;
    visibility: visible;
    transform: none;
    top: 10px;
    right: 10px;
    margin-top: 35px;
}

.product-loop-inside-timer .product-deal-progress {
    padding: 15px;
    text-align: center;
}
.woocommerce .product .product-loop-inside-timer .day-counter h3 {
    margin: 0 auto;
    font-size: 10px;
    line-height: 20px;
}
.product .product-loop-inside-timer .day-counter > div span {
    text-align: center;
    font-size: 10px;
}
.product-loop-inside-timer {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    top: 50%;
	transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    z-index: 99;
	opacity: 0;
    visibility: hidden;
	transition: all ease 0.35s;
}
.zozo-product-time-deal:hover ~ .product-loop-inside-timer {
    opacity: 1;
    visibility: visible;
}
.single-deal-progress .day-counter .counter-item {
    transform: none;
    top: auto;
}
.single-deal-progress .day-counter .counter-item {
    font-size: 13px;
}
.single-deal-progress .day-counter .counter-item > h3 {
    font-size: 16px;
}
.single-deal-inner {
    text-align: center;
}
.single-deal-progress .day-counter > * {
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
	width: 25%;
	text-align: center;
}
.single-deal-progress {
    max-width: 350px;
	margin: 0 auto;
}
.single-deal-inner .deal-price {
    margin-bottom: 10px;
    margin-top: 20px;
}
.single-deal-inner .product-title {
    margin-bottom: 30px;
}
.single-deal-progress .progress.product-time-progress {
    max-width: 100%;
}
p.stock.in-stock {
    margin: 0;
}
/* 06. Product Variation Styles */
.zozo-product-variations {
    position: absolute;
    bottom: 20px;
    right: 5px;
}
.zozo-product-variations:hover {
    z-index: 1;
}
.zozo-product-variations.variation-sizes {
	top: 54px;
	right: 10px;
}
.zozo-product-variations .zozo-product-variations-inner span {
    width: 30px;
    border-radius: 50%;
    border: solid 1px #eaeaea;
    display: block;
    line-height: 1;
    height: 30px;
	margin: 0 auto;
    margin-bottom: 3px;
	font-size: 10px;
    text-align: center;
}
.zozo-product-variations .zozo-product-variations-inner span img {
    border-radius: 50%;
}
.zozo-product-variations-images > img {
    max-width: 100%;
}
.zozo-product-variations.variation-sizes .zozo-product-variations-inner span {
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 8px;
    padding: 0;
	background: #fff;
    color: #444;
}
.zozo-product-variations .zozo-product-variations-inner span.selected {
	position: relative;
}
.zozo-product-variations .zozo-product-variations-inner span.selected:before {
    position: absolute;
    left: auto;
    right: -5px;
    top: -5px;
    background: #fff;
    content: "\e64c";
    font-family: 'themify';
    height: 15px;
    width: 15px;
    line-height: 15px;
    color: #333;
    border-radius: 50%;
	font-size: 8px;
    text-align: center;
	z-index: 1;
}
span.zozo-product-variations-mirror {
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: block;
    text-align: center;
    line-height: 40px;
}
span.zozo-product-variations-mirror img {
    max-width: 40px;
	border-radius: 50%;
}
.zozo-product-variations-inner {
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.35s;
	height: 0;
	overflow: hidden;
    display: flex;
}
.zozo-product-variations:hover .zozo-product-variations-inner {
    opacity: 1;
    visibility: visible;
	height: auto;
	padding-top: 10px;
}
.variation-not-available-wrap {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.8);
}
.variation-not-available-wrap .variation-not-inner {
    text-align: center;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    max-width: 200px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.variation-not-available-wrap > span {
    right: 20px;
    top: 30px;
    position: absolute;
	cursor: pointer;
}
.woocommerce-product-gallery.loading {
    position: relative;
}
.woocommerce-product-gallery.loading:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 99;
}
.single-product .zozo-product-variations .zozo-product-variations-inner a:last-child,
.zozo-product-short-view .zozo-product-variations .zozo-product-variations-inner a:last-child {
    margin-right: 0;
}
.single-product .zozo-product-variations .zozo-product-variations-inner {
    opacity: 1;
    visibility: visible;
    overflow: visible;
    height: auto;
}
.single-product .zozo-product-variations .zozo-product-variations-inner a,
.zozo-product-short-view .zozo-product-variations .zozo-product-variations-inner a {
    display: inline-block;
    margin-right: 5px;
    line-height: 40px;
    padding: 0;
    text-align: center;
	font-size: 10px;
}
.single-product .zozo-product-variations,
.zozo-product-short-view .zozo-product-variations {
    position: relative;
    bottom: auto;
    left: auto;
}
.single-product .zozo-product-variations .zozo-product-variations-inner a {
    height: 40px;
    width: 40px;
}
.single-product select#pa_color, .single-product select#pa_size,
.zozo-product-short-view select#pa_color, .zozo-product-short-view select#pa_size {
    display: none !important;
}
.variations label {
    text-transform: capitalize;
}
.single-product .zozo-product-variations > a img,
.zozo-product-short-view .zozo-product-variations > a img {
    border-radius: 50%;
}
.woocommerce-product-gallery.loading:after {
    content: "\e60f";
    font-family: 'themify';
    font-size: 50px;
    position: absolute;
    top: 30%;
    line-height: 12px;
    color: #333;
    left: 50%;
    z-index: 99;
    -webkit-animation: zozospin 2s linear infinite;
    animation: zozospin 2s linear infinite;
    margin-left: -20px;
}
.single-product a.reset_variations,
.zozo-product-short-view a.reset_variations {
    display: block !important;
    padding: 10px 20px;
    border: solid 1px #eaeaea;
    max-width: 100px;
    line-height: 1;
    text-align: center;
    margin-top: 20px;
}
.single-product .zozo-product-variations .zozo-product-variations-inner span.zozo-product-variation {
    display: inline-flex;
    margin-right: 4px;
    margin-left: 4px;
}
.zozo-product-variations-inner > span {
    cursor: pointer;
}
/* 07. Member Login Styles */
.log-form-trigger-wrap img.avatar {
    -webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
    max-height: 22px;
    max-width: 22px;
    vertical-align: middle;
}
.zozo-login-parent {
	position: fixed;
	text-align:left;
	height: 100%; width: 100%;
	background: rgba(0,0,0,0.7);
	left: 0; top: 0;
	opacity:0;
	visibility:hidden;
	z-index: 999999;
	transition: all ease 0.3s;-webkit-transition: all ease 0.3s;-moz-transition: all ease 0.3s;-o-transition: all ease 0.3s;
}
.zozo-login-parent.login-open {
	opacity:1;
	visibility:visible;
}
.zozo-login-inner {
	color: #000;
	max-width:100%;
	background: #fff;
	background-size: cover;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5); -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5); -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5); -ms-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5); -o-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
	height:auto;
	width:650px;
	padding:30px;
	border-radius:10px;
	position: absolute;
	left:0; right:0;
	margin:0 auto;
	top: 50%;
	-o-transform: translateY(-50%) scale(0.1);	-ms-transform: translateY(-50%) scale(0.1);	-moz-transform: translateY(-50%) scale(0.1); -webkit-transform: translateY(-50%) scale(0.1);
	transform: translateY(-50%) scale(0.1);
	transition: all ease 0.5s;-webkit-transition: all ease 0.5s;-moz-transition: all ease 0.5s;-o-transition: all ease 0.5s;
    font-size: 15px;
}
.zozo-login-parent.login-open .zozo-login-inner{
	max-height: 100%;
	overflow-y: auto;
}
.logged-in.log-form-trigger-wrap .log-form-trigger-wrap-inner > img {
    max-height: 40px;
}
.zozo-login-parent.login-open .zozo-login-inner{
	-o-transform: translateY(-50%) scale(1);	-ms-transform: translateY(-50%) scale(1);	-moz-transform: translateY(-50%) scale(1);	-webkit-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
}
.zozo-close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.zozo-close:hover {
  opacity: 1;
}
.zozo-close:before, .zozo-close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}
.zozo-close:before {
  transform: rotate(45deg);
}
.zozo-close:after {
  transform: rotate(-45deg);
}
.zozo-arrow {
	box-sizing: border-box;
	height: 14px;
	width: 14px;
	border-style: solid;
	border-color: #000;
	border-width: 0px 1px 1px 0px;
	transform: rotate(135deg);
	transition: border-width 150ms ease-in-out;
	display: inline-block;
}
.zozo-login-close, .lost-password-close{
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
}
.lost-password-close {
	right: auto;
    left: 20px;
}
.header-top-login .logged-in .author-link{
	 padding:0 10px;
}
.zozo-login-inner h3 {
    margin-bottom: 34px;
    font-size: 19px;
    text-transform: uppercase;
}
.login-form label {
    display: inline;
    font-weight: 600;
    letter-spacing: 1px;
}
.zozo-login-parent input.form-control {
    border: 0;
    border-bottom: 1px solid #dadada;
    margin-bottom: 15px;
    height: 30px;
    line-height: 30px;
    padding: 0;
}
.zozo-login-parent input.form-control:focus {
    background: transparent;
}
.zozo-login-inner .status {
    background: #f7f7f7;
    padding: 0px 10px;
}
.lost-password-form.show{
    background: #fff;
    height: 100%;
    left: 0;
    padding: 12%;
    position: absolute;
    top: 0;
    width: 100%;
}
.move-to-prev-form {
    cursor: pointer;
    font-size: 20px;
    padding: 6px 10px;
	position: absolute;
    left: 20px;
    top: 5px;
}
.zozo-login-inner .close::before, .zozo-login-inner .close::after {
    background-color: #333333;
}
.lost-password-form, .registration-form, .login-form {
	transition: all ease 0.35s;
}
.form-state-hide {
	margin-left: 100px;
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow:hidden;
	transition: all ease 0.35s;
}
.form-state-show {
	margin-left: 0;
	height: auto;
	overflow: visible;
	opacity: 1;
	visibility: visible;
	transition: all ease 0.35s;
}
.login-form-text img {
	max-width: 142px;
    margin: 25px auto;
}
.login-form-text {
    text-align: center;
}
.social-login-wrap {
    padding: 10px 0 0 0;
    text-align: left !important;
}
.social-connect {
    margin-top: 17px;
    position: relative;
    background: #fff;
    z-index: 1;
    text-align: left;
    border-top: 1px solid #e3e3e3;
    padding-top: 10px;
}
.social-login-wrap > div {
	margin-bottom:20px;
}
.social-head{
    font-weight: 600;
    letter-spacing: 1px;
}
.social-login-wrap > div > a {
    font-size: 15px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    text-align: center;
	padding: 8px;
}
a.social-login-trigger.social-google:hover, a.social-login-trigger.social-fb:hover {
    color: #fff;
    box-shadow: 0 1px 20px rgba(0, 0, 0, .4);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
/* Woo Product Single Navigation */
.zozo-woo-product-nav {
    margin: 2em 0;
    display: flex;
    justify-content: space-between;
}
/* Woo Products sales Count */
.wooaddon-sales-count {
    font-weight: bold;
    color: #e74c3c;
    margin-top: 10px;
}
/* Modal Popup */
.zozo-woo-modal-trigger {
    outline: none;
    border: none;
    background-color: #fff;
    color: #000;
    position: relative;
    overflow: hidden;
}

.zozo-woo-modal-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.zozo-woo-modal-trigger:hover,
.zozo-woo-modal-trigger:active,
.zozo-woo-modal-trigger:focus {
    background-color: #fff;
    color: #535353;
}

.zozo-woo-modal-trigger:hover::after,
.zozo-woo-modal-trigger:focus::after {
    width: 100%;
}

.zozo-woo-modal {
    display: none;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Close Button */
.zocommerce .zozo-woo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 7px 12px;
    font-size: 2.2rem;
    font-weight: 200;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}
.zocommerce .zozo-woo-modal-close:hover {
    color: #eb1f1f !important;
}
/* Modal Content */
.zocommerce .zozo-woo-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    width: 40%;
    max-height: calc(100vh - 20%);
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}
.zocommerce .zozo-woo-modal-content::-webkit-scrollbar {
    width: 4px;
}
.zocommerce .zozo-woo-modal-content::-webkit-scrollbar-button {
    display: none;
}
.zocommerce .zozo-woo-modal-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.zocommerce .zozo-woo-modal-content::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .zocommerce .zozo-woo-modal-content {
        width: 60%;
    }
}
@media (max-width: 767px) {
    .zocommerce .zozo-woo-modal-content {
        width: 80%;
    }
}
/* Social Icons */
ul.social-share {
    list-style-type: none; 
    display: inline-block;
}
ul.social-share li a {
    padding: 1rem 1.5rem;
    color: #fff;
    background-color: #000;
    border-radius: 10px;
    width: 40px;
    height: auto;
    display: inline-flex;
    justify-content: center;

}
ul.social-share li a i {
    font-size: 1rem;

}
.no-more-founded {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: 600;
}
/* NEW STYLES FOR WIGETS */
.zozo-list-layout {
	display: flex;
	gap: 20px;
	align-items: center;
}
.zozo-product-left,
.zozo-product-right {
	flex: 1;
}
.woocommerce ul.products li.product-category,
.woocommerce ul.products li.zozo-product-item {
    margin: 0;
}
.star-rating {
    margin: auto;
}
.woocommerce ul.products .owl-item li.zozo-product-item,
.woocommerce ul.products .owl-item li.product-category {
    width: 100%;
}
.zozo-product-fields.zozo-overlay {
	position: relative;
}
/* Overlay Options */
.zocommerce .zozo-product-thumb {
    position: relative;
    overflow: hidden;
}
.zocommerce .zozo-overlay-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
    display: flex;
    flex-direction: column;
	transition: all 0.5s ease;
	opacity: 0;
}

.zocommerce .zozo-product-item:hover .zozo-overlay-wrapper {
    opacity: 1;
}

.zocommerce .zozo-overlay-title,
.zocommerce .zozo-overlay-price,
.zocommerce .zozo-overlay-rating,
.zocommerce .zozo-overlay-buttons {
	margin: 5px 0;
}
.zozo-overlay-title {
    font-size: 2rem;
}
.woocommerce ul.zozo-woo-products-list li.zozo-product-item .zozo-product-enabled .zozo-product-thumb .img-squared {
	object-fit: cover;
	border-radius: 0;
}
.woocommerce ul.zozo-woo-products-list li.zozo-product-item .zozo-product-enabled .zozo-product-thumb .img-rounded {
	border-radius: 8px !important;
}
.woocommerce ul.zozo-woo-products-list li.zozo-product-item .zozo-product-enabled .zozo-product-thumb .img-rounded-circle {
	border-radius: 50% !important;
	object-fit: cover;
}
/* Overwriting Woocommerce for layout */
ul.products {
    display: flex;
    flex-wrap: wrap;
}
.zozo-pagination-button {
    padding: 10px 20px;
    border-radius: 10px;
}
.zozo-pagination-button:hover,
.zozo-load-more-button:hover {
    box-shadow: 2px 3px 5px -1px rgb(0, 0, 0, 0.3);
}
.zozo-load-more-button {
    padding: 5px 10px;
}
.woocommerce ul.owl-carousel .owl-item li.product,
.woocommerce-page ul.owl-carousel .owl-item li.product {
    padding: 0;
}
.zozo-product-thumb .img-rounded {
    border-radius: 10px;
}
.zozo-product-thumb .img-rounded-circle {
    border-radius: 50%;
}
.zozo-product-thumb .img-squared {
    border-radius: 0;
}
/* Isotope Styles */
.isotope {
    width: auto;
}
.isotope .isotope-item {
    float: left;
    min-height: 1px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.35s;
}
.isotope .isotope-item.item-visible {
    opacity: 1;
    visibility: visible;
}
.infinite-load>.post-pagination-wrap {
    display: none;
}
.isotope #infscr-loading {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
.isotope #infscr-loading>img {
    max-width: 100px;
    transition: all ease 0.35s;
}
@keyframes isotopeFadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
@-webkit-keyframes isotopeFadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
.isotope-animate {
    opacity: 0;
    visibility: hidden;
}
.isotope-animate.run-animate {
    opacity: 1;
    visibility: visible;
    animation-duration: 0.7s;
    animation-name: isotopeFadeInUp;
}

.zocommerce .zozo-woo-products-masonry .mini-masonry {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.zocommerce .zozo-woo-products-masonry .mini-masonry li {
    display: block;
    margin: 0;
}
.zocommerce .zozo-woo-product-slider .woocommerce ul.products,
.zocommerce .zozo-category-slider .woocommerce ul.products {
    margin: 0;
}

/* Slider Styles */
.zocommerce .woocommerce .owl-carousel .owl-dots button.owl-dot {
    background-color: #000;
    width: 10px;
    height: 10px;
    margin: 0 10px;
}
.zocommerce .woocommerce .owl-carousel .owl-nav .owl-prev,
.zocommerce .woocommerce .owl-carousel .owl-nav .owl-next {
    background-color: #000;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}
.zocommerce .woocommerce .owl-carousel .owl-nav .owl-prev {
    left: 0;
}
.zocommerce .woocommerce .owl-carousel .owl-nav .owl-next {
    right: 0;
}
.zocommerce .woocommerce .owl-carousel .owl-nav .owl-prev span,
.zocommerce .woocommerce .owl-carousel .owl-nav .owl-next span {
    margin: 15px;
    font-size: 4rem;
    line-height: 30px;
}
.zocommerce .zozo-product-short-view {
    padding: 45px 45px 45px;
    background-color: #fff;
    width: 50%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .12) rgba(0, 0, 0, .05);
}

.zocommerce .mfp-close-btn-in .mfp-close{
    color: #fff;
    background-color: #000000;
}
.zocommerce .mfp-close-btn-in .mfp-close:hover{
    color: #fff;
    background-color: #ff0000;
}

div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
    width: 25%;
    display: inline-block
}
.woocommerce .zozo-owl-related .related.products ul.products li.product {
    width: 100%;
}
    margin: 50px auto;
    max-width: 80%;
    background: #fff;
    padding: 15px;
    position: relative;
}
.zozo-woo-addon .mfp-close-btn-in .mfp-close{
    color: #fff;
    background-color: #000000;
}
.zozo-woo-addon .mfp-close-btn-in .mfp-close:hover{
    color: #fff;
    background-color: #ff0000;
}