<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-carousel-container .wrapper {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	overflow: hidden;
	transform: none;

	background-color: #fff;

	/*hide scrollbar*/
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.product-carousel-container {
	display: block;
	position: relative;
	overflow: hidden;
	/*hide scrollbar*/
	-ms-overflow-style: none;
	scrollbar-width: none;
	margin: 2rem 0 3rem;
}

.product-carousel-container .wrapper::-webkit-scrollbar,
.product-carousel-body::-webkit-scrollbar,
.product-carousel-container::-webkit-scrollbar {
	display: none;
}

.product-carousel-body {
	position: relative;
	height: auto;
	/*margin: 0px auto;*/

	transition: left 0ms ease-in-out;

	/*display: flex;
                justify-content: flex-start;
                align-items: center;*/
	display: grid;
	grid-auto-flow: column;
	width: fit-content;

	overflow-y: hidden;
	overflow-x: scroll;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;

	/*hide scrollbar*/
	-ms-overflow-style: none;
	scrollbar-width: none;
	scroll-behavior: smooth;
}

.product-carousel-container button.carousel-button {
	position: absolute;
	top: 46%;
	transform: translateY(-100%);
	z-index: 10;
	opacity: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(0, 0, 0, 0.1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: opacity 250ms ease-in-out, opacity 250ms ease-in-out;
}

.product-carousel-container button.carousel-button:hover {
	background: rgba(255, 255, 255, 0.5);
}

.product-carousel-container button.carousel-button span {
	border: solid #333;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 5px;
	background: none;

	/*border-radius: 50%;*/
}

.product-carousel-container button.carousel-button.next {
	right: 1%;
	padding-right: 10px;
}

.product-carousel-container button.carousel-button.next span {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.product-carousel-container button.carousel-button.previous {
	left: 1%;
	padding-left: 10px;
}

.product-carousel-container button.carousel-button.previous span {
	left: 1%;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.product-carousel-container:hover button.carousel-button {
	opacity: 1;
}

.product-carousel-body .custom-carousel-item {
	position: relative;
	/*border: 1px solid orange;*/
	box-sizing: border-box;
	/*display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;*/

	min-width: 20vw;
	/*align-self: center;*/
	margin: 0;
	padding: 0 5px;
	cursor: pointer;
	/*scroll-snap-align: center !important;*/
	/*scroll-snap-stop: normal;*/
}

.product-carousel-body .custom-carousel-item .text-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	/*border: 1px solid white;*/
	padding: 0.5em 0;
}

.product-carousel-body .custom-carousel-item .image-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.product-carousel-body .custom-carousel-item .image-container img {
	max-width: 100%;
	height: auto;
	display: block;
}

.product-carousel-body .custom-carousel-item p,
.product-carousel-body .custom-carousel-item a {
	font-family: 'proxima-nova', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
		'Segoe UI Symbol', 'Noto Color Emoji';
	font-size: 0.8725rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.38;
	letter-spacing: normal;
	text-align: center;
	color: #000;
}

.product-carousel-body .custom-carousel-item a {
	font-size: 0.75rem;
	text-decoration: none;
	line-height: 1;
	border-bottom: 1px solid #000;
}

@media screen and (max-width: 768px) {
	.product-carousel-container button.carousel-button {
		top: 38%;
		opacity: 1;
		height: 40px;
		width: 40px;
	}

	.product-carousel-container button.carousel-button.next {
		padding-right: 20px;
	}
	.product-carousel-container button.carousel-button.previous {
		padding-left: 20px;
	}

	.product-carousel-container .wrapper {
		width: 100%;
		display: flex;
		overflow: hidden;
		transform: none;
	}

	.product-carousel-body {
		overflow-y: hidden;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;

		/*hide scrollbar*/
		-ms-overflow-style: none;
		scrollbar-width: none;
		scroll-behavior: smooth;
	}

	.product-carousel-body::-webkit-scrollbar {
		display: none;
	}

	.product-carousel-body .custom-carousel-item {
		min-width: 50vw;
		scroll-snap-align: center;
		scroll-snap-stop: normal;
	}

	.product-carousel-body .custom-carousel-item p br {
		display: none;
	}
}
</pre></body></html>