/* -------------------- Overload --------------------*/

.aerosi-booking-modal section {
	padding-bottom: 1em;
}

/* -------------------- Modal layout --------------------*/

.aerosi-booking-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;

	background: rgba(0, 0, 0, 0.6);

	display: flex;
	align-items: center;
	justify-content: center;
}

.aerosi-booking-modal__content {
	position: relative;
	background: #fff;
	min-width: 90vw;
	min-height: 90vh;
	max-width: 95vw;
	max-height: 95vh;
	overflow-y: auto;
	border-radius: 8px;
	display: flex;
	padding: 10px;
}

.aerosi-booking-modal--gift-mode .aerosi-booking-modal__content {
	min-height: auto;
	max-height: calc(100vh - 24px);
	height: auto;
}

.aerosi-booking-modal--gift-mode .aerosi-booking-modal__products__options {
	flex-direction: column;
}

.aerosi-booking-modal--gift-mode .booking-summary__date {
	display: none;
}

.aerosi-booking-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border-radius: 50%;
	background: #fff;
	color: #111827;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: none;
}

.aerosi-booking-modal__close:hover,
.aerosi-booking-modal__close:focus-visible {
	background: #f9fafb;
	border-color: #9ca3af;
	color: #000;
	text-decoration: none;
}

.aerosi-booking-modal__main {
	flex: 3;
	padding: 0;
	overflow: visible;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.aerosi-booking-modal__products__options {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}

.aerosi-booking-modal__sidebar {
	flex: 1;
	padding: 0;
	border-left: none;
	margin-left: 5px;
	overflow: visible;
	background: transparent;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.aerosi-booking-modal__card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.aerosi-booking-modal__main section {
	padding-bottom: 10px;
}

.aerosi-booking-calendar__header {
	margin-bottom: 12px;
}

.aerosi-booking-calendar__frame {
	position: relative;
	min-height: 320px;
}

.aerosi-booking-calendar__empty,
.aerosi-mobile-calendar__empty {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(255, 255, 255, 0.78);
	color: #07184a;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	backdrop-filter: blur(2px);
}

.aerosi-booking-calendar__empty[hidden],
.aerosi-mobile-calendar__empty[hidden] {
	display: none !important;
}

.aerosi-booking-calendar__title {
	display: flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
}

.aerosi-booking-calendar__title h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.aerosi-booking-calendar__icon {
	color: #001541;
	font-size: 14px;
}

body.aerosi-booking-modal-open {
	overflow: hidden;
}

.aerosi-booking-modal__main,
.aerosi-booking-modal__sidebar,
.aerosi-booking-modal__products__options {
	transition:
		flex 260ms ease,
		opacity 260ms ease,
		transform 260ms ease;
}

@media (prefers-reduced-motion: reduce) {
	.aerosi-booking-modal__main,
	.aerosi-booking-modal__sidebar,
	.aerosi-booking-modal__products__options {
		transition: none;
	}
}

/* -------------------- Calendar -------------------- */

.aerosi-calendar-nav-arrow {
	font-size: 20px;
	line-height: 1;
}

.aerosi-calendar-nav-month {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
}

.fc-customPrev-button,
.fc-customNext-button {
	background-color: #fff !important;
	border: none !important;
	color: #376dfb !important;
	font-weight: 700;
	text-transform: none;
}

.fc-customNext-button:focus, .fc-customPrev-button:focus,
.fc-customNext-button:focus-visible, .fc-customPrev-button:focus-visible {
	border: none !important;
}

.fc .fc-toolbar-title {
	font-size: 1em;
}

.fc-daygrid-day {
	padding-bottom: 2px !important;
	min-height: 120px;
}

.fc-daygrid-dot-event:hover {
	background: transparent !important;
}

.fc .fc-toolbar-title {
	font-size: 1em;
}

.fc .fc-view-harness {
	border-radius: 12px;
	overflow: hidden;
}

.fc .fc-daygrid-day-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start !important;
}

.fc .fc-daygrid-day-number {
	margin-right: auto;
	text-align: left;
	z-index: 1;
	color: #07184a;
	text-decoration: none;
}

.aerosi-calendar-day-top-time {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 700;
	font-size: 14px;
	color: #07184a;
}

.fc-daygrid-event {
	background: transparent;
	border: 0;
	color: inherit;
}

.fc-col-header-cell {
	background-color: #001541;
	color: #fff;
	text-decoration: none;
}

.fc-col-header-cell a {
	color: #fff;
	text-decoration: none;
}

.fc-dayGridMonth-view table {
	margin: 0;
}

.fc .fc-toolbar.fc-header-toolbar {
	margin: 0 0 10px 0;
	align-items: center;
	gap: 10px;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
	flex: 1 1 auto;
}

.fc .fc-button {
	padding: 0.2em 0.3em;
	font-size: 0.7em;
}

.fc-next-button, .fc-prev-button {
	background-color: #fff !important;
	border: none !important;
	color: #376dfb !important;
}

.fc-next-button:hover, .fc-prev-button:hover {
	transform: scale(1.1);
}

.fc-next-button:focus, .fc-prev-button:focus,
.fc-next-button:focus-visible, .fc-prev-button:focus-visible {
	border: none !important;
}

/* Calendar moment switch */
.fc .fc-momentMorning-button,
.fc .fc-momentAfternoon-button {
	background: #fff;
	border-color: #001541;
	color: #001541;
}

.fc .fc-momentMorning-button.fc-button-active,
.fc .fc-momentAfternoon-button.fc-button-active {
	background: #001541;
	border-color: #001541;
	color: #fff;
}

.aerosi-calendar-day {
	text-align: center;
	color: #07184a;
	cursor: pointer;
	width: 100%;
}

.fc-event.aerosi-calendar-event--past,
.fc-event.aerosi-calendar-event--past .aerosi-calendar-day,
.fc-event.aerosi-calendar-event--past .aerosi-calendar-day__slot {
	cursor: default;
}

.fc-event.aerosi-calendar-event--full,
.fc-event.aerosi-calendar-event--full .aerosi-calendar-day,
.fc-event.aerosi-calendar-event--full .aerosi-calendar-day__slot {
	cursor: default;
	pointer-events: none;
}

.fc-event.aerosi-calendar-event--full {
	opacity: 0.7;
}

.aerosi-calendar-day--dual {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	text-align: left;
	pointer-events: none;
	cursor: default;
}

.aerosi-calendar-day--dual.aerosi-calendar-day--single-slot {
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
}

.aerosi-calendar-day--dual.aerosi-calendar-day--single-slot .aerosi-calendar-day__slot {
	width: min(100%, 220px);
}

.aerosi-calendar-day__slot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 6px 8px 7px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: inherit;
	text-align: left;
	cursor: pointer;
	min-width: 0;
	width: 100%;
	appearance: none;
	pointer-events: auto;
}

.aerosi-calendar-day__slot--centered {
	justify-self: center;
}

.aerosi-calendar-day__slot:hover, .aerosi-calendar-day__slot:focus {
	text-decoration: none;
	background-color: #e5e5e5;
}

.fc-event.aerosi-calendar-event--past .aerosi-calendar-day__slot:hover,
.fc-event.aerosi-calendar-event--past .aerosi-calendar-day__slot:focus,
.fc-event.aerosi-calendar-event--past .aerosi-calendar-day:hover,
.fc-event.aerosi-calendar-event--past .aerosi-calendar-day:focus {
	background-color: transparent;
	text-decoration: none;
}

.aerosi-calendar-day__slot:disabled,
.aerosi-calendar-day__slot--empty {
	cursor: default;
	opacity: 0.7;
	pointer-events: none;
}

.aerosi-calendar-day__slot[hidden] {
	display: none !important;
}

.aerosi-calendar-day__slot--active {
	outline: 2px solid #0b66ff;
	background: rgba(11, 102, 255, 0.08);
}

.aerosi-calendar-day__slot-label {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.1;
}

.aerosi-calendar-day__slot-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.aerosi-calendar-day__time {
	font-weight: 700;
	font-size: 14px;
}

.aerosi-calendar-day__moment {
	margin-top: 6px;
	font-size: 11px;
}

.aerosi-calendar-day__places {
	margin: 0 auto 6px;
	padding: 4px 10px;
	border-radius: 4px;
	width: fit-content;
	font-size: 12px;
}

.aerosi-calendar-day--dual .aerosi-calendar-day__places {
	margin: 0;
	padding: 2px 8px;
}

.aerosi-calendar-day--dual .aerosi-calendar-day__price {
	font-size: 12px;
}

.aerosi-calendar-day[data-status="available"] .aerosi-calendar-day__places,
.aerosi-calendar-day__slot[data-status="available"] .aerosi-calendar-day__places {
	background: #e4f4df;
	color: #08751b;
}

.aerosi-calendar-day[data-status="low"] .aerosi-calendar-day__places,
.aerosi-calendar-day__slot[data-status="low"] .aerosi-calendar-day__places {
	background: #fff0d8;
	color: #d16a00;
}

.aerosi-calendar-day[data-status="full"] .aerosi-calendar-day__places,
.aerosi-calendar-day__slot[data-status="full"] .aerosi-calendar-day__places {
	background: #f1f2f5;
	color: #607096;
}

.aerosi-calendar-day__price {
	font-weight: 700;
	font-size: 13px;
}

.aerosi-calendar-day__discount {
	margin-left: 6px;
	padding: 2px 5px;
	border-radius: 3px;
	background: #43a756;
	color: white;
	font-size: 10px;
	font-weight: 700;
}

.aerosi-calendar-day--dual .aerosi-calendar-day__discount {
	margin-left: 0;
}

.fc-event.aerosi-calendar-event--selected,
.fc-event:has(.aerosi-calendar-day--selected) {
	outline: 2px solid #0b66ff;
	background-color: rgba(11, 102, 255, 0.12);
	border-radius: 8px;
}

.aerosi-calendar-day__discount[hidden] {
	display: none !important;
}

.aerosi-calendar-day__discount:not([hidden]) {
	display: inline-block;
}

.fc-daygrid-day-events {
	margin: 0;
}

.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
	margin-bottom: 0;
}

.fc-day-sun .fc-daygrid-day-number {
	color: #f12529 !important;
}

.fc-day-sat .fc-daygrid-day-number {
	color: #376dfb !important;
}

.aerosi-calendar-event--past {
	filter: grayscale(1);
}

/* -------------------- Products -------------------- */

.booking-products {
	/*background: #fff;*/
	/*border: 1px solid #e5e7eb;*/
	/*border-radius: 8px;*/
	/*padding: 16px;*/
	color: #07184a;
}

.booking-products__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.booking-products__title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.booking-products__title h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.booking-products__icon {
	font-size: 22px;
}

.booking-products__table {
	width: 100%;
}

.booking-products__row {
	display: grid;
	grid-template-columns: 1fr 120px 120px 100px;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #eef1f6;
	font-size: 14px;
}

.booking-products__row--head {
	color: #58658c;
	font-size: 12px;
	font-weight: 500;
	padding-top: 0;
}

.booking-products__row--selected {
	background: #f7fbff;
}

.booking-products__name {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-weight: 500;
}

.booking-products__name-main,
.booking-options__name-main {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	flex-wrap: wrap;
}

.booking-products__name small {
	color: #607096;
	font-size: 11px;
}

.booking-products__sub-description,
.booking-options__sub-description {
	display: block;
	color: #6b7280;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.35;
}

.booking-products__quantity,
.booking-options__quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #dfe6f2;
	border-radius: 8px;
	overflow: hidden;
	width: fit-content;
	background: #fff;
}

.booking-products__qty-btn,
.booking-options__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; !important;
	height: 30px; !important;
	padding: 0;
	border: 0;
	background: #fff; !important;
	color: #07184a; !important;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.booking-products__qty-btn:hover {
	background: #eef4ff; !important;
	text-decoration: none;
}

.booking-products__quantity input,
.booking-products__quantity select,
.booking-options__quantity input {
	display: block;
	width: 40px;
	height: 30px;
	padding: 0;
	border: 0;
	text-align: center;
	font-weight: 700;
	line-height: 30px;
	color: #07184a;
	background: #fff;
}

.booking-products__quantity select {
	width: auto;
	min-width: 72px;
	padding: 0 8px;
	appearance: auto;
}

.booking-products__quantity input::-webkit-outer-spin-button,
.booking-products__quantity input::-webkit-inner-spin-button,
.booking-options__quantity input::-webkit-outer-spin-button,
.booking-options__quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.booking-products__price,
.booking-products__total {
	font-weight: 700;
	text-align: right;
}

.booking-row-tooltip {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #0b66ff;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	flex: 0 0 auto;
}

.booking-row-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #607096;
	font-size: 12px;
	line-height: 1;
	flex: 0 0 auto;
	text-decoration: none;
}

.booking-row-link:hover,
.booking-row-link:focus,
.booking-row-link:focus-visible {
	color: #0b66ff;
	outline: none;
	text-decoration: none;
}

.booking-row-tooltip:hover,
.booking-row-tooltip:focus,
.booking-row-tooltip:focus-visible {
	color: #084fd0;
	outline: none;
}

.booking-row-tooltip__bubble {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translateX(-50%) translateY(4px);
	min-width: 180px;
	max-width: min(280px, calc(100vw - 24px));
	padding: 8px 10px;
	border-radius: 8px;
	background: #07184a;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-align: left;
	white-space: pre-line;
	box-shadow: 0 10px 24px rgba(7, 24, 74, 0.2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 20;
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.booking-row-tooltip__bubble::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #07184a;
}

.booking-row-tooltip:hover .booking-row-tooltip__bubble,
.booking-row-tooltip:focus .booking-row-tooltip__bubble,
.booking-row-tooltip:focus-visible .booking-row-tooltip__bubble,
.booking-row-tooltip:focus-within .booking-row-tooltip__bubble {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.booking-products__empty {
	padding: 20px 0;
	color: #607096;
	text-align: center;
}

.booking-products__notice {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	padding: 12px;
	border-radius: 6px;
	background: #eef4ff;
	color: #0057ff;
	font-size: 13px;
	line-height: 1.4;
}

.booking-products__row {
	grid-template-columns: minmax(120px, 1fr) 106px 90px 85px;
	gap: 8px;
}

.booking-products__qty-btn,
.booking-options__qty-btn {
	width: 28px;
	height: 28px;
}

.booking-products__quantity input,
.booking-products__quantity select,
.booking-options__quantity input {
	width: 34px;
	height: 28px;
	line-height: 28px;
}

.booking-products__quantity select {
	min-width: 64px;
}

.booking-products__price,
.booking-products__total,
.booking-options__price,
.booking-options__total {
	font-size: 13px;
	white-space: nowrap;
}

.booking-products__row,
.booking-options__row {
	font-size: 13px;
}

/* -------------------- Options -------------------- */

.booking-options {
	/*background: #fff;*/
	/*border: 1px solid #e5e7eb;*/
	/*border-radius: 8px;*/
	/*padding: 16px;*/
	color: #07184a;
}

.booking-options__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.booking-options__title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.booking-options__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	font-size: 1em;
	flex: 0 0 auto;
}

.booking-options__title h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.booking-options__icon {
	font-size: 22px;
}

.booking-options__row {
	display: grid;
	grid-template-columns: 1fr 120px 120px 100px;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #eef1f6;
	font-size: 14px;
}

.booking-options__row--head {
	color: #58658c;
	font-size: 12px;
	font-weight: 500;
	padding-top: 0;
}

.booking-options__row--selected {
	background: #f7fbff;
}

.booking-options__name {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-weight: 500;
}

.booking-options__name small {
	color: #607096;
	font-size: 11px;
}

.booking-options__qty-btn:hover {
	background: #eef4ff;
}

.booking-options__quantity input[readonly] {
	background: #f3f6fb;
	cursor: not-allowed;
}

.booking-options__price,
.booking-options__total {
	font-weight: 700;
	text-align: right;
}

.booking-options__empty {
	padding: 20px 0;
	color: #607096;
	text-align: center;
}

.booking-options__row--transport {
	grid-template-columns: minmax(140px, 1fr) 220px 120px 100px 100px;
	gap: 14px;
	align-items: center;
}

.booking-options__hotel select {
	width: 100%;
	height: 40px;
	padding: 0 36px 0 12px;
	border: 1px solid #dfe6f2;
	border-radius: 8px;
	background-color: #fff;
	color: #07184a;
	font-size: 14px;
	font-weight: 600;
	line-height: 40px;
	cursor: pointer;
	outline: none;
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #07184a 50%),
		linear-gradient(135deg, #07184a 50%, transparent 50%);
	background-position:
		calc(100% - 16px) 17px,
		calc(100% - 11px) 17px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.booking-options__hotel select:hover {
	border-color: #b9c8e6;
}

.booking-options__hotel select:focus {
	border-color: #0057ff;
	box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
}

.booking-options__row--transport .booking-options__price,
.booking-options__row--transport .booking-options__total {
	white-space: nowrap;
	text-align: right;
}

.booking-options__row--transport .booking-options__quantity {
	justify-self: center;
}

.booking-options__row--overweight .booking-options__quantity {
	justify-self: center;
}

.booking-options__row {
	grid-template-columns: minmax(150px, 1fr) 106px 90px 85px;
	gap: 8px;
}

.booking-options__row--transport {
	grid-template-columns: minmax(100px, 1fr) 190px 106px 80px 80px;
	gap: 8px;
}

.booking-options__hotel select {
	height: 36px;
	padding: 0 30px 0 10px;
	font-size: 13px;
	line-height: 36px;
	background-position:
		calc(100% - 15px) 15px,
		calc(100% - 10px) 15px;
}

/* -------------------- Summary -------------------- */

.aerosi-booking-modal__summary {
	padding: 1em;
}

.aerosi-booking-modal__summary--mobile {
	display: none;
}

.booking-summary {
	color: #07184a;
	font-size: 13px;
}

.booking-summary__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.booking-summary__title {
	display: flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
}

.booking-summary__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #0b66ff;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}

.booking-summary__toggle:disabled {
	opacity: 0.45;
	cursor: default;
}

.booking-summary__content {
	display: flex;
	flex-direction: column;
}

.booking-summary__overview {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.booking-summary__title h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.booking-summary__title-icon {
	color: #001541;
	font-size: 14px;
}

.booking-summary__placeholder {
	color: #607096;
	font-size: 13px;
	line-height: 1.4;
}

.booking-summary [hidden] {
	display: none !important;
}

.booking-summary__label {
	margin-bottom: 8px;
	color: #58658c;
	font-size: 12px;
	font-weight: 600;
}

.booking-summary__date {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 9px 10px;
	border: 1px solid #7ca7ff;
	border-radius: 4px;
	background: #f4f8ff;
	color: #1d5edb;
	font-size: 12px;
	font-weight: 600;
}

.booking-summary__date-icon {
	font-size: 12px;
}

.booking-summary__line {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 13px;
	color: #17214d;
}

.booking-summary__line span {
	line-height: 1.3;
}

.booking-summary__line strong {
	font-weight: 800;
	white-space: nowrap;
	text-align: right;
}

.booking-summary__line--muted {
	color: #4d5a7f;
	font-size: 12px;
}

.booking-summary__small-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 6px;
	font-size: 11px;
	line-height: 1.3;
}

.booking-summary__small-line strong {
	font-weight: 700;
	white-space: nowrap;
}

.booking-summary__hotel-line {
	color: #607096;
}

.booking-summary__separator {
	height: 1px;
	margin: 14px 0;
	background: #edf0f5;
}

.booking-summary__info {
	margin-left: 4px;
	color: #607096;
	font-size: 11px;
}

.booking-summary__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 800;
}

.booking-summary__total strong {
	color: #17973b;
	font-size: 20px;
}

.booking-summary__pay-now {
	padding: 12px;
	border-radius: 4px;
	background: #eff8ec;
	color: #147a29;
}

.booking-summary__details {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.booking-summary__pay-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 800;
}

.booking-summary__pay-title strong {
	font-size: 14px;
	white-space: nowrap;
}

.booking-summary__remaining {
	margin-top: 10px;
	padding: 12px;
	border-radius: 4px;
	background: #eef4ff;
	color: #0037b8;
}

.booking-summary__remaining-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 800;
}

.booking-summary__remaining-title strong {
	font-size: 18px;
	white-space: nowrap;
}

.booking-summary__remaining p {
	margin: 6px 0 0;
	font-size: 11px;
	line-height: 1.3;
}

/* -------------------- Master product message -------------------- */

.booking-master-product-message {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px;
	border: 1px solid #cfe0ff;
	border-radius: 6px;
	background: #f4f8ff;
	color: #0b2d66;
}

.booking-master-product-message__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	color: #0b66ff;
	font-size: 14px;
}

.booking-master-product-message__content {
	min-width: 0;
	flex: 1 1 auto;
}

.booking-master-product-message__label {
	margin-bottom: 4px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #607096;
}

.booking-master-product-message__text {
	font-size: 13px;
	line-height: 1.45;
	white-space: normal;
	overflow-wrap: anywhere;
}

/* -------------------- Buttons -------------------- */

.aerosi-booking-modal__buttons {
	padding: 1em;
}

.booking-buttons {
	width: 100%;
	font-family: inherit;
}

.booking-buttons__content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.booking-buttons__button {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	min-height: 56px;
	padding: 11px 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	background: #fff;
	font: inherit;
	text-align: left;
	line-height: 1.25;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.booking-buttons__button:hover,
.booking-buttons__button:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(7, 24, 74, 0.12);
	outline: none;
	text-decoration: none;
}

.booking-buttons__button:active {
	transform: translateY(0);
	box-shadow: none;
}

.booking-buttons__button--disabled,
.booking-buttons__button:disabled {
	opacity: 0.52;
	filter: grayscale(1);
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.booking-buttons__button--disabled:hover,
.booking-buttons__button--disabled:focus-visible,
.booking-buttons__button:disabled:hover,
.booking-buttons__button:disabled:focus-visible {
	transform: none;
	box-shadow: none;
}

.booking-buttons__button--primary {
	background: #0b7d1d;
	border-color: #0b7d1d;
	color: #fff;
}

.booking-buttons__button--primary:hover,
.booking-buttons__button--primary:focus-visible {
	background: #096f19;
	border-color: #096f19;
}

.booking-buttons__button--gift {
	background: #fff;
	border-color: #fda750;
	color: #fda750; !important;
}

.booking-buttons__button--gift:hover,
.booking-buttons__button--gift:focus-visible,
.booking-buttons__button--gift:focus {
	background: #fff8f3;
	border-color: #fda750;
}

.booking-buttons__components {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.booking-buttons__components--after-gift {
	padding: 2px 10px 0;
}

.booking-payment-icons {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 14px;
	min-height: 38px;
	padding: 8px 12px;
}

.booking-payment-icons__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4em;
	height: 4em;
	line-height: 0;
	flex: 0 0 auto;
}

.booking-payment-icons__item img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.booking-buttons__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	flex: 0 0 58px;
}

.booking-buttons__icon svg,
.booking-buttons__secure-icon svg {
	display: block;
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.booking-buttons__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.booking-buttons__title {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.booking-buttons__subtitle {
	font-size: 12px;
	font-weight: 500;
	text-transform: lowercase;
}

.booking-buttons__button--primary .booking-buttons__subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.booking-buttons__button--gift .booking-buttons__subtitle {
	color: #5d6687;
}

.booking-buttons__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 10px 0;
	color: #7a819d;
	font-size: 11px;
	font-weight: 600;
}

.booking-buttons__secure-icon {
	display: inline-flex;
	color: #7a819d;
}

.booking-buttons__secure-icon svg {
	width: 14px;
	height: 14px;
	stroke-width: 1.8;
}

@media (max-width: 480px) {
	.booking-buttons__button {
		gap: 12px;
		padding: 11px 14px;
	}

	.booking-buttons__icon {
		flex-basis: 44px;
	}
}

.aerosi-booking-mobile-calendar {
	display: none;
}

@media (max-width: 767px) {
	.aerosi-booking-modal {
		align-items: stretch;
		justify-content: stretch;
	}

	.aerosi-booking-modal__content {
		min-width: 100vw;
		min-height: 100vh;
		max-width: none;
		max-height: none;
		border-radius: 0;
		padding: 12px;
		flex-direction: column;
		gap: 12px;
		overflow-y: auto;
	}

	.aerosi-booking-modal--gift-mode .aerosi-booking-modal__content {
		min-height: auto;
		max-height: calc(100vh - 24px);
		overflow-y: auto;
	}

	.aerosi-booking-modal--gift-mode .aerosi-booking-modal__products__options {
		flex-direction: column;
	}

	.aerosi-booking-modal--gift-mode .booking-summary__date {
		display: none;
	}

	.aerosi-booking-modal__main,
	.aerosi-booking-modal__sidebar {
		flex: 0 0 auto;
		width: 100%;
		margin-left: 0;
	}

	.aerosi-booking-modal__summary:not(.aerosi-booking-modal__summary--mobile) {
		display: none;
	}

.aerosi-booking-modal__summary--mobile {
	display: block;
}

.aerosi-booking-modal--gift-mode .aerosi-booking-modal__calendar {
	display: none !important;
}

.aerosi-booking-modal__main {
	gap: 12px;
}

	.aerosi-booking-modal__products__options {
		flex-direction: column;
		gap: 12px;
	}

	.aerosi-booking-modal__card {
		padding: 12px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	}

	.aerosi-booking-calendar {
		display: none;
	}

	.aerosi-booking-calendar__frame {
		display: none;
	}

	.aerosi-booking-mobile-calendar {
		display: block;
	}

	.aerosi-mobile-calendar {
		position: relative;
		display: flex;
		flex-direction: column;
		gap: 12px;
		color: #07184a;
	}

	.aerosi-mobile-calendar__header {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: nowrap;
	}

	.aerosi-mobile-calendar__nav {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		padding: 0;
		border: 1px solid #dfe6f2;
		border-radius: 8px;
		background: #fff;
		color: #0b66ff;
	}

	.aerosi-mobile-calendar__nav:hover, .aerosi-mobile-calendar__nav:focus {
		background-color: #fff !important;
		color: #0b66ff !important;
	}

	.aerosi-mobile-calendar__session:hover, .aerosi-mobile-calendar__session:focus {
		background-color: #fff !important;
		color: #07184a !important;
	}

	.aerosi-mobile-calendar__actions {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		margin-bottom: 10px;
		flex-wrap: wrap;
	}

	.aerosi-mobile-calendar__action {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 36px;
		padding: 0 12px;
		border: 1px solid #dfe6f2;
		border-radius: 8px;
		background: #fff;
		color: #0b66ff;
		font-size: 12px;
		font-weight: 700;
		white-space: nowrap;
	}

	.aerosi-mobile-calendar__range {
		text-align: center;
		font-size: 12px;
		font-weight: 700;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		min-width: 0;
		flex: 1 1 auto;
	}

	.aerosi-mobile-calendar__days {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.aerosi-mobile-calendar__day {
		display: flex;
		flex-direction: column;
		gap: 8px;
		min-width: 0;
		padding: 10px 8px;
		border: 1px solid #e5e7eb;
		border-radius: 8px;
		background: #fff;
	}

	.aerosi-mobile-calendar__day-header {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 5px;
		text-align: center;
		text-transform: capitalize;
	}

	.aerosi-mobile-calendar__weekday,
	.aerosi-mobile-calendar__month {
		font-size: 11px;
		font-weight: 600;
		color: #607096;
	}

	.aerosi-mobile-calendar__day-number {
		font-size: 20px;
		line-height: 1;
		font-weight: 800;
	}

	.aerosi-mobile-calendar__sessions {
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

	.aerosi-mobile-calendar__session {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 4px;
		padding: 8px;
		border: 1px solid #dfe6f2;
		border-radius: 6px;
		background: transparent;
		color: #07184a;
		text-align: left;
	}

	.aerosi-mobile-calendar__session--active {
		border-color: #0b66ff;
		box-shadow: 0 0 0 1px rgba(11, 102, 255, 0.16);
	}

	.aerosi-mobile-calendar__session-label {
		font-size: 13px;
		font-weight: 300;
		line-height: 1.2;
	}

	.aerosi-mobile-calendar__session-meta {
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 2px;
		min-width: 0;
	}

	.aerosi-mobile-calendar__session-places,
	.aerosi-mobile-calendar__session-price {
		font-weight: 700;
		font-size: 11px;
		line-height: 1.2;
	}

	.aerosi-mobile-calendar__session-places {
		display: inline-block;
		padding: 4px 10px;
		border-radius: 4px;
		width: fit-content;
		font-weight: 700;
	}

	.aerosi-mobile-calendar__session[data-status="available"] .aerosi-mobile-calendar__session-places {
		background: #e4f4df;
		color: #08751b;
	}

	.aerosi-mobile-calendar__session[data-status="low"] .aerosi-mobile-calendar__session-places {
		background: #fff0d8;
		color: #d16a00;
	}

.aerosi-mobile-calendar__session[data-status="full"] .aerosi-mobile-calendar__session-places {
	background: #f1f2f5;
	color: #607096;
}

.aerosi-mobile-calendar__session:disabled {
	cursor: default;
	opacity: 0.7;
	pointer-events: none;
}

.aerosi-mobile-calendar__session:disabled:hover,
.aerosi-mobile-calendar__session:disabled:focus {
	background: transparent;
}

.aerosi-mobile-calendar__day-empty {
	padding: 8px 0;
	color: #607096;
		font-size: 11px;
		text-align: center;
	}

	.booking-products__header,
	.booking-options__header {
		margin-bottom: 12px;
	}

	.booking-products__row,
	.booking-options__row {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px;
		padding: 12px 0;
	}
	.booking-products__row--head > :nth-child(-n + 2),
	.booking-options__row--head > :nth-child(-n + 2) {
		display: none;
	}

	.booking-products__row--head, .booking-options__row--head {
		justify-content: flex-end;
		text-align: right;
	}

	.booking-products__name,
	.booking-options__name {
		flex: 1 1 100%;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 6px;
	}

	.booking-products__name-main {
		flex: 1 1 100%;
	}

	.booking-products__name small,
	.booking-products__sub-description,
	.booking-options__sub-description {
		flex: 1 1 100%;
	}

	.booking-products__quantity,
	.booking-options__quantity {
		flex: 0 0 auto;
		width: auto;
		justify-content: center;
	}

	.booking-products__price,
	.booking-products__total,
	.booking-options__price,
	.booking-options__total {
		flex: 0 0 auto;
		text-align: left;
	}

	.booking-products__price,
	.booking-options__price {
		margin-left: auto;
	}

	.booking-options__hotel {
		flex: 1 1 100%;
	}

	.booking-products__notice,
	.booking-summary__pay-now,
	.booking-summary__remaining {
		padding: 10px;
	}

	.booking-summary__total strong {
		font-size: 18px;
	}

	.booking-summary__header {
		gap: 10px;
	}

	.booking-summary__toggle {
		font-size: 11px;
		padding: 3px;
	}

	.booking-buttons__button {
		min-height: 52px;
	}
}
