/*
 ||==================================================
 || TABLE OF CONTENTS
 ||==================================================
 ||
 || 1. TRAVEL LIST ITEM
 */
:root {
	/* VARS :: COLORS */
	--main-color: #00A59C;
	--main-text-color: #4A4A49;
	--pink-color: #E8425C;
	--yellow-color: #FCC200;
	--lime-color: #A1C517;
	--orange-color: #F49B00;
	
	/* VARS :: FONT SIZE */
	--font-size-btn: 1.25vw;
	--font-size-md: 1.145vw;
	--font-size-sm: 1.041vw;
	--font-size-xs: 0.937vw;
	
	--fs--dbt: 3.38vw;
	--fs--cbt: 5.2vw;
	
	--fs-100-to-55: 5.208vw;
	--fs-97-to-45: 5.05vw;
	--fs-85-to-40: 4.42vw;
	--fs-65-to-30: 3.38vw;
	--fs-50-to-30: 2.60vw;
	--fs-36-to-30: 1.875vw;
	--fs-36-to-28: 1.875vw;
	--fs-36-to-24: 1.875vw;
	--fs-30-to-30: 1.562vw;
	--fs-30-to-22: 1.562vw;
	--fs-17-to-20: 0.88vw;
}

@media (max-width: 1440px) {
	:root {
		--font-size-btn: 1.66vw;
	}
}

@media (max-width: 1200px) {
	:root {
		
	}
}

@media (max-width: 992px) {
	:root {
		--font-size-btn: 2.22vw;
		
		--fs--dbt: 4.68vw;		
		--fs--cbt: 7.05vw;
		
		--fs-100-to-55: 8.06vw;
		--fs-97-to-45: 7.05vw;
		--fs-85-to-40: 6.04vw;
		--fs-65-to-30: 5.0vw;
		--fs-50-to-30: 4.43vw;
		--fs-36-to-30: 3.22vw;
		--fs-36-to-28: 3.22vw;
		--fs-36-to-24: 3.22vw;
		--fs-30-to-30: 2.62vw;
		--fs-30-to-22: 2.62vw;
		--fs-17-to-20: 1.814vw;
	}
}

@media (max-width: 768px) {
	:root {
		--font-size-btn: 2.60vw;
		
		--fs--dbt: 4.68vw;		
		--fs--cbt: 6.51vw;
		
		--fs-100-to-55: 8.46vw;
		--fs-97-to-45: 7.8125vw;
		--fs-85-to-40: 8.68vw;
		--fs-65-to-30: 5.7vw;
		--fs-50-to-30: 5.2vw;
		--fs-36-to-30: 3.9vw;
		--fs-36-to-28: 3.64vw;
		--fs-36-to-24: 3.125vw;
		--fs-30-to-30: 3.9vw;
		--fs-30-to-22: 2.86vw;
		--fs-17-to-20: 2.60vw;
	}
}

@media (max-width: 576px) {
	:root {
		--font-size-btn: 3.47vw;
		
		--fs--dbt: 6.25vw;		
		--fs--cbt: 8.68vw;
		
		--fs-100-to-55: 9.548vw;
		--fs-97-to-45: 7.8125vw;
		--fs-85-to-40: 6.94vw;
		--fs-65-to-30: 5.2vw;
		--fs-50-to-30: 5.2vw;
		--fs-36-to-30: 5.2vw;
		--fs-36-to-28: 4.86vw;
		--fs-36-to-24: 4.16vw;
		--fs-30-to-30: 5.2vw;
		--fs-30-to-22: 3.81vw;
		--fs-17-to-20: 3.472vw;
	}
}

@media (max-width: 480px) {
	:root {
		--font-size-btn: 4.16vw;
		
		--fs--dbt: 7.5vw;
		--fs--cbt: 10.41vw;
		
		--fs-100-to-55: 11.458vw;
		--fs-97-to-45: 9.375vw;
		--fs-85-to-40: 8.33vw;
		--fs-65-to-30: 6.25vw;
		--fs-50-to-30: 6.25vw;
		--fs-36-to-30: 6.25vw;
		--fs-36-to-28: 5.83vw;
		--fs-36-to-24: 5vw;
		--fs-30-to-30: 6.25vw;
		--fs-30-to-22: 4.58vw;
		--fs-17-to-20: 4.16vw;
	}
}

/* HTML TAGS */
html, body {
	font-family: 'Barlow';
	background-color: #FFFFFF;
	color: var(--main-text-color);
	overflow-x: hidden;
}
html.no-scroll {
	overflow-y: hidden;
}
a:hover { text-decoration: none; }

/* CONTAINER */
.container { 
	max-width: 144rem;
	padding-right: 1.5rem;
	padding-left: 1.5rem;
}
.container-sm { max-width: 96rem; }
.flx {
	display: flex !important;
}

/* THIS CLASS SHOULD NOT EXISTS */
.display-none { display: none; }

/* UTILITIES */
.flx-vc { display: flex; align-items: center; }
.flx-vc-wi { display: flex; align-items: center; }
.flx-vc-wi img { margin-right: 1rem; }
.flx-sb { display: flex; justify-content: space-between; }
.flx-cc,
.flx-cc-wi { display: flex; align-items: center; justify-content: center; }
.flx-cc-wi img { margin-right: 1rem; }
.flx-wrap { flex-wrap: wrap; }

/* SHOW / HIDE */
.hide-md { display: block; }
.show-md { display: none; }
.hide-flx-md { display: flex; }
.show-flx-md { display: none; }
.hide-ib-md { display: inline-block; }
.show-ib-md { display: inline-block; }

/* MARGINS */
.mb-0 { margin-bottom: 0; }
.mb-05 { margin-bottom: 0.5rem; }
.mb-10 { margin-bottom: 1rem; }
.mb-20 { margin-bottom: 2rem !important; }
.mb-30 { margin-bottom: 3rem !important; }

.mt-30 { margin-top: 3rem !important; }

.mr-10 { margin-right: 1rem; }

/* FONT SIZE */
.fs-lg { font-size: 30px; }
.fs-md { font-size: 24px; }
.fs-smd { font-size: 22px; }
.fs-sm { font-size: 20px; }
.fs-xs { font-size: 18px; }
.fs-xxs { font-size: 14px; }

/* TEXT ALIGN */
.t-center {
	text-align: center;
}

.register-confirmed h1 { font-size: 4rem; margin-bottom: 2rem; }
.register-confirmed p { font-size: 18px; }

/* COLORS */
.c-main { color: var(--main-color); }

.img-responsive {
	max-width: 100%;
	display: block;
}

.destination-block--btn .hide-md {
	display: inline-block;
}

/* FONT WEIGHT
 |--------------------------------------------
 |
 | .fw-r		font-weight: regular (400)
 | .fw-m		font-weight: medium (500)
 | .fw-sb		font-weight: semibold (600)
 | .fw-b		font-weight: bold (700)
 */
.fw-r	{ font-weight: 400; }
.fw-m	{ font-weight: 500; }
.fw-sb	{ font-weight: 600; }
.fw-b	{ font-weight: 700; }

/* BUTTONS
 |--------------------------------------------
 */
.btn {
	border-radius: 0.6rem;
	padding: 1rem 2rem;
}
.btn-block {
	font-size: var(--font-size-btn);
	padding: 0.937vw 1.875vw;
}
.btn.btn-inline-flx {
	display: inline-flex;
}
.btn.btn-pink {
	background-color: var(--pink-color);
}
.btn.btn-pink.btn-border {
	border: 0.2rem solid var(--pink-color);
	background-color: #FFFFFF;
	color: var(--pink-color);
}
.btn.btn-wir {
	align-items: center; 
	justify-content: center;
}
.btn.btn-social-login {
	display: flex;
	border: 0;
	background-color: #EDEDED; 
	color: var(--main-color); 
	font-weight: 600; 
	font-size: 20px;
}
.btn-chk-social-login {
	display: flex;
	border-radius: 0.8rem; padding: 1rem 2rem; justify-content: center; align-items: center; 
	border: 0; 
	background-color: #EDEDED; 
	color: var(--main-color); 
	font-weight: 600; 
	font-size: 20px;
}
.btn-chk-login {
	background-color: var(--pink-color); padding: 2rem;
}
.contact-buttons-wrapper .btn.btn-pink {
	background: transparent;
}
.contact-buttons-wrapper .btn.btn-pink.active {
	background-color: var(--pink-color);
}

/*
 ||==========================================
 || @HEADER
 ||==========================================
 */
#header {
	padding: 2rem 4rem;
	background-color: #00A59C;
	box-sizing: border-box;
}
#header.home-header {
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
}

#header .global-search-wrapper {
	position: relative;
	transform: none;
	float: left;
	left: 0;
	min-width: 78.6rem;
	max-width: 100%;
	margin-left: 2rem;
	margin-top: 0;
	top: 0;
}
.header-inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.g-recaptcha { display: none; }
.qc-page--inner p { font-size: 18px; }
.qc-page--inner h1 {
	font-size: var(--fs-50-to-30);
    margin-bottom: 0;
    font-weight: bold;
    margin-top: 3rem;
	margin-bottom: 2rem;
}
.page-content { 
	padding: 0 1rem !important;
}

.logo {
	float: left;
}
.logo:hover {
	text-decoration: none;
}
.chk-form {
	margin-bottom: 6rem; padding-top: 3rem;
}
/*
.logo img {
	width: 8vw;
}
*/
.logo img.mobile-logo-img {
	display: none;
}
.header-slogan {
	font-size: 1.875vw;
	color: #00A69D;
	font-weight: 300;
	float: left;
	padding: 0.5rem 2rem;
	padding-bottom: 0;
	padding-left: 7rem;
	height: 3.6rem;
}

ul.menu {
	display: flex;
    align-items: center;
}
ul.menu li a {
	color: #FFFFFF;
	font-size: 22px;
	font-weight: 500;
	padding: 0.5rem;
	display: block;
}
ul.menu > li > a:hover {
	text-decoration: none;
	color: var(--main-color);
}
ul.menu > li.my-account-menu-item > a:hover {
	color: #FFFFFF;
}
.header-sticky.sticky ul.menu li a:hover {
	color: #FFFFFF;
}
.header-sticky.sticky .logo img.desktop-logo-img {
	width: 15rem;
}
ul.menu .user-account {
	padding: 0;
}
ul.menu .user-account:after,
ul.menu .user-account:before {
	display: table;
	float: none;
	clear: both;
	content: '';
}
ul.menu .user-account img,
ul.menu .user-account span {
	float: left;
}
ul.menu .user-account span {
	padding: 0.5rem 1rem;
}
ul.menu .user-account img.user-account--down-chevron {
	padding: 1.5rem 0;
	width: 1.3vw;
}

ul.menu .menu-burger .green-close-burger,
ul.menu .menu-burger .white-close-burger {
	display: none !important;
}
.sticky ul.menu .menu-burger.active .white-close-burger,
ul.menu .menu-burger.active .white-close-burger {
	display: block !important;
}
.home-header ul.menu .menu-burger.active .white-close-burger {
	display: none !important;
}
.home-header ul.menu .menu-burger.active .green-close-burger {
	display: block !important;
}
.home-header.sticky ul.menu .menu-burger.active .green-close-burger {
	display: none !important;
}
.home-header.sticky ul.menu .menu-burger.active .white-close-burger {
	display: block !important;
}
ul.menu .menu-burger.active .white-burger {
	display: none !important;
}

.home-header.sticky .user-account:hover {
	color: #FFFFFF;
}
.home-header .user-account:hover {
	color: var(--main-color);
}
.home-header .user-account:hover .green-smiley,
.home-header .user-account:hover .green-chevron,
.home-header.sticky .user-account:hover .white-smiley,
.home-header.sticky .user-account:hover .white-chevron {
	display: block !important;
}
.home-header .user-account:hover .white-smiley,
.home-header .user-account:hover .white-chevron,
.home-header.sticky .user-account:hover .green-chevron,
.home-header.sticky .user-account:hover .green-smiley {
	display: none !important;
}
.home-header a.user-account.active {
	color: var(--main-color);
}
.home-header a.user-account.active .white-chevron,
.home-header a.user-account.active .white-smiley {
	display: none !important;
}
.home-header a.user-account.active .green-chevron,
.home-header a.user-account.active .green-smiley {
	display: block !important;
}
.home-header.sticky a.user-account.active {
	color: #FFFFFF;
}
.home-header.sticky a.user-account.active .white-chevron,
.home-header.sticky a.user-account.active .white-smiley {
	display: block !important;
}
.home-header.sticky a.user-account.active .green-smiley,
.home-header.sticky a.user-account.active .green-chevron {
	display: none !important;
}
.home-header a.user-account.active .green-chevron {
	transform: rotate(180deg);
}
.home-header a.user-account.active .white-chevron {
	transform: rotate(180deg);
}
.home-header.sticky ul.menu .menu-burger.active:hover .white-burger,
.home-header.sticky ul.menu .menu-burger:hover .green-burger,
.home-header ul.menu .menu-burger:hover .white-burger,
.home-header ul.menu .menu-burger.active:hover .green-burger {
	display: none !important;
}
.home-header.sticky ul.menu .menu-burger:hover .white-burger,
.home-header ul.menu .menu-burger:hover .green-burger {
	display: block !important;
}
ul.menu li a.link-active {
	color: var(--main-color);
}
/* HERO BANNER */
.hero-banner {
	padding-top: 9rem;
	padding-bottom: 4rem;
	height: 100vh;
	background-position: center center;
	background-repeat:no-repeat;
	position: relative;
}
.hero-banner:before {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(51, 51, 51, 0.53);
	top: 0;
	content: '';
}
.hero-banner.charters-hero-banner:before {
	background-color: rgba(38, 57, 61, 0.7);
}
.hero-banner.hotels-hero-banner:before {
	background-color: rgba(51, 51, 51, 0.63);
}
.hero-info-bs {
	position: absolute;
	top: 26%;
	transform: translateY(-25%);
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.hero-title {
	color: #00A69D;
	font-size: var(--fs-85-to-40);
	font-weight: bold;
	text-align: center;	
	line-height: 1;
}
.hotels-hero-banner .hero-title,
.charters-hero-banner .hero-title {
	font-size: var(--fs-100-to-55);
}
.hero-title-2 {
	color: #00A69D;
	font-size: var(--fs-50-to-30);
	text-align: center;	
	line-height: 1;
	font-weight: 400;
	padding: 0 2rem;
}
.hero-subtitle,
.hero-subtitle a {
	color: #FFFFFF;
	font-family: "Learning Curve";
	font-weight: bold;
	font-size: var(--fs-97-to-45);
	text-align: center;
	line-height: 1;
}
.hotels-hero-banner .hero-info-bs,
.charters-hero-banner .hero-info-bs {
	top: 15%;
}
.charters-hero-banner .hero-title,
.hotels-hero-banner .hero-title { margin-bottom: 1rem; }

/* GLOBAL SEARCH */
.global-search-wrapper {
	width: calc(100% - 4rem);
	max-width: 1032px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: 5rem;
	transform: translateX(-50%) translateY(-50%);
	z-index: 9;
}
.global-search {
	background-color: #FFFFFF;
	border-radius: 0.6rem;
	padding: 0.8rem 2rem;
	border: 0.3rem solid #FFFFFF;
}
.global-search-wrapper.active .global-search {
	border-color: var(--pink-color);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.global-search-icon {
	float: left;
}
.global-search-icon img {
	width: 3rem;
}
input.global-search-input {
	float: left;
	border: 0;
	font-size: 24px;
	padding: 0;
	margin-left: 2rem;
	border-radius: 0;
	width: calc(100% - 5rem);
}
input.global-search-input:hover:focus,
input.global-search-input:focus,
input.global-search-input:hover {
	border: 0;
}
.global-search-dropdown {
	display: none;
	position: absolute;
	background-color: #FFFFFF;
	width: 100%;
	top: 100%;
	left: 0;
	margin-top: 0.5rem;
	z-index: 100;
	border-radius: 0.8rem;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	overflow: hidden;
}
.global-search-wrapper.active .global-search-dropdown {
	display: block;
}
.global-search-dropdown-results {
	max-height: 28rem;
	height: auto;
	overflow-y: auto;
}
.global-search-dropdown-results-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.global-search-dropdown-results-list li a {
	font-size: 24px;
	color: var(--main-text-color);
	padding: 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
}
.global-search-dropdown-results-list li a:hover {
	text-decoration: none;
	background-color: #EFEDED;
}
.global-search-dropdown-results-list li:last-child .dashed-line-v {
	display: none;
}
.global-search-dropdown-results-list li a .img-wrapper {
	margin: 0;
	margin-right: 2rem;
	width: 70px;
	text-align: center;
}
/*
.global-search-dropdown-results-list li a .img-wrapper img {
	width: 7rem;
}
*/
.desktop-logo-img {
	width: 9.27vw;
}
.dashed-line {
	background: url('https://www.alohotels.ro/code/res/images/dashed-line.png');
	width: calc(100% - 5rem);
	height: 0.2rem;
	margin-left: 5rem;
	float: left;
}

.hero-description {
	text-align: center;
	margin-top: 3rem;
	color: #E8425C;
	position: absolute;
	bottom: 25%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.hero-description--first {
	font-size: var(--fs-36-to-28);
	font-weight: bold;
	margin: 0;
}
.hero-description--second {
	font-size: var(--fs-30-to-22);
	margin: 0;
}


.hero-scroll-btn {
	color: #00A69D;
	width: 100%;
	text-align: center;
	font-size: 24px;
	position: absolute;
	bottom: 0;
	margin-bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
}
.hero-scroll-btn:hover {
	text-decoration: none;
}
.hero-scroll-btn div { margin-bottom: 0.5rem; }

.hero-scroll-hashtag {
	color: #FFFFFF;
	width: 100%;
	text-align: center;
	font-size: 24px;
	position: absolute;
	bottom: 0;
	margin-bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
}

.header-menu {
	float: right;
}

/* HOME */
.home-content {
	margin-top: 3rem;
}

.colored-box:after,
.colored-box:before {
	clear: both;
	content: '';
	display: table;
}
.colored-box {
	padding: 5rem;
}
.colored-box-icon {
	float: left;
	width: 45%;
}
.box-info {
	float: left;
	width: 55%;
	text-align: center;
}
.box-info--title {
	color: #FFFFFF;
	font-size: 100px;
	font-weight: bold;
	margin: 0;
}
.box-info--description {
	color: #4A4A49;
	font-size: 36px;
	font-weight: 600;
	margin: 0;
}
.cbox-1 {
	background-color: #BBCE00;
}

.home-section {
	margin-bottom: 2vw;
}

.tli--address { font-size: 18px; }

/*
	CATEGORY BLOCK
*/
.category-block {
	background-color: #BBCE00;
	width: 100%;
	height: 28.125vw;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3vw;
}
.category-block--info {
	text-align: center;
}
.category-block--title {
	color: #FFFFFF;
	font-size: var(--fs--cbt);
	font-weight: bold;
}
.category-block--description {
	color: #4A4A49;
	font-size: var(--fs-36-to-24);
	font-weight: 600;
}
.category-block--image {
	width: 18.2vw;
	padding: 1vw;
}

/*
	CATEGORY BLOCK
*/
.category-block-2 {
	width: 100%;
	height: 28.125vw;
	position: relative;
}
.category-block-2--img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.opacity-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.category-block-2--title {
	color: #FFFFFF;
	font-size: var(--fs--dbt);
	font-weight: bold;
	margin-bottom: 1vw;
}
.category-block-2--description {
	color: #FFFFFF;
	font-size: var(--fs-36-to-24);
	margin-bottom: 3vw;
}

/*
	DESTINATION BLOCK
*/
.destination-block {
	background-color: #F7F7E8;
	text-align: center;
	padding: 2.5vw 1vw;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	flex: 1;
}
.destination-block--title {
	color: #BBCE00;
	font-size: var(--fs--dbt);
	line-height: 1;
	font-weight: bold;
	margin-bottom: 1vw;
}
.destination-block--description {
	color: #4A4A49;
	font-size: var(--fs-36-to-24);
	margin-bottom: 4vw;
	padding: 0 2vw
}
.destination-block--btn {
	background-color: #BBCE00;
	color: #4A4A49;
	font-weight: bold;
	border: 0;
}

/*
	IMAGE BLOCK
*/
.image-block--img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.purple-section .category-block,
.purple-section .destination-block--btn {
	background-color: #CE9EC8;
}
.purple-section .destination-block--title {
	color: #CE9EC8;
}
.purple-section .destination-block {
	background-color: #EFEEEF;
}

.teal-section .category-block,
.teal-section .destination-block--btn {
	background-color: #67BFB5;
}
.teal-section .destination-block--title {
	color: #67BFB5;
}
.teal-section .destination-block {
	background-color: #E7F2F1;
}

.yellow-section .category-block,
.yellow-section .destination-block--btn {
	background-color: #FCC200;
}
.yellow-section .destination-block--title {
	color: #FCC200;
}
.yellow-section .destination-block {
	background-color: #F9F4E7;
}

.blue-section .category-block,
.blue-section .destination-block--btn {
	background-color: #78B6E4;
}
.blue-section .destination-block--title {
	color: #78B6E4;
}
.blue-section .destination-block {
	background-color: #EDF4F8;
}

.red-section .category-block,
.red-section .destination-block--btn {
	background-color: #EE7882;
}
.red-section .destination-block--title {
	color: #EE7882;
}
.red-section .destination-block {
	background-color: #FBF3F2;
}

/*
	FEATURED SECTION
*/
.featured-offer {
	padding: 0 2rem;
	margin-bottom: 2rem;
}
.featured-offer--image {
	width: 100%;
	height: 26rem;
	object-fit: cover;
	margin-bottom: 1rem;
}
.featured-offer--title {
	font-weight: bold;
	font-size: 24px;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	color: #4A4A49;
}
.featured-offer--address {
	margin-bottom: 1rem;
	font-size: 18px;
	color: #4A4A49;
}
.featured-offer .distance-from {
	margin-bottom: 2rem;
	font-size: 18px;
	color: #4A4A49;
}
.featured-offer--bottom {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
.featured-offer--price-info {
	border-top: 0.1rem solid #EE7882;
	border-bottom: 0.1rem solid #EE7882;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	margin-right: 1rem;
	padding: 0.2rem;
}
.featured-offer--price-info.flex-row {
	padding-left: 0;
	padding-right: 0;
}
.featured-offer--btn--v2 {
	font-size: 24px; 
	color: var(--main-color); 
	border: 0; 
	padding: 0.5rem 2rem;
}
.featured-offer--price-cut {
	text-decoration: line-through;
	font-size: 20px;
	color: #4A4A49;
	margin-right: 3rem;
}
.featured-offer--price {
	color: #4A4A49;
	font-size: 30px;
	display: inline-block;
}
.featured-offer--btn-wrapper {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;	
}
.featured-offer--btn {
	color: #FFFFFF;
	background-color: #EE7882;
	font-size: 20px;
	font-weight: 500;
	border: 0;
	border-radius: 0.5rem;
}
.featured-offer--btn.main-color {
	background-color: var(--main-color);
}
.featured-offer--price-info.main-color {
	border-top: 0.2rem solid var(--main-color);
	border-bottom: 0.2rem solid var(--main-color);
}

/*
	HOME SERVICES
*/
.home-services {
	background-color: #00A69D;
	padding: 5rem;
}
.services-title {
	font-size: var(--fs-65-to-30);
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	align-self: start;
	padding-top: 2rem;
}
.service-item {
	color: #FFFFFF;
	text-align: center;
	margin-bottom: 2.6vw;
	padding: 2rem;
}
.service-item-image {
	display: flex;
	align-items: center;
	height: 18rem;
	padding: 0 5rem;
}
.service-item .img-responsive {
	margin: 0 auto;
}
.service-title {
	font-size: var(--fs-36-to-24);
	font-weight: bold;
}
.service-description {
	font-size: 1.25vw;
	padding: 1rem 2.6vw;
}

/*
	SECTION SERVICES
*/
.section-services {
	background-color: #00A69D;
	padding: 5rem 0;
}
.section-service-item {
	color: #FFFFFF;
	text-align: center;
	padding: 2rem;
}
.ssi--icon {
	height: 14rem;
	display: flex;
	align-items: center;
	flex-direction: row
}
.ssi--icon img {
	margin: 0 auto;
}
.ssi--title {
	font-size: 24px;
	font-weight: bold;
}
.ssi--description {
	font-size: 20px;
	padding: 1rem 2rem;
}

/* COOKIES INFO */
#cookies-info.toggled {
	display: block;
}

/* NEWSLETTER */
.newsletter-text {
	color: #FFFFFF;
	font-size: var(--fs-36-to-30);
	font-weight: 600;
}
.newsletter-input-wrapper {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	padding: 0 2rem;
	border-radius: 0.8rem;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	position: relative;
}
.newsletter-input-wrapper:after {
	content: '';
	position: absolute;
	height: 1rem;
    width: calc(100% - 4rem);
    background-image: linear-gradient(to right, #CECECE 65%, rgba(255,255,255,0) 0%);
    background-position: center;
    background-size: 20px 2px;
    background-repeat: repeat-x;
    overflow:hidden;
	margin-left: 2rem;
	left: 0;
	bottom: 0;
	margin-bottom: 0.5rem;
}
input.newsletter-input {
	border: none !important;
	width: 100%;
	display: block;
	height: 100%;
	font-size: 24px;
}
input[type="submit"].newsletter-btn {
	width: 100%;
	background-color: var(--pink-color);
	font-size: 24px;
	border: none;
	color: #FFFFFF;
	border-radius: 0.8rem;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 1.3rem 2rem;
	margin-left: 1rem;
	font-weight: bold;
}

.qc-popup.qc-prevent-close > .popup-wrapper {
	left: 50%;
	top: 50%;
	background-color: #FFFFFF;
	height: auto;
	position: absolute;
}
.cs-newsletter-popup-content {
	font-size: 18px;
}
.cs-popup-btn-confirm {
	background-color: var(--main-color);
	color: #FFFFFF;
	font-size: 16px;
	cursor: pointer;
	padding: 1rem 2rem;
	border-radius: 0.6rem;
}
.cs-popup-btn-reject {
	margin-left: 1rem;
	font-size: 16px;
	color: var(--main-color);
	font-size: 16px;
	cursor: pointer;
}
.qc-popup.qc-prevent-close {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	z-index: 999999
}

#footer {
	padding: 5rem 1rem;
}
.footer--logo-wraper {
	text-align: center;
	padding-right: 12rem;
	padding-left: 3rem;
}
.footer-column {
	padding: 0 1rem;
}
.footer-link-list li a {
	white-space: nowrap;
}
.footer-center-column,
.footer-wrapper {
	display: flex; 
	justify-content: space-between;
}
#footer .container {
	max-width: 96rem;
}
.footer-right-column {
	padding-left: 6rem;
}
.footer--social-wrapper {
	display: flex; 
	justify-content: space-between; 
	margin-top: 4rem; 
	align-items: center;
}

/*
 ||==================================================
 || @TRAVEL LIST ITEM
 ||==================================================
 */
.travel-list-item { border: 0.1rem solid #EFEFEF; padding: 2rem; }
.tli--image {
	width: 100%;
	height: 26rem;
	object-fit: cover;
}
.tli--title {
	color: #4A4A49;
	font-size: 2.4rem;
	font-weight: bold;
	margin: 1rem 0;
	margin-top: 0;
}
.tli--description p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 20px;
	margin-bottom: 0;
}
.tli--btn-details {
	background-color: #00A59C;
	color: #FFFFFF;
	font-size: 2rem;
	font-weight: 500;
	border-radius: 0.8rem;
	width: 100%;
	border: 0;
}
/* ADDITIONAL INFORMATIONS */
.tli--additional-info { background-color: #EFEFEF; padding: 1rem 2rem; }
/* POPULAR FACILITY */
.tli--facility { margin-right: 2rem; }
.tli--facility-name { font-size: 14px; font-weight: 500; }

.travel-list-item-center { padding: 0 2rem; }
ul.stars { list-style: none; white-space: nowrap; }
ul.stars:after,
ul.stars:before {
	clear: both;
	content: '';
	display: table;
	float: none;
}
ul.stars li { float: left; }
ul.stars li img { width: 2rem; }
.tvi--stars img {
	margin-right: 0.5rem;
}
.tvi--stars {
	margin-left: 1rem;
}
.tvi--header .distance-from {
	margin-right: 1rem;
	font-size: 20px;
}
.box-offer-img {
	width: 100%;
	object-fit: cover;
}
.travel-list-item .distance-from {
	margin-bottom: 1rem;
	font-size: 18px;
}
.travel-list-item-right {
	display: flex;
	height: 100%;
	justify-content: flex-end;
	padding: 1rem;
	flex-direction: column;
	padding-top: 5rem;
}
.tli--price-min-offer {
	font-size: 30px;
	font-weight: bold;
}
.tli--price-min-offer .price-from-text { display: none; }
.tli--initial-price-min-offer {
	font-size: 20px; 
	text-decoration: line-through;
	font-weight: 400;
}
.tli--price-wrapper {
	border-top: 0.2rem solid var(--main-color);
	border-bottom: 0.2rem solid var(--main-color);
	padding: 1rem 0;
	font-size: 30px;/* var(--fs-30-to-30); */
}
.tli--price .q-price {
	font-weight: bold;
}
.tli--initial-price {
	margin-right: 2rem; 
	font-size: 20px; 
	text-decoration: line-through;
}
.tli--initial-price .q-price {
	font-weight: 400;
}
.tli--initial-price .price-from-text,
.tli--price .price-from-text {
	display: none;
}
.tli--load-more-wrapper {
	margin: 5rem 0;
	text-align: center;
	padding: 0 2rem;
}
.tli--load-more {
	border: 0.2rem solid var(--pink-color); 
	color: var(--pink-color); 
	font-size: 24px; 
	font-weight: 500; 
	border-radius: 0.8rem;
	padding: 1rem 2rem;
	display: inline-flex;
	margin-top: 5px;
}
.home--hero-section-wrapper {
	margin: 2rem 0;
	text-align: center;
	padding: 0 2rem;
}
.home--hero-section {
	border: 0.2rem solid var(--pink-color); 
	color: #FFFFFF; 
	text-align: center;
	font-size: 24px; 
	font-weight: 500; 
	border-radius: 0.8rem;
	padding: 1rem 2rem;
	display: flex;
	margin-top: 5px;
}
.discount-badge {
	position: absolute;
	top: 0;
	margin-top: -2rem;
	background-color: #EFEFEF;
	width: calc(100% - 1rem);
	color: #EE7882;
	font-weight: bold;
	font-size: 30px;
	padding: 1rem;
	padding-left: 2rem;
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
	border-top: 0rem !important;
	border-left: 0rem !important;
}
.discount-badge.special-offer {
	font-size: 22px;
	text-align: center;
}
.discount-badge img {
	position: absolute;
	bottom: 0;
	right: 0;
	margin-right: 2rem;
}

.discount-badge.special-offer span {
	position: initial;
	color: #EE7882;
	font-size: 2rem !important;
}

/*
	FILTERS
*/
.list-filter {
	background-color: #F7F7F7 !important; /* in Travel.css */
	margin-right: 2rem;
	padding: 3rem !important;
}

/*
	TOP SEARCH
*/
.top-search {
	border-bottom: 0.2rem solid #D3D3D3;
	padding: 2rem 0;
	margin-bottom: 2rem;
}
.top-search.sticky {
	margin-bottom: 0;
	position: fixed;
	top: 0;
	width: 100%;
	left: 0;
	background-color: #FFFFFF;
	z-index: 3;
	padding: 1rem 0;
	margin-top: 8rem;
}

.top-search--text,
.top-search--destination,
.top-search--calendar,
.top-search--passengers,
.top-search--change-btn {
	float: right;
}
.top-search--change-btn {
	font-size: 1.04vw;
	color: #E8425C;
	font-weight: bold;
	position: relative;
}
.top-search--change-btn:hover {
	text-decoration: none;
}
.top-search--change-btn-line {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 95%;
}
.top-search--destination,
.top-search--calendar,
.top-search--passengers {
	font-size: 1.04vw;
	margin-right: 4rem;
}
.top-search--text {
	font-size: 1.25vw;
}
.top-search--text img {
	margin-left: 2rem;
}

.search-box {
	padding: 1rem 0.5rem;
}
.search-box-inner {
	background-color: #FFFFFF;
	border-radius: 0.8rem;
	padding: 0 1rem;
}
.search-box-inner img {
	margin-right: 0;
}
.minus-margin {
	margin-left: -1rem;
	margin-right: -1rem;
	align-items: center;
}
.top-search--search-btn {
	float: right;
	background-color: var(--pink-color);
	color: #FFFFFF;
	font-weight: bold;
	font-size: 1.04vw;
	padding: 1rem 4rem;
	border-radius: 0.5rem;
}
.top-search--search-btn:hover {
	text-decoration: none;
}
.top-search--search-btn img {
	margin-right: 2rem;
}
.top-search--edit-passengers {
	float: right;
	background-color: #EFEDED;
	margin-right: 2rem;
	padding: 1rem 4rem;
	color: var(--pink-color);
	font-size: 1.04vw;
	border-radius: 0.5rem;
	white-space: nowrap;
}
.top-search--edit-passengers:hover {
	text-decoration: none;
}
.top-search--edit-passengers img {
	margin-right: 2rem;
}

.tlis--panel-header {
	text-align: center;
}
.tlis--panel-header h1 {
	font-weight: bold;
	color: #00A59C;
	font-size: 30px;
}
.tlis--subtitle {
	color: #8E8E8E;	
	margin-top: 1vw;
	margin-bottom: 1vw;
}
.tlis--subtitle h2 {
	font-size: 3rem;
	font-weight: 400;
}
.tlis--subtitle h3 {
	font-size: 2.4rem;
	font-weight: 400;
}


/* NO RESULTS FOUND */
.no-results-text {
	margin-top: 2rem;
	margin-bottom: 8rem;
	text-align: center;
	width: 100%;
}
.no-results-text h1 {
	font-family: "Learning Curve";
	font-weight: bold;
	font-size: 5vw;	
}
.no-results-text p {
	font-size: 1.56vw;
	color: #636362;
}
.no-results-text strong {
	display: block;
	color: #00A59C;
	font-size: 1.56vw;
}

/*
	TRAVEL VIEW ITEM
*/
.no-offers-text {
	text-align: center;
	padding: 5rem 2rem;
}
.no-offers-text img {
	max-width: 100%;
	margin-bottom: 3rem;
}
.no-offers-title {
	font-family: "Learning Curve";
	font-size: 66px;
	margin-bottom: 2rem;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.7);
}
.no-offers-info {
	width: 70rem;
	max-width: 100%;
	display: inline-block;
	margin-bottom: 5rem;
}
.no-offers-info p {
	font-size: 30px;
}
.no-offers-text .tvi--back-link img {
	margin-bottom: 0;
}
.no-offers-return {
	margin-bottom: 3rem;
}
.no-offers-return a {
	display: inline-flex;
}
.tvi--header {
}
.tvi--header.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 3;
	background-color: #FFFFFF;
	border-bottom: 0.2rem solid #CECECE;
}
.tvi--header.sticky .tvi--back-link {
	display: none;
}
.tvi--header.sticky .tvi--title {
	font-size: 24px;
	margin-bottom: 0;
	line-height: 1;
	margin-top: 0;
}
.tvi--header.sticky .tvi--title-wrapper {
	margin-bottom: 0.5rem;
}
.tvi--header-inner {
	border-bottom: 0.2rem solid #CECECE;
	padding: 1rem;
}
.tvi--header.sticky .tvi--navigation-menu {
	margin-bottom: 0;
}
.tvi--header.sticky .tvi--navigation-menu li a {
	padding: 1rem 2rem;
}
.tvi--header .tvi--sticky-price {
	display: none;
}
.tvi--header.sticky .tvi--sticky-price {
	display: block;
}
.tvi--header .tvi--title-wrapper .tvi--back-link {
	display: none;
}
.tvi--header.sticky .tvi--title-wrapper .tvi--back-link {
	display: block;
	margin: 0;
}
.tvi--title-wrapper {
	margin-bottom: 2rem;
}
@media (max-width: 1350px)
{
	.tvi--header .tvi--sticky-price .btn-primary {
		padding: 1rem;
		font-size: 16px;
	}
}
.js-travel-item-description + [data-readmore-toggle] {
	display: flex !important;
}
.tvi--back-link {
	color: var(--pink-color);
	font-size: 20px;
	margin-bottom: 2rem;
}
.tvi--back-link:hover {
	text-decoration: none;
}
.tvi--back-link img {
	margin-right: 1rem;
}
.tvi--title {
	font-weight: bold;
	font-size: 4rem;
	color: #4A4A49;
	margin-bottom: 0;
	margin-top: 0;
}

/* TRAVEL VIEW ITEM :: NAVIGATION MENU (WHICH IS ALSO STICKY) */
.tvi--navigation-menu ul {
	list-style: none;
}
.tvi--navigation-menu ul:after,
.tvi--navigation-menu ul:before {
	content: '';
	display: table;
	clear: both;
	float: none;
}
.tvi--navigation-menu {
	margin-bottom: 2rem;
}
.tvi--navigation-menu li {
	padding: 0;
	float: left;
}
.tvi--navigation-menu li a {
	font-weight: 600;
	color: var(--main-color);
	font-size: 20px;
	padding: 2rem 3rem;
	display: block;
}
.tvi--navigation-menu li:first-child a {
	padding-left: 0;
}
.tvi--navigation-menu li a:hover {
	text-decoration: none;
}

.tvi--sticky-price {
	position: relative;
	height: 100%;
}
.tvi--sticky-price .tvi--price-column {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 0;
	background-color: #F7F7F7;
	right: 0;
	padding: 1rem;
	padding-bottom: 0.5rem;
}
.tvi--sticky-price .tvi--price-column .q-pricing {
	margin: 0.5rem 0;
	padding: 0 0.5rem;
	border: 0;
}

/* HOTEL VIEW OWL CAROUSEL */
.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-stage-outer {
	height: 50rem;
	background-color: #F7F7F7;
}
.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-item img {
	width: auto;
	height: 50rem;
	object-fit: cover;
	max-width: 100%;
	margin: 0 auto;
}
.myacc--profile-text {
	color: #636362; font-size: 30px;
}
.cs-gmap-embed {
	width: 100%;
}

/* TRAVEL ITEM PRICE COLUMN */
.tvi--gallery-column {
	padding-right: 3rem;
}
.tvi--price-column-wrapper {
	background-color: #F7F7F7;
}
.tvi--price-column {
	padding: 3rem;
}
.tvi--price-column .q-pricing {
	border-top: 0.2rem solid var(--main-color);
	border-bottom: 0.2rem solid var(--main-color);
	margin-top: 1rem;
	font-size: 30px;
	margin-bottom: 1rem;
	padding: 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.tvi--price-column .discount {
	white-space: nowrap;
}
.tvi--price-column .price-from-text {
	font-size: 20px;
}
.tvi--price-column .q-pricing .price {
	font-size: 18px;
	text-decoration: line-through;
	margin-right: 1rem;
}
.tvi--price-column .q-pricing .price .price-from-text {
	display: none;
}
.tvi--price-column--checkin-wrapper {
	display: inline-block;
}
.tvi--price-column .q-price {
	font-weight: bold;
}

.tvi--price-column--checkin-info-wrapper {
	display: inline-block;
}
.tvi--price-column--checkin-info-wrapper img {
	margin-right: 1rem;
}
.tvi--btn-goto-rooms {
	display: flex;
}

.tvi--description-full {
	display: none;
}
.btn-show-description {
	margin-top: 2rem;
	font-size: 20px;
	color: var(--main-color);
	font-weight: 500;
	display: inline-block;
}
.btn-show-description:hover {
	text-decoration: none;
}

.tvi--section-title {
	margin-top: 3rem;
	color: #9C9D9D;
	margin-bottom: 2rem;
	font-weight: bold;
	font-size: 24px;
}

.tvi--price-search-wrapper {
	background-color: var(--yellow-color);
	padding: 1rem 0;
}

.tvi--prices-wrapper {
	background-color: #F7F7F7;
}
.tvi--price-column--passengers,
.tvi--price-column--dates {
	display: flex;
	font-size: 20px; 
	margin-bottom: 1rem;
}
.tvi--sticky-price .tvi--price-column--dates,
.tvi--sticky-price .tvi--price-column--passengers {
	margin-bottom: 0.3rem;
}
.room-row {
	background-color: #FFFFFF;
	padding: 1rem 2rem;
	margin-bottom: 2rem;
}
.btn-price-book {
	background-color: var(--main-color);
	color: #FFFFFF;
	border: 0;
	font-weight: 500;
	font-size: 20px;
	border-radius: 0.8rem;
}
.btn-price-book-mobile .btn-price-book {
	width: 100%;
	margin-top: 1rem;
}

.chk-support-section {
	background-color: var(--main-color); 
	flex-direction: row; 
	justify-content: center; 
	padding: 4rem 0; 
	display: flex; 
	align-items: center; 
	color: #FFFFFF;
}
.chk--travel-passengers img { margin-right: 0; }
.chk--travel-item-popular-facility,
.chk--travel-passengers,
.chk--travel-dates,
.chk--travel-item-distance-from,
.chk--travel-checkin-hours,
.chk--travel-item-address { font-size: 18px; }

.btn-price-search {
	background-color: var(--pink-color);
	color: #FFFFFF;
	border: 0;
	font-size: 22px;
}
.chk--btn-next {
	padding: 2.5rem 3rem; 
	background-color: #A1C517; 
	color: #FFFFFF; 
	font-size: 24px; 
	border-radius: 0.8rem; 
	display: inline-flex; 
	align-items: center;
	float: right;
}
.chk--btn-next-wrapper {
	margin-top: 2rem; 
	margin-bottom: 6rem;
}
.brw-panel {
	padding: 2rem;
}
.brw--travel-item-data {
	padding: 1rem 2rem;
}
.brw--travel-item-data h5 {
	font-size: 22px;
}
.brw--travel-item-data {
	font-size: 18px;
}
.user-booking-view .price-header {
	text-align: left;
}
.user-booking-view .price-item {
	font-size: 18px;
}
.brw-link {
	color: var(--main-text-color);
	font-weight: normal;
	text-decoration: underline;
	margin-bottom: 1rem;
	font-size: 18px;
}

.search-persons-container {
	position: absolute;
    border: .2rem solid var(--pink-color);
    background-color: #fff;
    z-index: 999;
    display: none;
    color: #222;
	margin-top: 0.5rem;
	border-radius: 0.8rem;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	width: 100%;
	left: 0;
	min-width: 25rem;
}
.search-persons-container.toggled {
	display: block; 
}

.price-title {
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 0.5rem;
}
.price-header {
	color: #9C9D9D;
	font-size: 24px;
	padding: 2rem;
}

.btn-continue-chk {
	margin-top: 8rem;
}

#owl-single-item {
	margin-bottom: 2rem;
}
#owl-single-item.owl-theme .owl-stage-outer {
	z-index: 10;
}
#owl-single-item.owl-theme .owl-nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}
#owl-single-item.owl-theme .owl-nav .owl-prev {
	position: absolute;
	height: 100%;
	top: 0;
	z-index: 100;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: rgba(247, 247, 247, 0.4);
	padding: 2rem;
}
#owl-single-item.owl-theme .owl-nav .owl-prev img,
#owl-single-item.owl-theme .owl-nav .owl-next img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
#owl-single-item.owl-theme .owl-nav .owl-prev img,
#owl-single-item.owl-theme .owl-nav .owl-next img {
	display: none;
}
#owl-single-item.owl-theme .owl-nav .owl-prev.disabled img.active,
#owl-single-item.owl-theme .owl-nav .owl-next.disabled img.active {
	display: none;
}
#owl-single-item.owl-theme .owl-nav .owl-prev.disabled img,
#owl-single-item.owl-theme .owl-nav .owl-next.disabled img {
	display: block;
}
#owl-single-item.owl-theme .owl-nav .owl-prev img.active,
#owl-single-item.owl-theme .owl-nav .owl-next img.active {
	display: block;
}
#owl-single-item.owl-theme .owl-nav .owl-prev.disabled,
#owl-single-item.owl-theme .owl-nav .owl-next.disabled {
	opacity: 1;
}
#owl-single-item.owl-theme .owl-nav .owl-next {
	position: absolute;
	top: 0;
	height: 100%;
	right: 0;
	margin: 0;
	padding: 0;
	background-color: rgba(247, 247, 247, 0.4);
	padding: 2rem;
	z-index: 100;
}


.owl-item .thumbnail img {
	width: 100%;
	height: 10rem;
	object-fit: cover;
}


.tvi--description {
	font-size: 20px;
	margin-top: 4rem;
}
.tvi--btn-show-map {
	color: var(--main-color); font-size: 20px; font-weight: 500;
}
.tvi--price-column--hotel-property,
.tvi--price-column--popular-facility {
	margin-bottom: 0.5rem;
	font-size: 18px;
}
.tvi--price-column--hotel-property { color: #F1860F; font-weight: bold; }
.tvi--price-column--hotel-property-no-icon,
.tvi--price-column--popular-facility-no-icon {
	width: 4rem;
}
.tvi--price-column--checkin-hours { margin-top: 1rem; font-size: 18px; }
.tvi--price-column--panel {
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
}
.tvi--price-column--panel-title {
	padding-left: 4rem; 
	font-weight: bold; 
	font-size: 20px;
}
.other-offers .owl-carousel {
	margin-bottom: 4rem;
}
.other-offers .owl-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
}
.other-offers .owl-carousel .owl-nav .owl-next {
	position: absolute;
	right: 0;
}
.tvi--related-info {
	margin-top: 3rem;
	margin-bottom: 6rem;
	text-align: center;
}
.tvi--related-info p {
	color: var(--main-color);
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 2rem;
}
.tvi--more-hotels {
	display: inline-block;
	color: var(--pink-color);
	font-size: 24px;
	border: 0.2rem solid var(--pink-color);
	padding: 1rem 2rem;
	font-weight: 500;
	border-radius: 0.5rem;
}
.tvi--more-hotels:hover {
	text-decoration: none;
}
.tvi--more-hotels img {
	margin-right: 1rem;
}


.other-offer-item-img {
	width: 100%;
	height: 17rem;
	object-fit: cover;
}
.other-offer-details ul.stars {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.other-offer-details ul.stars li {
	padding: 0 0.2rem;
}
.other-offer-details h4 {
	margin-bottom: 1rem;
	font-weight: bold;
	font-size: 22px;
}
.hotel-target {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}
.hotel-target img {
	width: 24px !important;
	margin-right: 1rem;
}
.hotel-target--text {
	color: var(--pink-color);
	font-size: 18px;
}
.other-offer-details .price-wrapper {
	display: flex;
	border-top: 0.2rem solid var(--main-color);
	padding: 1rem;
	justify-content: center;
	align-items: center;
}
.other-offer-details .price-wrapper .initial-price {
	font-size: 18px;
	margin-right: 2rem;
	text-decoration: line-through;
}
.other-offer-details .price-wrapper .total-price {
	font-size: 24px;
}
.other-offer-itm-url {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--main-color);
	color: #FFFFFF;
	border-radius: 0.5rem;
	flex-direction: row;
	padding: 1rem;
}
.other-offer-itm-url:hover {
	text-decoration: none;
}
.other-offer-itm-url img {
	width: auto !important;
	display: inline-block !important;
	margin-right: 1rem;
}
.other-offer-itm-url .btn-text {
	line-height: 1;
	font-size: 22px;
	font-weight: bold;
}

.tvi--room-facilities,
.tvi--hotel-facilities {
	border-bottom: 0.2rem solid #CECECE;
	padding-bottom: 2rem;
}
.facilities-category {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 1rem;
}
.facilities {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-right: 4rem;
}
.facilities li {
	padding-left: 3rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	position: relative;
	font-size: 18px;
}
.facilities li:before {
	position: absolute;
	content: '';
	width: 2rem;
	height: 2rem;
	background-color: var(--main-color);
	border-radius: 50%;
	left: 0;
}
.tvi--hotel-facilities .facility-item {
	padding-left: 3rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	position: relative;
	font-size: 18px;
}
.tvi--hotel-facilities .facility-item:before {
	position: absolute;
	content: '';
	width: 2rem;
	height: 2rem;
	background-color: var(--main-color);
	border-radius: 50%;
	left: 0;
}

.btn-primary {
	background-color: var(--main-color);
	color: #FFFFFF;
	width: 100%;
	border: 0;
	font-size: 20px;
	border-radius: 1rem;
	line-height: 1;
}
.btn-primary:hover {
	background-color: var(--main-color);
}
.btn-primary img {
	margin-right: 1rem;
}

/* PANEL :: MOSTLY USED ON CHECKOUT */
.panel {
	margin-bottom: 4rem;
	margin-top: 2rem;
}
.panel-title {
	font-weight: 400;
	font-size: 30px;
	margin-bottom: 2rem;
	color: #8E8E8E;
}
.panel-title span {
	color: var(--main-color);
}
.checkout-subsection {
	background-color: #F6F6F5;
	color: var(--main-color);
	font-size: 20px;
	padding: 1rem;
	margin-bottom: 2rem;
}
.checkout-subsection img {
	margin-right: 1rem;
}
.form-label {
	font-weight: bold;
	font-size: 20px;
}
.form-group-row {
	margin-right: -0.75rem;
	width: auto;
	margin-left: -0.75rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.form-group {
	padding: 0 0.75rem;
}
.form-group .select2 {
	font-size: 20px;
	width: 100% !important;
	margin-bottom: 2rem;
}
.form-group .select2 .select2-selection {
	height: 5.4rem;
	box-sizing: border-box;
	border: 0.2rem solid #CECECE;
}
.form-group .select2 .select2-selection .select2-selection__rendered {
	padding: 1rem;
}
.dashed-line-v {
	height: 1rem;
    width: 100%;
    background-image: linear-gradient(to right, #CECECE 65%, rgba(255,255,255,0) 0%);
    background-position: center;
    background-size: 20px 2px;
    background-repeat: repeat-x;
    overflow:hidden;
}
.dashed-line-v2 {
	height: 0.2rem;
}
.dashed-line-v3 {
	background-image: linear-gradient(to right, #434342 65%, rgba(255,255,255,0) 0%);
}
.dashed-line-v4 {
	background-image: linear-gradient(to right, #8E8E8E 65%, rgba(255,255,255,0) 0%);
	background-size: 12px 2px;
	height: 0.5rem;
}
.chk-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: bold;
  color: var(--main-text-color);
}
.chk-input::-moz-placeholder { /* Firefox 19+ */
  font-weight: bold;
  color: var(--main-text-color);
}
.chk-input:-ms-input-placeholder { /* IE 10+ */
  font-weight: bold;
  color: var(--main-text-color);
}
.chk-input:-moz-placeholder { /* Firefox 18- */
  font-weight: bold;
  color: var(--main-text-color);
}
.login-wrap .chk-input::-webkit-input-placeholder {
	font-weight: normal;
	color: #8C8C8C;
}
.login-wrap .chk-input::-moz-placeholder {
	font-weight: normal;
	color: #8C8C8C;
}
.login-wrap .chk-input:-ms-input-placeholder {
	font-weight: normal;
	color: #8C8C8C;
}
.login-wrapdestination-header .chk-input:-moz-placeholder {
	font-weight: normal;
	color: #8C8C8C;
}
input.chk-input {
	font-size: 20px;
	width: 100%;
	border: 0.2rem solid #CECECE;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
	padding: 1rem;
}
input.chk-input:focus,
input.chk-input:hover {
	border: 0.2rem solid #CECECE;
}
.form-group-birthdate {
	margin-left: -0.25rem;
	margin-right: -0.25rem;
}
.form-group-birthdate .col-sm-3,
.form-group-birthdate .col-sm-5,
.form-group-birthdate .col-sm-4 {
	padding: 0 0.25rem;
}
.checkout-sidebar {
	margin-top: 2rem;
	padding-left: 2rem;
}
.checkout-sidebar > .row {
	background-color: #F7F7F7;
	padding: 1rem;
}
.chk-sidebar-offer .price-from-text {
	display: none;
}
.chk-sidebar-offer .q-price {
	font-weight: bold;
	font-size: 30px;
}
.chk-sidebar-offer .q-pricing-format {
	font-size: 30px;
}
.chk-sidebar-offer--title {
	color: #BEC0BF;
	font-size: 24px;
	text-align: center;
	font-weight: 400;
}
.chk-sidebar-offer--about img {
	margin-right: 1rem;
}
.chk-sidebar-offer--about {
	margin-bottom: 1rem;	
	font-size: 20px;
}
.chk-offer-title {
	font-size: 20px;
	font-weight: bold;
}
.chk-pm-item-wrapper {
	margin: 0 1.8rem;
	height: 100%;
}
.chek-sidebar-offer--about {
	font-size: 20px;
}
.chk-pm-item-wrapper strong,
.chk-pm-item-wrapper input[type="radio"] {
	display: none;
}
.chk-pm-item {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 1.5rem;
	border: 0.2rem solid var(--main-color);
	border-radius: 0.8rem;
	box-sizing: border-box;
}
.chk-pm-item span {
	font-weight: bold;
	font-size: 20px;
}
.chk-pm-item-wrapper input[type="radio"]:checked ~ .chk-pm-item {
	background-color: var(--main-color);
	color: #FFFFFF;
}
.chk-pm-item-wrapper .chk-pm-item .payment-icon-green,
.chk-pm-item-wrapper input[type="radio"]:checked ~ .chk-pm-item .payment-icon-white {
	display: block;
}
.chk-pm-item-wrapper .chk-pm-item .payment-icon-white,
.chk-pm-item-wrapper input[type="radio"]:checked ~ .chk-pm-item .payment-icon-green {
	display: none;
}
.chk-pm-item small {
	font-size: 20px;
	margin-top: 2rem;
	text-align: center;
}
.tvi--more-prices {
	padding-top: 2rem;
	padding-bottom: 1rem;
	text-align: center;
	display: block;
}


.chktk--text-wrapper {
	padding-left: 8rem;
}
.chktk--wrapper {
	margin-top: 10rem; 
	margin-bottom: 5rem;
	padding: 0;
}

.room-details > input[type="radio"]:checked ~ label {
	color: var(--main-color) !important;
}

.flex-center {
	display: flex;
	justify-content: center;
}
.flex-center-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex-vertical-center {
	display: flex;
	align-items: center;
}
.price-info {
	margin-bottom: 1rem;
	color: var(--main-text-color);
}
.price-info:last-child {
	margin-bottom: 0;
}
.price-info img {
	margin-right: 1rem;
}
.price-info span {
	font-size: 18px;
}

.chkrw--terms-links {
	font-size: 18px;
}

/* TODO */
#cookies_info.toggled {
	display: block;
}
#cookies_info {
	position: fixed;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    bottom: 0;
    z-index: 999999;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 18px;
	display: none;
}
#cookies_info a {
	color: var(--main-color);
	font-size: 18px;
}
#cookies_info .cookies_info_btn {
	margin-left: 2rem;
    padding: 0.5rem;
    color: #FFFFFF;
    background-color: var(--main-color);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
	font-size: 16px;
}
.learning-curve {
	font-family: "Learning Curve";
	font-size: 36px;
}
.learning-curve-bold {
	font-family: "Learning Curve";
	font-weight: bold;
	font-size: 36px;
}

.bs-tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	letter-spacing: normal;
	line-break: auto;
	line-height: 1.5;
	text-align: left;
	/*text-align: start;*/
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	white-space: normal;
	word-break: normal;
	word-spacing: normal;
	font-size: 12px;
	word-wrap: break-word;
	opacity: 0;
}

.bs-tooltip.in {
	opacity: 0.9;
}

.bs-tooltip.tooltip-top {
	padding: 5px 0;
	margin-top: -3px;
}

.bs-tooltip.top .tooltip-arrow {
	bottom: -5px;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000;
}

.bs-tooltip.right {
	padding: 0 5px;
	margin-left: 3px;
}

.bs-tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000;
}

.bs-tooltip.tooltip-bottom {
	padding: 5px 0;
	margin-top: 3px;
}

.bs-tooltip.tooltip-bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000;
}

.bs-tooltip.tooltip-left {
	padding: 0 5px;
	margin-left: -3px;
}

.bs-tooltip.tooltip-left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000;
}
.tooltip-inner {
	max-width: 200px;
	padding: 3px 8px;
	color: #fff;
	text-align: center;
	background-color: #000;
	border-radius: 0.25rem;
}

.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}


/* FLEX AND STUFF */
.flex-row {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}

.flex-col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.flex-col-1, .flex-col-2, .flex-col-3, .flex-col-4, .flex-col-5, .flex-col-6, .flex-col-7, .flex-col-8, .flex-col-9, .flex-col-10, .flex-col-11, .flex-col-12, .flex-col,
.flex-col-auto, .flex-col-sm-1, .flex-col-sm-2, .flex-col-sm-3, .flex-col-sm-4, .flex-col-sm-5, .flex-col-sm-6, .flex-col-sm-7, .flex-col-sm-8, .flex-col-sm-9, .flex-col-sm-10, .flex-col-sm-11, .flex-col-sm-12, .flex-col-sm,
.flex-col-sm-auto, .flex-col-md-1, .flex-col-md-2, .flex-col-md-3, .flex-col-md-4, .flex-col-md-5, .flex-col-md-6, .flex-col-md-7, .flex-col-md-8, .flex-col-md-9, .flex-col-md-10, .flex-col-md-11, .flex-col-md-12, .flex-col-md,
.flex-col-md-auto, .flex-col-lg-1, .flex-col-lg-2, .flex-col-lg-3, .flex-col-lg-4, .flex-col-lg-5, .flex-col-lg-6, .flex-col-lg-7, .flex-col-lg-8, .flex-col-lg-9, .flex-col-lg-10, .flex-col-lg-11, .flex-col-lg-12, .flex-col-lg,
.flex-col-lg-auto, .flex-col-xl-1, .flex-col-xl-2, .flex-col-xl-3, .flex-col-xl-4, .flex-col-xl-5, .flex-col-xl-6, .flex-col-xl-7, .flex-col-xl-8, .flex-col-xl-9, .flex-col-xl-10, .flex-col-xl-11, .flex-col-xl-12, .flex-col-xl,
.flex-col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
}
.flex-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.flex-col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.flex-col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.flex-col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.flex-col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.flex-col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.flex-col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.flex-col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.flex-col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.flex-col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.flex-col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.flex-col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.flex-col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.flex-col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .flex-col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .flex-col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .flex-col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .flex-col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .flex-col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .flex-col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .flex-col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .flex-col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .flex-col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .flex-col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .flex-col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .flex-col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .flex-col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .flex-col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .flex-col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .flex-col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .flex-col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .flex-col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .flex-col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .flex-col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .flex-col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .flex-col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .flex-col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .flex-col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .flex-col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .flex-col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .flex-col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .flex-col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .flex-col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .flex-col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .flex-col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .flex-col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .flex-col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .flex-col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .flex-col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .flex-col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .flex-col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .flex-col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .flex-col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .flex-col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .flex-col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .flex-col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .flex-col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .flex-col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .flex-col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .flex-col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .flex-col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/*
	CONTACT PAGE
*/
.contact-header {
	height: 41.5rem;
	position: relative;
}
.contact-header img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.contact-header h1 {
	color: var(--main-color);
	font-weight: bold;
	font-size: 100px;
	margin-bottom: 5rem;
}
.btn-lime {
	background: transparent;
	color: #FFFFFF;
	border: 0.2rem solid var(--lime-color);
	font-size: 22px;
	font-weight: 600;
	border-radius: 0.8rem;
	margin: 0 0.5rem;
}
.btn-lime:hover {
	border: 0.2rem solid var(--lime-color);
}
.btn-orange {
	background: transparent;
	color: #FFFFFF;
	border: 0.2rem solid var(--orange-color);
	font-size: 22px;
	font-weight: 600;
	border-radius: 0.8rem;
	margin: 0 0.5rem;
}
.btn-orange:hover {
	border: 0.2rem solid var(--orange-color);
}
.btn-pink {
	background: transparent;
	color: #FFFFFF;
	border: 0.2rem solid var(--pink-color);
	font-size: 22px;
	font-weight: 600;
	border-radius: 0.8rem;
	margin: 0 0.5rem;
}
.btn-pink:hover {
	border: 0.2rem solid var(--pink-color);
}
.btn-lime.active {
	background-color: var(--lime-color);
}
.btn-pink.active {
	background-color: var(--pink-color);
}
.btn-orange.active {
	background-color: var(--orange-color);
}
.btn-continue-chk {
	margin-top: 8rem;
}


ul.qc-accordion {
	border: 0;
}
ul.qc-accordion > li > label {
	border: 0;
	font-size: 24px;
	font-weight: 600;
	text-decoration: underline;
	position: relative;
	padding-left: 3rem;
}
ul.qc-accordion > li > label:before {
	position: absolute;
	content: '';
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: var(--pink-color);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
ul.qc-accordion > li > label:hover,
ul.qc-accordion > li > input[type="checkbox"]:checked + label, 
ul.qc-accordion > li > input[type="radio"]:checked + label {
	background-color: transparent;
}
ul.qc-accordion > li > div.acc-content {
	background-color: transparent;
	border: 0;
	padding-left: 3rem;
	padding-top: 1rem;
	padding-bottom: 2rem;
}
ul.qc-accordion > li > div.acc-content p {
	font-size: 22px;
}

.qc-travel-item .dashed-line-v { margin-top: 3rem; margin-bottom: 3rem; }

.filters--header {
	display: flex;
	justify-content: left; 
	align-items: center; 
	margin-bottom: 2rem;
}
.filters--header-title {
	margin-right: 1rem; 
	color: #939393;
	font-size: 20px; 
	font-weight: bold;
}

.destination-header {
	height: 27rem;
	position: relative;
}
.destination-header img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.destination-header--title {
	color: var(--main-color);
	font-size: 85px;
	font-weight: bold;
}
.destination-header--title span {
	font-family: "Learning Curve";
	font-size: 97px;
	color: #FFFFFF;
}
.destination-header--info {
	color: #FFFFFF;
	font-weight: bold;
	font-size: 30px;
	margin: 0;
}
.destination-header--info2 {
	color: #FFFFFF;
	font-size: 30px;
	margin: 0;
}
.destination-header .breadcrumbs {
	position: absolute;
	top: 0;
	z-index: 2;
	left: 24%;
	margin-top: 1rem;
	color: #C4C4C4;
}
.destination-header .breadcrumbs .breadcrumb-part {
	color: #C4C4C4;
	font-size: 20px;
}

.section-title {
	display: none;
}
.tlp--persons {
	font-size: 18px; text-align: center; color: #939393; margin-bottom: 0; margin-top: 1rem;
}


.alo-menu-wrapper {
	position: relative;
}
.alo-menu-dd {
	position: absolute;
	top: 100%;
	right: 0;
	width: 32rem;
	background-color: var(--main-color);
	border-bottom-left-radius: 0.8rem;
	border-bottom-right-radius: 0.8rem;
	display: none;
	margin-top: 2rem;
	z-index: 100;
}
.alo-menu-dd.active {
	display: block;
}
.alo-menu-dd ul {
	list-style: none;
	margin: 0;
	padding-top: 1rem;
}
.alo-menu-dd ul li a {
	font-size: 22px;
	padding: 1.2rem 2.5rem;
	padding-right: 1rem;
	font-weight: 600;
}
.alo-menu-dd ul li a.user-account {
	padding: 1.2rem 2.5rem;
}
.alo-menu-dd .alo-user-account-dd {
	position: relative;
	width: auto;
}

.alo-submenu {
	list-style: none;
	margin: 0;
	background-color: var(--pink-color);
	display: none;
	border-bottom-left-radius: 0.8rem;
	border-bottom-right-radius: 0.8rem;
}
.alo-submenu.active {
	display: block;
}

#header.home-header .global-search-wrapper {
	display: none;
}
#header.sticky {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 3;
	background-color: var(--main-color);
	padding: 1rem 4rem;
}
#header.sticky.css-fixed-zindex { z-index: 4; }
#header.home-header.sticky .global-search-wrapper {
	display: block;
    width: 100%;
	top: 0;
	left: 0;
}
#header .show-on-sticky {
	display: none;
}
#header.sticky .show-on-sticky {
	display: block;
}
#header .hide-on-sticky {
	display: block;
}
#header.sticky .hide-on-sticky {
	display: none;;
}
#header .show-on-sticky.white-burger,
#header .show-on-sticky.white-chevron,
#header .show-on-sticky.white-smiley {
	display: block;
}
#header .hide-on-sticky.green-burger,
#header .hide-on-sticky.green-chevron,
#header .hide-on-sticky.green-smiley {
	display: none;
}

#header.home-header.sticky > .flex-row {
	justify-content: space-between;
}
#header.home-header.sticky > .flex-row > .flex-col {
	flex-grow: 0;
}


.alo-user-account-wrapper {
	position: relative;
}
.alo-user-account-dd {
	margin: 0;
	list-style: none;
	position: absolute;
	width: 32rem;
	background-color: var(--main-color);
	right: 0;
	top: 100%;
	margin-top: 2rem;
	border-bottom-left-radius: 0.8rem;
	border-bottom-right-radius: 0.8rem;
	padding: 0.5rem;
	z-index: 100;
	display: none;
}
.alo-user-account-dd.active {
	display: block;
}



.btn-myacc-menu {
	border: 0.2rem solid var(--main-color);
	margin: 0 1rem;
	border-radius: 0.6rem;
	font-size: 24px;
	font-weight: bold;
	display: flex;
	align-items: center; 
	justify-content: center;
}
.btn-myacc-menu:hover {
	border: 0.2rem solid var(--main-color);
}
.btn-myacc-menu .btn-myacc-txt {
	margin-right: 1rem;
}
.btn-myacc-menu.btn-active {
	background-color: var(--main-color);
	color: #FFFFFF;
}


.price-header {
	padding: 0;
	text-align: center;
}
.price-header > div {
	padding: 2rem 0;
	padding-top: 3rem;
	white-space: nowrap;
}
.user-booking {
	text-align: center;
	font-size: 20px;
}
.user-booking--col {
	padding: 1rem;
}
.user-booking--item-details {
	font-size: 20px;
	text-decoration: underline;
}

.datepickr-wrapper {
	display: block;
}
.myacc-menu {
	display: flex;
	justify-content: center; 
	margin-bottom: 2rem;
}
.btn-myacc-menu svg {
	width: 40px;
}
.btn-myacc-menu svg .cls-1 {
	stroke: #00A59C;
}

.footer-link-list {
	margin: 0;
	list-style: none;
}
.footer-link-list li a {
	font-size: 18px; /* var(--fs-17-to-20); */
	padding: 0.5rem 0;
	display: block;
	color: var(--main-text-color);
}
.footer-link-list li a:hover {
	text-decoration: none;
}
.footer-link-list.fll-mb {
	margin-bottom: 4rem;
}


.top-search .search-input {
	/* font-weight: bold; */
	font-size: 20px;
	background-color: #EFEDED;
	border: 0;
	color: var(--pink-color);
	border-radius: 0.8rem;
	padding: 1rem;
	width: 100%;
	/* width: 22rem; */
	/* padding-left: 5rem;*/
}
.top-search .search-input:focus,
.top-search .search-input:hover {
	border: 0;
}
/*
.top-search form > .row {
	display: flex;
	justify-content: space-between;
}
.top-search form > .row > .col-md-1,
.top-search form > .row > .col-md-2 {
	float: none;
	width: auto;
}
*/
.top-search label {
	display: none;
}
.top-search .btn-main {
	background-color: var(--pink-color);
	font-size: 25px;
	text-transform: lowercase;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	border-radius: 0.8rem;
	border: 0;
}
.top-search .btn-main img {
	width: 2rem;
	margin-right: 1rem;
}
.top-search .select2 {
	font-size: 20px;
	/* font-weight: bold; */
	width: 100% !important;
}
.top-search .select2-container .select2-selection--single {
	height: 5.2rem;
	background-color: #EFEDED;
	border: 0;
	border-radius: 0.8rem;
}
.top-search .select2-container .select2-selection--single .select2-selection__rendered {
	color: var(--pink-color);
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.top-search .select2-container .select2-selection--single .select2-selection__arrow {
	display: none;
}
.passengers-container .btn-trigger {
	cursor: pointer;
}
.passengers-container .btn-trigger:hover {
	text-decoration: none;
}
.top-search .passengers-container .btn-trigger {
	font-size: 20px;
	/* width: 22rem; */
	display: block;
	padding: 1.2rem 1rem;
	height: 5.2rem;
	box-sizing: border-box;
	border-radius: 0.8rem;
	color: var(--pink-color);
	background-color: #EFEDED;
	/* font-weight: bold; */
}
.top-search .passengers-container .btn-trigger:hover {
	text-decoration: none;
}
.top-search .calendar-input-wrapper {
	position: relative;
}
.top-search .calendar-input-wrapper:before {
	content: '';
	position: absolute;
	/*
	top: 0;
	left: 0;
	*/

	top: 1rem;
	right: 1rem;
	width: 3rem;
	height: 100%;
	background-image: url('https://www.alohotels.ro/code/res/images/calendar-icon.png');
	margin-left: 1rem;
	z-index: 2;
	background-repeat: no-repeat;
	margin-top: 0.8rem;
}


.page-with-hero .top-search {
	position: absolute;
	width: 100%;
	max-width: 1032px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%);
	border: 0;
	z-index: 9;
}
.page-with-hero .top-search label {
	color: #FFFFFF;
	font-size: 20px;
	display: block;
}
.page-with-hero .top-search .search-input {
	background-color: #FFFFFF;
	width: 100%;
	font-size: 20px;
	padding: 1rem;
	border-radius: 0.8rem;
	font-weight: 400;
}
.page-with-hero .top-search form > .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page-with-hero .top-search form > .row > .col-md-1,
.page-with-hero .top-search form > .row > .col-md-2 {
	float: none;
	width: auto;
}
.page-with-hero .top-search .passengers-container,
.page-with-hero .top-search .select2 {
	width: 100% !important;
	font-size: 20px;
	font-weight: 400;
}
.page-with-hero .top-search .passengers-container .btn-trigger {
	font-size: 20px;
	width: 100%;
	display: block;
	padding: 1.2rem 1rem;
	height: 5.2rem;
	box-sizing: border-box;
	border-radius: 0.8rem;
	color: var(--main-text-color);
	background-color: #FFFFFF;
	font-weight: 400;
}
.page-with-hero .top-search .select2-container .select2-selection--single {
	height: 5.2rem;
	background-color: #FFFFFF;
}
.page-with-hero .top-search .select2-container .select2-selection--single .select2-selection__rendered {
	padding-top: 1rem;
	padding-bottom: 1rem;
	color: var(--main-text-color);
}
.page-with-hero .top-search .btn-main {
	background-color: var(--pink-color);
	border: 0;
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	text-align: center;
	padding: 0;
	display: block;
}
.page-with-hero .top-search .btn-main img {
	width: 3rem;
	margin-right: 0;
}
.page-with-hero .top-search .calendar-input-wrapper:before {
	background-image: none;
	width: 0;
	height: 0;
}

.filter-item {
	margin-bottom: 2rem;
}
.filter-item .dashed-line-v {
	margin-top: 2rem;
}
.filter-item .filter-input {
	width: 100%;
	background-color: #FFFFFF;
	font-size: 20px;
	padding: 1rem;
	border: 0;
	border-radius: 0.8rem;
}
.filter-item .filter-input:focus,
.filter-item .filter-input:hover {
	border: 0;
}
.filter-item-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 1rem;
}


/*
	RANGE SLIDER
*/
.noUi-target {
	background: var(--main-color);
	border: 0;
	box-shadow: none;
}
.noUi-background {
	background: var(--main-color);
	border: 0;
	box-shadow: none;
}
.noUi-connect {
	background: var(--pink-color);
	box-shadow: none;
}
.noUi-horizontal {
	height: 5px;
}
.noUi-horizontal .noUi-handle {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	top: -11px;
	left: -10px;
	border: 0;
	box-shadow: none;
	background-color: var(--main-color);
}
.noUi-handle:after {
	display: none;
} 
.noUi-handle:before {
	width: 10px;
	height: 10px;
	background-color: var(--pink-color);
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	top: 0;
	margin-top: 0.8rem;
}
.range-slider {
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.qc-checkbox label:before, .qc-radio label:before {
	border-radius: 50%;
	background-color: transparent;
	border: 0.2rem solid #CECECE;
	width: 2rem;
	height: 2rem;
}
.qc-checkbox input[type="checkbox"]:checked + label:before {
	content: '';
	border-color: var(--main-color);
	background-color: var(--main-color);
}
.qc-radio label, .qc-checkbox label {
	font-size: 18px;
	line-height: 1.3;
	padding-left: 3.5rem;
}
.qc-checkbox {
	margin-bottom: 1rem;
}

.chk--login-form-title {
	font-weight: 400; 
	color: #8E8E8E; 
	font-size: 30px;
}

.search-price-wrapper .datepickr-wrapper {
	width: 100%;
}
.search-price-wrapper .search-input {
	width: 100%;
	background-color: #FFFFFF;
	font-weight: bold;
	font-size: 24px;
	border: 0;
	border-radius: 0.8rem;
}
.search-price-wrapper .search-input:hover,
.search-price-wrapper .search-input:focus {
	border: 0;
}
.search-price-wrapper .search-input.datepickr {
	font-weight: 400;
}
.search-price-wrapper .passengers-container .btn-trigger {
	width: 100%;
	padding: 1rem;
	background-color: #FFFFFF;
	/* font-weight: bold; */
	font-size: 24px;
	color: var(--main-text-color);
	border-radius: 0.8rem;
	display: block;
	box-sizing: border-box;
	height: 5.2rem;
}
.search-price-wrapper .top-searchbar .passengers-container .btn-trigger:hover {
	text-decoration: none;
}
.search-price-wrapper .top-searchbar .btn-price-search {
	border-radius: 0.8rem;
	height: 5.2rem;
}
.search-price-wrapper .top-searchbar .select2-container {
	width: 100% !important;
}
.search-price-wrapper .top-searchbar .select2-container .select2-selection--single {
	height: 5.2rem;
	border: 0;
	border-radius: 0.8rem;
	outline: 0;
}
.search-price-wrapper .top-searchbar .select2-container .select2-selection--single .select2-selection__rendered {
	font-weight: bold;
	font-size: 24px;
	padding: 0.8rem 1rem;
	line-height: 1.5;
}
.search-price-wrapper .top-searchbar .select2-container .select2-selection--single .select2-selection__arrow {
	display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	font-size: 18px;
	border-radius: 0;
	border: 0;
	border-bottom: 0.1rem solid #CCCCCC;
}
.select2-container--open .select2-dropdown--below {
	border: 0.2rem solid var(--pink-color);
	border-bottom-left-radius: 0.8rem;
	border-bottom-right-radius: 0.8rem;
}
.select2-container--open .select2-dropdown--above {
	border: 0.2rem solid var(--pink-color);
	border-top-left-radius: 0.8rem;
	border-top-right-radius: 0.8rem;
}

.tli--rate-text {
	font-size: 18px; 
	text-align: center; 
	color: #939393; 
	margin-bottom: 3rem; 
	margin-top: 1rem;
}

.dynamic-content-loader,
.grid-inner-dynamic-content-loader {
	position: fixed;
	top: 0px;
	left: 0px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 1002;
	opacity: 0.9;
	background-size: 50% auto;
}
.dynamic-content-loader {
	background-image: url("https://www.alohotels.ro/uploads/banners/loader.png");
    background-position: center center;
    background-repeat: no-repeat;
}
.dynamic-content-loader span {
	position: fixed;
	font-size: 24px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: 17.4rem;
	z-index: 1002;
	text-align: center;
	width: 100%;
	max-width: 60rem;
}
.dynamic-content-loader strong {
	position: fixed;
	font-size: 75px;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: -30.4rem;
	max-width: 60rem;
	text-align: center;
	width: 100%;
	font-family: "Learning Curve";
}

.chk-mobile-sidebar {
	width: 100%;
	background-color: #F7F7F7;
	padding: 1rem;
}


/*
	DATEPICKR CALENDAR
*/
.datepickr-calendar {
	font-family: "Barlow";
	background-color: #FFFFFF;
	border-radius: 0.8rem;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border: 0.2rem solid var(--pink-color);
	font-size: 20px;
	margin-top: 0.5rem;
}
.datepickr-calendar .datepickr-months {
	background-color: #FFFFFF;
	border: 0;
	border-radius: 0;
	color: var(--main-text-color);
	padding-top: 5rem;
	font-size: 20px;
	margin-bottom: 1rem;
}
.datepickr-calendar thead {
	border: 0;
}
.datepickr-calendar thead th {
	font-weight: 400;
	color: #BCBCBC;
}
.datepickr-calendar .datepickr-months:before {
	content: "Data";
	position: absolute;
	padding: 1rem;
	background-color: #EFEDED;
	width: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
	color: var(--main-color);
}
.datepickr-calendar .datepickr-prev-month, 
.datepickr-calendar .datepickr-next-month {
	color: var(--main-color);
}
.datepickr-calendar td {
	border: 0;
}
.datepickr-calendar .datepickr-day {
	border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.5rem;
    margin: 0.3rem;
    text-align: center;
    line-height: 1;
	border: 0;
	background-color: #FFFFFF;;
	color: var(--main-text-color);
}
.datepickr-calendar .datepickr-day:hover,
.datepickr-calendar .selected .datepickr-day,
.datepickr-calendar .today .datepickr-day {
	background-color: var(--main-color);
	color: #FFFFFF;
	border: 0;
}
.datepickr-calendar td.disabled .datepickr-day,
.datepickr-calendar td.disabled .datepickr-day:hover {
	background-color: #FFFFFF;
	color: #BCBCBC;
	border: 0;
}

/*
	SELECT 2
*/
.select2-results__option {
	font-size: 18px;
	font-weight: 600;
	padding: 1rem;
}
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #FFFFFF;
	color: var(--pink-color);
}
.cs-progress-bar-wrapper {
	position: relative;
}
#progress {
  position: absolute;
  z-index: 1000;
  bottom: -2.2rem;
  box-shadow: 1px 2px 7px var(--main-color);
  width: 0%;
  height: 4px;
  background: var(--main-color);
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  -moz-transition: width 500ms ease-out, opacity 400ms linear;
  -ms-transition: width 500ms ease-out, opacity 400ms linear;
  -o-transition: width 500ms ease-out, opacity 400ms linear;
  -webkit-transition: width 500ms ease-out, opacity 400ms linear;
  transition: width 500ms ease-out, opacity 400ms linear;
}
.top-search.sticky #progress {
	bottom: -1.2rem;
}

.cs-progress-bar-tooltip-wrapper {
    display: inline-block;
    position: relative;
    width: 100%;
}

.cs-progress-bar-tooltip-wrapper .cs-progress-bar-tooltip {
	top: 28px;
    transform:translate(-50%, -100%);
    padding: 0.5rem;
    font-weight: normal;
    font-size: 13px;
    border-radius: 8px;
    position: absolute;
    z-index: 99999999;
    box-sizing: border-box;
    display: block;
	background-color: var(--main-color);
	color: #ffffff;
	right: -20px;
	width: 36px;
	text-align: center;
}

.cs-progress-bar-tooltip-wrapper .cs-progress-bar-tooltip i {	
	position: absolute;
	top: -12px;
	left: 5px;
	margin-left: 0px;
	width: 24px;
	height: 13px;
	overflow: hidden;
}

.cs-progress-bar-tooltip-wrapper .cs-progress-bar-tooltip i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
	transform:translate(-50%,50%) rotate(45deg);
    background-color: var(--main-color);
}

.cs-multi-async-process.cs-fixed-search.fixed {
	padding: 0rem 0rem 1rem;
}

.cs-multi-async-process.cs-fixed-search.fixed .cs-async-wait-message {
	padding: 0rem 2.5rem 0.5rem;
}

.cs-multi-async-process.cs-fixed-search.fixed .cs-progress-bar-wrapper {
	padding: 0rem 2.5rem;
}

.cs-multi-async-process.cs-fixed-search .top-searchbar {
	padding: 0.5rem 2rem 0rem 2rem;
}
.cs-async-wait-message {
	font-size: 18px;
	margin: 0;
}
.cs-multi-requests-msg {
	margin-top: 1rem;
	text-align: center;
}


/*
	PASSENGERS CONTAINER
*/
.passengers-container label {
	color: var(--main-text-color) !important;
	display: block;
}
.passengers-container .children-ages .input,
.passengers-container .room-search-container .select2 {
	width: 100% !important;
	flex-grow: 1;
	flex-basis: 0;
}
.passengers-container .room-search-container .select2-container .select2-selection--single {
	border: 0.2rem solid #CECECE;
	height: 3.8rem;
}
.passengers-container .room-search-container .select2-container .select2-selection--single .select2-selection__rendered {
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
}
.passengers-container .cs-room-persons-cell {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	padding: 0 0.5rem;
}
.passengers-container .cs-room-persons-cell label {
	margin-right: 1rem;
	flex-grow: 1;
	flex-basis: 0;
	font-size: 20px;
}
.passengers-container .children-ages .child-age {
	padding: 0.5rem;
}
.passengers-container .children-ages .input {
	border-radius: 0.8rem;
	border: 0.2rem solid #CECECE;
	font-size: 20px;
	padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    line-height: 1.4;
}



.price-column-wrapper {
	margin-right: 1rem;
}
.price-column-prices {
	text-align: center;
	border-bottom: 0.2rem solid var(--main-color);
	padding-bottom: 1rem;
}
.price-column-prices .price-from-text {
	display: none;
}
.price-column-prices .price .q-price {
	font-weight: normal;
}
.price-column-prices .price .q-pricing-format {
	font-size: 20px;
	text-decoration: line-through;
}
.price-column-prices .q-pricing-format {
	font-size: 30px;
}
.price-column-prices .q-price {
	font-weight: bold;
}
.chk-ss--column-left-title {
	padding-right: 6rem;
	font-weight: bold;
	font-size: 24px;
}
.chkrw--terms-text { position: relative; font-size: 22px; }
.chkrw--terms-text:before {
	content: '';
	position: absolute;
	left: 0;
	width: 2rem;
	height: 2rem;
	margin-left: -2.5rem;
	top:0;
	margin-top: 0.5rem;
	background: url('https://www.alohotels.ro/code/res/images/asterisk.png') no-repeat;
	background-size: 100% 100%;
}
.search-icon-fixed-search {
	display: none;
}
.search-icon-default {
	display: block;
}
.sticky .search-icon-fixed-search {
	display: block;
}
.sticky .search-icon-default {
	display: none;
}

.chksb--inner {
	padding: 0 2rem;
}
.chk-mobile-sidebar {
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08);
}
.chk-mobile-sidebar a {
	color: #4A4A49;
	font-size: 14px;
}
.chksb--mobile-header-box {
	padding: 0 0.5rem;
}
.chksb--mobile-header-box.opened img {
	transform: rotate(180deg);
}
.chksb--mobile-checkin {
	border-bottom: 0.2rem solid var(--main-color);
	white-space: nowrap;
	padding: 0.3rem;
}
.chksb--mobile-checkout {
	white-space: nowrap;
	padding: 0.3rem;
}

.checkout-login-header {
	background-color: #EFEFEF;
	padding-top: 2rem;
	padding-bottom: 4rem; 
	text-align: center;
}


/*
	POPUP
*/
.popup-wrapper {
	position: absolute;
	border: 0.2rem solid var(--main-color);
	padding: 2rem;
	width: 100%;
	max-width: 100rem;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	background-color: #FFFFFF;
}
.login-button-box {
	padding: 1rem;
}

.poff--transport-details,
.login-popup {
	display: none;
	position: fixed; 
	z-index: 9999999; 
	width: 100%; 
	height: 100%; 
	background-color: rgba(255, 255, 255, 0.8); 
	left: 0; 
	top: 0;
}
.poff--transport-details {
	z-index: 99991;
}
.login-popup-box {
	text-align: center; 
	padding: 2rem;
}
.lpb--title {
	font-family: 'Learning Curve'; 
	font-size: 80px; 
	font-weight: bold;
}
.lpb--description {
	font-size: 24px;
}
.login--btn {
	background-color: var(--pink-color); padding: 1rem 2rem; border-radius: 0.8rem; border: 0; font-size: 24px; font-size: 22px; font-weight: bold; line-height: 1.5;
}
.lpb--image {
	max-width: 100%;
}
.poff--transport-details.toggled,
.login-popup.toggled {
	display: block;
}
.login-form-subtitle {
	font-weight: 400; font-size: 30px; text-align: center; color: #8C8C8C;
}

.forgot-password-wrapper {
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.goto-register-lnk,
.forgot-password-lnk {
	color: var(--main-color); 
	font-size: 20px; 
	text-decoration: underline;
}
.goto-regioster-wrapper {
	font-size: 20px; display: flex; justify-content: space-between; margin-top: 1rem;
}

.rp--header {
	text-align: center; 
	background-color: #EFEFEF; 
	padding: 4rem 2rem; 
	margin-bottom: 3rem;
}
.rp--title {
	font-family: 'Learning Curve'; 
	font-size: 66px; 
	text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.7);
}
.rp--text {
	font-size: 30px;
	margin: 0;
}
.rp--subtitle {
	font-weight: 400; font-size: 30px; color: #8C8C8C; margin-bottom: 3rem;
}
.rp--subtitle-left {
	font-weight: 400; font-size: 30px; text-align: center; color: #8C8C8C;
}
.rp--last-checkbox { margin-bottom: 6rem; }
.rp--col-right { padding-left: 7rem; }
.register-right-column {
	position: relative;
}
.register-right-column:before {
	position: absolute;
	content: '';
	height: calc(100% - 5rem);
    width: 2px;
    background-image: linear-gradient(to bottom, #CECECE 65%, rgba(255,255,255,0) 0%);
    background-position: center;
    background-size: 2px 20px;
    background-repeat: repeat-y;
	left: 0;
	z-index: 100;
	margin-left: -3rem;
	margin-top: 5rem;
}
.register-right-column-inner {
	padding-left: 4rem; 
	padding-top: 5rem;
}
.register-form {
	padding: 0 4rem;
}

.register-info-list {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 6rem;
}
.register-info-list li {
	position: relative;
	padding-left: 3rem;
	font-size: 24px;
	font-weight: 600;
	margin-top: 2rem;
}
.register-info-list li:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background-color: var(--pink-color);
	margin-top: 1rem;
}


.checkout-main {display:inline-block;width:73%;position:relative;z-index:1; float: left;}
.sidebar {display:inline-block;width:27%;vertical-align:top; float: right;}

.fee {
	position: relative;
	font-size: 20px;
	padding-left: 2rem;
	margin-bottom: 1rem;
}
.fee:before {
	content: '';
	position: absolute;
	width: 1rem;
	height: 1rem;
	background-color: var(--main-color);
	border-radius: 50%;
	left: 0;
	top: 0;
	margin-top: 1rem;
}
.fee-link { font-size: 20px; color: var(--main-text-color); }

.fees-wrapper {
	position: relative;
	background-color: #F7F7F7; 
	padding: 2rem; 
	margin-left: 6rem;
}
.fees-wrapper:before {
	position: absolute;
    content: '';
    height: 100%;
    width: 2px;
    background-image: linear-gradient(to bottom, #CECECE 65%, rgba(255,255,255,0) 0%);
    background-position: center;
    background-size: 2px 20px;
    background-repeat: repeat-y;
    left: 0;
    z-index: 100;
    margin-left: -4rem;
    margin-top: -2rem;
}
.chk-login-col-right {
	position: relative;
	padding: 3rem; 
	margin-left: 3rem; 
	padding-top: 2rem;
}
.tsd--data-col {
	display: flex;
	flex-direction:row; 
	justify-content: flex-end;
	align-items: center;
}
.chk-login-col-right:before {
	position: absolute;
    content: '';
    height: 100%;
    width: 2px;
    background-image: linear-gradient(to bottom, #CECECE 65%, rgba(255,255,255,0) 0%);
    background-position: center;
    background-size: 2px 20px;
    background-repeat: repeat-y;
    left: 0;
    z-index: 100;
    margin-left: -1rem;
	margin-top: 1rem;
}

.chk--review {
	padding: 0 1.5rem;
}
.chkrw--container {
	margin-top: 10rem;
	margin-bottom: 5rem;
}
.chkrw--top-image {
	margin-bottom: 4rem; 
	margin-left: auto; 
	margin-right: auto;
}
.chkrw--title {
	text-align: center; 
	font-family: 'Learning Curve'; 
	font-size: 66px; 
	margin-bottom: 3rem;
}
.chkrw--top-text {
	font-size: 30px; 
	text-align: center; 
	margin-bottom: 0;
}
.chkrw--info-wrapper {
	margin-bottom: 2rem;
}
.chkrw--box {
	background-color: #F7F7F7;
	padding: 3rem; 
	text-align: center; 
	margin-left: 1rem; 
	margin-right: 1rem; 
	height: 100%; 
	display: flex;
	display: -webkit-flex;
	flex-direction: column; 
	justify-content: space-between;
	margin-bottom: 2rem;
}
.chkrw--box-title {
	color: #8E8E8E; 
	font-size: 30px; 
	font-weight: 400; 
	margin-bottom: 2rem;
}
.chkrw--modify-wrapper {
	display: inline-block;
}
.chkrw--modify-link {
	display: inline-flex; 
	color: #8E8E8E; 
	font-size: 20px; 
	font-weight: bold;
}
.chkrw--down-arrow {
	display: block; 
	margin: 0 auto; 
	margin-bottom: 3rem;
}
.chkrw--fees-list-wrapper {
	display: flex; 
	justify-content: center; 
	padding-left: 6rem;
}
.chkrw--fees-list {
	text-align: left; 
	list-style: none; 
	margin: 0; 
	padding: 0;
	font-size: 20px;
}
.chkrw--total-price-wrapper {
	margin-top: 2rem; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	margin-bottom: 8rem;
}
.chkrw--total-price {
	margin-right: 4rem; 
	font-size: 22px; 
	border-top: 0.2rem solid var(--main-color); 
	border-bottom: 0.2rem solid var(--main-color); 
	padding: 2rem 0;
}
.chkrw--comment-wrapper {
	margin-right: 8rem; 
	height: 100%;
}
.chkrw--comment-text {
	font-size: 30px; 
	color: #8E8E8E; 
	margin-bottom: 2rem;
}
.chkrw--comment-field {
	width: 100%; 
	height: 12rem; 
	border-radius: 0.5rem; 
	font-size: 20px;
}
.chkrw--voucher-wrapper {
	margin-bottom: 3rem; 
	margin-top: 5rem;
}
.chkrw--voucher-text {
	color: var(--main-color); 
	font-size: 22px;
}
.chkrw--btn-add-voucher {
	flex-grow: 0; background-color: var(--main-color); color: #FFFFFF; font-size: 22px; border: 0;
}
.chkrw--total-price-text {
	font-size: 34px; font-weight: bold;
}
.chkrw--btn-pay-and-book {
	display: flex; align-items: center; color: #FFFFFF; background-color: #A1C517; 
	padding: 2.5rem 3rem; font-size: 24px; font-weight: bold; border: 0; box-sizing: border-box; border-radius: 0.5rem;
}

.chkbrdc--step-lines {
	display: flex;
	justify-content: space-between;
}
.chkbrdc--step-line {
	width: 6vw;
	height: 0.4rem;
	background-color: #FFFFFF;
	margin: 0 1vw;
	border-radius: 0.2rem;
}
.chkbrdc--step-line.active {
	background-color: var(--lime-color);
}
.chkbrdc--step-text {
	display: flex;
	justify-content: space-between;
	margin-top: 1rem;
	font-size: 22px;
	padding: 0 1rem;
	color: #FFFFFF;
	font-weight: 600;
}

.chk-login-title {
	font-family: 'Learning Curve'; 
	font-size: 66px;
}

.filters-mobile {
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	z-index: 2;
}
.filter-tab-btn {
	background-color: #E8E8E8;
	padding: 1rem;
	color: var(--main-color);
	font-size: 24px;
	font-weight: bold;
	height: calc(100% - 2rem);
}
.filter-tab-btn {
	border-right: 0.1rem solid var(--main-color);
}
.filter-tab-btn img {
	width: 3rem;
}
.filter-tab-btn img.active {
	display: none;
}
.filter-tab-btn.active {
	background-color: var(--main-color);
	color: #FFFFFF;
}
.filter-tab-btn.active img {
	display: none;
}
.filter-tab-btn.active img.active {
	display: block;
}
input ~ .error-block, 
input ~ .success-block, 
input ~ .warning-block {
	position: relative;
	opacity: 1;
}
input ~ .error-block {
	color: #F44336;
}
input ~ .success-block {
	color: #8BC34A;
}
input ~ .warning-block {
	color: #EF6C00;
}

.img-responsive.show-md {
	display: none;
}

.cp--title-first {
	text-align: center; 
	font-size: 75px; 
	margin-bottom: 0; 
	font-weight: bold; 
	margin-top: 3rem; 
	color: var(--lime-color);
}
.cp--title-second {
	text-align: center; 
	font-family: 'Learning Curve'; 
	margin-bottom: 2rem; 
	color: var(--lime-color); 
	font-size: 85px;
}
.cp--description {
	text-align: center; 
	padding: 3rem 20rem; 
	background-color: #F7F7F7; 
	margin-bottom: 2rem;
}
.cp--description p {
	margin: 0; 
	font-size: 30px;
}
.cp--info {
	padding: 3rem; 
	background-color: #F7F7F7; 
	margin-bottom: 5rem;
}
.ci--box {
	padding: 0 4rem;
}
.ci--box p {
	margin: 0; 
	font-size: 30px;
}
.cf--box {
	padding: 1rem;
}
.cp--img-breadcrumb-wrapper {
	width: 100%;
	padding: 0 1rem;
	margin-bottom: 2rem;
}
.cp--img-breadcrumb {
	margin: 0 auto;
}
.au--content {
	padding: 3rem 14rem; background-color: #F7F7F7; margin-bottom: 5rem;
}
.au--footer {
	display: flex; justify-content: space-between; margin-bottom: 5rem;
}
.question-btn-wrapper {
	display: flex; 
	justify-content: space-between; 
	margin-bottom: 3rem;
}
.question-btn {
	border: 0; 
	border: 0.2rem solid var(--pink-color); 
	border-radius: 0.8rem; 
	font-size: 24px; 
	font-weight: bold;
}

.about-us-info h5 {
	font-size: 30px; 
	color: #8E8E8E; 
	font-weight: 400;
}
.about-us-info p {
	font-size: 24px; 
	margin: 0;
}
.about-us-description {
	padding: 3rem 14rem; 
	background-color: #F7F7F7; 
	margin-bottom: 5rem;
}
.about-us-description-title {
	font-family: 'Learning Curve'; 
	font-size: 70px; 
	margin-bottom: 2rem;
}
.about-us-description p {
	font-size: 24px;
}
.about-us-description-signature-wrapper {
	display: flex; 
	align-items: center;
}
.about-us-description-signature {
	font-family: 'Learning Curve'; 
	font-size: 66px; 
	margin-right: 5rem;
}
.faq-menu {
	margin-bottom: 2rem;
}
.faq-menu-item {
	border: 0; border: 0.2rem solid var(--pink-color); border-radius: 0.8rem; font-size: 24px; font-weight: bold;
}

@media (max-width: 1420px)
{
	.question-btn-wrapper {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.question-btn {
		margin-right: 1rem;
		margin-bottom: 1rem;
	}
}
@media (max-width: 1725px) {
	#header .on-create-account .global-search-wrapper {
		min-width: 68.6rem;
	}
}
@media (max-width: 1635px) {
	#header .on-create-account .global-search-wrapper {
		min-width: 58.6rem;
	}
}
@media (max-width: 1520px) {
	#header .on-create-account .global-search-wrapper {
		min-width: 58.6rem;
	}
	#header .my-account-menu-item {
		display: none;
	}
	#header .my-account-dd-menu-item {
		display: block;
	}
}

/* SXL :: DESKTOP DEVICES (LAPTOPS):: 1366px AND DOWN */
@media (max-width: 1200px) {
	.container { max-width: 120rem; }
	#header .global-search-wrapper,
	#header.home-header .global-search-wrapper {
		min-width: 48.6rem;
	}
	#header .on-create-account .global-search-wrapper {
		min-width: 48.6rem;
	}
}

@media (max-width: 1050px) {
	.logo img.desktop-logo-img {
		display: none;
	}
	.logo img.mobile-logo-img {
		display: block;
	}
	.home-header .logo img.desktop-logo-img {
		display: block;
		width: 15rem;
	}
	.home-header .logo img.mobile-logo-img {
		display: none;
	}
	.home-header.sticky .logo img.desktop-logo-img {
		display: none;
	}
	.home-header.sticky .logo img.mobile-logo-img {
		display: block;
	}
	#header .global-search-wrapper,
	#header .on-create-account .global-search-wrapper,
	#header.home-header .global-search-wrapper {
		min-width: 58.6rem;
	}
	#header {
		padding: 2rem;
	}
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-stage-outer,
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-item img {
		height: 40rem;
	}
	#owl-single-item-carousel {
		display: none;
	}
	.tvi--title {
		font-size: 3rem;
	}
	#header .hide-on-sticky.header-slogan {
		display: none;
	}
	#header.home-header .global-search-wrapper {
		min-width: 43.6rem;
	}
}

#filters-map {
	width: 100%;	
	min-height: 20rem;
}

.fancybox-container #filters-map {
    height: 100%;
    margin: 0;
}

.tsd--text-column img { margin-left: 1rem; }
.tsd--text { font-size: 24px; color: #8E8E8E; }
.tsd--search-box {
	padding: 0 1rem;
	margin: 0 0.5rem;
	background-color: #EFEDED;
	height: 5.2rem;
	border-radius: 0.8rem;
}
.tsd--search-box img { width: 2.3rem }
.top-search .tsd--search-box .select2 { width: calc(100% - 2.3rem) !important; }
.top-searchbar-with-search {
	font-size: 20px;
}
.tsb--change-link {
	color: var(--pink-color);
	font-size: 20px;
	font-weight: bold;
}
.tsb--change-link-wrapper .dashed-line-v {
	background-image: linear-gradient(to right, var(--pink-color) 65%, rgba(255,255,255,0) 0%);
}
.gmap-info-window {
	width: 28rem;
}
.giw--title {
	font-size: 14px;
	font-weight: bold;
	color: #202020;
}
.giw--image {
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
}
.giw--content {
	padding: 0 1rem;
}
.giw--content .travel-list-item-price {
	font-weight: bold;
	font-size: 16px;
}
.giw--content .travel-list-item-initial-price {
	font-size: 12px;
	font-weight: normal;
	text-decoration: line-through;
	color: #ABABAB;
}
.giw--content .stars li i {
	color: var(--main-color);
}

.user-booking-view .price-from-text { display: none; }

#scrolling { /* Carousel Frame */
    overflow: hidden;
}
#scrolling ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: absolute;
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.contact-textarea {
	border-radius: 0.8rem; border-bottom-left-radius: 0; border-bottom-right-radius: 0; font-size: 22px; height: 13rem; border: 0.2rem solid #CECECE; width: 100%;
}
.cp--btn-send {
	width: 100%; color: #FFFFFF; background-color: var(--pink-color); font-size: 22px; font-weight: bold; margin-top: 1.5rem; border: 0; padding: 1rem 1rem; border-radius: 0.8rem; border-top-left-radius: 0; border-top-right-radius: 0;
}
.cp--subtitle {
	font-weight: 400; font-size: 30px; margin-bottom: 2rem; text-align: center; color: #8E8E8E;
}
.au--subtitle {
	font-family: 'Learning Curve'; font-size: 70px; margin-bottom: 2rem;
}
.au--signature {
	display: flex; align-items: center;
}
.au--signature span {
	font-family: 'Learning Curve'; font-size: 66px; margin-right: 5rem;
}
#scrolling ul li {
    float: left;
}
#scrolling ul:after {
	clear: both;
	display: table;
	content: '';
}

#filters-map {
	width: 100%;
	height: 20rem;
}
.fancybox-container #filters-map {
	height: 100%;
	margin: 0;
}

.mapLabel {
  box-sizing:border-box;
  background: #05F24C;
  box-shadow: 2px 2px 4px #333;
  border:5px solid #346FF7;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  -webkit-animation: pulse 1s ease 1s 3;
  -moz-animation: pulse 1s ease 1s 3;
  animation: pulse 1s ease 1s 3;
}
.tsd--search-wraper {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}
.tsd--search-wraper.tsd--price-search {
	justify-content: flex-start;
}
.tsd--search-wraper .tsbws--search-box {
	padding: 1rem 2rem;
}

.other-offers .owl-carousel .owl-stage-outer {
	z-index: 10;
}
.other-offers .owl-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}
.other-offers .owl-carousel .owl-nav .owl-prev {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: rgba(247, 247, 247, 0.4);
	padding: 2rem;
	z-index: 100;
}
.other-offers .owl-carousel .owl-nav .owl-prev img,
.other-offers .owl-carousel .owl-nav .owl-next img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.other-offers .owl-carousel .owl-nav .owl-prev img,
.other-offers .owl-carousel .owl-nav .owl-next img {
	display: none;
}
.other-offers .owl-carousel .owl-nav .owl-prev.disabled img.active,
.other-offers .owl-carousel .owl-nav .owl-next.disabled img.active {
	display: none;
}
.other-offers .owl-carousel .owl-nav .owl-prev.disabled img,
.other-offers .owl-carousel .owl-nav .owl-next.disabled img {
	display: block;
}
.other-offers .owl-carousel .owl-nav .owl-prev img.active,
.other-offers .owl-carousel .owl-nav .owl-next img.active {
	display: block;
}
.other-offers .owl-carousel .owl-nav .owl-prev.disabled,
.other-offers .owl-carousel .owl-nav .owl-next.disabled {
	opacity: 1;
}
.other-offers .owl-carousel .owl-nav .owl-next {
	position: absolute;
	top: 0;
	height: 100%;
	right: 0;
	margin: 0;
	padding: 0;
	background-color: rgba(247, 247, 247, 0.4);
	padding: 2rem;
	z-index: 100;
}

.rsc--room-header {
	background-color: #EFEDED;
	padding: 1rem;
}
.rsc--room-title {
	color: var(--main-color);
	font-size: 20px;
}
.rsc--room-persons {
	padding: 1rem;
}
.rsc--room-box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 1rem;
}
.rsc--room-box label {
	font-size: 20px;
}
.rsc--room-persons-input {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1rem;
}
.rsc--room-persons-input input[type="text"] {
	border: 0.2rem solid #CECECE;
	width: 4rem;
	border-radius: 0.8rem;
	margin-right: 1rem;
	margin-left: 1rem;
	font-size: 20px;
	text-align: center;
	padding: 0.4rem 0.5rem;
}
.rsc--room-persons-input a {
	display: flex;
	align-items: center;
}

.price-offer-discount {
	position: absolute;
	width: 8rem;
	height: calc(100% + 2.5rem);
	top: 0;
	right: 0;
	background-color: #F9E8EC;
	margin-right: -2.1rem;
	margin-top: -1rem;
	text-align: center;
}
.price-offer-discount strong {
	font-size: 24px;
	color: #EE7882;
	margin-top: 2rem;
}
.cs-reservation-btn-wrapper .flex-center-center {
	margin-right: 6rem;
}
.price-offer-discount img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.fixed {
	position: fixed;
	z-index: 999999;
}

.detail-box {
	text-align: center;
	background-color: #FFFFFF;
	border-right: none;
	font-size: 20px;
}
.detail-box .detail-top,
.detail-box strong {
	font-weight: bold;
	font-size: 24px;
}
.detail-box strong { font-size: 20px; }
.detail-box i {
	display: block;
	font-size: 4rem;
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.detail-box img {
	display: block;
	margin-top: 1rem;
	margin-bottom: 1rem;
	max-width: 6rem;
	margin: 0 auto;
}
.detail-box img.flight-outbound {
	transform: scaleX(-1) rotate(-30deg);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
}
.other-offer-item {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.paginator {
	display: none;
}
.tvi--price-meal-col {
	display: flex; 
	height: 100%; 
	flex-direction: column;
	padding-left: 4rem;
	justify-content: center;
}

.btn-close-rooms-conf {
	margin-bottom: 1rem;
}

.price-search--box {
	padding: 0 1rem;
	margin: 0 0.5rem;
	background-color: #FFFFFF;
	height: 5.2rem;
	border-radius: 0.8rem;
}
.price-search--box img {
	width: 2.3rem
}
.price-search--box .select2 {
	width: calc(100% - 2.3rem) !important;
}

.price-search--box .flx-vc-wi img {
	margin-right: 0rem;
}

/*
 |----------------------------------------------------------
 | @HOME BLOG
 |----------------------------------------------------------
 */
.blog-wrapper {
	padding-top: 2rem;
	background-color: #EDEEF0;
	padding-bottom: 4rem;
}
figure { margin: 0; }
.blog-home-section {
	margin: 2rem 0;
}
/* MAIN ARTICLE */
.main-article {
	margin: 0;
	position: relative;
	overflow: hidden;
}
.main-article.two-article figure,
.main-article figure {
	position: relative;
	box-sizing: border-box;
	height: 30rem;
}
.main-article.single-article figure {
	height: 60rem;
}
.home-article-wrapper {
	margin-bottom: 0.2rem;
	padding: 0 0.1rem;
}
.main-article img {
	margin: 0;
	/*height:auto;*/
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
	-webkit-transition: all .3s ease;
    transition: all .3s ease;
	-webkit-transform: scale(1.01);
	vertical-align: middle;
    display: block;
	object-fit: cover;
	width: 100%;
	height : 100%;
}
.main-article figure:after {
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    background-repeat: repeat-x;
}
.main-article:hover img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.main-article-info {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	left: 2rem;
	color: #FFFFFF;
}
.article-tag {
	float: left;
	margin-right: 1rem;
}
.article-tag a {
	display: inline-block;
	color: #FFFFFF;
	background-color: #6639b6;
	padding: 0.2rem 0.5rem;
	text-transform: uppercase;
}
.article-tag a:hover {
	text-decoration: none;
}
.main-article-details {
	list-style: none; 
	margin: 0;
	padding: 0;
}
.main-article-details li {
	float: left;
	margin-right: 2rem;
}
.main-article-title a {
	color: #FFFFFF;
	font-size: 2rem;
	line-height: 1.4;
}

/*
 |----------------------------------------------------------
 | @LIST ARTICLE
 |----------------------------------------------------------
 */
.blog-posts { margin-bottom: 2rem; margin-top: 2rem; }
.blog-post-item {
	margin-bottom: 2rem;
	background-color: #FFFFFF;
	position: relative;
}
.blog-post-item img { display: block; height: 22rem; object-fit: cover; }
.blog-post-info { padding: 1rem 2rem; }
.blog-post-info p { line-height: 2; }
.blog-post-info a { color: #0d55f7; }
.blog-post-title a { font-size: 2rem; color: #333333; }
.blog-post-title a:hover { text-decoration: none; color: #0d55f7; }
.blog-post-details {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 2rem;
}
.blog-post-details li {
	display: inline-block;
	color: #777777;
	margin-right: 0.5rem;
	font-size: 12px;
}
.blog-post-details li a { color: #777777; font-size: 12px; }
.blog-post-details li a:hover {
	text-decoration: none;
	color: #0d55f7;
}
.blog-post-categories-wrapper {
	position: absolute;
	top: 2rem;
	left: 2rem;
}
.blog-post-tag {
	float: left;
	margin-right: 1rem;
}
.blog-post-tag a {
	color: #FFFFFF;
	padding: 0.5rem 1rem;
	background-color: #e81c62;
}
.blog-post-tag a:hover {
	text-decoration: none;
}

/*
 |----------------------------------------------------------
 | @SINGLE ARTICLE
 |----------------------------------------------------------
 */
.single-post { margin-top: 2rem; padding: 0 1rem; }
.single-post .single-post-inner { background-color: #FFFFFF; padding: 2rem; }
.single-post .single-post-inner p {
	line-height: 2;
	font-size: 14px;
	text-align: justify;
}
.single-post img { max-width: 100%; }
.blog-list-link {
	max-width: 20rem;
	display: block;
	margin: 0 auto;
	font-size: 18px;
	padding: 2rem;
	text-transform: uppercase;
	position: relative;
}
.blog-list-link i { font-size: 14px; margin-right: 0.5rem; }
.blog-list-link:hover { text-decoration: none; }

/*
 |----------------------------------------------------------
 | @SIDEBAR
 |----------------------------------------------------------
 */
.blog-sidebar {
	margin-top: 2rem;
	margin-bottom: 2rem;
	padding: 0rem 0rem 0rem 1rem;
}
.blog-sidebar .sidebar-group {
	background-color: #FFFFFF;
	padding: 2rem;
}
.sidebar-group-title {
	margin-bottom: 2rem;
	border-bottom: 1px dotted #ccc;
}
.sidebar-group-title h2 {
	font-size: 1.8rem;
	top: 0.1rem;
	margin: 0;
	position: relative;
	padding-bottom: 0.5rem;
	text-transform: uppercase;
	display: inline-block;
	border-bottom: 0.1rem solid #0d55f7;
}
/* SIDEBAR TAGS LIST */
.sidebar-tags-list {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 1rem;
}
.sidebar-tags-list li {
	display: inline-block;
}
.sidebar-tags-list li a {
	color: #555555;
	border: 0.1rem solid #DEDEDE;
	border-radius: 0.3rem;
	padding: 0.5rem 1rem;
	margin-bottom: 0.5rem;
	margin-right: 0.5rem;
	display: block;
}
.sidebar-tags-list li a:hover {
	text-decoration: none;
	color: #0d55f7;
}

/* SIDEBAR NEWS LIST */
.sidebar-news-list {
	margin: 0;
	list-style: none;
	padding: 0;
}
.sidebar-news-list > li {
	display: block;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 0.1rem solid #DFDFDF;
}
.sidebar-news-block {
	padding: 0 1rem;
}
.sidebar-news-block h3 {
	margin: 0;
}
.news-block-title a {
	font-size: 1.4rem;
	color: #555555;
	display: block;
}
.news-block-title a:hover {
	text-decoration: none;
	color: #0d55f7;
}
.news-block-details {
	list-style: none;
	margin: 0;
	padding: 0;
}
.news-block-details li {
	display: inline-block;
	font-size: 12px;
	color: #777777;
}

.full-width {
	width: 100%;
}

/* XL :: DESKTOP DEVICES (LAPTOPS):: 1366px AND DOWN */
@media (max-width: 1441px) {
	/* GENERAL */
	.container { max-width: 120rem; }
	.container-sm { max-width: 69rem; }
	.btn-primary { font-size: 16px; }
	.form-label { font-size: 1.6rem; }
	.panel { margin-bottom: 3.2rem; margin-top: 1.6rem; }
	.panel-title { font-size: 24px; margin-bottom: 1.6rem; }
	.form-group .select2 { font-size: 1.6rem; line-height: 24px; }
	.form-group .select2 .select2-selection { height: 4.8rem; }
	.select2-results__option { font-size: 15px; }
	.datepickr-calendar { font-size: 16px; }
	.datepickr-calendar .datepickr-day { width: 2.8rem; height: 2.8rem;  }
	.datepickr-calendar .datepickr-months { font-size: 16px; }
	.qc-radio label, .qc-checkbox label { font-size: 15px; }
	
	/* HEADER */
	#header { padding: 1.6rem 3.2rem; }
	/* LISTING */
	.travel-list-item-title {
		font-size: 2.2rem;
	}
	#header.home-header .global-search-wrapper,
	#header .global-search-wrapper { min-width: 68.6rem; }
	ul.menu li a {
		font-size: 18px;
	}
	.user-account .white-smiley,
	.user-account .green-smiley {
		width: 34px;
	}
	.menu-burger .white-close-burger,
	.menu-burger .green-close-burger,
	.menu-burger .white-burger,
	.menu-burger .green-burger {
		width: 30px;
	}
	.global-search-dropdown-results-list li a,
	input.global-search-input { font-size: 20px; }
	.global-search-icon img { width: 26px; }
	.top-search.sticky { margin-top: 7.5rem; padding: 0.6rem 0; }
	.top-search { padding: 1.6rem 0; margin-bottom: 1.6rem; }
	#progress { bottom: -1.8rem; }
	.top-search.sticky #progress { bottom: -0.8rem; }
	.cs-async-wait-message { font-size: 16px; }
	.tsd--text { font-size: 19px; }
	
	/* TRAVEL VIEW ITEM */
	.tvi--header-inner { padding: 0.8rem; }
	.tvi--back-link { font-size: 16px; margin-bottom: 1rem; }
	.tvi--back-link img { width: 20px; }
	.tvi--title-wrapper { margin-bottom: 1rem; }
	.tvi--title { font-size: 3rem; }
	.distance-from img,
	.tvi--address img { width: 18px; }
	.tvi--header .distance-from,
	.tvi--address { font-size: 16px; }
	.tvi--navigation-menu { margin-bottom: 1rem; }
	.tvi--navigation-menu li a { font-size: 16px; padding: 1.6rem 2.4rem; }
	.tvi--gallery-column { padding-right: 2.4rem; }
	.tvi--price-column { padding: 2.4rem; }
	.tvi--price-column--passengers,
	.tvi--price-column--dates,
	.tvi--btn-show-map,
	.btn-show-description,
	.tvi--description { font-size: 16px; }
	.tvi--description { margin-top: 3.2rem; }
	.tvi--price-column--passengers img,
	.tvi--price-column--dates img { width: 2.5rem; }
	.tvi--price-column .q-pricing { font-size: 24px; }
	.tvi--price-column--checkin-hours,
	.tvi--price-column--hotel-property,
	.tvi--price-column--popular-facility,
	.tvi--price-column .q-pricing .price { font-size: 14px; }
	.tvi--price-column--panel { margin-top: 1.2rem; margin-bottom: 1.2rem; }
	.tvi--price-column--panel-title { font-size: 16px; padding-left: 3.5rem; }
	.tvi--price-column--checkin-hours img,
	.tvi--price-column--hotel-property img,
	.tvi--price-column--popular-facility img { width: 2.4rem; }
	.tvi--price-column--hotel-property-no-icon,
	.tvi--price-column--popular-facility-no-icon { width: 3.5rem; }
	#owl-single-item { margin-bottom: 1.6rem; }
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-item img,
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-stage-outer { height: 35rem; }
	.owl-item .thumbnail img { height: 7rem; }
	.tvi--sticky-price .tvi--price-column { padding: 0.5rem; }
	.tvi--header.sticky .tvi--title { font-size: 20px; }
	.tvi--header.sticky ul.stars li img { width: 16px; }
	.tvi--section-title { 
		font-size: 20px; 
		margin-bottom: 1.6rem; 
		margin-top: 2.4rem; 
	}
	.tvi--mobile-show-info { font-size: 20px; }
	.tsd--search-wraper .tsbws--search-box { padding: 0.8rem 1.6rem; }
	.tsd--search-wraper .tsbws--search-box img { width: 22px; }
	.tsb--change-link { font-size: 16px; }
	.tsd--search-wraper .tsbws--search-box .tsb--change-link img { width: 16px; }
	.top-searchbar-with-search { font-size: 16px; }
	.price-title,
	.price-header { font-size: 19px; }
	.price-header > div { padding: 1.6rem 0; padding-top: 2.4rem; }
	.room-row { padding: 0.8rem 1.6rem; margin-bottom: 1.6rem; }
	.price-info span { font-size: 15px; }
	.tlp--persons { font-size: 15px; }
	.btn-price-book { font-size: 16px; }
	.price-column-prices .q-pricing-format { font-size: 24px; }
	.price-column-prices .price .q-pricing-format { font-size: 16px; }
	.price-offer-discount strong,
	.tvi--more-hotels { font-size: 19px; }
	.price-offer-discount {
		margin-top: -0.8rem;
		height: calc(100% + 2.1rem);
		margin-right: -1.7rem;
	}
	.tvi--more-prices { padding-top: 1.6rem; padding-bottom: 0.8rem; }
	.facilities-category { font-size: 1.6rem; }
	.tvi--hotel-facilities .facility-item { font-size:1.5rem; }
	.tvi--hotel-facilities { padding-bottom: 1.6rem; }
	.tvi--related-info { margin-top: 2.4rem; margin-bottom: 4.8rem; }
	.tvi--related-info p { font-size: 19px; margin-bottom: 1.6rem; }
	
	/* SECTION SERVICES */
	.section-services { padding: 4rem 0; }
	.section-service-item { padding: 1.6rem; }
	.ssi--title { font-size: 19px; }
	.ssi--description { font-size: 1.6rem; }
	.search-price-wrapper .passengers-container .btn-trigger,
	.search-price-wrapper .top-searchbar .select2-container .select2-selection--single,
	.price-search--box { height: 4.2rem; }
	.search-price-wrapper .passengers-container .btn-trigger,
	.search-price-wrapper .top-searchbar .select2-container .select2-selection--single .select2-selection__rendered,
	.search-price-wrapper .search-input { font-size: 16px; }
	
	/* TRAVEL LIST ITEM */
	.tlis--panel-header h1,
	.tlis--subtitle h2 { font-size: 2.4rem; }
	.tlis--subtitle h3 { font-size: 19px; }
	.tli--title { font-size: 1.9rem; }
	.travel-list-item { padding: 1rem 1.6rem; }
	.travel-list-item .distance-from,
	.tli--map-link,
	.tli--description p,
	.tli--address { font-size: 16px; }
	.tli--map-link img,
	.tli--address img { width: 18px; }
	.tli--image { height: 21rem; }
	.tli--price-wrapper { font-size: 2.4rem; }
	.tli--initial-price { font-size: 1.6rem; }
	.tli--rate-text { font-size: 1.5rem; }
	.tli--btn-details { font-size: 1.6rem; }
	.travel-list-item-center { padding: 0 1.6rem; }
	.travel-list-item-right { padding: 0.6rem; padding-top: 4rem; }
	.discount-badge.special-offer { font-size: 18px; }
	.discount-badge { font-size: 2.4rem; margin-top: -1rem; }
	.fs-xs { font-size: 15px; }
	.tli--additional-info { padding: 0.8rem 1.6rem; }
	.qc-travel-item .dashed-line-v { margin-top: 1.4rem; margin-bottom: 1.4rem; }
	.discount-badge img { width: 5.4rem; }
	
	/* CHECKOUT */
	.checkout-login-header { padding-top: 1.6rem; padding-bottom: 3.2rem; }
	.chkbrdc--step-text { font-size: 18px; }
	.chk-login-title { font-size: 52px; }
	.chk-form { padding-top: 2.4rem; margin-bottom: 4.8rem; }
	.chk--login-form-title { font-size: 24px; }
	.fs-lg { font-size: 24px; }
	.fs-md { font-size: 19px; }
	.fs-sm { font-size: 16px; }
	.btn-chk-social-login,
	input.chk-input { font-size: 16px; }
	.btn-chk-login { padding: 1.6rem; }
	.checkout-subsection { font-size: 1.6rem; margin-bottom: 1.6rem; }
	.chk-pm-item span { font-size: 16px; }
	.fee-link,
	.fee,
	.fees-wrapper h4 { font-size: 16px; }
	.chk--btn-next { font-size: 19px; padding: 19px 24px; }
	.chk-support-section { padding: 3.2rem 0; }
	.chk--btn-next-wrapper { margin-top: 1.6rem; margin-bottom: 4.8rem; }
	.chk-ss--column-left-title { font-size: 19px; padding-right: 4.8rem; }
	.chksb--inner { padding: 0 1.6rem; }
	.chk-sidebar-offer--title { font-size: 19px; }
	.chk-offer-title,
	.chk-sidebar-offer--about { font-size: 16px; }
	.chk--travel-item-popular-facility,
	.chk--travel-passengers,
	.chk--travel-dates,
	.chk--travel-item-distance-from,
	.chk--travel-checkin-hours,
	.chk--travel-item-address { font-size: 15px; }
	.chk--travel-dates img,
	.chk--travel-item-distance-from img,
	.chk--travel-item-address img { width: 18px; }
	.chk-sidebar-offer .q-price { font-size: 24px; }
	.chkrw--title { font-size: 52px; margin-bottom: 2.4rem; }
	.chkrw--box { padding: 2.4rem; }
	.chkrw--box-title,
	.chkrw--comment-text,
	.chkrw--top-text { font-size: 24px; }
	.chkrw--comment-field,
	.chkrw--modify-link { font-size: 16px; }
	.chkrw--voucher-text,
	.chkrw--total-price,
	.chkrw--terms-text { font-size: 18px; }
	.chkrw--total-price-wrapper { margin-bottom: 6.4rem; margin-top: 1.6rem; }
	.chktk--logo { width: 142px; }
	.chkrw--total-price { padding: 1.6rem 0; }
	.chktk--wrapper { margin-top: 8rem; margin-bottom: 4rem; }
	.chkrw--btn-add-voucher { font-size: 18px; }
	.chkrw--total-price-text { font-size: 27px; }
	.chkrw--btn-pay-and-book { font-size: 19px; padding: 1.9rem 2.4rem; }
	
	/* CONTACT */
	.contact-header h1 { font-size: 80px; }
	.btn-pink,
	.btn-orange,
	.btn-lime { font-size: 18px; }
	.contact-header { height: 33.2rem; }
	.cp--title-first { font-size: 60px; margin-top: 2.4rem; }
	.cp--title-second { font-size: 68px; }
	.cp--description p { font-size: 24px; }
	.ci--box p { font-size: 24px; }
	.ci--box { padding: 0 3.2rem; }
	.contact-textarea { font-size: 18px; height: 12rem; }
	.cp--btn-send { font-size: 18px; }
	.cp--subtitle { font-size: 24px; }
	.au--subtitle { font-size: 56px; }
	.au--signature span { font-size: 52px; }
	.au--signature img { width: 142px; }
	
	.faq-menu-item,
	ul.qc-accordion > li > label { font-size: 19px; }
	ul.qc-accordion > li > div.acc-content p { font-size: 18px; }
	
	/* DESTINATION PAGE */
	.destination-header { height: 22rem; }
	.destination-header .breadcrumbs .breadcrumb-part { font-size: 16px; }
	.destination-header--title { font-size: 68px; }
	.destination-header--title span { font-size: 77px; }
	.destination-header--info,
	.destination-header--info2 { font-size: 24px; }
	.featured-offer { padding: 0 1.6rem; }
	.featured-offer--image { height: 21rem; }
	.featured-offer--title { font-size: 19px; }
	.featured-offer .distance-from,
	.featured-offer--address { font-size: 15px; }
	.featured-offer--address img { width: 18px; }
	.featured-offer .distance-from { margin-bottom: 1.6rem; }
	.featured-offer--btn--v2 { font-size: 1.6rem; }
	.tli--load-more { font-size: 19px; }
	.home--hero-section { font-size: 19px; }
	
	/* TOP SEARCHBAR */
	.top-search .btn-main { font-size: 19px; }
	.top-search .passengers-container .btn-trigger,
	.top-search .select2-container .select2-selection--single,
	.tsd--search-box { height: 4.8rem; }
	.top-search .passengers-container .btn-trigger,
	.top-search .select2,
	.top-search .search-input { font-size: 16px; }
	
	/* FILTERS */
	.filter-item .filter-input { font-size: 16px; }
	.filters--header { margin-bottom: 1.6rem; }
	.filters--header-title { font-size: 16px; }
	.filter-item-title { font-size: 15px; }
	.filter-item .show-filters { font-size: 15px; }
	
	/* NEWSLETTER */
	input[type="submit"].newsletter-btn,
	input.newsletter-input { font-size: 16px; }
	
	/* MY ACCOUNT */
	.btn-myacc-menu { font-size: 19px; }
	.myacc--profile-text { font-size: 24px; }
	
	/* BOOKINGS */
	.user-booking--item-details,
	.user-booking { font-size: 16px; }
	
	/* REGISTER */
	.rp--title { font-size: 52px; }
	.rp--subtitle,
	.rp--subtitle-left,
	.rp--text { font-size: 24px; }
	.rp--subtitle { margin-bottom: 2.4rem; }
	.register-info-list li { font-size: 19px; }
	
	/* LOGIN */
	.popup-wrapper,
	.login-popup-box { padding: 1.6rem; }
	.lpb--title { font-size: 64px; }
	.lpb--description { font-size: 19px; }
	.login--btn { font-size: 18px; }
	.goto-register-lnk,
	.goto-regioster-wrapper,
	.forgot-password-lnk { font-size: 16px; }
}

@media (max-width: 1391px) {
	#header .global-search-wrapper {
		min-width: 68.6rem;
	}
}
@media (max-width: 1281px) {
	#header .global-search-wrapper {
		min-width: 58.6rem;
	}
	.header-slogan {
		display: none !important;
	}
}
@media (max-width: 1160px) {
	#header .global-search-wrapper {
		min-width: 48.6rem;
	}
}
.top-mobile-search {
	display: none;
}
/* LG :: MEDIUM DEVICES (TABLETS) */
@media (max-width: 992px) {
	#header.mobile-sticky {
		padding: 1rem;
		position: fixed;
		width: 100%;
		top: 0;
		z-index: 3;
		background-color: var(--main-color);
	}
	#header.mobile-sticky .hide-on-sticky {
		display: none;
	}
	#header.mobile-sticky .global-search-wrapper {
		display: block;
	}
	#header.mobile-sticky .desktop-logo-img {
		display: none;
	}
	#header.mobile-sticky .mobile-logo-img {
		display: block;
	}
	#header.mobile-sticky ul.menu .menu-burger .white-close-burger {
		display: none !important;
	}
	#header.mobile-sticky ul.menu .menu-burger.active .white-close-burger {
		display: block !important;
	}
	#header.mobile-sticky ul.menu .menu-burger.active .green-close-burger {
		display: none !important;
	}
	#header.mobile-sticky ul.menu .menu-burger .white-burger {
		display: block !important;
	}
	#header.mobile-sticky ul.menu .menu-burger.active .white-burger {
		display: none !important;
	}
	#header.mobile-sticky ul.menu .menu-burger .green-burger {
		display: none !important;
	}
	#header.mobile-sticky .show-on-sticky {
		display: block;
	}
	#header.mobile-sticky .global-search-wrapper {
		min-width: 58rem;
	}
	.btn-continue-chk {
		margin-top: 0;
	}
	.filters-red-point {
		width: 1rem;
		height: 1rem;
		border-radius: 50%;
		background-color: #FF0000;
		display: none;
		margin-left: 1rem;
	}
	.filters-red-point.active { display: block; }
	.au--content {
		margin-bottom: 4rem;
		padding: 2rem 6rem;
	}
	.au--footer {
		display: block;
		text-align: center;
	}
	.flex-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.chktk--text-wrapper {
		padding-left: 0;
	}
	.chktk--wrapper {
		padding: 0 1.5rem !important;
		text-align: center;
		margin-top: 3rem;
		margin-bottom: 3rem;
	}
	.chkrw--total-price-wrapper.fixed {
		position: fixed;
		width: 100%;
		bottom: 0;
		left: 0;
		background-color: #FFFFFF;
		padding: 2rem 1rem;
		margin: 0;
	} 
	.chkrw--comment-wrapper {
		margin-right: 0;
	}
	.top-search.sticky .top-mobile-search {
		display: block;
	}
	.top-mobile-search .tsd--search-box {
		margin-bottom: 0;
	}
	.top-mobile-search.hide {
		display: none;
	}
	.top-search.sticky .top-mobile-search.hide {
		display: none;
	}
	.top-search.sticky .hide-on-sticky {
		display: none;
	}
	.flex-col-md {
		position: relative;
		width: 100%;
		min-height: 1px;
		flex-basis: auto;
	}
	.container {
		max-width: 96rem;
		padding: 0;
	}
	.hide-flx-md {
		display: none;
	}
	.show-flx-md {
		display: flex;
	}
	.hide-ib-md {
		display: none;
	}
	.show-ib-md {
		display: inline-block;
	}
	ul.menu li.hide-md a,
	.hide-md {
		display: none;
	}
	.img-responsive.show-md,
	.show-md { display: block; }
	#header .global-search-wrapper {
		min-width: 53.6rem;
	}
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-stage-outer,
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-item img {
		height: 35rem;
	}
	
	.price-header {
		display: none;
	}
	.tvi--gallery-column {
		padding-right: 0;
	}
	#owl-single-item {
		margin-bottom: 0;
	}
	.tvi--mobile-show-info {
		padding: 2rem;
		color: #9C9D9D;
		font-size: 20px;
		font-weight: bold;
		background-color: #FFFFFF;
		border-bottom: 0.2rem solid #CECECE;
	}
	.tvi--price-column-wrapper {
		background-color: #FFFFFF;
	}
	.tvi--price-column-wrapper .tvi--price-column {
		background-color: #F7F7F7;
	}
	.tvi--section-rooms {
		margin-left: 6rem;
	}
	.opened-icon {
		display: none;
	}
	.opened-icon.active {
		display: inline;
	}
	.closed-icon {
		display: none;
	}
	.closed-icon.active {
		display: inline;
	}
	.chk-support-section {
		display: block;
		padding: 3.5rem 1rem;
	}
	.chk-ss--column-right {
		text-align: center;
		margin-top: 1rem;
	}
	.checkout-main {
		width: 100%;
	}
	.chk-login-title {
		font-size: 60px;
	}
	
	.fs-lg { font-size: 24px; }
	.chk-login-form {
		padding: 2rem;
	}
	.chk-login-col-right {
		margin-left: 0;
		text-align: center;
	}
	.chk-login-col-right:before {
		width: 100%;
		height: 2px;
		background-image: linear-gradient(to right, #CECECE 65%, rgba(255,255,255,0) 0%);
		background-position: center;
		background-size: 20px 2px;
		background-repeat: repeat-x;
		left: 0;
		z-index: 100;
		margin-left: 0;
		margin-top: -1rem;
	}
	.chkbrdc--step-text {
		font-size: 16px;
	}
	.checkout-main {
		padding: 0 1.5rem;
	}
	.fees-wrapper {
		
	}
	.fees-wrapper:before {
		display: none;
		margin-left: -1.5rem;
		margin-right: -1.5rem;
	}
	.chk-pm-item {
		text-align: center;
	}
	.chkrw--title {
		font-size: 60px;
	}
	.chkrw--top-text {
		font-size: 24px;
	}
	.chkrw--container {
		margin-top: 5rem;
		margin-bottom: 3rem;
	}
	.chkrw--info-wrapper {
		margin-right: -2rem;
		margin-left: -2rem;
	}
	.chkrw--box {
		padding: 1rem;
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}
	.chkrw--passenger-title {
		display: block;
	}
	.chkrw--fees-list-wrapper {
		padding-left: 0;
	}
	.chkrw--total-price-wrapper {
		display: block;
	}
	.chkrw--total-price {
		margin-bottom: 2rem;
		margin-right: 0;
	}
	.hero-title {
		top: 12%;
		padding: 0 1rem;
		box-sizing: border-box;
	}
	.hero-subtitle {
		padding: 0 1rem;
		box-sizing: border-box;
		top: 24%;
	}
	.hero-scroll-hashtag,
	.hero-scroll-btn { font-size: 22px; }
	.category-block--image {
		width: 40vw;
	}
	.category-block-2 {
		height: 54vw;
	}
	.category-block {
		height: 54vw;
	}
	.home-services {
		padding: 1rem;
	}
	.service-item {
		padding: 1rem;
	}
	.footer--logo {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 2rem;
	}
	.footer--logo-wraper {
		padding: 0;
	}
	#footer {
		padding: 3rem 4rem;
	}
	.tvi--hotel-facilities {
		padding: 1rem;
	}
	.section-services {
		padding: 2rem;
	}
	.section-service-item {
		padding: 1rem;
		margin-bottom: 1rem;
	}
	.ssi--icon img {
		max-width: 100%;
		display: block;
	}
	.ssi--title {
		font-size: 18px;
	}
	input.newsletter-input {
		padding: 2rem;
		text-align: center;
	}
	.newsletter-input-wrapper {
		padding: 0 1rem;
		border-radius: 0.8rem;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	.newslette-input {
		text-align: center;
	}
	input[type="submit"].newsletter-btn {
		border-radius: 0.8rem;
		border-top-right-radius: 0;
		border-top-left-radius: 0;
		margin-left: 0;
		margin-top: 1rem;
	}
	nav > ul > li {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.page-with-hero .top-search .child-age label {
		display: block;
	}
	.page-with-hero .top-search label {
		
	}
	.page-with-hero.pr-hotels .top-search {
		top: 35%;
	}
	.fancybox-container {
		height: calc(100% - 4rem);
	}
	.pr-hotels .search-btn-one-cell {
		flex: 100%;
		max-width: 100%;
	}
	.pr-hotels .ts--passangers {
		flex: 100%;
		max-width: 100%;
	}
	.travel-list-item {
		padding-top: 4rem;
	}
	.travel-list-item .discount-badge {
		margin-top: -4rem;
		right: 0;
		font-size: 20px;
		padding: 0.8rem;
		width: auto;
		margin-right: 2rem;
	}
	.travel-list-item .discount-badge img {
		width: 5rem;
	}
	.sidebar {
		width: 100%;
		padding-left: 0;
		margin-top: 0;
	}
	.checkout-sidebar > .row {
		padding: 0;
	}
	.fees-wrapper {
		margin-left: 0;
	}
	.panel-title {
		text-align: center;
	}
	.popup-wrapper {
		padding: 1rem;
	}
	.login-popup-box {
		padding: 0;
	}
	.lpb--title {
		font-size: 65px;
		line-height: 1;
	}
	.lpb--image {
		width: 16rem;
		max-width: 100%;
	}
	.lpb--description {
		font-size: 20px;
		margin-bottom: 0;
	}
	.rp--header {
		padding: 1rem;
	}
	.rp--title {
		font-size: 54px;
		line-height: 1;
	}
	.register-right-column:before {
		width: 0;
	}
	.register-right-column-inner {
		padding: 0;
	}
	.register-form {
		padding: 0 1rem;
	}
	.myacc-menu {
		display: block;
		padding: 0 1rem;
	}
	.btn-myacc-menu {
		width: 100%;
		margin-bottom: 1rem;
		margin-left: 0;
		margin-right: 0;
	}
	
	.destination-block--btn .hide-md {
		display: none;
	}
	.tsd--search-box {
		margin-bottom: 1rem;
	}
	.top-search .btn-main {
		width: 100%;
		justify-content: center;
	}
	.tsd--search-wraper .tsbws--search-box {
		padding: 1rem 0.5rem;
	}
	.mobile-m-bottom {
		margin-bottom: 1rem;
	}
	.search-price-wrapper .top-searchbar .btn-price-search {
		width: 100%;
	}
	.search-price-wrapper .main-search {
		padding: 0 0.5rem;
	}
	.search-price-wrapper form > .flex-row .flex-col {
		padding: 0;
	}
	.tvi--mobile-navigation-menu {
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 999;
	}
	.tvi--mobile-navigation-menu li {
		width: 33.33%;
		float: left;
		padding: 0;
	}
	.tvi--mobile-navigation-menu.without-map li {
		width: 50%;
	}
	.tvi--mobile-navigation-menu.without-map-and-facilities li {
		width: 100%;
	}
	.tvi--mobile-navigation-menu li a {
		display: block;
		text-align: center;
		background-color: #E8E8E8;
		color: var(--main-color);
		font-size: 24px;
		font-weight: bold;
		padding: 1rem;
	}
	.tvi--mobile-navigation-menu li a {
		border-right: 0.1rem solid var(--main-color);
	}
	.tvi--mobile-navigation-menu li:last-child a {
		border-right: 0;
	}
	.chk-pm-item-wrapper {
		margin: 0 0.5rem;
	}
	.price-offer-discount {
		margin-top: -6.6rem;
		height: auto;
		padding: 1rem;
		border-bottom-left-radius: 0.6rem;
		border-bottom-right-radius: 0.6rem;
		margin-right: -1rem;
	}
	.price-offer-discount img {
		display: none;
	}
	.cs-reservation-btn-wrapper .flex-center-center {
		margin-right: 0;
	}
	.price-column-prices .q-pricing-format {
		font-size: 24px;
	}
	.price-column-prices .price .q-pricing-format {
		font-size: 16px;
	}
	.price-column-wrapper {
		margin-right: 0;
		text-align: center;
	}
	.mobile-fees-wrapper {
		display: none;
		position: absolute;
		top: 0;
		transform: translateY(-100%);
		width: 100%;
		background-color: #FFFFFF;
		border: 0.1rem solid var(--main-color);
		padding: 1rem;
		border-radius: 0.8rem;
	}
	.mobile-fees-wrapper.active {
		display: block;
	}	
	.btn-mobile-fees {
		display: block;
		margin-top: 2rem;
		text-align: center;
		color: var(--main-color);
		font-size: 18px;
		text-decoration: underline;
		padding: 1rem;
	}
	.btn.btn-pink.btn-border {
		width: 100%;
		white-space: normal;
	}
	.detail-box {
		font-size: 16px;
	}
	.contact-header h1 {
		font-size: 55px;
	}
	.contact-header {
		height: 26.5rem;
	}
	.cp--description {
		padding: 1rem 2rem;
	}
	.cp--title-first {
		font-size: 45px;
	}
	.cp--title-second {
		font-size: 54px;
	}
	.ci--box p {
		margin: 0; 
		font-size: 24px;
	}
	.ci--box {
		padding: 0 1rem;
	}
	.about-us-description {
		padding: 2rem;
		text-align: center;
	}
	.about-us-description-title {
		font-size: 54px;
	}
	.about-us-info h5 {
		margin-top: 2rem;
	}
	.about-us-info {
		text-align: center;
	}
	.about-us-description-signature-wrapper img {
		width: 140px;
	}
	.lpb--title {
		font-size: 45px;
	}
	.login-form-subtitle {
		font-size: 24px;
	}
	.footer-wrapper {
		display: block;
	}
	.footer-right-column {
		padding: 0 1rem;
	}
	.footer-right-inner {
		display: flex;
		justify-content: space-between;
	}
	.footer--social-wrapper {
		margin: 0;
		display: block;
	}
	#header .show-on-sticky.green-chevron,
	#header .show-on-sticky.white-chevron {
		display: none;
	}
	.home-header a.user-account.active .green-chevron,
	.home-header.sticky a.user-account.active .white-chevron,
	.home-header.sticky .user-account:hover .white-chevron,
	.home-header .user-account:hover .green-chevron {
		display: none !important;
	}
	.home-header.sticky .user-account-li {
		display: none;
	}
	#header {
		padding: 1rem 2.5rem;
	}
	#header.sticky {
		padding: 1rem 2.5rem;
	}
	.tsd--search-wraper {
		display: block;
	}
	.tsd--text-column.flx-vc {
		display: block;
		text-align: center;
		margin-bottom: 1rem;
	}
	.tsd--text-column.flx-vc img {
		margin: 0 auto;
	}
	.tsd--data-col {
		justify-content: center;
	}
	.tli--additional-info {
		justify-content: center;
	}
	.top-search.sticky .tsd--text-column {
		display: none;
	}
	.tvi--location-wrapper.flx-vc {
		display: block;
	}
	.tvi--back-link {
		margin-bottom: 0;
	}
	.tvi--title-wrapper {
		margin-bottom: 1rem;
	}
	.tvi--location-wrapper .tvi--address {
		margin-bottom: 1rem;
	}
	.tvi--description {
		background-color: #FFFFFF;
		margin-top: 1rem;
		padding: 0 6.5rem;
		padding-right: 3rem;
	}
	.tvi--prices-wrapper {
		padding-top: 2rem;
	}
	.top-search.sticky .top-mobile-search {
		display: block;
	}
	.top-search.sticky .qc-category-search-forms {
		display: none;
	}
	.top-search.sticky .qc-category-search-forms.show-on-sticky {
		display: block;
	}
	.tsd--price-search .tsd--data-col {
		justify-content: flex-start;
		margin-left: 2rem;
	}
	.qc-serach-btn-col .search-box {
		padding-top: 0;
	}
	.no-offers-title {
		font-size: 50px;
	}
	.no-offers-info p {
		font-size: 30px;
	}
	.dynamic-content-loader {
		background-image: url(https://www.alohotels.ro/uploads/banners/loader.png) !important;
	}
	.list-filter {
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 9999;
		height: 100%;
		overflow-y: scroll;
	}
	.chk-ss--column-right-program {
		display: block;
	}
	.chk-ss--column-left-title {
		padding-right: 0;
	}
}
/* MD :: SMALL DEVICES (LANDSCAPE PHONE) */
@media (max-width: 768px) {
	#header.home-header a.user-account .hide-on-sticky.green-chevron,
	#header.home-header a.user-account.active .hide-on-sticky.green-chevron,
	#header.home-header a.user-account .hide-on-sticky.green-smiley,
	#header.home-header a.user-account.active .hide-on-sticky.green-smiley { display: none !important; }
	#header.home-header a.user-account.active .show-on-sticky.white-chevron,
	#header.home-header a.user-account .show-on-sticky.white-chevron,
	#header.home-header a.user-account .show-on-sticky.white-smiley,
	#header.home-header a.user-account.active .show-on-sticky.white-smiley {display: block !important; }
	#header.home-header a.user-account span,
	#header.home-header a.user-account.active span { color: #FFFFFF !important; }
	.hero-info-bs {
		position: relative;
		transform: none;
		left: 0;
		top: 26%;
	}
	.charters-hero-banner .hero-info-bs,
	.hotels-hero-banner .hero-info-bs { top: 0; }
	.page-with-hero .top-search {
		position: relative;
		transform: none;
		left: 0;
		z-index: auto;
	}
	.page-with-hero.pr-hotels .top-search {
		top: 0;
	}
	.search-persons-container {
		position: fixed;
		top: 0;
		margin-top: 0;
		width: 100%;
		height: 100%;
	}
	.datepickr-calendar {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		margin: 0;
	}
	
	.no-results-text h1 { font-size: 54px; }
	.no-results-text p { font-size: 20px; }
	.no-results-text strong { font-size: 20px; }
	.no-results-text { margin-bottom: 3rem; }
	.container {
		max-width: 540rem;
	}
	.tlis--panel-header h1 {
		font-size: 24px;
	}
	.tlis--subtitle h2 {
		font-size: 24px;
	}
	.tlis--subtitle h3 {
		font-size: 20px;
	}
	.travel-list-item {
		padding: 4rem 0;
		padding-bottom: 2rem;
		margin-bottom: 2rem;
		border: 0.2rem solid #EDEDED;
		border-left: 0;
		border-right: 0;
	}
	.tli--image {
		width: 100%;
		height: 17rem;
		object-fit: cover;
	}
	.tli--facility {
		padding: 1rem;
	}
	.tli--facility-name {
		color: #737373;
	}
	.tli--btn-details {
		font-size: 22px;
		margin-top: 1rem;
		margin-bottom: 1rem;
		font-weight: bold;
		text-align: center;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
	.travel-list-item-right {
		padding-top: 1rem;
	}
	#header .global-search-wrapper,
	#header .on-create-account .global-search-wrapper,
	#header.home-header .global-search-wrapper {
		min-width: 43.6rem;
	}
	#header {
		padding: 1rem 2rem;
	}
	#header.home-header.sticky .global-search-wrapper {
		width: calc(100% - 2rem);
		min-width: 43.6rem;
	}
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-stage-outer,
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-item img {
		height: 30rem;
	}
	#header.home-header.sticky .header-menu { min-width: auto; }
	ul.menu .user-account-li {
		display: none;
	}
	.alo-menu-dd ul li a.user-account {
		display: block;
	}
	.destination-header--title {
		font-size: 40px;
	}
	.destination-header--title span {
		font-size: 45px;
	}
	.destination-header--info {
		font-size: 24px;
	}
	.destination-header--info2 {
		font-size: 24px;
	}
	#header .global-search-wrapper {
		min-width: auto;
	}
	.pr-hotels .ts--passangers {
		flex: 75%; 
		max-width: 75%;
	}
	.pr-hotels .search-btn-one-cell {
		flex: 25%;
		max-width: 25%;
	}
	/*
	.tvi--title-wrapper ul.stars {
		width: 100%;
		flex: 100%;
		flex-basis: 1;	
	}
	*/
	.dynamic-content-loader strong {
		margin-top: -23.4rem;
		font-size: 50px;
	}
	.dynamic-content-loader span {
		font-size: 18px;
	}
	.contact-header {
		height: 36.5rem;
	}
	.contact-buttons-wrapper .btn {
		display: block;
		margin-bottom: 1rem;
	}
	.featured-offer--image {
		height: 16rem;
	}
	.featured-offer--title {
		font-size: 22px;
	}
	.featured-offer .distance-from {
		margin-bottom: 1rem;
	}
	.featured-offer {
		padding: 0 1rem;
	}
	.tvi--price-meal-col {
		padding-left: 0;
	}
	.cs-cache-chart-heading {
		padding: 0rem 1rem;
	}
}

.filter-item .show-filters {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
	text-decoration: none;
}

.flight-filter-badge {
	padding: 1rem;
	font-size: 18px;
	margin-right: 1rem;
	margin-bottom: 1rem;
	background-color: #DCDDDD;
	color: var(--main-text-color);
}
.flight-filter-badge a i {
	color: #FF0000;
}
.badges-wrapper {
    float: left;
    width: 60%;
}
.btn-reset-filters {
	font-size: 18px;
}

.badges-wrapper .owl-carousel .owl-stage {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: box;
}

.price-item {
	margin-bottom: 1rem;
	border-bottom: 0.2rem solid #CECECE;
	padding-bottom: 1rem;
}
.price-item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}
.room-box.price-item {
	margin-bottom: 3rem;
}
.room-box.price-item {
	border-bottom: 0;
}
.tvi--prices-wrapper {
	border-bottom: 0.2rem solid #CECECE;
}
.te--info {
	background-color: #F1860F;
	color: #FFFFFF;
	padding: 0 0.7rem;
	box-sizing: border-box;
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
}
.te--info ~ .bs-tooltip {
	opacity: 1;
}
.te--info ~ .bs-tooltip .tooltip-inner {
	background-color: #FFFFFF;
	width: 300px;
	max-width: 25rem;
	font-size: 16px;
	border: 0.2rem solid #F1860F;
	color: var(--main-text-color);
	border-radius: 0.5rem;
}
.te--info ~ .bs-tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -8px;
	border-width: 8px 8px 8px 0;
	border-right-color: #F1860F;
	margin-left: -3px;
}


.pr-passengers .chk-input::-webkit-input-placeholder,
.checkout-main .chk-input::-webkit-input-placeholder,
.chk-account-details .chk-input::-webkit-input-placeholder {
	font-weight: 400;
	font-style: italic;
	color: #8E8E8E;
}
.pr-passengers .chk-input::-moz-placeholder,
.checkout-main .chk-input::-moz-placeholder,
.chk-account-details .chk-input::-moz-placeholder {
	font-weight: 400;
	font-style: italic;
	color: #8E8E8E;
}
.pr-passengers .chk-input:-ms-input-placeholder,
.checkout-main .chk-input:-ms-input-placeholder,
.chk-account-details .chk-input:-ms-input-placeholder {
	font-weight: 400;
	font-style: italic;
	color: #8E8E8E;
}
.pr-passengers .chk-input:-moz-placeholder,
.checkout-main .chk-input:-moz-placeholder,
.chk-account-details .chk-input:-moz-placeholder {
	font-weight: 400;
	font-style: italic;
	color: #8E8E8E;
}

.chkrw--container .chk-input::-webkit-input-placeholder {
	font-weight: 400;
}
.chkrw--container .chk-input::-moz-placeholder {
	font-weight: 400;
}
.chkrw--container .chk-input:-moz-placeholder {
	font-weight: 400;
}
.chkrw--container .chk-input:-ms-input-placeholder {
	font-weight: 400;
}



.ts--search-box {
	background-color: #FFFFFF;
	padding: 0 1rem;border-radius: 0.8rem;
}
.ts--search-box .flx-vc-wi img {
	margin-right: 0;
}
.ts--select-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
	background-image: url('https://www.alohotels.ro/code/res/images/chevron-down-icon.png');
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	width: 30px;
	height: 10px;
	top: 50%;
	transform: translateY(-50%);
	right: 0.5rem;
}
.ts--select-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
	padding-right: 36px;
}

.chk-pm-item .total-pricing .price-from-text {
	display: none;
}

.chkrw--payment-title {
	position: relative;
}
.chkrw--payment-title:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: var(--main-color);
	margin-left: -3rem;
	margin-top: 0.3rem;
}

.chk--sidebar-turists img {
	margin-left: -0.3rem;
}
.chk--sidebar-turists img:first-of-type {
	margin-left: 0;
}


.top-search .ts--select-wrapper .select2-container .select2-selection--single {
	border: 0.2rem solid #FFFFFF;
}
.top-search .ts--select-wrapper .select2-container.select2-container--open .select2-selection--single {
	border: 0.2rem solid var(--pink-color);
}
.top-search .ts--select-wrapper .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow {
	transform: rotateX(180deg) translateY(50%);	
}


.alo-menu-wrapper .img-wrapper {
	width: 7rem;
	margin: 0;
	text-align: center;
}

.checkout-main .fee .price-from-text {
	display: none;
}

.tli--image-link {
	display: block;
	width: 100%;
}

/*
	@FLIGHT TICKETS
*/
.flight-tickets-sort-type {
	background-color: #F0F0F0;
	padding: 0.6rem 1rem;
	display: inline-block;
	width: 4rem;
	text-align: center;
	border: 0.1rem solid #D6D6D6;
	/*height: 3.6rem;*/
	height: 3.8rem;
	box-sizing: border-box;
	border-left: 0;
	margin-left: -0.4rem;
}
.flight-tickets-sort-type:hover {
	text-decoration: none;
}
.flight-tickets-sort-type .zmdi {
	color: #777777;
	font-size: 18px;
	line-height: 1.1;
}
.flight-tickets-sort-type .show {
	display: block;
}
.flight-tickets-sort-type .hide {
	display: none;
}

.sort-flights-wrapper select {
	border-width: 0.1rem;
	border-radius: 0.3rem;
}
.sort-flights-wrapper select:focus,
.sort-flights-wrapper select:hover {
	border: 0.1rem solid #D6D6D6;
}
.sort-flights-group {
	display: inline-block;
}
.clear {
	content: "";
    clear: both;
    display: table
}

.flight-box-row {
	background-color: #FFFFFF;
	margin-bottom: 2rem;
	box-shadow: 0 3px 20px 2px rgba(0,0,0,0.1);
	border: 0.1rem solid #E1E3E9;
	padding: 1rem;
	text-align: center;
}
.fbr--airport {
	font-size: 16px;
	color: #000000;
	display: block;
}
.fbr--date {
	display: block;
	color: #333333;
	font-size: 12px;
	font-weight: bold;
}
.fbr--carrier {
	color: #838A9E;
	font-weight: 600;
	text-align: center;
}

.fbr--carrier img {
	width: 5.5rem;
	display: inline-block;
}

.fbr--price {    
	font-weight: bold;
    font-size: 22px;
    margin-bottom: 1rem;
    display: block;
}

.flights-container .tli--load-more a {
	background-color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	width: auto;
	margin: 0 auto;
	background-color: #f44336;
	color: #FFFFFF;
	border: 0;
}

.flights-box-rows {
	margin-bottom: 2rem;
	border-bottom: 0.1rem solid #CDCDCD;
	background-color: #FFFFFF;
	padding: 2rem 1rem;
}
.fbrs--airport-to-price {
	display: inline-block;
	font-weight: bold;
}

.flights-container .destination-header {
	background-color: #FFFFFF;
}
.flights-container .list-filter {
	background-color: transparent;
	padding: 2rem 1rem;
}
.flights-container .list-filter.active { background-color: #FFFFFF; }
.fbrs--row {
	padding: 1rem 0;
	border-bottom: 0.1rem solid #D6D6D6;
}
.fbrs--row:last-child {
	border-bottom: none;
}
.flight-ticket-item .flight-route span.arrival-next-day { 
	color: var(--pink-color); 
	margin-top: 5px; 
	display: block;
	font-weight: 500;
}
.flight-legs.mdt-c {
	color: var(--main-color);
}
.flight-tickets-wrapper {
	margin-top: 2.3rem;
}
.flight-tickets-wrapper h1 {
	font-size: 20px;
	margin-bottom: 1rem;
	color: #838A9E;
	color: #333333;
}
.flight-tickets-wrapper h2.flight-tickets-header-text {
	font-size: 18px;
	font-weight: 600;
	color: #939393;
}
.flight-tickets .breadcrumbs {
	padding: 15px;
	font-size: 16px;
	color: #939393;
}
.flight-tickets .breadcrumbs a {
	font-size: 16px;
	color: var(--main-color);
}

/*
	@FLIGHT TICKET ITEM
*/
.flight-ticket-item .dashed-line-v { margin-top: 3rem; margin-bottom: 3rem; }
.flight-ticket-item-box { border: 0.1rem solid #EFEFEF; padding: 1rem 2rem; border-radius: 0.8rem; }
.cs-flight-ticket-item-dynamic-package-selected .flight-ticket-item-box { border: 0.2rem solid var(--main-color); }
.flight-ticket-item hr {
	border-top-color: #EFEFEF;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.flight-ticket-item.flight-ticket-item__checkout { box-shadow: none; border: 0; }
.flight-ticket-item .legs-details { display: none; margin-top: 20px; }
.flight-ticket-item .flight-company { padding: 12px 0; }
.flight-ticket-item .btn-flight-details {
	border: 0;
    font-size: 16px;
    padding: 0px 10px;
	color: var(--pink-color);
	font-weight: 500;
}
.flight-ticket-item .cs-flight-select-btn {
	font-weight: 500;
	line-height: 1.5;
	margin-top: 20px;
	border-radius: 0.8rem;
}
.flight-ticket-item .cs-flight-price-extra { list-style: none; font-size: 16px; }
.flight-ticket-item .flight-company img {
	max-width: 100%;
	width: 7.5rem;
	padding-top: 1rem;
}
.flight-ticket-item .flight-company span {
	font-weight: bold;
	font-size: 16px;
	display: block;
	color: #939393;
}
.flight-ticket-item .flight-company span.cs-fare-class-under-carrier { 
	font-weight: 400; 
	margin-top: 5px; 
	font-size: 14px;
}
.flight-ticket-item .flight-date {
	padding: 10px;
	font-weight: bold;
	font-size: 16px;
}
.flight-ticket-item .flight-date span { color: #838A9E; font-size: 12px; }
.flight-ticket-item .flight-route {
	padding: 1.2rem 1rem;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}
.flight-ticket-item .flight-route span {
	font-size: 16px;
	white-space: nowrap;
}
.flight-ticket-item .flight-route span.flight-time {
	display: block;
	font-size: 18px;
	color: #000000;
	margin-top: 5px;
}
/* FLIGHT ARROW */
.flight-ticket-item .flight-arrow {
	position: relative;
	width: 100%;
}
.flight-ticket-item .flight-arrow:before {
	height: 2px;
	background-color: #000000;
	content: "";
	bottom: 0;
	left: 0;
	margin-bottom: -0.5rem;
	position: absolute;
	width: 100%;
}
.flight-ticket-item .flight-arrow:after {
	content: "";
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    transform: rotate(45deg);
    position: absolute;
    bottom: 0;
	margin-bottom: -1rem;
    right: 0;
    width: 1rem;
    height: 1rem;
    margin-top: -5px;
}
.flight-ticket-item .flight-line {
	position: relative;
	width: 100%;
	margin-bottom: 3rem;
}
.flight-ticket-item .flight-line span { font-size: 18px; }
.flight-ticket-item .flight-line:before {
	height: 2px;
	background-color: #838A9E;
	content: "";
	bottom: 0;
	left: 0;
	margin-bottom: -1.5rem;
	position: absolute;
	width: 100%;
	max-width: 10rem;
	left: 50%;
	transform: translateX(-50%);
}
.flight-ticket-item .flight-arrow.reverse:after { transform: rotate(-135deg); left: 0; }
.flight-ticket-item .flight-arrow .flight-legs {
	position: absolute;
    top: 0;
    margin-top: 4rem;
    left: 50%;
    transform: translateX(-50%);
	color: #512da8;
	cursor: pointer;
}
.flight-ticket-item .flight-line .flight-legs {
	position: absolute;
    top: 0;
    margin-top: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
	font-size: 14px;
}
.cs-dynamic-package-selected-option-heading {
	font-size: 20px;
	color: var(--main-color);
	text-align: center;
	padding: 10px 10px;
}
.dynamic-package-selected-opt-messages-on-hotels {
	font-size: 20px;
	color: #8E8E8E;
	margin-top: 0.6vw;
	margin-bottom: 0.6vw;
	font-weight: 400;
}
.dynamic-package-selected-opt-messages-on-hotels-2 {
	font-size: 20px;
	color: #8E8E8E;
	margin-top: 1vw;
	margin-bottom: 1vw;
	font-weight: 400;
}
.cs-dynamic-package-controls { margin-bottom: 15px; }
.cs-dynamic-package-panel-switcher-details {
	background-color: #FFFFFF;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border: 2px solid var(--main-color);
	border-bottom: 0;
	margin-right: 10px;
}
.cs-dynamic-package-panel-switcher.selected .cs-dynamic-package-panel-switcher-details {
	background-color: var(--main-color);
	color: #FFFFFF;
}
.cs-dynamic-package-panel-switcher:last-child .cs-dynamic-package-panel-switcher-details {
	margin-right: 0;
}
.cs-c-table-cell {
	color: var(--main-color);
	font-size: 18px;
	font-weight: 400;
}
.cs-dynamic-package-panel-switcher.selected .cs-dynamic-package-panel-switcher-details .cs-c-table-cell {
	color: #FFFFFF;
}
.flight-details-popup {
	font-size: 18px;
	color: var(--main-color);
	font-weight: bold;
	text-decoration: none;
}
.chk--included-service-item { 
	margin-bottom: 20px; 
	font-size: 16px; 
	line-height: 1.5;
}
.chk--service-title-form-to { 
	color: #333333;
	font-weight: 600;
}
.cs-pick-baggages {
	color: #333;
	box-sizing: border-box;
	display: block;
	position: relative;
	font-size: 16px;
	font-weight: 600;
}
.cs-pick-baggages:hover {
	text-decoration: none;
}
.pick-baggages-btn-trigger {
	color: var(--main-color);
	font-size: 16px;
}
.pick-baggages-btn-trigger .fas {
	transition: transform 0.2s;
}
.pick-baggages-wrapper:hover {
	border-color: var(--main-color);
}
.pick-baggages-wrapper:hover .pick-baggages-btn-trigger {
	color: #333333;
}
.pick-baggages-wrapper {
	border: 0.2rem solid #D6D6D6;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 30px;
	border-radius: 0.3rem;
	margin-bottom: 20px;
}
.pick-baggages-options {
	height: 0;
	overflow: hidden;
	transition: height 0.2s;
}
.pick-baggages-options-inner {
	padding-top: 2rem;
}
.pick-baggages-options-inner label {
	color: #333333;
}
.cs-passenger-flight-services {
	margin-bottom: 30px;
}
.cs-passenger-flight-services label {
	color: #333;
	font-size: 18px;
	
}

/* FLIGHT LEGS TIMELINE */
.legs-details-header {
	padding: 1rem;
}
.legs-details-body {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
	padding: 1rem;
}
.legs-details-body .legs-timeline {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.legs-details-body .legs-timeline:before {
	content: "";
    display: block;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 0.2rem;
    background-color: #E1E3E9;
}
.legs-details-body .legs-timeline .flight-departure:first-child {
	-webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}
.legs-details-body .legs-timeline .flight-departure,
.legs-details-body .legs-timeline .flight-arrival {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0.8rem;
	background-color: var(--main-color);
    border-radius: 50%;
	text-align: center;
}
.legs-details-body .legs-timeline .flight-arrival i,
.legs-details-body .legs-timeline .flight-departure i {
	font-size: 20px;
	color: #FFFFFF;
	width: 20px;
}

.legs-details-body .legs-sections {
	-webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
	padding: 0 1rem;
	font-size: 16px;
}
.legs-sections .leg-section {
	padding: 0 1rem;
	margin-bottom: 20px;
	position: relative;
}
.legs-sections .leg-section.wait:before {
	content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -3.3rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    /*background-color: #512da8;*/
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.leg-section .leg-section-date {
	padding: 0 1rem;
}
.leg-section .leg-section-info {
	padding: 0 1rem;
}
.leg-section .leg-section-flight {
	padding: 0 1rem;
}
.leg-section .leg-section-carrier {
	padding: 1rem;
	text-align: left;
	background-color: #F3F4F8;
}
.leg-section .leg-section-flight-number {
	padding: 1rem;
	text-align: center;
	background-color: #F3F4F8;
}
.leg-section .leg-section-duration {
	padding: 1rem;
	text-align: right;
	background-color: #F3F4F8;
}
.leg-section-airport,
.leg-section-time {
	font-weight: 600;
	display: block;
}
.leg-section-location,
.leg-section-day {
	display: block;
}
.leg-section-wait-time,
.leg-section-wait-info {
	background-color: var(--main-color);
	padding: 1rem;
	color: #FFFFFF;
}
.leg-section-wait-time {
	text-align: right;
}
.leg-section-carrier-image {
	height: 1.3rem;
	max-width: 100%;
}

.flights-filter-variant {
	font-size: 12px;
	color: #838A9E;
}

.legs-details-header {
	background-color: #F0F0F0;
}
.legs-details-header h2 {
	float: left;
	font-size: 14px;
}
.legs-details-header .close-leg-details {
	font-size: 20px;
	color: #333333;
}

/* PASSENGER BAGGAGE */
.baggage-item {
	padding: 0.5rem 1rem;
	text-align: center;
	font-size: 14px;
	color: #949496;
	font-weight: 600;
}
.baggage-item input[type="radio"] {
	display: none;
}
.baggage-item label {
	border: 0.2rem solid #E1E3E9;
	padding: 1rem;
	border-radius: 0.3rem;
}
.baggage-item input[type="radio"]:checked ~ label {
	border-color: #512da8;
	color: #512da8;
}
.baggage-item .baggage-item-price {
	color: #212121;
	display: block;
	font-weight: 700;
	font-size: 18px;
	margin-top: 1rem;
}



.baggage-quantity-wrapper {
	padding: 0.5rem;
}
.baggage-qantity {
	border: 0.2rem solid #E1E3E9;
	padding: 1rem;
	border-radius: 0.3rem;
	text-align: center;
}
.baggage-info-text {
	font-size: 16px;
}
.baggage-weight {
	display: block;
	font-weight: 600;
	font-size: 20px;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
}
.baggage-price {
	display: block;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 1rem;
}
.baggage-quantity-btns {
	margin: 0 auto;
	display: inline-block;
}
.baggage-minus,
.baggage-plus,
.baggage-quantity-no {
	float: left;
	display: block;
}
.baggage-quantity-no {
	width: 5rem;
	border: 0.1rem solid #E1E3E9;
	height: 4rem;
	padding: 1rem;
	box-sizing: border-box;
}
.baggage-plus,
.baggage-minus {
	height: 4rem;
	width: 4rem;
	padding: 1rem;
	background-color: #E1E3E9;
	box-sizing: border-box;
}
.baggage-icon {
	position: relative;
}
.baggage-icon i {
	font-size: 80px;
	color: #5B30B2;
}
.baggage-icon .baggage-weight {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	margin-top: 0rem;
	color: #FFFFFF;
}
.baggage-icon .baggage-weight.suitcase {
	margin-top: -1rem;
}

.more-baggage-link {
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 16px;
}
.more-baggage-wrapper {
	display: none;
}

/* PRICE */
.helper {
	display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.vertical-align-middle {
	vertical-align: middle;
    display: inline-block;
}
.flight-ticket-item .flight-price {
	font-weight: bold;
	font-size: 28px;
	margin-bottom: 15px;
	display: block;
}

.flights-container {
	padding: 0 1rem;
	padding-bottom: 2rem;
	padding-top: 1rem;
}
.price-item .btn.btn-more-rooms,
.btn-more-rooms {
	height: 3.6rem;
	line-height: 3.6rem;
}
.btn-more-rooms-wrapper {
	text-align: center;
}

@media (max-width: 1440px) {
	.btn-block {
		padding: 1.25vw 2.5vw;
	}
	.service-description {
		font-size: 1.5vw;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
	.btn-block {
		padding: 1.16vw 2.16vw;
	}
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.btn-block {
		padding: 1.411vw 2.822vw;
	}
	.home-header .logo img.desktop-logo-img {
		width: 13rem;
	}
}

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
	.btn-block {
		padding: 1.56vw 2.86vw;
	}
}

/* Small devices (landscape phones, 576px and down) */
@media (max-width: 576px) {
	.btn-block {
		padding: 2.08vw 3.819vw;
	}
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
	.btn-block {
		padding: 2.5vw 4.583vw;
	}
}

.mobile-filters-btn-wrapper {
	margin-right: -2rem;
	margin-left: -2rem;
}
.btn-mobile-top-filters {
	font-size: 18px;
	color: var(--main-color);
	padding: 1rem;
	font-weight: bold;
	border-radius: 0.6rem;
}
.btn-mobile-top-filters.btn-close-filters {
	background-color: var(--main-color);
	color: #FFFFFF;
}


@media (max-width: 768px) {
	.top-searchbar .ps-charter-return-date .datepickr-calendar,
	.top-searchbar .after-search-show-calendar .datepickr-calendar,
	.top-searchbar .ts--checkout-date .datepickr-calendar {
		position: fixed;
		top: 0;
		width: 100%
	}
}
.ts--dates {
	width: 100%;
}
.on-popup-aloh .flight-ticket-item-box {
	border: 0;
}

.show-md.display-none {
	display: none;
}

.tli--border-bottom {
	width: 100%;
	height: 2rem;
	border-bottom: 0.2rem solid #EDEDED;
}

.my-account--header {
	text-align: center; 
	padding: 2rem 0;
}
.my-account--title {
	font-size: var(--fs-85-to-40); 
	font-weight: bold; 
	color: #A7A6A6;
}
.my-account--title-span {
	font-family: 'Learning Curve'; 
	font-size: var(--fs-85-to-40);
}
@media (max-width: 680px) and (orientation: landscape) {
	:root { 
		--fs-85-to-40: 6vw;
		--fs-97-to-45: 6.8125vw;
		--fs-30-to-22: 2.2vw;
		--fs-36-to-28: 3vw;
	}
	.hero-description { bottom: 16%; }
	.hero-scroll-hashtag,
	.hero-scroll-btn { margin-bottom: 0.5rem; font-size: 16px; }
	.hero-info-bs { top: 0; }
	.page-with-hero.pr-hotels .top-search { top:  -2rem; }
	.page-with-hero.pr-hotels .charters-hero-banner .hero-info-bs,
	.page-with-hero.pr-hotels .charters-hero-banner .hero-scroll-btn,
	.page-with-hero.pr-hotels .charters-hero-banner .hero-description,
	.page-with-hero.pr-hotels .hotels-hero-banner .hero-scroll-btn,
	.page-with-hero.pr-hotels .hotels-hero-banner .hero-description,
	.page-with-hero.pr-hotels .hotels-hero-banner .hero-info-bs { display: none; }
	.search-box { padding: 0.2rem 0.5rem; }
}

/* SM :: EXTRA SMALL DEVICES (PHONES) */
@media (max-width: 576px) 
{
	#header .global-search-wrapper,
	#header .on-create-account .global-search-wrapper,
	#header.home-header .global-search-wrapper {
		min-width: auto;
	}
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-stage-outer,
	.cs-travel-item-gallery #owl-single-item.owl-carousel .owl-item img {
		height: 25rem;
	}
	#header.home-header.sticky .global-search-wrapper {
		width: calc(100% - 2rem);
		min-width: auto;
	}
	#header.home-header.sticky .header-menu {
		min-width: auto;
		margin-left: 2rem;
	}
	.hero-subtitle {
		top: 30%;
	}
	.hero-title {
		top: 12%;
	}
	.global-search-input {
		min-width: 10rem !important;
		font-size: 24px;
	}
	.global-search { padding: 1rem; }	
	
	.travel-list-item {
		padding: 0 1rem;
		border-bottom: 0;
		padding-top: 4rem;
	}
	.tli--additional-info { margin: 0 1rem; }
	.tli--btn-details { width: auto; margin: 1rem; }
	.other-offers .owl-carousel .owl-nav { display: none; }
	.other-offers {
		padding: 0 1rem;
	}
	
	/* FORM LABEL */
	.form-label { font-size: 18px; }
	
	.alo-menu-dd {
		position: fixed;
		width: 100%;
		height: calc(100% - 6.5rem);
		overflow-y: scroll;
		z-index: 999999;
		top: 0;
		margin-top: 6.5rem;
	}
	.tli--title {
		font-size: 2rem;
	}
	.price-column-prices .q-pricing-format {
		font-size: 22px;
	}
	.price-column-prices .price .q-pricing-format {
		font-size: 14px;
	}
	/* .page-with-hero.pr-hotels .top-search { top: 35%; } */
	.pr-hotels .hero-subtitle {
		display: none;
	}
	.hero-description {
		bottom: 25%;
	}
	.hotels-hero-banner .hero-description,
	.charters-hero-banner .hero-description {
		bottom: 15%;
	}
	.search-price-wrapper form > .flex-row label.flex-col {
		display: none;
	}
	.search-price-wrapper form > .flex-row .flex-col {
		padding: 0 0.5rem;
	}
	.services-title {
		font-size: 8.2vw;
	}
	/* FOOTER */
	#footer { padding: 2rem; }
	.footer-link-list li a { font-size: 16px; }
	.chk-pm-item small { font-size: 12px; }
}

/* MOBILE */
@media (max-width: 480px) 
{
	/* GENERAL :: GLOBAL SEARCH */
	.global-search-dropdown-results-list li a { padding: 1rem; font-size: 16px; }
	.global-search-dropdown-results-list li a img { width: 4rem; }
	.global-search-dropdown-results-list li a img.gsr--hotel-icon,
	.global-search-dropdown-results-list li a img.gsr--bed-icon { width: 3rem; }
	
	/* HOMEPAGE DESTINATION BLOCKS */
	/* .destination-block--btn { font-size: 16px; } */
	
	/* FORM LABEL */
	.form-label { font-size: 16px; }
	
	/* GLOBAL SEARCH */
	.global-search { padding: 0.5rem; }
	
	.tli--facility { padding: 0.5rem; margin-right: 1rem; }
	.flx-vc-wi img { width: 2.5rem; }
	.top-search.sticky { margin-top: 6.8rem; }
	.service-item-image { padding: 0 2rem; }
	
	/* FOOTER */
	.footer-link-list li a { white-space: normal; }
}

/* XXS - EXTRA SMALL DEVICES (<= 480px) */
@media (max-width: 479px) {
	/* HEADER */
	#header,
	#header.sticky { padding: 1rem; }
	#header .show-on-sticky.white-burger,
	.logo img.mobile-logo-img,
	.home-header.sticky .logo img.mobile-logo-img { width: 28px; }
	#header .global-search-wrapper,
	#header.home-header.sticky .global-search-wrapper { margin-left: 1rem; width: calc(100% - 1rem); }
	#header .header-menu,
	#header.home-header.sticky .header-menu { margin-left: 0; }
	#header .header-hotels-icon { width: 33px; }
	#header .header-charters-icon { width: 60px; }
	
	/* GLOBAL SEARCH */
	.global-search-icon img { width: 25px; }
	input.global-search-input { font-size: 20px; margin-left: 1rem; }
	.global-search .dashed-line { margin-left: 3.5rem; }
	.global-search-dropdown-results-list li a .img-wrapper { margin-right: 1rem; }
	.global-search-dropdown-results-list li a { padding: 1rem 0.5rem; }
	.global-search-dropdown-results-list li a span { width: calc(100% - 7rem); }
	.global-search-dropdown-results-list li a .img-wrapper { width: 60px; }
	
	/* HERO BANNER */
	.hero-info-bs { top: 26%; }
	
	/* TOP SEARCH */
	/* .page-with-hero.pr-hotels .top-search { top: 29%; } */
	
	/* FEATURED OFFER (HOTELS ON DESTINATION PAGE) */
	.featured-offer--title { font-size: 20px; }
	.service-item-image { 
		padding: 0 2rem; 
		height: 12rem; 
		padding: 0 4rem; 
	}
	
	/* DESTINATION BANNER */
	.destination-header { height: 22rem; }
	.destination-header--info,
	.destination-header--info2 { font-size: 18px; }
	.destination-header--content { padding: 0 1rem; }
	
	/* FEATURED OFFER */
	.tvi--stars img, 
	.travel-list-item .stars img,
	.featured-offer--stars img { width: 1.8rem; }
	.tli--address,
	.tvi--address,
	.tvi--header .distance-from,
	.tli--map-link,
	.featured-offer .distance-from,
	.travel-list-item .distance-from,
	.featured-offer--address { font-size: 16px; }
	.tli--address img,
	.tvi--address img,
	.tli--map-link img,
	.tvi--header .distance-from img,
	.travel-list-item .distance-from img,
	.featured-offer .distance-from img,
	.featured-offer--address img {	width: 2rem; }
	
	/* TRAVEL LIST ITEM */
	.top-search { padding: 0.8rem 0; }
	#progress { bottom: -1rem; }
	.cs-async-wait-message { font-size: 14px; }
	.tlis--subtitle h2 { font-size: 20px; }
	.tlis--subtitle h3 { font-size: 16px; }
	.travel-list-item { margin-bottom: 0; }
	.travel-list-item-center { padding: 0 1rem; }
	.tli--initial-price { font-size: 18px; }
	.tli--price-wrapper { font-size: 26px; }
	.tli--rate-text { font-size: 16px; margin-bottom: 1rem; }
	.tsd--search-wraper .tsd--text-column { display: none; }
	.travel-list-item .tli--facility { display: block; text-align: center; }
	.travel-list-item .tli--facility span { display: block; }
	.travel-list-item .tli--facility img { margin: 0; }
	.list-filter { padding: 1rem 2rem !important; }
	.mobile-filters-btn-wrapper { 
		margin: 0;
		position: fixed;
		width: 100%;
		padding: 1rem;
		top: 0;
		left: 0;
		background-color: #F7F7F7;
		z-index: 9;
	}
	.pr-list-filters { padding-top: 5rem; }
	.filters--header { margin-bottom: 0; }
	
	.dynamic-content-loader strong { margin-top: -13.4rem; }
	.dynamic-content-loader span { margin-top: 10.4rem; }
	.dynamic-content-loader, .grid-inner-dynamic-content-loader { background-size: 70% auto; }
	
	.top-search-destination .datepickr-wrapper .datepickr-calendar { bottom: 0; top: auto; }
	/* .top-search-sticky.sticky.top-search-destination .datepickr-wrapper .datepickr-calendar { bottom: auto; top: 100%; }
	.top-search-destination .passengers-container .search-persons-container { top: auto; bottom: 100%; }
	.top-search-destination.sticky .passengers-container .search-persons-container { top: 100%; bottom: auto; } */
	
	/* TRAVEL VIEW ITEM */
	.tvi--header .tvi--back-link { display: none; }
	.tvi--header .tvi--title-wrapper .tvi--back-link { display: block; }
	.tvi--title { font-size: 26px; }
	.tsbws--search-box { font-size: 16px; }
	.tsbws--search-box img { width: 2rem; margin-right: 0.5rem; }
	.tsbws--search-box .tsb--change-link img { width: 1.5rem; }
	.no-offers-text { padding: 2rem 1rem; }
	.no-offers-return,
	.no-offers-text img { margin-bottom: 1rem; }
	.no-offers-title { font-size: 36px; }
	.no-offers-info { margin-bottom: 2rem; }
	.no-offers-info p { font-size: 18px; }
	.tvi--header.sticky .tvi--location-wrapper .tvi--address { display: none; }
	 
	/* CHECKOUT */
	.checkout-login-header { padding-bottom: 1rem; padding-left: 1rem; padding-right: 1rem; }
	.chk-login-title { font-size: 40px; }
	.checkoutlogin .fs-lg { font-size: 18px; }
	.btn-continue-chk { margin-top: 2rem; }
	.chk-form { margin-bottom: 2rem; padding-top: 2rem; }
	.panel-title { font-size: 20px; }
	.chkrw--title { font-size: 36px; margin-bottom: 1rem; }
	.chkrw--top-text { font-size: 18px; }
	.chkrw--comment-text { font-size: 17px; margin-bottom: 1rem; }
	.chkrw--voucher-wrapper { margin-top: 2rem; margin-bottom: 2rem; }
	.chkrw--voucher-text { font-size: 16px; margin-bottom: 1rem; }
	.chkrw--terms-text { margin-left: 2rem; font-size: 16px; }
	.chkrw--total-price-wrapper {}
	
	/* CONTACT */
	.contact-header { height: 30rem; }
	.contact-header h1 { font-size: 44px; margin-bottom: 3rem; }
	.cp--title-first { font-size: 34px; }
	.cp--title-second { font-size: 44px; }
	.ci--box p { font-size: 20px; }
	
	/* ABOUT US */
	.au--content { margin-bottom: 3rem; padding: 2rem; }
	.au--subtitle { font-size: 40px; }
	
	/* CREATE ACCOUNT */
	.rp--header { margin-bottom: 2rem; }
	.rp--title { font-size: 36px; }
	.rp--subtitle { font-size: 20px; }
	.register-info-list { margin-bottom: 2rem; }
	.register-info-list li { font-size: 15px; margin-top: 1rem; }
	.rp--last-checkbox { margin-bottom: 2rem; }
	.rp--col-right { padding-left: 2rem; padding-right: 2rem; }
	.qc-register.btn-primary { display: flex !important; }
}

.cs-page-content #header,
.cs-page-content #footer,
.cs-page-content #cookies_info,
.cs-page-content .breadcrumb-12221,
.cs-page-content #lz_overlay_wm,
.cs-page-content .home-services {
	display: none !important;
}


.single-post-inner h1 {
	font-size: 4rem;
	font-weight: bold;
}
.main-article-title a,
.blog-post-title a {
	font-weight: bold;
	font-size: 3rem !important;
}
.article-tag a,
.blog-post-info a,
.blog-post-info p,
.sidebar-tags-list li a,
.blog-post-details li a,
.blog-post-details li,
.news-block-title a, 
.main-article-info small,
.news-block-details li {
	font-size: 16px;
}
.blog-related-article {
	padding: 10px 20px;
}
.single-post-inner,
.single-post-inner a {
	font-size: 20px;
}

@media (max-width: 1441px) {
	.single-post-inner,
	.single-post-inner a {
		font-size: 16px;
	}
}

@media (max-width: 64em) {
	.flight-ticket-item-box .qc-equal-item {
		height: auto !important;
	}
}

@media (max-width: 992px) 
{
	.flight-ticket-item .flight-route {
		padding: 0.3rem;
		padding-bottom: 1.5rem;
	}
	.flight-item-airport-code {
		font-size: 12px;
	}
	.flight-ticket-item .flight-route span.flight-time {
		font-size: 13px;
	}
	.flight-ticket-item .flight-route span.arrival-next-day {
		font-size: 8px;
		display: block;
	}
	.flight-ticket-item .flight-line .flight-legs {
		font-size: 10px;
	}
	.flight-ticket-item .flight-price {
		text-align: center;
		margin-left: 1rem;
		margin-top: 0;
		margin-bottom: 0;
	}
	.vertical-align-middle {
		width: 100%;
	}
	.flight-ticket-item .btn-primary {
		float: right;
		margin-right: 1rem;
	}
	.helper {
		display: inline;
	}
	.sm-margin-top-05 {
		margin-top: 0.5rem;
	}	
	.cs-show-mobile-cancel-fees {
		padding: 1rem 0rem;
		display: block;
	}
	
	.cs-mobile-cancel-fees-payments {
		position: fixed;
		z-index: 999999;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow: scroll;
		transition: linear 0.3s;
		background: #ffffff;
		transform: translateX(-100%);
		padding: 1rem;
	}

	.cs-mobile-cancel-fees-payments.active {
		transform: translateX(0);
	}
	
	.cs-close-mobile-cancel-fees-payments {
		color: #333333;
		background-color: #F0F0F0;
		font-size: 20px;
		padding: 0.5rem 1rem;
		margin-bottom: 1rem;
		display: block;
	}
	
	.flight-ticket-item .legs-details {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999999;
		width: 100%;
		height: 100%;
		background-color: #FFFFFF;
	}
	
	.legs-details-body .legs-timeline .flight-departure, 
	.legs-details-body .legs-timeline .flight-arrival {
		padding: 0.5rem;
	}
	.legs-details-body .legs-timeline .flight-arrival i, 
	.legs-details-body .legs-timeline .flight-departure i {
		font-size: 15px;
		width: 15px;
	}
	.legs-sections .leg-section.wait::before {
		left: -2.2rem;
	}
	.legs-details-body .legs-sections {
		padding: 0 0.5rem;
	}
	.leg-section .leg-section-date,
	.legs-sections .leg-section {
		padding: 0 0.5rem;
	}
	.leg-section-airport, 
	.leg-section-location, 
	.leg-section-day,
	.leg-section .leg-section-flight-number,
	.leg-section .leg-section-duration,
	.leg-section-time {
		font-size: 14px;
	}
	.leg-section-day {
		font-size: 12px;
	}
	.leg-section .leg-section-duration,
	.leg-section .leg-section-flight-number,
	.leg-section .leg-section-carrier {
		padding: 0.5rem;
	}
	.leg-section-wait-time, 
	.leg-section-wait-info {
		font-size: 1.4rem;
		padding: 1rem;
	}
	
	.sort-flights-wrapper span,
	.open-filters-wrapper span {
		display: block;
	}
	.sort-flights-wrapper {
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
		margin-left: 0.5rem;
	}
}

.popup-offers-options-comparisson {
	width: 80%;
    display: none;
}
.cs-offer-option .chk-pm-item {
	align-items: initial;
	border-color: #CECECE;
}
.cs-offer-option .chk-pm-item-wrapper input[type="radio"]:checked ~ .chk-pm-item {
	background-color: #FFFFFF;
	color: inherit;
	border-color: var(--main-color);
}
.cs-offer-option .chk-pm-item span {
	font-size: 14px;
}
.cs-offer-option-details a { color: var(--pink-color); font-size: 14px; }
.show-more-offer-options-wrapper {
	text-align: center;
}
.show-more-offer-options {
	display: inline-block;
	margin: 0 auto;
	padding: 10px 20px;
	font-size: 16px;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 6px;
}
.search-rooms-more-rooms {
	padding: 10px 5px;
	display: block;
	text-align: center;
}
.more-rooms-info {
	display: none;
	position: fixed; 
	width: 100%; 
	height: 100%; 
	background-color: rgba(255, 255, 255, 0.8); 
	left: 0; 
	top: 0;
	z-index: 99991;
}
.more-rooms-info.toggled {
	display: block;
}
.cs-offer-option .chk-pm-item-wrapper input[type="radio"]:checked ~ .chk-pm-item strong {
	display: block;
	color: var(--main-color);
	font-size: 16px;
}

.cs-flight-ticket-item-dynamic-package-selected .flight-ticket-item-box {
	display: none;
}
.cs-flights-container .cs-flight-ticket-item-dynamic-package-selected .flight-ticket-item-box {
	display: block;
}
.cs-flights-container .cs-flight-ticket-item-dynamic-package-selected .show-selected-flight {
	display: none;
}

.travel-list-item-right .discount-badge span {
    z-index: 10;
    top: initial;
    margin-top: 0rem;
    transform: none;
    font-weight: 700;
    font-size: 30px;
    color: inherit;
    white-space: nowrap;
    margin-right: 0rem;
    position: initial !important;
	right: initial;
}
.featured-min-offer {
	padding-left: 0;
	padding-right: 0;
	justify-content: flex-end;
}

.featured-min-offer-cache-price {
	color: var(--main-color);
	display: block;
	text-align: center;
}

.cs-cache-chart-list-heading {
	margin-top: 3rem;
	color: #9c9d9d;
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
}