/** Sparkton 3D Reviews Carousel */
.s3r-widget {
	--s3r-stage-height: 470px;
	--s3r-card-width: 360px;
	--s3r-card-height: 270px;
	--s3r-spread: 235;
	--s3r-depth: 150;
	--s3r-rotate: 36;
	--s3r-offset-y: -10px;
	--s3r-transition: 720ms;
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	isolation: isolate;
}

.s3r-summary,
.s3r-summary:visited {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: 100%;
	margin: 0 0 14px;
	padding: 10px 14px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	color: #1f2937;
	line-height: 1.25;
	text-decoration: none !important;
}
.s3r-summary:hover,
.s3r-summary:focus,
.s3r-summary:active { text-decoration: none !important; }
.s3r-summary-icon { display: inline-flex; width: 28px; height: 28px; flex: 0 0 28px; }
.s3r-summary-icon svg { display: block; width: 100%; height: 100%; }
.s3r-summary-copy { display: flex; flex-direction: column; min-width: 0; }
.s3r-summary-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.s3r-summary-copy span { font-size: .82em; opacity: .72; }

.s3r-stage {
	position: relative;
	width: 100%;
	height: var(--s3r-stage-height);
	min-height: 240px;
	perspective: 1700px;
	perspective-origin: 50% 48%;
	outline: none;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}
.s3r-stage:focus-visible {
	outline: 2px solid rgba(74, 148, 20, .65);
	outline-offset: -3px;
}
.s3r-track {
	position: absolute;
	inset: 0;
	transform-style: preserve-3d;
}
.s3r-item {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(var(--s3r-card-width), calc(100% - 24px));
	height: var(--s3r-card-height);
	margin: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, -50%) translate3d(0, var(--s3r-offset-y), -400px) scale(.72);
	transform-origin: center center;
	transform-style: preserve-3d;
	filter: blur(0);
	will-change: transform, opacity, filter;
	transition:
		transform var(--s3r-transition) cubic-bezier(.22, .75, .18, 1),
		opacity var(--s3r-transition) ease,
		filter var(--s3r-transition) ease,
		visibility 0s linear var(--s3r-transition);
}
.s3r-item.is-fallback-active,
.s3r-widget:not(.s3r-is-ready) .s3r-item:first-child {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%) translate3d(0, var(--s3r-offset-y), 0) rotateY(0deg) scale(1);
}
.s3r-widget.s3r-is-ready .s3r-item {
	transition-delay: 0s;
}
.s3r-item.is-visible {
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}
.s3r-item.is-active { cursor: default; }
.s3r-item.is-side { cursor: pointer; }
.s3r-item[aria-hidden="true"] { pointer-events: none; }

.s3r-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	height: 100%;
	min-width: 0;
	padding: 24px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	box-shadow: 0 16px 46px rgba(15, 23, 42, .14);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	box-sizing: border-box;
}
.s3r-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	min-width: 0;
}
.s3r-author {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.s3r-avatar,
.s3r-avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	margin: 0;
	background: #eef2f6;
	border-radius: 50%;
	color: #374151;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	object-fit: cover;
	overflow: hidden;
}
.s3r-author-copy {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.s3r-name-row {
	display: flex;
	align-items: center;
	gap: 5px;
	min-width: 0;
}
.s3r-name,
.s3r-name:visited {
	display: block;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	color: #111827;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none !important;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.s3r-name:hover,
.s3r-name:focus,
.s3r-name:active { text-decoration: none !important; }
.s3r-role {
	display: block;
	overflow: hidden;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.s3r-verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1a73e8;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}
.s3r-source-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	color: #4a9414;
	opacity: .92;
}
.s3r-source-icon svg { display: block; width: 100%; height: 100%; }
.s3r-stars {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 2px;
	font-size: 16px;
	line-height: 1;
}
.s3r-star { color: #d7dce2; }
.s3r-star.is-filled { color: #ffb000; }
.s3r-review-text {
	display: -webkit-box;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	color: #374151;
	font-size: 15px;
	line-height: 1.55;
}
.s3r-date {
	display: block;
	margin-top: auto;
	color: #6b7280;
	font-size: 12px;
	line-height: 1.3;
}

.s3r-arrow {
	position: absolute;
	top: 50%;
	z-index: 300;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin: 0;
	padding: 0 !important;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .14);
	color: transparent !important;
	font-size: 0;
	line-height: 1;
	cursor: pointer;
	outline: none;
	transform: translateY(-50%);
	transition: transform .22s ease, background-color .22s ease, border-color .22s ease, opacity .22s ease;
}
.s3r-arrow::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-top: 2px solid #111827;
	border-right: 2px solid #111827;
	box-sizing: border-box;
	transition: border-color .22s ease;
}
.s3r-prev { left: 16px; }
.s3r-next { right: 16px; }
.s3r-prev::before { margin-left: 5px; transform: rotate(-135deg); }
.s3r-next::before { margin-right: 5px; transform: rotate(45deg); }
.s3r-arrow:hover,
.s3r-arrow:focus-visible { background: #4a9414; border-color: #4a9414; transform: translateY(-50%) scale(1.06); }
.s3r-arrow:hover::before,
.s3r-arrow:focus-visible::before { border-color: #fff; }
.s3r-arrow:active { transform: translateY(-50%) scale(.95); }
.s3r-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }

.s3r-dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	z-index: 310;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	max-width: calc(100% - 32px);
	transform: translateX(-50%);
}
.s3r-dot {
	display: block;
	width: 22px;
	height: 5px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0 !important;
	background: rgba(17, 24, 39, .18);
	border: 0 !important;
	border-radius: 999px;
	box-shadow: none !important;
	cursor: pointer;
	outline: none;
	transition: width .35s ease, background-color .25s ease, transform .2s ease;
}
.s3r-dot.is-active { width: 58px; background: #4a9414; }
.s3r-dot:hover,
.s3r-dot:focus-visible { transform: scaleY(1.45); }


.s3r-item:focus-visible { outline: none; }
.s3r-item:focus-visible .s3r-card { box-shadow: 0 0 0 3px rgba(74, 148, 20, .28), 0 16px 46px rgba(15, 23, 42, .14); }
.s3r-status {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.s3r-widget.s3r-is-dragging .s3r-item { transition-duration: 0ms !important; }
.s3r-widget.s3r-is-dragging .s3r-stage { cursor: grabbing; }

@media (max-width: 767px) {
	.s3r-widget { --s3r-stage-height: 410px; --s3r-card-width: 86%; --s3r-card-height: 300px; --s3r-spread: 95; --s3r-depth: 70; --s3r-rotate: 18; }
	.s3r-hide-arrows-mobile .s3r-arrow { display: none !important; }
	.s3r-card { padding: 21px; }
	.s3r-name { font-size: 16px; }
	.s3r-review-text { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
	.s3r-item,
	.s3r-arrow,
	.s3r-dot { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
