:root {
	--hl: #ef9336;

	--b: rgb(60,60,60);
	--w: white;
	--f: #2145a3;
	--s: #7494ce;
	--lgray: rgb(180,180,180);

	--r: #e74c3c;
	--dr: #c0392b;

	--g: #2ecc71;
	--dg: #27ae60;

	--db: #112455;

	--di: rgb(200, 200, 200);

	--mw: 1500px;
}

@font-face {
	font-family: 'Montserrat';
	font-display: swap;
	font-style: normal;
	font-weight: 400;
	src: url('/css/montserrat-v25-latin-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Montserrat Bold';
	font-display: swap;
	font-style: normal;
	font-weight: 600;
	src: url('/css/montserrat-v25-latin-600.woff2') format('woff2');
}

body {
	padding: 0px;
	margin: 0px;

	font-family: 'Montserrat', sans-serif;
	background-color: rgb(252, 252, 252);

	font-size: 14px;
}

input, button, textarea, select {
	font-family: 'Montserrat', sans-serif;

	padding: 12px;
	outline: none;

	border: 1px solid rgb(230, 230, 230);
	border-radius: 0px;

	background-color: rgb(255, 255, 255);
	letter-spacing: 1px;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat';
}

iframe {
	border: 0px;
}

.error {
	border: 1px solid var(--r) !important;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	pointer-events: none;
}

.content {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;

	min-height: 90vh;
	width: 100%;
	!margin-left: 5%;
}

button, .btn {
	position: relative;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;

	vertical-align: top;
	min-height: 42px;
	min-width: 42px;

	transition: 0.1s;
	font-size: 15px;

	border-radius: 5px;
}

button svg, .btn svg {
	position: absolute;
	height: 30px;
	width: 30px;

	top: 5px;
	left: 5px;
}

a.btn {
	align-items: center;
	padding: 0px 20px;
}

.btn {
	background-color: var(--f);
	color: white;
}

.btn:hover {
	background-color: var(--hl);
}

.btn-a {
	background-color: var(--hl);
	color: white;
	border: 1px solid #d47311;
}

.btn-a:hover {
	border: 1px solid #f09942;
	color: rgba(255, 255, 255, 0.8);
}

.btn-g {
	background-color: #27ae60;
	color: white;

	border: 1px solid #27ae60;
}

.btn-g:hover {
	background-color: var(--hl);
	border: 1px solid var(--hl);
}

.btn:active {
	transform: translate(2px, 2px);
}

a.btn {
	color: white !important;
	text-decoration: none !important;
}

.btn a {
	width: 100%;
	height: 100%;

	padding: 12px;
}

.products-list {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;

	width: 100%;
    margin-bottom: 2vw;
	gap: 5px;
}
	
.product {
	position: relative;

	display: flex;
	flex-wrap: wrap;
    flex-direction: column;

	width: 220px;
	height: 320px;

	aspect-ratio: 220 / 340;

	padding: 10px;
	margin: 0px 5px 5px 0px;

	border: 2px solid rgba(200, 200, 200, 0.0);

	background-color: white;
	border-radius: 5px;

	transition: 0.1s;
}

.product a {
	position: absolute;
	display: block;

	width: 100%;
	height: 100%;

	top: 0px;
	left: 0px;

	z-index: 10;
}

.product .p-fav {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: 5px;
	right: 5px;

	width: 30px;
	height: 30px;

	background-color: rgb(240, 240, 240);
	border: 1px solid rgb(235, 235, 235);
	border-radius: 50%;

	z-index: 100;
}

.product .p-fav svg {
	width: 75%;
	height: 75%;
}

.product.favorite .p-fav, .product .p-fav:active {
	background-color: var(--r);
}

.product.out-of-stock .p-add-to-cart {
	background-color: rgb(180, 180, 180);
	pointer-events: none;
}

.product.out-of-stock .p-in-stock {
	display: none;
}

.product .p-out-of-stock {
	display: none;
}

.product.out-of-stock .p-out-of-stock {
	display: flex;
}

.product:hover, .product.active {
	border: 2px solid rgba(239, 147, 54, 0.5);
}

.product .image {
	position: relative;
	width: 100%;
	height: 60%;

	background-color: white;
	!overflow: hidden;
}

.product.out-of-stock .p-title {
	opacity: 0.8;
}

.product .image.out-of-stock {
	opacity: 0.6;
}

.product .p-offer-timer {
	display: block;
	bottom: 18px;

	background-color: rgb(250, 250, 250);
	border: 2px solid rgb(245, 245, 245);

	border-radius: 4px;
	!overflow: hidden;

	width: calc(100% - 20px);
	height: 10px;

	padding: 0px !important;
}

.product .p-offer-timer::after {
	position: absolute;
	bottom: -16px;
	font-size: 12px;
	color: rgb(100, 100, 100);

	content: "Approfitta dell'offerta!";
}

.product .p-offer-timer .progress {
	position: absolute;
	left: 0px;
	top: 0px;

	display: block;
	border-radius: 4px;

	background-color: rgba(255, 50, 50, 0.85);
	height: 100%;
	max-width: 100%;
}

.image .label-col {
	position: absolute;
	top: 5px;
	left: -5px;
}

.image .label-col-bottom {
	position: absolute;
	bottom: 5px;
	left: -5px;
}

.lc-label {
	display: inline-block;
	padding: 5px;
	margin-bottom: 3px;
	
	font-size: 14px;
	font-weight: bold;
	background-color: rgb(200, 200, 200);

	border-radius: 3px;

	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1); 
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1);
}

.lc-label.deal {
	color: white;
	background-color: var(--f);
}

.lc-label.limited {
	color: white;
	background-color: var(--hl);
}

.lc-label.variants {
	padding-right: 8px;
	padding-left: 8px;

	color: black;
	background-color: rgb(240, 240, 240);
}

.product img {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: 100%;

	object-fit: contain;
	object-position: center;
}

.p-title {
	width: 90%;

	!padding: 5px 0px;
	!max-height: 30px;
	margin-top: 0px;
	overflow: hidden;

	font-size: 14px;
}

.p-add-to-cart {
	position: absolute;
	display: none;

	bottom: 35px;
	left: 10px;

	width: calc(100% - 20px);
	padding: 10px 0px;

	background-color: var(--f);
	color: white;
	text-align: center;

	transition: 0.1s;
}

.p-add-to-cart:hover {
	background-color: var(--hl);
}

.p-in-stock, .p-out-of-stock, .p-offer-timer {
	display: flex;
	position: absolute;
	justify-content: flex-start;
    align-items: center;

	bottom: 5px;
	left: 10px;

	!padding-left: 28px;
	font-weight: bold;
	font-size: 14px;

	color: rgb(60, 60, 60);
}

.p-in-stock svg, .p-out-of-stock svg {
	!position: absolute;
	top: -5px;
	left: 0px;

	width: 25px;
	height: 25px;

	margin-right: 5px;
}

.p-price {
	position: absolute;
	bottom: 38px;
	left: 10px;
	font-size: 18px;

	font-weight: bold;
	color: var(--f);
}

.p-price span, span.base-price {
	text-decoration: line-through;
	color: rgba(60, 60, 60, 0.5);

	font-weight: normal;
}

.p-sku {
	display: none;
	padding-top: 5px;

	font-size: 12px;
	opacity: 0.85;
}

.breadcrumb {
	width: 100%;
	padding: 20px 5px 20px 35px;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.breadcrumb ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	list-style: none;
	color: rgb(200, 200, 200);

	font-size: 13px;
	padding: 0px;
	margin: 0px;
}

.breadcrumb li {
	display: inline;
	padding: 0px 10px;
}

.breadcrumb li a {
	color: rgb(120, 120, 120);
}

.breadcrumb li a:hover {
	color: rgb(60, 60, 60);
}

.category {
	cursor: pointer;
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;

	width: 230px;
	height: 80px;
	min-width: 212px;
	font-size: 10px !im;

	!background-image: radial-gradient( circle 757px at 14.6% 44.8%, #2145a3 27.7%, #7494ce 95.9% );
	background-color: var(--f);
	color: white;

	!border: 2px solid rgb(240, 240, 240);
	border-radius: 6px;
	overflow: hidden;

	margin: 0px 5px 5px 0px;
	transition: 0.1s;

	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1); 
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1);
}

.category::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 0px;

	bottom: 0px;
	left: 0px;

	background-color: var(--hl);
	transition: 0.1s;
}

.category:hover {
	!border-bottom: 2px solid rgba(239, 147, 54, 0.5);
}

.category:hover::after {
	height: 6px;
}

.category svg {
	width: 35px;
	height: 35px;

	object-fit: contain;
	object-position: center;

	position: absolute;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 4px;
	border-radius: 4px;

	top: 10px;
	left: 10px;
}

.category.parent {
	!width: 150px;
	!opacity: 0.9;
}

.category.parent .c-cta, .category.parent .c-count {
	display: none;
}

.category.parent .c-title {
	left: 5px;
}

.category.parent svg {
	top: initial;
	left: 5px;
	bottom: 5px;

	width: 25px;
	height: 25px;
}

.category.bg-image {
	background-color: rgb(60, 60, 60) !important;
}

.category.bg-image img {
	width: 100%;
	height: 100% !important;

	!opacity: 0.2 !important;
	object-position: center;
	object-fit: cover;
}

.c-title {
	font-size: 18px;
	line-height: 18px;
	letter-spacing: -1px;
	text-transform: uppercase;

	padding: 5px;
	font-weight: bold;

	position: absolute;

	top: 10px;
	left: 5px;
}

.c-cta {
	position: absolute;
	bottom: 10px;
	right: 10px;

	text-transform: uppercase;
	background-color: rgba(255, 255, 255, 0.30);
	border-radius: 6px;

	font-size: 12px;
	padding: 4px 10px;
}

.c-count {
	position: absolute;
	bottom: 10px;
	left: 10px;

	font-size: 14px;
	opacity: 0.9;
}

.hide {
	visibility: hidden;
}

.hide-display {
	display: none !important;
}

.disabled {
	pointer-events: none;
	background-color: rgb(200, 200, 200);
	border-color: rgb(160, 160, 160);
}

input.disabled {
	pointer-events: none;
	background-color: rgb(230, 230, 230);
	color: rgb(120, 120, 120);
}

.reviews, .reviews-row {
	display: flex;
	margin-top: 0px;
	flex-wrap: wrap;
    flex-direction: row;
}

.reviews-row {
	flex-direction: column;
}

.review-box {
	position: relative;
	display: flex;
	flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;

	width: 220px;
	!height: 120px;

	padding: 15px;
	font-size: 14px;
	margin: 0px 10px 10px 0px;

	background-color: white;
	border-radius: 10px;

	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1); 
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.1);

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.reviews-row .review-box {
	width: 100%;
	height: 90px;

	padding: 10px 15px 20px 15px;

	flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.stars {
	width: 130px;
	height: 26px;

	object-fit: cover;
}

.stars-5 {
	object-position: 0% 4%;
}

.stars-4 {
	object-position: 0% 21%;
}

.stars-3 {
	object-position: 0% 40%;
}

.stars-2 {
	object-position: 0% 59%;
}

.stars-1 {
	object-position: 0% 81%;
}

.stars-0 {
	object-position: 0% 100%;
}

.rb-author {
	position: absolute;
	display: flex;
	align-items: center;
    justify-content: flex-start;

    width: calc(100% - 40px);

	bottom: 15px;
	left: 20px;
}

.reviews-row .rb-author {
	width: auto;
	bottom: 10px;
	left: 15px;

	!flex-direction: row-reverse;
	!text-align: right;
}

/*
.rb-text {
	cursor: pointer;

	height: 118px;
	overflow: hidden;

	padding: 2px;
	margin-bottom: 50px;
}
*/

.reviews-row .rb-text {
	position: absolute;
	right: 60px;
	top: 5px;

	width: calc(100% - 260px);
	height: 53%;

	padding: 10px 0px 5px 20px;
}

.rb-author-name {
	font-size: 13px;
	padding: 0px 4px;
}

.rb-author-name i {
	font-size: 11px;
	opacity: 0.85;
}

.rb-author-img {
	width: 40px;
	height: 40px;

	margin-right: 5px;
	border-radius: 50%;
}

.rb-glogo {
	position: absolute;

	right: 0px;
	bottom: 0px;

	width: 25px;
	height: 25px;

	opacity: 0.8;
}

.rb-rate {
	position: absolute;
	display: flex;
	align-items: center;

	right: 10px;
	bottom: 0px;
}

.rb-rate button {
	background-color: transparent;
	border: 0px;
	padding: 4px;

	min-width: 25px;

	opacity: 0.5;
	transition: 0.1s;
}

.rb-rate button svg {
	top: 12px;

	width: 20px;
	height: 20px;
}

.rb-rate button:hover, .rb-rate button.liked {
	opacity: 1;
}

.rb-rate b {
	padding: 6px 0px 0px 6px;
	font-size: 14px;

	color: var(--f);
	opacity: 0.8;
}

.page {
	width: 100%;
	max-width: 1200px;
	padding: 20px 20px 120px 20px;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.page b {
	color: var(--f);
}

.page h2 {
	width: 100%;
	text-align: center;

	font-size: 34px;
	text-transform: uppercase;

	color: var(--b);
}

.page h3 {
	font-size: 28px;
	text-transform: uppercase;
	color: var(--f);
}

.page a {
	color: var(--f);
	font-weight: bold;
	text-decoration: underline;
}

.page a:hover {
	color: var(--hl);
}

.page li {
	padding-bottom: 10px;
}

.page .full-img {
	width: 100%;
}

.page .p-middle {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.page .p-middle p {
	text-align: center;
}

.page .l-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;

	margin-top: 20px;
	font-weight: bold;
}

.page .l-title::before {
	content: '';
	display: inline-block;

	background-color: black;
	!border-radius: 50%;

	width: 3px;
	height: 3px;

	margin: 0px 5px;
}

.cf-input {
	position: relative;
	padding-top: 24px;

	margin: 2px;

	width: calc(49% - 2px);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.cf-input label {
	position: absolute;
	white-space: nowrap;
	overflow: hidden;

	width: 100%;

	top: 3px;
	left: 5px;

	font-size: 14px;
	!z-index: -1;
}

.cf-input input, .cf-input select {
	width: 99%;
	border: 1px solid rgb(230, 230, 230);
	border-radius: 4px;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.cf-input a {
	color: var(--s);
	font-weight: bold;
}

.cf-input a:hover {
	color: var(--f);
}

.cf-input textarea {
	width: 100%;
	height: 250px;
}

.cf-checkbox {
	width: 90%;
	display: flex;
	justify-content: flex-start;
	align-items: center;

	font-size: 14px;
}

.cf-checkbox input {
	width: auto;
}

.cf-checkbox label {
	cursor: pointer;
	display: block;
	position: relative !important;

	padding: 0px 0px 6px 4px;
}

.required label::after, .cf-checkbox.required label::before {
	content: ' * ';
	color: var(--dr);
}

.cf-checkbox.required label::after {
	content: '';
	color: var(--dr);
}

.alert, .warning, .info {
	display: inline-block;

	padding: 10px;
	background-color: rgba(231, 76, 60, 0.20);
	border: 1px solid rgba(231, 76, 60, 0.40);

	margin: 20px 0px 10px 0px;
	border-radius: 2px;
}

.alert a, .warning a, .info a {
	font-weight: bold;
	color: var(--f);
}

.warning {
	background-color: rgba(243, 156, 18, 0.20);
	border: 1px solid rgba(243, 156, 18, 0.40)
}

.info {
	background-color: rgba(52, 152, 219, 0.20);
	border: 1px solid rgba(52, 152, 219, 0.40)
}

.r-title {
	font-size: 16px;
	border-left: 4px solid var(--f);
	font-weight: bold;

	margin-bottom: 10px;
	padding: 5px 10px;
}

.form {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;

	width: 100%;
	padding: 10px;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.inner-content {
	width: 100%;
	max-width: 1300px;
	padding: 20px;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;

	overflow: hidden;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.form hr {
	width: 100%;
	border: 0px;

	margin: 20px 0px;
}

.form i {
	font-size: 13px;
}

.back-to-top {
	display: none;
	cursor: pointer;

	position: fixed;
	bottom: 15px;
	right: 10px;

	background-color: var(--f);
	border-radius: 50%;
	padding: 3px;

	z-index: 1000;
	opacity: 0.8;
}

.back-to-top svg {
	width: 40px;
	height: 40px;
}

.page-map {
	margin-top: 0px;
	margin-bottom: 5px;

	list-style-type: decimal;
}

.page-map li {
	cursor: pointer;
	padding: 1px 0px;
	text-transform: capitalize;

	color: var(--f);
	font-size: 15px;
}

.page-map li:hover {
	color: var(--s);
	text-decoration: underline;
}

.page-map b {
	font-size: 18px;
	color: var(--b);

	margin-left: -10px;
}

#iubenda_div {
	position: fixed;

	bottom: 0px;
	left: 0px;
}

.box-title .open, .cart-row.collapsed .box-title .close {
	display: block;
}

.cart-row.collapsed .box-title .open, .box-title .close {
	display: none;
}

.box-title {
	cursor: pointer;
	display: flex;
	align-items: center;

	margin-bottom: 10px;
	padding: 10px 10px;

	border-left: 4px solid var(--f);

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.box-title .icon {
	width: 25px;
	height: 25px;

	margin-left: 5px;
}

.box-title .icon svg {
	width: 100%;
	height: 100%;
}

.box-title {
	font-weight: bold;
	font-size: 18px;
}

.cart-row.collapsed {
	max-height: 50px;

	background-color: inherit;
	border-color: inherit;
}

.cart-row.disabled .box-title {
	border-left: 4px solid var(--di);
	color: rgb(160, 160, 160);
}

.cart-row.disabled .box-title svg polyline {
	stroke: rgb(160, 160, 160) !important;
}

.cart-row {
	display: flex;
	flex-direction: column;

	width: 100%;
	height: auto;
	margin-bottom: 30px;

	overflow: hidden;
	transition: 0.2s;
}

.btn-confirm {
	transition: 0.1s;
}

.cart-row.done .btn-confirm {
	!background-color: rgb(200, 200, 200);
	opacity: 0;
	pointer-events: none;
}

.account-div {
	width: 100%;
	padding: 20px;
}

.account-content {
	flex-direction: row;
}

.no-products {
	pointer-events: none;

	font-size: 25px;
	padding: 30px;
}

.cs-table {
	width: 100%;
	!background-color: rgba(255, 255, 255, 0.8);

	margin: 0px 0px 30px 0px;
	border-collapse: collapse;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.cs-table th {
	text-align: left;
	text-transform: uppercase;
	font-size: 14px;

	border-bottom: 1px solid rgba(0, 0, 0, 0.20);
	padding: 5px 5px;
}

.cs-table img {
	width: 80px;
	height: 80px;

	object-fit: contain;
	object-position: center;
	background-color: white;
}

.cs-table td {
	padding: 5px 10px;
}

.cs-table a {
	display: block;
	width: 100%;
	height: 100%;
}

.cs-table .remove {
	cursor: pointer;

	font-weight: bold;
	font-size: 20px;
	color: darkred
}

.cs-table tr:nth-child(even) {background: #FFF}

.cs-table svg {
	width: 26px;
	height: 26px;
}

.table-container {
	width: 100%;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.message-alert {
	position: fixed;
	left: 0px;
	bottom: 0px;

	background-color: #e74c3c;
	color: white;
	text-align: center;
	font-size: 14px;

	padding: 6px 3px;
	width: 100%;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */

	z-index: 900;
}

.product.filled div {
	background: linear-gradient(270deg, #ddd, #eee, #ddd);
	background-size: 600% 600%;

	-webkit-animation: loading_gradient 3s ease infinite;
	-moz-animation: loading_gradient 3s ease infinite;
	animation: loading_gradient 3s ease infinite;
}

@-webkit-keyframes loading_gradient {
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}

@-moz-keyframes loading_gradient {
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}

@keyframes loading_gradient {
	0%{background-position:0% 50%}
	50%{background-position:100% 50%}
	100%{background-position:0% 50%}
}

.product.filled .p-title {
	height: 60px;
	padding: 0px;

	margin: 5px 0px;
}

.product.filled .p-price {
	width: 70%;
}


.product.filled .p-in-stock {
	width: 80%;
	margin-bottom: 5px;
}

.product .p-title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;

	text-align: left !important;
}

.rb-text {
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;

	cursor: pointer;
	margin-bottom: 50px;
}

.wa-widget {
	position: fixed;
	bottom: 70px;
	right: 2px;

	width: 60px;
	height: 60px;

	z-index: 100000;
}

.wa-widget img {
	object-position: center;
	object-fit: contain;

	width: 100%;
	height: 100%;
}

.desktop-hide {
	display: none !important;
}

.status--1, .status-0 {
	border-left: 0px;
	border-left: 4px solid var(--hl);
	!background-color: var(--hl);

	!color: white;
}

.status-1 {
	border-left: 4px solid var(--f);
}

.status-3, .status-4 {
	border-left: 4px solid var(--g);
}

.status-5, .status-6 {
	border-left: 4px solid var(--r);
}

.max-lines-2 {
	overflow: hidden;
	max-height: 813px;
}

.max-lines-3 {
	overflow: hidden;
	max-height: 813px;
}

.iubenda-tp-btn, .iubenda-cs-preferences-link {
	display: none !important;
	visibility: hidden !important;
}

.btn-iubenda-new {
	position: fixed;

	bottom: 200px;
	right: -3px;

	width: 37px;
	height: 34px;
	border-radius: 4px;

    background-color: white;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%231CC691' fill-rule='evenodd' d='M16 7a4 4 0 0 1 2.627 7.016L19.5 25h-7l.873-10.984A4 4 0 0 1 16 7z'/%3E%3C/svg%3E") !important;
    background-size: contain;
}

.cl-filter-box li.li-inline {
	display: inline-block;
	text-transform: none;

	background-color: rgb(250, 250, 250, 1.0);
	margin: 2px;
}

.staff-card {
	position: relative;
	display: flex;
	flex-direction: column;

	width: 30%;
	max-width: 300px;
	height: auto;
	max-height: 450px;

	aspect-ratio: 2 / 3.5;
	border-radius: 5px;

	background-color: white;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.05);
	overflow: hidden;

	font-size: 13px;
}

.staff-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;

	object-fit: cover;
	object-position: center;

	z-index: 2;
}

.staff-card p, .staff-card .sc-name {
	margin: 0px;
	padding: 10px 10px 0px 10px;

	z-index: 2;
}

.staff-card .sc-name {
	color: var(--f);

	font-size: 24px;
	font-weight: bold;
}

.staff-card .sc-background {
	position: absolute;

	bottom: 0px;
	left: 0px;

	z-index: 0;
}

.staff-card .sc-image {
	!border-bottom: 1px dashed white;
	border-radius: 5px;
}

.staff-card .sc-text {
	z-index: 2;
}

.newsletter-div {
	display: flex;
	align-items: center;
	position: relative;

	width: 100%;
	padding: 50px 0px;

	color: white;
}

.newsletter-div img {
	position: absolute;
	top: 0px;
	left: 0px;

	height: 100%;

	z-index: -1;

	object-position: center;
	object-fit: cover;
}

.nld-title, .nld-form {
	display: flex;
	width: 50%;

	align-content: center;
	align-items: center;
}

.nld-title svg {
	object-fit: contain;
	object-position: center;

	padding: 5px;
	height: 100px;
	width: 200px;
}

.nld-title p {
	margin: 0px;
	padding: 10px;
}

.nld-title b {
	display: block;
	font-size: 24px;
}

.nld-title i {
	font-size: 12px;
	height: auto;
}

.nld-form {
	justify-content: flex-end;
	padding-right: 40px;
}

.nld-form input {
	width: 50%;
	margin-right: 10px;
}

.trust-us .tu-card {
	display: flex;
	align-items: center;
	justify-content: space-around;

	width: 250px;
	flex-wrap: nowrap;

	border-radius: 4px;
	border: 1px solid rgb(250, 250, 250);
	!background-color: rgba(255, 255, 255, 0.8);

	margin: 5px;
	padding: 0px 10px;
}

.trust-us {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;

	pointer-events: none;
}

.trust-us .tu-card svg {
	width: 65px;
	height: 65px;

	margin-right: 10px;
}

.trust-us .tu-card p {
	font-size: 16px;
	color: rgb(100, 100, 100);
}

.trust-us .tu-card p b {
	display: block;
	color: black;
}

/* BLOG */

.blog-list {
	display: flex;
	flex-direction: column;
}

.blog-box {
	position: relative;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	width: 100%;
	max-width: 1100px;
	max-height: 250px;

	overflow: hidden;
	!border: 1px solid rgb(200, 200, 200, 1.0);
	border-radius: 4px;

	margin-bottom: 20px;
	!margin-left: 20px;
	padding: 10px;

	text-decoration: none;
	color: black;
	border-radius: 5px;

	font-size: 16px;
	transition: 0.1s;
}

.blog-box:hover {
	background-color: white;
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.035); 
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.035);
}

.blog-box .bb-image {
	width: 350px;
	height: 250px;

	border-radius: 5px;
	overflow: hidden;
}

.blog-box .bb-image img {
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;
}

.blog-box b {
	display: block;
	margin-bottom: 0px;
}

.blog-box .bb-content {
	width: calc(90% - 350px);

	padding: 20px;
}

.blog-box .bb-content p {
	margin: 5px 0px 10px 0px;
	padding: 0px;

	!max-height: 65%;
	overflow: hidden;
}

.blog-box .bb-date {
	font-weight: bold;
	font-size: 12px;
}

.blog-main-image {
	width: 80%;
	height: auto;

	aspect-ratio: 16 / 9;

	margin-left: 10%;
	margin-bottom: 20px;

	object-fit: cover;
	object-position: center;
}

.bl-widget .blog-box {
	flex-direction: column;
	max-height: inherit;

	max-width: 25%;
}

.bl-widget .blog-box .bb-content {
	width: 100%;
	padding: 10px 0px;
}

.bl-widget .blog-box .bb-image {
	width: 100%;
}

.blog-list.bl-widget {
	flex-direction: row;
	justify-content: space-evenly;
}

.blog-others {
	font-size: 30px;
}

.category-description {
	padding: 2% 0px;
	margin: 15px 10% 0px 10%;

	border-top: 1px solid rgb(230, 230, 230);
	color: rgb(60, 60, 60);
}

.btn-category {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 6px 16px;
	margin: 3px;

	height: auto;
	min-height: auto;

	border-radius: 25px;
	font-size: 16px;

	border: 1px solid #1046A8;
	color: #1046A8;

	transition: 0.05s;
}

.btn-category {
	border: 1px solid #1046A8;
	background: rgb(16,70,168);
	!background: linear-gradient(270deg, rgba(16,70,168,1) 0%, rgba(26,96,222,1) 100%);

	color: white;
}

.btn-category.back {
	border: 1px solid #fda335;
	color: #FD8C02;
}

.btn-category.back {
	border: 1px solid #fda335;
	background: rgb(253,140,2);
	!background: linear-gradient(270deg, rgba(253,140,2,1) 0%, rgba(255,106,0,1) 100%);

	color: white;
}

.btn-category:hover {
	color: rgb(16,70,168);
	background-color: white;
}

.lc-label img {
	width: 30px;
	height: auto;

	aspect-ratio: 1 / 1;
	object-position: center;
	object-fit: contain;

	margin-left: 5px;
}

.lc-label.pallet {
	display: flex;
	align-items: center;

	color: white;
	background-color: rgb(40, 40, 40);
}

.p-pallet {
	position: absolute;

	bottom: 40%;
	right: 0px;

	width: 30% !important;
	height: auto !important;

	aspect-ratio: 1 / 1;
	object-position: bottom !important;
	object-fit: contain;

	margin-left: 5px;
}

.p-price i {
	color: black;
	font-weight: normal;

	font-size: 14px;
}

.category-meta h1, .category-meta p {
	padding: 10px 15px;
	margin: 0px;

	opacity: 0.9;
}

.category-meta .category-bg {
	width: 100%;
	height: 20vw;

	object-fit: cover;
	object-position: center;

	opacity: 0.5;
}

.content-shop {
	width: 100%;
	max-width: var(--mw);
}

.p-min-stamp {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;

	bottom: 0px;
	right: 15px;

	background-image: url('/content/circle.webp');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;

	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;

	color: white;
	font-weight: bold;
	font-size: 14px;
}

.p-min-stamp.size-1 {
	font-size: 12px !important;
}

.p-min-stamp.size-2 {
	font-size: 10px !important;
}

.flag {
	aspect-ratio: 3 / 2;

	width: 20px;
	height: auto;
	background-color: transparent;

	object-fit: cover;
	object-position: center;
}

.btn svg {
	position: initial;
	display: none;

	width: 18px;
	height: 18px;

	margin-left: 6px;
}

.btn.loading {
	pointer-events: none;
	background-color: rgb(165, 165, 165);
	border-color: rgb(165, 165, 165) !important;
}

.btn.loading svg {
	display: block;
	-webkit-animation: rotating 1s linear infinite;
}

@-webkit-keyframes rotating {
	from{
		-webkit-transform: rotate(0deg);
	}

	to{
		-webkit-transform: rotate(360deg);
	}
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 200px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 80%;
	left: 50%;
	margin-left: -100px;

	opacity: 0;
	transition: opacity 0.35s;
	
	font-size: 12px;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext, .tooltip:active .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.iub__us-widget {
	display: none !important;
}