
@keyframes showing {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes hiding {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

.wpte-modal {
	max-width: 1180px;
	height: 80vh;
	width: calc(100% - 30px);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
}

@media (max-width: 767px) {
	.wpte-modal {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		height: 100%;
		width: 100%;
		border-radius: 0;
		transform: none;
	}
}

.wpte-modal__screen-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 11111;
	background-color: rgba(30, 30, 30, .9);
}

.wpte-modal__screen-overlay.showing {
	animation: showing .3s ease forwards;
}

.wpte-modal__screen-overlay.hiding {
	animation: hiding .3s ease forwards;
}

.wpte-modal .wpte-modal__close-button {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 20px;
	padding: 10px;
	opacity: .8;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 111;
}

.wpte-modal .wpte-modal__close-button svg {
	vertical-align: top;
	width: 1em;
	height: 1em;
}

.wpte-modal .wpte-modal__close-button:hover {
	opacity: 1;
}

.fancybox-slide--html {
	padding: 0 !important;
	background: none !important;
}

#wte__booking {
	border-radius: 4px;
	overflow: hidden;
	padding: 0;
	width: 100%;
	max-width: calc(100% - 30px);
}

#wte__booking .mfp-close {
	background: none;
	color: #333;
	font-size: 40px;
}

.wte-process-container {
	max-width: calc(100% - 64px) !important;
	margin: 0 auto;
}

.wte-process-nav {
	grid-area: steps;
	position: sticky;
	top: 0;
	background-color: #fff;
	padding: 0 !important;
	z-index: 11;
}

.wte-process-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 8px;
}

.wte-process-nav-list .wte-process-nav-item {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	font-weight: 500;
	color: #0f1d23;
	padding: 16px 30px;
	position: relative;
	transition: all .3s linear;
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: 10px;
	width: 33.153%;
	border-bottom: 4px solid rgba(15, 29, 35, .1019607843);
}

.wte-process-nav-list .wte-process-nav-item a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #0f1d23;
}

.wte-process-nav-list .wte-process-nav-item.active, .wte-process-nav-list .wte-process-nav-item.finish {
	border-bottom-color: var(--wpte-primary-color, var(--primary-color));
}

.wte-process-nav-list .wte-process-nav-item .wte-icon {
	line-height: 0;
	color: #6e797e;
}

.wte-process-nav-list .wte-process-nav-item .wte-icon svg {
	width: 1em;
	height: 1em;
}

.wte-process-nav-list .wte-process-nav-item.active a, .wte-process-nav-list .wte-process-nav-item.active .wte-icon {
	color: var(--wpte-primary-color, var(--primary-color));
}

.wte-process-tabs {
	grid-area: tabs;
	display: contents;
}

.wte-process-tabs .wte-process-container {
	padding: 2rem 0;
	position: relative;
	width: 100%;
}

.wte-process-tabs .wte-process-container.is-processing::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: hsla(0, 0%, 100%, .8);
	z-index: 11;
}

.wte-process-tabs .wte-process-container.is-processing::after {
	content: "";
	width: 30px;
	height: 30px;
	border: 2px solid var(--wpte-primary-color, var(--primary-color));
	border-top-color: rgba(0, 0, 0, 0);
	border-radius: 50%;
	animation: wpte-spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 11;
}

.wte-process-tabs .wte-process-tab-item {
	display: none;
	margin: 0 -15px !important;
	padding: 0 15px 0 !important;
}

.wte-process-tabs .wte-process-tab-item.loading {
	position: relative;
}

.wte-process-tabs .wte-process-tab-item.loading::before {
	width: 100%;
	height: 100%;
	background-color: hsla(0, 0%, 100%, .8);
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: 1;
}

.wte-process-tabs .wte-process-tab-item.loading::after {
	content: "";
	width: 50px;
	height: 50px;
	border: 5px solid rgba(0, 0, 0, .1);
	border-top-color: var(--wpte-primary-color, var(--primary-color));
	border-radius: 50%;
	animation: wpte-spin 1s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

@keyframes shimmer {
	100% {
		transform: translateX(100%);
	}
}

.wte-process-layout {
	height: 100%;
	overflow-y: auto;
}

.wte-process-layout .wte-process-tab-content-wrapper::before, .wte-process-layout .wte-process-tab-content-wrapper::after, .wte-process-layout .wte-booking-block-title::before, .wte-process-layout .wte-booking-block-title::after, .wte-process-layout .wte-booking-trip-title::before, .wte-process-layout .wte-booking-trip-title::after, .wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info::before, .wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info::after, .wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price::before, .wte-process-layout .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price::after, .wte-process-layout .wte-process-btn.wte-process-btn-next::before, .wte-process-layout .wte-process-btn.wte-process-btn-next::after, .wte-process-layout .wte-process-btn-prev::before, .wte-process-layout .wte-process-btn-prev::after, .wte-process-layout .wte-booking-starting-date::before, .wte-process-layout .wte-booking-starting-date::after, .wte-process-layout .wte-booking-summary-info-title::before, .wte-process-layout .wte-booking-summary-info-title::after {
	content: none;
}

.wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item {
	position: relative;
}

.wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item::before, .wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item::after {
	content: "";
	width: calc(100% - 48px);
	height: calc(100% - 40px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
	.wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item::before, .wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item::after {
		height: calc(100% - 30px);
	}
}

.wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item::before {
	background-color: #efefef;
}

.wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item::after {
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 20%, rgba(255, 255, 255, .5) 60%, rgba(255, 255, 255, 0));
	animation: shimmer 3s infinite;
}

.wte-process-layout.is-loading .wte-process-nav .wte-process-nav-item {
	border-bottom-color: #efefef;
}

.wte-process-layout.is-loading .wte-popup-sidebar {
	background: none;
}

.wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info {
	gap: 8px;
}

.wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-summary-info-title {
	background: none !important;
	border-radius: 4px;
}

.wte-process-layout.is-loading .wte-process-tab-content-wrapper, .wte-process-layout.is-loading .wte-booking-block-title, .wte-process-layout.is-loading .wte-booking-trip-title, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price, .wte-process-layout.is-loading .wte-process-btn.wte-process-btn-next, .wte-process-layout.is-loading .wte-process-btn-prev, .wte-process-layout.is-loading .wte-booking-starting-date, .wte-process-layout.is-loading .wte-booking-summary-info-title {
	position: relative;
	overflow: hidden;
	border: none !important;
	pointer-events: none;
	box-shadow: none;
	background: none;
	border-radius: 4px;
}

.wte-process-layout.is-loading .wte-process-tab-content-wrapper::before, .wte-process-layout.is-loading .wte-process-tab-content-wrapper::after, .wte-process-layout.is-loading .wte-booking-block-title::before, .wte-process-layout.is-loading .wte-booking-block-title::after, .wte-process-layout.is-loading .wte-booking-trip-title::before, .wte-process-layout.is-loading .wte-booking-trip-title::after, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info::before, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info::after, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price::before, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price::after, .wte-process-layout.is-loading .wte-process-btn.wte-process-btn-next::before, .wte-process-layout.is-loading .wte-process-btn.wte-process-btn-next::after, .wte-process-layout.is-loading .wte-process-btn-prev::before, .wte-process-layout.is-loading .wte-process-btn-prev::after, .wte-process-layout.is-loading .wte-booking-starting-date::before, .wte-process-layout.is-loading .wte-booking-starting-date::after, .wte-process-layout.is-loading .wte-booking-summary-info-title::before, .wte-process-layout.is-loading .wte-booking-summary-info-title::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 11;
}

.wte-process-layout.is-loading .wte-process-tab-content-wrapper::before, .wte-process-layout.is-loading .wte-booking-block-title::before, .wte-process-layout.is-loading .wte-booking-trip-title::before, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info::before, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price::before, .wte-process-layout.is-loading .wte-process-btn.wte-process-btn-next::before, .wte-process-layout.is-loading .wte-process-btn-prev::before, .wte-process-layout.is-loading .wte-booking-starting-date::before, .wte-process-layout.is-loading .wte-booking-summary-info-title::before {
	background-color: #efefef;
}

.wte-process-layout.is-loading .wte-process-tab-content-wrapper::after, .wte-process-layout.is-loading .wte-booking-block-title::after, .wte-process-layout.is-loading .wte-booking-trip-title::after, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info::after, .wte-process-layout.is-loading .wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price::after, .wte-process-layout.is-loading .wte-process-btn.wte-process-btn-next::after, .wte-process-layout.is-loading .wte-process-btn-prev::after, .wte-process-layout.is-loading .wte-booking-starting-date::after, .wte-process-layout.is-loading .wte-booking-summary-info-title::after {
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .8) 20%, white 60%, rgba(255, 255, 255, 0));
	animation: shimmer 3s infinite;
}

.wte-process-layout.is-loading .wte-booking-summary .wte-booking-block-title, .wte-process-layout.is-loading .wte-booking-summary .wte-booking-trip-title, .wte-process-layout.is-loading .wte-booking-summary .wte-booking-summary-info .total-amount .price, .wte-process-layout.is-loading .wte-booking-summary .wte-booking-starting-date {
	display: inline-block;
}

.wte-process-tab-content-wrapper .wte-process-tab-title {
	font-size: 16px;
	line-height: 1.45;
	font-weight: 600;
	color: #000;
	opacity: .8;
	margin-bottom: 16px;
	margin-top: 0;
}

.wte-process-tab-content-wrapper .wte-package-type {
	margin-bottom: 15px;
}

.wte-process-tab-content-wrapper p {
	font-size: 14px;
	line-height: 25px;
	color: rgba(0, 0, 0, .7);
	margin-top: 0;
}

.wte-process-tab-content-wrapper hr {
	opacity: 1 !important;
	margin: 20px 0;
	border-color: rgba(0, 0, 0, .03);
}

.wte-process-tab-content-wrapper .wte-option-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.wte-process-tab-content-wrapper .wte-option-heading span {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: #000;
	opacity: .3;
}

.wte-process-tab-content-wrapper .wte-option-heading span.text-left {
	padding-left: 50px;
}

@media (max-width: 575px) {
	.wte-process-tab-content-wrapper .wte-option-heading span.text-left {
		padding-left: 16px;
	}
}

.wte-process-tab-content-wrapper .wte-option-heading span.text-right {
	padding-right: 50px;
}

.wte-process-tab-content-wrapper .wte-booking-date-wrap {
	box-shadow: 0 2px 3px rgba(0, 0, 0, .08);
	border-radius: 8px;
}

.wte-process-tab-content-wrapper .wte-booking-date-wrap .wte-booking-times {
	padding: 16px;
}

.wte-process-tab-content-wrapper .wte-booking-date-wrap .wte-booking-times .wte-package-name {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	margin: 6px 0 6px;
	opacity: .7;
}

.wte-process-tab-content-wrapper .wte-booking-date-wrap .wte-booking-times .wte-package-name::after {
	content: "";
	width: 100%;
	height: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	flex: 1;
}

.wte-process-tab-content-wrapper .wte-booking-date-wrap .wte-booking-times .wte-button-group {
	gap: 8px;
}

.wte-process-tab-content-wrapper .wte-booking-date-wrap .wte-booking-times .wte-button-group .wte-check-button {
	padding: 12px 8px;
}

.wte-process-tab-content-wrapper .flatpickr-calendar {
	width: 100%;
	font-size: 16px;
	box-shadow: none;
	margin: 0 auto;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months {
	background-color: rgba(0, 0, 0, .02);
	height: 52px;
	position: relative;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month {
	height: 52px;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month {
	padding: 0;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: inherit;
	color: #000;
	display: flex;
	justify-content: center;
	padding: 0 25px;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month select, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month input {
	font-weight: 400;
	padding: 5px;
	transition: all .2s ease;
	padding-right: 15px;
}

@media (max-width: 575px) {
	.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month select, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month input {
		font-size: 12px;
	}
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month .numInputWrapper {
	width: 7ch;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-month .flatpickr-current-month .numInputWrapper:hover {
	background: none;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
	width: 40px;
	height: 30px;
	border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
	background-color: #fff;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 11px;
	left: auto;
	transform: translateY(-50%);
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover {
	color: var(--wpte-primary-color, var(--primary-color));
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover svg, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover svg {
	fill: var(--wpte-primary-color, var(--primary-color));
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month {
	left: 11px;
	right: auto;
}

@media (min-width: 768px) {
	.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month {
		left: auto;
		right: 56px;
	}
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer {
	width: 100%;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .flatpickr-days, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer {
	width: 100%;
	max-width: 100%;
	min-width: unset;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer {
	display: flex;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day {
	max-width: 14.2857142857%;
	flex: auto;
	height: 42.2px;
	border-color: rgba(0, 0, 0, .03);
	border-radius: 0;
	color: rgba(0, 0, 0, .9);
	font-weight: 500;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	border-left: 0;
	border-top: 0;
	flex-direction: column;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day:nth-of-type(7n) {
	border-right: 0;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.flatpickr-disabled {
	color: rgba(var(--wpte-primary-color-rgb, var(--primary-color-rgb)), .2) !important;
	background: none !important;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.today {
	background-color: rgba(var(--wpte-primary-color-rgb, var(--primary-color-rgb)), .05) !important;
	color: var(--wpte-primary-color, var(--primary-color)) !important;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.selected {
	background-color: var(--wpte-primary-color, var(--primary-color)) !important;
	color: #fff !important;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.prevMonthDay, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.nextMonthDay {
	font-size: 0;
	pointer-events: none;
	background: none;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.prevMonthDay *, .wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.nextMonthDay * {
	font-size: 0;
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day .price-info {
	font-size: 12px;
}

@media (max-width: 575px) {
	.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day {
		font-size: 14px;
	}
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays {
	height: 52px;
	border-bottom: 1px solid rgba(0, 0, 0, .03);
}

.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(0, 0, 0, .6);
}

.wte-popup-sidebar {
	grid-area: sidebar;
	border-top: 1px solid rgba(0, 0, 0, .05);
	padding: 24px;
	background-color: rgba(var(--wpte-primary-color-rgb, var(--primary-color-rgb)), .08);
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-block-title {
	font-size: 14px;
	line-height: 1.7;
	color: #000;
	opacity: .6;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 8px;
	margin-top: 0;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-trip-title {
	font-size: 20px;
	line-height: 1.6;
	color: #000;
	opacity: .8;
	font-weight: 500;
	margin-bottom: 8px;
	margin-top: 0;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-dates {
	margin-bottom: 24px;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-dates p {
	margin: 0;
	font-size: 14px;
	line-height: 21px;
	color: #000;
	opacity: .8;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-dates p strong {
	font-weight: 600;
	margin-left: 4px;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-dates p.wte-booking-starting-date {
	margin-bottom: 5px;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-summary-info-title {
	font-size: 14px;
	line-height: 1.7;
	font-weight: 500;
	color: #fff;
	display: inline-block;
	background-color: var(--wpte-primary-color, var(--primary-color)) !important;
	border-radius: 4px 4px 0 0;
	padding: 8px 10px;
	margin: 0 0 -1px;
	align-self: start;
	position: sticky;
	top: 0;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info {
	padding: 16px 0px !important;
	border-top: 1px solid rgba(0, 0, 0, .1) !important;
}

@media (min-width: 768px) {
	.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info {
		border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
	}
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details:not(:last-child) {
	margin-bottom: 8px;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details .wte-booking-details-title {
	font-size: 16px;
	line-height: 1.75;
	font-weight: 600;
	color: rgba(0, 0, 0, .8);
	margin-bottom: 4px;
	margin-top: 0;
	padding: 0 !important;
	border: none !important;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li {
	display: flex;
	justify-content: space-between;
	line-height: 1;
	color: #000;
	margin-left: 0;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li strong {
	font-weight: 600;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li label {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	padding-right: 16px;
	color: #566267;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li label .qty {
	font-size: 12px;
	font-weight: 400;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li .amount-figure {
	font-size: 16px;
	line-height: 1.75;
	font-weight: 600;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .wte-booking-trip-info .wte-booking-details ul li .amount-figure strong {
	font-weight: inherit;
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount {
	padding: 16px 0;
}

@media (max-width: 767px) {
	.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount {
		background-color: #fff;
		padding: 16px 24px;
		margin: 0 -24px;
		position: sticky;
		bottom: 0;
		z-index: 1;
	}
}

.wte-popup-sidebar .wte-booking-summary .wte-booking-summary-info .total-amount .price {
	font-size: 20px;
	font-weight: 600;
	color: rgba(0, 0, 0, .9);
	margin-bottom: 0;
	margin-top: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}

.wte-process-tab-controller {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 0;
	background-color: #fff;
}

.wte-process-tab-controller .wte-process-btn {
	font-weight: 500;
	transition: all .3s linear;
}

.wte-process-tab-controller .wte-process-btn-prev {
	font-size: 14px;
	color: var(--wpte-primary-color, var(--primary-color));
	border: none;
	background: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	padding: 0 !important;
}

.wte-process-tab-controller .wte-process-btn-prev svg {
	margin-right: 8px;
}

.wte-process-tab-controller .wte-process-btn-prev svg path {
	stroke: currentColor;
}

.wte-process-tab-controller .wte-process-btn-prev:hover {
	text-decoration: underline;
}

.wte-process-tab-controller .wte-process-btn-next {
	padding: 15.5px 60px;
	font-size: 18px;
	background-color: var(--wpte-primary-color, var(--primary-color));
	color: #fff;
	border-radius: 100px;
	border: none !important;
	box-shadow: 0 7px 26px rgba(0, 0, 0, .16);
	text-transform: capitalize;
	cursor: pointer;
	text-decoration: none;
}

@media (max-width: 575px) {
	.wte-process-tab-controller .wte-process-btn-next {
		font-size: 14px;
	}
}

.wte-process-tab-controller .wte-process-btn-next:disabled {
	opacity: .5;
	cursor: not-allowed;
}

.wte-trip-options .wte-trip-guest-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 16px !important;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, .0784313725) !important;
	margin-bottom: 15px;
	gap: 16px;
	border-radius: 8px !important;
}

@media (max-width: 767px) {
	.wte-trip-options .wte-trip-guest-wrapper {
		flex-wrap: wrap;
	}
}

.wte-trip-options .wte-trip-guest-wrapper .wte-trip-warning {
	width: 100%;
	padding: 16px;
	border: 1px solid #ef9400;
	background-color: #fef7ea;
	border-radius: 8px;
	font-size: 16px;
	line-height: 1.6;
	color: #0f1d23;
	display: flex;
	gap: 16px;
}

.wte-trip-options .wte-trip-guest-wrapper .wte-trip-warning svg {
	flex: 0 0 24px;
}

.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	row-gap: 4px;
}

@media (min-width: 768px) {
	.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper {
		flex: 1;
	}
}

.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper label {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: rgba(0, 0, 0, .8);
}

.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper .wte-minimum-pax {
	font-size: 12px;
	color: rgba(0, 0, 0, .6);
	display: block;
	width: 100%;
}

.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper .render {
	font-size: 14px;
	color: rgba(0, 0, 0, .6);
}

.wte-trip-options .wte-trip-guest-wrapper .check-in-wrapper .check-in-description {
	font-size: 14px;
	line-height: 1.7;
	color: #566267;
	width: 100%;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 768px) {
	.wte-trip-options .wte-trip-guest-wrapper .select-wrapper {
		width: 45%;
	}
}

@media (max-width: 767px) {
	.wte-trip-options .wte-trip-guest-wrapper .select-wrapper {
		flex-grow: 1;
	}
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	-moz-column-gap: 5px;
	column-gap: 5px;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .regular-price {
	font-size: 14px;
	color: #000;
	opacity: .4;
}

@media (max-width: 575px) {
	.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .regular-price {
		font-size: 12px;
	}
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .offer-price {
	font-size: 16px;
	color: rgba(0, 0, 0, .8);
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .per-text-wrapper {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	width: 100%;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .amount-per-person .per-text {
	font-size: 14px;
	color: #000;
	opacity: .5;
	white-space: nowrap;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(23, 13, 68, .06);
	overflow: hidden;
	border-radius: 5px;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number button {
	line-height: 0;
	background-color: rgba(0, 0, 0, .03);
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s linear;
	cursor: pointer;
	padding: 0;
	border: none;
	border-radius: 0;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number button:hover {
	background-color: rgba(0, 0, 0, .1);
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number button:disabled {
	opacity: .5;
	cursor: not-allowed;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper .wte-qty-number input {
	min-height: unset;
	width: 38px;
	height: 38px;
	font-size: 16px;
	font-weight: 500;
	color: rgba(0, 0, 0, .8);
	text-align: center;
	border: 0;
	outline: none;
	padding: 0;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	padding: 10px 14px;
	padding-right: 42px;
	border-radius: 4px;
	border: 1px solid #ccd5d8;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%276%27 viewBox=%270 0 10 6%27%3E%3Cpath id=%27Path_23948%27 data-name=%27Path 23948%27 d=%27M3294.464,368.331l-4,4,4,4%27 transform=%27translate%28-366.917 3295.878%29 rotate%28-90%29%27 fill=%27none%27 stroke=%27%23170d44%27 stroke-linecap=%27round%27 stroke-width=%272%27 opacity=%270.6%27/%3E%3C/svg%3E%0A");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: right 14px center;
	height: unset;
	max-width: 140px;
}

.wte-trip-options .wte-trip-guest-wrapper .select-wrapper select.nitro-lazy {
	background-image: none !important;
}

.wte-trip-options .wte-trip-guest-wrapper.vertical {
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 10px;
	padding: 15px;
	min-width: 178px;
	align-items: center;
}

.wte-trip-options .wte-trip-guest-wrapper.vertical .select-wrapper {
	flex-direction: column-reverse;
	align-items: center;
	grid-gap: 10px;
}

.wte-trip-options .wte-trip-guest-wrapper.vertical .check-in-wrapper {
	flex-wrap: nowrap;
}

.wte-meta-help {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .07);
	text-decoration: none;
	cursor: pointer;
	position: relative;
}

.wte-meta-help svg {
	width: 6px;
	height: auto;
}

.wte-meta-help .wte-help-content {
	position: absolute;
	left: 50%;
	top: 100%;
	width: auto;
	border-radius: 5px;
	background: rgba(0, 0, 0, .9);
	color: #fff;
	font-size: 13px;
	line-height: 1.5;
	font-weight: 300;
	padding: 10px;
	margin-top: 6px;
	display: none;
	transform: translateX(-50%);
}

.wte-meta-help .wte-help-content::before {
	content: "";
	border-bottom: 5px solid rgba(0, 0, 0, .9);
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgba(0, 0, 0, 0);
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-top: -1px;
	transform: translateX(-50%);
}

.wte-meta-help:hover .wte-help-content {
	display: block;
}

.wte-es-with-multiple-options {
	display: flex;
	grid-gap: 15px;
	overflow-x: auto;
	padding: 0 15px;
	margin: 0 -15px;
	scroll-snap-type: both mandatory;
}

.wte-es-with-multiple-options::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

.wte-es-with-multiple-options::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0);
}

.wte-es-with-multiple-options::-webkit-scrollbar-thumb {
	background-color: #eee;
	border-radius: 5px;
	visibility: hidden;
}

.wte-es-with-multiple-options::-webkit-scrollbar-thumb:hover {
	background-color: #ccc;
}

.wte-es-with-multiple-options:hover::-webkit-scrollbar-thumb {
	visibility: visible;
}

.wte-es-with-multiple-options .wte-trip-guest-wrapper {
	border-bottom: none;
	scroll-snap-stop: normal;
	scroll-snap-align: start;
}

.wpte-select-options {
	display: inline-block;
	position: relative;
	font-size: 15px;
}

.wpte-select-options .option-toggle {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
	color: #170d44;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
	border: none;
	background-color: #fff;
	box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
	position: relative;
	text-transform: capitalize;
}

.wpte-select-options .option-toggle::after {
	content: "";
	width: 9px;
	height: 7px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710.828%27 height=%276.828%27 viewBox=%270 0 10.828 6.828%27%3E%3Cpath id=%27Path_23948%27 data-name=%27Path 23948%27 d=%27M3294.464,368.331l-4,4,4,4%27 transform=%27translate%28-366.917 3295.878%29 rotate%28-90%29%27 fill=%27none%27 stroke=%27%23170d44%27 stroke-linecap=%27round%27 stroke-width=%272%27 opacity=%270.6%27/%3E%3C/svg%3E%0A");
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transform-origin: center;
	transition: all .3s ease;
}

.wpte-select-options .option-toggle:hover {
	background-color: rgba(23, 23, 23, .05);
}

.wpte-select-options button.option-toggle {
	padding-right: 32px;
}

.wpte-select-options-wrapper {
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
	background-color: #fff !important;
}

.wpte-select-options-wrapper .tippy-content {
	padding: 15px;
}

.wpte-group-discount-options .options-list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #000;
}

.wpte-group-discount-options .options-list li {
	display: flex;
	justify-content: space-between;
}

.wpte-group-discount-options .options-list li:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.wpte-group-discount-options .options-list li.list-heading {
	font-weight: 600;
	border-bottom-width: 2px;
}

.wpte-group-discount-options .options-list li > span {
	flex: 1;
}

.wpte-group-discount-options .options-list li .price-per-person, .wpte-group-discount-options .options-list li .traveler-price {
	text-align: right;
}

@media (min-width: 576px) {
	.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekday {
		font-size: 15px;
	}
}

@media (min-width: 768px) {
	.wte-process-layout {
		display: grid;
		grid-template-areas: "steps sidebar" "tabs sidebar";
		grid-template-rows: auto 1fr;
		grid-template-columns: 73% 27% !important;
		height: 80vh;
		max-height: 80vh;
	}
	
	.wte-process-tabs .wte-process-container {
		padding-bottom: 124px;
	}
	
	.wte-process-tabs .wte-process-tab-item {
		max-height: calc(80vh - 231px);
		overflow-y: auto;
		overflow-x: hidden;
		padding-right: 10px;
		height: 100%;
	}
	
	.wte-process-tabs .wte-process-tab-item::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	
	.wte-process-tabs .wte-process-tab-item::-webkit-scrollbar-track {
		background-color: rgba(0, 0, 0, 0);
	}
	
	.wte-process-tabs .wte-process-tab-item::-webkit-scrollbar-thumb {
		background-color: #ccc;
		border-radius: 5px;
	}
	
	.wte-popup-sidebar {
		border-top: none;
		border-left: 1px solid rgba(0, 0, 0, .05);
		max-height: 80vh;
		overflow-y: auto;
	}
	
	.wte-popup-sidebar::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	
	.wte-popup-sidebar::-webkit-scrollbar-track {
		background-color: rgba(0, 0, 0, 0);
	}
	
	.wte-popup-sidebar::-webkit-scrollbar-thumb {
		background-color: #eee;
		border-radius: 5px;
	}
	
	.wte-popup-sidebar::-webkit-scrollbar-thumb:hover {
		background-color: #ccc;
	}
	
	.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-months .flatpickr-prev-month {
		left: auto;
		right: 56px;
	}
	
	.wte-process-tab-controller {
		width: calc(100% + 20px);
		display: block;
		padding: 30px 55px;
		position: absolute;
		bottom: 1px;
	}
	
	.wte-process-tab-controller .wte-process-btn-prev {
		position: absolute !important;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}

.wptravelengine-alert {
	padding: 12px 16px;
	border-radius: 4px;
	border: 1px solid #f79009;
	display: flex;
	gap: 8px;
	font-size: 14px;
	line-height: 1.7;
	color: #202636;
	background-color: #fff7ec;
	margin-bottom: 16px;
}

.wptravelengine-alert svg {
	flex: 0 0 24px;
	font-size: 24px;
	color: #f79009;
}
