.giveo-events-widget {
	--giveo-events-primary: #c6002b;
	--giveo-events-primary-dark: #9e0022;
	--giveo-events-focus: #2563eb;
	--giveo-events-text: #172033;
	--giveo-events-muted: #64748b;
	--giveo-events-border: #dbe2ea;
	--giveo-events-soft: #f7f9fc;
	--giveo-events-success: #087f5b;
	--giveo-events-success-bg: #ecfdf5;
	--giveo-events-error: #b42318;
	--giveo-events-error-bg: #fff1f0;
	--giveo-events-warning: #a15c00;
	--giveo-events-warning-bg: #fff8e6;
	--giveo-events-trigger-align: center;
	--giveo-events-trigger-background: #c99a6b;
	--giveo-events-trigger-background-hover: #b88759;
	--giveo-events-trigger-color: #fff;
	--giveo-events-trigger-color-hover: #fff;
	--giveo-events-trigger-font-size: 17px;
	--giveo-events-radius: 18px;
	display: flex;
	flex-direction: column;
	align-items: var(--giveo-events-trigger-align);
	gap: 8px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}

.giveo-events-widget *,
.giveo-events-widget *::before,
.giveo-events-widget *::after {
	box-sizing: border-box;
}

.giveo-events-widget .giveo-events-open-button,
.giveo-events-widget .giveo-events-primary-button,
.giveo-events-widget .giveo-events-secondary-button {
	appearance: none;
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 20px;
	font: inherit;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease, opacity .16s ease, transform .16s ease;
}

.giveo-events-widget .giveo-events-open-button,
.giveo-events-widget .giveo-events-primary-button {
	background: var(--giveo-events-primary);
	color: #fff;
	box-shadow: 0 10px 22px rgb(198 0 43 / 18%);
}

.giveo-events-widget .giveo-events-open-button {
	min-height: 56px;
	padding: 16px 38px;
	border-radius: 999px;
	max-width: 100%;
	background: var(--giveo-events-trigger-background);
	color: var(--giveo-events-trigger-color);
	box-shadow: 0 10px 24px rgb(153 105 61 / 18%);
	font-size: var(--giveo-events-trigger-font-size);
	font-weight: 800;
	letter-spacing: .01em;
	overflow-wrap: anywhere;
	text-transform: uppercase;
	white-space: normal;
}

.giveo-events-widget .giveo-events-open-button:focus {
	border: 0;
	background: var(--giveo-events-trigger-background);
	color: var(--giveo-events-trigger-color);
	box-shadow: 0 10px 24px rgb(153 105 61 / 18%);
}

.giveo-events-widget .giveo-events-open-button:hover {
	border: 0;
	background: var(--giveo-events-trigger-background-hover);
	color: var(--giveo-events-trigger-color-hover);
	box-shadow: 0 12px 28px rgb(153 105 61 / 24%);
	transform: translateY(-1px);
}

.giveo-events-widget .giveo-events-open-button:active {
	border: 0;
	background: var(--giveo-events-trigger-background-hover);
	color: var(--giveo-events-trigger-color-hover);
}

.giveo-events-widget .giveo-events-primary-button:focus {
	border: 0;
	background: var(--giveo-events-primary);
	color: #fff;
	box-shadow: 0 10px 22px rgb(198 0 43 / 18%);
}

.giveo-events-widget .giveo-events-primary-button:hover,
.giveo-events-widget .giveo-events-primary-button:active {
	border: 0;
	background: var(--giveo-events-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.giveo-events-widget .giveo-events-secondary-button {
	border: 1px solid var(--giveo-events-border);
	background: #fff;
	color: var(--giveo-events-text);
	box-shadow: none;
}

.giveo-events-widget .giveo-events-secondary-button:focus {
	border: 1px solid var(--giveo-events-border);
	background: #fff;
	color: var(--giveo-events-text);
	box-shadow: none;
}

.giveo-events-widget .giveo-events-secondary-button:hover,
.giveo-events-widget .giveo-events-secondary-button:active {
	border-color: #aab6c5;
	background: var(--giveo-events-soft);
	color: var(--giveo-events-text);
	transform: translateY(-1px);
}

.giveo-events-widget .giveo-events-primary-button:focus-visible,
.giveo-events-widget .giveo-events-secondary-button:focus-visible,
.giveo-events-widget .giveo-events-modal__close:focus-visible,
.giveo-events-checkout input:focus-visible,
.giveo-events-checkout select:focus-visible,
.giveo-events-checkout textarea:focus-visible,
.giveo-events-checkout a:focus-visible {
	outline: 3px solid rgb(37 99 235 / 30%);
	outline-offset: 2px;
}

.giveo-events-widget .giveo-events-open-button:focus-visible {
	outline: 3px solid rgb(153 105 61 / 42%);
	outline-offset: 3px;
}

.giveo-events-widget .giveo-events-open-button:disabled,
.giveo-events-widget .giveo-events-primary-button:disabled,
.giveo-events-widget .giveo-events-secondary-button:disabled {
	cursor: not-allowed;
	opacity: .58;
	transform: none;
}

.giveo-events-widget .giveo-events-open-button.is-loading,
.giveo-events-widget .giveo-events-primary-button.is-loading,
.giveo-events-widget .giveo-events-secondary-button.is-loading {
	cursor: wait;
	opacity: .7;
}

.giveo-events-availability-message {
	margin: 0;
	color: var(--giveo-events-muted);
	font-size: 14px;
	line-height: 1.4;
}

.giveo-events-modal[hidden],
.giveo-events-step[hidden],
.giveo-events-card-fields[hidden],
.giveo-events-response[hidden],
.giveo-events-pix-result[hidden],
.giveo-events-boleto-result[hidden],
.giveo-events-result__order[hidden],
.giveo-events-result__actions [hidden],
.giveo-events-order-summary [hidden],
.giveo-events-pix-result [hidden],
.giveo-events-boleto-result [hidden] {
	display: none !important;
}

html.giveo-events-modal-open,
body.giveo-events-modal-open {
	overflow: hidden;
	overscroll-behavior: none;
}

.giveo-events-modal {
	position: fixed;
	z-index: 999999;
	top: var(--giveo-events-viewport-offset-top, 0px);
	right: 0;
	bottom: auto;
	left: 0;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	height: var(--giveo-events-viewport-height, 100dvh);
	min-height: 0;
	padding:
		max(24px, env(safe-area-inset-top, 0px))
		max(24px, env(safe-area-inset-right, 0px))
		max(24px, env(safe-area-inset-bottom, 0px))
		max(24px, env(safe-area-inset-left, 0px));
	overflow: hidden;
}

.giveo-events-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(15 23 42 / 68%);
	backdrop-filter: blur(3px);
	animation: giveo-events-fade-in .18s ease-out both;
}

.giveo-events-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(860px, 100%);
	max-height: 100%;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid rgb(255 255 255 / 70%);
	border-radius: 24px;
	background: #fff;
	color: var(--giveo-events-text);
	box-shadow: 0 30px 90px rgb(15 23 42 / 36%);
	overscroll-behavior: contain;
	scroll-padding-block: 72px max(24px, env(safe-area-inset-bottom, 0px));
	animation: giveo-events-dialog-in .2s ease-out both;
}

.giveo-events-modal__dialog:focus {
	outline: none;
}

.giveo-events-widget .giveo-events-modal__close {
	position: sticky;
	z-index: 5;
	top: 14px;
	float: right;
	width: 42px;
	height: 42px;
	margin: 14px 14px -56px 0;
	padding: 0;
	border: 1px solid var(--giveo-events-border);
	border-radius: 999px;
	background: rgb(255 255 255 / 94%);
	color: #334155;
	cursor: pointer;
	font-size: 29px;
	font-weight: 400;
	line-height: 1;
	box-shadow: 0 8px 22px rgb(15 23 42 / 12%);
}

.giveo-events-widget .giveo-events-modal__close:focus {
	border: 1px solid var(--giveo-events-border);
	background: rgb(255 255 255 / 94%);
	color: #334155;
	box-shadow: 0 8px 22px rgb(15 23 42 / 12%);
}

.giveo-events-widget .giveo-events-modal__close:hover,
.giveo-events-widget .giveo-events-modal__close:active {
	border: 1px solid var(--giveo-events-border);
	background: var(--giveo-events-soft);
	color: var(--giveo-events-text);
}

.giveo-events-modal__header {
	padding: 30px 76px 20px 30px;
	border-bottom: 1px solid var(--giveo-events-border);
	background:
		radial-gradient(circle at 100% 0, rgb(198 0 43 / 8%), transparent 38%),
		linear-gradient(180deg, #fff, #fcfcfd);
}

.giveo-events-modal__eyebrow {
	margin: 0 0 7px;
	color: var(--giveo-events-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .09em;
	line-height: 1.2;
	text-transform: uppercase;
}

.giveo-events-modal__header h2 {
	margin: 0;
	color: var(--giveo-events-text);
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.12;
}

.giveo-events-event-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin-top: 12px;
	color: var(--giveo-events-muted);
	font-size: 14px;
	line-height: 1.45;
}

.giveo-events-event-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.giveo-events-event-meta span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--giveo-events-primary);
}

.giveo-events-progress {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 18px 30px;
	border-bottom: 1px solid var(--giveo-events-border);
	background: #fff;
	list-style: none;
}

.giveo-events-progress li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0 8px;
	color: #8491a3;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

.giveo-events-progress li:not(:last-child)::after {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	right: -12%;
	width: 24%;
	height: 1px;
	background: var(--giveo-events-border);
}

.giveo-events-progress li span {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border: 1px solid var(--giveo-events-border);
	border-radius: 999px;
	background: #fff;
	font-size: 12px;
}

.giveo-events-progress li.is-current {
	color: var(--giveo-events-primary);
}

.giveo-events-progress li.is-current span {
	border-color: var(--giveo-events-primary);
	background: var(--giveo-events-primary);
	color: #fff;
	box-shadow: 0 0 0 4px rgb(198 0 43 / 9%);
}

.giveo-events-checkout {
	display: block;
	margin: 0;
	padding: 0;
}

.giveo-events-step {
	display: grid;
	gap: 22px;
	padding: 28px 30px 30px;
}

.giveo-events-step__heading h3 {
	margin: 0 0 5px;
	color: var(--giveo-events-text);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.015em;
	line-height: 1.2;
}

.giveo-events-step__heading h3:focus {
	outline: none;
}

.giveo-events-result h3:focus {
	outline: none;
}

.giveo-events-step__heading p {
	margin: 0;
	color: var(--giveo-events-muted);
	font-size: 14px;
	line-height: 1.5;
}

.giveo-events-ticket-list {
	display: grid;
	gap: 12px;
}

.giveo-events-ticket {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 17px 18px;
	border: 1px solid var(--giveo-events-border);
	border-radius: var(--giveo-events-radius);
	background: #fff;
	box-shadow: 0 4px 14px rgb(15 23 42 / 4%);
}

.giveo-events-ticket.is-sold-out {
	background: #f8fafc;
	opacity: .72;
}

.giveo-events-ticket__content h4 {
	margin: 0 0 4px;
	color: var(--giveo-events-text);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}

.giveo-events-ticket__content p {
	margin: 0 0 8px;
	color: var(--giveo-events-muted);
	font-size: 13px;
	line-height: 1.45;
}

.giveo-events-ticket__content strong {
	color: var(--giveo-events-primary);
	font-size: 15px;
	font-weight: 800;
}

.giveo-events-ticket__quantity {
	display: grid;
	grid-template-columns: auto auto;
	gap: 6px 12px;
	align-items: center;
	min-width: 142px;
}

.giveo-events-ticket__quantity label {
	grid-column: 1 / -1;
	color: var(--giveo-events-muted);
	font-size: 11px;
	font-weight: 750;
	line-height: 1.2;
	text-transform: uppercase;
}

.giveo-events-ticket__quantity select {
	width: 72px;
}

.giveo-events-ticket__line-total {
	min-width: 64px;
	color: var(--giveo-events-text);
	font-size: 13px;
	font-weight: 750;
	text-align: right;
}

.giveo-events-ticket__sold-out {
	grid-column: 1 / -1;
	padding: 7px 10px;
	border-radius: 999px;
	background: #e9eef4;
	color: #526174;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
}

.giveo-events-coupon {
	display: grid;
	gap: 8px;
	padding: 16px;
	border: 1px dashed #b7c1ce;
	border-radius: var(--giveo-events-radius);
	background: #fbfcfe;
}

.giveo-events-coupon > label {
	color: var(--giveo-events-text);
	font-size: 13px;
	font-weight: 750;
}

.giveo-events-coupon__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.giveo-events-coupon__controls input {
	text-transform: uppercase;
}

.giveo-events-coupon__status {
	min-height: 18px;
	margin: 0;
	font-size: 13px;
	line-height: 1.35;
}

.giveo-events-coupon__status.is-success {
	color: var(--giveo-events-success);
}

.giveo-events-coupon__status.is-error {
	color: var(--giveo-events-error);
}

.giveo-events-order-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 14px;
	border: 1px solid var(--giveo-events-border);
	border-radius: var(--giveo-events-radius);
	background: var(--giveo-events-soft);
}

.giveo-events-order-summary > div {
	display: grid;
	gap: 3px;
	padding: 2px 8px;
}

.giveo-events-order-summary span {
	color: var(--giveo-events-muted);
	font-size: 12px;
	line-height: 1.25;
}

.giveo-events-order-summary strong {
	color: var(--giveo-events-text);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
}

.giveo-events-order-summary__total {
	border-left: 1px solid var(--giveo-events-border);
}

.giveo-events-order-summary__total strong {
	color: var(--giveo-events-primary);
	font-size: 20px;
}

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

.giveo-events-form-grid label,
.giveo-events-pix-result label,
.giveo-events-boleto-result label {
	display: grid;
	gap: 7px;
	color: #374151;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.giveo-events-field--wide {
	grid-column: 1 / -1;
}

.giveo-events-checkout input[type="text"],
.giveo-events-checkout input[type="email"],
.giveo-events-checkout input[type="tel"],
.giveo-events-checkout select,
.giveo-events-checkout textarea {
	appearance: none;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 10px 12px;
	border: 1px solid var(--giveo-events-border);
	border-radius: 11px;
	background: #fff;
	color: var(--giveo-events-text);
	font: inherit;
	font-size: 15px;
	font-weight: 450;
	line-height: 1.35;
	outline: 0;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.giveo-events-checkout select {
	padding-right: 34px;
	background-image:
		linear-gradient(45deg, transparent 50%, #64748b 50%),
		linear-gradient(135deg, #64748b 50%, transparent 50%);
	background-position:
		calc(100% - 16px) 20px,
		calc(100% - 11px) 20px;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
}

.giveo-events-checkout textarea {
	min-height: 88px;
	resize: vertical;
}

.giveo-events-checkout input:focus,
.giveo-events-checkout select:focus,
.giveo-events-checkout textarea:focus {
	border-color: var(--giveo-events-focus);
	box-shadow: 0 0 0 4px rgb(37 99 235 / 9%);
}

.giveo-events-checkout input:disabled {
	background: #f1f5f9;
}

.giveo-events-checkout small {
	min-height: 16px;
	color: var(--giveo-events-muted);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.35;
}

.giveo-events-terms {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 14px 15px;
	border: 1px solid var(--giveo-events-border);
	border-radius: 14px;
	background: var(--giveo-events-soft);
	color: #455468;
	font-size: 13px;
	font-weight: 550;
	line-height: 1.5;
}

.giveo-events-terms input,
.giveo-events-payment-methods input {
	flex: 0 0 auto;
	width: auto;
	min-height: 0;
	margin: 3px 0 0;
	accent-color: var(--giveo-events-primary);
}

.giveo-events-terms a {
	color: var(--giveo-events-primary);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.giveo-events-payment-methods {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.giveo-events-payment-methods label {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 12px;
	border: 1px solid var(--giveo-events-border);
	border-radius: 14px;
	background: #fff;
	color: var(--giveo-events-text);
	cursor: pointer;
	font-size: 14px;
	font-weight: 750;
	text-align: center;
}

.giveo-events-payment-methods label:has(input:checked) {
	border-color: var(--giveo-events-primary);
	background: #fff5f7;
	color: var(--giveo-events-primary);
	box-shadow: 0 8px 22px rgb(198 0 43 / 9%);
}

.giveo-events-payment-methods input {
	margin-right: 8px;
}

.giveo-events-card-fields {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid var(--giveo-events-border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 9px 28px rgb(15 23 42 / 5%);
}

.giveo-events-card-fields h4 {
	margin: 2px 0 -4px;
	color: var(--giveo-events-text);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.giveo-events-card-notice {
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--giveo-events-warning-bg);
	color: var(--giveo-events-warning);
	font-size: 13px;
	line-height: 1.45;
}

.giveo-events-review {
	display: grid;
	gap: 12px;
	padding: 17px;
	border: 1px solid var(--giveo-events-border);
	border-radius: var(--giveo-events-radius);
	background: var(--giveo-events-soft);
}

.giveo-events-review h4 {
	margin: 0;
	color: var(--giveo-events-text);
	font-size: 15px;
	font-weight: 800;
}

.giveo-events-review ul {
	display: grid;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.giveo-events-review li,
.giveo-events-review > div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin: 0;
	color: #526174;
	font-size: 13px;
	line-height: 1.4;
}

.giveo-events-review li strong,
.giveo-events-review > div strong {
	flex: 0 0 auto;
	color: var(--giveo-events-text);
}

.giveo-events-review__discount,
.giveo-events-review__discount strong {
	color: var(--giveo-events-success) !important;
}

.giveo-events-review > div {
	padding-top: 11px;
	border-top: 1px solid var(--giveo-events-border);
	font-size: 16px;
	font-weight: 800;
}

.giveo-events-review > div strong {
	color: var(--giveo-events-primary);
	font-size: 20px;
}

.giveo-events-step__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 2px;
}

.giveo-events-step__actions--end {
	justify-content: flex-end;
}

.giveo-events-step__actions .giveo-events-primary-button {
	min-width: 190px;
}

.giveo-events-response {
	margin: 0 30px 28px;
	padding: 13px 15px;
	border-radius: 13px;
	background: var(--giveo-events-soft);
	color: #455468;
	font-size: 14px;
	line-height: 1.45;
}

.giveo-events-response.is-error {
	background: var(--giveo-events-error-bg);
	color: var(--giveo-events-error);
}

.giveo-events-response.is-success {
	background: var(--giveo-events-success-bg);
	color: var(--giveo-events-success);
}

.giveo-events-result {
	display: grid;
	justify-items: center;
	gap: 12px;
	padding: 8px 0 4px;
	text-align: center;
}

.giveo-events-result__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 999px;
	background: var(--giveo-events-warning-bg);
	color: var(--giveo-events-warning);
	font-size: 32px;
	font-weight: 850;
	line-height: 1;
}

.giveo-events-result.is-success .giveo-events-result__status {
	background: var(--giveo-events-success-bg);
	color: var(--giveo-events-success);
}

.giveo-events-result.is-error .giveo-events-result__status {
	background: var(--giveo-events-error-bg);
	color: var(--giveo-events-error);
}

.giveo-events-result h3 {
	margin: 2px 0 0;
	color: var(--giveo-events-text);
	font-size: 25px;
	font-weight: 850;
	letter-spacing: -.02em;
	line-height: 1.2;
}

.giveo-events-result > p {
	max-width: 620px;
	margin: 0;
	color: var(--giveo-events-muted);
	font-size: 15px;
	line-height: 1.55;
}

.giveo-events-result__order {
	padding: 7px 11px;
	border-radius: 9px;
	background: var(--giveo-events-soft);
}

.giveo-events-pix-result,
.giveo-events-boleto-result {
	display: grid;
	justify-items: center;
	gap: 13px;
	width: min(560px, 100%);
	margin-top: 8px;
	padding: 17px;
	border: 1px solid var(--giveo-events-border);
	border-radius: var(--giveo-events-radius);
	background: #fff;
	text-align: left;
}

.giveo-events-pix-result label,
.giveo-events-boleto-result label {
	width: 100%;
}

.giveo-events-pix-result__qr {
	display: flex;
	justify-content: center;
}

.giveo-events-pix-result__qr img {
	display: block;
	width: min(240px, 100%);
	height: auto;
	padding: 8px;
	border: 1px solid var(--giveo-events-border);
	border-radius: 15px;
	background: #fff;
}

.giveo-events-result__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 6px;
}

@keyframes giveo-events-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes giveo-events-dialog-in {
	from {
		opacity: 0;
		transform: translateY(12px) scale(.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 720px) {
	.giveo-events-modal {
		place-items: center;
		padding:
			max(12px, env(safe-area-inset-top, 0px))
			max(10px, env(safe-area-inset-right, 0px))
			max(12px, env(safe-area-inset-bottom, 0px))
			max(10px, env(safe-area-inset-left, 0px));
	}

	.giveo-events-modal__dialog {
		width: 100%;
		max-height: 100%;
		border: 1px solid rgb(255 255 255 / 70%);
		border-radius: 22px;
	}

	.giveo-events-checkout input[type="text"],
	.giveo-events-checkout input[type="email"],
	.giveo-events-checkout input[type="tel"],
	.giveo-events-checkout select,
	.giveo-events-checkout textarea {
		font-size: 16px;
	}

	.giveo-events-modal__header {
		padding: 25px 66px 18px 20px;
	}

	.giveo-events-progress {
		padding: 14px 16px;
	}

	.giveo-events-progress li {
		gap: 4px;
		padding: 0 3px;
		font-size: 10px;
	}

	.giveo-events-progress li span {
		width: 23px;
		height: 23px;
	}

	.giveo-events-step {
		gap: 18px;
		padding: 22px 18px 24px;
	}

	.giveo-events-ticket {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.giveo-events-ticket__quantity {
		grid-template-columns: auto 1fr;
		min-width: 0;
	}

	.giveo-events-ticket__line-total {
		text-align: left;
	}

	.giveo-events-order-summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.giveo-events-order-summary__total {
		grid-column: 1 / -1;
		padding-top: 10px !important;
		border-top: 1px solid var(--giveo-events-border);
		border-left: 0;
	}

	.giveo-events-form-grid,
	.giveo-events-payment-methods {
		grid-template-columns: 1fr;
	}

	.giveo-events-field--wide {
		grid-column: auto;
	}

	.giveo-events-step__actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.giveo-events-step__actions .giveo-events-primary-button,
	.giveo-events-step__actions .giveo-events-secondary-button {
		width: 100%;
	}

	.giveo-events-step__actions--end {
		flex-direction: column;
	}

	.giveo-events-response {
		margin: 0 18px 22px;
	}
}

@media (max-width: 480px) {
	.giveo-events-progress li {
		font-size: 0;
	}

	.giveo-events-progress li span {
		font-size: 11px;
	}

	.giveo-events-coupon__controls {
		grid-template-columns: 1fr;
	}

	.giveo-events-coupon__controls .giveo-events-secondary-button {
		width: 100%;
	}

	.giveo-events-result__actions {
		width: 100%;
	}

	.giveo-events-result__actions .giveo-events-primary-button,
	.giveo-events-result__actions .giveo-events-secondary-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.giveo-events-widget *,
	.giveo-events-widget *::before,
	.giveo-events-widget *::after {
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
	}
}
