.ds-payment-page {
	--ds-payment-bg: #841625;
	--ds-payment-bg-deep: #6f1020;
	--ds-payment-cream: #fefaef;
	--ds-payment-muted: rgba(254, 250, 239, 0.72);
	--ds-payment-line: rgba(254, 250, 239, 0.42);
	--ds-payment-card: rgba(254, 250, 239, 0.07);
	min-height: 0;
	background: transparent;
	color: var(--ds-payment-cream);
	font-family: inherit;
}

.ds-payment-page,
.ds-payment-page * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.ds-payment-page--notice {
	display: grid;
	min-height: 260px;
	place-items: center;
	padding: 32px 20px;
	text-align: center;
}

.ds-payment-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: min(100%, 1180px);
	margin: 0 auto;
	padding: 24px 18px 18px;
}

.ds-payment-header__brand {
	display: inline-grid;
	gap: 0;
	color: var(--ds-payment-cream);
	line-height: 0.95;
	text-decoration: none;
	text-transform: uppercase;
}

.ds-payment-header__brand span {
	font-size: 15px;
	font-weight: 600;
}

.ds-payment-header__brand strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-style: italic;
	font-weight: 600;
	text-transform: none;
}

.ds-payment-header__account {
	display: grid;
	width: 38px;
	height: 38px;
	border: 1px solid var(--ds-payment-line);
	border-radius: 999px;
	place-items: center;
}

.ds-payment-header__account svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.ds-payment-admin-note {
	width: min(100% - 36px, 980px);
	margin: 0 auto 18px;
	padding: 10px 14px;
	border: 1px solid rgba(254, 250, 239, 0.2);
	color: var(--ds-payment-muted);
	font-size: 13px;
}

.ds-payment-layout {
	width: min(100%, 760px);
	margin: 0 auto;
	padding: 18px 18px 48px;
}

.ds-payment-form {
	display: grid;
	gap: 34px;
}

.ds-payment-info,
.ds-payment-section {
	display: grid;
	gap: 20px;
}

.ds-payment-info h2,
.ds-payment-section h2 {
	margin: 0;
	color: var(--ds-payment-cream);
	font-size: clamp(30px, 7vw, 58px);
	font-weight: 700;
	line-height: 0.95;
	text-align: left;
}

.ds-payment-info p {
	max-width: 50rem;
	margin: 0;
	color: var(--ds-payment-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	line-height: 1.45;
}

.ds-payment-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.ds-payment-field--email,
.ds-payment-field--phone {
	grid-column: 1 / -1;
}

.ds-payment-field {
	display: grid;
	gap: 7px;
	color: var(--ds-payment-cream);
}

.ds-payment-field span {
	color: var(--ds-payment-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-style: italic;
	line-height: 1.2;
}

.ds-payment-field input {
	width: 100%;
	min-height: 42px;
	padding: 9px 0;
	border: 0;
	border-bottom: 1px solid var(--ds-payment-line);
	border-radius: 0;
	background: transparent !important;
	color: var(--ds-payment-cream) !important;
	caret-color: var(--ds-payment-cream);
	font: inherit;
	font-size: 17px;
	outline: none;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
	-webkit-text-fill-color: var(--ds-payment-cream);
}

.ds-payment-field .iti input {
	color: var(--ds-payment-cream) !important;
	-webkit-text-fill-color: var(--ds-payment-cream);
}

.ds-payment-field input:-webkit-autofill,
.ds-payment-field input:-webkit-autofill:hover,
.ds-payment-field input:-webkit-autofill:focus {
	box-shadow: 0 0 0 1000px transparent inset !important;
	-webkit-text-fill-color: var(--ds-payment-cream) !important;
	transition: background-color 9999s ease-out;
}

.ds-payment-field input:focus {
	border-bottom-color: var(--ds-payment-cream);
	box-shadow: 0 1px 0 0 var(--ds-payment-cream);
}

.ds-payment-field input.is-invalid {
	border-bottom-color: #ffb3b3;
}

.ds-payment-field--phone .iti {
	width: 100%;
}

.ds-payment-field--phone .iti__flag-container {
	color: #111;
}

.ds-payment-section__heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
}

.ds-payment-promo-toggle {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ds-payment-muted);
	cursor: pointer;
	font: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-style: italic;
	text-align: right;
	text-decoration: underline;
}

.ds-payment-field--promo[hidden] {
	display: none;
}

.ds-payment-promo-input-wrap {
	position: relative;
}

.ds-payment-promo-input-wrap input {
	padding-right: 84px;
}

.ds-payment-promo-apply {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	padding: 6px 0 6px 12px;
	border: 0;
	background: transparent;
	color: var(--ds-payment-cream);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.ds-payment-promo-apply:hover,
.ds-payment-promo-apply:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.ds-payment-promo-error {
	margin: 10px 0 0;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 179, 179, 0.55);
	background: rgba(132, 22, 37, 0.55);
	color: #ffe8e8;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.ds-payment-promo-error[hidden] {
	display: none !important;
}

.ds-payment-field--promo .ds-payment-promo-input-wrap input.is-invalid {
	border-bottom-color: #ffb3b3;
	box-shadow: 0 1px 0 0 #ffb3b3;
}

.ds-payment-plan-summary,
.ds-payment-method {
	border: 1px solid var(--ds-payment-line);
	border-radius: 24px;
	background: transparent;
	color: var(--ds-payment-cream);
}

.ds-payment-plan-summary {
	display: grid;
	gap: 10px;
	padding: 24px;
}

.ds-payment-plan-summary[hidden],
.ds-payment-ticket-plan[hidden] {
	display: none;
}

.ds-payment-plan-summary {
	border-color: transparent;
	background: var(--ds-payment-cream);
	color: var(--ds-payment-bg);
}

.ds-payment-plan-card__price {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 16px;
	font-style: italic;
	font-weight: 700;
}

.ds-payment-plan-card__price--member {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
}

.ds-payment-plan-card__old-price {
	opacity: 0.72;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}

.ds-payment-plan-summary h3 {
	margin: 0;
	color: inherit;
	font-size: 22px;
	line-height: 1.15;
}

.ds-payment-plan-summary p,
.ds-payment-member-upsell-text {
	margin: 0;
	color: currentColor;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	line-height: 1.4;
	opacity: 0.84;
	white-space: pre-line;
}

.ds-payment-plan-card__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 10px;
	padding-top: 14px;
	border-top: 1px solid currentColor;
	font-size: 15px;
}

.ds-payment-benefits-toggle {
	width: fit-content;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 800;
	text-decoration: underline;
}

.ds-payment-benefits {
	display: grid;
	gap: 7px;
	margin: 2px 0 0;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.35;
}

.ds-payment-benefits[hidden] {
	display: none;
}

.ds-payment-ticket-plan {
	--ds-ticket-plan-active-bg: var(--ds-payment-cream);
	--ds-ticket-plan-active-color: var(--ds-payment-bg);
	--ds-ticket-plan-inactive-border: var(--ds-payment-line);
	--ds-ticket-plan-inactive-color: var(--ds-payment-cream);
	--ds-ticket-plan-radius: 24px;
	--ds-ticket-plan-padding: 22px 58px 24px 24px;
	--ds-ticket-plan-gap: 0;
	display: grid;
	gap: 16px;
}

.ds-payment-ticket-plan .ds-ticket-plan__card {
	background: var(--ds-payment-card);
}

.ds-payment-ticket-plan .ds-ticket-plan__card.ds-ticket-plan__card--active {
	border-color: transparent;
	background: var(--ds-ticket-plan-active-bg);
	color: var(--ds-ticket-plan-active-color);
}

.ds-payment-member-checkbox {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 4;
	width: 24px;
	height: 24px;
	margin: 0;
	cursor: pointer;
	border: 1.5px solid currentColor;
	border-radius: 6px;
	background: transparent !important;
	accent-color: currentColor;
	appearance: auto;
	-webkit-appearance: checkbox;
}

.ds-payment-member-checkbox:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.ds-payment-methods {
	display: grid;
	gap: 12px;
}

.ds-payment-method {
	min-height: 0;
	padding: 0;
	border: 0;
}

.ds-payment-method.is-loading {
	min-height: 116px;
}

.ds-payment-method.is-ready {
	min-height: 116px;
}

.ds-payment-message {
	min-height: 20px;
	margin: 0;
	color: var(--ds-payment-muted);
	font-size: 14px;
	line-height: 1.4;
}

.ds-payment-message.is-error {
	color: #ffb3b3;
}

.ds-payment-login-link {
	width: fit-content;
	padding: 10px 14px;
	border: 0;
	border-radius: 999px;
	background: #fff;
	color: var(--ds-payment-bg);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
}

.ds-payment-login-link:hover,
.ds-payment-login-link:focus-visible {
	opacity: 0.92;
}

.ds-payment-submit {
	position: sticky;
	bottom: 16px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	min-height: 64px;
	padding: 18px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--ds-payment-cream);
	color: var(--ds-payment-bg);
	cursor: pointer;
	font: inherit;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	box-shadow: 0 18px 40px rgba(55, 0, 11, 0.24);
}

.ds-payment-submit__label {
	min-width: 0;
	text-align: center;
}

.ds-payment-submit__icon {
	position: absolute;
	right: 24px;
	width: 22px;
	height: 22px;
	object-fit: contain;
	flex: 0 0 auto;
}

.ds-payment-submit:disabled {
	cursor: progress;
	opacity: 0.68;
}

.ds-payment-submit.is-login-required {
	background: #c7c2c2;
	color: #6e6a6a;
	cursor: not-allowed;
	opacity: 1;
	box-shadow: none;
}
