@import url("https://verticalresponse.com/wp-content/themes/verticalresponse/css/font-gotham.css");

.vr-popup-shell {
	--vr-popup-width: 720px;
	--vr-popup-radius: 26px;
	--vr-popup-overlay: #1f2340;
	--vr-popup-overlay-opacity: 0.72;
	--vr-popup-bg: #ffffff;
	--vr-popup-panel: #f8fbff;
	--vr-popup-eyebrow-color: #008ea7;
	--vr-popup-eyebrow-size: 11px;
	--vr-popup-text: #2c2544;
	--vr-popup-muted: #6d6782;
	--vr-popup-accent: #008ea7;
	--vr-popup-button-bg: #802d73;
	--vr-popup-button-text: #ffffff;
	--vr-popup-field-bg: #ffffff;
	--vr-popup-field-border: #d8deeb;
	--vr-popup-media-height: 320px;
	--vr-popup-media-fit: cover;
	font-family: "Gotham A", "Gotham B", Arial, sans-serif;
	inset: 0;
	position: fixed;
	z-index: 999999;
}

.vr-popup-shell[hidden] {
	display: none;
}

.vr-popup-shell.is-active {
	display: block;
}

.vr-popup-shell__overlay {
	background: color-mix(in srgb, var(--vr-popup-overlay) calc(var(--vr-popup-overlay-opacity) * 100%), transparent);
	inset: 0;
	position: absolute;
}

.vr-popup-shell--floating .vr-popup-shell__overlay {
	background: linear-gradient(180deg, rgba(31, 35, 64, 0.04), rgba(31, 35, 64, 0.02));
}

.vr-popup__dialog {
	background: linear-gradient(180deg, var(--vr-popup-bg) 0%, color-mix(in srgb, var(--vr-popup-panel) 58%, white) 100%);
	border: 1px solid rgba(44, 37, 68, 0.08);
	border-radius: var(--vr-popup-radius);
	box-shadow: 0 28px 80px rgba(17, 24, 39, 0.28);
	color: var(--vr-popup-text);
	display: grid;
	grid-template-columns: 1fr 1fr;
	left: 50%;
	max-height: min(88vh, 880px);
	max-width: min(calc(100vw - 40px), var(--vr-popup-width));
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -48%);
	transition: opacity 220ms ease, transform 220ms ease;
	width: min(calc(100vw - 40px), var(--vr-popup-width));
}

.vr-popup-shell.is-active .vr-popup__dialog {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.vr-popup-shell--floating .vr-popup__dialog {
	left: auto;
	max-width: min(calc(100vw - 32px), min(var(--vr-popup-width), 460px));
	top: auto;
	transform: translateY(10px);
	width: min(calc(100vw - 32px), min(var(--vr-popup-width), 460px));
}

.vr-popup-shell--floating.is-active .vr-popup__dialog {
	transform: translateY(0);
}

.vr-popup-shell--floating[data-vr-popup-position="top-left"] .vr-popup__dialog {
	left: 18px;
	right: auto;
	top: 18px;
	bottom: auto;
}

.vr-popup-shell--floating[data-vr-popup-position="top-right"] .vr-popup__dialog {
	left: auto;
	right: 18px;
	top: 18px;
	bottom: auto;
}

.vr-popup-shell--floating[data-vr-popup-position="bottom-left"] .vr-popup__dialog {
	bottom: 18px;
	left: 18px;
	right: auto;
	top: auto;
}

.vr-popup-shell--floating[data-vr-popup-position="bottom-right"] .vr-popup__dialog {
	bottom: 18px;
	left: auto;
	right: 18px;
	top: auto;
}

.vr-popup-shell--floating[data-vr-popup-position="center"] .vr-popup__dialog {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -48%);
}

.vr-popup-shell--floating.is-active[data-vr-popup-position="center"] .vr-popup__dialog {
	transform: translate(-50%, -50%);
}

.vr-popup__dialog--stacked {
	grid-template-columns: 1fr;
}

.vr-popup__dialog--no-media {
	grid-template-columns: 1fr;
}

.vr-popup__dialog--no-media .vr-popup__media {
	display: none;
}

.vr-popup__media {
	background:
		radial-gradient(circle at top left, rgba(249, 157, 28, 0.18), transparent 30%),
		radial-gradient(circle at bottom right, rgba(128, 45, 115, 0.18), transparent 34%),
		linear-gradient(150deg, color-mix(in srgb, var(--vr-popup-accent) 16%, white) 0%, color-mix(in srgb, var(--vr-popup-panel) 78%, white) 100%);
	min-height: var(--vr-popup-media-height);
	position: relative;
}

.vr-popup__media img {
	display: block;
	height: 100%;
	object-fit: var(--vr-popup-media-fit);
	width: 100%;
}

.vr-popup__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow-y: auto;
	padding: 34px 32px 30px;
	position: relative;
}

.vr-popup__close {
	align-items: center;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(44, 37, 68, 0.1);
	border-radius: 999px;
	color: var(--vr-popup-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 24px;
	height: 42px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 42px;
	z-index: 3;
}

.vr-popup__eyebrow {
	color: var(--vr-popup-eyebrow-color);
	font-size: var(--vr-popup-eyebrow-size);
	font-weight: 700;
	letter-spacing: 0.16em;
}

.vr-popup__eyebrow--caps {
	text-transform: uppercase;
}

.vr-popup__eyebrow--normal {
	letter-spacing: 0.04em;
	text-transform: none;
}

.vr-popup__eyebrow--italic {
	font-style: italic;
	letter-spacing: 0.08em;
	text-transform: none;
}

.vr-popup__content h2 {
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 0.95;
	margin: 0;
}

.vr-popup__content > p {
	color: var(--vr-popup-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

.vr-popup__notice {
	border-radius: 16px;
	font-size: 14px;
	font-weight: 600;
	padding: 14px 16px;
}

.vr-popup__notice.is-success {
	background: #ecf7e1;
	color: #2d5a18;
}

.vr-popup__notice.is-error {
	background: #fff1ed;
	color: #a43a23;
}

.vr-popup__form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.vr-popup__fields {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vr-popup__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vr-popup__field--full {
	grid-column: 1 / -1;
}

.vr-popup__field label {
	font-size: 13px;
	font-weight: 700;
}

.vr-popup__required {
	color: #ef4123;
}

.vr-popup__field input,
.vr-popup__field textarea,
.vr-popup__field select {
	background: var(--vr-popup-field-bg);
	border: 1px solid var(--vr-popup-field-border);
	border-radius: 16px;
	box-shadow: inset 0 1px 3px rgba(17, 24, 39, 0.04);
	color: var(--vr-popup-text);
	font-family: inherit;
	font-size: 15px;
	padding: 13px 14px;
	width: 100%;
}

.vr-popup__field textarea {
	min-height: 110px;
	resize: vertical;
}

.vr-popup__field input:focus,
.vr-popup__field textarea:focus,
.vr-popup__field select:focus {
	border-color: color-mix(in srgb, var(--vr-popup-accent) 58%, white);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--vr-popup-accent) 14%, transparent);
	outline: none;
}

.vr-popup__help {
	color: var(--vr-popup-muted);
	font-size: 10px;
	line-height: 1.35;
	margin: 0;
}

.vr-popup__choices {
	display: grid;
	gap: 10px;
}

.vr-popup__choice {
	align-items: flex-start;
	display: flex;
	gap: 10px;
}

.vr-popup__choice input {
	flex: 0 0 auto;
	margin-top: 2px;
	width: auto;
}

.vr-popup__choice span,
.vr-popup__choice a {
	color: var(--vr-popup-text);
	font-size: 14px;
	line-height: 1.45;
}

.vr-popup__choice-copy {
	display: inline;
}

.vr-popup__choice-copy a {
	color: var(--vr-popup-muted);
	font-size: 11px;
	line-height: 1.3;
	margin-left: 6px;
	text-decoration: underline;
	white-space: nowrap;
}

.vr-popup__choice--consent {
	background: color-mix(in srgb, var(--vr-popup-panel) 88%, white);
	border: 1px solid rgba(44, 37, 68, 0.08);
	border-radius: 16px;
	padding: 14px 16px;
}

.vr-popup__submit {
	border: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 18px;
	transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.vr-popup__submit:hover {
	transform: translateY(-1px);
}

.vr-popup__submit[disabled] {
	cursor: wait;
	opacity: 0.72;
}

.vr-popup__submit--pill,
.vr-popup__submit--rounded,
.vr-popup__submit--square,
.vr-popup__submit--outline {
	background: var(--vr-popup-button-bg);
	color: var(--vr-popup-button-text);
}

.vr-popup__submit--pill {
	border-radius: 999px;
}

.vr-popup__submit--rounded {
	border-radius: 18px;
}

.vr-popup__submit--square {
	border-radius: 8px;
}

.vr-popup__submit--outline {
	background: transparent;
	border: 2px solid var(--vr-popup-button-bg);
	color: var(--vr-popup-button-bg);
}

body.vr-popup-open {
	overflow: hidden;
}

@media (max-width: 782px) {
	.vr-popup__dialog,
	.vr-popup__dialog--split {
		grid-template-columns: 1fr;
		max-height: calc(100vh - 30px);
		width: calc(100vw - 24px);
	}

	.vr-popup__media {
		display: none;
	}

	.vr-popup__content {
		padding: 24px 20px;
	}

	.vr-popup__content h2 {
		font-size: 32px;
	}

	.vr-popup__fields {
		grid-template-columns: 1fr;
	}
}
