.redpoint-form .redpoint-display-source-hidden {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

.redpoint-form .redpoint-step-slider-control {
	--redpoint-control-accent: #970000;
	--redpoint-slider-selected: #12375b;
	--redpoint-slider-selected-outline: #f0c75e;
	--redpoint-step-position: 0%;
	display: grid;
	gap: 10px;
	padding: 8px 2px 2px;
	position: relative;
	width: 100%;
}

.redpoint-form .redpoint-step-slider-input {
	appearance: none;
	background: transparent;
	cursor: pointer;
	grid-row: 1;
	margin: 0;
	min-height: 32px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.redpoint-form .redpoint-step-slider-input::-webkit-slider-runnable-track {
	background: transparent;
	border-radius: 999px;
	height: 8px;
}

.redpoint-form .redpoint-step-slider-input::-moz-range-track {
	background: transparent;
	border-radius: 999px;
	height: 8px;
}

.redpoint-form .redpoint-step-slider-input::-webkit-slider-thumb {
	appearance: none;
	border: 0;
	height: 24px;
	margin-top: -8px;
	opacity: 0;
	width: 24px;
}

.redpoint-form .redpoint-step-slider-input::-moz-range-thumb {
	border: 0;
	height: 24px;
	opacity: 0;
	width: 24px;
}

@keyframes redpoint-step-slider-glow {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(390%);
	}
}

@keyframes redpoint-step-slider-point-glow {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(240, 199, 94, 0.28), 0 0 8px 2px rgba(240, 199, 94, 0.22);
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		box-shadow: 0 0 10px 4px rgba(240, 199, 94, 0.58), 0 0 20px 9px rgba(240, 199, 94, 0.25);
		transform: translate(-50%, -50%) scale(1.08);
	}
}

@keyframes redpoint-step-slider-selected-tick-glow {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(240, 199, 94, 0.26), 0 0 6px 2px rgba(240, 199, 94, 0.2);
	}

	50% {
		box-shadow: 0 0 8px 3px rgba(240, 199, 94, 0.52), 0 0 15px 7px rgba(240, 199, 94, 0.22);
	}
}

.redpoint-form .redpoint-step-slider-track {
	background: linear-gradient(90deg, #eee3e3 0%, #d98f8f 52%, #970000 100%);
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px rgba(92, 22, 22, 0.08);
	height: 8px;
	left: 14px;
	overflow: visible;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 24px;
	transform: translateY(-50%);
	z-index: 1;
}

.redpoint-form .redpoint-step-slider-track::before {
	animation: redpoint-step-slider-glow 2.2s linear infinite;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 245, 230, 0.88), rgba(255, 255, 255, 0));
	content: "";
	inset: 0 auto 0 -35%;
	opacity: 0.8;
	position: absolute;
	width: 35%;
	will-change: transform;
}

.redpoint-form .redpoint-step-slider-input:disabled + .redpoint-step-slider-track::before {
	animation: none;
	opacity: 0;
}

.redpoint-form .redpoint-step-slider-ticks {
	inset: 0;
	position: absolute;
	z-index: 1;
}

.redpoint-form .redpoint-step-slider-tick {
	background: rgba(255, 255, 255, 0.82);
	height: 6px;
	position: absolute;
	top: 1px;
	transform: translateX(-50%);
	width: 1px;
}

.redpoint-form .redpoint-step-slider-thumb,
.redpoint-form .redpoint-step-slider-tick.redpoint-step-slider-tick-active {
	background: var(--redpoint-control-accent);
	border-color: var(--redpoint-slider-selected-outline);
	border-style: solid;
}

.redpoint-form .redpoint-step-slider-thumb {
	border-width: 3px;
	border-radius: 50%;
	box-shadow: 0 0 8px 2px rgba(240, 199, 94, 0.28);
	height: 16px;
	left: var(--redpoint-step-position);
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: left 360ms cubic-bezier(0.22, 0.8, 0.2, 1), transform 120ms ease;
	animation: redpoint-step-slider-point-glow 2.6s ease-in-out infinite;
	width: 16px;
	z-index: 1;
}

.redpoint-form .redpoint-step-slider-tick.redpoint-step-slider-tick-active {
}

.redpoint-form .redpoint-step-slider-input:focus-visible {
	outline: none;
}

.redpoint-form .redpoint-step-slider-input:focus-visible + .redpoint-step-slider-track .redpoint-step-slider-thumb {
	outline: 2px solid var(--redpoint-slider-selected-outline);
	outline-offset: 3px;
}

.redpoint-form .redpoint-step-slider-input:active + .redpoint-step-slider-track .redpoint-step-slider-thumb {
	transform: translate(-50%, -50%) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
	.redpoint-form .redpoint-step-slider-track::before {
		animation: none;
		opacity: 0;
	}

	.redpoint-form .redpoint-step-slider-thumb,
	.redpoint-form .redpoint-step-slider-tick.redpoint-step-slider-tick-active {
		animation: none;
	}
}

.redpoint-form .redpoint-step-slider-value {
	color: #241717;
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	min-height: 1.35em;
	text-align: center;
	width: 100%;
}

.redpoint-form .select2-container {
	max-width: 100%;
	width: 100% !important;
}

.redpoint-form .select2-container--default .select2-selection--single {
	align-items: center;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	display: flex;
	min-height: 44px;
}

.redpoint-form .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 1.35;
	padding: 10px 38px 10px 14px;
	white-space: normal;
}

.redpoint-form .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px;
	right: 7px;
}

.select2-container--open {
	z-index: 100000;
}
