/* hover */
/* focus */
/* The primary input mechanism of the device includes an accurate pointing device. */
/* The primary input mechanism of the device includes a pointing device of limited accuracy. */
/* The primary input mechanism of the device does not include a pointing device. */
/* Primary input mechanism system can 
   hover over elements with ease */
/* Primary input mechanism cannot hover 
   at all or cannot conveniently hover 
   (e.g., many mobile devices emulate hovering
   when the user performs an inconvenient long tap), 
   or there is no primary pointing input mechanism */
/* retina custom media */
:root {
	/* fonts */
	--font: 'Montserrat', sans-serif;

	/* colors */
	--bg: #f6f6f6;
	--black: #141414;
	--blue: #1661ad;
	--brand-blue: #4e78da;
	--brand-green: #23c1a1;
	--brand-orange: #fdae38;
	--light-blue: #54abf6;
	--dark-blue: #324b86;

	--box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.1);

	/* containers */
	--container--middle__max-width: 1360px;
}
.container-regular,
.container-middle {
	width: min(100%, var(--container__width, 100%));
	padding-right: var(--container__pi, 0);
	padding-left: var(--container__pi, 0);
	margin-inline: auto;
}
.container-middle {
	max-width: var(--container--middle__max-width);
}
/* @import url(./_sanitize); */
.hover-opacity {
	text-decoration: none;
	transition: opacity .3s;
	will-change: opacity;
}
.hover-opacity:hover:not(:focus), .hover-opacity:focus:not(:focus) {
		opacity: 0.7;
	}
.hover-underline {
	text-decoration: underline;
	-webkit-text-decoration-color: transparent;
	        text-decoration-color: transparent;
	transition: -webkit-text-decoration-color .3s;
	transition: text-decoration-color .3s;
	transition: text-decoration-color .3s, -webkit-text-decoration-color .3s;
	will-change: text-decoration-color;
}
.hover-underline:hover:not(:focus), .hover-underline:focus:not(:focus) {
		-webkit-text-decoration-color: currentColor;
		        text-decoration-color: currentColor;
	}
.hover-underline-reversed {
	text-decoration: underline;
	-webkit-text-decoration-color: currentColor;
	        text-decoration-color: currentColor;
	transition: -webkit-text-decoration-color 0.3s;
	transition: text-decoration-color 0.3s;
	transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
	will-change: text-decoration-color;
}
.hover-underline-reversed:hover,
	.hover-underline-reversed:focus {
		-webkit-text-decoration-color: transparent;
		        text-decoration-color: transparent;
	}
/* hidden */
:where(body) {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto 1fr auto;
	align-items: start;
	width: 100%;
	min-width: 320px;
	min-height: calc(var(--vh, 1vh) * 100);
	font-family: var(--font);
	text-rendering: optimizeSpeed;
}
:where(input, button, textarea, select) {
	border-radius: 0;
	font: inherit;
}
body {
	background-color: var(--body__bgc, var(--bg));
}
.plain-list {
	padding-left: 0;
	list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
}
:where(picture) {
	display: block;
	max-width: 100%;
	height: auto;
}
.site-main, .site-main-hotel {
	display: flex;
	flex-direction: column;
	width: 100%;
}
/*.other-tours, */ .booking-steps-content{
	overflow: hidden;
}
.site-main-hotel{
	overflow: hidden;
}
body {
	font-family: var(--font);
}
.site-footer {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #f6f6f6;
}
.site-header {
	--site-header__padding-block: 24px;
	display: flex;
	position: relative;
	flex-direction: column;
	padding-top: var(--site-header__padding-block);
	color: white;
	gap: var(--site-header__gap--override, var(--site-header__gap));
}
.offcanvas.background--dark-blue {
		background-color: var(--dark-blue);
		color: white;
	background-image: linear-gradient(
			87deg, #394984 0%, #4578aa 100%);
	}
.offcanvas.background--dark-blue .btn-close {
			filter: invert(1);
		}
.offcanvas.offcanvas-bottom {
		width: 100%;
		height: auto;
		border-top-right-radius: 18px;
		border-top-left-radius: 18px;
	}
.offcanvas.offcanvas-bottom .offcanvas-body {
			width: 100%;
			padding: 24px 16px;
		}
.offcanvas .btn-close {
		box-sizing: border-box;
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		border-radius: 0;
		color: currentColor;
	}
.offcanvas .photo-list {
		display: flex;
		flex-direction: column;
		width: calc(100% + 32px);
		margin-right: -16px;
		margin-bottom: -24px;
		margin-left: -16px;
	}
.offcanvas .photo-list img,
.offcanvas .photo-list picture {
			display: block;
			width: 100%;
			height: auto;
	margin-bottom: 20px;
	}
.offcanvas .video-list {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
.offcanvas .video-list lite-youtube{
	margin-bottom: 20px;
}

.modal-dialog {
	/* width: 100%;
	max-width: var(--modal-dialog__max-width, 800px); */

	width: calc(100% - 15px);
	max-width: 800px;
}
.modal--wide .modal-dialog{
	max-width: 100%
}
.modal-header {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	padding-top: 60px;
	border-bottom: 0;
	text-align: center;
}
.modal-header > * {
		max-width: 500px;
	}
.modal-header .btn-close {
		box-sizing: border-box;
		position: absolute;
		top: 20px;
		right: 20px;
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		border-radius: 0;
	}
.modal-title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	width: 100%;
	/* max-width: none; */
	margin-bottom: 16px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	gap: 8px;
}
.modal-body {
	align-self: center;
	width: min(var(--modal-body__width-min, 632px), 100%);
	padding-bottom: 60px;
}
.modal-subtitle {
	font-size: 18px;
	font-weight: 500;
}
.modal .vertical-form button {
			align-self: center;
			width: auto;
		}
.modal--large {
	--modal-dialog__max-width: calc(130vmin - 30px);
	--modal-body__width-min: calc(100% - 30px);
}
.modal--wide {
	--modal-dialog__max-width: calc(100% - 30px);
	--modal-body__width-min: calc(100% - 30px);
}
.modal-map__map-wrapper {
		width: 100%;
		min-height: 70vh;
	}
.modal-rooms {
	display: grid;
	grid-gap: 16px;
	grid-template-columns: var(--modal-rooms__gtc, 100%);
}
.footer-content {
	padding-top: 40px;
	padding-bottom: 40px;
	border-top: 2px solid white;
	color: var(--black);
}
.footer-more-icon {
	display: grid; grid-template-columns: repeat(2, 1fr); justify-items: center;
}
.footer-content__wrapper {
		display: var(--footer-content__display, flex);
		gap: 32px 64px;
	}
.footer-content__address > *:not(h3) {
			display: flex;
			align-items: center;
			min-height: 44px;
			margin-bottom: 0;
			font-size: 16px;
		}
.footer-content__address > a {
			margin-top: 0;
			margin-bottom: 0;
			color: var(--black);
			font-weight: 500;
		}
.footer-content h3 {
		margin-bottom: 24px;
		color: var(--black);
		font-size: 18px;
		font-weight: 700;
	}
.footer-content__link-list {
		margin-bottom: 0;
	}
.footer-content__social-list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-bottom: 0;
		gap: 16px;
	}
.footer-content__social-list a {
			display: inline-flex;
			justify-content: center;
			min-width: 132px;
			height: 44px;
			padding: 12px 24px;
			border-radius: 2px;
			background-color: white;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
			color: var(--accent-color, var(--black));
			font-size: 14px;
			font-weight: 700;
			text-decoration: none;
		}
.footer-copy {
	display: flex;
	justify-content: center;
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: rgba(77, 83, 88, 0.03);
	text-align: center;
}
.footer-copy small {
		color: var(--black);
		font-size: 14px;
	}
.footer-top {
	padding-top: 60px;
	padding-bottom: 60px;
	color: var(--black);
}
.footer-top__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
.footer-top__list {
		--button__bg-color--outline: transparent;
		display: var(--footer-top__list__display, none);
		grid-template-columns: repeat(5, 1fr);
		align-items: center;
		justify-content: center;
		justify-items: center;
		margin-bottom: 0;
		gap: 16px;
	}
.footer-top__list button {
			white-space: nowrap;
		}
.site-footer__logo {
	color: currentColor;
}
.site-header__content {
		display: grid;
		z-index: 2;
		position: relative;
		grid-template-areas: var(--header__wrapper__gta);
		grid-template-columns: var(--header__wrapper__gtc);
		align-items: var(--header__wrapper__ai, center);
		gap: 24px;
	}
.site-header__cover {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: var(--site-header__cover__height, 100%);
	}
.site-header__cover::before {
			position: absolute;
			background-color: rgb(6 8 16 / 36%);
			content: '';
			inset: 0;
		}
.site-header__cover picture,
		.site-header__cover img {
			display: block;
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
		}
.site-header__hover-block {
		z-index: 2;
	}
.menu-is-toggled {
	--mobile-consulation__display: flex;
	--header__menu-group__display: grid;
	--header__mobile-login__display: inline-flex;
	--header__desktop-button-phones: none;
	--site-header__pb: 24px;
	--body__bgc: var(--dark-blue);
	-webkit-animation: bga 0.5s forwards;
	        animation: bga 0.5s forwards;
}
@-webkit-keyframes reveal {
	from {
		transform: translateY(16px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes reveal {
	from {
		transform: translateY(16px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.custom-select {
	width: auto !important;
}
.custom-select .dropdown-menu {
		padding: 0;
		border-radius: 0;
	}
.custom-select .btn {
		border: none;
		background-color: transparent;
		box-shadow: none !important;
	}
.custom-select .filter-option-inner-inner {
		display: inline-flex;
	}
.custom-select .dropdown-toggle::after {
		display: flex;
		width: 15px;
		height: 10px;
		margin-left: 8px;
		border: none;
		background-image: url('../img/icons/icon-arrow-down.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 13px 8px;
	}
.custom-select--city, .custom-select--city-2 {
		margin-left: 8px;
	}
.custom-select--city .btn, .custom-select--city-2 .btn {
			color: var(--nav-tabs__city__color);
		}
.custom-select--city .filter-option-inner-inner{
			text-decoration: underline;
		}
.custom-select--city .dropdown-toggle::after {
			filter: invert(var(--nav-tabs__city__icon__color-inversion, 1));
		}
.custom-select--country .dropdown-menu.inner, .custom-select--resort .dropdown-menu.inner {
			display: flex;
			flex-wrap: wrap;
			min-width: var(--custom-select__min-width, 456px);
		}
.custom-select--country .dropdown-menu.inner li, .custom-select--resort .dropdown-menu.inner li {
				width: var(--custom-select__item__width, 50%);
			}
.custom-select--country .dropdown-item, .custom-select--resort .dropdown-item {
			display: flex;
			min-height: 44px;
			padding: 6px 24px;
		}
.custom-select--country .dropdown-item:focus small, .custom-select--country .dropdown-item:active small, .custom-select--resort .dropdown-item:focus small, .custom-select--resort .dropdown-item:active small {
					color: white !important;
				}
.custom-select--country .dropdown-item .text, .custom-select--resort .dropdown-item .text {
				display: flex !important;
				flex-direction: column;
				align-items: flex-start;
				margin-left: 4px;
				line-height: 1;
				white-space: break-spaces;
			}
.custom-select--country .dropdown-item .text small, .custom-select--resort .dropdown-item .text small {
					padding-left: 0;
				}
.custom-select--country .dropdown-item {
			align-items: baseline;
		}
.custom-select--resort .dropdown-item {
			align-items: center;
			padding-right: 40px;
		}
.custom-select--resort .check-mark {
			display: inline-block !important;
			position: absolute;
			top: 12px !important;
			right: 24px !important;
			color: #c9cedb;
		}
.custom-select--resort .selected .check-mark {
			color: var(--brand-green);
		}
.custom-select .bs-actionsbox {
		padding: 8px 12px;
	}
.custom-select .bs-actionsbox .btn-group {
			display: flex;
			gap: 2px;
		}
.custom-select .bs-actionsbox button {
			justify-content: center !important;
			background-color: var(--brand-blue);
			color: white;
			text-align: center;
		}
.custom-select .dropdown-toggle:focus:not(:focus-visible), .custom-select > select.mobile-device:focus + .dropdown-toggle:not(:focus-visible) {
			outline: none !important;
		}
.has-anchor {
	scroll-margin-top: 20px;
}
.burger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: var(--burger__width, 32px);
	height: var(--burger__width__height, 32px);
}
.burger span {
		width: 16px;
		height: 2px;
		border-radius: 1px;
		background-color: var(--burger__color, currentColor);
		pointer-events: none;
		transition: transform 0.3s;
		will-change: transform;
	}
.burger span + span {
			margin-top: 4px;
		}
.show .burger span:first-child, [aria-expanded='true'] .burger span:first-child {
			transform: translateY(6px) rotate(45deg);
		}
.show .burger span:nth-child(2), [aria-expanded='true'] .burger span:nth-child(2) {
			transform: rotateY(90deg);
		}
.show .burger span:nth-child(3), [aria-expanded='true'] .burger span:nth-child(3) {
			transform: translateY(-6px) rotate(-45deg);
		}
.button-with-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 16px 32px;
	border: none;
	font-size: 16px;
	font-weight: 700;
}
button.button-with-icon {
		border-radius: 0;
		background-image: none;
	}
.button-with-icon,
	.button-with-icon:hover,
	.button-with-icon:focus {
		background-color: transparent;
		color: white;
		text-decoration: none;
	}
.button-with-icon svg {
		margin-right: 8px;
	}
.button {
	--outline-color: var(--button__bg-color, var(--black));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 16px var(--button__pi, 24px);
	border: none;
	font-size: 16px;
	font-weight: 700;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
button.button {
		border-radius: 0;
		background-image: none;
	}
.button,
	.button:hover,
	.button:focus {
		background-color: var(--button__bg-color, var(--black));
		color: white;
		text-decoration: none;
	}
.button--blue {
		--button__bg-color: var(--brand-blue);
	}
.button--dark-blue {
		--button__bg-color: var(--dark-blue);
	}
.button--dark-blue span{
	margin-left: 5px;
}
.button--orange {
		--button__bg-color: var(--brand-orange);
	color: white !important;
	cursor: pointer;
	}
.button--orange:hover{
	text-decoration: none !important;
}
.button--white {
		--button__bg-color: white;
		--button__bg-color--outline: transparent;
	}
.button--outline,
		.button--outline:hover,
		.button--outline:focus {
			border: 1px solid var(--button__bg-color);
			background-color: var(--button__bg-color--outline, white);
			color: var(--button__bg-color);
		}
.read-more-button {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 0;
	border: none;
	background: none;
	color: var(--dark-blue);
	font-size: 16px;
	font-weight: 500;
	transition: opacity 0.3s;
	will-change: opacity;
	-webkit-appearance: none;
	        -moz-appearance: none;
	     appearance: none;
}
.read-more-button:hover, .read-more-button:focus {
		opacity: 0.7;
	}
.mark-holder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--mark-holder__p);
	border-radius: var(--mark-holder__radius) var(--mark-holder__radius) 2px
		var(--mark-holder__radius);
	background-color: var(--accent-color, var(--brand-green));
	color: white;
	font-size: var(--mark-holder__fz);
	font-weight: 700;
	line-height: 1;
	text-align: center;
}
.old-price-with-discount {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.old-price-with-discount > *:not(:last-child) {
		margin-right: 10px;
	}
.old-price-holder {
	color: #676a72;
	font-size: 16px;
	font-weight: 400;
	text-decoration: line-through;
	opacity: 0.8;
}
.discount-holder {
	display: inline-flex;
	padding: 2px 4px;
	border-radius: 2px;
	background-color: #fd6d38;
	color: white;
	font-size: 12px;
	font-weight: 600;
}
.promo-holder {
	padding: 4px 8px;
	border-radius: 24px 24px 0 24px;
	background-color: var(--brand-green);
	color: white;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.24px;
}
.rating-holder {
	color: var(--accent-color, var(--brand-green));
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	opacity: 0.8;
}
.reviews-quantity-link {
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: right;
	/*text-decoration: underline; */
	-webkit-text-decoration-color: currentColor;
	        text-decoration-color: currentColor;
	transition: -webkit-text-decoration-color 0.3s;
	transition: text-decoration-color 0.3s;
	transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
	will-change: text-decoration-color;
}
.reviews-quantity-link,
	.reviews-quantity-link:hover {
		color: #989898;
	}
.reviews-quantity-link:hover,
	.reviews-quantity-link:focus {
		-webkit-text-decoration-color: transparent;
		        text-decoration-color: transparent;
	}
.stars-holder {
	display: inline-flex;
	align-items: center;
	margin-right: var(--stars-holder__mr, 0);
	margin-left: var(--stars-holder__ml, 12px);
	color: var(--brand-orange);
	font-size: var(--stars-holder__fz);
	font-weight: 700;
	line-height: 1;
}
.stars-holder::after {
		display: block;
		width: 15px;
		height: 14px;
		margin-left: 2px;
		background-image: url('../img/index-hot-tours/hot-tours-star.svg');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 15px 14px;
		content: '';
	}
[data-sort] svg {
		transition: transform 0.3s;
		will-change: transform;
	}
[data-sort='descending'] svg {
		transform: rotateX(180deg);
	}
.custom-datepicker {
	display: flex;
	align-items: center;
	min-height: 40px;
	cursor: pointer;
}
.custom-datepicker__wrapper {
		display: grid;
		position: relative;
		grid-template-columns: auto 1fr;
		align-items: center;
	}
.custom-datepicker__title {
		margin-right: 8px;
	}
.custom-datepicker__input {
		width: 100px;
		border: none;
		border-radius: 0;
		outline: none;
	cursor: pointer;
	}
.custom-datepicker__subtitle {
		position: absolute;
		right: 16px;
		bottom: 0;
		transform: translateY(80%);
		color: #8a8a8a;
	}
.custom-datepicker__icon {
		padding-left: 8px;
		color: #8a8a8a;
	}
.litepicker {
	--litepicker-button-prev-month-color: white;
	--litepicker-button-next-month-color: white;
	--litepicker-button-prev-month-color-hover: white;
	--litepicker-button-next-month-color-hover: white;
}
.litepicker .button-previous-month,
	.litepicker .button-next-month {
		width: 40px;
		height: 40px;
		border-radius: 0 !important;
		background-color: var(--brand-blue);
		cursor: pointer;
	}
.litepicker .day-item {
		border-radius: 0 !important;
	}
.litepicker .container__months .month-item-header {
			background-color: #f6f6f6;
		}
.litepicker .button-next-month path, .litepicker .button-previous-month path {
			stroke: var(--brand-blue);
			stroke-linejoin: round;
			stroke-width: 2px;
		}
.offcanvas-date-wrapper {
	display: flex;
	justify-content: center;
	width: calc(100% + 32px);
	margin-top: -24px;
	margin-right: -16px;
	margin-left: -16px;
	text-align: center;
}
.offcanvas-date-wrapper .container__months {
		box-shadow: none;
	}
.approximately-date-label {
	display: inline-flex;
	margin-left: 8px;
	padding: 4px 8px;
	border-radius: 24px;
	background-color: #DAE9FB;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap
}
.flight-directions {
	display: grid;
	grid-gap: 40px 12px;
	grid-template-columns: repeat(2, calc(50% - 6px));
	margin-bottom: 50px;
}
.flight-direction {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.flight-direction__title {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 0;
		padding: 12px 16px;
		border: solid #d7dbe4;
		border-width: 1px 1px 0 1px;
		background-color: var(--flight-direction__title__bgc, white);
		color: var(--black);
	}
.flight-direction__title dt {
			font-size: 16px;
			font-weight: 600;
		}
.flight-direction__title dd {
			margin-bottom: 0;
			font-size: 14px;
		}
.flight-direction__timetable {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-bottom: 10px;
		padding: 16px;
		border: solid #d7dbe4;
		border-width: 0 1px 1px 1px;
	}
.flight-direction__timetable li {
			position: relative;
			padding-left: 28px;
		}
.flight-direction__timetable li::before {
				position: absolute;
				top: 4px;
				left: 0;
				width: 15px;
				height: 15px;
				border: 4px solid var(--brand-blue);
				border-radius: 50%;
				background-color: white;
				content: '';
			}
.flight-direction__timetable li:not(:first-child) {
				margin-top: 12px;
			}
.flight-direction__timetable li:not(:last-child)::after {
					position: absolute;
					top: 0;
					left: 7px;
					width: 1px;
					height: calc(100% - 14px);
					transform: translateY(calc(100% - 6px));
					background-color: #a1acc6;
					content: '';
				}
.flight-direction__timetable dl {
			display: grid;
			grid-template-columns: 1fr 1fr;
			margin-bottom: 0;
			color: var(--black);
			grid-columns-gap: 40px;
		}
.flight-direction__timetable dt {
			font-size: 16px;
			font-weight: 600;
		}
.flight-direction__timetable dd {
			margin-bottom: 0;
			font-size: 14px;
		}
.flight-direction__button {
		--button__bg-color--outline: transparent;
	}
.modal {
	--flight-direction__title__bgc: var(--bg);
}
.flight-title {
	display: grid;
	position: relative;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
	margin-bottom: 32px;
}
.flight-title::before {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 50%;
		height: 1px;
		transform: translateX(-50%);
		background-color: #d4d8e3;
		content: '';
	}
.flight-title__item {
		display: flex;
		z-index: 1;
		align-items: center;
		justify-content: center;
		padding-right: 24px;
		padding-left: 24px;
		background-color: var(--flight-title__item__bgc, #f6f6f6);
	}
.flight-title__date {
		display: grid;
		grid-template-rows: 1fr 1fr;
		align-content: center;
		align-items: center;
		margin-left: 8px;
		color: var(--black);
		font-size: 16px;
	}
.flight-title__date span {
			font-weight: 600;
			line-height: 1;
		}
.flight-title__date span:nth-child(1) {
				grid-row: 1/3;
				margin-right: 8px;
				font-size: 2em;
			}
.flight-title__date span:nth-child(2) {
				grid-row: 1/2;
			}
.flight-title__date span:nth-child(3) {
				grid-row: 2/3;
			}
.modal {
	--flight-title__item__bgc: white;
}
/* https://github.com/lipis/flag-icon-css */
.flag-icon {
	display: inline-block;
	position: relative;
	flex-shrink: 0;
	width: 1.33333333em;
	margin-right: 8px;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	line-height: 1em;
}
.flag-icon:before {
	content: '\00a0';
}
.flag-icon-eg {
	background-image: url(../img/flags/eg.svg);
}
.flag-icon-tr {
	background-image: url(../img/flags/tr.svg);
}
.flag-icon-ae {
	background-image: url(../img/flags/ae.svg);
}
.flag-icon-mv {
	background-image: url(../img/flags/mv.svg);
}
.flag-icon-tz {
	background-image: url(../img/flags/tz.svg);
}
.flag-icon-do {
	background-image: url(../img/flags/do.svg);
}
.flag-icon-cy {
	background-image: url(../img/flags/cy.svg);
}
.flag-icon-gr {
	background-image: url(../img/flags/gr.svg);
}
.flag-icon-al {
	background-image: url(../img/flags/al.svg);
}
.flag-icon-th {
	background-image: url(../img/flags/th.svg);
}
.custom-tooltip {
	display: flex;
	position: absolute;
	top: 50%;
	right: 0;
	align-items: center;
	min-height: 44px;
	padding: 8px;
	transform: translate(calc(16px + 100%), -50%);
	border-radius: 2px;
	background-color: var(--dark-blue);
	color: white;
}
.custom-tooltip::before {
		position: absolute;
		top: calc(50% - 4px);
		left: -5px;
		width: 0;
		height: 0;
		border-width: 4px 6px 4px 0;
		border-style: solid;
		border-color: transparent var(--dark-blue) transparent transparent;
		content: '';
	}
.custom-tooltip span {
		font-size: 12px;
		white-space: nowrap;
	}
.custom-tooltip strong {
		margin-right: 4px;
		margin-left: 4px;
	}
.custom-tooltip button {
		margin-left: 8px;
		padding: 4px 8px;
		border: none;
		border-radius: 2px;
		background-color: var(--brand-orange);
		color: white;
		font-size: 12px;
		font-weight: 700;
		transition: opacity 0.3s;
		will-change: opacity;
	}
.custom-tooltip button:hover, .custom-tooltip button:focus {
			opacity: 0.7;
		}
.custom-fieldset {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: calc(100% + 32px);
	margin-right: -16px;
	margin-left: -16px;
	padding-top: 8px;
	padding-bottom: 16px;
	border-top: 1px solid #b6b7b8;
}
.custom-fieldset legend {
		padding: 8px 16px;
		font-size: 16px;
		font-weight: 500;
	}
.label-with-checkbox {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-height: 40px;
	margin-bottom: 4px;
	padding: 8px 16px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s;
	will-change: background-color;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
.label-with-checkbox:hover, .label-with-checkbox:focus {
		background-color: var(--bg);
	}
.label-with-checkbox > [type='checkbox'] {
		flex-shrink: 0;
		width: 20px;
		height: 20px;
	}
.label-with-checkbox > span {
		position: relative;
		margin-left: 16px;
	}
.native-select {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: flex-start;
	color: var(--black);
}
.native-select::after {
		display: block;
		position: absolute;
		right: 2px;
		bottom: 2px;
		width: 40px;
		height: calc(var(--input__min-height, 44px) - 4px);
		background-image: url(../img/icons/icon-arrow-down.svg),
			linear-gradient(
				-90deg,
				rgba(255, 255, 255, 1) 65%,
				rgba(255, 255, 255, 0) 100%
			);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 13px 8px, 100%;
		content: '';
		pointer-events: none;
	}
.native-select:not(:last-child) {
		margin-bottom: 32px;
	}
.native-select label {
		margin-bottom: 10px;
		font-size: 16px;
	}
.native-select select {
		width: 100%;
		height: var(--input__min-height, 44px);
		padding: 4px 12px;
		border: 1px solid #d3daea;
		border-radius: 0;
		background-color: white;
		font-size: 14px;
		text-align: left;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.vertical-form {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: var(--form-control__max-width, auto);
	margin-right: auto;
	margin-left: auto;
	gap: var(--vertical-form__gap, 16px);
}
.form-group {
	display: flex;
	flex-direction: column;
}
.form-control {
	min-height: var(--input__min-height);
	border-radius: 0;
}
.form-control label {
		margin-bottom: 4px;
	}
textarea.form-control {
		min-height: var(--textarea__min-height, 82px);
	}
.headline {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 970px;
	margin-right: auto;
	margin-left: auto;
}
.headline__buttons {
	display: grid;
	justify-content: center;
	margin-top: var(--headline__buttons__padding-block);
}
.headline__section-overline {
	color: var(--brand-orange);
	font-family: var(--font);
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}
.headline__section-title {
	display: block;
	margin-top: 0;
	margin-bottom: 0;
	color: #000000;
	font-family: var(--font);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}
.icon-wrapper {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: var(--icon-wrapper__width, 32px);
	height: var(--icon-wrapper__height, 32px);
	border-radius: 50%;
	background-color: var(--icon-wrapper__bgcolor, transparent);
	color: var(--icon-wrapper__color, currentColor);
}
.link,
	.link:hover,
	.link:focus {
		display: inline-flex;
		position: relative;
		color: currentColor;
		font-size: 16px;
		font-weight: 500;
		line-height: 2;
		margin-block: 6px;
	}
.link::before, .link:hover::before, .link:focus::before {
			position: absolute;
			top: 50%;
			left: -2px;
			width: calc(100% + 4px);
			height: max(100%, 44px);
			transform: translateY(-50%);
			content: '';
		}
.select-nights .noUi-target {
		height: 8px;
		border: none;
		border-radius: 14px;
		background-color: #c9cedb;
		box-shadow: none;
	}
.select-nights .noUi-connect {
		background-color: var(--brand-blue);
	}
.select-nights .noUi-handle {
		width: 20px;
		height: 20px;
		border: none;
		border-radius: 50%;
		background-color: #ffffff;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.21);
	}
.select-nights .noUi-handle::before,
		.select-nights .noUi-handle::after {
			content: none;
		}
.select-nights .noUi-handle .noUi-touch-area {
			position: absolute;
			top: 50%;
			left: 50%;
			width: 44px;
			height: 44px;
			transform: translate(-50%, -50%);
			cursor: pointer;
		}
.offcanvas-range-slider-wrapper {
	display: flex;
	justify-content: center;
	width: calc(100% + 32px);
	margin-top: -48px;
	margin-right: -16px;
	margin-left: -16px;
	text-align: center;
}
.offcanvas-range-slider-wrapper .select-nights__dropdown-menu {
		box-shadow: none;
	}
.link-with-icon {
	display: var(--link-with-icon__display, inline-flex);
	align-items: center;
	min-height: 44px;
	font-size: var(--link-with-icon__font-size, 16px);
}
.link-with-icon,
	.link-with-icon:hover,
	.link-with-icon:focus {
		color: currentColor;
		text-decoration: none;
	}
.link-with-icon > svg {
		opacity: var(--link-with-icon__svg__opacity, 0.5);
		transition: opacity 0.3s;
		will-change: opacity;
	}
.link-with-icon:hover > svg,
	.link-with-icon:focus > svg {
		--link-with-icon__svg__opacity: 1;
	}
.link-with-icon:not(.link-with-icon--reversed) span:not(:first-child) {
		margin-left: var(--link-with-icon__span__ml, 16px);
	}
.link-with-icon span {
		border-bottom: 1px solid
			var(--link-with-icon__span__border-bottom, transparent);
		white-space: nowrap;
		transition: border-bottom-color 0.3s;
		will-change: border-bottom-color;
	}
.link-with-icon:hover span,
	.link-with-icon:focus span {
		--link-with-icon__span__border-bottom: currentColor;
	}
.link-with-icon--reversed span {
			margin-right: 16px;
		}
.link-with-icon--reversed .icon-wrapper {
			order: 1;
			margin-left: auto;
		}
.search-hotel-by-name {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: calc(100% + 32px);
	margin-right: -16px;
	margin-left: -16px;
	padding-top: 8px;
	padding-bottom: 16px;
}
.search-hotel-by-name__input {
		position: relative;
		width: 100%;
		margin-bottom: 4px;
		padding: 8px 16px;
	}
.search-hotel-by-name__input:hover svg, .search-hotel-by-name__input:focus-within svg, .search-hotel-by-name__input:focus svg {
				opacity: 1;
			}
.search-hotel-by-name__input input {
			width: 100%;
			height: 54px;
			padding-right: 44px;
			padding-left: 16px;
			border: 1px solid #b6b7b8;
			border-radius: 0;
			font-size: 14px;
		}
.search-hotel-by-name__input svg {
			position: absolute;
			top: 50%;
			right: 32px;
			transform: translateY(-50%);
			color: var(--dark-blue);
			opacity: 0.3;
			pointer-events: none;
			transition: opacity 0.3s;
			will-change: opacity;
		}
.search-hotel-by-name__list ul {
			margin-bottom: 0;
		}
.search-hotel-by-name__total {
		width: 100%;
		padding: 24px 16px 8px;
	}
.search-hotel-by-name__total button {
			width: 100%;
		}
.search-hotel-by-name:not(.search-hotel-by-name--modal) .search-hotel-by-name__list {
		padding-right: 16px;
	}
.search-hotel-by-name:not(.search-hotel-by-name--modal) .search-hotel-by-name__list ul {
			max-height: 240px;
			margin-bottom: 0;
			overflow-y: auto;
			-ms-scroll-snap-type: y mandatory;
			    scroll-snap-type: y mandatory;
		}
.search-hotel-by-name:not(.search-hotel-by-name--modal) .search-hotel-by-name__list ul::-webkit-scrollbar {
				width: 8px;
			}
.search-hotel-by-name:not(.search-hotel-by-name--modal) .search-hotel-by-name__list ul::-webkit-scrollbar-track {
				background-color: #d6dceb;
			}
.search-hotel-by-name:not(.search-hotel-by-name--modal) .search-hotel-by-name__list ul::-webkit-scrollbar-thumb {
				background-color: var(--brand-blue);
			}
.search-hotel-by-name:not(.search-hotel-by-name--modal) .search-hotel-by-name__list ul .label-with-checkbox {
				scroll-snap-align: start;
			}
.search-hotel-by-name--modal .search-hotel-by-name__input {
		max-width: 800px;
		margin-top: -16px;
		margin-right: auto;
		margin-bottom: 40px;
		margin-left: auto;
	}
.search-hotel-by-name--modal .search-hotel-by-name__list {
		width: 100%;
	}
.search-hotel-by-name--modal .search-hotel-by-name__list ul {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			width: 100%;
		}
.search-hotel-by-name--modal .search-hotel-by-name__list ul li {
				flex-basis: min(340px, 100%);
			}
.search-hotel-by-name--modal .search-hotel-by-name__total {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 12px;
		gap: 32px;
	}
.search-hotel-by-name--modal .search-hotel-by-name__total button {
			width: auto;
		}
.list-group--custom.list-group {
		width: calc(100% + 32px);
		margin-top: -24px;
		margin-right: -16px;
		margin-left: -16px;
		border-radius: 0;
	}
.list-group--custom .list-group-item {
		border-bottom: none;
	}
.list-group--custom .list-group-item.active {
			background-color: var(--brand-blue);
		}
.list-group--custom .list-group-item small {
			margin-left: 8px;
			opacity: 0.6;
		}
.list-group--custom .flag-icon {
		margin-right: 8px;
	}
.select-persons {
	display: flex;
	position: relative;
	align-items: center;
	min-height: 40px;
}
.select-persons__trigger {
		border: none;
		background-color: transparent;
	}
.select-persons__trigger svg {
			position: absolute;
			top: calc(50% - 4px);
			right: 12px;
			pointer-events: none;
		}
.select-persons__dropdown-menu {
		width: 340px;
		padding: 24px;
		border-radius: 0;
		background-color: white;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
		text-align: center;
	}
.select-persons-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	gap: 16px;
}
.select-persons-wrapper__adults {
		display: flex;
		align-items: center;
		gap: 24px;
	}
.select-persons-wrapper__adult-button {
		--outline-color: var(--brand-blue);
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border: none;
		border-radius: 50%;
		background-color: var(--brand-blue);
		color: white;
		font-size: 20px;
		font-weight: 700;
		-webkit-user-select: none;
		        -moz-user-select: none;
		         -ms-user-select: none;
		     user-select: none;
	}
.select-persons-wrapper__adult-output {
		display: flex;
		align-items: center;
		height: 40px;
		border: none;
		outline: none;
		color: var(--black);
		font-size: 18px;
	font-weight: 600;
		gap: 8px;
	}
.select-persons-wrapper__adult-output-qty {
		display: flex;
		justify-content: center;
		width: 40px;
		height: 40px;
		border: none;
		outline: none;
		text-align: center;
	font-weight: 600;
	font-size: 18px;
	}
.select-persons-wrapper__kids {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		text-align: center;
		gap: 16px;
	}
.select-persons-wrapper__kids span {
			color: var(--black);
			font-size: 14px;
		}
.select-persons-wrapper__kids-row {
		display: flex;
		position: relative;
		align-items: center;
		width: 100%;
		height: 44px;
		padding: 4px 12px;
		border: 1px solid #d3daea;
		background-color: white;
		text-align: left;
	}
.select-persons-wrapper__delete-btn {
		display: flex;
		position: absolute;
		top: 0;
		right: 0;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border: none;
		border-radius: 0;
		background-color: white;
		opacity: 0.5;
	}
.select-persons-wrapper__delete-btn:hover, .select-persons-wrapper__delete-btn:focus {
			opacity: 1;
		}
.select-persons-wrapper__add-btn {
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 100%;
		padding: 4px 12px;
		border: none;
		border-radius: 0;
		background-color: white;
	}
.select-persons-wrapper__add-btn svg {
			margin-right: 3px;
			opacity: 0.5;
		}
.select-persons-wrapper__add-btn:hover svg, .select-persons-wrapper__add-btn:focus svg {
			opacity: 1;
		}
.select-persons-wrapper__submit {
		width: 100%;
	}
.select-persons-wrapper .native-select-wrapper select {
			width: 100%;
			height: 100%;
			border: none;
			border-radius: 0;
			outline: none;
			font-size: 14px;
			-webkit-appearance: none;
			        -moz-appearance: none;
			     appearance: none;
	cursor: pointer;
		}

.select-persons-wrapper .native-select-wrapper:focus-within {
			outline: thin dotted #333 !important;
			outline: 5px auto -webkit-focus-ring-color !important;
		}
.select-persons-wrapper .native-select-wrapper svg {
			position: absolute;
			top: calc(50% - 4px);
			right: 12px;
			pointer-events: none;
		}
.site-header-title {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	color: white;
	text-align: center;
}
.site-header-title h1 {
		margin-bottom: 0;
		font-size: var(--header-title__fz, 20px);
		font-weight: 700;
	}
.site-header-title super {
		display: inline-flex;
		align-items: baseline;
		margin-bottom: 4px;
		color: rgba(255, 255, 255, 0.79);
		font-size: var(--search-tour-card__location__fz);
	}
.site-header-title__stars {
		--stars-holder__ml: 0;
		--stars-holder__mr: 8px;
	}
.site-header-title__back-link {
		display: inline-flex;
		align-items: center;
		margin-bottom: 20px;
		font-size: 12px;
		font-weight: 700;
	}
.site-header-title__back-link,
		.site-header-title__back-link:hover,
		.site-header-title__back-link:focus {
			color: #54abf6;
		}
.site-header-title__back-link svg {
			margin-right: 8px;
		}
.site-logo {
	display: inline-flex;
	opacity: var(--site-logo__opacity, 1);
	transition: opacity 0.3s;
	will-change: opacity;
}
.site-logo,
	.site-logo:hover {
		color: var(--site-logo__color, currentColor);
		text-decoration: none;
	}
.site-logo:hover,
	.site-logo:focus {
		--site-logo__opacity: 0.7;
	}
.tour-cost {
	display: flex;
	align-items: center;
	padding: 16px;
	border-radius: 2px;
	background-image: linear-gradient(87deg, #394984 0%, #4578aa 100%);
	color: white;
}
.tour-cost__title {
		font-weight: 700;
	}
.tour-cost__list {
		display: flex;
		align-items: flex-start;
		margin-bottom: 0;
	}
.tour-cost__list li {
			display: flex;
			align-items: center;
		}
.tour-cost__list span {
			color: #b6ddff;
			font-weight: 500;
		}
.vertical-bordered-list {
	--icon-wrapper__color: white;
}
.vertical-bordered-list li {
		width: calc(100% + (2 * var(--container__pi)));
		margin-right: calc(0px - var(--container__pi));
		margin-left: calc(0px - var(--container__pi));
		padding: 8px var(--container__pi);
		border-bottom: 1px solid #c9cedb;
	}
.vertical-bordered-list a {
		width: 100%;
	}
.wrapper-standard {
	padding-top: var(--wrapper-standard__padding-block);
	padding-bottom: var(--wrapper-standard__padding-block);
}
.booking-steps-content__wrapper {
		--booking-steps-content__wrapper__gcg: 80px;
		--booking-steps-content__wrapper__additional-width: 132px;
		display: grid;
		grid-row-gap: var(--booking-steps-content__wrapper__grg, 24px);
		grid-template-columns: var(--booking-steps-content__wrapper__gtc, 100%);
		align-items: start;
		width: var(--booking-steps-content__wrapper__width, 100%);
	}
.booking-steps-content__left {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
.booking-steps-content__right {
		position: relative;
		width: 100%;
	}
.booking-steps-content__bottom {
		width: var(--booking-steps-content__bottom__width, 100%);
	}
.booking-steps-content .collapse {
		width: 100%;
	}
.offcanvas-mobile-filter {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}
.offcanvas-mobile-filter button {
		width: 100%;
	}
.offcanvas-mobile-filter .custom-fieldset:first-child {
		margin-top: -24px;
	}
.reset-filter-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 16px 32px;
	border: none;
	border-radius: 0;
	background-color: transparent;
	background-image: none;
	color: #8b98a6;
	font-size: 16px;
	font-size: 14px;
	font-weight: 700;
	font-weight: 700;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
.reset-filter-button > *:not(:last-child) {
		margin-right: 8px;
	}
.custom-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	min-height: 24px;
	border-radius: 24px;
	background-color: var(--custom-badge-bgc, var(--brand-blue));
	color: white;
}
.hotel-detail-offcanvas {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: var(--black);
}
.hotel-detail-offcanvas__title {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
.hotel-detail-offcanvas__title small {
			--stars-holder__mr: 12px;
			--stars-holder__ml: 0;
			margin-bottom: 8px;
			color: #676a72;
			font-size: 12px;
			font-weight: 400;
			opacity: 0.8;
		}
.hotel-detail-offcanvas__title strong {
			margin-bottom: 4px;
			font-size: 16px;
			font-weight: 700;
		}
.hotel-detail-offcanvas__img {
		display: flex;
		width: 100%;
		margin-bottom: 12px;
	}
.hotel-detail-offcanvas__img img,
		.hotel-detail-offcanvas__img picture {
			width: 100%;
			height: 100%;
			-o-object-fit: contain;
			   object-fit: contain;
		}
.hotel-detail-offcanvas__room {
		margin-bottom: 8px;
		font-size: 18px;
	}
.hotel-detail-offcanvas__room strong {
			font-weight: 500;
		}
.hotel-detail-offcanvas__operator {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		margin-bottom: 16px;
	}
.hotel-detail-offcanvas__operator ul {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			margin-bottom: 0;
			padding-right: 8px;
		}
.hotel-detail-offcanvas__operator ul li {
				font-size: 14px;
			}
.hotel-detail-offcanvas__flight .flight-title {
			--flight-title__item__bgc: white;
			grid-template-columns: -webkit-max-content -webkit-max-content;
			grid-template-columns: max-content max-content;
			justify-content: space-between;
			width: 100%;
		}
.hotel-detail-offcanvas__flight .flight-title__item:first-child {
				padding-left: 0;
			}
.hotel-detail-offcanvas__flight .flight-title__item:last-child {
				padding-right: 0;
			}
.hotel-detail-offcanvas__flight .flight-directions {
			grid-template-columns: 100%;
		}
.hotel-detail-offcanvas hr {
		width: calc(100% + 32px);
		margin: 16px calc(0px - 16px);
	}
.hotel-detail-offcanvas hr[data-visible='false']
			~ .hotel-detail-offcanvas__buttons
			.observer-container ,
#mobileHotelSearch .hotel-detail-offcanvas hr[data-visible='true']
~ .hotel-detail-offcanvas__buttons
.observer-container-new {
			z-index: 1000;
			position: fixed;
			bottom: 0;
			left: 50%;
			padding: 16px;
			transform: translate(-50%);
			background-color: white;
			box-shadow: var(--box-shadow);
		}
.hotel-detail-offcanvas__text {
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 400;
	}
.hotel-detail-offcanvas__buttons {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
.hotel-detail-offcanvas__buttons p {
			display: flex;
			align-items: baseline;
			justify-content: space-between;
			width: 100%;
			margin-bottom: 0;
			font-size: 16px;
			font-weight: 500;
		}
.hotel-detail-offcanvas__buttons p strong {
				font-size: 24px;
				font-weight: 600;
			}
.hotel-detail-offcanvas__buttons p small {
				font-size: 14px;
			}
.hotel-detail-offcanvas__buttons button {
			width: 100%;
			margin-top: 12px;
			transition: opacity 0.3s;
			will-change: opacity;
		}
.hotel-detail-offcanvas__buttons button:hover, .hotel-detail-offcanvas__buttons button:focus {
				opacity: 0.7;
			}
.hotel-detail-offcanvas .observer-container, .hotel-detail-offcanvas .observer-container-new {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
.offcanvas-extended-search .mobile-search__trigger {
		margin-bottom: 8px;
		-webkit-user-select: none;
		        -moz-user-select: none;
		         -ms-user-select: none;
		     user-select: none;
	}
.offcanvas-extended-search .offcanvas-mobile-filter {
		color: var(--black);
	}
.offcanvas-extended-search .custom-fieldset:first-child {
		margin-top: -1px;
	}
.modal-hotel-card {
	display: grid;
	grid-gap: 8px 16px;
	grid-template-columns: var(--hotel-card__gtc, 100%);
	align-content: stretch;
	width: 100%;
	padding: 16px;
	border: 1px solid #b6b7b8;
	border-radius: 2px;
}
.modal-hotel-card__img {
		display: flex;
		width: 100%;
		height: 100%;
	}
.modal-hotel-card__img img {
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
		}
.modal-hotel-card__data {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		color: var(--black);
	}
.modal-hotel-card__data h3 {
			margin-bottom: 8px;
			font-size: var(--hotel-card__title__fz, 14px);
			font-weight: 600;
		}
.modal-hotel-card__data h4 {
			margin-bottom: 8px;
			font-size: 14px;
			font-weight: 600;
		}
.modal-hotel-card__data p {
			margin-bottom: 8px;
			font-size: 12px;
			opacity: 0.7;
		}
.modal-hotel-card__data ul {
			margin-bottom: 0;
		}
.modal-hotel-card__data li {
			position: relative;
			margin-bottom: 4px;
			padding-left: 25px;
			font-size: 14px;
			opacity: 0.7;
		}
.modal-hotel-card__data li::before {
				position: absolute;
				top: 1px;
				left: 0;
				width: 18px;
				height: 18px;
				background-image: url(../img/icons/rounded-tick.svg);
				background-position: center;
				background-repeat: no-repeat;
				background-size: 18px 18px;
				content: '';
			}
.modal-slider-wrapper--photo picture,
	.modal-slider-wrapper--photo img {
		display: flex !important;
		width: 100%;
		height: 100%;
		-o-object-fit: contain;
		   object-fit: contain;
		-o-object-position: center;
		   object-position: center;
	}
.modal-slider-wrapper {
	width: 100%;
	opacity: 0;
	transition: 0.5s;
}
.modal-slider-wrapper.open {
		opacity: 1;
	}
.slick-arrow {
	display: flex;
	min-width: 44px;
	border: none;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px 32px;
	font-size: 0;
	opacity: 0.5;
	transition: opacity 0.3s;
	will-change: opacity;
	-webkit-appearance: none;
	        -moz-appearance: none;
	     appearance: none;
}
.slick-arrow:hover, .slick-arrow:focus {
		opacity: 1;
	}
.slick-arrow.slick-prev {
		background-image: url(../img/icons/icon-slider-arrow-left.svg);
	}
.slick-arrow.slick-next {
		background-image: url(../img/icons/icon-slider-arrow-right.svg);
	}
.slider-indicator {
	display: flex;
	position: absolute;
	top: 20px;
	left: 20px;
	align-items: baseline;
	font-size: 14px;
	opacity: 0.8;
}
.modal-slider-for {
	display: flex !important;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 24px;
}
.modal-slider-item {
	display: flex !important;
	justify-content: center;
	width: 1080px !important;
	max-width: 100%;
	height: 50vh;
	margin-right: auto;
	margin-left: auto;
}
.modal-slider-nav .slick-slide {
		transition: opacity 0.3s;
		will-change: opacity;
	}
.modal-slider-nav .slick-slide:not(.slick-current) {
			opacity: 0.3;
		}
.modal-slider-nav .slick-slide:not(.slick-current):hover, .modal-slider-nav .slick-slide:not(.slick-current):focus {
				opacity: 0.8;
			}
.modal-slider-thumbnail {
	padding-right: 24px;
	cursor: pointer;
}
.slick-slide .modal-slider-thumbnail img{
	max-height: 120px;
	min-height: 120px;
}
.modal-slider-wrapper--video {
	width: 100%;
	opacity: 0;
	transition: 0.5s;
}
.modal-slider-wrapper--video.open {
		opacity: 1;
	}
.modal-slider-wrapper--video .modal-slider-item lite-youtube {
			width: calc(50vh / 0.5);
		}
.modal-slider-wrapper--video .modal-slider-thumbnail {
		position: relative;
	}
.modal-slider-wrapper--video .modal-slider-thumbnail::before {
			position: absolute;
			top: 0;
			left: 0;
			width: calc(100% - 24px);
			height: 100%;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='126' height='126' viewBox='0 0 126 126'%3E%3Cpath fill='%23fff' d='M63 4A59 59 0 114 63 59.07 59.07 0 0163 4m0-4a63 63 0 1063 63A63 63 0 0063 0z'/%3E%3Cpath fill='%23fff' d='M46.2 47.22a5.92 5.92 0 018.43-5.47L87 56.84a5.92 5.92 0 01.73 10.33L56 87.79a5.92 5.92 0 01-9.15-4.86z'/%3E%3C/svg%3E");
			background-position: center;
			background-repeat: no-repeat;
			background-size: 64px 64px;
			content: '';
		}
.glider,
.glider-contain {
	position: relative;
	margin: 0 auto;
}
.glider,
.glider-track {
	transform: translateZ(0);
}
.glider-dot {
	padding: 0;
	outline: 0;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
.glider-contain {
	width: 100%;
}
.glider {
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
}
.glider-track {
	display: flex;
	z-index: 1;
	width: 100%;
	margin: 0 0 10px;
	padding: 0;
}
.glider.draggable {
	cursor: -webkit-grab;
	cursor: grab;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
.glider.draggable .glider-slide img {
	pointer-events: none;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
.glider.drag {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.glider-slide {
	align-content: center;
	justify-content: center;
	width: 100%;
	min-width: 150px;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
.glider-slide img {
	max-width: 100%;
}
.glider::-webkit-scrollbar {
	height: 0;
	opacity: 0;
}
.glider-hide {
	opacity: 0;
}
.glider-dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	-webkit-user-select: none;
	        -moz-user-select: none;
	         -ms-user-select: none;
	     user-select: none;
}
.glider-dot {
	display: block;
	width: 12px;
	height: 12px;
	margin: 7px;
	border-radius: 999px;
	cursor: pointer;
}
lite-youtube {
	display: block;
	position: relative;
	width: 100%;
	background-color: #000;
	background-position: center center;
	background-size: cover;
	cursor: pointer;
	contain: content;
}
lite-youtube::after {
		display: block;
		padding-bottom: calc(100% / (16 / 9));
		content: '';
	}
lite-youtube.lite-youtube--activated {
		cursor: unset;
	}
lite-youtube.lite-youtube--activated .video-button {
			--opacity: 0;
			--pointer-events: none;
		}
lite-youtube.lite-youtube--activated:hover .video-button, lite-youtube.lite-youtube--activated:focus .video-button {
			--opacity: 0;
			--pointer-events: none;
		}
lite-youtube > iframe {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 100%;
		transform: translate3d(-50%, -50%, 0);
	}
lite-youtube:hover .video-button, lite-youtube:focus .video-button {
			--opacity: 0.8;
			--triangle: rgba(0, 0, 0, 0.5);
		}
lite-youtube .video-button {
		--position: absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
	}
.video-button {
	--bgc: transparent;
	--opacity: 1;
	--pointer-events: all;
	z-index: 1;
	position: var(--position);
	width: var(--size);
	height: var(--size);
	border: none;
	background-color: var(--bgc);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='126' height='126' viewBox='0 0 126 126'%3E%3Cpath fill='%23fff' d='M63 4A59 59 0 114 63 59.07 59.07 0 0163 4m0-4a63 63 0 1063 63A63 63 0 0063 0z'/%3E%3Cpath fill='%23fff' d='M46.2 47.22a5.92 5.92 0 018.43-5.47L87 56.84a5.92 5.92 0 01.73 10.33L56 87.79a5.92 5.92 0 01-9.15-4.86z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15));
	opacity: var(--opacity);
	pointer-events: var(--pointer-events);
	transition: opacity 0.3s;
	will-change: opacity;
}
.price-card__operator-logo img{
	min-height: 30px;
	max-height: 90px;
	min-width: 100%;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
            -moz-user-select: none;
             -ms-user-select: none;
         user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
    transform: translate3d(0, 0, 0);
}
.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}
.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.desktop-login {
	--desktop-login__text-color: var(--dark-blue);
	--desktop-login__text-font-size: 14px;
	--desktop-login__text-font-weight: 500;
	position: relative;
	width: 72px;
	height: 44px;
}
.desktop-login__trigger {
		display: inline-flex;
		position: absolute;
		top: 0;
		right: 0;
		align-items: center;
		height: 44px;
		padding: 4px;
		border: none;
		border-radius: 22px;
		background-color: white;
		background-image: none;
		color: white;
		cursor: pointer;
		opacity: var(--desktop-login__trigger__opacity, 1);
		transition: opacity 0.3s;
		will-change: opacity;
	}
.desktop-login__trigger:hover, .desktop-login__trigger:focus {
			--desktop-login__trigger__opacity: 0.7;
		}
.desktop-login__trigger.show {
			--desktop-login__title__display: inline-flex;
			--desktop-login__title__pe: auto;
			--desktop-login__trigger__opacity: 1;
			min-width: 220px;
		}
.desktop-login__trigger .icon-wrapper {
			--icon-wrapper__color: white;
			--icon-wrapper__bgcolor: var(--brand-blue);
		}
.desktop-login__title {
		font-size: var(--desktop-login__text-font-size);
		font-weight: var(--desktop-login__text-font-weight);
		pointer-events: var(--desktop-login__title__pe, none);
	}
.desktop-login__title:focus {
			--link-with-icon__outline-offset: -2px;
		}
.desktop-login__title span {
			display: var(--desktop-login__title__display, none);
			white-space: nowrap;
			margin-inline: 10px;
		}
.desktop-login .link-with-icon,
		.desktop-login .link-with-icon:hover,
		.desktop-login .link-with-icon:focus {
			color: var(--desktop-login__text-color);
		}
.desktop-login .burger {
		--burger__color: var(--brand-blue);
		margin-left: auto;
	}
.desktop-login .dropdown-menu {
		--link-with-icon__svg__opacity: 1;
		min-width: 220px;
		padding-top: 0;
		padding-bottom: 0;
		overflow: hidden;
		border-radius: 18px;
		color: var(--desktop-login__text-color);
		font-size: var(--desktop-login__text-font-size);
		font-weight: var(--desktop-login__text-font-weight);
	}
.desktop-login .dropdown-menu li:not(:last-child) {
				border-bottom: 1px solid rgb(201 206 219 / 25%);
			}
.desktop-login .dropdown-menu a {
			--link-with-icon__outline-offset: -2px;
			width: 100%;
			padding-inline: 8px;
		}
.site-header__logo {
		--site-logo__color: white;
		grid-area: headerLogo;
	}
.site-header__desktop-button-phones {
		grid-area: desktopButtonPhones;
		justify-self: end;
	}
.desktop-button-phones {
	display: var(--header__desktop-button-phones, inline-flex);
	align-items: center;
	min-width: 246px;
	color: white;
}
.desktop-button-phones__main-link {
		font-size: 16px;
	}
.desktop-button-phones__trigger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		margin-left: 4px;
		padding: 0;
		border: none;
		background-color: transparent;
		background-image: none;
		color: white;
		cursor: pointer;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.desktop-button-phones__trigger svg {
			transition: transform 0.3s;
			will-change: transform;
		}
.desktop-button-phones__trigger.show svg {
			transform: rotateX(180deg);
		}
.desktop-button-phones .dropdown-menu {
		padding-top: 0;
		padding-bottom: 0;
		overflow: hidden;
		border-radius: 18px;
		color: var(--dark-blue);
		font-size: 16px;
		font-weight: 500;
	}
.desktop-button-phones .dropdown-menu a {
			--link-with-icon__outline-offset: -2px;
			width: 100%;
			min-width: 200px;
			padding-inline: 16px;
		}
.mobile-button-group-menu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 44px;
	padding: 4px;
	border: none;
	border-radius: var(--mobile-button-group-menu__br, 22px);
	background-color: white;
	background-image: none;
	color: white;
	cursor: pointer;
	opacity: var(--mobile-button-group-menu__opacity, 1);
	transition: opacity 0.3s;
	will-change: opacity;
}
.mobile-button-group-menu:hover, .mobile-button-group-menu:focus {
		--mobile-button-group-menu__opacity: 0.7;
	}
.mobile-button-group-menu .burger {
		--burger__color: var(--brand-blue);
		pointer-events: none;
	}
.header-menu {
	display: flex;
	margin-bottom: 0;
	color: white;
	font-size: 18px;
	font-weight: 500;
	gap: var(--header-menu__gap, 24px);
}
.header-menu__item {
		display: inline-flex;
	}
.site-header__menu-group {
		display: var(--header__menu-group__display, none);
		grid-area: headerMenuGroup;
		grid-template-areas: var(--header__menu-group__gta, none);
		grid-template-columns: var(--header__menu-group__gtc, none);
		grid-template-rows: var(--header__menu-group__gtr, none);
	}
.mobile-button-phones:hover, .mobile-button-phones:focus {
		--mobile-button-phones__opacity: 0.7;
	}
.mobile-button-phones .icon-arrow-down {
		margin-left: 4px;
		transition: transform 0.3s;
		will-change: transform;
	}
.mobile-button-phones.show .icon-arrow-down {
		transform: rotateX(180deg);
	}
.site-header__mobile-buttons {
		display: inline-flex;
	}
.mobile-consultation {
	display: var(--mobile-consulation__display, none);
	flex-direction: column;
	margin-bottom: 0;
	gap: 16px;
}
.site-header__mobile-login {
		display: var(--header__mobile-login__display, none);
	}
.mobile-login {
	--icon-wrapper__bgcolor: var(--brand-orange);
}
.mobile-phones-and-links {
	display: var(--mobile-phones-and-links__display, none);
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 0;
	gap: 36px;
}
.mobile-phones-and-links__link--phone {
			--icon-wrapper__bgcolor: var(--brand-green);
		}
.mobile-phones-and-links__link--viber {
			--icon-wrapper__bgcolor: #7460b6;
		}
.mobile-phones-and-links__link--telegram {
			--icon-wrapper__bgcolor: var(--brand-blue);
		}
.mobile-phones-and-links__link--facebook {
			--icon-wrapper__bgcolor: #001f67;
		}
.mobile-phones-and-links__link--mail {
			--icon-wrapper__bgcolor: var(--brand-orange);
		}
.booking-card {
	display: grid;
	grid-row-gap: 24px;
	grid-template-columns: 100%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: var(--booking-card__p);
	border-radius: 2px;
	background-color: white;
	box-shadow: var(--box-shadow);
}
.booking-card__includes {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: calc(100% + (2 * var(--booking-card__p)));
		margin: calc(0px - var(--booking-card__p));
		padding: var(--booking-card__p);
		background-color: #f6f8fb;
	}
.booking-card__includes li {
			display: flex;
			align-items: center;
		}
.booking-card__includes li::before {
				display: flex;
				width: 24px;
				height: 24px;
				margin-right: 16px;
				background-image: url(../img/icons/icon-tick--green.svg);
				background-position: center;
				background-repeat: no-repeat;
				background-size: 18px 14px;
				content: '';
			}
.booking-card__includes li:not(:last-child) {
				margin-bottom: 20px;
			}
.booking-card__info {
		display: grid;
		grid-row-gap: 16px;
		grid-template-columns: 100%;
		justify-items: center;
		width: 100%;
	}
.booking-card__review {
		display: flex;
		align-items: baseline;
	}
.booking-card__review > * {
			margin-right: 4px;
			margin-left: 4px;
		}
.booking-card__rating {
	}
.booking-card__reviews {
	}
.booking-card__title {
		display: inline-flex;
		align-items: baseline;
		margin-bottom: 0;
		color: black;
		font-size: var(--booking-card__title__fz);
		font-weight: 700;
		word-break: break-word;
	}
.booking-card__title a {
			color: currentColor;
			text-decoration: underline;
			-webkit-text-decoration-color: transparent;
			        text-decoration-color: transparent;
			transition: -webkit-text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
			will-change: text-decoration-color;
		}
.booking-card__title a:hover, .booking-card__title a:focus {
				-webkit-text-decoration-color: currentColor;
				        text-decoration-color: currentColor;
			}
.booking-card__stars {
	}
.booking-card__info-list {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-bottom: var(--booking-card__p);
		color: var(--black);
		font-size: var(--booking-card__info-list__fz, 14px);
	}
.booking-card__info-list div {
			display: flex;
		}
.booking-card__info-list div:not(:last-child) {
				margin-bottom: 20px;
			}
.booking-card__info-list dt {
			font-weight: 400;
			opacity: 0.8;
		}
.booking-card__info-list dd {
			display: inline-flex;
			flex-grow: 1;
			align-items: baseline;
			margin-bottom: 0;
			font-weight: 500;
			white-space: nowrap;
		}
.booking-card__info-list a {
			color: currentColor;
			font-weight: 700;
			text-decoration: underline;
			-webkit-text-decoration-color: transparent;
			        text-decoration-color: transparent;
			transition: -webkit-text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
			will-change: text-decoration-color;
		}
.booking-card__info-list a:hover, .booking-card__info-list a:focus {
				-webkit-text-decoration-color: currentColor;
				        text-decoration-color: currentColor;
			}
.booking-card__photo picture,
		.booking-card__photo img {
			display: block;
			width: 100%;
			height: auto;
			max-height: 274px;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
		}
.booking-card__price {
		display: grid;
		grid-row-gap: 16px;
		grid-template-columns: 100%;
		justify-items: center;
		width: 100%;
		text-align: center;
	}
.booking-card__price img {
			max-width: 100%;
			height: auto;
		}
.booking-card__small {
		margin-bottom: 0;
		color: var(--black);
		font-size: var(--booking-card__price__small__fz, 11px);
		font-weight: 700;
	}
.booking-card__price {
		margin-bottom: 0;
		color: var(--black);
		font-size: var(--booking-card__price__p__fz, 20px);
		font-weight: 700;
		line-height: 1;
	}
.booking-card__link {
		color: var(--dark-blue);
		font-size: var(--booking-card__price__link__fz, 14px);
		font-weight: 600;
	}
.price-card {
	display: grid;
	grid-gap: var(--price-card__gap, 24px);
	grid-template-columns: var(--price-card__gtc);
	align-items: var(--price-card__ai, center);
	width: 100%;
	padding: var(--price-card__padding-block) var(--price-card__padding-inline);
	border-radius: 2px;
	background-color: white;
	box-shadow: var(--box-shadow);
}
.price-card__button {
		display: flex;
		width: 100%;
		transition: opacity 0.3s;
		will-change: opacity;
	}
.price-card__button:hover, .price-card__button:focus {
			opacity: 0.7;
		}
.price-card__button-mobile ul li {
				font-size: 10px;
			}
.price-card__button-mobile strong svg {
				margin-left: 8px;
			}
.price-card__fly {
		--flight-title__item__bgc: white;
	}
.price-card__fly button {
			display: flex;
			position: relative;
			align-items: center;
			border: none;
			background-color: transparent;
			color: var(--dark-blue);
			font-size: 14px;
			font-weight: 600;
	grid-column-start: 1;
	grid-column-end: 2;
	align-items: center;
	justify-content: center;
		}
.price-card__fly button::before {
				position: absolute;
				top: 50%;
				left: 50%;
				width: 100%;
				height: 44px;
				transform: translate(-50%, -50%);
				content: '';
			}
.price-card__fly button svg {
				margin-left: 8px;
				transition: transform 0.3s;
				will-change: transform;
			}
.price-card__fly button[aria-expanded='true'] svg {
				transform: rotateX(180deg);
			}
.price-card__fly > dl {
			display: flex;
			grid-column: 1/3;
			flex-direction: column;
			align-items: flex-start;
			width: 100%;
			margin-bottom: 0;
			color: var(--black);
		}
.price-card__fly > dl div:first-child {
					margin-top: 20px;
				}
.price-card__fly > dl div:not(:last-child) {
					margin-bottom: 12px;
				}
.price-card__fly > dl dt {
				font-size: 14px;
				font-weight: 400;
				opacity: 0.6;
			}
.price-card__fly > dl dd {
				margin-bottom: 0;
				font-size: 16px;
				font-weight: 500;
			}
.price-card__fly-title {
		display: grid;
		position: relative;
		grid-template-columns: repeat(2, -webkit-max-content);
		grid-template-columns: repeat(2, max-content);
		align-self: start;
		justify-content: space-between;
		justify-items: center;
	}
.price-card__fly-title::before {
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			width: 60%;
			height: 1px;
			transform: translateX(-50%);
			background-color: #d4d8e3;
			content: '';
		}
.price-card__fly-title-item {
		display: flex;
		z-index: 1;
		align-items: center;
		justify-content: center;
		background-color: white;
	}
.price-card__fly-title-item:first-child {
			padding-right: 12px;
		}
.price-card__fly-title-item:last-child {
			padding-left: 12px;
		}
.price-card__fly-title-item svg {
			transform: translateY(-8px);
		}
.price-card__fly-title-item dl {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			margin-bottom: 0;
			margin-left: 10px;
			color: var(--black);
			font-weight: 600;
		}
.price-card__fly-title-item dt {
			font-size: var(--price-card__fly-title-item__dt__fz, 12px);
		}
.price-card__fly-title-item dd {
			margin-bottom: 0;
			font-size: var(--price-card__fly-title-item__dd__fz, 10px);
			opacity: 0.8;
		}
.price-card__operator {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
.price-card__operator-price sup {
			top: 0;
			line-height: normal;
		}
.price-card__operator-price strong {
			color: var(--black);
			font-weight: 600;
			line-height: 1.2;
		}
.price-card__operator-price sub {
			line-height: normal;
	font-size: 14px;
		}
.price-card__title {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
.price-card__title h3 {
			display: flex;
			color: var(--black);
			font-size: var(--price-card__title__fz, 14px);
			font-weight: 500;
		}
.price-card__title h3 small {
				font-size: var(--price-card__title__small__fz, 12px);
			}
.price-card p span:not(:first-child) {
				position: relative;
				margin-left: 12px;
				padding-left: 12px;
			}
.price-card p span:not(:first-child)::before {
					position: absolute;
					top: calc(50% - 9px);
					left: 0;
					width: 1px;
					height: 18px;
					background-color: #b6b7b8;
					content: '';
				}

.orange-fire {
	position: absolute;
	top: -16px;
	width: 39px;
	left: 131px;
	height: 37px;
	background-image: url(/ittour_assets/img/index-hot-tours/hot-tours-fire.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 39px 37px;
	content: '';
}
.green-recomend {
	position: absolute;
	top: -13px;
	left: -7px;
	width: 132px;
	height: 30px;
	color: #fff;
	background: #23C1A1 0% 0% no-repeat padding-box;
	border-radius: 12px 12px 12px 2px;
	opacity: 1;
	text-transform: uppercase;
	text-align: left;
	font: normal normal bold 10px/28px Montserrat;
	letter-spacing: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.green-recomend img {
	height: 19px !important;
	width: 22px !important;
}

/*.search-tour-card--hot .search-tour-card__img::after {
			position: absolute;
			top: -13px;
			width: 39px;
			height: 37px;
			background-image: url('../img/index-hot-tours/hot-tours-fire.svg');
			background-position: center;
			background-repeat: no-repeat;
			background-size: 39px 37px;
			content: '';
		}*/
.search-tour-card {
	display: grid;
	grid-gap: var(--search-tour-card__gg, 16px);
	grid-template-columns: var(--search-tour-card__gtc, 100%);
	width: 100%;
	padding: 20px;
	border-radius: 2px;
	background-color: white;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}
.search-tour-card__data {
		display: flex;
		flex-direction: column;
		align-items: var(--search-tour-card__data__ai, flex-start);
	}
.search-tour-card__data > *:not(:last-child) {
			margin-bottom: 8px;
		}
.search-tour-card__price {
		display: flex;
	}
.search-tour-card__old-price {
		display: inline-flex;
		color: #676a72;
		font-size: 16px;
	}
.search-tour-card__old-price i {
			font-style: normal;
			text-decoration: line-through;
		}
.search-tour-card__discount {
		display: inline-flex;
		margin-left: 8px;
		border-radius: 2px;
		background-color: #fd6d38;
		color: white;
		font-size: 12px;
		font-weight: 600;
	}
.search-tour-card__discount span {
			font-weight: 400;
		}
.search-tour-card__current-price {
		color: var(--black);
		font-size: var(--search-tour-card__current-price__fz, 20px);
		font-weight: 600;
	}
.search-tour-card__price-title {
		font-size: 16px;
		font-weight: 600;
	}
.search-tour-card__includes {
		display: flex;
		margin-bottom: 0;
		color: var(--black);
		font-size: 14px;
		font-weight: 500;
		opacity: 0.5;
	}
.search-tour-card__includes li:not(:last-child) {
				margin-right: 8px;
			}
.search-tour-card__departure-title {
		color: var(--black);
		font-size: 16px;
		font-weight: 400;
	}
.search-tour-card__button {
		width: 100%;
	}
.search-tour-card__feature-list {
		margin-bottom: 0;
		color: var(--black);
		font-size: 16px;
	}
.search-tour-card__feature-list li:not(:last-child) {
				margin-bottom: 8px;
			}
.search-tour-card__feature-list span {
			margin-left: 12px;
		}
.search-tour-card__heading {
		display: flex;
		flex-direction: var(--search-tour-card__heading__fd, column-reverse);
		align-items: flex-start;
	}
.search-tour-card__title {
		margin-bottom: 0;
		color: black;
		font-size: var(--search-tour-card__title__fz);
		font-weight: 700;
		word-break: break-word;
	}
.search-tour-card__title a {
			color: currentColor;
			text-decoration: underline;
			-webkit-text-decoration-color: transparent;
			        text-decoration-color: transparent;
			transition: -webkit-text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
			will-change: text-decoration-color;
		}
.search-tour-card__title a:hover, .search-tour-card__title a:focus {
				-webkit-text-decoration-color: currentColor;
				        text-decoration-color: currentColor;
			}
.search-tour-card__location {
		display: inline-flex;
		align-items: baseline;
		color: rgba(103, 106, 114, 0.79);
		font-size: var(--search-tour-card__location__fz);
	}
.search-tour-card__stars {
		--stars-holder__ml: 0;
		--stars-holder__mr: 8px;
	}
.search-tour-card__img {
		display: flex;
		position: relative;
		width: 100%;
		max-height: 250px;
	/*overflow: hidden; */
	}
.search-tour-card__img picture,
		.search-tour-card__img img {
			display: block;
			width: 100%;
			max-width: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
	height: 100%;
	max-height: 250px;
		}
.search-tour-card__review {
		align-items: center;
	}
.search-tour-card__rating {
	}
.search-tour-card__reviews {
	}
.tour-card--hot {
	position: relative;
}
.tour-card--hot::after {
		content: "";
		position: absolute;
		width: 39px;
		height: 37px;
		background-image: url("../img/index-hot-tours/hot-tours-fire.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 39px 37px;
	}
.tour-card {
	width: 100%;
	height: 100%;
	border-radius: 2px;
	background-color: white;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}
.tour-card .button {
		width: 100%;
		margin-top: auto;
	}
.tour-card__data {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 0;
	}
.tour-card__data-item {
		display: flex;
		align-items: center;
		color: black;
		font-family: var(--font);
		font-weight: 400;
		line-height: 1.4;
	}
.tour-card__data-item span {
			margin-left: 12px;
		}
.tour-card__data-item:not(:last-child) {
		margin-bottom: 12px;
	}
.tour-card__img {
		display: flex;
		position: relative;
		width: 100%;
	height: 270px;
	overflow: hidden;
	}
.tour-card__img picture,
		.tour-card__img img {
			display: block;
			width: 100%;
			max-width: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
	height: 100%;
		}
.tour-card__price {
		display: flex;
		flex-direction: column;
	}
.tour-card__sum {
		display: flex;
	}
.tour-card__sum small {
			color: rgba(103, 106, 114, 0.79);
			font-family: var(--font);
			font-weight: 400;
			line-height: 1.4;
			text-decoration: line-through;
		}
.tour-card__sum span {
			color: black;
			font-family: var(--font);
			font-size: 16px;
			font-weight: 600;
			line-height: 1.4;
		}
.tour-card__persons {
		color: rgba(0, 0, 0, 0.3);
		font-family: var(--font);
		font-size: 14px;
		font-weight: 500;
		line-height: 1.4;
	}
.tour-card__rating {
		text-align: right;
	}
.tour-card__subtitle {
		display: flex;
		align-items: baseline;
		min-height: 32px;
		gap: 12px;
	}
.tour-card__stars {
		--stars-holder__mr: 4px;
		--stars-holder__ml: 0;
	}
.tour-card__location {
		display: block;
		margin-top: 0;
		margin-bottom: 0;
		color: rgba(103, 106, 114, 0.79);
		font-family: var(--font);
		font-weight: 400;
		line-height: 1.4;
	}
.tour-card__title {
		display: block;
		margin-top: 0;
		margin-bottom: 0;
		color: black;
		font-family: var(--font);
		font-weight: 700;
		line-height: 1.4;
		word-break: break-word;
	min-height: 70px;
	}
.tour-card__title a {
			color: currentColor;
			text-decoration: underline;
			-webkit-text-decoration-color: transparent;
			        text-decoration-color: transparent;
			transition: -webkit-text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
			will-change: text-decoration-color;
		}
.tour-card__title a:hover, .tour-card__title a:focus {
				-webkit-text-decoration-color: currentColor;
				        text-decoration-color: currentColor;
			}
body {
	margin-bottom: var(--fixed-buttons-height, 0);
}
.booking-step-1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	color: var(--black);
}
.booking-step-1__title {
		margin-bottom: var(--booking-step-1__title__mb, 8px);
		font-size: var(--booking-step-1__title__fz, 14px);
		font-weight: 700;
	}
.booking-step-1__text {
		margin-bottom: var(--booking-step-1__text__mb, 16px);
		font-size: var(--booking-step-1__text__fz, 12px);
	}
.booking-item-button {
	display: flex;
	position: relative;
	align-items: center;
	width: var(--booking-item-button__width, 100%);
	min-height: 44px;
	margin-bottom: var(--booking-item-button__mb, 24px);
	padding: 4px 0;
	border: none;
	background: none;
	box-shadow: none;
	-webkit-appearance: none;
	        -moz-appearance: none;
	     appearance: none;
}
.booking-item-button[data-item]::before {
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		margin-right: 12px;
		border-radius: 50%;
		background-color: white;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
		color: var(--dark-blue);
		font-size: 16px;
		font-weight: 700;
		content: attr(data-item);
	}
.booking-item-button::after {
		position: absolute;
		top: calc(50% - 4px);
		right: 0;
		width: 13px;
		height: 8px;
		background-image: url(../img/icons/icon-arrow-down.svg);
		background-size: 13px 8px;
		content: '';
		transition: transform 0.3s;
		will-change: transform;
	}
.booking-item-button[aria-expanded='true']::after {
		transform: rotate(0.5turn);
	}
.booking-item-button h2 {
		margin-bottom: 0;
		color: var(--black);
		font-size: var(--booking-item-button__fz, 14px);
		font-weight: 600;
		text-align: left;
	}
.booking-item-button h3 {
		margin-bottom: 0;
		color: var(--dark-blue);
		font-size: var(--booking-item-button__fz, 14px);
		font-weight: 500;
		text-align: left;
	}
.document-cards {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 16px);
	margin-right: -8px;
	margin-left: -8px;
}
.document-cards__item {
		display: flex;
		flex-basis: var(--document-cards__item__fb, 100%);
		align-items: center;
		justify-content: space-between;
		margin: 5px 8px;
		padding: 12px 26px 12px 16px;
		border-radius: 2px;
		background-color: white;
		box-shadow: var(--box-shadow);
		color: var(--black);
	}
.document-cards__item dl {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			margin-bottom: 0;
			padding-right: 24px;
		}
.document-cards__item h3 {
			margin-bottom: 0;
			font-size: 16px;
			font-weight: 500;
		}
.document-cards__item dd {
			margin-bottom: 0;
			font-size: 14px;
			font-weight: 500;
			opacity: var(--docuemnt-cards__dd__o, 0.5);
		}
.document-cards__item dd.is-ready {
				--docuemnt-cards__dd__o: 1;
				color: var(--brand-green);
			}
.document-cards__item a {
			color: currentColor;
		}
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	font-size: 16px;
	list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
	text-align: center;
}
.breadcrumbs li:not(:last-child) {
			position: relative;
			margin-right: 48px;
		}
.breadcrumbs li:not(:last-child)::before {
				position: absolute;
				top: 50%;
				right: -32px;
				width: 16px;
				height: 1px;
				background-color: #707070;
				content: '';
				opacity: 0.3;
			}
.breadcrumbs a {
		text-decoration: underline;
		-webkit-text-decoration-color: transparent;
		        text-decoration-color: transparent;
		transition: -webkit-text-decoration-color 0.3s;
		transition: text-decoration-color 0.3s;
		transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
		will-change: text-decoration-color;
	}
.breadcrumbs a,
		.breadcrumbs a:hover,
		.breadcrumbs a:focus {
			color: var(--dark-blue);
		}
.breadcrumbs a:hover {
			-webkit-text-decoration-color: currentColor;
			        text-decoration-color: currentColor;
		}
.breadcrumbs span {
		color: #707070;
	}
.about-hotel__wrapper {
		display: grid;
		grid-gap: 24px 60px;
		grid-template-columns: var(--about-hotel__gtc, 100%);
		align-items: start;
	}
.about-hotel-features {
	display: grid;
	grid-gap: var(--about-hotel-features__grg, 30px) 60px;
	grid-template-columns: var(--about-hotel-features__gtc, 100%);
	align-items: start;
	width: 100%;
}
.about-hotel-features__list {
		display: flex;
		flex-direction: column;
		width: 100%;
		color: var(--black);
	}
.about-hotel-features__list h2 {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			width: 100%;
			margin-bottom: var(--about-hotel-features__title__mb, 4px);
			font-size: var(--about-hotel-features__title__fz, 16px);
			font-weight: 700;
		}
.about-hotel-features__list dl {
			display: flex;
			flex-direction: column;
			width: 100%;
			margin-bottom: 0;
			color: var(--black);
		}
.about-hotel-features__list dl div {
				display: flex;
				flex-wrap: wrap;
			}
.about-hotel-features__list dl div:not(:last-child) {
					margin-bottom: 8px;
				}
.about-hotel-features__list dt {
			margin-right: 8px;
		}
.about-hotel-features__list dt,
		.about-hotel-features__list dd {
			margin-bottom: var(--about-hotel-features__text__mb, 4px);
			font-size: var(--about-hotel-features__text__fz, 14px);
		}
.about-hotel-features__map {
		position: relative;
	}
.about-hotel-features__map-button {
		display: flex;
		z-index: 10;
		position: absolute;
		right: 20px;
		bottom: 20px;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: none;
		border-radius: 2px;
		background-color: white;
		background-image: none;
		color: var(--button-zoom__color, #aec1ee);
		transition: color 0.3s;
		will-change: color;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.about-hotel-features__map-button:hover, .about-hotel-features__map-button:focus {
			--button-zoom__color: var(--dark-blue);
		}
.about-hotel-features__map-wrapper {
		height: var(--map__height, 167px);
	}
.about-hotel-rooms {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}
.about-hotel-rooms__slider {
		position: relative;
		width: 100%;
	}
.about-hotel-rooms__slider .glider {
			margin-bottom: 16px;
			margin-left: -8px;
		}
.about-hotel-rooms__controls {
		display: var(--about-hotel-rooms__controls__display, none);
	}
.about-hotel-rooms__controls button {
			width: 44px;
			height: 44px;
			border: none;
			border-radius: none;
			background-color: transparent;
			background-image: none;
			pointer-events: all;
			transition: color 0.3s;
			will-change: color;
		}
.about-hotel-rooms__controls button.prev-btn {
				transform: translateX(-100%) rotate(0.5turn);
			}
.about-hotel-rooms__controls button.next-btn {
				transform: translateX(100%);
			}
.about-hotel-rooms__controls button:hover, .about-hotel-rooms__controls button:focus {
				color: var(--brand-green);
			}
.about-hotel-rooms__button {
		display: flex;
		align-items: center;
		min-height: 44px;
		padding: 0;
		border: none;
		background: none;
		color: var(--dark-blue);
		font-size: 16px;
		font-weight: 500;
		transition: opacity 0.3s;
		will-change: opacity;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.about-hotel-rooms__button:hover, .about-hotel-rooms__button:focus {
			opacity: 0.7;
		}
.about-hotel-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	color: var(--black);
}
.about-hotel-text h2 {
		margin-bottom: var(--about-hotel-text__title__mb, 4px);
		font-size: var(--about-hotel-text__title__fz, 16px);
		font-weight: 700;
	}
.about-hotel-text p {
		margin-bottom: var(--about-hotel-text__text__mb, 4px);
		font-size: var(--about-hotel-text__text__fz, 14px);
	}
.hotel-card {
	display: grid;
	grid-gap: 8px 16px;
	grid-template-columns: var(--hotel-card__gtc, 100%);
	align-content: start;
	width: var(--hotel-card__width, 222px);
	margin-right: 8px;
	margin-left: 8px;
	padding: 16px;
	border: 1px solid #b6b7b8;
	border-radius: 2px;
}
.hotel-card__img {
		display: flex;
		width: 100%;
	}
.hotel-card__img img {
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
		}
.hotel-card__data {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		color: var(--black);
	}
.hotel-card__data h3 {
			margin-bottom: 4px;
			font-size: var(--hotel-card__title__fz, 14px);
			font-weight: 600;
		}
.hotel-card__data h4 {
			margin-bottom: 8px;
			font-size: 14px;
			font-weight: 600;
		}
.hotel-card__data p {
			margin-bottom: 8px;
			font-size: 12px;
			opacity: 0.7;
		}
.hotel-card__data ul {
			margin-bottom: 0;
		}
.hotel-card__data li {
			position: relative;
			margin-bottom: 4px;
			padding-left: 25px;
			font-size: 14px;
			opacity: 0.7;
		}
.hotel-card__data li::before {
				position: absolute;
				top: 1px;
				left: 0;
				width: 18px;
				height: 18px;
				background-image: url(../img/icons/rounded-tick.svg);
				background-position: center;
				background-repeat: no-repeat;
				background-size: 18px 18px;
				content: '';
			}
.hotel-card__data button {
			display: flex;
			align-items: center;
			min-height: 40px;
			padding: 0;
			border: none;
			background-color: transparent;
			font-size: 12px;
			font-weight: 600;
			text-decoration: none;
			transition: opacity 0.3s;
			will-change: opacity;
			-webkit-appearance: none;
			        -moz-appearance: none;
			     appearance: none;
		}
.hotel-card__data button,
			.hotel-card__data button:hover,
			.hotel-card__data button:focus {
				color: var(--dark-blue);
			}
.hotel-card__data button:hover {
				opacity: 0.7;
			}
.booking-steps {
	background-color: white;
}
.booking-steps__wrapper {
		display: grid;
		z-index: 1;
		position: relative;
		grid-row-gap: var(--wrapper-standard__padding-block);
		grid-template-columns: 100%;
	}
.booking-steps__img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
.booking-steps__img::before {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border-radius: 2px;
			background-color: rgba(38, 48, 64, 0.6);
			box-shadow: 0 42px 99px rgba(0, 0, 0, 0.16);
			content: '';
		}
.booking-steps__img::after {
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border-radius: 2px;
			background-image: linear-gradient(
				256deg,
				rgba(71, 168, 243, 0.6) 0%,
				rgba(71, 86, 180, 0.6) 100%
			);
			content: '';
		}
.booking-steps__img img,
		.booking-steps__img picture {
			display: block;
			width: 100%;
			max-width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: top center;
			   object-position: top center;
		}
.booking-steps__list {
		display: flex;
		z-index: 1;
		flex-wrap: wrap;
		align-items: var(--booking-steps__list__ai, center);
		justify-content: center;
		width: 100%;
		padding-right: 40px;
		padding-left: 40px;
		counter-reset: booking-steps;
	}
.booking-steps__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: var(--booking-steps__item__width, 100%);
		padding: 20px;
		color: white;
		text-align: center;
	}
.booking-steps__item h3 {
			margin-top: var(--booking-steps__item__title__mt, 16px);
			margin-bottom: 16px;
			font-size: var(--booking-steps__item__title__fz, 14px);
			font-weight: 600;
		}
.booking-steps__item p {
			font-size: var(--booking-steps__item__text__fz, 14px);
		}
.booking-steps__item p:not(:last-of-type) {
				margin-bottom: 16px;
			}
.booking-steps__icon {
		display: flex;
		position: relative;
		align-items: center;
		justify-content: center;
		width: 92px;
		height: 92px;
	}
.booking-steps__icon::before {
			display: flex;
			position: absolute;
			right: 0;
			bottom: 0;
			align-items: center;
			justify-content: center;
			width: 28px;
			height: 28px;
			border-radius: 50%;
			background-color: var(--brand-green);
			color: white;
			font-size: 16px;
			font-weight: 700;
			line-height: 1;
			text-align: center;
			content: counter(booking-steps);
			counter-increment: booking-steps;
		}
.booking-steps__title {
		z-index: 1;
		color: white;
		font-size: var(--booking-steps__title__fz, 16px);
		font-weight: 700;
		text-align: center;
	}
.hotel-media__wrapper {
		display: grid;
		position: relative;
		grid-template-columns: var(--hotel-media__wrapper__gtc, 100%);
		padding-top: 0 !important;
	}
.hotel-media__bottom-holder {
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
		border-radius: 2px;
		background-color: white;
	}
.hotel-media__bottom-holder-item {
		display: flex;
		align-items: center;
		height: 44px;
		padding-right: var(--hotel-media__bottom-holder-item__pi, 16px);
		padding-left: var(--hotel-media__bottom-holder-item__pi, 16px);
		background-color: white;
		transition: background-color 0.3s;
		will-change: background-color;
	}
.hotel-media__bottom-holder-item:hover, .hotel-media__bottom-holder-item:focus {
			background-color: var(--bg);
		}
.hotel-media__bottom-holder-item span {
			margin-left: var(--hotel-media__bottom-holder-item__span__ml, 8px);
			font-size: var(--hotel-media__bottom-holder-item__span__fz, 11px);
			font-weight: 500;
		}
.hotel-media__bottom-holder-item svg {
			opacity: 0.7;
			transition: opacity 0.3s;
			will-change: opacity;
		}
.hotel-media__bottom-holder-item:hover svg, .hotel-media__bottom-holder-item:focus svg {
			opacity: 1;
		}
button.hotel-media__bottom-holder-item {
			border: none;
			background-image: none;
			color: var(--dark-blue);
			-webkit-appearance: none;
			        -moz-appearance: none;
			     appearance: none;
		}
a.hotel-media__bottom-holder-item {
			text-decoration: none;
		}
a.hotel-media__bottom-holder-item,
			a.hotel-media__bottom-holder-item:hover,
			a.hotel-media__bottom-holder-item:focus {
				color: var(--dark-blue);
			}
.hotel-media__main-photo :where(img, picture), .hotel-media__photo :where(img, picture) {
			display: flex;
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
		}
.hotel-media__main-photo {
		display: flex;
	}
.hotel-media__top-holder {
		display: flex;
		position: absolute;
		align-items: center;
		padding: var(--hotel-media__top-holder__p, 8px);
		border-radius: 2px;
		background-color: white;
	}
.hotel-media__top-holder span {
			margin-right: 8px;
		}
.hotel-media__top-holder span,
		.hotel-media__top-holder a {
			white-space: nowrap;
		}
.other-tours {
	background-image: linear-gradient(67deg, #394984 0%, #4578aa 100%);
}
.other-tours__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-bottom: 0;
	}
.other-tours__title {
		margin-bottom: var(--other-tours__title__mb, 16px);
		color: white;
		font-family: Montserrat;
		font-size: var(--other-tours__title__fz, 15px);
		font-weight: 700;
	}
.other-tours-filter .desktop-search-main {
		width: 100%;
		margin-left: 0;
		padding: 16px;
		background-color: white;
	}
.other-tours-filter .desktop-search-main__item {
			align-items: baseline;
			padding-left: var(--desktop-search-main__item__pi, 44px);
			white-space: nowrap;
		}
.other-tours-filter {
	display: flex;
	width: 100%;
}
.other-tours-tab-content {
	position: relative;
	width: 100%;
}
.other-tours-tab-content::before {
		position: absolute;
		top: -12px;
		left: 50%;
		width: calc(100vw - var(--scrollbar-width, 0px));
		height: calc(100% + 12px);
		transform: translateX(-50%);
		background-color: var(--bg);
		content: '';
	}
.other-tours-tab-content .tab-content {
		z-index: 1;
		position: relative;
		width: 100%;
	}
.other-tours-tab-content .tab-pane.active {
		display: grid;
		grid-template-columns: 100%;
		width: 100%;
		width: 100%;
	}
.other-tours-tab-list {
	position: relative;
	width: 100%;
	margin-top: var(--other-tours-tab-list__mt, 16px);
}
.other-tours-tab-list .nav-tabs {
		--additional-width: calc((100vw - 100% - var(--scrollbarWidth, 0px)) / 2);
		--width: calc(100% + var(--additional-width));
		flex-wrap: nowrap;
		width: var(--width);
		margin-right: calc(0px - var(--additional-width));
		padding-bottom: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		border-bottom: none;
		-ms-scroll-snap-type: x mandatory;
		    scroll-snap-type: x mandatory;
	max-width: fit-content
	}
.other-tours-tab-list .nav-item {
		min-width: auto;
		scroll-snap-align: start;
	background: #37557D;
	}
.other-tours-tab-list .nav-item + .nav-item {
			margin-left: var(--other-tours-tab-list__nav-item__indent, 8px);
		}
.other-tours-tab-list .nav-link {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: var(--other-tours-tab-list__nav-link__width, 118px);
		height: var(--other-tours-tab-list__nav-link__height, 54px);
		margin-bottom: 0;
		padding: 4px;
		border: 1px solid white;
		border-radius: 2px;
		background-color: var(--other-tours-tab-list__nav-link__bgc, transparent);
	}
.other-tours-tab-list .nav-link.active,
		.other-tours-tab-list .nav-link:hover,
		.other-tours-tab-list .nav-link:focus {
			--other-tours-tab-list__nav-link__color: var(--black);
		}
.other-tours-tab-list .nav-link.active {
			--other-tours-tab-list__nav-link__bgc: white;
		}
.other-tours-tab-list .nav-link:hover,
		.other-tours-tab-list .nav-link:focus {
			--other-tours-tab-list__nav-link__bgc: rgba(255, 255, 255, 0.6);
		}
.other-tours-tab-list .nav-link time {
			color: var(--other-tours-tab-list__nav-link__color, white);
			font-size: var(--other-tours-tab-list__nav-link__time__fz, 12px);
			font-weight: 700;
			transition: color 0.3s;
			will-change: color;
		}
.other-tours-tab-list .nav-link strong {
			color: var(
				--accent-color,
				var(--other-tours-tab-list__nav-link__color, white)
			);
			font-size: var(--other-tours-tab-list__nav-link__strong__fz, 15px);
			line-height: 1;
			transition: color 0.3s;
			will-change: color;
		}
.other-tours-tab-list .nav-link strong.is-hot {
				--accent-color: var(--brand-orange);
				display: flex;
				align-items: center;
			}
.other-tours-tab-list .nav-link strong.is-hot::after {
					display: block;
					margin-left: 6px;
					background-image: url(../img/icons/icon-fire.svg);
					background-position: center;
					background-repeat: no-repeat;
					background-size: contain;
					content: '';
				}
.other-tours-tab-list .nav-link strong.is-promo {
				--accent-color: var(--brand-green);
			}
.other-tours-tab-list__controls {
		display: var(--other-tours-tab-list__controls__display, none);
	}
.other-tours-tab-list__controls button {
			width: 44px;
			height: 44px;
			border: none;
			border-radius: none;
			background-color: transparent;
			background-image: none;
			color: white;
			pointer-events: all;
			transition: color 0.3s;
			will-change: color;
		}
.other-tours-tab-list__controls button.prev-btn {
				transform: translateX(-100%) rotate(0.5turn);
			}
.other-tours-tab-list__controls button.next-btn {
				transform: translateX(100%);
			}
.other-tours-tab-list__controls button:hover, .other-tours-tab-list__controls button:focus {
				color: var(--brand-green);
			}
.best-price__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
.best-price h2 {
		margin-bottom: var(--best-price__title__mb, 16px);
		color: var(--black);
		font-family: Montserrat;
		font-size: var(--best-price__title__fz, 15px);
		font-weight: 700;
	}
.best-price .observer-container, .best-price #observer, .best-price .observer-container-new {
		width: 100%;
	}
.how-to-book__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		color: var(--black);
	}
.how-to-book__title {
		margin-top: var(--how-to-book__title__mt, 12px);
		margin-bottom: var(--how-to-book__title__mb, 32px);
		font-size: var(--how-to-book__title__fz, 20px);
		font-weight: 700;
		text-align: center;
	}
.how-to-book-item {
	display: grid;
	grid-gap: 36px 60px;
	grid-template-columns: var(--how-to-book-item__gtc, 100%);
	align-items: center;
	justify-items: center;
}
.how-to-book-item__text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
.how-to-book-item h3 {
		margin-bottom: var(--how-to-book-item__title__mb, 12px);
		font-size: var(--how-to-book-item__title__fz, 16px);
		font-weight: 700;
	}
.how-to-book-item p {
		margin-bottom: var(--how-to-book-item__text__mb, 32px);
		font-size: var(--how-to-book-item__text__fz, 14px);
	}
.how-to-book-item ol {
		margin-bottom: 0;
		counter-reset: how-to-book-item;
	}
.how-to-book-item li {
		position: relative;
		padding-left: 48px;
		font-size: var(--how-to-book-item__list-item__fz, 14px);
	}
.how-to-book-item li::before {
			display: inline-flex;
			position: absolute;
			top: -4px;
			left: 0;
			align-items: center;
			justify-content: center;
			width: 32px;
			height: 32px;
			border-radius: 50%;
			background-color: var(--brand-orange);
			color: white;
			font-size: 16px;
			font-weight: 600;
			text-align: center;
			content: counter(how-to-book-item);
			counter-increment: how-to-book-item;
		}
.how-to-book-item li:not(:last-child) {
			margin-bottom: 16px;
		}
.how-to-book-item__img {
		align-self: var(
			--vertical-modificator,
			var(
				--vertical-modificator--desktop,
				var(--vertical-modificator--tablet, center)
			)
		);
		max-width: 100%;
	}
.how-to-book-item__img img {
			max-width: 100%;
			height: auto;
		}

#wrapForListHotel2{
	display: block;
	position: absolute;
	background: white;
	width: 100%;
	max-width: 1640px;
	margin-left: -24px
}

.list_hotels{
	padding: 20px
}

.list_hotels div{
	cursor: pointer;
	font-size: 18px;
	padding: 0 0 8px;
}

.list_hotels div:hover{
	background: #F1F1F1
}


@media(max-width: 1659px){
	#wrapForListHotel2{
		max-width: 1336px
	}

	#desktop-search-hotel, #desktop-search-extended{
		margin-bottom: 70px
	}
}

@media(max-width: 1439px){
	#wrapForListHotel2{
		max-width: 1110px
	}
}

@media(max-width: 1439px){
	#wrapForListHotel2{
		max-width: 1110px
	}
}

@media(max-width: 1279px){
	#wrapForListHotel2{
		max-width: calc(100% - 128px)
	}
}

.faq {
	background-color: white;
}
.faq__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		color: var(--black);
	}
.faq__title {
		margin-top: var(--faq__title__mt, 12px);
		margin-bottom: var(--faq__title__mb, 24px);
		font-size: var(--faq__title__fz, 20px);
		font-weight: 700;
		text-align: center;
	}
.faq-anchor-list {
	display: flex;
	width: var(--faq__anchor-list__width, 100%);
	margin-bottom: var(--faq__anchor-list__mb, 40px);
}
.faq-anchor-list ul {
		display: inline-flex;
		margin-bottom: 0;
	}
.faq-anchor-list li {
		margin-right: 16px;
		margin-bottom: 16px;
	}
.faq-anchor-list a {
		display: inline-flex;
		padding: 12px 16px;
		border: 1px solid rgba(84, 171, 246, 0.43);
		border-radius: 0;
		background-color: rgba(246, 246, 246, 0.5);
		font-size: 16px;
		font-weight: 600;
		text-decoration: none;
		white-space: nowrap;
		transition-duration: 0.3s;
		transition-property: color, border-color, background-color;
		-webkit-user-select: none;
		        -moz-user-select: none;
		         -ms-user-select: none;
		     user-select: none;
	}
.faq-anchor-list a:hover, .faq-anchor-list a:focus {
			border-color: var(--brand-blue);
			background-color: var(--brand-blue);
			color: white;
		}
.faq-content {
	max-width: 1082px;
	margin-right: auto;
	margin-left: auto;
}
.faq-content__item h3 {
			margin-bottom: var(--faq__content__title__mb, 24px);
			color: var(--brand-blue);
			font-size: var(--faq__content__title__fz, 16px);
			font-weight: 700;
		}
.faq-content__item:first-child {
			scroll-margin-top: 40px;
		}
.faq-content__item:not(:first-child) h3 {
			padding-top: 40px;
		}
.faq-content__button {
		display: flex;
		position: relative;
		align-items: center;
		width: 100%;
		min-height: 44px;
		padding: 24px 0;
		border: none;
		background: none;
		box-shadow: none;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.faq-content__button:not(:first-of-type) {
			margin-top: -1px;
			border-top: 1px solid #c9cedb;
		}
.faq-content__button[aria-expanded='false'] {
			border-bottom: 1px solid #c9cedb;
		}
.faq-content__button::after {
			position: absolute;
			top: calc(50% - 4px);
			right: 0;
			width: 13px;
			height: 8px;
			background-image: url(../img/icons/icon-arrow-down.svg);
			background-size: 13px 8px;
			content: '';
			transition: transform 0.3s;
			will-change: transform;
		}
.faq-content__button[aria-expanded='true']::after {
			transform: rotate(0.5turn);
		}
.faq-content__button h4 {
			margin-bottom: 0;
			padding-right: 32px;
			color: var(--black);
			font-size: var(--faq-button__fz, 14px);
			font-weight: 700;
			text-align: left;
		}
.faq-content .collapse.show {
		border-bottom: 1px solid #c9cedb;
	}
.faq-content__collapse-content {
		padding-top: var(--faq-collapse-content__p, 8px);
		padding-bottom: var(--faq-collapse-content__p, 8px);
	}
.faq-content__collapse-content ul {
			margin-bottom: 1rem;
			padding-left: 0;
		}
.faq-content__collapse-content p,
		.faq-content__collapse-content li {
			font-size: var(--faq-collapse-content__fz, 14px);
		}
.faq-content__collapse-content li {
			position: relative;
			padding-left: 20px;
		}
.faq-content__collapse-content li::before {
				position: absolute;
				top: 10px;
				left: 0;
				width: 8px;
				height: 8px;
				border-radius: 50%;
				background-color: var(--brand-blue);
				content: '';
			}
.hotel-testimonials {
	background-color: white;
    overflow: hidden;
}
.hotel-testimonials__wrapper {
		--hotel-testimonials__gcg: 20px;
		--hotel-testimonials__grg: 16px;
		display: flex;
		flex-direction: column;
	}
.hotel-testimonial {
	display: grid;
	position: relative;
	grid-gap: var(--hotel-testimonials__grg) var(--hotel-testimonials__gcg);
	grid-template-columns: var(--hotel-testimonials__gtc);
	align-items: start;
	width: 100%;
	padding-top: 24px;
}
.hotel-testimonial.is-lighted::before {
			z-index: 1;
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-image: linear-gradient(
				180deg,
				rgba(255, 255, 255, 0) 0%,
				white 100%
			);
			content: '';
		}
.hotel-testimonial__meta {
		display: flex;
		align-items: flex-start;
		gap: 28px;
	}
.hotel-testimonial__img {
		position: relative;
	}
.hotel-testimonial__img-wrapper {
		display: flex;
		width: 80px;
		height: 80px;
		overflow: hidden;
		border-radius: 50%;
	}
.hotel-testimonial__img-wrapper img,
		.hotel-testimonial__img-wrapper picture {
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
		}
.hotel-testimonial .mark-holder {
		--mark-holder__p: 8px 12px;
		position: absolute;
		bottom: 12px;
		left: 50%;
		transform: translate(-50%, 100%);
	}
.hotel-testimonial__data {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		color: var(--black);
	}
.hotel-testimonial__data strong {
			margin-bottom: 4px;
			font-size: 16px;
			font-weight: 500;
		}
.hotel-testimonial__data p {
			margin-bottom: 8px;
			font-size: 14px;
			font-weight: 400;
		}
.hotel-testimonial__data small {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			width: 100%;
			font-size: 14px;
			font-weight: 600;
			opacity: 0.5;
		}
.hotel-testimonial__text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		color: var(--black);
	}
.hotel-testimonial__text time {
			margin-bottom: 4px;
			font-size: 14px;
			font-weight: 600;
			opacity: 0.5;
		}
.hotel-testimonial__text h3 {
			margin-bottom: 8px;
			font-size: 18px;
			font-weight: 700;
		}
.hotel-testimonial__text p {
			margin-bottom: 8px;
			font-size: 16px;
			font-weight: 500;
			opacity: 0.7;
		}
.hotel-testimonial__button {
	}
.hotel-testimonials__link {
		display: inline-flex;
		position: relative;
		align-items: center;
		align-self: center;
		font-size: 18px;
		font-weight: 700;
		line-height: 2;
	}
.hotel-testimonials__link,
		.hotel-testimonials__link:hover,
		.hotel-testimonials__link:focus {
			color: var(--dark-blue);
		}
.hotel-testimonials__link::before, .hotel-testimonials__link:hover::before, .hotel-testimonials__link:focus::before {
				position: absolute;
				top: 50%;
				left: -2px;
				width: calc(100% + 4px);
				height: max(100%, 44px);
				transform: translateY(-50%);
				content: '';
			}
.hotel-testimonials__link span {
			margin-right: 8px;
		}
.hotel-testimonials__list {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-block: 24px;
	}
.hotel-testimonials-title {
	display: grid;
	position: relative;
	grid-gap: var(--hotel-testimonials__grg) var(--hotel-testimonials__gcg);
	grid-template-columns: var(--hotel-testimonials__gtc);
	align-items: start;
	width: 100%;
	padding-top: 24px;
	padding-bottom: 36px;
}
.hotel-testimonials-title::after {
		position: absolute;
		bottom: 0;
		left: 50%;
		width: calc(100vw - var(--scrollbar-width, 0px));
		height: 1px;
		transform: translateX(-50%);
		background-color: #e6e7e7;
		content: '';
	}
.hotel-testimonials-title__rating {
		display: grid;
		grid-gap: 32px;
		grid-template-columns: var(--hotel-testimonials-title__rating__mark, auto) 1fr;
		align-items: center;
	}
.hotel-testimonials-title .mark-holder {
		justify-self: center;
		width: auto;
	}
.hotel-testimonials-title__data {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 20px;
	}
.hotel-testimonials-title__text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-right: auto;
		color: var(--black);
	}
.hotel-testimonials-title__text h2 {
			margin-bottom: 0;
			font-size: var(--hotel-testimonials-title__text__fz, 16px);
			font-weight: 500;
		}
.hotel-testimonials-title__text small {
			font-size: var(--hotel-testimonials-title__small__fz, 12px);
			opacity: 0.5;
		}
.autobooking--white {
		background-color: white;
	}
.autobooking__wrapper {
		display: grid;
		grid-row-gap: var(--wrapper-standard__padding-block);
		grid-template-columns: 100%;
	}
.autobooking__info {
	position: relative;
}
.autobooking__img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
.autobooking__img::before {
			content: "";
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			left: 0;
			box-shadow: 0 42px 99px rgba(0, 0, 0, 0.16);
			background-color: rgba(38, 48, 64, 0.6);
			border-radius: 2px;
		}
.autobooking__img::after {
			content: "";
			position: absolute;
			width: 100%;
			height: 100%;
			bottom: 0;
			left: 0;
			background-image: linear-gradient(256deg, rgba(71, 168, 243, 0.6) 0%, rgba(71, 86, 180, 0.6) 100%);
			border-radius: 2px;
		}
.autobooking__img img,
		.autobooking__img picture {
			display: block;
			width: 100%;
			max-width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: top center;
			   object-position: top center;
		}
.autobooking__list {
		display: grid;
		justify-content: center;
		justify-items: center;
		margin-bottom: 0;
		position: relative;
		z-index: 1;
	}
.autobooking__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-width: 310px;
	}
.autobooking__item svg {
			margin-bottom: 24px;
		}
.autobooking__item p {
			display: block;
			margin-top: 0;
			margin-bottom: 0;
			color: #ffffff;
			font-family: var(--font);
			font-weight: 500;
			line-height: 1.6;
			text-align: center;
		}
.autobooking__item a{
	color: white;
	text-decoration: none;
}
.help-booking {
	display: flex;
	flex-direction: var(--help-booking__fd, row);
	align-items: var(--help-booking__ai, center);
	padding: var(--help-booking__p);
	border-radius: 2px;
	background-color: white;
	box-shadow: var(--help-booking__shadow-sizes) rgba(0, 0, 0, 0.16);
	gap: 24px var(--help-booking__column-gap, 32px);
}
.help-booking__img {
	display: flex;
	max-height: 240px;
}
.help-booking__img picture,
	.help-booking__img img {
		display: block;
		flex-shrink: 0;
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
		-o-object-position: center;
		   object-position: center;
	}
.help-booking__info {
	display: flex;
	flex-direction: column;
	align-items: var(--help-booking__info__ai, flex-start);
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 100%
}
.help-booking__phones {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	margin-bottom: 16px;
}
.help-booking__phones a {
		color: var(--dark-blue);
		font-family: var(--font);
		font-weight: 700;
		line-height: 1.4;
		text-decoration: none;
		transition: opacity 0.3s;
		will-change: opacity;
	}
.help-booking__phones a:hover, .help-booking__phones a:focus {
			opacity: 0.7;
		}
.help-booking__text {
	display: block;
	margin-top: 0;
	margin-bottom: 16px;
	color: #000000;
	font-family: var(--font);
	font-weight: 500;
	line-height: 1.4;
}
.help-booking__title {
	display: block;
	margin-top: 0;
	margin-bottom: 16px;
	color: #000000;
	font-family: var(--font);
	font-weight: 700;
	line-height: 1.2;
}
.index-info__wrapper {
		display: flex;
		align-items: flex-start;
		gap: var(--index-info__wrapper__gap, 24px);
	}
.index-hot-tours__wrapper {
		display: grid;
		grid-row-gap: var(--wrapper-standard__padding-block);
		grid-template-columns: 100%;
	}
.index-hot-tours {
	--custom-select__min-width: auto;
	--custom-select__item__width: 100%;
}
.index-hot-tours__country-selection {
		display: flex;
		align-items: center;
		width: 100%;
	}
.index-hot-tours__country-selection-title,
	.index-hot-tours__trigger,
	.index-hot-tours .filter-option-inner-inner {
		font-weight: 700;
		line-height: 1.4;
	}
.index-hot-tours__trigger,
	.index-hot-tours .filter-option-inner-inner {
		display: flex;
		align-items: center;
		border: none;
		border-radius: none;
		background-color: transparent;
		color: var(--dark-blue);
		-webkit-user-select: none;
		        -moz-user-select: none;
		         -ms-user-select: none;
		     user-select: none;
	}
.index-hot-tours__trigger svg, .index-hot-tours .filter-option-inner-inner svg {
			margin-left: 8px;
		}
.index-hot-tours__info {
		display: flex;
		position: relative;
		width: 100%;
	}
.index-hot-tours__link {
		font-family: var(--font);
		font-weight: 700;
		line-height: 1.4;
	}
.index-hot-tours__social-list {
		display: flex;
		align-items: center;
		margin-bottom: 0;
	}
.index-hot-tours__social-list li {
			display: flex;
		}
.index-hot-tours__social-list a {
			display: flex;
			align-items: center;
		}
.index-hot-tours__social-list span {
			color: var(--accent-color, var(--dark-blue));
			font-family: var(--font);
			font-size: 20px;
			font-weight: 700;
			line-height: 1.4;
			opacity: 0.7;
		}
.index-hot-tours__social-list a.hover-opacity:hover span, .index-hot-tours__social-list a.hover-opacity:hover{
	opacity: 1;
}
.index-hot-tours__social-text {
		display: block;
		margin-top: 0;
		margin-bottom: 0;
		color: var(--black);
		font-family: var(--font);
		font-size: 16px;
		font-weight: 500;
		line-height: 1.4;
	}
.index-hot-tours__list {
		display: var(--index-hot-tours__list__display, flex);
		margin-bottom: 0;
	}
.index-hot-tours__item {
		width: 100%;
	}
.instagram__wrapper {
		display: flex;
		align-items: flex-start;
		width: 100%;
	}
.instagram__grid {
		display: block;
	width: 100%;
	overflow: hidden;
	}
.operators {
	display: var(--operators__display, none);
}
.operators__images {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
.operators__images img {
			display: block;
			width: auto;
			max-width: 100%;
			height: auto;
			filter: grayscale(1);
			transition: filter 0.3s, opacity 0.3s;
			will-change: filter, opacity;
		}
.operators__images img:not(:nth-child(2)) {
			opacity: 0.5;
		}
.operators__images img:nth-child(2) {
			opacity: 0.8;
		}
.operators__images img:hover, .operators__images img:focus {
			filter: grayscale(0);
			opacity: 1;
		}
.tour-search-heading {
	color: var(--black);
	font-size: var();
}
.tour-search-heading__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
.tour-search-heading__title {
		display: inline-flex;
		flex-wrap: wrap;
		justify-content: center;
		font-size: var(--tour-search-heading__title__fz);
		font-weight: 700;
	}
.tour-search-heading__title span {
			padding-right: 0.25ch;
			padding-left: 0.25ch;
			white-space: nowrap;
		}
.tour-search-heading__subtitle {
		display: inline-flex;
		flex-wrap: wrap;
		justify-content: center;
		font-size: var(--tour-search-heading__subtitle__fz);
		font-weight: 500;
	}
.tour-search-heading__subtitle span {
			padding-right: 0.25ch;
			padding-left: 0.25ch;
			white-space: nowrap;
		}
.tour-search-heading__buttons {
		display: flex;
		align-items: center;
	}
.tour-search-heading__button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		border: none;
		border-radius: 0;
		-webkit-user-select: none;
		        -moz-user-select: none;
		         -ms-user-select: none;
		     user-select: none;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.tour-search-heading__button:hover svg, .tour-search-heading__button:focus svg {
			opacity: 1;
		}
.tour-search-heading__button svg {
			opacity: 0.3;
			transition: opacity 0.3s, transform 0.3s;
			will-change: opacity, transform;
		}
.search-country__wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
.search-country__img {
	display: flex;
	grid-area: 1 / 1 / -1 / -1;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.search-country__img img,
	.search-country__img picture {
		display: block;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
		-o-object-position: center;
		   object-position: center;
	}
.search-country__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	grid-area: 1 / 1 / -1 / -1;
}
.search-country__item {
	display: grid;
	align-items: end;
	width: 100%;
	background-color: var(--dark-blue);
}
.search-country__list-resorts {
		margin-top: auto;
	}
.search-country__item-resorts {
		color: white;
		font-family: var(--font);
		font-size: 16px;
		font-weight: 500;
		line-height: 1.8;
		-moz-column-break-inside: avoid;
		     break-inside: avoid;
	}
.search-country__link-resorts {
		text-decoration: none;
		white-space: nowrap;
		transition: opacity 0.3s;
		will-change: opacity;
	}
.search-country__link-resorts,
		.search-country__link-resorts:hover,
		.search-country__link-resorts:focus {
			color: white;
	max-width: 120px;
	white-space: inherit;
		}
.search-country__link-resorts:hover {
			opacity: 0.7;
		}
.search-country__list {
	margin-bottom: 0;
}
.search-country__price {
	color: #ffffff;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}
.search-country__subtitle {
	display: block;
	margin-top: 0;
	color: #ffffff;
	font-family: var(--font);
	font-weight: 700;
	line-height: 1.4;
}
.search-country__subtitle a {
		color: #ffffff;
		text-decoration: none;
		transition: opacity 0.3s;
		will-change: opacity;
	}
.search-country__subtitle a:hover, .search-country__subtitle a:focus {
			opacity: 0.7;
		}
.search-country__title {
	display: block;
	margin-top: 0;
	color: #000000;
	font-family: var(--font);
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
}
.hotel-header-bar {
	display: flex;
	align-items: center;
	height: var(--hotel-header-bar__height, 80px);
	margin-top: var(--hotel-header-bar__mt, 60px);
	background-color: white;
	box-shadow: var(--box-shadow);
}
.hotel-header-bar__links {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 100%;
		margin-bottom: 0;
		padding-inline: 20px;
	}
.hotel-header-bar__links a {
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 20px;
			font-size: 18px;
			font-weight: 600;
			text-decoration: underline;
			-webkit-text-decoration-color: transparent;
			        text-decoration-color: transparent;
			white-space: nowrap;
			transition: -webkit-text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
			will-change: text-decoration-color;
		}
.hotel-header-bar__links a,
			.hotel-header-bar__links a:hover,
			.hotel-header-bar__links a:focus {
				color: var(--black);
			}
.hotel-header-bar__links a:hover {
				-webkit-text-decoration-color: currentColor;
				        text-decoration-color: currentColor;
			}
.hotel-header-bar__text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding-inline: 20px;
	}
.hotel-header-bar__text strong, .hotel-header-bar__text strong span {
			color: var(--dark-blue);
			font-size: 20px;
			font-weight: 700;
			white-space: nowrap;
	opacity: 1;
		}
.hotel-header-bar__text span {
			color: var(--black);
			font-size: 16px;
			font-weight: 400;
			white-space: nowrap;
			opacity: 0.6;
		}
.hotel-header-bar__buttons {
		display: flex;
		align-items: center;
		gap: 16px;
		padding-inline: 40px;
	}
.hotel-header-bar__buttons .button {
			height: 58px;
			white-space: nowrap;
		}
.desktop-searh-hotel {
	display: flex;
	width: 100%;
	gap: 32px;
}
.desktop-searh-hotel__input {
		flex-grow: 1;
		border-width: 0 0 1px 0;
		color: var(--black);
		font-size: 18px;
		min-height: 50px
	}
.desktop-searh-hotel__submit {
		--outline-color: var(--brand-orange);
	}
.desktop-search-main {
	display: grid;
	grid-template-columns: var(
		--desktop-search-main__gtc,
		repeat(6, var(--desktop-search-main__fr, auto))
	);
	align-items: center;
}
.desktop-search-main__item {
		display: flex;
		flex-grow: 1;
		justify-content: center;
		width: 100%;
		min-height: 40px;
	}

		.desktop-search-main__item .custom-datepicker,
		.desktop-search-main__item .select-nights,
		.desktop-search-main__item .select-persons {
			display: inline-flex !important;
			align-items: center;
			width: 100% !important;
		}
.desktop-search-main__item .custom-select .btn,
		.desktop-search-main__item .custom-datepicker,
		.desktop-search-main__item .select-nights__trigger,
		.desktop-search-main__item .select-persons__trigger {
			display: inline-flex !important;
			align-items: center;
			justify-content: space-between;
			width: 100% !important;
			min-height: 56px;
			padding: 6px var(--desktop-search-main__item__pi, 44px);
		}
.desktop-search-main__item .custom-select--country {
			min-width: auto;
		}
.desktop-search-main__item .custom-select .filter-option {
	width: auto !important;
}
.desktop-search-main__item,
		.desktop-search-main__item .filter-option-inner-inner {
			color: var(--black);
			font-size: var(--desktop-search-main__item__fz, 16px);
			font-weight: var(--desktop-search-main__item__fw, 400);
		}
.desktop-search-main__item + .desktop-search-main__item {
			border-left: 1px solid #e2e2e2;
		}
.desktop-search-main .icon-arrow-down {
		margin-left: 8px;
	}
.desktop-search {
	display: var(--desktop-search__display, block);
}
.desktop-search .nav-tabs {
		border-bottom: none;
	}
.desktop-search .nav-item {
		z-index: 1;
		position: relative;
	}
.desktop-search .nav-link {
		display: flex;
		align-items: center;
		min-height: 54px;
		padding: 4px 44px;
		border: 1px solid var(--nav-tabs__bcolor) !important;
		border-top-right-radius: 0;
		border-top-left-radius: 0;
		background-color: var(--nav-tabs__bgcolor);
		color: var(--nav-tabs__color);
		font-size: 16px;
		font-weight: 600;
	}
.desktop-search .nav-link.active {
			--nav-tabs__bcolor: transparent;
			--nav-tabs__bgcolor: white;
			--nav-tabs__color: var(--black);
			--nav-tabs__city__color: var(--dark-blue);
			--nav-tabs__city__icon__color-inversion: 0;
			border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
		}
.desktop-search .nav-link:not(.active) {
			--nav-tabs__bcolor: rgba(255, 255, 255, 0.4);
			--nav-tabs__bgcolor: var(--dark-blue);
			--nav-tabs__color: white;
			--nav-tabs__dropdown-link__color: white;
		}
.desktop-search .tab-content {
		box-shadow: 0 6px 59px rgba(0, 0, 0, 0.2);
		color: var(--black);
	}
.desktop-search .tab-pane {
		min-height: 104px;
		padding: 24px;
		background-color: white;
	}
.mobile-fixed-buttons {
	display: grid;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: white;
	box-shadow: 0px 0px 12px rgb(0 0 0 / 20%);
}
.mobile-fixed-buttons__list {
		display: inline-grid;
		grid-row-gap: 1px;
		grid-template-columns: repeat(3, 1fr);
		justify-content: center;
		justify-items: center;
		width: auto;
		margin-bottom: 0;
		padding-left: 0;
		list-style: none;
	}


.load-spin-operators{
	display: inline-grid;
	grid-row-gap: 1px;
	grid-template-columns: repeat(4, 1fr);
	justify-content: center;
	justify-items: center;
}
.load-spin-operators .load-oper-wrap img{
	max-width: 100%;
	vertical-align: bottom;
}
.load-oper-wrap{
	padding: 10px;
}

.other-tours .load-spin-operators{
	background: white;
	margin-top: 10px;

	grid-template-columns: repeat(8, 1fr);
}


.other-tours .load-oper-logo{
	min-height: 30px;
	line-height: 5.5em;
}

.other-tours .grey-body{
	background-color: var(--bg);
}

.load-oper-status {
	background: white;
	margin: 20px;
	display: none;
}
.load-oper-logo {
	min-height: 65px;
	line-height: 10em;
}
.search-load-bar{text-align: center;}

.mobile-fixed-buttons__item {
		width: 100%;
	}
.mobile-fixed-buttons__item + .mobile-fixed-buttons__item {
			border-left: 1px solid #c9cedb;
		}
.mobile-fixed-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 0;
	background-color: white;
	text-align: center;
	-webkit-appearance: none;
	        -moz-appearance: none;
	     appearance: none;
}
.mobile-fixed-button span {
		color: var(--black);
		font-size: 11px;
		font-weight: 500;
	}
.mobile-fixed-button small {
		font-size: 8px;
		font-weight: 500;
		opacity: 0.5;
	}
.mobile-fixed-button svg {
		color: var(--brand-blue);
	}
.mobile-searh-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-right: auto;
	margin-left: auto;
	padding: 8px 24px;
	border: 1px solid var(--light-blue);
	border-radius: 44px;
	color: var(--light-blue);
	-webkit-appearance: none;
	        -moz-appearance: none;
	     appearance: none;
	background-color: #37557D;
}
.mobile-searh-trigger__text {
		display: flex;
		flex-wrap: wrap;
		margin-left: 16px;
		color: white;
		-webkit-user-select: none;
		        -moz-user-select: none;
		         -ms-user-select: none;
		     user-select: none;
	}
.mobile-searh-trigger__text p{
	margin: 0;
}
.mobile-searh-trigger__text span{
	margin-left: 3px;
}
.mobile-searh-trigger__text p.margin-4{
	margin-left: 5px;
}
.mobile-searh-trigger__text a{
	color: white;
	text-decoration: underline !important;
	margin-left: 5px;
    font-weight: 600
}

.mobile-searh-trigger span {
		white-space: nowrap;
	}
.mobile-searh-trigger span:not(:last-child) {
			margin-right: 8px;
		}
.mobile-searh-trigger svg {
		flex-shrink: 0;
	}
.mobile-search {
	display: var(--mobile-search__display, grid);
}
.mobile-search--offcanvas {
		--mobile-search__bgc: transparent;
		--mobile-search__padding: 0;
	}
.mobile-search__group {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
.mobile-search__group--column {
			flex-direction: column;
		}
.mobile-search__group--column > * {
				width: 100%;
			}
.mobile-search__group--full-width {
			width: calc(100% + 32px);
			margin-right: -16px;
			margin-left: -16px;
		}
.mobile-search__item {
		display: flex;
	}
.mobile-search__item:not(:last-child) {
			border-bottom: 1px solid #c9cedb;
		}
.mobile-search__trigger {
		--outline-offset: -2px;
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 44px;
		padding: 12px;
		border: none;
		outline: none;
		background-color: white;
	}
.mobile-search__item-title {
		display: flex;
		align-items: center;
		width: 100%;
	}
.mobile-search__item-title span {
			margin-left: 4px;
		}
.mobile-search__item-title--collapse {
			margin-left: -12px;
			color: var(--dark-blue);
			font-weight: 500;
		}
.mobile-search__item-title--collapse span {
				margin-left: 0;
			}
.mobile-search__item-arrow {
		margin-left: auto;
	}
.mobile-search svg {
		opacity: 0.5;
	}
.offcanvas-extended-search {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 8px;
	margin-bottom: -24px;
	padding: 16px;
	background-color: white;
}
.booking-order-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 60px;
	padding: 16px;
	border: 1px solid #c9cedb;
	border-radius: 2px;
	color: #313131;
}
.booking-order-card dl {
		display: grid;
		grid-gap: 12px;
		grid-template-columns: var(--booking-order-card__dl__gtc, 100%);
		margin-bottom: 12px;
	}
.booking-order-card dt {
		font-size: var(--booking-order-card__dt__fz, 12px);
		font-weight: 600;
	}
.booking-order-card mark {
		padding: 4px 8px;
		background-color: var(--booking-order-card__mark__bgc, white);
		color: var(--booking-order-card__mark__c, #313131);
		font-weight: var(--booking-order-card__mark__fw, 500);
		opacity: var(--booking-order-card__mark__o, 1);
	}
.booking-order-card .status-info {
		--booking-order-card__mark__c: var(--dark-blue);
		--booking-order-card__mark__fw: 700;
	}
.booking-order-card .status-pending {
		--booking-order-card__mark__o: 0.8;
	}
.booking-order-card .status-disabled {
		--booking-order-card__mark__o: 0.5;
	}
.booking-order-card > a {
		/*color: var(--dark-blue);*/
		font-size: 16px;
		font-weight: 600;
	}
.booking-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	color: var(--black);
}
.booking-text:last-child {
		margin-bottom: 40px;
	}
.booking-text h2 {
		margin-bottom: 24px;
		font-size: var(--booking-text__title__fz, 14px);
		font-weight: 600;
	}
.booking-text p:not([class]) {
		margin-bottom: 12px;
		font-size: var(--booking-text__p__fz, 14px);
	}
.booking-text small {
		margin-bottom: 12px;
		font-size: 14px;
	}
.booking-text a {
		--link-with-icon__display: inline;
		color: var(--dark-blue);
		font-weight: 700;
	}
.booking-text a:not(.link-with-icon) {
			text-decoration: underline;
			-webkit-text-decoration-color: transparent;
			        text-decoration-color: transparent;
			transition: -webkit-text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s;
			transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
			will-change: text-decoration-color;
		}
.booking-text a:not(.link-with-icon):hover, .booking-text a:not(.link-with-icon):focus {
				-webkit-text-decoration-color: currentColor;
				        text-decoration-color: currentColor;
			}
.booking-text a.link-with-icon {
			--link-with-icon__span__ml: 4px;
			margin-left: 8px;
			white-space: nowrap;
		}
.booking-text__price {
		color: var(--black);
		font-size: var(--booking-text__price__fz, 18px);
		font-weight: 700;
	}
.booking-text__price span {
			margin-right: 32px;
		}
.booking-steps-subtitle {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	font-size: var(--booking-steps-list__fz, 16px);
	font-weight: 600;
}
.booking-steps-subtitle li {
		display: flex;
		position: relative;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		margin-right: 8px;
		margin-left: 8px;
	}
.booking-steps-subtitle li:not(.active) {
			opacity: 0.5;
		}
.booking-steps-subtitle li:not(:first-child)::before {
				display: block;
				position: absolute;
				top: 50%;
				left: -20px;
				width: 16px;
				height: 1px;
				background-color: white;
				content: '';
			}
.booking-steps-subtitle li:last-child::after {
				position: absolute;
				top: 50%;
				left: 50%;
				width: var(--booking-steps-list__circle__size, 24px);
				height: var(--booking-steps-list__circle__size, 24px);
				transform: translate(-50%, -50%);
				border: 1px solid white;
				border-radius: 50%;
				content: '';
			}
.booking-steps-subtitle a,
	.booking-steps-subtitle span {
		display: flex;
		justify-content: center;
		min-width: 16px;
		text-align: center;
	}
.booking-steps-subtitle a {
		color: currentColor;
		text-decoration: none;
		transition: opacity 0.3s;
		will-change: opacity;
	}
.booking-steps-subtitle a:hover, .booking-steps-subtitle a:focus {
			opacity: 0.7;
		}
.booking-description {
	position: relative;
	padding-top: var(--booking-description__p, 32px);
	padding-bottom: var(--booking-description__p, 32px);
}
.booking-description::before {
		position: absolute;
		top: 0;
		left: 50%;
		width: calc(100vw - var(--scrollbar-width, 0px));
		height: 100%;
		transform: translateX(-50%);
		background-image: linear-gradient(67deg, #394984 0%, #4578aa 100%);
		content: '';
	}
.booking-description__list {
		display: flex;
		z-index: 1;
		position: relative;
		flex-direction: column;
		margin-bottom: 0;
	}
.booking-description__item {
		display: flex;
		align-items: center;
		width: 100%;
	}
.booking-description__item:not(:last-child) {
			margin-bottom: 24px;
		}
.booking-description__item svg {
			flex-shrink: 0;
		}
.booking-description__item p {
			margin-bottom: 0;
			color: white;
			font-size: 16px;
		}
.flight-table {
	width: var(--fly-table__width, 100%);
}
.flight-table__desktop {
	}
.flight-table__mobile {
		margin-bottom: 32px;
		max-width: 526px;
	}
.booking-step-1 .vertical-form {
	--form-control__max-width: 526px;
	margin-left: 0;
}
.booking-step-1 .vertical-form label {
		margin-bottom: 10px;
	}
.booking-step-1 .vertical-form button {
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		margin-top: 14px;
	}
.flight-data {
	position: relative;
	left: 50%;
	width: calc(100vw - var(--scrollbar-width, 0px));
	transform: translateX(-50%);
	background-color: white;
}
.flight-data__wrapper {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		color: var(--black);
	}
.flight-data dl {
		display: flex;
		width: 100%;
		margin-bottom: 0;
		padding-top: var(--flight-data__wrapper__pb);
		padding-bottom: var(--flight-data__wrapper__pb);
	}
.flight-data dl:not(:last-child) {
			border-bottom: 1px solid rgb(50 75 134 / 43%);
		}
.flight-data dt {
		font-size: 14px;
		font-weight: 500;
		opacity: 0.6;
	}
.flight-data dd {
		display: flex;
		flex-direction: var(--flight-data__dd__fd, column);
		align-items: var(--flight-data__dd__ai, flex-start);
		margin-bottom: 0;
		font-size: 18px;
		font-weight: 600;
	}
.passport-data {
	--booking-item-button__mb: 0;
	width: 100%;
	padding: 12px var(--passport-data__pi, 12px);
	background-color: white;
	color: var(--black);
}
.passport-data fieldset {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
.passport-data fieldset:not(:last-child) {
			margin-bottom: 30px;
		}
.passport-data legend {
		font-size: 16px;
		font-weight: 700;
	}
.passport-data .form-groups-wrapper {
		display: grid;
		grid-gap: 24px;
		grid-template-columns: var(--passport-data__form-groups-wrapper__gtc, 100%);
		align-items: end;
		width: 100%;
	}
.passport-data .form-group {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
.passport-data label {
		margin-bottom: 12px;
		font-size: 14px;
		font-weight: 400;
	}
.passport-data .form-group__input-wrapper {
		display: flex;
		width: 100%;
	}
.passport-data .form-group__input-wrapper--select {
			position: relative;
		}
.passport-data .form-group__input-wrapper--select::after {
				display: block;
				position: absolute;
				right: 1px;
				bottom: 1px;
				width: 42px;
				height: calc(var(--input__min-height, 44px) - 2px);
				background-image: url(../img/icons/icon-arrow-down.svg);
				background-position: center;
				background-repeat: no-repeat;
				background-size: 13px 8px;
				content: '';
				pointer-events: none;
			}
.passport-data input,
	.passport-data select {
		display: flex;
		align-items: center;
		height: var(--input__min-height, 44px);
		padding: 8px var(--passport-data__input__p);
		border: 1px solid #d3daea;
		border-radius: 0;
		text-align: left;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.passport-data .form-group__input {
		text-transform: uppercase;
	}
.passport-data .form-group__input:not(:last-child) {
			border-right-width: 0;
		}
.passport-data .form-group__input:not(.passport-data .form-group__input--narrow) {
			flex-grow: 1;
			width: 100%;
		}
.passport-data .form-group__input--narrow {
			width: 60px;
			text-align: center;
		}
.passport-data select {
		width: 100%;
	}
.passport-data .collapse > * {
			margin-bottom: 30px;
		}
.booking-payment {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	color: var(--black);
}
.booking-payment h3 {
		margin-top: 12px;
		margin-bottom: 24px;
		font-size: 18px;
		font-weight: 600;
		text-align: center;
	}
.booking-payment__list {
		display: flex;
		width: calc(100% + 16px);
		margin-right: -8px;
		margin-left: -8px;
	}
.booking-payment__item {
		position: relative;
		width: var(--booking-payment__item__width, 100%);
		margin: 8px;
	}
.booking-payment label {
		z-index: 1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		cursor: pointer;
		opacity: 0;
	}
.booking-payment input {
		position: absolute;
		opacity: 0;
	}
input:checked + .booking-payment__box {
		--booking-payment__box__bc: var(--brand-green);
	}
.booking-payment__box {
		display: grid;
		grid-row-gap: 8px;
		grid-template-columns: 100%;
		grid-template-rows: 1fr 64px 1fr;
		align-items: center;
		justify-items: center;
		width: 100%;
		height: 160px;
		padding: 16px;
		border: 2px solid var(--booking-payment__box__bc, white);
		border-radius: 2px;
		background-color: white;
		box-shadow: var(--box-shadow);
		text-align: center;
		transition: border-color 0.3s;
		will-change: border-color;
	}
.booking-payment__box h4 {
			display: flex;
			flex-direction: column;
			align-items: center;
			margin-bottom: 0;
			font-size: 14px;
		}
.booking-payment__box h4 span {
				font-weight: 600;
			}
.booking-payment__box p {
			grid-area: 2/1/3/2;
			font-family: Montserrat;
			font-size: 17px;
			font-weight: 500;
		}
.booking-payment__box small {
			grid-area: 3/1/4/2;
			font-size: 12px;
			font-weight: 500;
			opacity: 0.4;
		}
.booking-payment__box img {
			grid-area: 2/1/3/2;
			max-width: 100%;
			max-height: 100%;
			-o-object-fit: contain;
			   object-fit: contain;
		}
.index-data {
	display: flex;
	flex-direction: var(--index-data__flex-direction, column);
	align-items: flex-start;
	margin-bottom: 0;
	font-family: var(--font);
	gap: var(--index-data__gap, 20px);
	margin-inline: var(--index-data__margin-inline, 0);
}
.index-data li {
		display: flex;
	}
.index-data dl {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		margin-bottom: 0;
		gap: var(--index-data__dl__gap, 8px);
	}
.index-data dt {
		color: var(--black);
		font-size: 18px;
		font-weight: 500;
		line-height: 1.4;
	}
.index-data dd {
		margin-bottom: 0;
		color: var(--dark-blue);
		font-size: var(--index-data__dd__fz, 38px);
		font-weight: 500;
		letter-spacing: var(--index-data__dd__letter-spacing, 5px);
		line-height: 1;
		white-space: nowrap;
	}
.index-data dd small {
			margin-left: 4px;
			font-size: 20px;
			letter-spacing: normal;
		}
.testimonials {
	--testimonials__author__width: 190px;
	--testimonials__gap: 24px;
	display: var(--testimonials__display, flex);
	flex-direction: column;
	width: var(--testimonials__width, 100%);
	gap: var(--testimonials__gap);
}
.testimonials__footer {
		display: flex;
		flex-direction: var(--testimonials__footer__fd, column);
		align-items: var(--testimonials__footer__ai, center);
		width: 100%;
		gap: var(--testimonials__footer__gap, 16px);
	}
.testimonials__controls {
		display: flex;
		flex-shrink: 0;
		align-items: flex-end;
	}
.testimonials__controls button {
			width: 44px;
			height: 44px;
			border: none;
			border-radius: none;
			background-color: transparent;
			background-image: none;
			transition: color 0.3s;
			will-change: color;
		}
.testimonials__controls button:hover, .testimonials__controls button:focus {
				color: var(--brand-green);
			}
.testimonials__prev-btn {
		transform: rotate(0.5turn);
	}
.testimonials__position {
		display: flex;
		align-items: baseline;
		justify-content: center;
		color: var(--black);
		margin-inline: 4px;
	}
.testimonials__position :where(span):not(:first-child) {
			font-size: 16px;
			opacity: 0.6;
		}
.testimonials__position :where(span):nth-child(2) {
			margin-inline: 4px;
		}
.testimonials__current-slide {
		min-width: 32px;
		font-size: 36px;
		text-align: center;
	}
.testimonials__social {
		display: flex;
		align-items: center;
	}
.testimonials__social p {
			display: block;
			margin-bottom: 0;
			color: var(--blue);
			font-size: 18px;
			font-weight: 700;
			line-height: 1.4;
		}
.testimonials__social a {
			white-space: nowrap;
		}
.testimonials__author {
		display: flex;
		flex-direction: column;
		flex-shrink: 0;
		align-items: center;
		width: var(--testimonials__author__width);
	}
.testimonials__author-img picture,
		.testimonials__author-img img {
			display: block;
			width: 122px;
			max-width: 100%;
			height: 122px;
			-o-object-fit: cover;
			   object-fit: cover;
			-o-object-position: center;
			   object-position: center;
			border-radius: 50%;
		}
.testimonials__author-data {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
.testimonials__author-data strong {
			color: var(--black);
			font-size: 18px;
			font-weight: 700;
			line-height: 1.4;
			text-align: center;
		}
.testimonials__author-data span:not(.testimonials__mark) {
			color: rgba(20, 20, 20, 0.8);
			font-size: 14px;
			font-weight: 500;
			line-height: 1.4;
			text-align: center;
		}
.testimonials__mark {
		display: flex;
		align-items: center;
		margin-top: -20px;
		padding: 4px 8px;
		border-radius: 2px;
		background-color: var(--blue);
		color: white;
		font-size: 14px;
		font-weight: 500;
		line-height: 1;
		text-align: center;
	}
.testimonials__mark::before {
			display: block;
			width: 16px;
			height: 16px;
			margin-right: 8px;
			background-image: url('../img/testimonials/testimonials-star.svg');
			background-position: center;
			background-repeat: no-repeat;
			background-size: 15px 14px;
			content: '';
		}
.testimonials__info {
		display: flex;
		padding: 24px;
		border-radius: 12px;
		background-color: white;
	}
.testimonials__text {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		margin-bottom: 0;
		gap: 20px;
	}
.testimonials__text p {
			display: block;
			margin-top: 0;
			margin-bottom: 0;
			color: var(--black);
			font-family: var(--font);
			font-size: 16px;
			font-weight: 500;
			line-height: 2;
		}
.testimonials__text cite {
			color: #1661ad;
			font-family: var(--font);
			font-size: 16px;
			font-style: normal;
			font-weight: 700;
			line-height: 2;
		}
.testimonials__text cite a {
				color: #1661ad;
			}
.testimonials__slider {
		width: 100%;
	}
.tour-search-main__sidebar {
	display: var(--tour-search-main__sidebar__display, flex);
	z-index: 1;
	flex-direction: column;
	width: 100%;
	padding-right: 16px;
	padding-left: 16px;
	background-color: white;
	box-shadow: var(--box-shadow);
}
.tour-search-main__content {
		display: grid;
		grid-row-gap: 30px;
		grid-template-columns: 100%;
		width: 100%;
	position: relative;
	}
.tour-search-main__button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 72px;
		border: none;
		border-radius: 2px;
		background-color: white;
		box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
		color: var(--dark-blue);
		font-size: 24px;
		font-weight: 500;
		-webkit-appearance: none;
		        -moz-appearance: none;
		     appearance: none;
	}
.select-nights {
	display: flex;
	align-items: center;
	min-height: 40px;
}
.select-nights__trigger {
		border: none;
		background-color: transparent;
	}
.select-nights__title {
		white-space: nowrap;
	}
.select-nights__dropdown-menu {
		width: 340px;
		height: 110px;
		padding: 24px;
		border-radius: 0;
		background-color: white;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
		text-align: center;
	}

.show-on-pc {display: none;}
.show-on-mobile {display: block;}

@media(max-width: 1659px){
	.other-tours .load-spin-operators{
		grid-template-columns: repeat(6, 1fr);
	}
}

@media (min-width: 480px) {
	.booking-payment__item {
			--booking-payment__item__width: calc(100% / 3)
	}
}

@media (min-width: 480px) and (max-width: 1023px) {
	.help-booking__info {
		--help-booking__info__ai: center;
		text-align: center
}.help-booking__phones {
		--help-booking__phones__fd: row;
		justify-content: center
}
	.help-booking__phones a {
			margin-right: 8px;
			margin-left: 8px
	}

	.load-spin-operators{
		grid-template-columns: repeat(3, 1fr);
	}

	.load-oper-logo{
		line-height: 5em;
	}

	.other-tours .load-spin-operators{
		grid-template-columns: repeat(6, 1fr);
	}

	.other-tours .load-oper-logo {
		line-height: 3.5em;
	}
}

@media (max-width: 880px){
	.other-tours .load-spin-operators{
		grid-template-columns: repeat(4, 1fr);
		align-items: center;
	}

	.other-tours .load-oper-logo {
		line-height: 2em;
	}
}


@media(max-width: 575px){
	.other-tours .load-spin-operators{
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
	}

	.other-tours .load-oper-logo {
		line-height: 2em;
	}
}

@media (min-width: 480px) and (max-width: 1279px);
@media (min-width: 640px) {
	.offcanvas.offcanvas-bottom {
			right: auto;
			left: calc(50% - 270px);
			max-width: 540px
	}
	.footer-content__wrapper {
			--footer-content__display: grid;
			grid-template-areas: var(--footer-content__gta);
			grid-template-columns: var(--footer-content__gtc)
	}
	.hotel-detail-offcanvas hr[data-visible='false']
			~ .hotel-detail-offcanvas__buttons
			.observer-container, 	.hotel-detail-offcanvas hr[data-visible='true']
	~ .hotel-detail-offcanvas__buttons
	.observer-container-new {
				max-width: 540px
		}
	.booking-card__info-list div {
				align-items: baseline;
				justify-content: space-between
		}
	.booking-card__info-list dt {
				margin-right: 8px
		}
	.booking-card__info-list dd::before {
					flex-grow: 1;
					height: 1px;
					margin-right: 8px;
					background-color: #e5e5e6;
					content: ''
			}
	.document-cards__item {
			--document-cards__item__fb: calc(50% - 16px)
	}
}
@media (min-width: 640px) and (max-width: 1023px) {
	.footer-content__wrapper {
			--footer-content__gtc: repeat(2, calc(50% - 32px));
			--footer-content__gta: 'footerContentTours footerContentAbout'
				'footerContentAddress footerContentSocial'
	}
}
@media (min-width: 768px) {
	.show-on-mobile {display: none;}
	.show-on-pc {display: block;}
	.wrap-hot .hot-row {
		display: inline-flex;
		justify-content: flex-start;
	}
	.wrap-hot .hot-row span {
		display: inline-flex;
		align-items: center;
	}
.hidden-768-and-more {
		display: none !important
}
.modal-rooms {
		--modal-rooms__gtc: repeat(2, 1fr)
}
	.footer-content__tours {
			grid-area: footerContentTours
	}
	.footer-content__about {
			grid-area: footerContentAbout
	}
	.footer-content__address {
			grid-area: footerContentAddress
	}
	.footer-content__address > a {
				margin-top: 44px
		}
	.footer-content__social {
			grid-area: footerContentSocial
	}.button {
		--button__pi: 32px
}.headline__buttons {
		grid-column-gap: 24px;
		grid-template-columns: repeat(2, auto)
}.booking-steps-content [data-item] {
			pointer-events: none
	}
		.booking-steps-content [data-item]::after {
				content: none
		}
				.booking-steps-content .collapse--modified:not(.show) {
					display: block;
				}.modal-hotel-card {
		--hotel-card__gtc: repeat(2, calc(50% - 8px))
}.video-button {
		--size: 126px
}.mobile-button-phones {
		display: none
}.booking-card {
		--booking-card__p: 30px
}
	.booking-card__info-list {
			--booking-card__info-list__fz: 16px
	}
	.booking-card__small {
			--booking-card__price__small__fz: 18px
	}
	.booking-card__price {
			--booking-card__price__p__fz: 35px
	}
	.booking-card__link {
			--booking-card__price__link__fz: 16px
	}
	
	.tour-card--hot::after {
			top: 12px;
			right: 12px
	}.tour-card {
		display: grid;
		padding: 24px 20px 20px;
		gap: 16px
}.tour-card .button {
			grid-area: button
	}.tour-card__data {
			grid-area: data
	}
	.tour-card__data-item {
			font-size: 16px
	}.tour-card__img {
			grid-area: img
	}.tour-card__price {
			grid-area: price
	}.tour-card__subtitle {
			grid-area: subtitle
	}
	.tour-card__location {
			font-size: 18px
	}.tour-card__title {
			grid-area: title
	}.booking-step-1 {
		--input__min-height: 56px
}
	.booking-step-1__title {
			--booking-step-1__title__fz: 26px;
			--booking-step-1__title__mb: 16px
	}
	.booking-step-1__text {
			--booking-step-1__text__fz: 20px;
			--booking-step-1__text__mb: 40px
	}

	.booking-item-button h2 {
			--booking-item-button__fz: 20px
	}

	.booking-item-button h3 {
			--booking-item-button__fz: 18px
	}
		.about-hotel-features__list h2 {
				--about-hotel-features__title__fz: 22px;
				--about-hotel-features__title__mb: 8px
		}
		.about-hotel-features__list dt,
		.about-hotel-features__list dd {
				--about-hotel-text__text__fz: 16px;
				--about-hotel-text__text__mb: 8px
		}
	.about-hotel-text h2 {
			--about-hotel-text__title__fz: 22px;
			--about-hotel-text__title__mb: 8px
	}
	.about-hotel-text p {
			--about-hotel-text__text__fz: 16px;
			--about-hotel-text__text__mb: 8px
	}
	.hotel-media__main-photo {
			width: 100%
	}
	.how-to-book__title {
			--how-to-book__title__mb: 64px
	}
	.how-to-book-item p {
			--how-to-book-item__text__fz: 16px;
			--how-to-book-item__text__mb: 24px
	}
	.how-to-book-item li {
			--how-to-book-item__list-item__fz: 16px
	}
	.faq__title {
			--faq__title__mb: 48px
	}
	.faq-content__item h3 {
				--faq__content__title__mb: 32px
		}
	.faq-content__button h4 {
				--faq-button__fz: 20px
		}
	.faq-content__collapse-content {
			--faq-collapse-content__p: 16px
	}
	.faq-content__collapse-content p,
		.faq-content__collapse-content li {
				--faq-collapse-content__fz: 18px
		}.help-booking {
		--help-booking__p: 32px
}.index-info__wrapper {
			--index-info__wrapper__gap: 64px
	}
	/*.index-hot-tours__country-selection {
			gap: 4px
	}*/
	.index-hot-tours__country-selection-title,
	.index-hot-tours__trigger,
	.index-hot-tours .filter-option-inner-inner {
			font-size: 24px;
			vertical-align: middle;
	}.index-hot-tours__social {
			display: flex;
			align-items: center
	}.index-hot-tours__list {
			--index-hot-tours__list__display: grid
	}
	.tour-search-heading__subtitle:last-of-type {
				margin-bottom: 40px
		}.search-country__info {
		padding: 30px
}.search-country__list-resorts {
			width: 100%;
			-moz-column-gap: 32px;
			     column-gap: 32px;
			-moz-column-count: 3;
			     column-count: 3;
			-moz-column-width: 90px;
			     column-width: 90px
	}.search-country__list {
		display: grid;
		grid-auto-rows: -webkit-max-content;
		grid-auto-rows: max-content;
		width: 100%
}.search-country__price {
		display: none
}.search-country__subtitle {
		margin-bottom: 20px
}.search-country__title {
		margin-bottom: 40px
}
	.booking-order-card dl {
			--booking-order-card__dl__gtc: 1fr auto
	}
	.booking-order-card dt {
			--booking-order-card__dt__fz: 16px
	}
	.booking-order-card dd {
			text-align: right
	}
	.booking-text h2 {
			--booking-text__title__fz: 20px
	}
	.booking-text p:not([class]) {
			--booking-text__p__fz: 16px
	}
	.booking-text__price {
			--booking-text__price__fz: 27px
	}.booking-steps-subtitle {
		--booking-steps-list__circle__size: 30px;
		--booking-steps-list__fz: 24px
}.booking-description {
		--booking-description__p: 64px
}
	.booking-description__item svg {
				margin-right: 40px
		}
	.flight-data__wrapper {
			--flight-data__wrapper__pb: 32px
	}.passport-data {
		--input__min-height: 56px;
		--passport-data__pi: 24px
}
	.passport-data .form-groups-wrapper {
			--passport-data__form-groups-wrapper__gtc: repeat(2, calc(50% - 12px))
	}
	.passport-data input,
	.passport-data select {
			--passport-data__input__p: 16px
	}.testimonials {
		--testimonials__display: grid;
		grid-template-columns: var(--testimonials__author__width) calc(
				100% - var(--testimonials__author__width) - var(--testimonials__gap)
			);
		grid-template-rows: 280px 204px
}.testimonials__footer {
			--testimonials__footer__fd: row;
			--testimonials__footer__ai: flex-end;
			--testimonials__footer__gap: var(--testimonials__gap);
			z-index: 1;
			grid-area: 2/1/3/3;
			margin-bottom: 64px
	}.testimonials__controls {
			justify-content: center;
			width: var(--testimonials__author__width)
	}.testimonials__social {
			width: 100%;
			max-width: 640px;
			height: 140px;
			margin-left: auto;
			padding: 8px 32px 8px 48px;
			transform: translateX(32px);
			border-radius: 2px;
			background-color: #ffffff;
			box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
			gap: 24px
	}.testimonials__slide {
			display: grid;
			grid-template-columns: var(--testimonials__author__width) calc(
					100% - var(--testimonials__author__width) - var(--testimonials__gap)
				);
			align-items: start;
			gap: var(--testimonials__gap)
	}.testimonials__author {
			margin-top: 64px
	}.testimonials__info {
			position: relative;
			width: calc(100% - 44px);
			margin-top: 64px;
			border-bottom-left-radius: 0
	}
		.testimonials__info::before {
				z-index: -1;
				position: absolute;
				top: -64px;
				left: -64px;
				width: calc(100% + 108px);
				height: calc(100% + 320px);
				border-radius: 2px;
				background-color: white;
				content: ''
		}
	.testimonials__text p {
				display: -webkit-box;
				overflow: hidden;
				/* autoprefixer: ignore next */
				-webkit-box-orient: vertical;
				-webkit-line-clamp: 3
		}.testimonials__slider {
			grid-area: 1/1/3/3
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.site-header--height-limitation {
			--header__cover__height-limitation: 100px
	}.index-hot-tours__social {
			flex-direction: column;
			gap: 16px;
			padding-top: 12px;
			padding-bottom: 8px
	}.index-hot-tours__social-list {
			margin-left: -14px;
			gap: 48px
	}
		.index-hot-tours__social-list a {
				gap: 12px
		}.tour-search-heading {
		--tour-search-heading__title__fz: 24px;
		--tour-search-heading__subtitle__fz: 18px
}

		 .planshet{
			 display: none;
		 }

}
@media (min-width: 768px) and (max-width: 1279px) {
:root {
		--container__pi: 64px
}.site-header {
		--site-header__gap: 60px
}.site-header__content {
			--header__wrapper__gtc: 1fr auto auto;
			--header__wrapper__gta: 'headerLogo desktopButtonPhones mobileButtons'
				'headerMenuGroup headerMenuGroup headerMenuGroup'
	}.menu-is-toggled {
		--mobile-phones-and-links__display: flex
}.headline__section-overline {
		font-size: 18px;
		letter-spacing: 2.3px
}.headline__section-title {
		font-size: 24px
}
	.site-header-title h1 {
			--header-title__fz: 28px
	}.tour-cost {
		padding-right: 40px;
		padding-left: 40px
}

.header-menu {
		--header-menu__gap: 36px
}.site-header__menu-group {
			--header__menu-group__gtc: repeat(2, 280px);
			--header__menu-group__gtr: repeat(3, auto);
			--header__menu-group__gta: 'headerMenu mobilePhonesAndLinks'
				'mobileLogin mobilePhonesAndLinks'
				'mobileConsultation mobilePhonesAndLinks';
			--header__menu-group__pt: 200px;
			grid-column-gap: 80px;
			justify-content: space-between;
			justify-items: start
	}

.mobile-consultation > *:not(.hidden-1280-and-more) {
			display: none
	}.tour-card {
		grid-template-areas:
			'img'
			'subtitle'
			'title'
			'price'
			'data'
			'button'
}.tour-card__img {
			gap: 8px
	}
	.tour-card__sum small {
				margin-left: 12px;
				font-size: 16px
		}
	.tour-card__sum span {
				font-size: 20px
		}.tour-card__title {
			font-size: 18px
	}.help-booking {
		--help-booking__shadow-sizes: 0 20px 40px
}
	.help-booking__phones a {
			font-size: 18px
	}
	.tour-search-heading__buttons {
			width: 100%;
			border-radius: 2px;
			background-color: white;
			box-shadow: 0px 2px 7px #0000001a
	}
	.tour-search-heading__button {
			flex-basis: 50%;
			flex-grow: 1;
			color: var(--dark-blue);
			font-size: 18px;
			font-weight: 500
	}
	.tour-search-heading__button:not(:first-child) {
				border-left: 1px solid #d5d5d5
		}.search-country__item {
		min-height: 300px
}.search-country__list {
		grid-gap: 16px;
		grid-template-columns: repeat(2, calc((100% - 16px) / 2))
}.search-country__subtitle {
		font-size: 21px
}.search-country__title {
		font-size: 24px
}
}
@media (min-width: 768px) and (max-width: 1439px) {
	.how-to-book__title {
			--how-to-book__title__fz: 28px
	}
	.how-to-book-item h3 {
			--how-to-book-item__title__mb: 24px;
			--how-to-book-item__title__fz: 24px
	}
	.faq__title {
			--faq__title__fz: 28px
	}
	.faq-content__item h3 {
				--faq__content__title__fz: 24px
		}.autobooking__list {
			padding: 56px 72px
	}
	.autobooking__item p {
				font-size: 16px
		}.help-booking__text {
		font-size: 16px
}.index-hot-tours__info {
			gap: var(--wrapper-standard__padding-block)
	}.index-hot-tours__social {
			box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
			border-radius: 2px;
			background-color: white
	}.index-hot-tours__list {
			grid-template-columns: repeat(
				auto-fill,
				minmax(var(--hot-tours-card__min-width, 310px), 1fr)
			)
	}
	.flight-data dt {
			min-width: 140px;
			margin-right: 32px;
			text-align: right
	}
}
@media (min-width: 768px) and (max-width: 1659px) {.help-booking__title {
		font-size: 24px
}.index-hot-tours__social {
			width: 100%;
			padding-left: 16px;
			padding-right: 16px
	}.index-hot-tours__list {
			justify-content: center;
			justify-items: center;
			gap: 16px
	}
}
@media (min-width: 768px) and (max-width: 1919px);
@media (min-width: 1023px) and (max-width: 1439px) {
	.autobooking__item:nth-child(3n + 3) {
			grid-column: 1 / -1
	}
}
@media (min-width: 1024px) {
.hidden-1024-and-more {
		display: none !important
}
	.site-header:not(.site-header--height-limitation,.site-header--height-limitation--1024-and-more) {
			padding-bottom: var(--site-header__pb, 60px)
	}
	.site-header--height-limitation--hotel {
			--site-header__pb: 8px
	}
	.site-header--height-limitation .site-header__cover,
	.site-header--height-limitation--1024-and-more .site-header__cover {
			--site-header__cover__height: calc(
				var(--header__height-limitation__min-height) -
					var(--header__cover__height-limitation)
			)
	}.stars-holder {
		--stars-holder__fz: 18px
}

.litepicker {
		transform: translate(var(--litepicker__translate__X, 0px), 16px)
}

.litepicker .container__months {
			border: 1px solid rgba(0, 0, 0, 0.15);
			border-radius: 0
	}
	.site-header-title super {
			--site-header-title__super__fz: 18px
	}.tour-cost {
		justify-content: center
}
	.tour-cost__title {
			margin-right: 16px;
			margin-bottom: 0;
			font-size: 16px
	}
	.tour-cost__list li {
				padding-right: 8px;
				padding-left: 8px
		}
	.tour-cost__list span {
				margin-left: 8px;
				font-size: 16px
		}.booking-steps-content__wrapper {
			--booking-steps-content__wrapper__grg: 40px
	}
	.modal-hotel-card__data h3 {
				--hotel-card__title__fz: 18px
		}
	.booking-card__mark {
			grid-row: 1/3
	}.price-card {
		--price-card__padding-block: 36px;
		--price-card__padding-inline: 32px;
		--price-card__gap: 24px 60px;
		--price-card__ai: start
}
	.price-card__button-desktop {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			padding: 16px 40px;
			border-radius: 2px;
			background-color: var(--brand-orange);
			text-align: center
	}
			.price-card__button-desktop,
			.price-card__button-desktop:hover,
			.price-card__button-desktop:focus {
				color: white;
				text-decoration: none;
			}
			.button-desktop{
				display: inline-block;
			}
	.price-card__button-mobile, .button-mobile {
			display: none
	}
	.price-card__button-mobile ul {
				display: none
		}
	.price-card__button-mobile strong {
				display: none
		}.price-card__fly {
			display: grid;
			grid-column-gap: 20px;
			grid-template-columns: 1fr auto;
			align-items: baseline;
				 grid-row-gap: 10px;
	}
	.price-card__fly-title-item dt {
				--price-card__fly-title-item__dt__fz: 18px
		}
	.price-card__fly-title-item dd {
				--price-card__fly-title-item__dd__fz: 14px
		}
	.price-card__operator-price {
			display: flex;
			align-items: flex-end;
			margin-left: 20px
	}
		.price-card__title h3 {
				--price-card__title__fz: 20px;
				align-items: baseline
		}
		.price-card__title h3 small {
					--price-card__title__small__fz: 18px;
					margin-left: 0.5ch
			}
	.price-card p {
			display: flex;
			align-items: center;
			margin-bottom: 0;
			color: var(--black);
			font-size: 14px;
			font-weight: 400;
			opacity: 0.8
	}
	/*.search-tour-card--hot .search-tour-card__img::after {
				left: 5px
		}*/
	.search-tour-card {
		--search-tour-card__gg: 16px 24px;
		--search-tour-card__gtc: 296px 1fr auto;
		grid-template-areas:
			'searchTourCardImg searchTourCardReview searchTourCardData'
			'searchTourCardImg searchTourCardHeading searchTourCardData'
			'searchTourCardImg searchTourCardFeatureList searchTourCardData'
}.search-tour-card__data {
			--search-tour-card__data__ai: flex-end;
			position: relative;
			grid-area: searchTourCardData;
			text-align: right
	}
		.search-tour-card__data::before {
				position: absolute;
				top: -20px;
				left: -12px;
				width: 1px;
				height: calc(100% + 40px);
				background-color: #e4e7ed;
				content: ''
		}
	.search-tour-card__price {
			flex-direction: column;
			align-items: flex-end
	}
	.search-tour-card__current-price {
			--search-tour-card__current-price__fz: 28px
	}
	.search-tour-card__includes {
			flex-direction: column
	}.search-tour-card__feature-list {
			grid-area: searchTourCardFeatureList
	}.search-tour-card__heading {
			--search-tour-card__heading__fd: column;
			grid-area: searchTourCardHeading
	}
	.search-tour-card__location {
			--search-tour-card__location__fz: 18px
	}.search-tour-card__img {
			grid-area: searchTourCardImg
	}
		.search-tour-card__img picture,
		.search-tour-card__img img {
				height: 100%
		}.search-tour-card__review {
			display: grid;
			grid-area: searchTourCardReview;
			grid-gap: 4px 8px;
			grid-template-columns: auto 1fr;
			align-items: center;
			justify-items: start;
			max-height: 40px
	}
	.search-tour-card__mark {
			grid-row: 1/3
	}
	.about-hotel-rooms__slider .glider {
				width: calc(100% + 16px);
				margin-right: -8px
		}
	.about-hotel-rooms__controls {
			--about-hotel-rooms__controls__display: flex;
			position: absolute;
			top: 0;
			left: 0;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			height: 100%;
			pointer-events: none
	}.hotel-card {
		--hotel-card__width: auto;
		--hotel-card__gtc: 136px calc(100% - 136px - 16px)
}
	.hotel-card__img {
			height: 120px
	}
	.hotel-card__data h3 {
				--hotel-card__title__fz: 18px
		}
	.hotel-media__wrapper {
			--hotel-media__wrapper__gtc: 2fr 1fr 1fr;
			grid-gap: var(--hotel-media__wrapper__gap, 16px)
	}.hotel-media__bottom-holder {
			position: absolute;
			right: var(--container__pi, 0);
			bottom: var(--wrapper-standard__padding-block);
			transform: translate(-20px, -20px)
	}
	.hotel-media__bottom-holder-item {
			--hotel-media__bottom-holder-item__pi: 20px
	}
	.hotel-media__bottom-holder-item span {
				--hotel-media__bottom-holder-item__span__fz: 14px;
				--hotel-media__bottom-holder-item__span__ml: 12px
		}
	.hotel-media__main-photo {
			grid-area: 1/1/3/2;
        max-height: 635px;
	}
	.hotel-media__photo {
			display: flex;
        max-height: 300px;
	}.hotel-media__top-holder {
			--hotel-media__top-holder__p: 16px;
			top: var(--wrapper-standard__padding-block);
			left: var(--container__pi, 0);
			transform: translate(20px, 20px)
	}
	.other-tours__title {
			--other-tours__title__mb: 24px;
			--other-tours__title__fz: 20px
	}
	.other-tours-filter__desktop {
			display: flex;
			width: 100%
	}
	.other-tours-filter__mobile {
			display: none
	}
	.other-tours-tab-content .tab-pane.active {
			grid-row-gap: 20px
	}
	.other-tours-tab-list .nav-link {
			--other-tours-tab-list__nav-link__height: 72px;
			--other-tours-tab-list__nav-link__width: 248px
	}
	.other-tours-tab-list .nav-link time {
				--other-tours-tab-list__nav-link__time__fz: 14px
		}
	.other-tours-tab-list .nav-link strong {
				--other-tours-tab-list__nav-link__strong__fz: 22px
		}
	.other-tours-tab-list .nav-link strong.is-hot::after {
						width: 16px;
						height: 21px;
						transform: translateY(-2px)
				}
	.best-price h2 {
			--best-price__title__mb: 24px;
			--best-price__title__fz: 20px
	}.how-to-book-item {
		--how-to-book-item__gtc: repeat(2, 1fr);
		margin-top: var(--margin-top, 0)
}
	.how-to-book-item__img {
			grid-area: 1/1/2/3
	}
	.how-to-book-item:nth-of-type(odd) .how-to-book-item__text {
			grid-area: 1/1/2/2
	}
	.how-to-book-item:nth-of-type(odd) .how-to-book-item__img {
			justify-self: end
	}
	.how-to-book-item:nth-of-type(even) .how-to-book-item__text {
			grid-area: 1/2/2/3
	}
	.how-to-book-item:nth-of-type(even) .how-to-book-item__img {
			justify-self: start;
			transform: translateX(-48px)
	}
	.faq-anchor-list ul {
			flex-wrap: wrap
	}
	.hotel-testimonials__wrapper {
			--hotel-testimonials__gtc: var(--hotel-testimonials__narrow-column)
				calc(
					100% - var(--hotel-testimonials__gcg) -
						var(--hotel-testimonials__narrow-column)
				)
	}
	.hotel-testimonials-title__rating {
			--hotel-testimonials-title__rating__mark: 80px
	}
	.hotel-testimonials-title__text h2 {
				--hotel-testimonials-title__text__fz: 22px
		}
	.hotel-testimonials-title__text small {
				--hotel-testimonials-title__small__fz: 16px
		}.help-booking {
		--help-booking__ai: center
}.desktop-search-main {
		margin-left: -24px
}
	.desktop-search .nav-item + .nav-item {
				margin-left: -1px
		}.mobile-search {
		--mobile-search__display: none
}.index-data {
		--index-data__gap: 36px
}
	.index-data dl {
			--index-data__dl__gap: 12px
	}
}
@media (min-width: 1024px) and (max-width: 1279px) {
	.site-header--height-limitation,
	.site-header--height-limitation--1024-and-more {
			--header__height-limitation__min-height: 532px;
			--header__cover__height-limitation: 100px
	}
	.site-header--height-limitation--hotel {
			--site-header__cover__height: 320px
	}
	.tour-cost__title {
			max-width: 160px
	}
			button.hotel-media__bottom-holder-item:nth-of-type(1) {
				border-right: 1px solid #e7ecfa;
			}
	.hotel-testimonials__wrapper {
			--hotel-testimonials__narrow-column: 250px
	}.index-data {
		--index-data__flex-direction: row;
		order: -1
}
}
@media (min-width: 1024px) and (max-width: 1439px) {
	.footer-content__wrapper {
			--footer-content__gtc: 1fr auto auto;
			--footer-content__gta: 'footerContentTours footerContentAbout footerContentAddress'
				'footerContentTours footerContentSocial footerContentSocial'
	}.autobooking__list {
			grid-template-columns: repeat(2, 310px);
			grid-column-gap: 132px
	}
	.help-booking__img picture,
	.help-booking__img img {
			flex-basis: 450px
	}.index-hot-tours__social {
			justify-content: center;
			gap: 20px
	}
		.index-hot-tours__social-list a {
				gap: 4px
		}.desktop-search-main {
		--desktop-search-main__gtc: repeat(3, 33%);
		row-gap: 24px
}
	.index-data dd {
			--index-data__dd__fz: 40px
	}
}
@media (min-width: 1024px) and (max-width: 1659px) {.price-card__fly {
			grid-area: 2/1/3/2
	}
	.price-card__operator-price {
			flex-direction: column-reverse
	}
	.price-card__operator-price strong {
				font-size: 24px
		}
	.price-card__operator-price sub {
				display: none
		}.about-hotel-features {
		--about-hotel-features__grg: 60px;
		--about-hotel-features__gtc: 1fr 440px
}
	.about-hotel-features__map-wrapper {
			--map__height: 200px
	}.other-tours-tab-list {
		--other-tours-tab-list__mt: 24px
}
	.other-tours-tab-list .nav-item + .nav-item {
				--other-tours-tab-list__nav-item__indent: 30px
		}.index-hot-tours__social-list {
			gap: 8px
	}
}
@media (min-width: 1024px) and (max-width: 1919px);
@media(max-width: 1280px){
	.hidden-1280-and-less{
		display: none !important;
	}
}
@media (min-width: 1280px) {
.hidden-1280-and-more {
		display: none !important
}
	.site-header--height-limitation,
	.site-header--height-limitation--1024-and-more {
			--header__cover__height-limitation: 24px
	}
	.site-header--height-limitation--hotel {
			--site-header__cover__height: 328px
	}
	.footer-top__list {
			--footer-top__list__display: grid
	}.mark-holder {
		--mark-holder__p: 14px;
		--mark-holder__radius: 15px;
		--mark-holder__fz: 16px
}.vertical-form {
		--textarea__min-height: 108px;
		--input__min-height: 56px;
		--vertical-form__gap: 32px;
		--form-control__max-width: 500px
}.headline__buttons {
		--headline__buttons__padding-block: 32px
}.headline__section-overline {
		font-size: 20px;
		letter-spacing: 2.5px
}
	.headline__section-overline:not(:last-child, :only-child) {
			margin-bottom: 16px
	}.headline__section-title {
		font-size: 36px
}.wrapper-standard {
		--wrapper-standard__padding-block: 32px
}.site-header__desktop-login {
			grid-area: desktopLogin
	}.site-header__menu {
			grid-area: headerMenu
	}

.header-menu {
		--header-menu__gap: 48px
}.site-header__menu-group {
			--header__menu-group__gta: 'headerMenu'
	}.site-header__menu-group {
			--header__menu-group__display: grid
	}.site-header__mobile-buttons {
			display: none
	}
	.booking-card__title {
			--booking-card__title__fz: 24px
	}
	.search-tour-card__button {
			margin-top: auto
	}
	.search-tour-card__title {
			--search-tour-card__title__fz: 24px
	}.tour-card {
		grid-template-areas:
			'img img img img'
			'subtitle subtitle subtitle price'
			'title title title price'
			'data data review review'
			'button button button button';
		grid-template-columns: 1fr 1fr auto auto
}.tour-card__img {
			gap: 16px
	}.tour-card__mark {
			grid-area: 1 / 2 / 3 / 3
	}.tour-card__price {
			align-items: flex-end;
			align-self: start;
			gap: 16px
	}
	.tour-card__sum {
			flex-direction: column;
			align-items: flex-end;
			gap: 16px
	}
	.tour-card__sum small {
				display: flex;
				align-items: center;
				min-height: 32px;
				font-size: 18px;
				text-align: right
		}
	.tour-card__sum span {
				font-size: 24px;
				text-align: right
		}
	.tour-card__persons {
			text-align: right
	}.tour-card__review {
			display: grid;
			grid-area: review;
			grid-gap: 4px 8px;
			grid-template-columns: 1fr auto;
			align-items: center;
			align-self: end
	}
	.tour-card__rating {
			grid-area: 1 / 1 / 2 / 2;
			align-self: end
	}
	.tour-card__reviews {
			grid-area: 2 / 1 / 3 / 2;
			align-self: start
	}.tour-card__title {
			font-size: 24px
	}.booking-steps {
		position: relative
}
	.booking-steps::before {
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 50px;
			background-color: var(--bg);
			content: ''
	}.booking-steps__list {
			--booking-steps__list__ai: flex-start
	}
	.booking-steps__item {
			--booking-steps__item__width: min(370px, 25%)
	}
	.booking-steps__item:not(:first-child) {
				position: relative
		}
	.booking-steps__item:not(:first-child)::before {
				position: absolute;
				top: 66px;
				left: 0;
				width: 140px;
				height: 1px;
				transform: translateX(-50%);
				background-color: white;
				content: '';
				opacity: 0.4
		}
	.booking-steps__item h3 {
				--booking-steps__item__title__mt: 32px;
				--booking-steps__item__title__fz: 16px
		}
	.booking-steps__item p {
				--booking-steps__item__text__fz: 16px
		}.booking-steps__title {
			--booking-steps__title__fz: 24px
	}
			.hotel-media__bottom-holder-item:not(:last-child) {
				border-right: 1px solid #e7ecfa;
			}
	.how-to-book__title {
			--how-to-book__title__mt: 32px
	}
	.faq__title {
			--faq__title__mt: 32px
	}
	.hotel-testimonials__wrapper {
			--hotel-testimonials__narrow-column: 330px
	}.help-booking {
		--help-booking__shadow__sizes: 0 40px 80px
}
	.help-booking__phones a {
			font-size: 20px
	}
	.help-booking__phones a:not(:first-child) {
				margin-left: 16px
		}.operators {
		--operators__display: block
}.tour-search-heading {
		--tour-search-heading__title__fz: 28px;
		--tour-search-heading__subtitle__fz: 24px
}
	.tour-search-heading__button {
			margin-right: 16px;
			margin-left: 16px;
			background-color: transparent;
			color: var(--black);
			font-size: 20px
	}
	.tour-search-heading__button svg {
				margin-left: 8px
		}.tour-search-main__wrapper {
			display: grid;
			grid-gap: 30px;
			grid-template-columns: var(--tour-search-main__sidebar__width) calc(
					100% - var(--tour-search-main__sidebar__width) - 30px
				);
			align-items: start
	}.search-country__info {
		min-height: 230px
}.search-country__item {
		min-height: 400px
}.search-country__list {
		grid-gap: 30px;
		grid-template-columns: repeat(3, calc((100% - 60px) / 3))
}.search-country__subtitle {
		font-size: 26px
}.search-country__title {
		font-size: 30px
}.index-data {
		--index-data__margin-inline: auto 0;
		align-self: center
}.testimonials {
		--testimonials__width: calc(
			100% - var(--index-info__wrapper__gap) - var(--index-data__max-width)
		)
}
}
@media (min-width: 1280px) and (max-width: 1439px) {
:root {
		--container__width: 1110px
}
	.site-header--height-limitation,
	.site-header--height-limitation--1024-and-more {
			--header__height-limitation__min-height: 578px
	}
	.site-header--height-limitation--hotel {
			--site-header__gap--override: 24px
	}.tour-cost {
		flex-direction: column;
		text-align: center
}
	.tour-cost__title {
			margin-bottom: 16px
	}
	.tour-cost__list li {
				flex-direction: column;
				padding: 4px
		}.index-hot-tours__list {
			--hot-tours-card__min-width: 420px
	}
	.operators__images img {
				margin-right: 16px;
				margin-left: 16px
		}.tour-search-main__wrapper {
			--tour-search-main__sidebar__width: 286px
	}.hotel-header-bar {
		--hotel-header-bar__mt: 24px
}.testimonials {
		--index-data__max-width: 340px
}
}
@media (min-width: 1280px) and (max-width: 1659px) {.site-header {
		--site-header__gap: 80px
}
			.site-header--height-limitation--hotel .site-header-title {
				transform: translateY(24px);
			}.site-header__content {
			--header__wrapper__gta: 'headerLogo desktopButtonPhones desktopLogin'
				'headerLogo headerMenuGroup headerMenuGroup';
			--header__wrapper__gtc: auto 1fr auto
	}
	.site-header-title h1 {
			--header-title__fz: 30px
	}.site-header__menu {
			justify-self: end
	}
}
@media (min-width: 1280px) and (max-width: 1919px);
@media (min-width: 1440px) {
.hidden-1440-and-more {
		display: none !important
}
	.site-header--height-limitation--hotel {
			--site-header__gap--override: 0
	}
	.footer-content__wrapper {
			--footer-content__gtc: 1.4fr 1fr 1fr;
			--footer-content__gta: 'footerContentTours footerContentAbout footerContentAddress'
				'footerContentSocial . .'
	}
	.footer-content__link-list--dekstop-two-columns {
				-moz-column-count: 2;
				     column-count: 2
		}

.litepicker {
		--litepicker__translate__X: -90px
}.booking-steps-content__wrapper {
			--booking-steps-content__wrapper__gtc: 1fr
				max(
					calc((100% - var(--booking-steps-content__wrapper__gcg)) / 2),
					665px
				);
			grid-column-gap: var(--booking-steps-content__wrapper__gcg)
	}
	.booking-steps-content__bottom {
			grid-column: 1/-1
	}
	.booking-card--hover {
			z-index: 1;
			position: absolute;
			top: 0;
			left: 0
	}
	.booking-step-1 .flight-table {
			margin-bottom: 40px
	}

	.booking-item-button[data-item] {
			--booking-item-button__width: calc(100% + 48px);
			margin-left: -48px
	}
	.how-to-book__title {
			--how-to-book__title__fz: 36px
	}
	.how-to-book-item h3 {
			--how-to-book-item__title__mb: 32px;
			--how-to-book-item__title__fz: 28px
	}
	.faq__title {
			--faq__title__fz: 36px
	}.faq-anchor-list {
		--faq__anchor-list__mb: 80px
}
	.faq-content__item h3 {
				--faq__content__title__fz: 28px
		}.autobooking__list {
			grid-template-columns: repeat(6, 1fr);
			padding: 56px 56px 160px
	}
	.autobooking__item:nth-child(even) {
			transform: translateY(115px)
	}
	.autobooking__item {
			width: 290px;
			margin-left: -80px;
			margin-right: -80px
	}
	.autobooking__item p {
				font-size: 14px
		}.help-booking__img {
		align-self: start
}
	.help-booking__img picture,
	.help-booking__img img {
			flex-basis: 640px
	}.help-booking__text {
		font-size: 18px
}.index-hot-tours__info {
			border-radius: 2px;
			background-color: white;
			box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1)
	}.index-hot-tours__link {
			display: flex;
			flex-shrink: 0;
			align-items: center;
			padding-top: 12px;
			padding-bottom: 12px;
			font-size: 18px
	}
		.index-hot-tours__link,
		.index-hot-tours__link:hover,
		.index-hot-tours__link:focus {
				color: var(--brand-orange)
		}
		.index-hot-tours__link::after {
				display: block;
				width: 8px;
				height: 13px;
				margin-left: 20px;
				background-image: url('../img/icons/icon-arrow-left--orange.svg');
				background-position: center;
				background-repeat: no-repeat;
				background-size: 8px 13px;
				content: ''
		}.index-hot-tours__social {
			justify-content: flex-end;
			padding-top: 12px;
			padding-bottom: 12px
	}.index-hot-tours__list {
			grid-template-columns: repeat(3, 1fr)
	}.tour-search-main__wrapper {
			--tour-search-main__sidebar__width: 386px
	}.hotel-header-bar {
		--hotel-header-bar__height: 100px
}
	.hotel-header-bar__links {
			border-right: 1px solid rgb(112 112 112 / 20%)
	}.desktop-search-main {
		--desktop-search-main__item__pi: 24px
}
	.booking-description__list {
			transform: translateX(-22px)
	}
	.flight-data dl {
			justify-content: space-between
	}
	.flight-data div:not(:last-child) {
				margin-right: 40px
		}
	.flight-data dt {
			margin-bottom: 8px
	}
	.flight-data dd small {
				font-size: 14px;
				line-height: 1
		}
	.flight-data__text-with-icon {
			position: relative
	}
	.flight-data__text-with-icon svg {
				position: absolute;
				top: 50%;
				left: -36px;
				transform: translateY(-50%)
		}
	.index-data dd {
			--index-data__dd__fz: 60px;
			--index-data__dd__letter-spacing: 8px
	}.testimonials {
		--index-data__max-width: 440px
}
}
@media (min-width: 1440px) and (max-width: 1659px) {
:root {
		--container__width: 1336px
}
	.site-header--height-limitation,
	.site-header--height-limitation--1024-and-more {
			--header__height-limitation__min-height: 498px
	}
	.booking-step-1 .flight-table {
			--fly-table__width: calc(100% + 42px)
	}.index-hot-tours__social {
			gap: 8px
	}
		.index-hot-tours__social-list a {
				gap: 2px
		}
	.booking-description__list {
			max-width: 610px
	}
}
@media (min-width: 1440px) and (max-width: 1919px) {
	.operators__images img {
				margin-right: 24px;
				margin-left: 24px
		}
}
@media (min-width: 1660px) {
:root {
		--container__width: 1640px
}
.hidden-1660-and-more {
		display: none !important
}.site-header {
		--site-header__gap: 120px
}
	.site-header--height-limitation,
	.site-header--height-limitation--1024-and-more {
			--header__height-limitation__min-height: 558px
	}
			.site-header--height-limitation--hotel .site-header-title {
				transform: translateY(36px);
			}.site-header__content {
			--header__wrapper__gta: 'headerLogo headerMenuGroup desktopButtonPhones desktopLogin';
			--header__wrapper__gtc: auto 1fr auto auto;
			--header__wrapper__ai: end
	}
	.site-header-title h1 {
			--header-title__fz: 36px
	}.booking-steps-content__wrapper {
			--booking-steps-content__wrapper__gcg: 140px;
			--booking-steps-content__wrapper__width: calc(
				100% + var(--booking-steps-content__wrapper__additional-width)
			);
			margin-right: calc(
				0px - var(--booking-steps-content__wrapper__additional-width)
			)
	}
	.booking-steps-content__bottom {
			--booking-steps-content__bottom__width: calc(
				100% - var(--booking-steps-content__wrapper__additional-width)
			);
			margin-right: auto
	}.site-header__menu {
			justify-self: center
	}.price-card {
		--price-card__gtc: 280px auto auto auto
}
	.price-card__operator-price {
			position: relative;
			flex-direction: column
	}
	.price-card__operator-price sup {
				position: absolute;
				right: 0;
				transform: translateY(-100%)
		}
	.price-card__operator-price strong {
				font-size: 32px
		}
	.price-card p span:not(:first-child) {
					display: none
			}
	.booking-step-1 .flight-table {
			--fly-table__width: calc(100% + 112px)
	}.about-hotel__wrapper {
			--about-hotel__gtc: calc(100% - 60px - 388px) 388px
	}
	.about-hotel__features {
			grid-area: 1/2/3/3
	}
	.about-hotel-features__map-wrapper {
			--map__height: 212px
	}
	.hotel-media__wrapper {
			--hotel-media__wrapper__gap: 32px
	}
	.hotel-media__wrapper img{
		cursor: pointer;
	}
	.other-tours-tab-list {
		--other-tours-tab-list__mt: 48px
}
	.other-tours-tab-list .nav-item {
			--other-tours-tab-list__nav-item__indent: 15px;
			margin-right: 15px
	}
	.best-price h2[data-visible='false'] + .observer-container {
				display: flex;
				z-index: 1000;
				position: fixed;
				bottom: 0;
				left: 0;
				justify-content: center;
				width: 100%;
				background-color: white;
				box-shadow: var(--box-shadow)
		}
	.best-price h2[data-visible='false'] + .observer-container .price-card {
				width: var(--container__width, 100%);
				box-shadow: none
		}.help-booking__info {
		margin-left: auto
}.help-booking__title {
		font-size: 32px
}.index-hot-tours__info {
			justify-content: center
	}.index-hot-tours__link {
			padding-right: 76px;
			padding-left: 80px;
			border-right: 1px solid rgba(77, 83, 88, 0.14)
	}.index-hot-tours__social {
			gap: 22px;
			padding-left: 64px;
			padding-right: 64px
	}.index-hot-tours__social-list {
			gap: 28px
	}
		.index-hot-tours__social-list a {
				gap: 16px
		}.index-hot-tours__list {
			gap: 30px
	}.desktop-search-main {
		--desktop-search-main__item__fz: 18px;
		--desktop-search-main__item__fw: 500
		/* --desktop-search-main__fr: 16.66%; */
}
	.booking-description__list {
			max-width: 732px
	}
}
@media (min-width: 1920px) {
	.other-tours-tab-list__controls {
			--other-tours-tab-list__controls__display: flex;
			position: absolute;
			top: 0;
			left: 0;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			height: 100%;
			pointer-events: none
	}
	.operators__images img {
				margin-right: 36px;
				margin-left: 36px
		}
}
@media (max-width: 1659px) {
.hidden-1659-and-less {
		display: none !important
}.price-card {
		--price-card__gtc: 1fr auto
}
	.help-booking--inline {
			--help-booking__ai: flex-start
	}.index-hot-tours__link {
			padding-right: 16px;
			padding-left: 16px
	}
}
@media (max-width: 1439px) {
.hidden-1439-and-less {
		display: none !important
}
	.other-tours-filter .desktop-search-main .custom-datepicker__icon {
				margin-right: 44px
		}
	.other-tours-filter .desktop-search-main .select-persons svg {
				right: 44px
		}
	.index-hot-tours__country-selection {
			justify-content: center
	}.index-hot-tours__info {
			flex-direction: column;
			align-items: center
	}.index-hot-tours__link {
			width: 100%;
			padding: 16px;
			border-radius: 2px;
			background-color: var(--dark-blue);
			font-size: 14px;
			text-align: center
	}
		.index-hot-tours__link,
		.index-hot-tours__link:hover,
		.index-hot-tours__link:focus {
				color: white
		}
	.desktop-search-main__item:nth-child(4) {
				border-left: none
		}
	.desktop-search-main .custom-datepicker {
			padding-right: 0
	}
	.flight-data dl {
			flex-direction: column;
			align-items: flex-start
	}
	.flight-data div {
			display: flex;
			align-items: center
	}
	.flight-data div:not(:last-child) {
				margin-bottom: 16px
		}
	.flight-data dd {
			--flight-data__dd__fd: row;
			--flight-data__dd__ai: baseline
	}
	.flight-data dd small {
				position: relative
		}
	.flight-data dd small::before {
					margin-right: 8px;
					margin-left: 8px;
					content: '|'
			}
	.flight-data__text-with-icon {
			--flight-data__dd__fd: row;
			--flight-data__dd__ai: baseline
	}
	.flight-data__text-with-icon svg {
				margin-right: 12px;
				transform: translateY(3px)
		}
}
@media (max-width: 1279px) {
.hidden-1279-and-less {
		display: none !important
}
	.site-header--height-limitation--hotel {
			--site-header__gap--override: 0px
	}
		.menu-is-toggled > *:not(.site-header, .modal-storage, .offcanvas-storage) {
			display: none;
		}
			.menu-is-toggled .site-header > *:not(.site-header__content) {
				display: none;
			}
		.menu-is-toggled .site-header__menu-group {
			-webkit-animation: reveal 0.5s forwards;
			        animation: reveal 0.5s forwards;
		}.mark-holder {
		--mark-holder__p: 10px;
		--mark-holder__radius: 12px;
		--mark-holder__fz: 16px
}.vertical-form {
		--input__min-height: 56px
}.headline__buttons {
		--headline__buttons__padding-block: 24px
}
	.headline__section-overline:not(:last-child, :only-child) {
			margin-bottom: 12px
	}.tour-cost {
		width: calc(100% + (2 * var(--container__pi)));
		margin-right: calc(0px - var(--container__pi));
		margin-left: calc(0px - var(--container__pi))
}.wrapper-standard {
		--wrapper-standard__padding-block: 24px
}.site-header__desktop-login {
			display: none
	}.site-header__logo {
			z-index: 2;
			justify-self: start
	}

.header-menu {
		flex-direction: column
}.site-header__menu-group {
			z-index: 1;
			grid-area: 1/1/-1/-1;
			grid-row-gap: 36px;
			align-content: start;
			align-items: start;
			padding-top: var(--header__menu-group__pt, 108px);
			padding-inline: var(--container__pi, 0)
	}.site-header__mobile-buttons {
			z-index: 2;
			grid-area: mobileButtons;
			justify-self: end
	}.site-header__mobile-consultation {
			grid-area: mobileConsultation
	}.site-header__mobile-login {
			grid-area: mobileLogin
	}.site-header__mobile-phones-and-links {
			grid-area: mobilePhonesAndLinks
	}
	.booking-card__title {
			--booking-card__title__fz: 18px
	}
	.search-tour-card__button {
			margin-top: 8px
	}
	.search-tour-card__title {
			--search-tour-card__title__fz: 18px
	}.tour-card {
		display: flex;
		flex-direction: column;
		align-items: flex-start
}.tour-card__mark {
			position: absolute;
			bottom: var(--tour-card__mark__bottom, 8px);
			left: var(--tour-card__mark__left, 10px)
	}.tour-card__price {
			gap: 8px
	}
	.tour-card__sum {
			align-items: baseline
	}
	.tour-card__sum span {
				order: -1 /*???*/
		}.tour-card__review {
			display: none
	}.booking-steps__list {
			flex-direction: column
	}.help-booking__phones {
		flex-direction: var(--help-booking__phones__fd, column);
		align-items: var(--help-booking__phones__ai, flex-start)
}
	.help-booking__phones a:not(:first-child) {
				margin-bottom: 8px
		}.index-info__wrapper {
			flex-wrap: wrap
	}
	.tour-search-heading__button svg {
				margin-right: 16px
		}.tour-search-main__sidebar {
		--tour-search-main__sidebar__display: none
}
}
	.price-block-on-mobile{
		display: none;
	}
@media (max-width: 1023px) {
	.site-main, .site-main-hotel{
		overflow: initial;
	}

	.price-block-mobile{
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0 16px;
	}
	.price-block-on-mobile{
		display: grid;
		grid-area: 3/1/4/3;
		width: calc(100% + (2 * var(--price-card__padding-inline)));
		margin-right: calc(0px - var(--price-card__padding-inline));
		margin-left: calc(0px - var(--price-card__padding-inline));
		border-top: 1px solid #e6e6e6;
		margin-bottom: -10px;
		padding-top: 10px;
	}
	.price-block-mobile .plain-list{
		margin: 0;
		font-size: 14px;
		color: black;
		font-weight: 500;
	}

	.price-block-mobile strong{
		font-size: 130%;
		margin: auto 0;
	}

.hidden-1023-and-less {
		display: none !important
}
	/*.site-header:not(.site-header--height-limitation){
			padding-bottom: var(--site-header__pb, 60px)
	} */
	.site-header--height-limitation--hotel{
		padding-bottom: var(--site-header__pb, 60px)
	}
	.site-header--height-limitation--1024-and-more {
			--header__cover__height-limitation: 0px
	}
	.site-header--height-limitation .site-header__cover,
	.site-header--height-limitation--1024-and-more .site-header__cover {
			--site-header__cover__height: calc(
				100% - var(--header__cover__height-limitation, 0px)
			)
	}.stars-holder {
		--stars-holder__fz: 14px
}
	.site-header-title super {
			--site-header-title__super__fz: 12px
	}.tour-cost {
		flex-direction: column;
		text-align: center
}
	.tour-cost__title {
			margin-bottom: 16px;
			font-size: 12px
	}
	.tour-cost__list li {
				flex-direction: column;
				padding: 4px
		}
	.tour-cost__list span {
				font-size: 10px
		}.price-card {
		--price-card__padding-block: 12px;
		--price-card__padding-inline: 16px
}.price-card__button {
			grid-area: 4/1/4/3;
			width: calc(100% + (2 * var(--price-card__padding-inline)));
			margin-right: calc(0px - var(--price-card__padding-inline));
			margin-bottom: calc(0px - var(--price-card__padding-block));
			margin-left: calc(0px - var(--price-card__padding-inline))
	}
	.price-card__button-desktop {
			display: none
	}
	.price-card__button-mobile {
			/*display: flex;*/
			align-items: center;
			justify-content: space-between;
			width: 100%;
			padding: 16px;
			border: none;
			border-radius: 2px;
			background-color: var(--brand-orange);
			color: white;
		font-size: 20px;
		font-weight: 600;
	}
	.button-desktop{
		display: none;
	}
	.button-mobile{
		display: inline-block;
	}
	.price-card__button-mobile ul {
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				margin-bottom: 0;
				text-align: left
		}
	.price-card__button-mobile strong {
				font-size: 18px
		}.price-card__fly {
			grid-area: 2/1/3/3
	}
		/*.price-card__fly > button,
		.price-card__fly > dl {
				display: none
		}*/.price-card__operator {
			grid-area: 1/2/2/3
	}
	.price-card__fly > button{
		margin: 0 auto;
	}
	.price-card__operator-price {
			display: none
	}.price-card__title {
			grid-area: 1/1/2/2
	}
		.price-card__title h3 {
				flex-direction: column
		}
	.price-card__title-comma {
			display: none
	}
	.price-card p {
			display: none
	}
	/*.search-tour-card--hot .search-tour-card__img::after {
			right: -5px
	}*/
	.search-tour-card__data {
			width: 100%;
			padding-top: 8px;
			border-top: 1px solid #e4e7ed
	}
	.search-tour-card__price {
			flex-direction: row-reverse;
			align-items: baseline
	}
	.search-tour-card__old-price {
			flex-direction: row-reverse
	}
	.search-tour-card__discount {
			margin-right: 16px
	}
	.search-tour-card__current-price {
			margin-right: 8px
	}
	.search-tour-card__location {
			--search-tour-card__location__fz: 14px
	}.search-tour-card__img {
			grid-area: 1/1/2/2
	}.search-tour-card__review {
			display: flex;
			z-index: 1;
			grid-area: 1/1/2/2;
			align-self: end;
			justify-self: start;
			margin-bottom: 8px;
			margin-left: 4px;
			padding: 4px 8px 4px 4px;
			border-radius: 2px;
			background-color: white
	}
			.search-tour-card__review > *:not(:last-child) {
				margin-right: 8px;
			}
	.about-hotel-rooms__slider .glider {
				width: calc(100% + 8px + var(--container__pi, 0));
				margin-right: calc(0px - var(--container__pi, 0))
		}.hotel-media {
		order: -1
}
			.hotel-media__bottom-holder-item:nth-child(1),
			.hotel-media__bottom-holder-item:nth-child(2) {
				border-right: 1px solid #e7ecfa;
			}
	.hotel-media__photo {
			display: none
	}.hotel-media__top-holder {
			top: 0;
			left: 50%;
	z-index: 10;
			transform: translate(-50%, -50%)
	}.other-tours {
		order: -1
}
	.other-tours-filter__desktop {
			display: none
	}
	.other-tours-filter__mobile {
			display: flex;
			width: 100%;
        margin-bottom: 15px;
	}
	.other-tours-tab-content .tab-pane.active {
			grid-row-gap: 24px
	}
	.other-tours-tab-list .nav-link strong.is-hot::after {
						width: 13px;
						height: 18px;
						transform: translateY(-4px)
				}.best-price {
		order: -1
}.faq-anchor-list {
		--additional-width: calc((100vw - 100% - var(--scrollbarWidth, 0px)) / 2);
		--faq__anchor-list__width: calc(100% + var(--additional-width));
		margin-right: calc(0px - var(--additional-width))
}
	.faq-anchor-list ul {
			overflow-x: auto;
			-ms-scroll-snap-type: x mandatory;
			    scroll-snap-type: x mandatory
	}
	.faq-anchor-list a {
			scroll-snap-align: start
	}
	.hotel-testimonials__wrapper {
			--hotel-testimonials__gtc: 100%
	}.autobooking__list {
			grid-template-columns: 100%;
			grid-row-gap: 40px
	}.help-booking {
		--help-booking__fd: column
}.help-booking__img {
		justify-content: center;
		width: 100%
}
	.help-booking__img picture,
	.help-booking__img img {
			width: 450px
	}.desktop-search {
		--desktop-search__display: none
}
	.desktop-search .nav-item {
			flex-grow: 1
	}
	.desktop-search .nav-link {
			width: 100%
	}.mobile-search {
		grid-row-gap: 8px;
		align-items: start;
		width: 100%;
		padding: var(--mobile-search__padding, 8px);
		border-radius: 2px;
		background-color: var(--mobile-search__bgc, var(--brand-blue));
		background-image: linear-gradient(87deg, #394984 0%, #4578aa 100%);
			 font-size: 17px;
			 font-weight: 500
}
}
	span span.hidden-767-and-less{
		margin-left: 2px;
	}
@media (max-width: 767px) {
	.wrap-hot .hot-row {
		display: flex;
		justify-content: center;
	}
	.wrap-hot .hot-row span {
		display: inline-flex;
		align-items: center;
	}
:root {
		--container__pi: 15px
}
	.index-hot-tours__wrapper {
		padding-top: 50px;
	}
	.flight-directions {
		grid-template-columns: 100%;
	}
.hidden-767-and-less {
		display: none !important
}.site-header {
		--site-header__gap: 5px;
	 --site-header__padding-block: 5px;
}
	.site-header__content{
		gap: 5px;
	}
	.site-header--height-limitation--hotel {
		padding-bottom: var(--site-header__pb, 40px);
	}
	.site-header--height-limitation {
			--header__cover__height-limitation: 60px
	}.site-header__content {
			--header__wrapper__gtc: 1fr auto;
			--header__wrapper__gta: 'headerLogo mobileButtons'
				'headerMenuGroup headerMenuGroup'
	}.headline__buttons {
		grid-row-gap: 12px;
		grid-template-columns: 100%
}.headline__section-overline {
		font-size: 14px;
		letter-spacing: 1.6px
}.headline__section-title {
		font-size: 16px
}
	.site-logo svg {
			max-width: 200px;
			height: 50px
	}.video-button {
		--size: 64px
}.site-header__desktop-button-phones {
			--header__desktop-button-phones: none
	}.mobile-button-group-menu {
		--mobile-button-group-menu__br: 0 22px 22px 0
}.site-header__menu-group {
			--header__menu-group__gta: 'headerMenu' 'mobileConsultation' 'mobileLogin';
			justify-items: center
	}.mobile-button-phones {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 44px;
		padding: 4px;
		border: none;
		border-right: 1px solid #ebedf2;
		border-radius: 22px 0 0 22px;
		background-color: white;
		background-image: none;
		color: var(--brand-blue);
		cursor: pointer;
		opacity: var(--mobile-button-phones__opacity, 1);
		transition: opacity 0.3s;
		will-change: opacity
}

.mobile-consultation {
		align-items: center;
		width: calc(100% + (2 * var(--container__pi, 0)));
		padding: 24px var(--container__pi, 0);
		border: solid rgba(255, 255, 255, 0.2);
		border-width: 1px 0;
		margin-inline: calc(0px - var(--container__pi, 0))
}.booking-card {
		--booking-card__p: 12px
}
	.booking-card__title {
			order: -1
	}
	
	.tour-card--hot::after {
			top: 4px;
			right: 4px
	}.tour-card {
		max-width: 360px;
		margin-right: auto;
		margin-left: auto;
		padding: 12px;
		gap: 12px
}.tour-card__data {
			width: 100%;
			padding-bottom: 12px;
			border-bottom: 1px solid rgba(201, 206, 219, 0.5)
	}
	.tour-card__data-item {
			font-size: 14px
	}.tour-card__mark {
			--tour-card__mark__bottom: 4px;
			--tour-card__mark__left: 4px
	}.tour-card__price {
			width: 100%
	}
	.tour-card__sum {
			width: 100%
	}
	.tour-card__sum small {
				margin-left: auto;
				font-size: 14px
		}
	.tour-card__sum span {
				font-size: 24px
		}
	.tour-card__location {
			font-size: 14px
	}
	.tour-card__subtitle {min-height: 25px;}
	.tour-card__title {
		font-size: 20px;
		min-height: 0;
	}.booking-step-1 {
		--input__min-height: 44px
}.hotel-media__bottom-holder {
			width: calc(100% + (2 * var(--container__pi, 0)));
			margin-right: calc(0px - var(--container__pi, 0));
			margin-left: calc(0px - var(--container__pi, 0))
	}
	.hotel-media__main-photo {
			width: calc(100% + (2 * var(--container__pi, 0)));
			margin-right: calc(0px - var(--container__pi, 0));
			margin-left: calc(0px - var(--container__pi, 0));
		max-width: -webkit-fill-available;
	}
	.hotel-media__main-photo :where(img, picture), .hotel-media__photo :where(img, picture){
		max-height: 350px;
	}

	.autobooking__info {
		width: calc(100% + 30px);
		margin-left: -15px;
		margin-right: -15px
}.autobooking__list {
			padding-top: 40px;
			padding-bottom: 40px
	}
	.autobooking__item p {
				font-size: 14px
		}.help-booking {
		--help-booking__p: 12px;
		--help-booking__shadow-sizes: 0 12px 24px
}
	.help-booking__phones a {
			font-size: 16px
	}.help-booking__text {
		font-size: 14px
}.help-booking__title {
		font-size: 16px
}
	.index-hot-tours__country-selection-title,
	.index-hot-tours__trigger,
	.index-hot-tours .filter-option-inner-inner {
			font-size: 20px
	}.index-hot-tours__social {
			/*display: none*/
	}
    .index-hot-tours__link{
        display: none
    }
    .index-hot-tours__social-list{
        display: grid;
        align-items: center;
        margin-bottom: 0;
        grid-template-columns: 2fr 2fr;
        gap: 0;
        font-size: 10px;
        margin-top: 20px;
    }
    .index-hot-tours__list {
			width: calc(100% + 15px);
			margin-right: -15px;
			overflow-x: auto;
			-ms-scroll-snap-type: x mandatory;
			    scroll-snap-type: x mandatory
	}.index-hot-tours__item {
			padding: 6px 6px 12px
	}
	.index-hot-tours .tour-card {
			flex-shrink: 0;
			width: 290px;
			border: 1px solid rgba(0, 0, 0, 0.05);
			scroll-snap-align: start
	}.tour-search-heading {
		--tour-search-heading__title__fz: 16px;
		--tour-search-heading__subtitle__fz: 12px
}
	.tour-search-heading__subtitle:last-of-type {
				margin-bottom: 0
		}.search-country__info {
		padding: 20px
}.search-country__item {
		flex-shrink: 0;
		width: 264px;
		height: 212px;
		scroll-snap-align: start
}.search-country__list-resorts {
			display: none
	}.search-country__list {
		display: flex;
		align-items: center;
		width: calc(100% + 15px);
		margin-right: -15px;
		padding-right: 15px;
		padding-bottom: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		-ms-scroll-snap-type: x mandatory;
		    scroll-snap-type: x mandatory;
		gap: 10px
}.search-country__price {
		display: block
}.search-country__subtitle {
		margin-bottom: 8px;
		font-size: 20px
}.search-country__title {
		margin-bottom: 24px;
		font-size: 16px
}
	.booking-description__item {
			flex-direction: column
	}
	.booking-description__item svg {
				margin-bottom: 24px
		}
	.flight-data__wrapper {
			--flight-data__wrapper__pb: 32px
	}
	.flight-data div {
			flex-direction: column;
			align-items: flex-start
	}
	.passport-data input,
	.passport-data select {
			--passport-data__input__p: 12px
	}.index-data {
		--index-data__margin-inline: -16px;
		width: calc(100% + 32px);
		padding: 32px 16px;
		background-color: white;
	overflow: hidden
}.testimonials {
		align-items: center
}
		.testimonials__social p {
				display: none
		}
		.testimonials__social a {
				width: 290px
		}.testimonials__slide {
			display: flex;
			flex-direction: column;
			align-items: center
	}
}
@media (max-width: 639px) {
	.footer-content__wrapper {
			flex-direction: column
	}
	.booking-card__info-list div {
				flex-direction: column;
				align-items: flex-start
		}
}
@media (max-width: 479px) {
:root {
		--litepicker-day-width: 13.5vw
}

	.load-spin-operators{
		grid-template-columns: repeat(2, 1fr);
	}
	.load-oper-logo{
		line-height: 2em;
	}
	.index-hot-tours__country-selection-title,
	.index-hot-tours__trigger,
	.index-hot-tours .filter-option-inner-inner {
		font-size: 17px
	}

.litepicker .container__days > div,
	.litepicker .container__days > a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: var(--litepicker-day-width);
			height: var(--litepicker-day-width)
	}.headline__buttons {
		width: 100%
}.autobooking__headline__first-trigger,
	.autobooking__headline__second-trigger {
			padding-right: 16px;
			padding-left: 16px;
			font-size: 14px
	}.help-booking__trigger {
			width: 100%
	}
	.booking-payment__list {
			flex-wrap: wrap
	}
}
@media (device-pixel-ratio: 1.25), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi);
@media (hover: hover);
@media (hover: none);
@media (max-device-pixel-ratio: 1.24), (-webkit-max-device-pixel-ratio: 1.24), (max-resolution: 119dpi);
@media (pointer: coarse);
@media (pointer: fine);
@media (pointer: none);

/*# sourceMappingURL=styles.css.map */

.d-none{
	display: none !important;
}

	.opacity-block {
		position: absolute;
		z-index: 1000;
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,0.75);
	}
	.opacity-block .button-primary {
		position: fixed;
		top: 50%;
		left: 53%;
		font-size: 26px;
		padding: 25px 30px;
	}

#promo_code_block.show, #promo_code_block.collapsing{
	display: grid;
	grid-gap: 10px 20px;
	grid-template-columns: repeat(2, calc(50% - 6px));
}

#promocode{
		min-height: var(--input__min-height);
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		max-height: var(--input__min-height);
	}

#promo_code_block .button{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 0;
	min-height: 56px;
	max-height: 56px
}

@media(max-width: 425px){
	.flight-title__date span{
		font-size: 12px;
	}

	.flight-title__item{
		padding-right: 10px;
		padding-left: 10px;
	}

	.hotel-detail-offcanvas__flight .flight-title__item:last-child {
		padding-right: 0;
	}

	.hotel-detail-offcanvas__flight .flight-title__item:first-child {
		padding-left: 0;
	}
}
#promo_msg{
    font-size: 12px;
    margin: 0;
}
#promo_msg.warning{
    color: red;
}
#mobileHotelSearch{
	min-height: 100%
}

.list-hotels .grey{
	color: grey;
	font-size: 14px;
}

	.litepicker .container__days .day-item, .litepicker .container__months .month-item-header .button-previous-month, .litepicker .container__months .month-item-header .button-next-month{
		cursor: pointer;
	}

#promo_block a{
	cursor: pointer;
}

/* black friday */
.bf-header-wrap {
	position: relative;
	display: flex;
	min-height: 65px;
	background-color: #FFB100;
	flex-direction: row;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.bf-header-wrap > div {
	margin: 0 30px;
}
.bf-header-wrap a {
	text-decoration: none;
}
.bf-black-friday {
	font-weight: bold;
	font-size: 28px;
	line-height: 24px;
	margin-right: 0 !important;
	color: #000;
	text-transform: uppercase;
}
.bf-minus-7 {
	color: #fff;
	font-weight: 600;
	font-size: 25px;
	position: relative;
}
.bf-minus-7 img {
	position: absolute;
	top: -10px;
	left: -6px;
}
.bf-black-block {
	min-height: 31px;
	background-color: #000;
	color: #fff;
	display: flex;
	align-items: center;
	width: 200px;
	justify-content: center;
	font-size: 15px;
	font-weight: 600;
}
.bf-rel {
	position: relative;
	height: 72px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.bf-minus-7-2 {
	display: none;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	position: absolute;
	right: 0;
	top: 0;
}
.bf-minus-7-2 img {
	position: absolute;
}
@media (max-width: 767px) {
	.bf-header-wrap {
		min-height: 72px;
		flex-direction: column;
		align-content: flex-start;
		justify-content: center;
		align-items: flex-start;
	}
	.bf-header-wrap > div {
		margin: 0 65px;
	}
	.bf-header-wrap > a {
		margin: 3px 50px;
	}
	.bf-black-block {
		width: 250px;
	}
	.bf-minus-7, .bf-hor-row {
		display: none;
	}
	.bf-minus-7-2 {
		display: flex;
	}
}
@media (max-width: 465px) {
	.bf-header-wrap > div {
		margin: 0 10px;
	}
	.bf-header-wrap > a {
		margin: 3px 12px;
	}
}
/* end bf */

	.circle {
		position: relative;
		width: 25px;
		height: 25px;
		border-radius: 50%;
		background: linear-gradient(white, #d8d8d8, grey);
		animation: animate 3s linear infinite;
		margin-left: 10px;
	}

	.circle:after {
		content: '';
		position: absolute;
		top: 2px;
		left: 2px;
		right: 2px;
		bottom: 2px;
		border-radius: 50%;
		background: #FDAE38;
		height: 21px;
		width: 21px;
	}
	.circle span:nth-child(1) {filter: blur(5px);}
	.circle span:nth-child(2) {filter: blur(10px);}
	.circle span:nth-child(3) {filter: blur(20px);}
	.circle span:nth-child(4) {filter: blur(40px);}

	@keyframes animate {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}

	.leaflet-container{
		z-index: 1 !important;
	}

	jdiv{
		z-index: 10 !important;
	}

.hidden_form_operator a{
	min-height: 30px;
	min-width: 40px;
	background: orange;
	display: block;
}

.index-hot-tours__item-title small{
    display: none;
}

#desktop-search-city-from-tab{
	padding: 0;
	border: none;
	background: inherit;
	display: inline;
}

@media(max-width: 350px){
    .wrap-hot .hot-row span, .index-hot-tours .filter-option-inner-inner{
        font-size: 15px;
    }
}

.slick-slider .slick-track, .slick-slider .slick-list{
	margin: auto;
}

.aqua-image{
	max-width: 100%;
	height: auto;
}

.aqua-link{
	color: var(--dark-blue);
	cursor: pointer;
	text-decoration: none
}

.big-h1{
	display: block;
	font-size: 35px;
	line-height: 1.4em;
}

.big-checkbox > [type='checkbox'] {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-left: -30px;
	margin-right: 10px;
	vertical-align: bottom;
}

#list_checked_hotels{
	border-top: 1px solid #DADBDB;
	margin: -15px;
}

#list_checked_hotels_div{
	padding-left: 50px;
	margin-bottom: 80px;
}

#list_checked_hotels .list_hotels div{
	font-size: 16px;
}

@media(max-width: 1023px){
    .new-header-block{
        background-color: var(--dark-blue);
        background-image: linear-gradient(50deg, #4D76D8 0%, #022169 80%);
        padding: 25px 0;
        border-radius: 0 0 20px 20px;
    }

    .menu-is-toggled{
        background-image: linear-gradient(50deg, #4D76D8 0%, #022169 80%);
    }

    .new-header-block.site-header--height-limitation .site-header__cover, .new-header-block.site-header--height-limitation--1024-and-more .site-header__cover{
        display: none;
    }

    .new-header-block .mobile-search{
        background-color: inherit;
        background-image: none;
    }

    .new-header-block .hotel-detail-offcanvas__buttons{
        overflow: hidden;
    }
}

	.two-column{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin: 40px auto;
	}

	.two-column a{
		color: #54ABF6;
		text-decoration: none;
	}

@media(max-width: 767px){
	.two-column{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		margin: 10px auto
	}

    .new-header-block .mobile-button-phones, .new-header-block .mobile-button-group-menu{
        height: 40px;
        width: 57px;
    }

    .new-header-block .site-header__title{
        padding: 0;
    }

    .new-header-block h1{
        font-weight: 600;
        font-size: 13px;
        margin: 0 20px;
		line-height: 1.4em;
    }

    .new-header-block .mobile-search__group--column {
        border-radius: 5px;
        overflow: hidden;
        background: white;
    }

    .new-header-block .mobile-search__trigger{
        font-size: 17px;
        padding: 16px 10px 15px;
    }

    .new-header-block .mobile-search__item{
        border-bottom: 2px solid #EDEEF3;
        background: white;
    }

    .new-header-block .no-border{
        border-bottom: none;
    }

    .new-header-block .right-block-with-border{
        border-left: 1px solid #EDEEF3;
        margin: 10px 0;
    }

    .new-header-block .small-blocks .mobile-search__trigger{
        min-height: 36px;
        padding: 5px 15px;
		white-space: nowrap;
    }

    .new-header-block .bottom-search-blocks{
        background: white;
        border-radius: 5px;
    }

    .new-header-block .mobile-search__group-grey{
        background: #F6F6F6;
    }

    .new-header-block .mobile-search__group .button-with-icon{
        color: #54ABF6;
        font-weight: 600;
		font-size: 14px;
    }

    .new-header-block .mobile-search-main__submit, #list_checked_hotels .mobile-search-main__submit{
        margin: 20px auto 10px;
        width: 90%;
		border-radius: 3px;
    }

	#list_checked_hotels .mobile-search-main__submit{
		margin: 0 auto;
	}

    #mobileHotelSearch .list_hotels div:hover{
        background: white;
    }

    #mobileHotelSearch .observer-container{
        padding: 0;
    }

	#mobileHotelSearch .hotel-detail-offcanvas hr{
		margin: 16px calc(0px - 32px);
		color: white;
	}

	#mobileHotelSearch .reset-filter-button{
		padding: 0 0 5px;
		min-height: auto;
		width: 100% !important;
	}

	#mobileHotelSearch .hotel-detail-offcanvas hr[data-visible='false'] ~ .hotel-detail-offcanvas__buttons .observer-container{
		box-shadow: none;
	}

	/* #list_checked_hotels{
		min-height: 100%;
		display: grid;
		grid-template-rows: [row1] 100% [row2];
		grid-template-areas:
				"canvasbody"
				"canvasfooter";
	}

	#list_checked_hotels_div{
		grid-area: canvasbody;
		background: white !important;
	}

	 #list_checked_hotels .bottom-block-canvas{
		grid-area: canvasfooter;
		-ms-grid-column: 1;
		grid-column: 1;
		margin-top: 50px;
		background: white;
	} */

	#list_checked_hotels .bottom-block-canvas .mobile-search-main__submit{
		margin: 0;
	}

    #list_checked_hotels .reset-filter-button{
        width: 90%;
    }

    .new-header-block .approximately-date-label{
        background: #C9CEDB;
        color: white;
        padding: 3px 5px;
        font-size: 10px;
		margin-left: 10px !important;
    }

    .new-header-block .mobile-search__item-title label{
        color: #797979;
        font-size: 11px;
        position: absolute;
        display: block;
        top: -18px;
    }

    .new-header-block .mobile-margin-top{
        margin-top: 10px;
        margin-bottom: -10px;
        position: relative;
    }

    .new-header-block .mobile-search__item-title.no-span-margin span{
        margin: 0
    }

    .new-header-block .icon-departure, .new-header-block .icon-search{
        opacity: 1;
		margin-right: 10px
    }

    .new-header-block #mobileSelectAdultsButton{
        padding: 16px 15px;
    }

    .new-header-block .bottom-search-blocks .mobile-search__trigger{
        font-size: 15px
    }

	.new-header-block .mobile-search {
		grid-row-gap: 13px;
	}

	.new-header-block .mobile-search__item-title span{
		margin: 0;
	}
}

	@media(max-width: 340px){
		.big-h1{
			font-size: 24px;
		}

		.new-header-block .mobile-search__trigger{
			font-size: 15px;
		}
	}


.social-block{
	background: white;
	margin: 10px 20px;
	padding: 2px 5px;
	display: none
}

.social-block-under{
	border: 1px solid #D3E9FC;
	padding: 20px 30px 10px;
	text-align: center
}

.social-blue{
	font-weight: 800;
	color: #54ABF6;
	font-size: 16px
}

.social-block-under a{
	display: block;
	color: white;
	text-decoration: none;
	font-size: 16px;
	margin: 12px 0;
	padding: 12px;
	font-weight: 600
}

.social-gray{
	color: #656E85;
	font-size: 14px;
	padding-bottom: 10px;
	display: block;
}

.social-viber{
	background: #7460B6 0 0 no-repeat padding-box;
	box-shadow: 0 2px 4px #00000012;
	border-radius: 2px;
}

.social-instagram{
	background: transparent linear-gradient(262deg, #FEDA75 0%, #FA7E1E 18%, #D62976 44%, #962FBF 72%, #4F5BD5 100%) 0 0 no-repeat padding-box;
	border-radius: 2px;
}

.social-telegram{
	background: #4E78DA 0 0 no-repeat padding-box;
	box-shadow: 0 2px 4px #00000012;
	border-radius: 2px;
}

.left-absolute-icon{
	position: absolute;
	left: 0;
}

	.right-absolute-icon{
		position: absolute;
		right: 0;
	}

@media(max-width: 1024px){
	.social-block{
		display: block
	}
}