/**
 |------------------------------------------------------
 | @TABLE OF CONTENTS
 |------------------------------------------------------
 |
 | 1. GENERAL AND RESETS
 | 2. HEADER
 | 3. FOOTER
 | 4. BUTTONS
 | 5. TAB PANEL
 | 6. STARS
 | 7. RADIO AND CHECKBOX
 | 8. TOOLTIP
 | 9. PANEL
 | 10. RIBBON
 | 11. SELECT2
 | 12. DATEPICKER
 | 13. RANGE SLIDER
 | 14. OWL SLIDER
 | 15. OWL CAROUSEL
 | 16. CUSTOM DROPDOWN
 | 17. CHECKOUT BREADCRUMB
 | 18. LOGIN AND REGISTER
 | 19. MAIN AND SIDEBAR SEARCH
 | 20. TOUR ITEM
 | 21. SPECIAL ITEM
 | 22. OFFER ITEM
 | 23. SIDEBAR ITEMS
 | 24. FILTERS
 | 25. DETAIL BOX AND TABLE PRICE
 | 26. CHECKOUT
 */

/**
 |------------------------------------------------------
 | @GENERAL AND RESETS
 |------------------------------------------------------
 */
body, html { background-color: #EDEEF0; }

input[type="email"], 
input[type="number"], 
input[type="search"], 
input[type="text"], 
input[type="tel"], 
input[type="url"], 
input[type="password"], 
input[type="date"], 
input[type="month"], 
input[type="week"], 
input[type="time"], 
input[type="datetime"], 
input[type="datetime-local"], 
textarea, 
select {
	border-radius: 0;
	padding: 0.4rem 0.8rem;
	height: 3.6rem;
	font-size: 1.3rem;
}

.main { margin-bottom: 2rem; }

/* MARGINS */
.m-bottom-5 { margin-bottom: 0.5rem; }
.m-bottom-10 { margin-bottom: 1rem; }
.m-bottom-20 { margin-bottom: 2rem; }

.m-top-10 { margin-top: 1rem; }
.m-top-15 { margin-top: 1.5rem; }
.m-top-20 { margin-top: 2rem; }

.m-left-10 { margin-left: 1rem; }
.m-right-10 { margin-right: 1rem; }
.m-left-40 { margin-left: 4rem; }

/* PADDINGS */
.box-padding,
.p-all-5 { padding: 0.5rem; }
.p-all-10,
.p-10 { padding: 1rem; }
.p-left-5 { padding-left: 0.5rem; }
.p-right-5 { padding-right: 0.5rem; }
.p-left-10 { padding-left: 1rem; }
.p-right-10 { padding-right: 1rem; }

/* FONT SIZE */
.f-size-12 { font-size: 1.2rem; }
.f-size-15 { font-size: 1.5rem; }
.f-size-16 { font-size: 1.6rem; }
.f-size-20 { font-size: 2rem; }
.f-size-24 { font-size: 2.4rem; }

/* GIF LOADER */
.dynamic-content-loader {
	background-image: url("https://cdn.travelfuse.ro/shared-resources/loading.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

.dynamic-content-loader,
.grid-inner-dynamic-content-loader {
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 100002;
	opacity: 0.7;
}
/* SECTION TITLE */
.section-title {
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	margin-top: 2rem;
	word-spacing: 0.4rem;
	margin-bottom: 2rem;
}

/*
 |-------------------------------------------------------------------
 | @HEADER
 |--------------------------------------------------------------------
 */
#header {
	z-index: 99;
    position: relative;
    border-bottom: solid 0.1rem #eee;
	background-color: #FFFFFF;
}

@media not all and (min-width: 40em) {
	a.logo { margin-top: 0; }
}
.header-contact-item:last-of-type { margin-right: 1rem; margin-left: 1rem; }
.header-top-info i,
.header-contact-item i { margin-right: 0.5rem; font-size: 1.4rem; }
.header-inner { position: relative; background-color: #FFFFFF; }
@media not all and (min-width: 40em) 
{
	#header .logo {
		float: left;
		width: 70%;
		margin-left: 1rem;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	#header .logo img {
		max-width: 100%;
	}
}
nav.qc-menu > ul > li { border: none; }
nav.qc-menu > ul > li:first-child { border: 0; }
#header nav.qc-menu > ul > li.mega-menu > a:after { 
	font-family: "Font Awesome 5 Free"; 
	content: "\f107";
	margin-right: 0.5rem;
}
nav.qc-menu > ul > li a {
	text-transform: uppercase;
	padding-left: 2rem; 
	padding-right: 2rem;
	font-size: 13px;
	font-weight: bold;
}
nav.qc-menu > ul > li.active a { border: 0.2rem solid #CCCCCC; }
@media (max-width: 52.5rem) {
	nav.qc-menu { width: 100%; }
}

/* MENU BUTTON */
input[type="checkbox"]#btn-menu { display: none; }
@media (max-width: 980px){
	nav.qc-menu {
		width: auto;
		line-height: initial;
		margin-left: 0;
		padding-top: 1rem;
		clear: both;
	}
	/* hide menu */
	nav.qc-menu > ul { display: none; }
	.btn-menu {
		display: block;
		float: right;
		margin-right: 2rem;
		margin-top: 2rem;
	}
	.btn-menu:after {
		font-size: 1.4rem;
		background-color: #555555;
		padding: 1rem;
		border-radius: 0.4rem;
		border: none;
	}
	/* display menu only on checked */
	#header input[type="checkbox"]:checked ~ nav.qc-menu ul { width: 100%; display: block; }
	#header input[type="checkbox"]:checked ~ nav.qc-menu ul > li { padding: 0; }
	#header input[type="checkbox"]:checked ~ nav.qc-menu ul > li a {
		border-bottom: 0.1rem solid #DDDDDD;
		padding-left: 4rem;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
	#header input[type="checkbox"]:checked ~ nav.qc-menu ul > li:last-child a { border-bottom: none; }
	#header input[type="checkbox"]:checked ~ nav.qc-menu ul li { width: 100%; }
	nav.qc-menu ul li:last-child { border-bottom: 0; }
}

/**
 |-----------------------------------------------------
 | @FOOTER
 |-----------------------------------------------------
 */
#footer { background: #FFFFFF; border-top: 0.2rem solid #DDDDDD; }
#footer p {
	color: #555555;
	margin: 0 0 1rem;
	font-size: 1.3rem;
}
#footer .headline {
	display: block;
    margin: 1rem 0 2.5rem 0;
    border-bottom: 0.1rem dotted #555555;
}
#footer .headline h2 {
	margin: 0 0 -0.2rem 0;
    padding-bottom: 0.5rem;
    display: inline-block;
    border-bottom: 0.2rem solid #CCCCCC;
	color: #555555;
    font-size: 1.8rem;
    font-weight: 200;
}
#footer .latest-posts,
#footer .footer-links { padding-left: 0; list-style: none; }
#footer .footer-links li,
#footer .latest-posts li { padding: 0.8rem 0; border-top: 0.1rem solid #EEEEEE; }
#footer .footer-links li:first-child,
#footer .latest-posts li:first-child { padding-top: 0; border: 0; }
#footer .footer-links li a,
#footer .latest-posts li a { font-size: 1.3rem; color: #555555; }
#footer .latest-posts li small { color: #999; display: block; }
.social-item {
	padding: 0.5rem;
	border-radius: 0.3rem;
	background-color: #000000;
	width: 1.6rem;
	height: 1.6rem;
	display: inline-block;
	margin-right: 0.5rem;
	text-align: center;
	color: #FFFFFF;
}
.social-item i { font-size: 1.6rem; }
.social-item.facebook { background-color: #3b5998; }
.social-item.twitter { background-color: #50ABF1; }
.social-item.gplus { background-color: #D34836; }
.social-item.instagram { background-color: #B4785A; }
.social-item.pinterest { background-color: #BD2125; }
.social-item.linkedin { background-color: #0077B5; }
#footer .social-item {
	margin-top: 1rem;
}

#footer .copyright {
	background-color: #FFFFFF;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-top: 0.1rem solid #DDDDDD;
	color: #555555;
}
.footer-bottom {
	border-top: 0.1rem solid #DDDDDD;
	padding: 1rem;
	color: #555555;
}
.footer-bottom .footer-developed-by { color: #555555; }
.sitemap-wrapper .fbox { padding-left: 1rem; padding-right: 1rem; }
.sitemap-wrapper .f-sitemap { list-style: none; }
.sitemap-wrapper .f-sitemap li { padding: .8rem 0; border-top: 0.1rem solid #eee; }
.sitemap-wrapper .f-sitemap li:first-child { border-top: 0; padding-top: 0; }
.sitemap-wrapper .f-sitemap li a { font-size: 1.3rem; color: #555; }

/*
 |-------------------------------------------------------------------
 | @BUTTONS
 |--------------------------------------------------------------------
 */
/* NORMAL BUTTON */
.btn, 
button, 
input[type="submit"], 
input[type="button"], 
input[type="reset"] { border-radius: 0; border: none; font-size: 1.3rem; }
/* DEFAULT BUTTON */
.btn.btn-default {
	background-color: #FFFFFF;
	text-transform: uppercase;
	color: #555555;
	border: 0.1rem solid #555555;
}
.btn.btn-default:hover,
.btn.btn-default:focus {
	background-color: #555555;
	color: #FFFFFF;
}
/* PRIMARY BUTTON */
.btn.btn-primary { text-transform: uppercase; }
.btn.btn-primary.btn-bordered {
	background-color: transparent;
	border: 0.1rem solid #CCCCCC;
	font-weight: bold;
}
/* ITEM BTN */
.btn-item {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -1000rem;
}
/* PRICE BTN */
.price-item .btn {
	background-color: transparent;
	color: #000000;
	height: auto;
	line-height: initial;
}
.price-action:hover .offer-status,
.price-action .price-btn { display: none; }
.price-action .offer-status,
.price-action:hover .price-btn { display: inline-block; }
.price-item .btn.price-btn { padding: 0.5rem; }

/*
 |-------------------------------------------------------------------
 | @TAB PANEL
 |--------------------------------------------------------------------
 */
.qc-tab-panel > ul.tabs > li { float: left; display: block; }
.qc-tab-panel > ul.tabs:after {
	clear: both;
	content: "";
	display: table;
}
.qc-tab-panel > ul.tabs > li label {
	background: #FFFFFF;
	border-bottom: 0.2rem solid #CCCCCC;
	color: #FFFFFF;
	margin-bottom: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	font-size: 1.4rem;
	font-weight: bold;
}
.qc-tab-panel > ul.tabs > li label:hover,
.qc-tab-panel > ul.tabs > li label.active { color: #FFFFFF; }
.qc-tab-panel > .tabs-content > .tab-content {
	/*background-color: #FFFFFF;*/
	background-color: transparent;
	margin-top: 0;
	padding: 0;
}

/*
 |--------------------------------------------------------
 | @STARS
 |--------------------------------------------------------
 */
ul.stars { list-style: none; margin-bottom: 0.5rem; }
.stars li { display: inline-block; }
.stars { margin-left: 0; }

/*
 |--------------------------------------------------------
 | @RADIO AND CHECKBOX
 |--------------------------------------------------------
 */
.qc-radio input[type="radio"]:checked + label:before { content: '\f00c'; font-weight: bold; line-height: 1.6rem;}
.qc-radio label, .qc-checkbox label { font-size: 1.3rem; }

/*
 |--------------------------------------------------------
 | @TOOLTIP
 |--------------------------------------------------------
 */
.qc-tooltip .tooltip { 
	width: 22rem; 
	font-size: 1.3rem; 
	text-align: left;
	padding: 1rem;
}

/*
 |--------------------------------------------------------
 | @PANEL
 |--------------------------------------------------------
 */
.panel {
	margin-top: 1rem;
	margin-bottom: 2rem;
	background-color: #FFFFFF;
	border: 0.1rem solid #DDDDDD;
	-webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
	box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
}
.panel .panel-heading {
	border-bottom: 0.1rem solid #CCCCCC;
	color: #555555;
    background-color: #FFFFFF;
	margin: 0 0.5rem;
	padding: 1rem;
}
.panel .panel-heading.no-border { border: 0; }
.panel .panel-title {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    color: #454545;
    font-size: 1.8rem;
}
.panel .panel-container { padding: 1rem 1.5rem; }

/*
 |-------------------------------------------------------------------
 | @RIBBON
 |--------------------------------------------------------------------
 */
.ribbon {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  z-index: 1;
  color: #eee;
  font-size: 1.4rem;
  cursor: pointer;
  width: 3rem;
  line-height: 0.5rem;
  color: #FFFFFF;
}
.ribbon:after {
  content: "";
  font-size: 0.5em;
  position: absolute;
  height: 1.2em;
  border: 1.5rem solid #F44336;
  z-index: -1;
  top: 0;
  border-top-width: 2rem;
  border-bottom-color: transparent;
  right: 0;
}
.ribbon:before {
  content: "";
  font-size: 0.5em;
  position: absolute;
  border-style: solid;
  border-color: transparent transparent #B71C1C transparent;
  top: 0;
  right: 3rem;
  border-width: 0 0 1em 0.7em;
  z-index: -1;
}
.ribbon i { margin-top: 0.6rem; margin-left: 0.8rem; }

/*
 |--------------------------------------------------------
 | @SELECT2
 |--------------------------------------------------------
 */
.select2-container { width: 100% !important; }
.select2-container--default .select2-selection--single { border-radius: 0; }
.select2-container .select2-selection--single { height: 3.6rem; }
.select2-container .select2-selection--single .select2-selection__rendered { padding-top: 0.2rem; padding-bottom: 0.2rem; }
.select2-container--default .select2-selection--single .select2-selection__arrow b { margin-top: 0.2rem; }

/**
 |-----------------------------------------------------
 | @DATEPICKER
 |-----------------------------------------------------
 */
.datepickr-wrapper {
	width: 100%;
	display: inline-block;
	position: relative; 
}
.datepickr-calendar {
	font-size: 1.4rem;
	background-color: white;
	color: white;
	border-radius: 0.2rem;
	padding: 0.4rem;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 100; 
}
.open .datepickr-calendar {
	display: block;
	-webkit-box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.16), 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.16), 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.12);
	box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.16), 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.12); 
}
.datepickr-calendar .datepickr-months {
	border: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	color: #fff;
	padding: 0.2rem;
}
.datepickr-calendar .datepickr-prev-month,
.datepickr-calendar .datepickr-next-month {
	color: white;
	padding: 0 .4em;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	cursor: pointer; 
}
.datepickr-calendar .datepickr-prev-month:hover,
.datepickr-calendar .datepickr-next-month:hover { background-color: #ffcdd2; color: #d32f2f; }
.datepickr-calendar table thead tr th { color: #727272; }
.datepickr-calendar table tr td { border: 0; }
.datepickr-calendar .datepickr-day {
	color: #FFFFFF;
	background-color: #80B6CF;
	border: 0.1rem solid #80B6CF;
	border-radius: 0.3rem;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out; 
}
.datepickr-calendar .datepickr-day:hover {
	color: white;
	background-color: #139FE0;
	border: 0.1rem solid #139FE0; 
}
.datepickr-calendar .today .datepickr-day { color: #d32f2f; }
.datepickr-calendar .selected .datepickr-day { border: 0.1rem solid #CCCCCC; color: white; }
.datepickr-calendar .disabled .datepickr-day,
.datepickr-calendar .disabled .datepickr-day:hover,
.datepickr-calendar .today.disabled .datepickr-day {
	background-color: white;
	border: 0;
	color: #bbb;
	cursor: default; 
}
.omi-datepickr-wrapper .datepickr-calendar-icon { display: none; }

/**
 |-----------------------------------------------------
 | @RANGE SLIDER
 |-----------------------------------------------------
 */
.range-slider {
	overflow: visible;
	cursor: pointer;
	margin-top: 1rem;
}
.noUi-target {
	border: 0;
	border-radius: 0;
	box-shadow: none; 
}
.noUi-horizontal {
	height: 0.4rem;	
	margin-left: 1rem;
	margin-right: 1rem;
}
.noUi-vertical { width: 0.4rem; }
.noUi-vertical .noUi-handle,
.noUi-horizontal .noUi-handle {
  width: 2rem;
  height: 2rem;
  box-shadow: none;
  border: 0.1rem solid #DDDDDD;;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  cursor: pointer; 
}
.noUi-vertical .noUi-handle { left: -0.8rem; top: -0.5rem; }
.noUi-horizontal .noUi-handle { top: -0.8rem; left: -0.8rem; }
.noUi-vertical .noUi-handle:hover,
.noUi-horizontal .noUi-handle:hover { width: 2.5rem; height: 2.5rem; }
.noUi-vertical .noUi-handle:hover { top: -1rem; left: -1.2rem; }
.noUi-horizontal .noUi-handle:hover { top: -1.2rem; left: -1rem; }
.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before,
.noUi-horizontal .noUi-handle:after,
.noUi-horizontal .noUi-handle:before { width: 0; height: 0; }
.noUi-connect { box-shadow: none; border-radius: 0; }

/*
 |-------------------------------------------------------------------
 | @OWL SLIDER
 |--------------------------------------------------------------------
 */
.owl-slider { overflow: hidden; max-height: 45rem; }
.owl-slider .slide-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #FFFFFF;
	background: rgba(0, 0, 0, 0.3);
	padding-left: 6rem;
	padding-top: 8rem;
}
.owl-slider .slide-info .price {
	background-color: #31353E;
	display: inline-block;
	padding: 0.5rem 1rem;
	font-size: 2rem;
	font-weight: bold;
}
.owl-slider .slide-info .price span { font-size: 2.2rem; }
.owl-slider .slide-info h2 { text-transform: uppercase; font-weight: bold; }
.owl-slider .slide-info .description {
	width: 50%;
	margin-bottom: 1rem;
	font-size: 1.4rem;
}
@media (max-width: 40em) {
	.owl-slider .slide-info { 
		padding-left: 5rem; 
		padding-top: 1rem; 
		padding-right: 5rem; 
	}
	.owl-slider .slide-info .price { padding: 0.2rem 0.5rem; font-size: 1.4rem; }
	.owl-slider .slide-info .price span { font-size: 1.6rem; }
	.owl-slider .slide-info h2 { font-size: 1.4rem; }
	.owl-slider .slide-info .description { font-size: 1.3rem; width: 100%; }
}

/**
 |-----------------------------------------------------
 | @OWL CAROUSEL
 |-----------------------------------------------------
 */
.owl-carousel .owl-item .carousel-item { 
	margin: 0 1rem;
	background-color: #31353e;
	padding-bottom: 2rem;
	transition: all 0.3s ease-in-out;
	color: #FFFFFF;
	position: relative;
}
.owl-carousel .owl-item .carousel-item:hover .item-price { background-color: #31353e; }
.owl-carousel .owl-item .carousel-item .img-shadow { margin-bottom: 1rem; position: relative; }
.owl-carousel .owl-item .carousel-item .img-shadow > img { display: block; height: 11rem; }
.owl-carousel .owl-item .carousel-item .img-shadow:after {
	content: "";
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
}
.owl-carousel .owl-item .carousel-item h3 {
	text-transform: uppercase;
	font-size: 1.6rem;
	margin-left: 1rem;
	font-weight: bold;
}
.owl-carousel .owl-item .carousel-item .btn-item {
	position: absolute;
	width: 100%;
	height: 100%;
	text-indent: -1000rem;
	left: 0;
	top: 0;
	z-index: 999999;
}
.owl-carousel .owl-item .carousel-item p {
	font-size: 1rem;
	margin-left: 1rem;
	margin-right: 1rem;
}
.owl-carousel .owl-item .carousel-item .item-price {
	font-size: 1.2rem;
	padding: 0.5rem;
	margin-left: 1rem;
	display: inline-block;
}
.owl-carousel .owl-item .carousel-item:hover .stars li { color: #FFFFFF; }
.main-slider.owl-carousel { max-height: 40rem; }
.owl-carousel .owl-controls .owl-buttons > div {
	opacity: 1;
	border-radius: 0;
	font-size: 2rem;
	position: absolute;
	width: 4rem;
	height: 4rem;
	text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
}
.owl-carousel .owl-controls .owl-prev { left: 0; }
.owl-carousel .owl-controls .owl-next { right: 0; }
.owl-carousel .owl-controls .owl-pagination {
	position: absolute;
	bottom: 0;
	margin-bottom: 1rem;
	width: 100%;
	text-align: center;
}
.owl-carousel .owl-stage {
	height: 100%;
}
.owl-theme .owl-controls .owl-page span { background-color: #FFFFFF; }
#owl-single-item-carousel { width: auto; }
#owl-single-item {
	border: 0.1rem solid #DDDDDD;
	padding: 0.5rem;
	margin-bottom: 1rem;
}
#owl-single-item .owl-single-helper {
	display: inline-block;
    height: 100%;
    vertical-align: middle;
}
#owl-single-item .owl-item img {
	max-height: 100%;
	display: inline-block;
    vertical-align: middle;
}
#owl-single-item .owl-single-wrapper {
	height: 40rem;
	text-align: center;
	white-space: nowrap;
}
#owl-single-item .owl-nav {
	margin-top: -5rem;
	display: block;
	position: absolute;
	top: 50%;
    width: 100%;
}
#owl-single-item .owl-nav .owl-prev, 
#owl-single-item .owl-nav .owl-next {
	background: rgba(0, 0, 0, 0.6);
	font-size: 4rem;
	line-height: 3rem;
	padding: 4px 12px;
	position: absolute;
	color: #FFFFFF;
}
#owl-single-item .owl-nav .owl-next {
    right: 0;
    margin-right: 2rem;
}
#owl-single-item .owl-nav .owl-prev {
    left: 0;
    margin-left: 2rem;
}
@media (max-width: 700px) {
	#owl-single-item-carousel { display: none; }
}
@media (max-width: 45em) 
{
	#owl-single-item .owl-single-wrapper,
	.pr-hotels .owl-carousel .owl-stage-outer {
		height: 30rem;
	}
	.pr-hotels .filters-carousel.owl-carousel .owl-stage-outer {
		height: auto;
	}
}



/**
 |-----------------------------------------------------
 | @CUSTOM DROPDOWN
 |-----------------------------------------------------
 */
.qc-dropdown {
	/*color: #FFFFFF;*/
	/*background-color: #098246;*/
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	border: none;
	/*box-shadow: 0 0 0.3rem #C3281F inset;*/
}
.qc-dropdown ul.dropdown { color: #555555; }
.passengers-container .btn-trigger {
	padding: 0.6rem 0.8rem;
	box-sizing: border-box;
	color: #555555;
	background: #FFFFFF;
	border: 0.1rem solid #CCCCCC;
	position: relative;
	height: 3.6rem;
}
.passengers-container .btn-trigger:after {
	font-family: "Font Awesome 5 Free";
    content: "\f107";
    position: absolute;
    right: 0;
    top: 0.7rem;
	font-weight: bold;
    margin-right: 1rem;
    font-size: 1.6rem;
    color: #555555;
}
.passengers-container .btn-trigger:hover { text-decoration: none; }

/*
.search-persons-container {
	position: absolute;
	border: 0.1rem solid #CCCCCC;
	-webkit-box-shadow: 0 0.5rem 0.2rem -0.3rem rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0 0.5rem 0.2rem -0.3rem rgba(0, 0, 0, 0.12);
	box-shadow: 0 0.5rem 0.2rem -0.3rem rgba(0, 0, 0, 0.12);
	background-color: #FFFFFF;
	z-index: 1000;
	padding: 0.5rem;
	display: none;
	color: #222222;
}
*/

.search-persons-container.toggled { display: block; }
.search-persons-container label {
	color: #333333 !important;
}

/*
 |---------------------------------------------------
 | @CHECKOUT BREADCRUMB
 |---------------------------------------------------
 */
.cd-breadcrumb {
	clear: both;
    display: inline-block;
    height: auto;
    padding: 0;
    /*margin-bottom: 3rem;*/
    width: 100%;
	border: 0.1rem solid #dddddd;
	list-style: none;
	margin: 0;
	/*margin-bottom: 1rem;*/
}
.cd-breadcrumb li {
	display: block;
    float: left;
    height: auto;
    margin: 0;
    min-height: 5.5rem;
    padding: 0;
    width: 25%;
}
.cd-breadcrumb li a {
	background: #FFFFFF;
    display: block;
    font-size: 1.4rem;
	font-weight: bold;
    padding: 2rem 0 0.2rem;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    text-transform: uppercase;
    font-size: 1.3rem;
	color: #FFFFFF;
}
.cd-breadcrumb li a:hover { text-decoration: none; }
.cd-breadcrumb li a i {
	border-radius: 0;
    display: block;
    font-size: 2rem;
    height: auto;
    left: 0;
    line-height: 4rem;
    margin-top: -2rem;
    padding: 0;
    text-align: center;
    width: auto;
    float: none!important;
	background-color: #555555;
}
.cd-breadcrumb li a span {
	display: block;
    padding: 0.5rem 0;
	color: #333333;
}
.cd-breadcrumb li .visited a span { color: #FFFFFF; }
.cd-breadcrumb li .current a span { color: #FFFFFF; }

/*
 |---------------------------------------------------
 | @LOGIN AND REGISTER
 |---------------------------------------------------
 */
.login-wrap {
	margin-top: 1rem;
	color: #555;
    padding: 3rem;
    background: #fefefe;
    border: solid 0.1rem #eee;
    box-shadow: 0 0 0.3rem #eee;
}
.login-header {
	color: #555;
    text-align: center;
    margin-bottom: 3.5rem;
    border-bottom: solid 0.1rem #eee;
}
.login-header h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }
.input-group {
	position: relative;
	display: table;
	border-collapse: separate;
}
.input-group-addon {
	color: #b3b3b3;
    font-size: 1.4rem;
    background: #fff;
	padding: 0.6rem 1.2rem;
	font-weight: 400;
    line-height: 1;
	text-align: center;
	width: 1%;
    white-space: nowrap;
    vertical-align: middle;
	border: 0.1rem solid #ccc;
}
.input-group-addon,
.input-group .form-input { display: table-cell; }
.input-group .form-input {
	position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

/*
 |---------------------------------------------------
 | @MAIN AND SIDEBAR SEARCH
 |---------------------------------------------------
 */
.main-search {
	background-color: #FFFFFF;
	padding: 1rem;
	border: 0.1rem solid #DDDDDD;
	-webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
	box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
	border-top: 0;
}
.main-search.main-search-grey {
	background-color: #F2F5F9;
	color: #555555;
	border-top: 0.2rem solid #DDDDDD;
}
.main-search.main-search-grey .input { background-color: #FFFFFF; color: #555555; }
.main-search h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.top-searchbar .search-box {
	padding: 0.5rem;
}
.sidebar-search .search-box,
.main-search .search-box { padding: 0.5rem; }
.sidebar-search label,
.main-search label { text-transform: uppercase; }
.sidebar-search .select2-container .select2-selection--single,
.main-search .select2-container .select2-selection--single,
.sidebar-search .input,
.main-search .input,
.main-search.main-search-grey .search-persons-container .input,
.main-search.main-search-grey .search-persons-container .select2-selection--single {
	background: #FFFFFF;
    color: #555555;
    border: 0.1rem solid #CCCCCC;
	font-size: 1.3rem;
	border-radius: 0;
}

.after-seaxh-text {
	color: #333333;
}
.flight-search .search-wrapper .top-searchbar .top-searchbar--title { 
	color: #FFFFFF; 
	font-size: 2.8rem;
	margin-bottom: 1rem;
}
.flight-search .top-searchbar .search-form .input {
	background: white;
}
.flight-search .top-searchbar .search-form .input:disabled {
	background: #eee none repeat scroll 0 0;
    border-color: #ccc;
    border: 0.1rem solid #ccc;
}
.flight-search .top-searchbar .search-form .search-box label {
	color: #ffffff;
}
.flight-search .top-searchbar .btn-cancel-date {
    bottom: 0.6rem;
}
.main-search .select2-container--default .select2-selection--single .select2-selection__rendered,
.sidebar-search .select2-container--default .select2-selection--single .select2-selection__rendered { color: #555555; }
.sidebar-search .input::-webkit-input-placeholder,
.main-search .input::-webkit-input-placeholder { color: #555555; }
.main-search.main-search-grey .input::-webkit-input-placeholder { color: #555555; }
.main-search.main-search-grey .select2-container .select2-selection--single { background-color: #FFFFFF; color: #555555; }
.main-search.main-search-grey .search-persons-container .select2-selection--single {
	background: #098246;
    box-shadow: 0 0 0.3rem #C3281F inset;
    color: #fff;
    border: none;
	font-size: 1rem;
	border-radius: 0;
}
.main-search.main-search-grey .select2-container--default .select2-selection--single .select2-selection__rendered { color: #555555; }
.main-search.main-search-grey .search-persons-container .select2-container--default .select2-selection--single .select2-selection__rendered { color: #FFFFFF; }
.main-search.main-search-grey .passengers-container .btn-trigger { color: #555555; background-color: #FFFFFF; }
.main-search.main-search-grey .passengers-container .btn-trigger:after { color: #555555; }
.sidebar-search {
	padding: 1rem;
	background-color: #FFFFFF;
	color: #555555;
	border: 0.1rem solid #DDDDDD;
	-webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
	box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
	border-top: 0;
}
.sidebar-search .qc-checkbox input[type="checkbox"] + label:before { border-radius: 50%; }
.main-search .search-persons-container,
.sidebar-search .search-persons-container { background-color: #FFFFFF; color: #555555; }

/*
 |---------------------------------------------------
 | @TOUR ITEM
 |---------------------------------------------------
 */
.tour-item { 
	position: relative; 
	margin: 1rem; 
	background-color: #FFFFFF;
	border: 0.1rem solid #DDDDDD;
	-webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
	box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
}
.tour-item .img-container { height: 12rem; overflow-y:hidden; }
.tour-item .item-info {
	width: 100%;
    color: #fff;
    padding: 1rem;
    text-transform: uppercase;
    transition: background 0.1s ease-in-out;
	text-align: center;
}
.tour-item .tour-item-price {
    font-size: 1.5rem;
    padding: 0 0.5rem;
    display: inline-block;
	color: #555555;
	border: 0.2rem solid #CCCCCC;
}
.tour-item .tour-item-price span { font-weight: bold; font-size: 2rem; }
.tour-item .item-info h3 {
	font-size: 1.8rem;
	font-weight: 300;
    line-height: 1.2;
    color: #555555;
	background-color: #FFFFFF;
	border-top: 0.1rem solid #555555;
    margin: 0;
	padding: 1rem 0.5rem;
	text-align: center;
	font-weight: bold;
}
.tour-item .item-info h3 em {
	font-style: normal;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}
.tour-item .img-shadow { height: 18rem; overflow: hidden; }
.destinations .img-shadow { height: 14rem; overflow: hidden; }
.travel-item-description h5 { font-size: 1.1rem; font-weight: bold; }

/*
 |---------------------------------------------------
 | @SPECIAL ITEM
 |---------------------------------------------------
 */
.special-item { position: relative; text-align: center; margin: 1rem; }
.special-item .special-item-info {
	position: absolute;
    right: 1rem;
    bottom: 5%;
    left: 1rem;
    color: #fff;
    padding: 1rem;
    text-transform: uppercase;
    transition: background 0.1s ease-in-out;
	background-color: #31353E;
}
.special-item .special-item-info h3 {
	font-size: 1.6rem;
	padding: 0.5rem;
    line-height: 1.2;
    color: #fff;
    margin: 0;
	font-weight: bold;
	float: left;
}
.special-item .special-item-info h3 em {
	font-style: normal;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}
.special-item .special-item-price {
	font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    padding: 0.5rem;
	float: right;
}
.special-item:hover .special-item-info { background: rgba(166, 104, 167, 0.8); }
.special-item-big { position: relative; margin: 1rem; }
.special-item-big .special-item-big-info {
	max-width: 20rem;
    top: auto;
    right: auto;
    padding: 2rem 3rem;
    padding-bottom: 6rem;
	position: absolute;
    right: 1rem;
    bottom: 5%;
    left: 1rem;
    color: #fff;
    text-transform: uppercase;
    transition: background 0.1s ease-in-out;
	text-align: center;
}
.special-item-big .special-item-big-info h3 {
	font-size: 1.6rem;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 2rem;
	font-weight: bold;
}
.special-item-big .special-item-big-info h3 em {
	font-style: normal;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}
.special-item-big .special-item-big-info p {
	color: rgba(255,255,255,.8);
    font-size: 1rem;
    margin: 0;
}
.special-item-big .special-item-big-price {
	position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: #31353e;
    font-size: 1.8rem;
    padding: 0.5rem;
}

/*
 |---------------------------------------------------
 | @OFFER ITEM
 |---------------------------------------------------
 */
.offer-item {
	background-color: #FFFFFF;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
	color: #31353E;
	position: relative;
	-webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
    box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
}
.offer-item h2 { margin-top: 1rem; }
.offer-item h2 a { color: #555555; font-size: 2rem; }
.offer-item h2 a:hover,
.offer-item h2 a:active,
.offer-item h2 a:focus { text-decoration: none; }
.hotel-location { margin-left: 1rem; }
.offer-item .offer-discount {
	font-size: 2rem;
	position: absolute;
	top: 0;
	right: 0;
	width: 5rem;
	text-align: center;
	color: #FFFFFF;
}
.offer-item .offer-discount > span {
	border-bottom: 0.1rem solid #FF5722;
	height: 4rem;
	line-height: 4rem;
	display: block;
	color: #FF5722;
}
.offer-si .tooltip {
	font-size: 1.2rem;
	text-align: left;
	white-space: normal;
	width: 30rem;
	margin-left: -27rem;
	color: #555555;
	background-color: #FFFFFF;
	border: 0.1rem solid #DDDDDD;
}
@media (max-width: 40em) {
	.offer-si .tooltip {
		width: 20rem;
		margin-left: -17rem;
	}
}
.offer-si {
	font-size: 1.8rem;
	margin-left: 1rem;
	margin-right: 1rem;
}
.offer-item-description { text-align: justify; word-wrap: break-word; }

/*
.offer-status {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	padding: 0.5rem;
	color: #FFFFFF;
	display: inline-block;
}
.offer-status.status-yes { background-color: #09B700; }
.offer-status.status-ask { background-color: #FF9800; }
.offer-status.status-no { background-color: #f44336; }
.price-item .offer-status { 
	font-size: 1.2rem;
    margin: 0;
    padding: 0.3rem 0.8rem;
}
*/


.offer-status {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	padding: 0.5rem;
	color: #FFFFFF;
	display: inline-block;
}
.offer-status.status-yes {
	color: #09B700;
	font-weight: 600;
}
.offer-status.status-ask {
	color: #FF9800;
	font-weight: 600;
}
.offer-status.status-no {
	color: #f44336;
	font-weight: 600;
}
.price-item .offer-status {
	margin: 0;
	padding: 0.2rem;
}

.single-item-img { max-height: 30rem; margin: 0 auto; }
.thumbnail { 
	display: block; 
	border: 0.1rem solid #DDDDDD;
	margin-bottom: 1rem;
	margin-right: 0.5rem;
	padding: 0.2rem;
	margin: 0 auto;
}
.item-details { margin-bottom: 1rem; }
.item-details p { margin-bottom: 0; }
.hotel_searchParams_rooms .f-passenger-label { display: none; }
.hotel_searchParams .col-md-3 { padding: 0.1rem 0.4rem; }

/*
 |---------------------------------------------------
 | @SIDEBAR ITEMS
 |---------------------------------------------------
 */
.sidebar-header {
	border-top: 0.4rem solid #CCCCCC;
	color: #333;
    background-color: #f5f5f5;
	padding: 0.2rem 0.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.sidebar-header h4 { margin: 0; font-size: 1.8rem; }
.sidebar-item {
	background-color: #FFFFFF;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 0.1rem solid #DDDDDD;
}
.sidebar-item h5 {
	font-size: 1.6rem;
	padding: 1rem;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
}
.sidebar-item .price {
	margin-left: 1rem;
	margin-top: 1rem;
	background-color: #272727;
	color: #FFFFFF; 
	padding: 0.5rem;
	display: inline-block;
	text-transform: uppercase;
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 0;
}
.sidebar-item .price span { margin-left: 1rem; }

/*
 |---------------------------------------------------
 | @FILTERS
 |---------------------------------------------------
 */
.pr-filters .ui-slider-range input { background: none; }
.pr-filters .ui-widget-content { background: #ccc repeat-x scroll 50% 50%; border: none; }
.pr-filters .pr-filters-toggle {
	display: none;
	float: right;
	border-radius: 0.2rem;
	width: 3rem;
	height: 3rem;
	text-align:center;
	margin-bottom: 0;
	margin-top: 0.8rem;
}
.pr-filters .pr-filters-btn { display: none; }
.list-filter-select + .select2-container { width: 16rem !important; }
.sort-select-wr .select2 { min-width: 16rem; }
@media not all and (min-width: 37.5rem) {
	/* FILTERS */
	.pr-filters { position: relative; }
	.sidebar-search {
		padding: 0;
	}
}

/*
 |---------------------------------------------------
 | @DETAIL BOX AND TABLE PRICE
 |---------------------------------------------------
 */
.detail-box {
	text-align: center;
	padding: 2rem;
	background-color: #FFFFFF;
	border-right: none;
	height: 100%;
}
.detail-box img {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 6rem;
    margin: 0 auto;
}
.detail-info .flex-col:last-child .detail-box { border-right: none; }
.detail-box .detail-top {
	font-weight: bold;
	font-size: 1.4rem;
}
.detail-box strong { 
	font-weight: 600;
	color: #000000; 
}
.detail-box i {
	display: block;
	font-size: 4rem;
	color: #333333;
	margin-bottom: 1rem;
	margin-top: 1rem;
}
.detail-box img {
	display: block;
	margin-top: 1rem;
	margin-bottom: 1rem;
	max-width: 6rem;
	margin: 0 auto;
}
.room-item { border-bottom: 0.1rem solid #DDDDDD; }
.bus-inbound img {
	max-width: 10rem;
}
.bus-outbound img {
	max-width: 10rem;
	transform: scaleX(-1) rotate(-0deg);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
}
.flight-outbound {
	transform: scaleX(-1) rotate(-30deg);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
}

.small-flight-outbound,
.small-flight-inbound {max-width: 2rem; }
.small-flight-outbound {
	transform: scaleX(-1) rotate(-30deg);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
}
.airport-tax-img { max-width: 1rem; }
.price-item { border-bottom: 0.1rem solid #DDDDDD; }
.price-item:last-child { border-bottom: none; }
.price-item > label { margin: 0; padding: 0.5rem; }
.price-item > label:hover { background-color: #B3E5FC; }
.price-header { border-bottom: 0.1rem solid #DDDDDD; }
.price-header > div { font-size: 1.3rem; font-weight: bold; }
.price-title { font-weight: bold; font-size: 1.5rem; margin-bottom: 0; }
.price-col {  font-size: 1.4rem; font-weight: bold; }
.room-box hr { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.room-box.price-item:nth-child(odd) { background-color: #EFEFEF; }
.room-box.price-item:nth-child(even) { background-color: #FFFFFF; }

/*
 |---------------------------------------------------
 | @CHECKOUT
 |---------------------------------------------------
 */
.checkout-main {
	display: inline-block;
	width: 75%; 
	position: relative;
	z-index: 1; 
	float: left;
}
.sidebar { 
	display: inline-block;
	width: 25%;
	vertical-align: top; 
	float: right;
}
.wrap {
    display: inline;
    margin: 0 auto;
    top: 1rem;
    vertical-align: top;
    z-index: 0;
	max-width:120rem;
	width: 100%;
}
.candy-wrapper { position: relative; }
.sticky .sidebar { margin-left: 75%; float: none; }
.sticky .wrap  {
	position: fixed; 
	display:block; 
	float: right;
}
.at-bottom .wrap  { 
	position: absolute; 
	bottom: 0; 
	top: inherit; 
}
.sticky-stop { clear: both; }
/* responsive */
@media (max-width: 63.75em) {
  .checkout-main, 
  .sidebar, 
  .sticky .wrap, 
  .at-bottom .wrap { 
	  width: 100%; 
	  display: block;
	  position: static;
  }
  .sticky .sidebar { margin-left:0; }
}



.btn, button, input[type="submit"], input[type="button"], input[type="reset"] {
	border-radius: 0;
	border: none;
}

.select2-container { width: 100% !important; }

.select2-container--default .select2-results__option--highlighted[aria-selected] { /*background-color: #A668A7;*/ }

.price-col { 
	font-size: 14px;
	font-weight: bold;
}

.omi-datepickr-wrapper .datepickr-calendar-icon {
	display: none;
}

.room-details > input[type="radio"]:checked ~ label {
	color: #A668A7 !important;
	border-color: #A668A7;
}

.tour-item .img-shadow {
	height: 18rem;
	overflow: hidden;
}

.destinations .img-shadow {
	height: 14rem;
	overflow: hidden;
}


.qc-dropdown {
	color: #555555;
	/*padding: 0.6rem 1rem;*/
	padding: 0.6rem 2.8rem 0.6rem 0.8rem;
    height: 3.6rem;
	/*color: #FFFFFF;*/
	/*background-color: #915992;*/
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	/*border: none;*/
	/*box-shadow: 0 0 3px #764677 inset;*/
}

.qc-dropdown::after {
	right: 2rem;
	font-weight: bold;
}

.qc-dropdown ul.dropdown {
	color: #555555;
}
.qc-dropdown ul.dropdown li label:hover,
.qc-dropdown ul.dropdown li label.active {
	color: #FFFFFF;
	/*background-color: #A668A7;*/
}

.box-padding { padding: 0.5rem; }

.offer-item-description {
    text-align: justify;
	word-wrap: break-word;
}

.ribbon{
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  z-index: 1;
  color: #eee;
  font-size: 1.4rem;
  cursor: pointer;
  width: 3rem;
  line-height: 0.5rem;
  color: #FFFFFF;
}
.ribbon:after {
  content: "";
  font-size: 0.5em;
  position: absolute;
  height: 1.2em;
  border: 1.5rem solid #F44336;
  z-index: -1;
  top: 0;
  border-top-width: 2rem;
  border-bottom-color: transparent;
  right: 0;
}
.ribbon:before {
  content: "";
  font-size: 0.5em;
  position: absolute;
  border-style: solid;
  border-color: transparent transparent #B71C1C transparent;
  top: 0;
  right: 3rem;
  border-width: 0 0 1em 0.7em;
  z-index: -1;
}
.ribbon i { margin-top: 0.6rem; margin-left: 0.8rem; }

.sort-select-wr .select2 {
	min-width: 16rem;
}

.price-item .btn {
	background-color: transparent;
	color: #000000;
	height: auto;
	line-height: initial;
}

.price-action:hover .offer-status,
.price-action .price-btn { display: none; }
.price-action .offer-status,
.price-action:hover .price-btn { display: inline-block; }

.price-item .btn.price-btn {
	color: #FFFFFF;
	padding: 0.5rem;
	background-color: #673ab7;
}
.room-box hr {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

/*
.room-box.price-item:nth-child(odd) { background-color: #EFEFEF; }
.room-box.price-item:nth-child(even) { background-color: #FFFFFF; }
*/


.room-box .room-row:nth-child(odd) { background-color: #EFEFEF; }
.room-box .room-row:nth-child(even) { background-color: #FFFFFF; }

.departure-row:nth-child(odd) {background-color: #EFEFEF;}
.departure-row:nth-child(even) {background-color: #FFFFFF;}

.departure-row.room-box .room-row {
	background-color: transparent;
}

.travel-list-item-right {
	padding-bottom: 3rem;
}

.travel-list-item-right .price {
	padding-top: 0.2rem;
}
.travel-list-item-right .price.cached-price {
	padding-top: 15px;
}
.travel-list-item-right .price-per {
	height: 12.2rem;
	overflow: hidden; 
	padding-right: 0.5rem;
}

.travel-list-item-right .price-per ul li {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.travel-list-item-img-link img {
	display: block;
}

.flight-tickets-sort-type {
	height: 3.6rem;
}

.box-offer-img {
	height: 22.5rem
}

.btn-travel-details {
	margin-bottom: 0.4rem;
}

.travel-item-description h5 {
	font-size: 1.1rem;
	font-weight: bold;
}

.transport {
	display: none;
}

.main-search .transport + label {
	color: #555555
}
.home-search-wrapper .transport + label,
.top-search-with-tabs .transport + label,
.home-video .search-wrapper .transport + label { display: block !important; }


.search-form .transport + label {
    font-size: 1.3rem;
}

.search-form.price-search-form .transport + label {
    font-size: 1.5rem;
}

.price-header div {
    /*font-size: 1.1rem;*/
}

.price-header {
	border-bottom: 0.1rem solid #F6F6F6;
	background-color: #ABABAB;
	padding: 1.2rem;
}
.price-header > div {
	font-size: 1.2rem;
	font-weight: bold;
}

.price-header div {
    font-size: 1.3rem;
	color: #FFFFFF;
	font-weight: 600;
}

.p-06-lr {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}


.travel-message {
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 1rem;
}

.price-item .btn.price-btn.checkout-blocked {
    background: lightgray none repeat scroll 0 0;
    color: #333333;
}

.price-title, .tour-departure {
	padding: 0.5rem;
	font-size: 1.1rem;
}

.transport-item {
    float: left;
    padding-right: 1rem;
}

.checkout-main {
	margin-top: 1rem;
}


.col-5, .col-4 { position: relative; }
@media (min-width: 64em) {
	 .col-5 { float: left; width: 20%; }
	 .col-4 {float: left;width: 25%;}
}

/* DESTINATION HEADER */
.destination-header {
	/* margin-top: 1rem; */
	margin-bottom: 2rem;
	border-bottom: 0.1rem solid #DEDEDE;
	padding-bottom: 2rem;
}
.destination-header .destination-header-text {
	padding: 0 2rem 1rem 2rem;
}
.destination-header .destination-header-text h2,
h2.destination-title-mobile {
	font-weight: 600;
	/*line-height: 0.8;*/
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 2rem;
}

h2.destination-title-mobile {
	padding: 0rem 2rem;
}

.destination-info {
	position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -moz-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
	background-color: #FFFFFF;
}
.selected .destination-info {
	webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0s, visibility 0s;
    -moz-transition: opacity 0s, visibility 0s;
    transition: opacity 0s, visibility 0s;
}
.destination-info .close-destination {
	position: absolute;
	top: 0;
	margin-top: 2rem;
	right: 0;
	margin-right: 2rem;
	margin-top: 2rem;
	color: #FFFFFF;
	padding: 0.8rem;
	text-align: center;
	width: 4rem;
	height: 4rem;
	background-color: #131313;
	font-size: 1.6rem;
	box-sizing: border-box;
	border-radius: 50%;
	z-index: 100;
}
.destination-content-wrapper {
	padding: 2rem;
}
.destination-content-wrapper h2 {
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
@media (max-width: 64em)
{
	.destination-header .destination-header-text {
		min-height: 0;
	}

	.destination-header .destination-description {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
}
.destination-content-wrapper .dest-info-long {
	font-size: 1.4rem;
	line-height: 2;
}
.owl-destination-carousel .owl-single-wrapper {
	height: 25rem;
	text-align: center;
	white-space: nowrap;
}
.owl-destination-carousel.h-40 .owl-single-wrapper {
	height: 40rem;
}
.owl-destination-carousel .owl-single-helper {
	display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.owl-destination-carousel .single-item-img {
	max-height: 100%;
    display: inline-block !important;
    vertical-align: middle;
}
.owl-destination-carousel .owl-item,
.owl-destination-carousel .owl-stage-outer,
.owl-destination-carousel .owl-stage,
.owl-destination-carousel .item-video {
	height: 100%;
}
.owl-destination-carousel.h-40 {
	height: 40rem;
}
html.no-scroll, 
html.no-scroll body { overflow: hidden; }

/* OWL CAROUSEL */
.owl-carousel.owl-destination-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -3rem;
}
.owl-carousel.owl-destination-carousel .owl-nav .owl-prev,
.owl-carousel.owl-destination-carousel .owl-nav .owl-next {
	background-color: rgba(0, 0, 0, 0.3);
}
.owl-carousel.owl-destination-carousel .owl-nav .owl-next:hover,
.owl-carousel.owl-destination-carousel .owl-nav .owl-prev:hover {
	background-color: rgba(0, 0, 0, 0.3);
}
.owl-carousel.owl-destination-carousel .owl-nav .owl-prev {
	position: absolute;
	left: 0;
	font-size: 3rem;
	color: #FFFFFF;
	margin-left: 2rem;
}
.owl-carousel.owl-destination-carousel .owl-nav .owl-next {
	position: absolute;
	right: 0;
	font-size: 3rem;
	color: #FFFFFF;
	margin-right: 2rem;
}


/* TESTIMONIALS */
.testimonial-items h2 {
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.testimonial-items .item:hover {
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}
.testimonial-items .item {
	text-align: center;
	margin-bottom: 2rem;
	padding: 2rem;
}
.testimonial-items .item blockquote {
	font-size: 1.6rem;
	font-style: italic;
	margin-bottom: 2rem;
	color: #555555;
	line-height: 1.6;
}
.testimonial-items .item blockquote:after, 
.testimonial-items .item blockquote:before {
	content: "\0022";
    font-family: inherit;
    color: inherit;
}
.testimonial-items .item .img-thumbnail {
	height: 7rem;
	width: 7rem;
	border-radius: 50%;
	background-color: #FFFFFF;
	padding: 0.5rem;
	border: 0.1rem solid #DDDDDD;
	margin-bottom: 2rem;
}
.testimonial-items .item h4 {
	font-size: 1.6rem;
	clear: both;
	
}
.testimonial-items .item em {
	color: #777777;
}


.home-about {
	text-align: center;
	margin-top: 2rem;
	border-top: 0.1rem solid #FFFFFF;
	padding-top: 2rem;
	border-bottom: 0.1rem solid #FFFFFF;
	padding-bottom: 2rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.home-about h1 {
	font-weight: 300;
	font-size: 24px;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.home-about p {
	font-size: 14px;
	line-height: 1.8;
}

#owl-single-item-carousel { width: auto; }
#owl-single-item {
	border: 0.1rem solid #DDDDDD;
	padding: 0.5rem;
	margin-bottom: 1rem;
}
.single-item-img { margin: 0 auto; }
.thumbnail { 
	display: block; 
	border: 0.1rem solid #DDDDDD;
	margin-bottom: 1rem;
	margin-right: 0.5rem;
	padding: 0.2rem;
	height: 7rem;
	overflow: hidden;
	position: relative;
}
.thumbnail .img-responsive {
	max-width: 100%;
	width: auto;
	height: 100%;
	margin: 0 auto;
}
.owl-carousel .owl-item img, 
.single-item-img.img-responsive {
	max-width: 100%;
	width: auto;
}
#owl-single-item .owl-item {
	/*height: 40rem;*/
}
#owl-single-item .owl-item img {
	max-height: 100%;
}
#owl-single-item .owl-item .item-video {
	height: 100%;
}

.alert-box {
	padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-danger {
	color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}




/* Searchbar on product list */
.sidebar-search .col-1-6.f-right { float:right; }
.sidebar-search .search-form-toggle {
	display: none;
	float: right;
	border-radius: 0.2rem;
	width: 3rem;
	height: 3rem;
	text-align:center;
	margin-bottom: 0;
	margin-top: 0.8rem;
}

@media not all and (min-width: 37.5rem) {
	.sidebar-search h1 { float:left; }
}

/* OTHER OFFERS */
.other-offers {
	margin-bottom: 2rem;
}
.other-offer-item {
	background-color: #FFFFFF;
}
.other-offers .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -3rem;
}
.other-offers .owl-carousel .owl-nav .owl-prev, 
.other-offers .owl-carousel .owl-nav .owl-next {
	position: absolute;
    font-size: 3rem;
    color: #FFFFFF;
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    line-height: 3rem;
}
.other-offers .owl-carousel .owl-nav .owl-prev {
	left: 0;
	margin-left: 1rem;
}
.other-offers .owl-carousel .owl-nav .owl-next {
	right: 0;
	margin-right: 1rem;
}

/* SLIDER COUNTDOWN */
.slider-countdown {
	display: block;
	position: absolute;
	width: 100%;
	max-width: 25rem;
	top: 0;
	left: 0;
	margin-right: 1rem;
	margin-top: 1rem;
	z-index: 999999;
	margin-left: 1rem;
	padding: 1rem;
	text-align: center;
}
.slider-countdown h3 {
	font-size: 16px;
	margin-bottom: 1rem;
	border-bottom: 0.1rem solid #FFFFFF;
	padding-bottom: 1rem;
	display: inline-block;
}
.slider-countdown .countdown-until {
	margin-top: 1rem;
	display: block;
	padding-top: 4rem;
}
.slider-countdown .is-countdown {
    border: 0;
	width: 100%;
	font-size: 18px;
}
.slider-countdown .is-countdown .countdown-period {
	font-size: 10px;
}

.checkout-notice {
	margin-top: 2rem;
}

#owl-single-item .owl-item {
    height: 40rem;
}

.cs-mobile-vacation-type-wr {
	padding-bottom: 0.5rem;
}

.room-search-container {
	padding-bottom: 0.8rem;
}

.cs-room-persons-cell.cs-room-adults-cell {
	padding-right: 0.4rem;
}

.cs-room-persons-cell.cs-room-children-cell {
	padding-left: 0.1rem;
}

@media (min-width: 64em) {
	.cs-room-persons-cell.cs-room-adults-cell {
		padding-right: 0rem;
	}

	.cs-room-persons-cell.cs-room-children-cell {
		padding-left: 0rem;
	}
}

.price-item .price-col .cc-price {
	font-weight: normal;
	color: #121212;
	text-decoration: line-through;
	display: block;
	font-size: 1.3rem;
}


.offer-on-request-descr {
	display: none;
}

.p-top-10 {
	padding-top: 1rem;
}

.home-search-wrapper {
	background-color: transparent !important;
	margin-top: 1rem;
}
.home-search-wrapper .search-container {
	padding: 1rem;
	background-color: #FFFFFF;
}
.select2-margin {
	padding: 0.5rem;
}
.search-wrapper {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
@media not all and (min-width: 37.5rem) {
	.search-wrapper {
		padding-top: 0;
		padding-bottom: 0;
	}
}

.home-search-wrapper .search-container .global-search .tab-content label,
.home-video .search-wrapper .global-search .tab-content label,
.home-search-wrapper .search-container .global-search .tabs-content label.cs-mobile-vacation-type-label, 
 .home-video .search-wrapper .global-search .tabs-content label.cs-mobile-vacation-type-label {
	display: none;
}

/*
.home-search-wrapper .search-container .global-search button {
	border: 0rem none;
}
*/

.home-search-wrapper .global-search.qc-tab-panel > .tabs-content > .tab-content {
	padding-top: 0.5rem;
}

.search-wrapper.search-price-wrapper .top-searchbar {
	padding: 1rem;
}

.column-wrapper {
	padding: 0 1rem;
}

#footer .newsletter-email {
	width: 100%;
}
.footer-newsletter-btn,
#footer .newsletter input[type="submit"] {
	display: block;
	width: 100%;
	margin-top: 1rem;
}

.search-container {
	background-color: #FFFFFF;
	padding: 1rem;
	border: 0.1rem solid #ddd;
	-webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
    box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
    border-top: 0;
}

.hotel-list-item-img {
	height: 100%;
	object-fit: cover;
}
.hotel-list-item-img-link {
	width: 100%;
	height: 100%;
	display: block;
}

.order-by {
	background-color: #FFFFFF;
	padding: 1rem;
	border: .1rem solid #ddd;
    -webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
    box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
}
.order-by .select2 {
	min-width: 16rem;
}

/**
 |------------------------------------------------------
 | TRAVEL LIST ITEM
 |------------------------------------------------------
 */
.travel-list-item {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	margin-top: 1rem;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
    box-shadow: 0 0.1rem 0.1rem rgba(0,0,0,.05);
}





.featured-box--inner { 
	border: 0;
	border-radius: 0;
	background-color: #FFFFFF; 
	-webkit-box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.08), 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.08), 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.08), 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.08);
}
.featured-box--inner .box-offer-img {
	border-radius: 0;
}



.myacc-menu .btn-logout:hover,
.myacc-menu .btn-logout {
	
}


.user-booking {
	background-color: #FFFFFF;
	border: 0;
}


.no-results-text {
	padding: 1rem;
	background-color: #FFFFFF;
	margin-top: 1rem;
}

.search-form-inner.active {
	background: white;
}

.cs-close-search-triggerer {
	color: #333333;
	background-color: #F0F0F0;
	font-size: 20px;
	padding: 0.5rem 1rem;
	margin-bottom: 1rem;
	margin-right: 0.5rem;
}

#breadcrumb {
	margin-bottom: 0.6rem;
}

.hotel-sidebar-search,
.tour-sidebar-search {
	margin-bottom: 1rem;
}

.tvi--wsearch .search-wrapper.search-price-wrapper .top-searchbar .tvi--subtitle {
	color: #333333;
}

.pr-hotels .panel,
.pr-tours .panel,
.checkout-main .panel,
.pr-checkout-review .panel {
	margin-bottom: 1rem;
}

.page-main-heading,
.tvi--subtitle {
	padding-right: 0.5rem;
	padding-left: 0.5rem;
}

.open-filters {
	height: 3.6rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0;
  height: 0;
  left: 0;
  margin: 0;
  top: 0; 
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:after {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	position: absolute;
	right: 0;
	top: 1rem;
	margin-right: -1rem;
	font-size: 1.6rem; 
	color: #000000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: -2px;
}

@media(max-width: 64em) {
	.travel-list-item-center,
	.travel-list-item-right {
		padding: 0rem 0.5rem;
	}
	
	.travel-list-item-right .price-per {
		height: auto;
		padding-bottom: 0.5rem;
	}
	
	.btn-travel-details {
		display: block;
		width: auto;
		position: relative;
	}

	.cd-breadcrumb li a span {
		display: none;
	}

	.cd-breadcrumb li {
		min-height: 0;
	}
}

.cs-homepage-slideshow #owl-slideshow.owl-carousel .owl-stage-outer {
	height: 40rem;
}

.cs-homepage-slideshow #owl-slideshow.owl-carousel .owl-dots {
	margin-bottom: 1rem;
}

/*================================positioning from color theme===============================*/

/**
 |-----------------------------------------------------
 | @VALIDATION INPUTS
 |-----------------------------------------------------
 */
input[type="email"].error, 
input[type="number"].error, 
input[type="search"].error, 
input[type="text"].error, 
input[type="tel"].error, 
input[type="url"].error, 
input[type="password"].error, 
input[type="date"].error, 
input[type="month"].error, 
input[type="week"].error, 
input[type="time"].error, 
input[type="datetime"].error, 
input[type="datetime-local"].error, 
textarea.error, 
select.error {
	border: 0.1rem solid red;
	background-color: rgba(255, 0, 0, 0.1);
}

input[type="email"].success, 
input[type="number"].success, 
input[type="search"].success, 
input[type="text"].success, 
input[type="tel"].success, 
input[type="url"].success, 
input[type="password"].success, 
input[type="date"].success, 
input[type="month"].success, 
input[type="week"].success, 
input[type="time"].success, 
input[type="datetime"].success, 
input[type="datetime-local"].success, 
textarea.success, 
select.success {
	border: 0.1rem solid green;
	background-color: rgba(0, 255, 0, 0.1);
}

.cs-multi-requests-msg {
	color: #555555;
}

.cs-async-wait-message, .cs-more-travel-items {
	padding: 0.2rem 0.5rem;
}

.sidebar-search form {
	position: relative;
}

.cs-async-progress-wrapper {
	clear: both;
}

.cs-multi-async-process.sidebar-search.fixed .cs-async-progress-wrapper .cs-async-wait-message {
	padding: 1rem 1.5rem;
}

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

.cs-sp-off-req-on-noresults .panel .panel-container {
	padding: 1rem;
}

.price-item .btn.btn-more-rooms,
.btn-more-rooms {
	line-height: initial;
}

.cs-home-slideshow-search-bg {
	display: none;
}

@media (min-width: 64em) {
	.cs-home-slideshow-search-with-bg {
		position: relative;
		padding: 8rem 0rem 6rem 0rem;
		margin: 2rem 0rem;
	}

	.cs-home-slideshow-search-bg {
		display: block;
		object-fit: cover;
		position: absolute;
		left: 0rem;
		top: 0rem;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}	
	
	.cs-home-slideshow-search-with-bg .container {
		position: relative;
		z-index: 40;
	}
}
.sidebar-search.fixed form > .row.search-debug-container {
	width: 100%;
	float: none;
}
.sidebar-search.fixed form .search-debug-container > .row {
	float: left;
    width: 16.6667%;
    clear: none;
}
.search-debug-container .qc-radio input[type="radio"]:checked + label::before {
	border-color: #333333 !important;
}
.search-debug-container .qc-checkbox input[type="checkbox"]:checked + label:before {
	background-color: #333333 !important;
	border-radius: 5px;
}
.toggle-search-debug-container {
	color: #333333;
}