.glpp-request {
	--glpp-req-bg: #111719;
	--glpp-req-panel: #0d1214;
	--glpp-req-panel-soft: #151d20;
	--glpp-req-border: #3a4a50;
	--glpp-req-text: #e4dfd7;
	--glpp-req-muted: #aca69d;
	--glpp-req-teal: #7adfd8;
	--glpp-req-teal-deep: #2c6870;
	--glpp-req-green: #073924;
	--glpp-req-red: #800018;
	--glpp-req-red-soft: #b71835;
	background: var(--glpp-req-bg);
	border-radius: 8px;
	color: var(--glpp-req-text);
	container-type: inline-size;
	font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
	margin: 1.5rem auto;
	max-width: 1280px;
	padding: 1.25rem;
}

.glpp-request * {
	box-sizing: border-box;
}

.glpp-request [hidden] {
	display: none !important;
}

.glpp-request__header {
	margin: 0 0 1rem;
	max-width: 760px;
}

.glpp-request__title {
	color: var(--glpp-req-text);
	font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 0.35rem;
}

.glpp-request__intro {
	color: var(--glpp-req-muted);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.55;
	margin: 0;
}

.glpp-request__shell {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.glpp-request__calendar-panel,
.glpp-request__summary {
	background: var(--glpp-req-panel);
	border-radius: 8px;
	padding: 1.25rem;
}

.glpp-request__calendar-panel {
	min-width: 0;
	position: relative;
}

.glpp-request__calendar-nav {
	align-items: center;
	display: flex;
	justify-content: space-between;
	left: 1.25rem;
	pointer-events: none;
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	z-index: 2;
}

.glpp-request__nav-button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--glpp-req-border);
	border-radius: 6px;
	color: var(--glpp-req-muted);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.7rem;
	height: 3rem;
	justify-content: center;
	line-height: 1;
	pointer-events: auto;
	width: 3rem;
}

.glpp-request__nav-button:disabled {
	cursor: default;
	opacity: 0.35;
}

.glpp-request__months {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glpp-request-month h3 {
	color: var(--glpp-req-text);
	font-size: 1.55rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 1.25rem;
	padding-inline: 3.35rem;
	text-align: center;
}

.glpp-request-month {
	min-width: 0;
}

.glpp-request-month__weekdays,
.glpp-request-month__days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.glpp-request-month__weekdays {
	color: var(--glpp-req-muted);
	font-size: 0.86rem;
	font-weight: 700;
	gap: 0.28rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.glpp-request-month__days {
	gap: 0.28rem;
}

.glpp-request-day {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: var(--glpp-req-panel-soft);
	border: 1px solid transparent;
	border-radius: 7px;
	color: var(--glpp-req-text);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 1.25rem;
	font-weight: 800;
	justify-content: center;
	line-height: 1;
	min-height: 3rem;
	padding: 0;
	text-align: center;
}

.glpp-request-day--blank {
	background: transparent;
	border-color: transparent;
	pointer-events: none;
}

.glpp-request-day--blocked {
	color: var(--glpp-req-muted);
	cursor: default;
	opacity: 0.58;
	text-decoration: line-through;
}

.glpp-request-day--available:hover,
.glpp-request-day--available:focus {
	border-color: var(--glpp-req-teal);
	outline: none;
}

.glpp-request-day.is-in-range {
	background: color-mix(in srgb, var(--glpp-req-teal-deep) 72%, #0d1214);
	border-color: color-mix(in srgb, var(--glpp-req-teal) 45%, transparent);
}

.glpp-request-day.is-selected {
	background: var(--glpp-req-teal-deep);
	border-color: var(--glpp-req-teal);
	color: #ffffff;
	text-decoration: none;
}

.glpp-request-day--blocked.is-in-range {
	background: var(--glpp-req-red);
	border-color: var(--glpp-req-red-soft);
	color: #ffffff;
	opacity: 1;
	text-decoration: none;
}

.glpp-request__summary {
	align-self: start;
}

.glpp-request__status {
	align-items: center;
	border-radius: 8px 8px 0 0;
	display: flex;
	font-size: 1.05rem;
	font-weight: 800;
	justify-content: space-between;
	line-height: 1.4;
	margin: -1.25rem -1.25rem 0;
	padding: 1rem 1.25rem;
}

.glpp-request__status--neutral {
	background: var(--glpp-req-panel-soft);
	color: var(--glpp-req-text);
}

.glpp-request__status--success {
	background: var(--glpp-req-green);
	color: var(--glpp-req-teal);
}

.glpp-request__status--error {
	background: #3a000b;
	color: #ff6b86;
}

.glpp-request__status-icon {
	align-items: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	display: inline-flex;
	font-size: 0.9rem;
	height: 1.7rem;
	justify-content: center;
	width: 1.7rem;
}

.glpp-request__fields {
	border: 1px solid var(--glpp-req-border);
	border-radius: 8px 8px 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 0;
	overflow: hidden;
}

.glpp-request__field {
	align-items: center;
	border-bottom: 3px solid var(--glpp-req-teal);
	display: flex;
	gap: 0.7rem;
	min-height: 4.3rem;
	padding: 0.8rem;
}

.glpp-request__field + .glpp-request__field {
	border-left: 1px solid var(--glpp-req-border);
}

.glpp-request__field-icon {
	color: var(--glpp-req-muted);
	font-size: 1.4rem;
}

.glpp-request__field-label {
	color: var(--glpp-req-muted);
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
}

.glpp-request__field strong {
	font-size: 1.05rem;
	font-weight: 800;
}

.glpp-request__guest-summary {
	border: 1px solid var(--glpp-req-border);
	border-top: 0;
	border-radius: 0 0 8px 8px;
	color: var(--glpp-req-text);
	font-size: 1rem;
	font-weight: 700;
	padding: 0.95rem 1rem;
}

.glpp-request__guests {
	display: grid;
	gap: 0.8rem;
	margin: 1rem 0;
}

.glpp-request__guest-row {
	align-items: center;
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto;
}

.glpp-request__guest-row strong {
	display: block;
	font-size: 1rem;
	font-weight: 800;
}

.glpp-request__guest-row span {
	color: var(--glpp-req-muted);
	display: block;
	font-size: 0.86rem;
	font-weight: 600;
}

.glpp-request__stepper {
	align-items: center;
	display: grid;
	gap: 0.6rem;
	grid-template-columns: 2.5rem 1.5rem 2.5rem;
	text-align: center;
}

.glpp-request__stepper button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--glpp-req-teal-deep);
	border-radius: 7px;
	color: var(--glpp-req-teal);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.35rem;
	height: 2.5rem;
	justify-content: center;
	line-height: 1;
	width: 2.5rem;
}

.glpp-request__stepper button:disabled {
	background: #20292c;
	border-color: #20292c;
	color: var(--glpp-req-muted);
	cursor: default;
	opacity: 0.6;
}

.glpp-request__stepper strong {
	font-size: 1.15rem;
}

.glpp-request__button {
	align-items: center;
	background: var(--glpp-req-teal-deep);
	border-radius: 8px;
	color: var(--glpp-req-text);
	display: flex;
	font-size: 1.15rem;
	font-weight: 800;
	justify-content: center;
	margin: 1.1rem 0;
	min-height: 3.8rem;
	padding: 0.9rem 1rem;
	text-align: center;
	text-decoration: none;
}

.glpp-request__button:hover,
.glpp-request__button:focus {
	background: color-mix(in srgb, var(--glpp-req-teal-deep) 84%, #ffffff);
	color: #ffffff;
}

.glpp-request__button[aria-disabled="true"] {
	cursor: default;
	opacity: 0.72;
}

.glpp-request__pricing {
	display: grid;
	gap: 0.8rem;
	margin-top: 1rem;
}

.glpp-request__price-row {
	align-items: baseline;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.glpp-request__price-row span {
	color: var(--glpp-req-text);
	font-weight: 600;
}

.glpp-request__price-row strong {
	font-size: 1.25rem;
	font-weight: 800;
	white-space: nowrap;
}

.glpp-request__night-list {
	border-top: 1px solid rgba(228, 223, 215, 0.12);
	display: grid;
	gap: 0.35rem;
	list-style: none;
	margin: 0.35rem 0 0;
	padding: 0.75rem 0 0;
}

.glpp-request__night-list li {
	align-items: center;
	color: var(--glpp-req-muted);
	display: flex;
	font-size: 0.9rem;
	font-weight: 600;
	justify-content: space-between;
}

.glpp-request__discount strong {
	color: var(--glpp-req-teal);
}

.glpp-request__total {
	border-top: 1px solid rgba(228, 223, 215, 0.12);
	padding-top: 0.75rem;
}

.glpp-request__total strong {
	font-size: 1.45rem;
}

.glpp-request__contact {
	border-top: 1px solid rgba(228, 223, 215, 0.12);
	margin-top: 1.2rem;
	padding-top: 1rem;
}

.glpp-request__contact p {
	color: var(--glpp-req-text);
	font-weight: 600;
	margin: 0 0 0.65rem;
}

.glpp-request__contact div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1rem;
}

.glpp-request__contact a {
	color: var(--glpp-req-teal);
	font-weight: 800;
	text-decoration: none;
}

@supports not (color: color-mix(in srgb, white, black)) {
	.glpp-request-day.is-in-range,
	.glpp-request__button {
		background: #2c6870;
	}

	.glpp-request-day.is-in-range {
		border-color: #7adfd8;
	}
}

@media (max-width: 980px) {
	.glpp-request__shell {
		grid-template-columns: 1fr;
	}
}

@container (max-width: 1080px) {
	.glpp-request__shell {
		grid-template-columns: 1fr;
	}
}

@container (max-width: 780px) {
	.glpp-request {
		padding: 0.85rem;
	}

	.glpp-request__calendar-panel,
	.glpp-request__summary {
		padding: 1rem;
	}

	.glpp-request__calendar-nav {
		left: 1rem;
		right: 1rem;
		top: 1rem;
	}

	.glpp-request__months {
		grid-template-columns: 1fr;
	}

	.glpp-request__status {
		margin: -1rem -1rem 0;
	}
}

@container (max-width: 540px) {
	.glpp-request__title {
		font-size: 1.55rem;
	}

	.glpp-request-month h3 {
		font-size: 1.35rem;
	}

	.glpp-request-day {
		font-size: 1rem;
		min-height: 2.35rem;
	}

	.glpp-request__fields {
		grid-template-columns: 1fr;
	}

	.glpp-request__field + .glpp-request__field {
		border-left: 0;
		border-top: 1px solid var(--glpp-req-border);
	}

	.glpp-request__guest-row {
		grid-template-columns: 1fr;
	}

	.glpp-request__stepper {
		justify-content: start;
	}
}

@media (max-width: 780px) {
	.glpp-request {
		padding: 0.85rem;
	}

	.glpp-request__calendar-panel,
	.glpp-request__summary {
		padding: 1rem;
	}

	.glpp-request__calendar-nav {
		left: 1rem;
		right: 1rem;
		top: 1rem;
	}

	.glpp-request__months {
		grid-template-columns: 1fr;
	}

	.glpp-request__status {
		margin: -1rem -1rem 0;
	}
}

@media (max-width: 540px) {
	.glpp-request__title {
		font-size: 1.55rem;
	}

	.glpp-request-month h3 {
		font-size: 1.35rem;
	}

	.glpp-request-day {
		font-size: 1rem;
		min-height: 2.35rem;
	}

	.glpp-request__fields {
		grid-template-columns: 1fr;
	}

	.glpp-request__field + .glpp-request__field {
		border-left: 0;
		border-top: 1px solid var(--glpp-req-border);
	}

	.glpp-request__guest-row {
		grid-template-columns: 1fr;
	}

	.glpp-request__stepper {
		justify-content: start;
	}
}
