/* SBS Addons ultra split widget CSS. Generated from sbs-addons.css; scoped rules only. */
:root {
	--sbs-primary: #111827;
	--sbs-secondary: #6b7280;
	--sbs-accent: #CDA65A;
	--sbs-accent-hover: #CDA65A;
	--sbs-border: #e5e7eb;
	--sbs-bg: #ffffff;
	--sbs-soft-bg: #f9fafb;
	--sbs-radius: 14px;
	--sbs-button-radius: 10px;
	--sbs-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}.sbs-dbtn-wrap {
	display: flex;
	width: 100%;
}.sbs-dbtn-align-left .sbs-dbtn-wrap {
	justify-content: flex-start;
}.sbs-dbtn-align-center .sbs-dbtn-wrap {
	justify-content: center;
}.sbs-dbtn-align-right .sbs-dbtn-wrap {
	justify-content: flex-end;
}.sbs-dbtn-align-justify .sbs-dbtn-wrap .sbs-dbtn {
	width: 100% !important;
}.sbs-dbtn {
	--sbs-dbtn-hover-y: -3px;
	--sbs-dbtn-hover-scale: 1.01;
	--sbs-dbtn-icon-hover-x: 5px;

	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 305px;
	min-height: 60px;
	padding: 0 8px 0 28px;
	border: 1px solid transparent;
	border-style: solid;
	border-radius: 0;
	text-decoration: none !important;
	box-sizing: border-box;
	overflow: hidden;
	isolation: isolate;
	cursor: pointer;
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		border-color 0.28s ease,
		transform 0.28s ease,
		box-shadow 0.28s ease;
}.sbs-dbtn:hover,
.sbs-dbtn:focus {
	text-decoration: none !important;
	outline: none;
}.sbs-dbtn--filled {
	background-color: #54be45;
	border-color: #54be45;
	color: #ffffff;
}.sbs-dbtn--outline {
	background-color: rgba(0, 0, 0, 0.16);
	border-color: rgba(255, 255, 255, 0.85);
	color: #ffffff;
}.sbs-dbtn--custom {
	background-color: transparent;
	border-color: currentColor;
	color: inherit;
}.sbs-dbtn__text {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: inherit;
}.sbs-dbtn__iconbox {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex: 0 0 auto;
	color: currentColor;
	border: 0 solid transparent;
	box-sizing: border-box;
	transition:
		background-color 0.28s ease,
		color 0.28s ease,
		transform 0.28s ease,
		border-color 0.28s ease;
}.sbs-dbtn--filled .sbs-dbtn__iconbox {
	background-color: #ffffff;
	color: #111111;
}.sbs-dbtn--outline .sbs-dbtn__iconbox {
	background-color: transparent;
	color: #ffffff;
}.sbs-dbtn__iconbox i,
.sbs-dbtn__iconbox svg,
.sbs-dbtn__iconbox img {
	display: block;
	transition: transform 0.28s ease, color 0.28s ease, fill 0.28s ease, stroke 0.28s ease;
}.sbs-dbtn__iconbox svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}.sbs-dbtn__iconbox svg path {
	fill: currentColor;
}.sbs-dbtn__iconbox i {
	font-size: 26px;
	color: currentColor;
}.sbs-dbtn__iconbox img {
	max-width: 26px;
	max-height: 26px;
	object-fit: contain;
}.sbs-dbtn--anim-lift:hover {
	transform: translateY(var(--sbs-dbtn-hover-y)) scale(var(--sbs-dbtn-hover-scale));
}.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox svg,
.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox i,
.sbs-dbtn--anim-icon-slide:hover .sbs-dbtn__iconbox img {
	transform: translateX(var(--sbs-dbtn-icon-hover-x));
}.sbs-dbtn--anim-shine::before {
	content: "";
	position: absolute;
	inset: -40% auto -40% -70%;
	width: 45%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.32),
		transparent
	);
	transform: skewX(-18deg);
	z-index: 1;
	transition: left 0.7s ease;
}.sbs-dbtn--anim-shine:hover::before {
	left: 125%;
}.sbs-dbtn--anim-pulse:hover {
	animation: sbsDbtnPulse 0.65s ease;
}@keyframes sbsDbtnPulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.035);
	}

	100% {
		transform: scale(1);
	}
}@media (max-width: 767px){.sbs-dbtn {
		width: 100%;
	}.sbs-dbtn__text {
		white-space: normal !important;
	}}@keyframes sbsDualFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}@keyframes sbsDualSlideLeft {
	from {
		opacity: 0;
		transform: translateX(24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}@keyframes sbsDualZoomIn {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}@keyframes sbsDualReveal {
	from {
		opacity: 0;
		clip-path: inset(0 100% 0 0);
	}
	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}@keyframes sbsDualWordPop {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}@keyframes sbsDualMarkerSweep {
	from {
		transform: scaleX(0) skewX(var(--sbs-dual-marker-skew));
	}
	to {
		transform: scaleX(1) skewX(var(--sbs-dual-marker-skew));
	}
}@keyframes sbsDualMarkerPulse {
	0%, 100% {
		transform: scaleX(1) skewX(var(--sbs-dual-marker-skew));
		opacity: 0.75;
	}
	50% {
		transform: scaleX(1.04) skewX(var(--sbs-dual-marker-skew));
		opacity: 1;
	}
}@keyframes sbsDualGradientShift {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}@keyframes sbsBrandMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}@keyframes sbsBlink {
	50% { opacity: 0; }
}@keyframes sbsLineGrow{from{transform:scaleX(0)}to{transform:scaleX(1)}}@keyframes sbsMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}@keyframes sbs-dls-fallback {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}@keyframes sbs-dls-marquee-rtl {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}@keyframes sbs-dls-marquee-ltr {
	from { transform: translate3d(-50%, 0, 0); }
	to { transform: translate3d(0, 0, 0); }
}@keyframes sbsWooBrandsSpin {
	to {
		transform: rotate(360deg);
	}
}@keyframes sbs-access-button-spin {
	to {
		transform: rotate(360deg);
	}
}@keyframes sbs-access-auth-in {
	from { opacity: 0; }
	to { opacity: 1; }
}@keyframes sbs-access-auth-out {
	from { opacity: 1; }
	to { opacity: 0; }
}@keyframes sbs-access-flip-out-signup {
	from { opacity: 1; transform: rotateY(0deg) scale(1); }
	to { opacity: 0.35; transform: rotateY(-88deg) scale(0.985); }
}@keyframes sbs-access-flip-in-signup {
	from { opacity: 0.35; transform: rotateY(88deg) scale(0.985); }
	to { opacity: 1; transform: rotateY(0deg) scale(1); }
}@keyframes sbs-access-flip-out-login {
	from { opacity: 1; transform: rotateY(0deg) scale(1); }
	to { opacity: 0.35; transform: rotateY(88deg) scale(0.985); }
}@keyframes sbs-access-flip-in-login {
	from { opacity: 0.35; transform: rotateY(-88deg) scale(0.985); }
	to { opacity: 1; transform: rotateY(0deg) scale(1); }
}