/* general style */
.zank-product-labels {
	display: flex;
	align-items: flex-start;
	z-index: 2;
}
.zank-loop-product .zank-product-labels {
	position: absolute;
	top: 10px;
	left: 10px;
	flex-direction: column;
}
.zank-summary-item .zank-label + .zank-label{
	margin-left: 10px;
}

.zank-loop-product .zank-product-labels>span:not(:last-child) {
	margin-bottom: 5px;
}

.zank-product-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.zank-product-button:hover,
.zank-product-button:hover svg {
    color: var(--zank-dark-soft);
    background: none;
    fill: var(--zank-dark-soft);
}

.woosc-btn.woosc-btn-added:before {
    content: none;
}

.zank-product-button.woosc-btn-added svg {
    fill: var(--zank-green);
}

.zank-product-button.added svg {
    fill: var(--zank-green);
}


.ajax_add_to_cart.loading,
.zank-btn.ajax_add_to_cart.loading {
	pointer-events: none;
}

.swiper-slide.style-bordered .zank-loop-product {
    border: 1px solid var(--zank-gray);
    padding: 5px;
    border-radius: 4px;
}
.section-custom-categories.style-bordered .row {
    border-top: 1px solid var(--zank-gray);
    border-left: 1px solid var(--zank-gray);
    border-radius: 4px;
    margin-bottom: 0;
    border-right: 0;
    overflow: hidden;
    margin-left: calc(0.5 * var(--bs-gutter-x));
    margin-right: calc(0.5 * var(--bs-gutter-x));
}
.section-custom-categories.style-bordered .zank-loop-product {
    border-right: 1px solid var(--zank-gray);
    border-bottom: 1px solid var(--zank-gray);
    padding: calc(var(--bs-gutter-x) * 0.5);
}
.section-custom-categories.style-bordered .zank-product-loop-inner {
    margin-bottom: 0px;
}
.zank-product-loop-inner .zank-out-of-stock {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--zank-red-bg);
    font-size: 11px;
    color: var(--zank-red);
    padding: 0 10px;
    font-weight: 600;
}
.zank-product-extra-features {
    list-style: none;
    font-size: 10px;
    margin-top: 5px;
    line-height: normal;
    padding: 0;
}
.zank-product-extra-features li {
    display: flex;
}
.zank-product-extra-features li .checked {
    color: var(--ninetheme-green);
    margin-right: 3px;
}
/* general style */


/* product type 1 */
.zank-product-loop-inner {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.zank-product-loop-inner .zank-primary-color.del span {
    color: var(--zank-red);
}
.swiper-slide .zank-product-loop-inner {
    margin-bottom: 0;
}
.zank-product-loop-inner .zank-product-thumb {
    margin-bottom: 20px;
    position: relative;
    display: block;
    overflow: hidden;
}
.zank-transform-replace {
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
    -moz-transition: all ease 0.25s;
    -webkit-transition: all ease 0.25s;
    -o-transition: all ease 0.25s;
    -ms-transition: all ease 0.25s;
    transition: all ease 0.25s;
}
.zank-product-loop-inner .position-center-inline {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-80%);
    transform: translateX(-50%) translateY(-80%);
    display: flex;
}
.zank-product-loop-inner:hover .position-center-inline {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.zank-product-loop-inner .zank-svg-icon {
    max-width: 20px;
    max-height: 20px;
}
.zank-product-loop-inner .zank-product-button {
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    position: relative;
}
.zank-product-loop-inner:hover .zank-product-button {
    background-color: var(--zank-light);
	-moz-transition: all .25s cubic-bezier(.25,.46,.45,.94);
	-o-transition: all .25s cubic-bezier(.25,.46,.45,.94);
	-webkit-transition: all .25s cubic-bezier(.25,.46,.45,.94);
	transition: all .25s cubic-bezier(.25,.46,.45,.94);
}
.zank-product-loop-inner .zank-product-button + .zank-product-button {
    margin-left: 5px;
}
.zank-product-name {
    margin: 0;
}
.show-on-mobile {
	margin: 0;
    margin-top: 5px;
}
.zank-product-loop-inner .zank-product-buttons,
.zank-product-type-2 .zank-product-cart,
.zank-product-type-3 .zank-product-details,
.zank-transform-replace .zank-product-name,
.zank-transform-replace .zank-product-cart {
	-moz-transition: all .25s cubic-bezier(.25,.46,.45,.94);
	-o-transition: all .25s cubic-bezier(.25,.46,.45,.94);
	-webkit-transition: all .25s cubic-bezier(.25,.46,.45,.94);
	transition: all .25s cubic-bezier(.25,.46,.45,.94);
}
.zank-product-loop-inner:hover .zank-transform-replace .zank-product-name {
	opacity: 0;
	-moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.zank-product-loop-inner .zank-product-thumb img {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: center center;
    -moz-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -o-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -webkit-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
}
.zank-product-loop-inner:hover .zank-product-thumb img {
	-moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transform-origin: center center;
	-moz-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -o-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -webkit-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
}
.zank-product-type-2 .zank-product-cart {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    opacity: 0;
}
.zank-product-loop-inner:hover .zank-transform-replace .zank-product-cart {
    top: 0;
    opacity: 1;
}

/* product type 1 */

/* product type 2 */
.zank-product-thumb-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}
.zank-product-loop-inner .zank-product-thumb {
    margin-bottom: 0;
}

.zank-product-loop-inner .zank-product-thumb img {
	-moz-transition: all .5s cubic-bezier(.25, .46, .45, .94);
	-o-transition: all .5s cubic-bezier(.25, .46, .45, .94);
	-webkit-transition: all .5s cubic-bezier(.25, .46, .45, .94);
	transition: all .5s cubic-bezier(.25, .46, .45, .94);
}

.zank-product-loop-inner .zank-product-thumb img {
	width: 100%;
}

.zank-product-type-1 .zank-product-cart,
.zank-product-loop-inner .zank-btn + .added_to_cart{
    position: absolute;
    width: 100%;
    bottom: 0;
	opacity: 0;
	-moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}
.zank-product-loop-inner:hover .zank-product-cart,
.zank-product-loop-inner:hover .zank-btn + .added_to_cart{
	opacity: 1;
	-moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
.zank-product-type-1 .zank-product-name,
.zank-product-type-3 .zank-product-name {
    margin-bottom: 10px;
}
.zank-product-loop-inner .added_to_cart {
    display: none;
}
.zank-product-loop-inner .zank-btn + .added_to_cart.wc-forward:before {
    content: "\f111";
    font-family: 'ninetheme-font';
    font-size: 18px;
}
.zank-product-loop-inner .zank-btn.added {
    max-width: calc(100% - 50px);
}
.zank-product-loop-inner .zank-btn + .added_to_cart {
    font-size: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 34px;
    background: var(--zank-primary);
    color: var(--zank-light);
}
.zank-product-loop-inner .zank-btn + .added_to_cart:hover {
    background: var(--zank-secondary);
}

.zank-product-type-1 .zank-product-button.woosc-btn-added {
	background: var(--zank-dark);
}

.zank-product-type-1 .zank-product-button.woosc-btn-added svg {
	color: #fff;
	fill: #fff;
}

/* product type 2 */

/* product type 3 */
.zank-product-type-3 .zank-product-cart {
    margin-top: 15px;
    width: 100%;
}
.zank-product-type-3 .star-rating,
.zank-product-type-3 .star-rating>span::before {
    font-size: 9px;
}
.zank-product-type-3 .zank-btn.added + .added_to_cart {
    opacity: 1;
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
/* product type 3 */

/* product type 4 */
.zank-product-type-4 {
    border: 1px solid var(--zank-border);
    padding: 15px;
    border-radius: 4px;
}
.zank-product-type-4 .zank-product-cart {
    margin: 10px 0 0;
}
.zank-product-type-4 .zank-btn {
    width: 100%;
}
.zank-product-type-4 .zank-product-labels {
    top: 15px;
    left: 15px;
}
/* product type 4 */

/* product type list */
.loop-list-item {
    position: relative;
    padding: 15px;
    border: 1px solid var(--zank-gray);
    -webkit-box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    box-shadow: 1px 2px 4px rgba(33, 37, 41, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.loop-list-item .list-product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    z-index: 1;
}

.loop-list-item .thumb-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.loop-list-item .product-link {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--zank-gray);
}

.loop-list-item:hover .thumb-wrapper img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transform-origin: center center;
    -moz-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -o-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    -webkit-transition: all .5s cubic-bezier(.25,.46,.45,.94);
    transition: all .5s cubic-bezier(.25,.46,.45,.94);
}

.loop-list-item .zank-label + .zank-label {
    margin-top: 5px;
}

.loop-list-item .zank-product-button {
    background-color: var(--zank-light);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loop-list-item .zank-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}
.loop-list-item .added_to_cart.wc-forward {
    display: none;
}

.loop-list-item .thumb-wrapper .zank-product-button + .zank-product-button {
    margin-top: 5px;
}

.loop-list-item .zank-svg-icon {
    max-width: 16px;
    max-height: 16px;
}

.loop-list-item svg {
    fill: var(--zank-dark);
}

.loop-list-item .stock-progress {
    height: 8px;
    width: 100%;
    background: var(--zank-gray);
    border-radius: 10px;
    overflow: hidden;
}

.loop-list-item .stock-progressbar {
    background: var(--zank-red);
    height: 100%;
}

.loop-list-item .stock-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    line-height: 1;
    margin-top: 10px;
    font-size: 12px;
}

.loop-list-item .status-value {
    font-weight: bold;
    color: var(--zank-dark);
}

.loop-list-item .list-part {
    margin: 0;
    line-height: 1;
}

.loop-list-item .list-part + .list-part {
    margin-top: 15px;
}

.loop-list-item .product-details {
    font-size: 14px;
    line-height: inherit;
}

.loop-list-item .rating {
    text-align: center;
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.loop-list-item .rating a {
    pointer-events: none;
}

.loop-list-item .thumb-wrapper .list-buttons {
    position: absolute;
    top: 45px;
    right: 10px;
}

.loop-list-item .cr-qna-link,
.loop-list-item .cr-qna-separator{
    display: none;
}

.gradient-bg .time-count {
    width: 34px;
    height: 34px;
    color: var(--zank-light);
    border-radius: var(--zank-border-radius);
	background: var(--zank-gradient-1);
}
.zank-hint {
    display: none;
    visibility: hidden;
    opacity: 0;
}
@media(min-width:1024px){
    .page-loaded .zank-hint {
        display: flex;
    }
    .zank-hint {
        align-items: center;
        justify-content: center;
        background-color: var(--zank-primary);
        color: var(--zank-light);
        font-size: 12px;
        line-height: 1;
        position: absolute;
        top: -25px;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        white-space: nowrap;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        padding: 8px 9px 8px 9px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        box-shadow: 0 7px 15px rgba(0,0,0,.3);
        -webkit-transition: .3s ease;
        -moz-transition: .3s ease;
        transition: .3s ease;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        transition-delay: 0s;
    }
    .zank-hint:before {
        content: '';
        border: 5px solid transparent;
        border-top-color: var(--zank-primary);
        position: absolute;
        bottom: -10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .zank-product-button:hover .zank-hint,
    .zank-term:hover .zank-hint {
        visibility: visible;
        opacity: 1;
        top: -35px;
        -webkit-transition-delay: .1s;
        -moz-transition-delay: .1s;
        transition-delay: .1s;
    }
    .hint-left span.zank-hint {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    .hint-left .zank-hint:before {
        content: '';
        border-color: transparent;
        border-left-color: var(--zank-primary);
        bottom: auto;
        top: 50%;
        right: -10px;
        left: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .hint-left .zank-product-button:hover .zank-hint {
        visibility: visible;
        opacity: 1;
        top: 50%;
        right: calc(100% + 10px);
        -webkit-transition-delay: .1s;
        -moz-transition-delay: .1s;
        transition-delay: .1s;
    }
	.show-on-mobile {
		display: none;
	}
}

@media(min-width:992px){
    .loop-list-item .list-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .loop-list-item .thumb-wrapper {
        margin: 0px;
        flex: 0 0 40%;
        max-width: 40%;
    }
    .loop-list-item .details-wrapper {
        flex: 0 0 60% ;
        padding-left: 20px;
    }
    .loop-list-item .stock-details {
        font-size: 14px;
    }
    .loop-list-item .thumb-wrapper .list-buttons {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -moz-transition: all .25s cubic-bezier(.25,.46,.45,.94);
        -o-transition: all .25s cubic-bezier(.25,.46,.45,.94);
        -webkit-transition: all .25s cubic-bezier(.25,.46,.45,.94);
        transition: all .25s cubic-bezier(.25,.46,.45,.94);
        z-index: 2;
    }
    .loop-list-item:hover .thumb-wrapper .list-buttons {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@media(min-width:768px){
    .loop-list-item {
        padding: 20px;
    }
}
/* product type list */

@media(max-width:1024px) {
    .zank-product-type-1 .zank-product-cart {
        opacity: 1;
        visibility: visible;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
    }
    .zank-product-type-1 .zank-btn.added {
        max-width: calc(100% - 50px);
    }
    .zank-product-type-1 .zank-btn.added + .added_to_cart {
        opacity: 1;
        -moz-transform: tnone;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
	.zank-product-type-1 .zank-product-button,
	.zank-product-type-2 .zank-product-button,
	.zank-product-type-3 .zank-product-button {
	    background-color: var(--zank-light);
	}
    .zank-product-loop-inner .position-center-inline {
        position: absolute;
        top: 10px;
        left: calc(100% - 40px);
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        transform: none;
        display: flex;
        flex-direction: column;
    }
    .zank-product-loop-inner .position-center-inline .zank-product-button + .zank-product-button {
        margin: 0;
        margin-top: 5px;
    }
	.zank-product-type-3 .zank-inline-two-block {
	    flex-wrap: wrap;
	    flex-direction: column;
	    align-items: flex-start;
	}
	.zank-product-loop-inner:hover .position-center-inline,
    .zank-product-loop-inner:hover .zank-transform-replace .zank-product-name {
        opacity: 1;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    .zank-product-loop-inner:hover .zank-transform-replace .zank-product-cart {
        top: 100%;
        opacity: 0;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
    }
    .zank-product-loop-inner .zank-product-button {
        width: 30px;
        height: 30px;
        border-radius: 30px;
    }
    .zank-product-loop-inner .zank-svg-icon {
        max-width: 16px;
        max-height: 16px;
        width: 16px;
        height: 16px;
    }
    .zank-product-loop-inner .zank-btn:not(.type-widget) {
        min-width: auto;
    }
	.zank-transform-replace .zank-product-cart {
		display: none;
	}
}
.zank-minicart.loading:after,
.zank_ajax_add_to_cart.loading:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    transition: opacity .2s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid var(--ninetheme-light);
    border-left-color: var(--ninetheme-primary);
    border-radius: 50%;
    vertical-align: middle;
    animation: zank-rotate 450ms infinite linear;
}
/* ajax loading */
@keyframes zank-rotate {
	100% {
		transform: rotate(360deg);
	}
}
/* product type 3 */
