:root {
	--v-green: #8fba43;
	--outofstock: #f42c37;
	--coming-soon: #dd8b26;
	--backorder: #dd8b26;
	--discontinued: #ff4344;
}

/* Product Documents */
.product-files-list {
	list-style: none !important;
	padding-left: 0 !important;
	margin: 0;
}

.product-files-list h3 {
	margin: 20px 0 10px 0;
}

.product-files-list li {
	margin-bottom: 0.6em;
}

.product-files-list i {
	margin-right: 6px;
}


/* New Product Badge */
.new-product-badge {
	font-family: inherit;
	font-weight: 700;
	padding: 0 10px;
	background-color: var(--main-color);
	color: #fff;
	border-radius: 3px;
}
.woocommerce ul.products li.product .new-product-badge {
	position: absolute;
	top: 10px;
	left: 10px;
}
.single-product .entry-summary .new-product-badge {
	display: inline-block;
	margin-bottom: 5px;
}

/* Product stock */
.stock.out-of-stock {
	color: var(--outofstock) !important;
}
.stock.comingsoon {
	font-size: 14px;
	color: var(--coming-soon) !important;
}
.stock.available-on-backorder {
	color: var(--backorder) !important;
}
.stock.discontinued {
	color: var(--discontinued) !important;
}

/* Loop product attributes */
.loop-product-attributes {
	padding: 10px 0;
	font-size: 14px;
}

.loop-product-attributes span {
	font-weight: 500;
}


/* Warranty info */
.warranty-info {
	color: var(--main-color);
	border-bottom: 1px dotted var(--warranty-bb);
	cursor: pointer;
	margin-bottom: 1.2em;
}

.tooltip {
	position: relative;
	display: inline-block;
}
.tooltip .tooltip-text {
	visibility: hidden;
	width: 320px;
	background-color: #fff;
	color: #000;
	border: 1px solid;
	text-align: center;
	padding: 12px;
	border-radius: 3px;
	position: absolute;
	z-index: 1;
	bottom: 100%;
	left: 0;
	margin-left: 0;
}
.tooltip:hover .tooltip-text {
	visibility: visible;
}

/* cookies */
.cc-floating.cc-theme-classic {
	border: 1px solid !important;
}
.cc-floating .cc-message {
	font-size: .9em;
}

/* GTranslate */
li.menu-item-gtranslate > a.gt-current-wrapper {
	display: none;
}
li.menu-item-gtranslate {
	display: inline-block;
}
li.menu-item-gtranslate ul {
	display: flex;
}
li.menu-item-gtranslate a {
	margin: 0 10px;
}
li.menu-item-gtranslate img {
	display: inline-block;
}

/* google captcha */
.grecaptcha-badge {
	visibility: hidden;
}

/* Single Product */
.woocommerce-product-gallery .flex-viewport img:hover {
	cursor: pointer;
}

/* Cart products img */
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
	width: 70px;
	margin: auto;
}

/* Review order page */
.woocommerce table.woocommerce-checkout-review-order-table td.product-name img,
.woocommerce table.woocommerce-table--order-details td.product-name img {
	float: left;
	width: 70px;
	margin-right: 20px;
}

/* Product swatches */
.product-group-swatches {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin-block: .5em 1.2em;
	overflow-x: auto;
	overflow-y: visible;
	padding-bottom: 8px;
	scrollbar-width: thin;
}
.product-group-swatches a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	border: 1px solid #444;
	padding: .5em;
	border-radius: 3px;
	min-width: 100px;
	width: 100px;
}
.product-group-swatches a:hover {
	border-color: var(--v-green);
}
.product-group-swatches a img {
	height: 60px;
	width: 80px;
	object-fit: scale-down;
}
.product-group-swatches a span {
	font-size: .86em;
	text-align: center;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.product-group-swatches {
		flex-wrap: wrap;
	}
}