/* --------------------------------------------------------------------
* 
* Template:		Tank - Creative Portfolio WordPress Theme
* Author:		webRedox
* URL:			https://webredox.net/
*
-------------------------------------------------------------------- */


/* Table of Content
====================
* Custom scrollbar style
* Shop grid (product list)
* Shop tt-Product
* Shop single product
* Shop tt-Product carousel
* Shop sidebar filter widgets
* Shop sliding cart
* Shop shopping cart (page)
* Shop checkout
* Shop order details (thank you page)
* Shop wishlist
* Shop login/register/reset password
*/ 



/* ------------------------------------------------------------- *
 * Shop grid (product list)
/* ------------------------------------------------------------- */

#shop-grid {
	position: relative;
}


/* Shop grid header
==================== */
.shop-grid-header {
	position: relative;
}
body.tt-boxed .tt-wrap .shop-grid-header {
	padding-left: 15px;
	padding-right: 15px;
}

/* Shop grid count */
.shop-grid-count {
	display: flex;
	height: 100%;
	font-size: 16px;
	color: #999;
	align-items: center;
}
@media (max-width: 767px) {
	.shop-grid-count {
		padding-bottom: 20px;
	}
}


/* Shop grid toolbox 
===================== */
.shop-grid-toolbox {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
@media (max-width: 767px) {
	.shop-grid-toolbox {
		justify-content: space-between;
	}
}

.shg-toolbox-item {
	margin-right: 25px;
	font-size: 16px;
	color: #999;
}
.shg-toolbox-item:last-child {
	margin-right: 0;
}
.shg-toolbox-item .tt-form-control {
	font-size: 16px;
	color: #999;
}
.shg-toolbox-item .tt-form-control:not(textarea):not([size]) {
    height: 40px;
}

/* Shop grid per page */
form.shop-grid-per-page .tt-form-group {
	display: flex;
	align-items: center;
	margin: 0;
}
form.shop-grid-per-page .tt-form-group label {
	margin-right: 15px;
}

/* Shop grid ordering */
form.shop-grid-ordering select.tt-form-control {
	max-width: 260px;
}
form.shop-grid-ordering label.sgpp-mobile-label {
	display: none;
}
form.shop-grid-ordering .tt-form-group {
	margin: 0;
	padding: 0;
}
@media (max-width: 1024px) {
	form.shop-grid-ordering {
		display: flex;
		align-items: center;
	}
	form.shop-grid-ordering label.sgpp-mobile-label {
		display: block;
		margin: 0 5px 0 0;
		padding: 0;
	}
	form.shop-grid-ordering .tt-form-group {
		position: relative;
		width: 40px;
		height: 40px;
		overflow: hidden;
	}
	form.shop-grid-ordering .tt-form-group:after {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		line-height: 1;
		font-size: 19px;
		color: #999;
		pointer-events: none;
		transform: rotate(90deg);

		font-family: "Font Awesome 5 Free";
		content: "\f362";
		font-weight: 900;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
	}
	form.shop-grid-ordering select.tt-form-control {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		height: auto !important;
		padding: 0 !important;
		margin: 0 !important;
		background-image: none !important;
		color: transparent !important;
		font-weight: 400 !important;
		font-size: 16px !important;
		outline: none !important;
		box-shadow: none !important;
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
	}
}


/* Shop grid tt-Product
======================== */
@media (max-width: 768px) {
	#shop-grid .tt-product {
		margin-bottom: 12%;
	}
}


/* Shop grid columns
===================== */
@media (max-width: 767px) and (min-width: 380px) {
	body.tt-boxed .tt-wrap #shop-grid .tt-grid {
		margin-left: -12px;
		margin-right: -12px;
	}
	#shop-grid .tt-grid .tt-grid-item {
		width: 50%;
	}
	#shop-grid .tt-grid .ttgr-item-inner {
		margin: 0 2vw 6vw 2vw;
	}
}


/* ------------------------------------------------------------- *
 * Shop tt-Product
/* ------------------------------------------------------------- */

.tt-product {
	position: relative;
}

/* Shop product image
====================== */
.tt-product-image-holder {
	position: relative;
	overflow: hidden;
}
.tt-product-image-wrap {
	display: block;
}
.tt-product-image-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tt-product-image {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.tt-product-hover-image {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.tt-product-hover-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-product-image-holder:hover .tt-product-image {
	opacity: 0;
	visibility: hidden;
}
.tt-product-image-holder:hover .tt-product-hover-image {
	opacity: 1;
	visibility: visible;
}


/* Shop product image fixed heights
==================================== */
/* Image fixed height (landscape) */
.ttp-fixed-height .tt-product-image-wrap {
	padding-bottom: 100%;
}
.ttp-fixed-height .tt-product-image,
.ttp-fixed-height .tt-product-image .anim-zoomin-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* Image fixed height (portrait) */
.ttp-fixed-height-portrait .tt-product-image-wrap {
	padding-bottom: 140%;
}
.ttp-fixed-height-portrait .tt-product-image,
.ttp-fixed-height-portrait .tt-product-image .anim-zoomin-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}


/* Shop product padges
======================= */
.tt-product-padges {
	position: absolute;
	top: 15px;
	left: 0px;
	z-index: 2;
}
.pr-padge {
	background-color: #323232;
	margin-bottom: 5px;
	padding: 5px;
	font-size: 14px;
	color: #FFF;
	line-height: 1;
}
@media (max-width: 768px) {
	.tt-product-padges {
		top: 5px;
	}
	.pr-padge {
		margin-bottom: 3px;
		padding: 2px 5px;
		font-size: 13px;
	}
}

/* Sale padge */
.pr-padge.pr-sale-padge {
	background-color: #519506;
}

/* New padge */
.pr-padge.pr-new-padge {
	background-color: #1c5376;
}

/* Hot padge */
.pr-padge.pr-hot-padge {
	background-color: #950606;
}


/* Shop product out of stock
============================= */
.tt-product-out-of-stock {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgb(0 0 0 / 50%);
	text-align: center;
	padding: 15px 5px;
	font-size: 16px;
	color: #FFF;
	z-index: 2;
}


/* Shop product additional buttons
=================================== */
.tt-product-additional-buttons {
	position: absolute;
	display: block;
	top: 15px;
	right: 12px;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .3s ease-in-out;
	transform: translate3d(10px, 0, 0);
}
.tt-product:hover .tt-product-additional-buttons {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}
.tt-product-additional-buttons .tt-pab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #0a0a0a;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 500;
	color: #FFF;
	line-height: 1;
	pointer-events: initial;
	border-radius: 100px;
	transition: background-color .2s ease-in-out;
}
.tt-product-additional-buttons .tt-pab-btn:hover {
	background-color: #4c2122;
}

.tt-pr-addit-btn-wrap {
}
.tt-add-to-wishlist-btn {
}
.tt-add-to-compare-btn {
}
.tt-pr-addit-btn-wrap.active .tt-add-to-wishlist-btn,
.tt-pr-addit-btn-wrap:not(.active) .tt-add-to-wishlist-btn-active,
.tt-pr-addit-btn-wrap.active .tt-add-to-compare-btn,
.tt-pr-addit-btn-wrap:not(.active) .tt-add-to-compare-btn-active {
	display: none;
}
.tt-add-to-wishlist-btn-filled span,
.tt-add-to-wishlist-btn-filled:hover span {
}
.tt-add-to-compare-btn-filled span,
.tt-add-to-compare-btn-filled:hover span {
}


/* Shop product info
===================== */
.tt-product-info {
	position: relative;
	width: 100%;
	padding-top: 15px;
}
.tt-product-categories {
}
.tt-product-category {
	display: inline-block;
	font-size: 13px;
	color: #888;
}

/* Shop product title */
.tt-product-title {
	margin: 0 0 15px 0;
	font-size: 21px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
body.tt-sidebar-on .tt-product-title {
	font-size: 18px;
}
@media (max-width: 767px) {
	.tt-product-title,
	body.tt-sidebar-on .tt-product-title {
		margin-bottom: 8px;
		font-size: 16px;
	}
}
.tt-product-title a {
}
.tt-product-title a:hover {
	opacity: .8;
}

/* Shop product info rating */
.tt-product-info .tt-product-rating {
	margin: 0 0 15px 0;
}
@media (max-width: 767px) {
	.tt-product-info .tt-product-rating {
		margin-bottom: 8px;
	}
}
.tt-product-info .tt-product-rating-stars {
	font-size: 13px;
	color: #999;
}
.tt-product-info .tt-product-rating-stars .far {
	color: #999;
}

/* Shop product rating stars */
.tt-product-rating-stars {
	font-size: 13px;
	color: #ededed;
}
.tt-product-rating-stars .far {
	color: #706f6c;
}

/* Shop product price/buttons wrap */
.tt-pi-price-btn-wrap {
	position: relative;
	font-size: 16px;
	line-height: 1.4;
	overflow: hidden;
}
@media (max-width: 767px) {
	.tt-pi-price-btn-wrap {
		font-size: 15px;
	}
}

/* Shop product price*/
.tt-product-price {
	transform: translate3d(0, 0, 0);
	transition: all .2s ease-in-out;
}
.tt-product:hover .tt-product-price {
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, -10px, 0);
}
.tt-product-price .pp-current-price {
	text-decoration: none;
}
.tt-product-price .pp-old-price {
	text-decoration: line-through;
	color: #999;
}

/* Shop product buttons */
.tt-product-buttons {
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	padding-bottom: 3px;
	font-size: 14px;
	transform: translate3d(0, 10px, 0);
	transition: all .2s ease-in-out;
}
.tt-product:hover .tt-product-buttons {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}
.tt-product-btn {
	position: relative;
	padding-bottom: 3px;
	line-height: 1;
}
.tt-product-btn::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #FFF;
	transition: width .3s ease-in-out;
	transition-delay: 0.1s;
}
.tt-product:hover .tt-product-btn::after {
	width: 100%;
}

.tt-product-adc-btn,
.tt-product-sel-opt-btn {
 	padding-left: 20px;
}
.tt-product-adc-btn span::before,
.tt-product-adc-btn span::after,
.tt-product-sel-opt-btn span::before {
	position: absolute;
	top: 3px;
	left: 0;

	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.tt-product-adc-btn span::before { /* "Add to cart" icon */
	content: "\f07a";
}
.tt-product-adc-btn span::after { /* Loading spinner (disabled by default) */
	content: "\f110";
	display: none;
	opacity: .8;
}
.tt-product-adc-btn.loading span::before {
	display: none;
}
.tt-product-adc-btn.loading span::after {
	display: inline-block;
	animation: adc-btn-spin 1s infinite linear;
}
@keyframes adc-btn-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.tt-product-sel-opt-btn span::before { /* "Select options" icon */
	content: "\f06e";
}


/* Shop product info inside
============================ */
.ttp-info-inside .tt-product-info {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 7%;
	z-index: 9;

	background: rgb(13,13,13);
	background: -moz-linear-gradient(0deg, rgba(13,13,13,1) 0%, rgba(13,13,13,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(13,13,13,1) 0%, rgba(13,13,13,0) 100%);
	background: linear-gradient(0deg, rgba(13,13,13,1) 0%, rgba(13,13,13,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d0d0d",endColorstr="#0d0d0d",GradientType=1);
}


/* ------------------------------------------------------------- *
 * Shop single product
/* ------------------------------------------------------------- */

/* Single product image (no slider)
========================= */
.sps-single-image {
	position: relative;
}


/* Single product slider
========================= */
.single-product-slider-wrap {
	position: relative;
	z-index: 1;
}

.single-product-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Single product slider image */
.sps-image {
	display: block;
	line-height: 0;
}
.sps-image > img {
	width: 100%;
	height: auto;
}


/* Single product slider thumbnails 
==================================== */
.single-product-slider-thumbs {
	position: relative;
	height: 20%;
	padding: 15px 0;
}

/* Single product slider thumbnail */
.single-product-slider-thumbs .sps-thumb {
	position: relative;
	height: auto;
	cursor: pointer;
	opacity: .4;
	transition: 0.2s ease-in-out;
}
.single-product-slider-thumbs .sps-thumb::before {
	content: "";
	display: block;
	width: 100%;
	padding-bottom: 100%;
}
.single-product-slider-thumbs .sps-thumb:hover {
	opacity: 1;
}
.single-product-slider-thumbs .swiper-slide-thumb-active .sps-thumb {
	opacity: 1;
}

.single-product-slider-thumbs .sps-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Single product slider navigation arrows
=========================================== */
.sps-nav-prev,
.sps-nav-next {
	position: absolute;
	top: 50%;
	z-index: 20;
	transform: translateY(-50%)
}
.sps-nav-prev {
	left: 0;
}
.sps-nav-next {
	right: 0;
}

.sps-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	font-size: 18px;
	color: #FFF;
	cursor: pointer;
	outline: none;
}
.sps-arrow-prev::after,
.sps-arrow-next::after {
	line-height: 0;

	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.sps-arrow-prev::after {
	content: "\f053";
}
.sps-arrow-next::after {
	content: "\f054";
}

.sps-arrow.sps-arrow-disabled {
	display: none;
}

.tt-portfolio-carousel .swiper-button-lock {
	display: none;
}

/* Nav arrows on hover */
@media (min-width: 992px) {
	.sps-nav-prev,
	.sps-nav-next {
		opacity: 0;
		visibility: hidden;
		transition: 0.3s ease-in-out;
	}
	.single-product-slider-wrap:hover .sps-nav-prev,
	.single-product-slider-wrap:hover .sps-nav-next {
		opacity: 1;
		visibility: visible;
	}
}

/* Nav arrows in slider thumbs */
.single-product-slider-thumbs .sps-arrow {
	width: 40px;
	height: 40px;
}


/* Single product padges 
========================= */
.single-product-padges {
	position: absolute;
	top: 15px;
	left: 0px;
	z-index: 2;
}
.sp-padge {
	background-color: #323232;
	margin-bottom: 5px;
	padding: 5px 10px;
	font-size: 16px;
	color: #FFF;
}
@media (max-width: 768px) {
	.single-product-padges {
		top: 5px;
	}
	.sp-padge {
		margin-bottom: 3px;
		padding: 2px 5px;
		font-size: 13px;
	}
}

/* Sale padge */
.sp-padge.sp-sale-padge {
	background-color: #519506;
}

/* New padge */
.sp-padge.sp-new-padge {
	background-color: #111;
}

/* Hot padge */
.sp-padge.sp-hot-padge {
	background-color: #950606;
}


/* Single product summary 
========================== */
.single-product-summary {
	padding: 0 0 0 5%;
	font-size: 16px;
}
@media (max-width: 1500px) {
	.single-product-summary {
		padding: 0 4% 0 4%;;
	}
}
@media (max-width: 991px) {
	.single-product-summary {
		padding: 8% 4% 0 4%;
	}
}

/* Single product title */
.single-product-title {
	margin: 0 0 30px 0;
	font-size: clamp(32px, 3vw, 42px);
}

/* Single product price */
.single-product-price {
	padding-top: 5px;
	font-size: 28px;
	line-height: 1;
	overflow: hidden;
}
.single-product-current-price {
	float: left;
	margin: 0 5px 0 0;
	text-decoration: none;
}
.single-product-old-price {
	float: left;
	margin-top: 5px;
	text-decoration: line-through;
	font-size: 70%;
	color: #999;
}

/* Single product availability */
.single-product-availability {
	margin-top: 10px;
}
.single-product-availability .spa-in-stock {
	color: #529706;
}
.single-product-availability .spa-out-of-stock {
	color: #c31111;
}

/* Single product short description */
.single-product-short-description {
	margin-top: 40px;
}
.single-product-short-description p {
	margin-bottom: 15px;
}

/* Single product form */
.single-product-form {
	margin-top: 50px;
	margin-bottom: 50px;
}

/* Single product variations */
.single-product-variations {
	position: relative;
	max-width: 100%;
	margin-bottom: 40px;
}
.single-product-variations .tt-form-control:not(textarea):not([size]) {
	height: 50px;
	font-size: 16px
}
.single-product-variations .tt-form-group {
	margin: 0 0 15px 0;
}
.single-product-form.tt-form-minimal .single-product-variations .tt-form-group {
	margin: 0 0 25px 0;
}
.single-product-variations .tt-form-group label {
	font-weight: normal;
	font-size: 16px
}
.single-product-variations .tt-form-group:first-child label {
	padding-right: 50px;
}

/* Single product add to cart container */
.single-product-add-to-cart {
	display: flex;
}
@media (max-width: 420px) {
	.single-product-add-to-cart {
		flex-direction: column;
	}
}

/* Single product quantity */
.single-product-quantity {
	position: relative;
	max-width: 95px;
	height: 50px;
	overflow: hidden;
	border-radius: 3px;
}
.qtybutton.inc,
.qtybutton.dec {
	position: absolute;
	right: 0;
	width: 40px;
	height: 50%;
	line-height: 25px;
	background-color: #404040;
	text-align: center;
	font-size: 16px;
   font-weight: 500;
	color: #FFF;
	cursor: pointer;
	z-index: 2;
	user-select: none;
}
.qtybutton.inc {
	top: 0;
}
.qtybutton.dec {
	bottom: 0;
} 

.qtybutton.inc:hover, 
.qtybutton.dec:hover {
	background-color: #4c4c4c;
}

input.cart-plus-minus-box {
	width: 100%;
	height: 100%;
	background-color: #2c2c2c;
	text-align: center;
	font-size: 16px;
	color: #FFF;
	z-index: 1;
	border: none;
	transform: translateX(-20px);
}
input.cart-plus-minus-box:focus {
	outline: none;
}

/* Hide arrows from input number */
input.cart-plus-minus-box::-webkit-outer-spin-button,
input.cart-plus-minus-box::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.cart-plus-minus-box[type=number] {
  -moz-appearance: textfield;
} 

/* Single product add to cart button */
.single-product-adc-button {
	padding-left: 20px;
}
@media (min-width: 992px) {
	.single-product-adc-button {
		width: 100%;
	}
}
@media (max-width: 420px) {
	.single-product-adc-button {
		width: 100%;
		margin-top: 20px;
		padding-left: 0;
	}
}

.sp-adc-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	background-color: #4c2122;
	padding: 0 40px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	font-weight: 500;
	color: #FFF;
	overflow: hidden;
	cursor: pointer;
	border: none;
	border-radius: 100px;
	z-index: 9;
}
.sp-adc-btn.disabled { /* If disabled */
	opacity: .6;
	pointer-events: none;
}

.sp-adc-btn-text {
	position: relative;
	transform: translate3d(0, 0, 0);
	transition: transform 0.3s;
}
.sp-adc-btn-text,
.sp-adc-btn-text::after {
	display: flex;
	align-items: center;
	height: 100%;
	line-height: 1;
}
.sp-adc-btn-text::after {
	position: absolute;
	content: attr(data-hover);
	top: 100%;
	left: 0;
	width: 100%;
}
.sp-adc-btn:hover .sp-adc-btn-text {
	transform: translate3d(0, -100%, 0);
}

.sp-adc-btn-icon {
	position: relative;
	display: inline-flex;
	width: 24px;
	height: 24px;
}
.sp-adc-btn-icon::before, 
.sp-adc-btn-icon::after {
	position: absolute;
	top: 3px;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.sp-adc-btn-icon::before { /* "Add to cart" icon */
	content: "\f07a";
}
.sp-adc-btn-icon::after { /* Loading spinner (disabled by default) */
	content: "\f110";
	display: none;
	opacity: .8;
}
.sp-adc-btn.loading .sp-adc-btn-icon::before {
	display: none;
}
.sp-adc-btn.loading .sp-adc-btn-icon::after {
	display: inline-block;
	animation: adc-btn-spin 1s infinite linear;
}
@keyframes adc-btn-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Single product additional buttons */
.single-product-additional-buttons {
	display: flex;
	margin-bottom: 30px;
}
.spr-addit-elem {
	margin-right: 20px;
}
.spr-addit-elem:last-child {
	margin-right: 0;
}

.spr-addit-elem .spr-addit-btn {
	display: inline-block;
	font-size: 16px;
}
.spr-addit-elem .spr-addit-btn:hover {
	opacity: .8;
}
.spr-addit-elem .spr-addit-btn span {
	margin-right: 5px;
	font-size: 18px;
}
.spr-addit-elem .spr-addit-btn a {
	font-size: 15px;
	font-style: italic;
	color: #b9b9b9;
	border-bottom: 1px dotted;
}

.spr-add-to-compare-btn,
.spr-add-to-wishlist-btn {
	cursor: pointer;
}
.spr-addit-elem.active .spr-add-to-wishlist-btn,
.spr-addit-elem:not(.active) .spr-add-to-wishlist-btn-filled,
.spr-addit-elem.active .spr-add-to-compare-btn,
.spr-addit-elem:not(.active) .spr-add-to-compare-btn-filled {
	display: none;
}
.spr-add-to-wishlist-btn-filled span {
}
.spr-add-to-compare-btn-filled span {
}

/* Single product meta */
.single-product-meta {
	margin-bottom: 20px;
}

.single-product-sku {
}
.single-product-sku .sku {
	color: #888;
}

.single-product-categories {
}
.single-product-categories a {
	color: #888;
}
.single-product-categories a:hover {
	opacity: .8;
}
.single-product-categories a ~ a:not(:empty)::before {
	content: ", ";
	margin-left: -4px;
}

.single-product-tags {
}
.single-product-tags a {
	color: #888;
}
.single-product-tags a:hover {
	opacity: .8;
}
.single-product-tags a ~ a:not(:empty)::before {
	content: ", ";
	margin-left: -4px;
}

/* Single product share */
.single-product-share {
}

/* Single product rating */
.single-product-rating-wrap {
	margin-top: 5px;
}
@media (min-width: 576px) {
	.single-product-rating-wrap {
		text-align: right;
	}
}

.single-product-review-count {
	font-size: 15px;
	color: #888;
}
.single-product-review-count:hover {
	opacity: .8;
}


/* Single product tabs 
======================= */
.tt-tabs.single-product-tabs {
}


/* Single product reviews 
========================== */
#single-product-reviews {
}

.spr-heading {
	margin: 0 0 40px 0;
	font-size: clamp(19px, 2vw, 21px);;
}

/* Single product reviews list */
.sp-reviews-list {
	margin-top: 60px;
}

/* Single product review body */
.sp-review-body {
	margin-bottom: 60px;
}

/* Single product review avatar */
.sp-review-avatar {
	position: relative;
	display: inline-block;
	float: left;
	width: 50px;
	height: 50px;
	margin-right: 20px;
	overflow: hidden;
	border-radius: 100px;
}
.sp-review-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* Single product review info */
.sp-review-info {
	position: relative;
}
@media (min-width: 769px) {
	.sp-review-info {
		padding-right: 130px;
	}
}
@media (max-width: 768px) {
	.sp-review-info {
		display: table;
	}
}

/* Single product review meta */
.sp-review-meta {
	margin-bottom: 20px;
}

.sp-review-author {
	margin: 0 0 5px 0;
	text-transform: none;
	letter-spacing: 0;
	font-size: 19px;
	color: #e9e9e9;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.sp-review-time {
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: normal;
	color: #999;
}

/* Single product review text */
.sp-review-text {
	clear: both;
	color: #b9b9b9;
}
@media (min-width: 769px) {
	.sp-review-text {
		margin-left: 70px;
	}
}
@media (max-width: 768px) {
	.sp-review-text {
		font-size: 16px;
	}
}

/* Single product review rating */
@media (min-width: 769px) {
	.sp-review-rating {
		position: absolute;
		top: 20px;
		right: 20px;
		text-align: right;
		z-index: 9;
	}
}


/* Single product review form 
============================== */
#single-product-review-form {
	max-width: 1100px;
	margin: 140px auto 0 auto;
}
@media (max-width: 991px) {
	#single-product-review-form {
		margin: 80px auto 0 auto;
	}
}

.sprf-heading {
	margin: 0 0 10px 0;
	font-size: clamp(30px, 2vw, 36px);
}

/* Single product review form rating */
.sprf-rating {
	margin-top: 60px;
	margin-bottom: 60px;
}

.sprf-rating-stars {
	position: relative;
	display: flex;
	height: 22px;
	font-size: 19px;
}
.sprf-rating-stars a {
	color: #706f6c;
	text-indent: -9999px;
	letter-spacing: 4px;
	width: 22px;
	height: 22px;
}
.sprf-rating-stars a:before {
	content: "";
	position: absolute;
	left: 0;
	height: 22px;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
	text-indent: 0;
	overflow: hidden;
	white-space: nowrap;
}
.sprf-rating-stars a.active:before,
.sprf-rating-stars a:hover:before {
	content: "\f005\f005\f005\f005\f005";
	font-weight: 900;
	color: #ededed;
}
.sprf-rating-stars .star-1 {
	z-index: 10;
}
.sprf-rating-stars .star-2 {
	z-index: 9;
}
.sprf-rating-stars .star-3 {
	z-index: 8;
}
.sprf-rating-stars .star-4 {
	z-index: 7;
}
.sprf-rating-stars .start-5 {
	z-index: 6;
}
.sprf-rating-stars .star-1:before {
	width: 24px;
}
.sprf-rating-stars .star-2:before {
	width: 49px;
}
.sprf-rating-stars .star-3:before {
	width: 74px;
}
.sprf-rating-stars .star-4:before {
	width: 100px;
}
.sprf-rating-stars .star-5:before {
	content: "\f005\f005\f005\f005\f005";
}

/* Single product review form info/notes */
.sprf-notes {
	margin-top: 5px;
	margin-bottom: 30px;
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	color: #ababab;
}
.sprf-email-note {
}
.sprf-required-note {
}

/* Single product review save data */
.tt-form-text.spr-save-data {
	font-size: 16px;
	font-weight: 300;
	font-style: italic;
	color: #ababab;
}


/* ------------------------------------------------------------- *
 * Shop tt-Product carousel
/* ------------------------------------------------------------- */

.tt-product-carousel {
	position: relative;
}

.tt-prc-heading {
	margin: 0 0 50px 0;
	font-size: clamp(28px, 2vw, 34px);
}
@media (max-width: 991px) {
	.tt-prc-heading {
		margin: 0 0 30px 0;
	}
}

/* Shop tt-Product carousel navigation (arrows)
======================================= */
.tt-prc-nav-prev,
.tt-prc-nav-next {
	position: absolute;
	top: 55%;
	z-index: 20;
	transform: translateY(-50%)
}
.tt-prc-nav-prev {
	left: 0;
}
.tt-prc-nav-next {
	right: 0;
}

.tt-prc-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	font-size: 18px;
	color: #FFF;
	cursor: pointer;
	outline: none;
}
.tt-prc-arrow-prev::after,
.tt-prc-arrow-next::after {
	line-height: 0;

	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
.tt-prc-arrow-prev::after {
	content: "\f053";
}
.tt-prc-arrow-next::after {
	content: "\f054";
}

.tt-prc-arrow.tt-prc-arrow-disabled {
	opacity: .2;
	pointer-events: none;
}
.tt-product-carousel .swiper-button-lock {
	display: none;
}


/* Shop tt-Product carousel navigation positions
================================================= */
/* Position outside */
@media (min-width: 1420px) {
	.prc-nav-outside .tt-prc-nav-prev {
		left: -80px;
	}
	.prc-nav-outside .tt-prc-nav-next {
		right: -80px;
	}
}

/* Position top */
@media (min-width: 992px) {
	.prc-nav-top .tt-prc-nav-prev, 
	.prc-nav-top .tt-prc-nav-next {
		top: 20px;
		transform: none;
	}
	.prc-nav-top .tt-prc-nav-prev {
		left: auto;
		right: 65px;
	}
	.prc-nav-top .tt-prc-nav-next {
		right: 0;
	}
}


/* Shop tt-Product carousel product info
=========================================*/
.tt-product-carousel .tt-product-title {
	font-size: 18px;
}


/* ------------------------------------------------------------- *
 * Shop sidebar filter widgets
/* ------------------------------------------------------------- */

.shop-filter-form {
}

.sidebar-widget.shop-filter-widget {
	position: relative;
	margin-bottom: 0;
	padding-bottom: 0;
}
.sidebar-widget.shop-filter-widget .sidebar-heading {
	padding-right: 30px;
}

/* Shop filter widget content */
.shop-filter-widget-content {
	min-height: 1px;
}
.shop-fwc-inner {
	width: 100%;
	max-height: 220px;
	overflow-y: auto;
	margin-bottom: 50px;
	padding-bottom: 1px; /* important for FireFox */
}

/* Shop filter widget caret */
.shop-fw-caret {
	position: absolute;
	top: 10px;
	right: 0;
	font-size: 14px;
	color: #FFF;
	opacity: .5;
	cursor: pointer;
}
.shop-fw-caret:hover {
	opacity: 1;
}
.shop-fw-caret:before {
	font-family: "Font Awesome 5 Free";
	content: "\f077";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: transform 0.3s;
}
.shop-filter-widget.hidden .shop-fw-caret:before {
	transform: rotate(180deg);
}


/* Shop filter price range 
=========================== */
.sidebar-price-range {
}

.shop-fw-price-range {
	display: flex;
	align-items: center;
	color: #999;
}
.shop-fw-price-range .tt-form-control {
	padding-left: 18px !important;
	height: 40px !important;
	font-size: 17px !important;
	color: #999 !important;
}

.shop-fw-price-box {
	position: relative;
	width: 100%;
}
.shop-fw-price-box-currency {
	position: absolute;
	top: 6px;
	left: 7px;
	font-size: 17px;
	color: #999;
}

.shop-fw-price-range-separator {
	margin: 0 8px;
}

.shop-fw-price-range .tt-btn {
	height: 40px;
	margin: 0 0 0 10px;
	padding: 0 15px;
	font-size: 14px;
	border-radius: 3px;
}
.shop-fw-price-range .tt-btn button {
	padding: 0 15px;
}

/* Hide arrows from input number */
.shop-fw-price-box input::-webkit-outer-spin-button,
.shop-fw-price-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-fw-price-box input[type=number] {
  -moz-appearance: textfield;
}


/* Shop filter radio/check list 
================================ */
.shop-filter-widget .tt-form-check:last-child, 
.shop-filter-widget .tt-form-radio:last-child {
	margin-bottom: 0;
}
.shop-filter-widget .tt-form-radio > label,
.shop-filter-widget .tt-form-check > label {
	width: 100%;
	font-weight: normal;
	font-size: 16px;
	color: #b1b1b1;
	transition: all 0.2s ease-in-out;
}
.shop-filter-widget .tt-form-radio > label:hover,
.shop-filter-widget .tt-form-check > label:hover {
	color: #FFF;
}
.shop-filter-widget .tt-form-radio > label > span,
.shop-filter-widget .tt-form-check > label > span  {
	float: right;
	margin: 4px 15px 0 0;
	font-size: 13px;
}

.sidebar-radio-list {
}
.sidebar-check-list {
}


/* Shop filter submit button 
============================= */
.shop-filter-submit-btn {
}


/* ------------------------------------------------------------- *
 * Shop sliding cart
/* ------------------------------------------------------------- */

.tt-sliding-cart-trigger {
	pointer-events: initial;
	cursor: pointer;
}

.tt-sliding-cart-wrap {
	position: relative;
	z-index: 9999;
	pointer-events: initial;
}
.tt-sliding-cart {
	position: fixed;
	top: 0;
	right: 0;
	width: 400px;
	height: 100vh;
	background-color: #1b1b1b;
	font-size: 16px;
	z-index: 2;
	transform: translate3d(100%, 0, 0);
	transition: transform 0.4s ease-in-out;
}
@media (max-width: 768px) {
	.tt-sliding-cart {
		width: 90%;
	}
}
body.tt-sliding-cart-open .tt-sliding-cart {
	transform: translate3d(0, 0, 0);
}
body.tt-sliding-cart-open {
	overflow-y: hidden !important;
}
.tt-sliding-cart-cover {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 75%);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
body.tt-sliding-cart-open .tt-sliding-cart-cover {
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
}
body.tt-sliding-cart-open .scrollbar-track {
	display: none !important;
}

.tt-sliding-cart-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 20px;
	right: 15px;
	width: 30px;
	height: 30px;
	background-color: rgb(51, 51, 51);
	font-size: 16px;
	cursor: pointer;
	border-radius: 50px;
	transition: transform 0.3s ease 0s;
}
.tt-sliding-cart-close:hover {
	transform: rotate(90deg);
}

/* Shop sliding cart inner */
.tt-sliding-cart-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	background-color: #222;
}

/* Shop sliding cart content */
.tt-sliding-cart-content {
	height: 100%;
	overflow-y: auto;
	padding: 0% 6% 8% 6%;
}
.tt-sliding-cart-heading {
	margin: 0;
	padding: 40px 0 20px 0;
	margin: 0 6% 30px 6%;
	font-size: 26px;
	border-bottom: 2px solid rgb(120 120 120 / 25%);
}

/* Shop sliding cart product list */
.tt-sliding-cart-product-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.tt-sliding-cart-product-list > li {
	padding: 15px 0;
	border-bottom: 1px dashed rgb(120 120 120 / 30%);
}
.tt-sliding-cart-product-list > li:first-child {
	padding-top: 0;
}
.tt-sliding-cart-product-list > li:last-child {
	padding-bottom: 0;
	border: none;
}

/* Shop sliding cart product */
.tt-sliding-cart-product {
	position: relative;
	display: flex;
	padding-right: 25px;
}
.tt-sc-product-thumb {
	display: block;
	margin-right: 15px;
}
.tt-sc-product-thumb:hover {
	opacity: .8;
}
.tt-sc-product-thumb img {
	max-width: 60px;
	height: auto;
}
.tt-sc-product-info {
}
.tt-sc-product-title {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
}
.tt-sc-product-title:hover {
	opacity: .8;
}
.tt-sc-product-variations {
	margin: 5px 0;
}
.tt-scp-variation {
	font-weight: normal;
	font-weight: 300;
	font-size: 13px;
	color: #ccc;
	line-height: 1.2;
}

.tt-sc-product-quantity-pricing {
}
.tt-sc-product-quantity {
	display: inline-block;
	font-size: 14px;
}
.tt-sc-product-price {
	display: inline-block;
	font-size: 14px;
}
.tt-sc-product-remove {
	position: absolute;
	display: flex;
	top: 0px;
	right: 0px;
	width: 20px;
	height: 20px;
	font-size: 12px;
	opacity: .8;
	justify-content: center;
	align-items: center;
}
.tt-sc-product-remove:hover {
	opacity: 1;
}

/* Shop sliding cart total */
.tt-sliding-cart-total {
	display: flex;
	justify-content: space-between;
	padding: 20px 0 5px 0;
	text-align: right;
	border-top: 2px solid rgb(120 120 120 / 25%);
}
.tt-sliding-cart-total bdi {
	font-size: 21px;
	font-weight: bold;
	font-weight: 500;
}

/* Shop sliding cart footer */
.tt-sliding-cart-footer {
	padding: 20px 6% 30px 6%;
}
body.is-mobile .tt-sliding-cart-footer {
	padding-bottom: 60px;
}



/* Shop sliding cart empty
======================== */
.tt-sliding-cart-empty {
	padding: 10%;
	text-align: center;
}
.tt-sliding-cart-empty-icon {
	font-size: clamp(48px, 6vw, 68px);
	opacity: .3;
}
.tt-sliding-cart-empty-text {
}
.tt-sliding-cart-empty-button {
	margin-top: 30px;
}


/* ------------------------------------------------------------- *
 * Shop shopping cart (page)
/* ------------------------------------------------------------- */

#shop-cart-list {
	position: relative;
}
.shop-cart-form {
}


/* Shop cart list empty
======================== */
.shop-cart-empty {
	background-color: rgb(129 129 129 / 5%);
	padding: 5%;
	margin-bottom: 20px;
	text-align: center;
	border-radius: 5px;
	border: 1px solid rgb(120 120 120 / 20%);
}
.shop-cart-empty-icon {
	font-size: clamp(68px, 6vw, 100px);
	opacity: .5;
}
.shop-cart-empty-text {
	font-size: 19px;
}
.shop-cart-empty-button {
	margin-top: 30px;
}


/* Shopping cart table 
======================= */
table.shop-cart-table {
}
tbody.shop-cart-table-body {
	position: relative;
}

/* Item remove button */
td.cti-product-remove {
	text-align: center;
}
td.cti-product-remove a:hover {
	opacity: .8;
}

/* Product thumbnail */
td.cti-product-thumb {
	text-align: center;
}
td.cti-product-thumb a {
	display: inline-block;
	width: 80px;
	height: auto;
	background-color: #363636;
	line-height: 0;
}
td.cti-product-thumb a:hover {
	opacity: .8;
}

/* Product title */
td.cti-product-title {
	font-weight: bold;
	font-weight: 500;
	line-height: 1.3;
}
td.cti-product-title a:hover {
	opacity: .8;
}

/* Product options */
.cti-product-variations {
	margin: 5px 0 0 0;
	font-weight: normal;
	font-weight: 300;
	font-size: 14px;
	color: #ccc;
	line-height: 1.2;
}
.ctip-variation {
}

/* Product quantity */
table.shop-cart-table .single-product-quantity {
	width: 100px;
	height: 34px;
}
table.shop-cart-table input.cart-plus-minus-box {
	text-align: center;
	font-size: 14px;
	transform: none;
}
table.shop-cart-table .qtybutton.inc, 
table.shop-cart-table .qtybutton.dec {
	position: absolute;
	top: 0;
	width: 30px;
	height: 100%;
	line-height: 35px;
}
table.shop-cart-table .qtybutton.inc {
	right: 0;
} 
table.shop-cart-table .qtybutton.dec {
	left: 0;
	right: auto;
}

/* Product subtotal */
td.cti-subtotal bdi {
	font-weight: bold;
	font-weight: 600;
}


/* Shopping cart table on small screens 
======================================== */
@media (max-width: 768px) {
	thead.shop-cart-table-head {
		display: none;
	}
	table.shop-cart-table tbody.shop-cart-table-body tr:nth-of-type(odd) {
		background-color: transparent;
	}
	table.shop-cart-table tbody.shop-cart-table-body tr td {
		padding: 5px;
		font-size: 14px;
		border: none;
		border-bottom: 1px dotted rgb(120 120 120 / 40%);
	}

	tr.shop-cart-table-item {
		position: relative;
		display: block;
		padding-left: 95px;
		margin-bottom: 25px;
		padding-bottom: 25px;
		border-bottom: 2px solid rgb(135 135 135 / 45%);
	}
	tr.shop-cart-table-item td {
		display: flex;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	tbody.shop-cart-table-body tr td.cti-product-remove {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
		padding: 0;
	}
	td.cti-product-remove a {
		padding: 7px;
		line-height: 0;
	}
	tbody.shop-cart-table-body tr td.cti-product-thumb {
		position: absolute;
		top: 0;
		left: 0;
		padding: 10px 0 0 0 !important;
		border-bottom: none !important;
	}
	.cti-product-thumb a {
		width: 80px;
	}
	table.shop-cart-table tbody.shop-cart-table-body tr td.cti-product-title {
		padding-right: 50px;
	}
	.cti-product-title-inner {
		padding-bottom: 15px;
	}
	tbody.shop-cart-table-body tr td.cti-mobile-price,
	tbody.shop-cart-table-body tr td.cti-mobile-quantity {
		border-bottom: 1px dashed rgb(120 120 120 / 45%);
	}
	td.cti-price,
	td.cti-quantity,
	td.cti-subtotal {
		color: #CCC;
	}
	td.cti-price:before,
	td.cti-quantity:before,
	td.cti-subtotal:before {
		content: attr(data-title);
	}
}


/* Shopping cart box 
===================== */
.shop-cart-box {
	background-color: rgb(129 129 129 / 12%);
	padding: 5%;
	margin-bottom: 20px;
	border-radius: 5px;
	border: 1px solid rgb(120 120 120 / 20%);
}
.shop-cart-box-heading {
	margin: 0 0 25px 0;
	font-size: 28px;
}


/* Shopping cart totals 
======================== */
.shop-cart-totals {
}
.sc-totals-total bdi {
	font-size: 24px;
	font-weight: 600;
	color: #2ca904;
}
table.shop-cart-totals-table {
	margin-bottom: 30px;
}
table.shop-cart-totals-table tr {
	border-bottom: 1px dashed rgb(120 120 120 / 25%);
}
table.shop-cart-totals-table td {
	text-align: right;
}

table.shop-cart-totals-table th, 
table.shop-cart-totals-table td,  {
	padding: 8px 5px;
	font-size: 16px;
	vertical-align: middle;
}


/* Shopping cart discount code 
=============================== */
.shop-cart-discount {
}


/* ------------------------------------------------------------- *
 * Shop checkout
/* ------------------------------------------------------------- */

.shop-checkout-form {
	position: relative;
}

.shop-checkout-box {
	padding: 5%;
	margin-bottom: 20px;
	border-radius: 5px;
	border: 1px solid rgb(120 120 120 / 20%);
}
.shop-checkout-box-heading {
	margin: 0 0 25px 0;
	font-size: 28px;
}


/* Shop checkout billing details 
================================= */
.shop-billing-details {
	background-color: rgb(129 129 129 / 5%);
	margin-bottom: 40px;
}

/* Shop additional info */
.shop-additional-info {
	background-color: rgb(129 129 129 / 5%);
	margin-bottom: 40px;
}
.shop-additional-info-heading {
	margin: 0 0 25px 0;
	font-size: 28px;
}


/* Shop checkout order review 
============================== */
.shop-order-review {
	background-color: rgb(129 129 129 / 12%);
	margin-bottom: 20px;
}

table.shop-order-review-table {
	margin: 0;
}
table.shop-order-review-table th {
	font-weight: 600;
}
table.shop-order-review-table thead {
	border-bottom: 2px solid rgb(120 120 120 / 25%);
}
th.sor-table-head-subtotal {
	text-align: right;
}

table.shop-order-review-table th, 
table.shop-order-review-table td {
	padding: 10px 5px;
	font-size: 16px;
	vertical-align: middle;
}

/* Shop checkout cart item */
tr.sor-cart-item {
	border-bottom: 1px dashed rgb(120 120 120 / 30%);
}
tr.sor-cart-item:first-child .sor-product-wrap {
	padding-top: 20px;
}
tr.sor-cart-item:last-child .sor-product-wrap {
	padding-bottom: 20px;
}
.sor-product {
}
.sor-product-title {
	font-size: 15px;
	font-weight: normal;
	line-height: 1.3;
}
.sor-product-quantity  {
	display: inline;
	font-weight: bold;
	font-weight: 600;
	white-space: nowrap;
}
.sor-product-variations {
	margin: 5px 0 0 0;
}
.sorp-variation {
	font-weight: normal;
	font-weight: 300;
	font-size: 13px;
	color: #ccc;
	line-height: 1.2;
}
td.sor-product-subtotal {
	text-align: right;
}

/* Shop checkout order review foot */
table.shop-order-review-table tfoot {
	border-top: 2px solid rgb(120 120 120 / 25%);
}
table.shop-order-review-table tfoot td {
	text-align: right;
}
table.shop-order-review-table tfoot tr {
	line-height: 1.3;
	border-bottom: 1px dashed rgb(120 120 120 / 30%);
}
table.shop-order-review-table tfoot tr:first-child,
table.shop-order-review-table tfoot tr:last-child {
	border-bottom: none;
}
tr.sor-table-foot-total bdi {
	font-size: 21px;
	font-size: bold;
	font-weight: 600;
	color: #2ca904;
}


/* Shop checkout payment methods 
================================= */
.shop-payment-methods {
	background-color: rgb(129 129 129 / 12%);
}

ul.shop-payment-methods-list {
	margin: 0;
	padding: 10px 0 0 0;
	list-style: none;
}
ul.shop-payment-methods-list > li {
	margin-bottom: 5px;
}

.shop-payment-methods-list .tt-form-radio label img,
.shop-payment-methods-list .tt-form-check label img {
	max-height: 32px;
	margin-bottom: -8px;
}


/* ------------------------------------------------------------- *
 * Shop order details (thank you page)
/* ------------------------------------------------------------- */

.shop-thankyou-order-review {
	margin-bottom: 30px;
}
.shop-thankyou-order-review ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.shop-thankyou-order-review ul li {
	display: inline-block;
	margin-right: 20px;
	padding-right: 20px;
	margin-bottom: 30px;
	border-right: 1px dotted rgb(120 120 120 / 70%);
}
.shop-thankyou-order-review ul li:last-child {
	margin-right: none;
	padding-right: none;
	border: none;
}
.stor-item {
	font-size: 16px;
}
.stor-item-heading {
}
.stor-item-cont {
	color: #CCC;
}


/* Shop order details box 
========================== */
.shop-order-details {
	position: relative;
	background-color: rgb(129 129 129 / 12%);
	margin-bottom: 20px;
	padding: 4%;
	border-radius: 5px;
	border: 1px solid rgb(120 120 120 / 20%);
}
.shop-order-details-heading {
	margin: 0 0 30px 0;
	font-size: 32px;
}


/* Shop order details table 
============================ */
table.shop-order-details-table {
	margin: 0;
}

table.shop-order-details-table th, 
table.shop-order-details-table td {
	max-width: 50%;
	width: 50%;
	padding: 20px 5px;
}
table.shop-order-details-table th {
	font-weight: 600;
}
table.shop-order-details-table thead {
	font-size: 19px;
	border-bottom: 2px solid rgb(120 120 120 / 25%);
}
table.shop-order-details-table thead th {
	font-size: 19px;
}
table.shop-order-details-table tr th:last-child,
table.shop-order-details-table tr td:last-child {
	text-align: right;
}
table.shop-order-details-table tbody tr {
	border-bottom: 1px dashed rgb(120 120 120 / 30%);
}

/* Shop order details table product */
.sod-product {
}
.sod-product-title {
	font-size: 15px;
	font-weight: normal;
	line-height: 1.3;
}
.sod-product-title:hover {
	opacity: .8;
}
.sod-product-quantity  {
	display: inline;
	font-weight: bold;
	font-weight: 600;
	white-space: nowrap;
}
.sod-product-variations {
	margin: 5px 0 0 0;
}
.sodp-variation {
	font-weight: normal;
	font-weight: 300;
	font-size: 13px;
	color: #ccc;
	line-height: 1.2;
}

/* Shop order details table foot */
table.shop-order-details-table tfoot {
	border-top: 2px solid rgb(120 120 120 / 25%);
}
table.shop-order-details-table tfoot td {
	text-align: right;
}
table.shop-order-details-table tfoot tr {
	border-bottom: 1px dashed rgb(120 120 120 / 30%);
}
table.shop-order-details-table tfoot tr:first-child,
table.shop-order-details-table tfoot tr:last-child {
	border-bottom: none;
}
tr.sod-table-foot-total bdi {
	font-size: 21px;
	font-size: bold;
	font-weight: 600;
	color: #2ca904;
}


/* ------------------------------------------------------------- *
 * Shop wishlist
/* ------------------------------------------------------------- */

#shop-wishlist {
	position: relative;
}


/* Shop wishlist empty 
======================= */
.shop-wishlist-empty {
	background-color: rgb(129 129 129 / 5%);
	padding: 5%;
	margin-bottom: 20px;
	text-align: center;
	border-radius: 5px;
	border: 1px solid rgb(120 120 120 / 20%);
}
.shop-wishlist-empty-icon {
	font-size: clamp(68px, 6vw, 100px);
	opacity: .5;
}
.shop-wishlist-empty-text {
	font-size: 19px;
}
.shop-wishlist-empty-button {
	margin-top: 30px;
}


/* Shop wishlist table 
======================= */
table.shop-wishlist-table {
	position: relative;
}
tbody.shop-wishlist-table-body {
}

/* Item remove button */
td.swti-product-remove {
	text-align: center;
}
td.swti-product-remove a:hover {
	opacity: .8;
}

/* Product thumbnail */
td.swti-product-thumb {
	text-align: center;
}
td.swti-product-thumb a {
	display: inline-block;
	width: 80px;
	height: auto;
	background-color: #363636;
	line-height: 0;
}
td.swti-product-thumb a:hover {
	opacity: .8;
}

/* Product title */
td.swti-product-title {
	font-weight: bold;
	font-weight: 500;
	line-height: 1.3;
}
td.swti-product-title a:hover {
	opacity: .8;
}

/* Product price */
td.swti-price {
}
.swti-price-sale {
}
.swti-current-price {
	text-decoration: none;
}
.swti-old-price {
	text-decoration: line-through;
	color: #888;
}

/* Product stock status */
td.swti-stock-status {
}
.swti-in-stock {
}
.swti-out-of-stock {
}

/* Product action */
td.swti-action {
	text-align: center;
}


/* Shop wishlist table on small screens 
======================================== */
@media (max-width: 768px) {
	thead.shop-wishlist-table-head {
		display: none;
	}
	table.shop-wishlist-table tbody tr:nth-of-type(odd) {
		background-color: transparent;
	}
	table.shop-wishlist-table tbody tr td {
		padding: 5px;
		font-size: 14px;
		border: none;
		border-bottom: 1px dotted rgb(120 120 120 / 40%);
	}
	table.shop-wishlist-table tbody tr td:last-child {
		border: none;
	}

	tr.shop-wishlist-table-item {
		position: relative;
		display: block;
		padding-left: 95px;
		margin-bottom: 25px;
		padding-bottom: 25px;
		border-bottom: 2px solid rgb(135 135 135 / 45%);
	}
	tr.shop-wishlist-table-item td {
		display: flex;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	td.swti-product-remove {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
		padding: 0;
	}
	td.swti-product-remove a {
		padding: 7px;
		line-height: 0;
	}
	td.swti-product-thumb {
		position: absolute;
		top: 0;
		left: 0;
		padding: 10px 0 0 0 !important;
		border-bottom: none !important;
	}
	.swti-product-thumb a {
		width: 80px;
	}
	table.shop-wishlist-table td.swti-product-title {
		padding-right: 50px;
		padding-bottom: 15px;
	}
	td.swti-price,
	td.swti-stock-status {
		color: #CCC;
	}
	td.swti-price:before,
	td.swti-stock-status:before {
		content: attr(data-title);
	}
}


/* ------------------------------------------------------------- *
 * Shop login/register/reset password
/* ------------------------------------------------------------- */

.slr-box {
	position: relative;
	padding: 5%;
	margin-bottom: 30px;
	border-radius: 5px;
	border: 1px solid rgb(120 120 120 / 20%);
}
.slr-heading {
	margin: 0 0 20px 0;
	font-size: 28px;
}

.tt-login-form,
.tt-register-form,
.tt-reset-password-form {
	padding-top: 30px;
}

.shop-login-box,
.shop-register-box,
.shop-reset-password-box {
	background-color: rgb(129 129 129 / 10%);
}
.shop-goto-login-box,
.shop-goto-register-box {
	background-color: rgb(129 129 129 / 5%);
}










/*******developer code********/
body:not(.woocommerce-wishlist).woocommerce a.button.tt-add-to-cart.button{
	font-size: 14px;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
	text-transform:capitalize;
    text-decoration: none;
    overflow: visible;
    padding: 0px;
	padding-left:20px;
	padding-bottom:3px;
    font-weight: 400;
    border-radius: 0px;
    left: auto;
    color: #fff;
    background-color: unset;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}
.tt-product-adc-btn.tt-add-to-cart span::before, .tt-product-adc-btn.tt-add-to-cart span::after, .tt-product-sel-opt-btn.tt-add-to-cart span::before{
	top:0px;
}
.tt-add-to-cart.tt-product-adc-btn.product_type_variable span::before,
.tt-add-to-cart.tt-product-adc-btn.product_type_grouped span::before{
	content: "\f06e";
}
.yith-wcwl-add-button>a i,
.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon{
	margin-right:0px;
}

.woocommerce a.remove{
	background: transparent!important;
	font-size:16px;
	width:unset;
	height:unset;
	color:#fff!important;
}
.widget_shopping_cart_content{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 128px);
}
.hide_cart_widget_if_empty {
    height: 100%;
}
.added_to_cart{
	display:none!important;
}
.woocommerce #respond input#submit.loading::after, .woocommerce a.button.loading::after, .woocommerce button.button.loading::after, .woocommerce input.button.loading::after{
	display:none;
}
.woocommerce #respond input#submit.added::after, .woocommerce a.button.added::after, .woocommerce button.button.added::after, .woocommerce input.button.added::after{
	content:""!important;
}
.woocommerce-page div.product div.images{
	width:100%;
}
.single-product-slider-thumbs .yith-wcwl-add-to-wishlist{
	display:none;
}
.woocommerce .woocommerce-product-rating .star-rating {
    margin: 0px;
   float: right;
}
.woocommerce .woocommerce-product-rating .star-rating{
	letter-spacing:4px;
}
.woocommerce .star-rating{
	width:6.6em;
}
.woocommerce div.product .woocommerce-product-rating{
	margin-bottom:0px;
}
.woocommerce div.product form.cart .group_table td:first-child{
	min-width:90px;
}
.woocommerce:not(.single-product) .star-rating,
.tt-related-products-carousel .star-rating{
	float:unset;
	letter-spacing:4px;
}
.woocommerce div.product form.cart .variations label{
	font-weight:normal;
	text-transform:capitalize;
}

.tt-product-image-holder .add_to_wishlist,
.tt-product-image-holder .yith-wcwl-wishlistexistsbrowse a,
.tt-product-image-holder .yith-wcwl-wishlistaddedbrowse a,
.tt-product-image-holder .yith-wcwl-add-to-wishlist-button:is(button)
 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
	overflow:hidden;
    background-color: #0a0a0a;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #FFF;
    line-height: 1;
    pointer-events: initial;
    border-radius: 100px;
    transition: background-color .2s ease-in-out;
}
.tt-product-image-holder .yith-wcwl-add-to-wishlist-button__label{
	display:none;
}
.tt-product-image-holder .yith-wcwl-wishlistexistsbrowse a,
.tt-product-image-holder .yith-wcwl-wishlistaddedbrowse a{
	color:transparent!important;
}
.tt-product-image-holder .yith-wcwl-wishlistexistsbrowse span.feedback,
.tt-product-image-holder .yith-wcwl-wishlistaddedbrowse span.feedback{
	position: absolute;
    top: 8px;
    left: 12px;
	font-size:16px;
	width: 30px;
    height: 30px;
	overflow:hidden;
}
.add_to_wishlist i:before{
	content: "\f004";
	font-weight:400;
}
.tt-product-image-holder .add_to_wishlist span{
	display:none;
}
.tt-product-image-holder .yith-wcwl-add-to-wishlist{
	margin-top:0px;
}
.tt-product-image-holder .add_to_wishlist:hover,
.tt-product-image-holder .yith-wcwl-wishlistexistsbrowse a:hover,
.tt-product-image-holder .yith-wcwl-wishlistaddedbrowse a:hover,
.tt-product-image-holder .yith-wcwl-add-to-wishlist-button:is(button):hover{
	background-color: #4c2122;
}
.yith-wcwl-items-count i{
	font-style:normal;
}
.single-product-summary  .yith-wcwl-wishlistexistsbrowse a {
    font-size: 15px;
    font-style: italic;
    color: #b9b9b9;
    border-bottom: 1px dotted;
}
.woocommerce .cart-collaterals .cart_totals, 
.woocommerce-page .cart-collaterals .cart_totals{
	float:left;
	width:100%;
}
#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:0px;
	border-bottom: 1px dashed rgb(120 120 120 / 25%)!important;
}
.woocommerce table.shop_table{
	border:0px;
}
.woocommerce-cart table.cart img{
	width:100%;
}
.single-product .tt-col-lg-6 .single-product-padges{
	left:15px;
}
.tt-cart-carousel .tt-product-adc-btn span::before{
	top:3px;
}
.woocommerce-product-attributes-item__value p{
	margin:0px;
}
#add_payment_method #payment, 
.woocommerce-cart #payment, .woocommerce-checkout #payment{
	background:transparent;
}
.woocommerce-checkout #payment ul.payment_methods::after{
	display:none;
}
#add_payment_method #payment ul.payment_methods, 
.woocommerce-cart #payment ul.payment_methods, 
.woocommerce-checkout #payment ul.payment_methods{
	border-bottom:0px;
	padding:0px;
}
.woocommerce-privacy-policy-text{
	display: block;
    margin-top: 5px;
    font-style: italic;
    color: #999;
	font-size: 80%;
}
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea{
	margin-bottom:30px;
}

.select2-container .select2-selection--single{
	padding:0;
	padding-left:0px;
	text-align:left;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #000;
	background: transparent;
    border: 1px solid transparent;
    border-bottom: 1px solid rgb(136 136 136 / 60%);
    border-style: solid;
    border-width: 1px;
	outline:none;
	min-height: 56px;
	border-radius:0px;
	margin-bottom:30px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 5px;
    color: #8c8b8b;
    line-height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
	top: 27px;
    border: none;
    left: unset;
    right: 0px;
	
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:after{
	content: '';
    display: block;
    height: 6px;
    margin-top: 4px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 5;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    width: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:after{
	border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}
.select2-container {
	background-color: transparent;
    color: #FFF;
}
.woocommerce form .form-row .select2-container .selection{
	float:left;
	width:100%;
}
.select2-container .select2-selection--single .select2-selection__rendered{
	padding-left:0px;
}

.select2-search--dropdown {
    padding: 10px;
}
.select2-dropdown {
    background-color: #1a1a1a;
	padding-bottom: 20px;
    border: 1px solid #4c4c4c;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	height: 40px;
    background-color: #323232;
	font-size: 17px;
	color: #FFF;
    border: 1px solid #5c5c5c;
}
.select2-results {
	padding-top: 10px;
    font-size: 17px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], 
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #3a3a3a;
    color: #fff;
}
.select2-container--default .select2-results__option[aria-selected=true], 
.select2-container--default .select2-results__option[data-selected=true] {
    background-color: #3a3a3a;
}

.select2-results__options {
	scrollbar-width: thin;
	scrollbar-color: #555 #2a2a2a;
}
.select2-results__options::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
.select2-results__options::-webkit-scrollbar-track {
	background: #2a2a2a;
}
.select2-results__options::-webkit-scrollbar-thumb {
	background-color: #555;
	border-radius: 50px;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, .woocommerce form.register {
    border: 0px;
    padding: 0px;
    padding-top: 30px;
    margin: 0px;
    text-align: left;
    border-radius: 0px;
}
input.tt-form-control:-webkit-autofill,
input.tt-form-control:-webkit-autofill:hover,
input.tt-form-control:-webkit-autofill:focus,
input.tt-form-control:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color:#999;
}
.woocommerce form .show-password-input::after, 
.woocommerce-page form .show-password-input::after{
	content: "\f06e";
	font-family: Font Awesome\ 5 Pro!important;
}
#tt-woo-list .tt-pagination{
	margin-top:40px!important;
}
#yith-wcwl-message{
	color:#000;
}
.single-product .single-product-summary  .yith-wcwl-add-to-wishlist{
	display:none;
}
.single-product .single-product-summary .single-product-additional-buttons .yith-wcwl-add-to-wishlist{
	display:block!important;
}
.tt-grid-per-page-sh{
	margin-right:25px!important;
}
.yith-wcan-filters{
	background:transparent;
	margin-bottom:0px;
}

.yith-wcan-filters .yith-wcan-filter h4{
	position: relative;
    margin-bottom: 40px;
	color:#fff;
    font-size: 21px;
    font-weight: 700;
	padding-right:30px;
	font-family: 'Noto Serif JP', serif;
}
.yith-wcan-filters .yith-wcan-filter h4:after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    bottom: -15px;
    width: 35px;
    height: 2px;
    background-color: #555;
}
.sp-reviews-list {
    list-style: none;
    padding: 0px;
}
#single-product-reviews #respond{
	max-width: 1100px;
    margin: 40px auto 0 auto;	
}
#single-product-reviews .star-rating {
    float: unset;
    letter-spacing: 4px;
}

#single-product-reviews .star-rating {
    width: 6.6em;
}
.woocommerce p.stars a{
	border:none;
	font-style:normal;
}
#single-product-reviews #reply-title{
	margin-bottom:0px;
	font-family: 'Noto Serif JP', serif;
}
#single-product-reviews #email-notes,
#single-product-reviews .required-field-message,
#single-product-reviews .comment-form-cookies-consent label{
	font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #ababab;
}
#single-product-reviews .woocommerce-verification-required {
	background-color: rgb(129 129 129 / 10%);
    padding: 3%;
    margin: auto;
    text-align: center;
    border: 1px solid rgb(120 120 120 / 20%);
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
	top:4px;
    margin: 0px 4px 0px 0px;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding:0px!important;
	width: 18px;
    height: 18px;
    background-color: #4e4e4e;
    border-radius: 3px;
    transition: background-color 0.2s;
}
input[type=checkbox]:before {
    content: '';
    width: 18px;
    height: 18px;
    border: 0px;
    background-color: #4e4e4e;
    border-radius: 3px;
    position: absolute;
    top: 0px;
    margin-left: -1px;
}
input[type=checkbox]:after {
    font-family: Font Awesome\ 5 Pro;
    content: '\f00c';
    background: transparent;
    position: absolute;
    top: 1px;
	margin-left: 0px;
    left: 0;
    width: 18px;
    height: 18px;
    border: none;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s cubic-bezier(.64, .09, .08, 1);
    will-change: opacity;
	color:#fff;
    font-size: 12px;
}
input[type=checkbox]:checked:after {
    opacity: 1
}

/* Woocommerce messages */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background-color: rgb(129 129 129 / 16%);
    font-size: 17px;
    color: #FFF;
    border: 1px solid rgb(120 120 120 / 26%);
}
.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a {
    color: #c5c5c5;
    border-bottom: 1px dotted;
}
.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover {
    opacity: .8;
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    color: #FFF;
}
.woocommerce-error {
    background-color: #5c1718;
}

/* Checkout payment box */
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background-color: #303030;
    font-size: 16px;
    color: #FFF;
}
#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    border: 16px solid #303030;
}
.woocommerce-checkout #payment div.payment_box::before{
	display:none;
}

.single-product-price del {
    margin-top: 5px;
    text-decoration: line-through;
    font-size: 70%;
    color: #999;
}
.single-product-price ins{
	text-decoration: none;
}
.tt-product-price del {
    text-decoration: line-through;
    color: #999;
}
.tt-product-price ins{
	text-decoration: none;
}


/* Woocommerce sidebar widgets
=============================== */

/* Price filter */
.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: 4px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: #424242;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
   	top: -7px;
    width: 17px;
    height: 17px;
    background-color: #686868;
}
.woocommerce .widget_price_filter .price_slider_amount {
    color: #CCC;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{
	background-color: #4c2122;
}
.shop-fw-price-box input.tt-form-control{
	display:block!important;
}

/* Sidebar product list */
.woocommerce ul.product_list_widget .sidebar-product-list-item {
	display: flex;
	margin-bottom: 20px;
}
.woocommerce ul.product_list_widget .sidebar-product-image {
	width: 20%;
	margin: 3px 12px 0 0;
    line-height: 0;
}
.woocommerce ul.product_list_widget .sidebar-product-image:hover {
	opacity: .8;
}
.woocommerce ul.product_list_widget .sidebar-product-image img {
	float: none;
	width: 100%;
    margin: 0 10px 0 0;
}

.woocommerce ul.product_list_widget .sidebar-product-list-item-info {
    width: 80%;
}
.woocommerce ul.product_list_widget .sidebar-product-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}
.woocommerce ul.product_list_widget .sidebar-product-title a {
    font-weight: 600;
	display: inline;
    background-repeat: no-repeat;
    background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
    background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
    background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
    transition: 0.6s cubic-bezier(.215,.61,.355,1);
    background-size: 0 96%;
}
.woocommerce ul.product_list_widget .sidebar-product-title a:hover {
    background-size: 100% 96%;
    color: #FFF;
}
.woocommerce .sidebar-product-list-item .star-rating {
	margin: 10px 0 0 0;
	font-size: 12px;
}
.woocommerce .widget_products .sidebar-product-list-item .star-rating {
	display: none;
}
.woocommerce ul.product_list_widget .sidebar-product-price {
	display: block;
    margin: 7px 0 0 0;
	font-size: 14px;
}
.woocommerce ul.product_list_widget .sidebar-product-price ins {
	text-decoration: none;
}


/* Shop wishlist table 
======================= */

.wishlist_table .product-add-to-cart a span:before,
.yith-wcwl-share,
.tt-wishlist-carousel .tt-product-additional-buttons,
.wishlist-title-container{
	display:none;
}
.tt-info-button{
	float:right;
}
.tt-whishlis-section .tt-product-buttons  {
	position:relative!important;
	opacity:1!important;
	visibility:visible!important;
}

table.shop-wishlist-table,
table.wishlist_table {
	position: relative;
}
.wishlist_table tbody.shop-wishlist-table-body {
}

/* Item remove button */
.wishlist_table td.swti-product-remove {
	text-align: center;
}
.wishlist_table td.swti-product-remove a:hover {
	opacity: .8;
}

/* Product thumbnail */
.wishlist_table td.swti-product-thumb {
	text-align: center;
}
.wishlist_table td.swti-product-thumb a {
	display: inline-block;
	width: 80px;
	height: auto;
	background-color: #363636;
	line-height: 0;
}
.wishlist_table td.swti-product-thumb a:hover {
	opacity: .8;
}

/* Product title */
.wishlist_table td.swti-product-title {
	font-weight: bold;
	font-weight: 500;
	line-height: 1.3;
}
.wishlist_table td.swti-product-title a:hover {
	opacity: .8;
}

/* Product price */
.wishlist_table td.swti-price {
}
.swti-price-sale {
}
.swti-current-price {
	text-decoration: none;
}
.swti-old-price {
	text-decoration: line-through;
	color: #888;
}

/* Product stock status */
.wishlist_table td.swti-stock-status {
}
.swti-in-stock {
}
.swti-out-of-stock {
}

/* Product action */
.wishlist_table td.swti-action {
	text-align: center;
}


/* Shop wishlist table on small screens 
======================================== */
@media (max-width: 768px) {
	.wishlist_table thead.shop-wishlist-table-head {
		display: none;
	}
	table.shop-wishlist-table.wishlist_table tbody tr:nth-of-type(odd) {
		background-color: transparent;
	}
	table.shop-wishlist-table.wishlist_table tbody tr td {
		padding: 5px;
		font-size: 14px;
		border: none;
		border-bottom: 1px dotted rgb(120 120 120 / 40%);
	}
	table.shop-wishlist-table.wishlist_table tbody tr td:last-child {
		border: none;
	}

	.wishlist_table tr.shop-wishlist-table-item {
		position: relative;
		display: block;
		padding-left: 95px;
		margin-bottom: 25px;
		padding-bottom: 25px;
		border-bottom: 2px solid rgb(135 135 135 / 45%);
	}
	.wishlist_table tr.shop-wishlist-table-item td {
		display: flex;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.wishlist_table td.swti-product-remove {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
		padding: 0;
	}
	.wishlist_table td.swti-product-remove a {
		padding: 7px;
		line-height: 0;
	}
	.wishlist_table td.swti-product-thumb {
		position: absolute;
		top: 0;
		left: 0;
		padding: 10px 0 0 0 !important;
		border-bottom: none !important;
	}
	.swti-product-thumb a {
		width: 80px;
	}
	table.shop-wishlist-table.wishlist_table td.swti-product-title {
		padding-right: 50px;
		padding-bottom: 15px;
	}
	.wishlist_table td.swti-price,
	.wishlist_table td.swti-stock-status {
		color: #CCC;
	}
	.wishlist_table td.swti-price:before,
	.wishlist_table td.swti-stock-status:before {
		content: attr(data-title);
	}
}
table.tt-table.wishlist_table th, table.tt-table.wishlist_table td {
    border: 1px solid rgb(120 120 120 / 25%);
}
.woocommerce a.button.loading{
	opacity:1;
}
@media (max-width: 768px) {
	.woocommerce table.shop_table_responsive tr td::before, 
	.woocommerce-page table.shop_table_responsive tr td::before{
		content: attr(data-title);
		padding-right:5px;
	}
}
.single-product .single-product-quantity{
	width:95px;
	 min-width: 95px;
}
.woocommerce div.product form.cart{
	margin-bottom:50px;
}
.my-account-nav ul{
	list-style:none;
}
.blockUI.blockOverlay{
 -webkit-opacity: 1 !important;
 -moz-opacity: 1 !important;
 opacity: 1 !important;
 filter: alpha(opacity=100) !important;
 -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
 background: rgb(0, 0, 0, 0.6)!important;
}


/* Woocommerce "My account" 
============================ */

.woocommerce .my-account-nav {
	background-color: rgb(129 129 129 / 12%);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    border: 1px solid rgb(120 120 120 / 20%);
}
.woocommerce .my-account-nav ul {
	margin: 0;
	padding: 0 0 0 20px;
}
.woocommerce .my-account-nav ul li a {
	font-size: 17px;
	font-weight: normal;
    display: inline;
    background-repeat: no-repeat;
    background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
    background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
    background-image: -ms-linear-gradient(transparent 96%,currentColor 1px);
    transition: 0.6s cubic-bezier(.215,.61,.355,1);
    background-size: 0 96%;
}
.woocommerce .my-account-nav ul li a:hover,
.woocommerce .my-account-nav ul li.is-active a {
	background-size: 100% 96%;
    color: #FFF;
}

.woocommerce .my-account-content {
	background-color: rgb(129 129 129 / 5%);
    padding: 5%;
    margin-bottom: 30px;
	font-size: 17px;
	color: #DDD;
    border-radius: 5px;
    border: 1px solid rgb(120 120 120 / 20%);
}
.my-account-content-heading {
    margin: 0 0 25px 0;
    font-size: 28px;
	color: #FFF;
}
.woocommerce .my-account-content .woocommerce-Address .edit {
    font-size: 15px;
    font-style: italic;
    border-bottom: 1px dotted;
}
.woocommerce .my-account-content .woocommerce-Address .edit:hover {
    opacity: .8;
}
/****woo-elementor***/
.elementor .tt-product-image-wrap img{
	height:100%;
}
.elementor-widget-tank-product-carousel .swiper-slide a.tt-product-image-wrap{
	display:block;
}

.elementor-editor-active .elementor-widget-tank-product-carousel .tt-product-image-holder{
	max-height:290px;
}

.elementor-widget-tank-product-carousel .tt-prc-nav-prev, 
.elementor-widget-tank-product-carousel .tt-prc-nav-next{
	top:45%
}
.elementor-editor-active .woocommerce-loop-product__title{
	display:none;
}
.elementor .tt-grid-top{
	margin-right:4vw;
	margin-left:4vw;
}
#shop-grid .tt-grid.ttgr-gap-4, #shop-grid .tt-grid.ttgr-gap-4 .tt-grid-top {
    margin-left: -1vw;
    margin-right: -1vw;
}
#shop-grid .tt-grid.ttgr-gap-1, #shop-grid .tt-grid.ttgr-gap-1 .tt-grid-top, #shop-grid .tt-grid.ttgr-gap-2, #shop-grid .tt-grid.ttgr-gap-2 .tt-grid-top {
    margin-left: 1vw;
    margin-right: 1vw;
}

#tt-woo-list .tt-col-lg-9 .tt-grid.ttgr-gap-3, #tt-woo-list .tt-col-lg-9 .tt-grid.ttgr-gap-3 .tt-grid-top {
    margin-left: -1vw;
    margin-right: -1vw;
}

#shop-grid .tt-grid.ttgr-gap-4 .ttgr-item-inner, #shop-grid .tt-grid.ttgr-gap-1 .ttgr-item-inner, #shop-grid .tt-grid.ttgr-gap-2 .ttgr-item-inner {
    margin: 0 1vw 2vw 1vw;
}

#tt-woo-list .tt-col-lg-9 .tt-grid.ttgr-gap-3 .ttgr-item-inner {
    margin: 0 1vw 2vw 1vw;
}
.woocommerce-noreviews{
	margin-bottom:100px;
}
@media (max-width: 991px) {
.woocommerce-noreviews{
	margin-bottom:40px;
}
}
.woocommerce .star-rating span{
	font-family:unset;
}
.wishlist_table thead tr th{
	background:transparent;
}