.sw-valuation-cta {
	position: fixed;
	right: calc(var(--theme-frame-size, 0px) + var(--back-top-side-offset, 25px) + 42px);
	bottom: calc(var(--theme-frame-size, 0px) + var(--back-top-bottom-offset, 25px));
	z-index: 110;
	display: flex;
	align-items: stretch;
	gap: 8px;
	font-family: inherit;
	opacity: 0;
	visibility: hidden;
	transform: translate3d(0, 15px, 0);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

body:has(.ct-back-to-top.ct-show) .sw-valuation-cta {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}

.sw-valuation-cta__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 34px;
	padding: 0 14px;
	border-radius: var(--theme-border-radius, 2px);
	background: var(--theme-palette-color-1);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	box-shadow: var(--theme-box-shadow);
	transition: background 0.3s ease, color 0.3s ease;
	white-space: nowrap;
}

.sw-valuation-cta__link:hover,
.sw-valuation-cta__link:focus-visible {
	background: var(--theme-palette-color-2);
	color: #fff;
	text-decoration: none;
}

.sw-valuation-cta__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	font-weight: 700;
	font-size: 14px;
	opacity: 0.85;
}

.sw-valuation-cta__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: none;
	border-radius: var(--theme-border-radius, 2px);
	background: var(--theme-palette-color-1);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--theme-box-shadow);
	transition: background 0.3s ease, color 0.3s ease;
}

.sw-valuation-cta__toggle:hover,
.sw-valuation-cta__toggle:focus-visible {
	background: var(--theme-palette-color-2);
	color: #fff;
}

.sw-valuation-cta__toggle-icon {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
}

.sw-valuation-cta__toggle-icon::before,
.sw-valuation-cta__toggle-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	background: currentColor;
	transform-origin: center;
}

.sw-valuation-cta[data-state="expanded"] .sw-valuation-cta__toggle-icon::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.sw-valuation-cta[data-state="expanded"] .sw-valuation-cta__toggle-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.sw-valuation-cta[data-state="collapsed"] .sw-valuation-cta__link {
	display: none;
}

.sw-valuation-cta[data-state="collapsed"] .sw-valuation-cta__toggle-icon::before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.sw-valuation-cta[data-state="collapsed"] .sw-valuation-cta__toggle-icon::after {
	transform: translate(-50%, -50%);
}

@media (max-width: 480px) {
	.sw-valuation-cta__link {
		padding: 0 12px;
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sw-valuation-cta__link,
	.sw-valuation-cta__toggle {
		transition: none;
	}
}
