/* ========================
	CTA - PRODUCTS
======================== */
.products {
	position: relative;
}
@media (max-width: 1399px) {
	.products > .container {
		max-width: 100%;
	}
}
.products .productsGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2em;
	align-items: center;
	justify-content: center;
}
@media (max-width: 1399px) {
	.products .productsGrid {
		gap: 1em;
	}
}
@media (max-width: 767px) {
	.products .productsGrid {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 768px) {
	.products .productsGrid [data-offer=promo] {
		order: 2;
	}
	.products .productsGrid [data-offer=mid] {
		order: 3;
	}
	.products .productsGrid [data-offer=basic] {
		order: 1;
	}
}
.products .title {
	text-align: center;
	margin-bottom: 0.75em;
	font-size: 2.25em;
}
@media (max-width: 599px) {
	.products .title {
		font-size: 1.25em;
	}
}
.products a {
	text-decoration: none;
	color: var(--text-color);
}
.products .item {
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 3px;
	color: var(--text-color);
	background-color: white;
	border-radius: 1em;
	overflow: hidden;
	border: 2px solid var(--secondary-color);
	box-shadow: var(--bs-box-shadow-sm);
}
.products .item:hover {
	scale: 1.025;
}
.products .item .wrapper {
	border-radius: 18px;
	overflow: hidden;
	/*@media (max-width: 767px) {
		display: grid;
		grid-template-areas: 'header header' 'title info' 'img info' 'img totals' 'footer footer';
		grid-template-columns: 1fr 1fr;
		align-items: center;
		column-gap: .5em;
		padding: .5em 0;
	}*/
}
.products .item .item-header {
	grid-area: title;
	padding: 0.25em 0.5em;
	background-color: var(--secondary-color);
	font-weight: 800;
}
.products .item .item-img {
	grid-area: img;
}
.products .item .item-img .supply {
	padding: 1em 0.5em;
	text-align: center;
	line-height: 1;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.products .item .item-img .supply {
		font-size: 1em;
		padding: 0.5em 0.5em 0;
	}
}
.products .item .item-img .supply b {
	display: block;
	font-size: 1.75em;
}
@media (max-width: 767px) {
	.products .item .item-img .supply b {
		font-size: 1.25em;
	}
}
.products .item .item-img img {
	max-height: 200px;
}
.products .item .item-info {
	grid-area: info;
}
.products .item .item-info .price {
	display: flex;
	text-align: start;
	gap: 0.25em;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	align-items: center;
	line-height: 1;
}
.products .item .item-info .price b {
	font-size: 4em;
	text-align: center;
}
.products .item .item-info .price sup {
	font-size: 0.45em;
	top: -0.5em;
}
.products .item .item-info .price span {
	font-weight: 800;
}
@media (max-width: 767px) {
	.products .item .item-info .price span {
		font-size: 0.65em;
	}
}
.products .item .item-info .savings {
	font-size: 0.7em;
	font-weight: 800;
}
.products .item .item-info .savings > div {
	padding: 0.5em;
	align-items: center;
	justify-content: center;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.4196078431);
}
.products .item .item-info .savings > div:first-child {
	border-top: 1px dashed rgba(0, 0, 0, 0.4196078431);
	color: var(--primary-color);
}
.products .item .item-info .savings > div:nth-child(2) {
	display: none;
}
.products .item .item-info .savings span {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	gap: 0.25em;
	line-height: 1;
}
.products .item .item-info .savings span::before {
	content: "\f270";
	font-family: "bootstrap-icons";
	font-size: 1.5em;
	font-weight: normal;
}
@media (max-width: 767px) {
	.products .item .item-info .savings span::before {
		font-size: 1em;
	}
}
.products .item .item-buy {
	grid-area: footer;
}
.products .item .item-buy .button {
	padding: 0.65em;
	margin: 0.5em 0.75em;
}
.products .item .item-buy .button span {
	display: flex;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	gap: 0.25em;
	/*&::before {
		content: '\F23E';
		font-family: 'bootstrap-icons';
		font-weight: normal;
		margin-top: -.1em;
	}*/
}
.products .item .item-buy .card-flags {
	max-width: 220px;
	margin-bottom: 0.5em;
}
@media (max-width: 767px) {
	.products .item .item-buy .card-flags {
		display: none;
	}
}
.products .item .item-totals {
	grid-area: totals;
	font-size: 0.9em;
	padding-bottom: 1em;
}
@media (max-width: 767px) {
	.products .item .item-totals {
		font-size: 0.8em;
	}
}
.products .item .item-totals .totals s {
	text-decoration-color: red;
	text-decoration-thickness: 2px;
}
.products .item .item-totals .totals span {
	color: var(--contrast-color);
}
.products .item .item-totals .shipping {
	font-weight: 800;
	text-transform: uppercase;
}
.products .item .item-totals .shipping span {
	color: #dc3545;
}
.products .item.promo {
	color: white;
	background-color: white;
	text-shadow: 0px 1px rgba(0, 38, 121, 0.6392156863);
	border: 2px solid var(--primary-color);
}
.products .item.promo .wrapper {
	background-image: radial-gradient(var(--secondary-color-dark), var(--primary-color));
}
@media (max-width: 767px) {
	.products .item.promo .wrapper {
		grid-template-areas: "header header" "img info" "img totals" "footer footer";
	}
}
.products .item.promo .item-header {
	grid-area: header;
	background-color: white;
	color: var(--primary-color);
	text-shadow: none;
}
.products .item.promo .item-img img {
	max-height: 240px;
}
.products .item.promo .item-info {
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.products .item.promo .item-info .savings > div {
	color: white;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.4196078431);
}
.products .item.promo .item-info .savings > div:first-child {
	color: var(--contrast-color);
	border-top: 1px dashed rgba(255, 255, 255, 0.4196078431);
}
.products .item.promo .item-info .savings > div:nth-child(2) {
	display: block;
}
.products .item.promo .item-buy .button {
	text-shadow: none;
}
.products .item.promo .item-totals .shipping span {
	color: var(--contrast-color);
}

.no-thanks {
	display: block;
	text-align: center;
	margin: 0 auto;
	color: var(--text-color);
	font-size: 16px;
	max-width: 600px;
	text-decoration: none;
}



/*------CUSTOM------*/


.item-buy .button, .promo .item-buy .button {
    text-decoration: none;
    display: block;
    font-size: 1.5rem;
    padding: 0.4em 0.5em;
	line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(0deg, var(--contrast-color), rgb(255, 243, 79)) !important;
    margin: 1em;
    border-radius: 0.4em;
    cursor: pointer;
    transition: .3s;
}

.item-buy .button:hover, .promo .item-buy .button:hover {
    box-shadow: 0px 4px 10px var(--contrast-color);
    transform: scale(1.05);
}

.item-buy .button span, .promo .item-buy .button span {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-color-dark));
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    -webkit-text-fill-color: transparent;
}

.item-buy .button span::before {
	display: none;
}

@media screen and (max-width: 767px) {
    .item-buy .button {
        padding: 0.65em;
        font-size: 1.15em;
    }
}