@import url('bootstrap-grid.css');
 
/*@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=Poppins:wght@300;500;600&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('icons.css');

/* Input Placeholder Color */
::placeholder {
	color: #808080;
	opacity: 1;
}


input,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
select {
	height: 48px;
	line-height: 48px;
	padding: 0 20px;
	outline: none;
	font-size: 16px;
	color: #808080;
	margin: 0 0 16px 0;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
	display: block;
	background-color: #fff;
	font-weight: 500;
	opacity: 1;
	border-radius: 4px;
	border: none;
	box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.12);
}
.no-padding { padding: 0!important }

select {
	padding: 15px 18px;
	cursor: pointer;
}

.radio {
	display: inline-block;
	vertical-align: top;
	margin-right: 15px;
}

.radio label {
	margin: 3px 0;
	cursor: pointer;
	position: relative;
	padding-left: 29px;
	line-height: 25px;
}

.radio input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.radio input[type="radio"] + label .radio-label {
	content: '';
	background: #fff;
	border-radius: 100%;
	border: 2px solid #b4b4b4;
	display: inline-block;
	width: 18px;
	height: 18px;
	position: relative;
	margin-right: 5px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
	background-color: #fff;
	box-shadow: inset 0 0 0 8px #fff;
	z-index: 100;
	position: absolute;
	top: 2px;
	left: 0;
}

.radio input[type="radio"] + label .radio-label:after {
	background-color: #66676b;
	content: "";
	top: 3px;
	left: 0;
	right: 0;
	margin: 0 auto;
	position: absolute;
	opacity: 1;
	transition: 0.3s;
	border-radius: 50%;
	transform: scale(0);
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.radio input[type="radio"]:checked + label .radio-label {
	background-color: #37acc1;
	border-color: #37acc1;
	box-shadow: inset 0 0 0 3px #fff;
}

.radio-label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border-radius: 50%;
	background-color: transparent;
	display: block
}

.interactive-effect label .radio-label:before {
	animation: radius-shadow 0.4s;
}

@keyframes radius-shadow {
  0% { box-shadow: 0 0 0 0 rgba(102,103,107,0.4); }
  100% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
}

input {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

input:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
	color: #808080;
	transition: box-shadow 0.2s !important;
	opacity: 1;
	border: none;
	box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.12);
}

input:-webkit-autofill:focus,
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #808080 !important;
}

/* With Border */
input.with-border,
input[type="text"].with-border,
input[type="password"].with-border,
input[type="email"].with-border,
input[type="number"].with-border,
textarea.with-border,
select.with-border {
	border: 1px solid #e0e0e0;
	box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.05);
}
input.with-border:focus,
input[type="text"].with-border:focus,
input[type="password"].with-border:focus,
input[type="email"].with-border:focus,
input[type="number"].with-border:focus,
textarea.with-border:focus {
	border: 1px solid #e0e0e0;
	box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.08);
}

input[type="submit"] {
	border: none;
	padding: 11px 18px;
	width: auto;
}

input[type="checkbox"] { display: inline; }

input[type="radio"] {
	width: 15px;
	height: 15px;
	cursor: pointer;
	box-shadow: none;
}

.input-with-icon {
	display: block;
	position: relative;
}

.input-with-icon input {
	padding-right: 45px;
}

.input-with-icon i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	font-size: 20px;
	color: #a0a0a0;
	font-style: normal;
	cursor: normal;
	pointer-events: none;
}

.input-with-icon i.currency {
	font-size: 14px;
}
 
.input-with-icon-left {
	position: relative;
}

.input-with-icon-left input {
	padding-left: 65px;
}

.input-with-icon-left i {
	position: absolute;
	top: 0;
	color: #a0a0a0;
	text-align: center;
	line-height: 48px;
	width: 48px;
	height: 48px;
	font-size: 19px;
	background-color: #f8f8f8;
	border: 1px solid #e0e0e0;
	box-sizing: border-box;
	display: block;
	border-radius: 4px 0 0 4px;
}

.input-with-icon-left.no-border i {
	border: none;
}
 
::placeholder {
	color: #808080;
	opacity: 1;
} 

textarea {
	height: auto;
	line-height: 27px;
	padding: 20px;
	min-height: 130px;
	transition: none !important;
	min-width: 100%;
}

label,
legend {
	display: block;
	font-weight: bold;
	font-size: 13px;
	font-weight: normal;
	margin-bottom: 8px;
}


label span,
legend span {
	font-weight: normal;
	font-size: 14px;
	color: #444;
}

fieldset {
	padding: 0;
	border: none;
}

.checkbox {
	display: inline-block;
	margin-bottom: 0;
}

.checkbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.checkbox label {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
	line-height: 25px;
}

.checkbox label span.checkbox-icon {
	content:'';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #b4b4b4;
	height: 20px;
	width: 20px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
	border-radius: 4px;
	transition: 0.3s;
	position: absolute;
	left: 0;
	top: 1px;
}

.checkbox input + label span.checkbox-icon:after {
	position: absolute;
	top: 2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 0;
	content: '';
	display: block;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: scale(0.5) rotate(45deg);
	transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
}

.checkbox input:checked + label span.checkbox-icon {
	border-color: #37acc1;
	background-color: #37acc1;
}

.checkbox input:checked + label span.checkbox-icon:after {
	transform: scale(1) rotate(45deg);
	opacity: 1;
}

button {
	border: none;
	margin: 0;
	padding: 0;
	width: auto;
	overflow: visible;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: normal;
	cursor: pointer;
}

a { color: #82bfd8; transition: 0.3s; }
a, button { outline: none !important; }
a:focus,
a:hover { text-decoration: none; color: #333;}

button { vertical-align: middle; }

	span.button,
	button.button,
	input[type="button"],
	input[type="submit"],
	a.button {
		background-color: #82bfd8;
		top: 0;
		padding: 6px 20px;
		line-height: 24px;
	    color: #fff; 
		position: relative;
		font-size: 14px;
		font-weight: 600;
		display: inline-block;
		transition: all 0.2s ease-in-out;
		cursor: pointer;
		overflow: hidden;
		border: none;
		border-radius: 0;
		box-shadow: 0 4px 12px rgba(102,103,107,0.15);
	}

/* Icons Aligment*/
.button i[class^="icon-material"],
button.button i[class^="icon-material"],
input[type="button"] i[class^="icon-material"],
input[type="submit"] i[class^="icon-material"],
a.button i[class^="icon-material"] {
	font-size: 18px;
	height: 0;
	width: 18px;
	line-height: 0;
	top: 2px;
	position: relative;
	display: inline-block;
	margin-left: 3px;
}

.button i[class^="icon-feather"],
button.button i[class^="icon-feather"],
input[type="button"] i[class^="icon-feather"],
input[type="submit"] i[class^="icon-feather"],
a.button i[class^="icon-feather"] {
	font-size: 16px;
	height: 0;
	width: 16px;
	line-height: 0;
	top: 2px;
	position: relative;
	display: inline-block;
	margin-left: 3px;
}
 
button.button.dark,
input[type="button"].dark,
input[type="submit"].dark,
a.button.dark {
	background-color: #333;
	color: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
 
button.button.gray,
input[type="button"].gray,
input[type="submit"].gray,
a.button.gray {
	background-color: #eaeaea;
	color: #666;
	box-shadow: none;
}

button.button.gray:hover,
input[type="button"].gray:hover,
input[type="submit"].gray:hover,
a.button.gray:hover {
	background-color: #e0e0e0;
}


body .button i.icon-material-outline-arrow-right-alt {
	font-size: 22px;
	top: 4px;
}

.button.full-width {
	max-width: 100%;
	width: 100%;
	text-align: center;
	display: block;
}

.button.big {
	font-size: 18px;
	padding: 13px 22px;
}

body .button.big i {
	font-size: 22px;
	top: 3px;
	position: relative;
	
}

.button.big.center { 
    margin: 0 auto;
    display: block;
    text-align: center;
}

.button.button-slide-out span {
	transform: translateY(0px);
	opacity: 1;
	transition: 0.3s;
}

.button.button-slide-out:hover span {
	transform: translateY(-10px);
	opacity: 0;
	display: inline-block;
	transition: 0.3s;
}

.button.button-slide-out i {
	transform: translateY(calc(-50% + 10px));
	opacity: 0;
	display: inline-block;
	transition: 0.3s;
	position: absolute;
	left: 0;
	right: 0;
	font-size: 18px;
	top: 50%;
	height: 20px;
}

.button.button-slide-out:hover i {
	transform: translateY(calc(-50% + 0px));
	opacity: 1;
}

.move-on-hover {
	box-shadow: 0 4px 12px rgba(102,103,107,0.1);
	transform: translateY(0);
	transition: 0.3s;
}

.move-on-hover:hover {
	box-shadow: 0 4px 12px rgba(102,103,107,0.2);
	transform: translateY(-2px)
}

.centered-button {
	text-align: center;
	display: block
}

.centered-button .button {
	margin: 0 auto;
}

img { max-width: 100%; }

#logo { 
	display: inline-block;
	height: 100%;
	vertical-align: top;
    position: relative;
    z-index: 2;
}

	#logo img {
		height: 80px;
		max-width: none;
	}

#header {
	position: relative;
	z-index: 999;
	padding: 0;
	font-size: 16px;
	background-color: rgb(255 255 255 / 98%);
	box-shadow: 0 0 20px rgb(0 0 0 / 17%);
}

#header .container,
#header .right-side,
#header .left-side { height: 100%; }

/* Full Width Header */
header.fullwidth .container {
  max-width: 100%;
  margin: 0;
  padding: 0 35px; 
}

/* Boxed Styles*/
#header .container { position: relative; }
 
#header .container:last-child {
    height: 56px; 
}
#header .left-side {
	float: left;
	width: 100%;
	display: flex;
	position: relative;
	flex: 1;
	justify-content: center;
}

#header .right-side {
	float: right;
	text-align: right;
	width: auto;
	display: inline-block;
	position: absolute;
	right: 25px;
	background-color: #fff;
	flex: 1;
}

/* Full Width Styles */
.full-width #header .left-side {
	float: left;
	width: 100%;
	display: inline-block;
	position: relative;
}

.full-width #header .right-side {
	float: right;
	text-align: right;
	width: auto;
	display: inline-block;
	position: absolute;
	right: 25px;
	background-color: #fff;
}



/* Header Widget
------------------------------------- */
.header-widget {
	display: inline-block;
	height: 100%;
	border-left: 1px solid #e0e0e0;
	padding: 0 30px;
	text-align: left;
	float: left;
}

.fullwidth .header-widget:last-of-type {
	padding-right: 5px;
	float: right;
	border-right: none;
}

.header-widget:last-of-type { padding-right: 0; margin-right: -5px; }
.fullwidth .header-widget:last-of-type { padding-right: 5px; margin-right: 0; }

/* Notification Avatar*/
.header-notifications-content .notification-avatar {
	height: 42px;
	width: 42px;
	max-width: 42px;
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
}

/* Sign In Button */
.header-widget .log-in-button {
	padding: 10px 0;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
	color: #666;
	display: block;
	margin: 0 -3px;
}

.header-widget .log-in-button i {
	font-size: 18px;
	line-height: 0;
	position: relative;
	top: 2px;
	margin-right: 4px;
	margin-left: -1px;
	color: #777;
	transition: 0.3s;
}

.header-widget .log-in-button:hover,
.header-widget .log-in-button:hover i { color: #82bfd8; }

.transparent-header .header-widget .log-in-button,
.transparent-header .header-widget .log-in-button i { color: #fff; }

/* Sign In Button Media Queries */
@media (max-width: 768px) {
	.header-widget .log-in-button span { display: none; }

	.header-widget .log-in-button i {
		font-size: 20px;
		top: 3px;
	}

	.header-widget .log-in-button i,
	.header-widget .log-in-button i:hover { color: #555; }

	.header-widget .log-in-button {
		background-color: #f0f0f0;
		border-radius: 4px;
	    height: 46px;
	    width: 46px;
	    text-align: center;
	}

	.transparent-header .header-widget .log-in-button i,
	.transparent-header .header-widget .log-in-button {
		background-color: #fff;
		color: #333;
	}

}


/* ---------------------------------- */
/* Header Notifications
------------------------------------- */
.header-notifications {
	height: 100%;
	display: inline-block;
	padding-right: 15px;
	position: relative;
}

.header-notifications:last-child { margin-right: -15px; }

.header-notifications-trigger,
.header-notifications-trigger a {
	font-size: 22px;
	color: #333;
	position: relative;
	top: 55%;
	transform: translate3d(0,-50%,0);
}

/* IE 11 Fixes */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.header-notifications-trigger, 
	.header-notifications-trigger a {
		height: 40px;
	}
	.header-notifications.user-menu { top: -8px; } 
}
/* IE 11 Fixes - End */

.header-notifications-trigger span {
	position: absolute;
	display: inline-block;
	top: -15px;
	margin-left: -10px;
	font-weight: 700;
	height: 19px;
	width: 19px;
	line-height: 19px;
	text-align: center;
	color: #fff;
	font-size: 11px;
	background-color: #82bfd8;
	border-radius: 50%;
	position: relative;
}

.header-notifications-dropdown {
	width: 360px;
	border-radius: 4px;
	box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.12);
	background-color: #fff;
	padding: 0 10px 0 20px;
	position: absolute;
	top: calc(100% - 10px);
	right: -15px;
	text-align: left;
	z-index: 100;
	transform: scale(0.95);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	pointer-events: none;
	background-color: #fff;
	border-radius: 0;
	-webkit-box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
	box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
	color: #484c55;
}

.header-notifications.active .header-notifications-dropdown {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.header-notifications .header-notifications-dropdown .button {
	position: absolute;
	right: 40px;
	bottom: 40px;
	top: auto;
}

.header-notifications .header-notifications-dropdown a.button { 
	background-color: #eee;
	border-radius: 4px;
	box-shadow: none;
	font-size: 15px;
	font-weight: 400;
	padding: 8px 20px;
}

	.header-notifications .header-notifications-dropdown a.button:hover {
		background-color: #333;
		color: #fff;
	}


.header-notifications-dropdown:before {
	content: "";
	position: absolute;
	right: 43px;
	top: -6px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #d7d7d7;
	/* Arrow with shadow */
	/*	top: 0;
	right: 33px;
    border: 5px solid black;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.05);*/
}

/* Headline */
.header-notifications-headline {
	padding: 17px 25px;
	padding-top: 18px;
	line-height: 24px;
	border-bottom: 1px solid #e6e6e6;
}

.header-notifications-headline h4,
.header-notifications-headline span {
	display: inline-block;
}

button.mark-as-read {
	float: right;
	position: relative;
	border-radius: 4px;
	height: 32px;
	width: 32px;
	text-align: center;
	line-height: 36px;
	top: -4px;
	right: -8px;
	color: #888;
	transition: 0.25s;
}

button.mark-as-read:hover {
	background-color: #f2f2f2;
	color: #888;
}

/* Content */
.header-notifications-content {
	display: block;
	width: 100%;
}

.header-notifications-scroll {
	display: block;
	overflow: hidden;
	height: auto;
}

.header-notifications-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-notifications-content ul li {
	border-bottom: 1px solid #e6e6e6;
	transition: 0.25s;
}

.header-notifications-content ul li:hover { background-color: #fafafa; }
.header-notifications-content ul li:hover .notification-icon { background-color: #eee; }
.header-notifications-content ul li:last-child { border-bottom: none; }

.header-notifications-content ul li a {
	color: #666;
	position: relative;
	padding: 22px 25px;
	display: block;
}

.header-notifications-content p { margin: 0; padding: 0; }

.header-notifications-content ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header-notifications-content .notification-icon,
.header-notifications-content .notification-text {
	flex: 1; 
}

/* Notification Icon */
.header-notifications-content .notification-icon i { position: relative; }

.notification-icon,
.header-notifications-content .notification-icon {
	font-size: 24px;
	height: 40px;
	width: 40px;
	max-width: 40px;
	display: inline-block;
	background-color: #f2f2f2;
	border-radius: 4px;
	line-height: 42px;
	text-align: center;
	color: #a0a0a0;
	transition: 0.25s;
	position: relative;
}

/* Adjustments for some icons :( */
.notification-icon .icon-material-outline-autorenew { font-size: 22px; }
.notification-icon .icon-material-outline-gavel { font-size: 19px; top: -2px; left: 1px; }


/* Notification Avatar*/
.header-notifications-content .notification-avatar {
	height: 42px;
	width: 42px;
	max-width: 42px;
	display: inline-block;
	border-radius: 50%;
	overflow: visible;
	align-self: flex-start;
}

.header-notifications-content .notification-avatar img{
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    border-radius: 50%;
}


/* Notification Texts */
.notification-text,
.header-notifications-content .notification-text {
	padding-left: 20px;
	padding-right: 5px; 
	display: inline-block;
	line-height: 23px;
	font-size: 14.7px
}

.header-notifications-content .notification-msg-text {
	display: inline-block;
	line-height: 23px;
	font-size: 14.7px;
	margin: 4px 0;
}

.notification-text strong,
.header-notifications-content .notification-text strong {
	font-weight: 600;
	color: #333;
}

.notification-text span.color,
.header-notifications-content .notification-text span.color {
	color: #82bfd8;
	display: inline-block;
}

.notification-text span.color {
	display: block;
}


/* Button */
a.header-notifications-button {
	border-radius: 0 0 4px 4px;
	font-weight: 600;
	color: #fff;
	font-size: 14.7px;
	padding: 12px 16px;
	background-color: #82bfd8;
	width: 100%;
	display: block;
	text-align: center;
	transition: 0.3s;
}

a.header-notifications-button i {
	font-size: 22px;
	line-height: 0;
	top: 4px;
	position: relative;
	max-width: 0;
	display: inline-block;
	margin-left: 7px
}


/* ---------------------------------- */
/* User Menu
------------------------------------- */
.user-menu {
	padding: 0;
}

.header-notifications.user-menu {
	margin: 0 -5px;
}

.user-menu .header-notifications-trigger,
.user-menu .header-notifications-trigger a { top: 50%; }

.user-menu .header-notifications-dropdown {
	top: calc(100% - -8px);
	width: 290px;
	left: -18px;
	display: flex;
	padding: 40px;
	width: 743px;
	min-width: 500px;
	padding-bottom: 100px;
}

.user-menu .header-notifications-dropdown:before { left: 27px; }

/* User Status Dot */
.notification-avatar { position: relative; }

.status-icon,
.notification-avatar:after,
.user-avatar:after {
	position: absolute;
	content: "";
	height: 12px;
	width: 12px;
	background-color: #c0c0c0;
	bottom: 0;
	right: 0;
	display: block;
	border: 2px solid #fff;
	box-shadow: 0 2px 3px rgba(0,0,0,0.3);
	border-radius: 50%;
}

.notification-avatar:after { width: 11px; height: 11px; }

/* Online */
.status-icon.status-online,
.status-online:after { background-color: #38b653; }

/* Offline */
.status-icon.status-offline,
.status-offline:after { background-color: #c0c0c0; }

/* Avatar */
.user-avatar {
	display: inline-block;
	border-radius: 50%;
	width: 42px;
	height: 42px;
	position: relative;
}

.user-avatar img {
	width: 100%;
	display: inline-block;
	border-radius: 50%;
	image-rendering: -webkit-optimize-contrast;
}


/* User Menu Small Nav */
ul.user-menu-small-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	padding: 20px 25px;
}

ul.user-menu-small-nav li {
	margin: 0;
	padding: 0;
}

ul.user-menu-small-nav li a {
	display: block;
	padding: 2px 0;
	font-size: 16px;
	color: #666;
	transition: 0.3s;
}

ul.user-menu-small-nav li a i {
	font-size: 16px;
	position: relative;
	top: 1px;
	margin-right: 2px;
	color: #666;
	-webkit-font-smoothing: antialiased;
	transition: 0.3s;
}


ul.user-menu-small-nav li a:hover,
ul.user-menu-small-nav li a:hover i { color: #82bfd8; }


/* User Status Section*/
.user-status {
	padding: 25px;
	border-bottom: 1px solid #e6e6e6;
}

/* User Menu - Details */
.user-details {
	display: flex;
}

.user-name {
	font-weight: 500;
	color: #333;
	line-height: 20px;
	padding: 2px 0 0 15px;
}

.user-details span {
	display: block;
	font-size: 14.7px;
	color: #888;
	font-weight: 500;
}


/* User Status Switch */
.status-switch {
	background-color: #eee;
	width: 100%;
	display: block;
	border-radius: 4px;
	height: 36px;
	padding: 0;
	position: relative;
	zoom: 1;
	margin-top: 20px;
}

.status-switch:before, 
.status-switch:after {
	content: " ";
	display: table;
}

.status-switch label {
	float: left;
	width: 50%;
	position: relative;
	z-index: 2;
	line-height: 36px;
	cursor: pointer;
	color: #888;
	font-size: 14.7px;
	text-align: center;
	transition: 0.3s;
	margin: 0;
}

.status-switch span.status-indicator {
	position: relative;
	z-index: 1;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	display: block;
	border-radius: 4px 0 0 4px;
	background-color: #38b653;
	box-shadow: 0 0 5px 1px rgba(56,182,83,0.3);
	transition: all 0.4s cubic-bezier(0.3,-.41,.19,1.3), background-color 0.2s linear;
}

.status-switch span.right {
	left: 50%;
	border-radius: 0 4px 4px 0;
	background-color: #333;
	box-shadow: none;
	color: #fff;
}

.status-switch label.current-status {
	color: #fff;
}

#navigation {
	position: relative;
	display: inline-block;
	width: 100%;
	display: flex;
	align-items: center;
}

	#navigation ul {
		list-style: none;
		position: relative;
		float: left;
		margin: 0;
		padding: 0;
		display: flex;  
	}

#navigation ul a {
	display: block;
	text-decoration: none;
	padding: 5px 0;
}

#navigation ul li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0
}

#navigation ul li ul {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 9px;
	padding: 0;
	z-index: 99999;
}

#navigation ul ul li { float: none; }

#navigation ul ul ul {
	top: 0;
	left: 100%;
	margin: 0 0 0 15px;
}

#navigation ul ul {
	margin: 0;
}

#navigation ul ul ul { pointer-events: none; }
#navigation ul ul li:hover > ul { pointer-events: all; }


#navigation ul ul:before {
	content: "";
	position: absolute;
	left: 0;
	top: -10px;
	background: rgba(255,255,255,0);
	width: 100%;
	height: 10px;
}

#navigation ul ul ul:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 100%;
	left: -15px;
	top: 0;
	opacity: 0;
}

#navigation ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

/* Indicator Arrow */
#navigation ul li a:after,
#navigation ul ul li a:after {
	font-family: "Material-Icons";
	content: '\e914';
	opacity: 1;
	font-size: 16px;
	transition: 0.2s;
	opacity: 1;
	line-height: 17px;
	width: 17px;
	height: 17px;
	background-color: #f0f0f0;
	color: #a8a8a8;
	display: inline-block;
	border-radius: 3px;
	margin-left: 7px;
	text-indent: 0;
	top: 1px;
	position: relative;
}


#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav li:hover a:after,
#navigation ul li:hover a:after {
	color: #82bfd8;
	background: rgba(102,103,107,0.13);
	opacity: 0.8;
}

#navigation ul ul.dropdown-nav ul.dropdown-nav li a:after {
	background-color: #f0f0f0;
	color: #a8a8a8;
	opacity: 1;
}


/* Dropdown Indicator */
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a:after,
#navigation ul ul.dropdown-nav li:hover a:after {
	color: #fff !important;
	background-color: #82bfd8;
	opacity: 1;
}

#navigation ul ul.dropdown-nav ul.dropdown-nav li a:after,
#navigation ul ul.dropdown-nav li a:after {
	content: '\e917';
	position: absolute;
	left: auto;
	right: 20px;
	top: 6px;
	background-color: rgba(255,255,255,0.1);
	color: #bbb;
	opacity: 1;
}

/* Current Indicator */
		#navigation ul li a.current {
			color: #53828e;
		}
#navigation ul li a.current:after {
	color: #82bfd8;
	background: rgba(102,103,107,0.13);
	opacity: 0.8;
}

#navigation ul li a:only-child:after,
#navigation ul ul li a:only-child:after { content: ''; display: none; }

#navigation ul ul li:hover a:after {
	opacity: 1;
	transform: translateX(0);
}

#navigation ul li {
	transition: all 0.25s;
	margin: 0 5px;
	border-radius: 4px;
}

	#navigation ul li a,
	#navigation ul ul li a {
		color: #67533E;
		cursor: pointer;
	}

	#navigation ul a {
		font-size: 14px;
		line-height: 34px;
		font-weight: 300;
		padding: 15px;
		padding: 15px 12px;
		text-transform: uppercase;
	}

#navigation ul li:hover a { color: #82bfd8; }


/* Dropdown Styles
------------------------------------- */
#navigation ul ul {
	background-color: #303030;
	box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.12);
	border-radius: 4px;
}

#navigation ul ul li { border-radius: 4px; }
#navigation ul ul li:last-child { border-bottom: none; }

#navigation ul li:hover ul a,
#navigation ul ul a {
	padding: 4px 40px 4px 15px !important;
	line-height: 22px !important;
}

#navigation ul li:hover ul a:only-child ,
#navigation ul a:only-child { 
	padding: 4px 15px 4px 15px !important;
}

#navigation ul ul:after {
	content: "";
	position: absolute;
	left: 25px;
	top: -5px;
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #303030;
}

body #navigation ul ul {
	padding: 14px 0;
	box-sizing: border-box;
	margin-top: 12px;
}

body #navigation ul ul ul { margin-top: 0; }

#navigation ul ul:before {
	 content: ".";
	 position: absolute;
	 width: 100%;
	 height: 12px;
	 top: -12px;
	 opacity: 0;
	 opacity: 0;
}

#navigation ul ul ul:before {
    width: calc(100% + 15px);
    left: -15px;
}

#navigation ul ul li { width: 208px; }

#navigation ul ul li:hover {
	border-radius: 0;
}

#navigation ul ul li:first-child { border-radius: 4px 4px 0 0; }
#navigation ul ul li:last-child { border-radius: 0 0 4px 4px; }

#navigation ul ul {
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s;
	transform: translate3d(0,15px,0);
}

#navigation ul ul ul { transform: translate3d(15px,0,0); }

#navigation ul li ul { z-index: 10; }
#navigation ul li:hover ul { z-index: 20; }

#navigation ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0,0,0);
}

#navigation ul ul li {
	margin: 0;
	padding: 0 6px;
	border-radius: 0;
	font-size: 15.7px;
}

#navigation ul ul.dropdown-nav ul.dropdown-nav ul.dropdown-nav li a,
#navigation ul ul.dropdown-nav ul.dropdown-nav li a,
#navigation ul ul.dropdown-nav li a {
	transition: 0.3s;
	color: #aaa;
}

#navigation ul ul.dropdown-nav ul.dropdown-nav ul.dropdown-nav li:hover a,
#navigation ul ul.dropdown-nav ul.dropdown-nav li:hover a,
#navigation ul ul.dropdown-nav li:hover a {
	color: #fff;
}


/* ---------------------------------- */
/* Mega Menu
------------------------------------- */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  position: absolute;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
  border-radius: 4px;
  font-size: 15px;
  display: flex;
  top: 100%;
  left: 0;
  padding: 20px 0;
  box-sizing: border-box;
  font-size: 14px;
  margin-top: -10px;
  background-color: #fff;
  width: 200px;
  z-index: 99;
  transform: translate3d(-42%,24px,0);
}

.mega-menu:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  display: block;
  width: 100%;
  height: 12px;
  opacity: 0;
}

#navigation ul li .mega-menu ul { 
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,0,0);
  position: relative;
  display: inline-block;
  flex: 1;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  top: auto;
  left: auto;
  background-color: transparent;
}

#navigation ul li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-42%,12px,0);
}

#navigation ul li:hover .mega-menu ul {
  opacity: 1;
  visibility: visible;
}


#navigation .mega-menu ul,
#navigation .mega-menu ul li {
  width: 100%;
}

.mega-menu.two-columns    { width: 429px;}
.mega-menu.three-columns  { width: 643px;}
.mega-menu.four-columns   { width: 857px;}

#navigation ul .mega-menu ul a {
  color: #bbb;
  padding: 0 !important;
  display: block;
  margin-left: 0;
  -wekkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#navigation ul li:hover .mega-menu ul a, 
#navigation ul .mega-menu ul a {
	 padding: 6px 0 !important;
	 line-height: 22px !important;
	 transform: translate3d(0,0,0) !important;
}

#navigation .mega-menu ul li {
  padding: 0 30px;
}

#navigation ul li a i {
  font-size: 14px;
  position: relative;
  top: 0;
  padding-right: 5px;
}

.mega-menu-section {
  display: inline-block;
  float: left;
  width: 214px;
  padding: 0;
  border-right: 1px solid #e9e9e9;
}

.mega-menu .mega-menu-section:last-child { border: none; }

.mega-menu-headline {
  color: #222;
  opacity: 1 !important;
  font-weight: 600;
  display: block;
  padding: 8px 30px !important;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 21px;
}

/* Some mega menu styles for mobile nav */
.mobile-styles .mm-listview { margin: 0px -20px !important; }
.mobile-styles .mm-listview .mega-menu-headline { color: #fff; padding: 15px 20px !important; background: #222 !important; }
.mobile-styles .mm-listview li a i { padding-right: 5px; }
.mobile-styles.mm-panel:before { height: 10px !important; }



/* ---------------------------------- */
/* Sticky Header
------------------------------------- */
#header-container {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1000; 
}

#wrapper.wrapper-with-transparent-header #header .right-side { background-color: transparent; }
#header { transition: background 0.3s; }
#wrapper {
	padding-top: 56px;
	background-color: #fafafa;
}
	#wrapper.wrapper-with-transparent-header {
		padding-top: 64px !important
	 }

@media (max-width: 1099px) {
  #wrapper { padding-top: 0 !important; }
  #header-container { position: relative; }
  #header-container.transparent-header { position: absolute; }

	#navigation {
		display: none;
	}
}

#header-container.transparent-header {
	position: absolute;
	width: 100%;
}

	#header-container.transparent-header.cloned {
		position: fixed;
		box-shadow: 0px 2px 27px rgba(0, 0, 0, 0.16);
		background-color: #fff;
	}

.transparent-header-spacer { height: 82px; }

.transparent-header #header {
	background-color: transparent;
	box-shadow: none;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.transparent-header #header .right-side { background-color: transparent; }

.transparent-header #logo,
.transparent-header #header .right-side .header-widget { border-color: rgba(255,255,255,0.2); }
.transparent-header #header .right-side .header-widget:first-of-type { border-right-color: transparent; }
.transparent-header #header .right-side .header-widget:last-of-type { border-color: rgba(255,255,255,0.2); }

body .transparent-header #navigation > ul li a,
.transparent-header .header-notifications-trigger,
.transparent-header .header-notifications-trigger a { color: #fff; }

body .transparent-header #navigation > ul ul li a { color: #aaa; }

.transparent-header .header-notifications-dropdown:before { border-bottom-color: #fff; }

.transparent-header .mmenu-trigger { background-color: #fff; }

.transparent-header #navigation > ul li a:after {
	background-color: rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.8);
	opacity: 1;
	transition: 0.3s;
}

.transparent-header #navigation > ul li:hover ul li:hover a:after,
.transparent-header #navigation > ul li:hover a:after,
.transparent-header #navigation > ul li a.current:after {
    color: #fff;
    background: #82bfd8;
}

.transparent-header #navigation > ul li:hover ul a:after,
.transparent-header #navigation > ul ul li a:after {
    background-color: rgba(255,255,255,0.1);
    color: #bbb;
}

/* ---------------------------------- */
/* mmenu.js - mobile menu
------------------------------------- */
.mm-hidden { display: none!important }

.mm-wrapper {
    overflow-x: hidden;
    position: relative
}

.mm-menu {
    box-sizing: border-box;
    background: inherit;
    display: block;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0
}

.mm-panels,
.mm-panels>.mm-panel {
    background: inherit;
    border-color: inherit;
    box-sizing: border-box;
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0
}

.mm-panels {
    overflow: hidden
}

.mm-panel {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left
}

.mm-panel.mm-opened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panel.mm-subopened {
    -webkit-transform: translate(-30%, 0);
    -ms-transform: translate(-30%, 0);
    transform: translate(-30%, 0);
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0)
}

.mm-panel.mm-highest {
    z-index: 1
}

.mm-panel.mm-noanimation {
    -webkit-transition: none!important;
    transition: none!important
}

.mm-panel.mm-noanimation.mm-subopened {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-panels>.mm-panel {
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 20px
}

.mm-panels>.mm-panel.mm-hasnavbar {
    padding-top: 40px
}

.mm-panels>.mm-panel:not(.mm-hidden) {
    display: block
}

.mm-panels>.mm-panel:after,
.mm-panels>.mm-panel:before {
    content: '';
    display: block;
    height: 20px
}

.mm-vertical .mm-panel {
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important
}

.mm-listview .mm-vertical .mm-panel,
.mm-vertical .mm-listview .mm-panel {
    display: none;
    padding: 10px 0 10px 10px
}

.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,
.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after {
    border-color: transparent
}

.mm-vertical li.mm-opened>.mm-panel,
li.mm-vertical.mm-opened>.mm-panel {
    display: block
}

.mm-listview>li.mm-vertical>.mm-next,
.mm-vertical .mm-listview>li>.mm-next {
    box-sizing: border-box;
    height: 40px;
    bottom: auto
}

.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,
.mm-vertical .mm-listview>li.mm-opened>.mm-next:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    right: 19px
}

.mm-btn {
    box-sizing: border-box;
    width: 40px;
    height: 50px;
    position: absolute;
    top: 0;
    z-index: 1
}

.mm-clear:after,
.mm-clear:before,
.mm-close:after,
.mm-close:before {
    content: '';
    border: 2px solid transparent;
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.mm-clear:before,
.mm-close:before {
    border-right: none;
    border-bottom: none;
    right: 18px
}

.mm-clear:after,
.mm-close:after {
    border-left: none;
    border-top: none;
    right: 25px
}

.mm-next:after,
.mm-prev:before {
    content: '';
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0
}

.mm-prev:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 23px;
    right: auto
}

.mm-next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    right: 23px;
    left: auto
}

.mm-navbar {
    border-bottom: 1px solid;
    border-color: inherit;
    text-align: center;
    line-height: 30px;
    height: 50px;
    padding: 0 40px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.mm-navbar>* {
    display: block;
    padding: 10px 0
}

.mm-navbar a,
.mm-navbar a:hover {
    text-decoration: none
}

.mm-navbar .mm-title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.mm-navbar .mm-btn:first-child {
    left: 0
}

.mm-navbar .mm-btn:last-child {
    text-align: right;
    right: 0
}

.mm-panel .mm-navbar {
    display: none
}

.mm-panel.mm-hasnavbar .mm-navbar {
    display: block;
    background-color: #262626;
}

.mm-listview,
.mm-listview>li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0
}

.mm-listview {
    font: inherit;
    font-size: 14px;
    line-height: 20px
}

.mm-listview a,
.mm-listview a:hover {
    text-decoration: none
}

.mm-listview>li {
    position: relative
}

.mm-listview>li,
.mm-listview>li .mm-next,
.mm-listview>li .mm-next:before,
.mm-listview>li:after {
    border-color: inherit
}

.mm-listview>li {
    border-bottom: 1px solid #404040;
}

.mm-listview>li>a,
.mm-listview>li>span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: inherit;
    display: block;
    padding: 14px 10px 14px 20px;
    margin: 0;
}

.mm-listview>li:not(.mm-divider):after {
    content: '';
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.mm-listview>li:not(.mm-divider):after {
    left: 20px
}

.mm-listview .mm-next {
    background: rgba(3, 2, 1, 0);
    width: 50px;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2
}

.mm-listview .mm-next:before {
    content: '';
    border-left-width: 1px;
    border-left-style: solid;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0
}

.mm-listview .mm-next+a,
.mm-listview .mm-next+span {
    margin-right: 50px
}

.mm-listview .mm-next.mm-fullsubopen {
    width: 100%
}

.mm-listview .mm-next.mm-fullsubopen:before {
    border-left: none
}

.mm-listview .mm-next.mm-fullsubopen+a,
.mm-listview .mm-next.mm-fullsubopen+span {
    padding-right: 50px;
    margin-right: 0
}

.mm-panels>.mm-panel>.mm-listview {
    margin: 20px -20px
}

.mm-panels>.mm-panel>.mm-listview:first-child,
.mm-panels>.mm-panel>.mm-navbar+.mm-listview {
    margin-top: -10px;
}

.mm-menu {
    background: #2a2a2a;
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}

.mm-menu .mm-navbar a,
.mm-menu .mm-navbar>* {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before {
    border-color: rgba(255,255,255,0.8);
}

.mm-menu .mm-listview {
    border-color: #2a2a2a
}

.mm-menu .mm-listview>li .mm-next:after {
    border-color: rgba(255,255,255,0.8);
}

.mm-menu .mm-listview>li a:not(.mm-next) {
    -webkit-tap-highlight-color: rgba(255, 255, 255, .5);
    tap-highlight-color: rgba(255, 255, 255, .5)
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu .mm-listview>li.mm-selected>span {
    background: rgba(255, 255, 255, .05)
}

.mm-menu .mm-listview>li { transition: 0.2s; }
.mm-menu .mm-listview>li:hover {
    background: rgba(255, 255, 255, .03)
}

.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,
.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next {
    background: rgba(0, 0, 0, .05)
}

.mm-menu .mm-divider {
    background: rgba(0, 0, 0, .05)
}

.mm-page {
    box-sizing: border-box;
    position: relative
}

.mm-slideout {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    z-index: 1
}

html.mm-opened {
    overflow-x: hidden;
    position: relative
}

html.mm-blocking {
    overflow: hidden
}

html.mm-blocking body {
    overflow: hidden
}

html.mm-background .mm-page {
    background: inherit
}

#mm-blocker {
    background: rgba(3, 2, 1, 0);
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2
}

html.mm-blocking #mm-blocker {
    display: block
}

.mm-menu.mm-offcanvas {
    z-index: 0;
    display: none;
    position: fixed
}

.mm-menu.mm-offcanvas.mm-opened {
    display: block
}

.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened {
    z-index: 10
}

.mm-menu.mm-offcanvas {
    width: 80%;
    min-width: 140px;
    max-width: 440px
}

html.mm-opening .mm-menu.mm-opened~.mm-slideout {
    -webkit-transform: translate(80%, 0);
    -ms-transform: translate(80%, 0);
    transform: translate(80%, 0);
    -webkit-transform: translate3d(80%, 0, 0);
    transform: translate3d(80%, 0, 0)
}

@media all and (max-width:175px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform: translate(140px, 0);
        -ms-transform: translate(140px, 0);
        transform: translate(140px, 0);
        -webkit-transform: translate3d(140px, 0, 0);
        transform: translate3d(140px, 0, 0)
    }
}

@media all and (min-width:550px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform: translate(440px, 0);
        -ms-transform: translate(440px, 0);
        transform: translate(440px, 0);
        -webkit-transform: translate3d(440px, 0, 0);
        transform: translate3d(440px, 0, 0)
    }
}

.mm-sronly {
    border: 0!important;
    clip: rect(1px, 1px, 1px, 1px)!important;
    -webkit-clip-path: inset(50%)!important;
    clip-path: inset(50%)!important;
    white-space: nowrap!important;
    width: 1px!important;
    height: 1px!important;
    padding: 0!important;
    overflow: hidden!important;
    position: absolute!important
}

em.mm-counter {
    font: inherit;
    font-size: 14px;
    font-style: normal;
    text-indent: 0;
    line-height: 20px;
    display: block;
    margin-top: -10px;
    position: absolute;
    right: 45px;
    top: 50%
}

em.mm-counter+a.mm-next {
    width: 90px
}

em.mm-counter+a.mm-next+a,
em.mm-counter+a.mm-next+span {
    margin-right: 90px
}

em.mm-counter+a.mm-fullsubopen {
    padding-left: 0
}

em.mm-counter+a.mm-fullsubopen+a,
em.mm-counter+a.mm-fullsubopen+span {
    padding-right: 90px
}

.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+a,
.mm-listview em.mm-counter+.mm-next.mm-fullsubopen+span {
    padding-right: 90px;
}

.mm-vertical>.mm-counter {
    top: 12px;
    margin-top: 0
}

.mm-vertical.mm-spacer>.mm-counter {
    margin-top: 40px
}

.mm-nosubresults>.mm-counter {
    display: none
}

.mm-menu em.mm-counter {
    background-color: rgba(0,0,0,0.3);
    height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
	line-height: 21px;
    font-size: 10px;
    font-weight: 600;
}

.mm-menu em.mm-counter {
	background-color: #82bfd8;
}

/* Trigger Styles */
.mmenu-trigger {
    height: 46px;
    width: 46px;
    display: none;
    position: relative;
    margin: 0;
    background-color: #eee;
    border-radius: 4px;
    cursor: pointer;
}

/* Hamburger Icon */
.hamburger {
    padding: 0;
    top: 16px;
    left: 12px;
    transform: scale(0.67);
    -moz-transform: scale(0.70) translateY(4px);
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger-box {
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 33px;
    height: 4px;
    background-color: #555;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before { top: -10px; }
.hamburger-inner::after { bottom: -10px; }

/* Animation */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

.mmenu-trigger { display: none; }


/* Media Queries Menu */
@media (max-width: 1099px) {

	/* Header Responsive Styles */
	#responsive { display: none; }
	.mmenu-trigger { display: inline-block !important; }

	#header {
		height: 48px;
	}

	#logo {
		border: none;
		margin-top: 12px;
	}
	#logo img { border: none; max-width: 164px; height: auto; }
	
	header.fullwidth .container {
		padding: 0 20px;
	}

	.header-widget { float: left; }

	.fullwidth .header-widget:last-of-type,
	.header-widget:last-of-type {
		padding-right: 25px;
		float: left;
	}

	#header .right-side {
		position: absolute;
		width: auto;
		background-color: #fff;
		text-align: left;
	}

	.mmenu-trigger {
		margin: 0 -5px 0 23px;
		top: 5px;
		float: right;
	}

	#header .right-side .header-widget {
		border-right: 1px solid #e0e0e0;
		margin-right: -1px;
	}

	.header-widget { padding: 0 25px; }
	.header-notifications:first-child { margin-right: -5px; }
	
	#header-container.cloned { display: none; }
}

@media (max-width: 768px) {
	.header-notifications {
		position: initial;
	}

	.header-notifications-dropdown:before { display: none; }
	.user-menu .header-notifications-dropdown,
	.header-notifications-dropdown {
		width: calc(100vw - 30px);
		right: 0px;
		top: calc(100% + 1px);
	}

}

@media (max-width: 480px) {
	.hide-on-mobile { display: none; }
}

.photo-box { 
	height: 360px;
	display: block;
	position: relative;
	background-size: cover;
	background-position: 100%; 
	transition: 0.4s;
	margin: 0 0 25px 0;

	width: 100%;
	object-fit: cover;
	height: 23.75rem;
}
@media (min-width: 640px) {
	.photo-box {
		height: 38rem;
	}
} 

 
.photo-box.mini { 
	height: 280px; 
}
.section-gallery .container-fluid {
	overflow: hidden;
}
.section-gallery .container-fluid > .row {
		margin-right: -10px;
		margin-left: -10px;
}
.section-gallery .photo-box {
    border-radius: 0;
    height: 360px;
    display: block;
    position: relative;
    background-size: cover;
    background-position: 100%;
    box-shadow: none;
    transition: 0.4s;
    margin: 0;
	overflow: hidden;
}

.section-gallery .row > div {
    padding-right: 5px;
    padding-left: 5px;
}

.section-gallery .photo-box.small {
    height: 174px;
    margin-bottom: 10px;
}

/*.section-gallery .photo-box:hover {
    box-shadow: none;
    transform: translateY(-4px);
}*/

.photo-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    height: 50%;
    background: #333; 
    border-radius: 0;
    transition: 0.4s;
    background: linear-gradient(to top, rgba(0.5,0.5,0.5,0.85) 0%, transparent);
}

.photo-box-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
	display: flex;
	justify-content: space-between;
	right: 30px;
	flex-direction: row;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hotels-slick-carousel .photo-box-content {
	position: absolute;
	bottom: 63px; 
}
.hotels-slick-carousel .hotel-detail {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	padding: 10px 20px 8px 20px;
	display: flex;
	justify-content: space-between;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

	.hotels-slick-carousel .hotel-detail .tile-price {
		font-size: 18px;
	}
	.hotels-slick-carousel .hotel-detail .tile-price .currency {
		font-size: small;
		padding-left: 4px;
		display: inline-block;
	}

.photo-box-content h3 {
	color: #fff;
	font-size: 49px;
	line-height: 50px;
	margin: 0;
	font-weight: 500;
	letter-spacing: 0;
	font-family: 'Italiana', serif;
	max-width: 320px;
}

.photo-box-content span {
	line-height: 0;
	font-size: 12px;
	display: inline-block;
	letter-spacing: 1.5px;
	margin: 0;
	padding: 0;
	font-family: 'Italiana', serif;
	display: flex;
	flex-direction: column;
	padding: 0 0 0 20px;
	border-left: 1px solid #fff;
	text-align: center;
	color: #fff;
}

.photo-box-content span strong {
	font-size: 34pt;
	display: block;
	height: 33px;
	font-weight: 400;
}

/*.photo-box:hover {
	box-shadow: 0 4px 12px rgba(102,103,107,0.25);
	transform: translateY(-10px);
}
*/
.photo-box:hover:before {
    box-shadow: 0 4px 12px rgba(102,103,107,0.35);
	opacity: 0.95;
}

.photo-box.small { height: 160px; margin-bottom: 30px }
.photo-box.small:hover { transform: translateY(-5px);}

.photo-box.small .photo-box-content {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: auto;
    top: 50%;
    transform: translateY(-49%);
    background-color: rgba(0,0,0,0.45);
    height: 100%;
}

.section-gallery .photo-box.small .photo-box-content {
	justify-content: center;
}

.photo-box.small .photo-box-content h3 {
	font-size: 16px;
	font-weight: 600;
}

.photo-box.small .photo-box-content span {
	color: #fff; 
	font-size: 14px;
	line-height: 18px;
	margin-top: 5px;
	transition: 0.3s;
}

.photo-box.small:hover .photo-box-content span {
	color: #fff;
	background: rgba(0,0,0,0.2);
}

body {
    color: #666;
    font-size: 14px;
    line-height: 27px;
    background-color: #fff;
}

body.gray { background-color: #fbfbfb; }
body p { font-size: 16px; line-height: 27px; }

	body, h1, h2, h3, h4, h5, h6, input[type="text"], input[type="password"], input[type="email"],
	textarea, select, input[type="button"], input[type="submit"], button, body .pac-container {
		font-family: 'Montserrat', sans-serif;
		/*font-family: 'Nunito Sans', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;*/
		text-transform: none;
	}
 
h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

h3.page-title { font-size: 20px; line-height: 32px; }

.section { display: block; }
.section.white { background: #fff; }
.section.gray { background: #f9f9f9; }
.section.color {
	background: #e5e1db
}
.section.border-top { border-top: 1px solid #e0e0e0; }
.section.border-bottom { border-bottom: 1px solid #e0e0e0; }
	.section.dark {
		background: #374a4b;
	}
.section-headline {
    display: block;
    position: relative; 
	z-index: 1;
}

.section-headline.centered {
    text-align: center;
    padding: 0;
}

.section-headline span {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #888;
    margin-top: 0;
    display: block;
}

	.section-headline h1,
	.section-headline h2,
	.section-headline h3,
	.section-headline h4 {
		font-size: 70px;
		line-height: 54px;
		font-weight: 600;
		color: #d1d1d1;
		letter-spacing: 1.5px;
		text-align: center;
		margin: 0 auto;
		font-family: 'Italiana', serif;
		padding-bottom: 40px;
		font-weight: 300;
		padding-top: 40px;
	}
		.section-headline h3 strong {
			font-family: 'Italiana', serif;
			/* display: block; */
			color: #37acc1;
			font-weight: 300;
			top: -40px;
			display: inline-block;
			position: relative;
			right: -50px;
		}
		.section-headline.big h3 strong { 
			font-size: 93px;
		}
.section-headline h3 + p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5em;
}
	.section-headline h4 {
		font-size: 18px;
		line-height: 34px;
	}

.section-headline.border-top { border-top: 1px solid #e0e0e0; }

.section-headline h3.mega {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2em;
}

.dark .section-headline h3.mega {  color: #fff; }
.dark .section-headline p {  color: #fff; }

h1.in-a-box,
h2.in-a-box,
h2.in-a-box,
h3.in-a-box,
h5.in-a-box {
    display: inline-block;
    font-size: 18px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    padding: 8px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.section-headline h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

a.headline-link {
    position: absolute;
    right: 0;
    bottom: 0;
}

a.headline-link.bottom-icon:after {
    content: "\e957";
    top: 3px;
}

a.headline-link:after {
    content: "\e995";
    font-family: "Material-Icons";
    font-size: 21px;
    line-height: 0;
    position: relative;
    top: 4px;
    margin-left: 5px;
}

@media (max-width: 768px) { 
    a.headline-link {
        position: relative;
        margin-top: 10px;
        display: inline-block;
    }
}

@media (max-width: 992px) { .hide-under-992px { display: none; } }
@media (max-width: 768px) { .hide-under-768px { display: none; } }
@media (max-width: 480px) { .hide-under-480px { display: none; } }

.icon-set-container {
    display: block;
    width: calc(100% + 30px);
    left: -15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.glyph.fs1 {
    position: relative;
    font-size: 20px;
    margin: 10px 15px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 4px;
    flex: 1 1 calc(25% - 30px);
    align-content: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 15px 15px;
    transition: 0.3s;
    color: #666;
}

.glyph.fs1:hover {
    transform: translateY(-5px);
    background-color: #333;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.glyph.fs1:hover span:not([class*="mls"]) {
    background-color: #fff;
    color: #333;
}

.glyph.fs1 .fs0,
.glyph.fs1 fieldset { display: none; }

.glyph.fs1 span:not([class*="mls"]) {
    vertical-align: middle;
    top: -4px;
    height: 40px;
    width: 40px;
    background: rgba(0,0,0,0.04);
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    font-size: 24px;
    transition: 0.3s;
    position: relative;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.glyph.fs1 .mls:not([class*="icon-"]) {
    max-width: 80%;
    display: inline-block;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    top: 0;	
    vertical-align: middle;
    padding-left: 55px;
}

.content-left-offset { padding-left: 30px; }
.content-right-offset { padding-right: 30px; }

@media (max-width: 992px) {
    .content-left-offset { padding-left: 15px; }
    .content-right-offset { padding-right: 15px; }
}

.icon-box {
    text-align: left;
	margin-top: 45px;
	position: relative;
}

.icon-box-circle {
	float: left;
	height: 60px;
	z-index: 100;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	margin-bottom: 35px;
    margin-right: 25px;
}

.icon-box-circle-inner {
	font-size: 72px;
	color: #fff;
	position: relative;
	width: 60px;
	margin: 0 auto;
	display: inline-block;
}

.icon-box-check {
	background-color: #f4901e;
	width: 30px;
	height: 30px;
	line-height: 32px;
	font-size: 18px;
	border-radius: 50%;
	margin: 0 auto;
	position: relative;
	z-index: 100;
	animation: circle-box-anim 2s infinite;
	transition: 0.4s;
	color: #fff;
	font-weight: 500;
	position: absolute;
	bottom: -3px;
	right: -10px;
    text-align: center;
	animation: checkAnim 2s infinite;
	box-shadow: 0 0 0 5px rgba(102,103,107,0.1);
}

@keyframes checkAnim {
	0%,100% {
		box-shadow: 0 0 0 5px rgba(102,103,107,0.15);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(102,103,107,0.15);
	}
}

.icon-box span {
	color: #666;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
}

.icon-box h4 {
	margin: 4px 0;
	line-height: 26px;
}

.icon-box h3 {
	margin: 4px 0;
	line-height: 26px;
	font-size: 22px;
	font-weight: 500;
}

.icon-box p {
	margin: 0;
	margin-top: 5px;
	font-style: 16px;
    font-weight: 300;
	padding: 0 10px;
	color: #808080;
}

/* .icon-box.with-line:before {
	content: "";
	height: 100%;
	width: 1px;
	position: absolute;
	right: 0;
	top: 40px;
    bottom: 40px;
	background: #e9e9e9;
	display: block;
	z-index: 9;
} */

@media (max-width: 992px) {
	.icon-box.with-line:before { display: none; }
}
.dark .icon-box h3 {
    color: #fff;
}
.dark .icon-box p { 
    color: #fff;
    opacity: .7;
}

#footer {
	background-color: #070a0a;
	color: #c0c0c0;
}

#footer p { line-height: 26px; }

.footer-top-section {
	border-bottom: 1px solid #484848;
}

.footer-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-logo {
    width: 270px; 
    margin-bottom: 20px;
}
.footer-logo-2 {
    width: 120px; 
    margin-bottom: 20px;
}
.footer-top-section .footer-logo img { max-height: 46px; }

.footer-rows-container { 
	display: block;
	height: 96px;
	position: relative;
	z-index: 100;
}

.footer-row {
	display: inline-block;
	padding: 0 40px;
	border-right: 1px solid #484848;
	border-left: 1px solid #484848;
	float: left;
	height: 100%;
}

.footer-row-inner {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.footer-row-inner.footer-logo {
	position: relative;
	top: auto;
	transform: translateY(0);
	top: 50%;
	position: relative;
	height: 46px;
 }

.footer-row-inner.footer-logo img {
	position: relative;
	top: 50%;
 }

.footer-row:first-child { padding-left: 0; border-left: none; }
.footer-row:last-child { padding-right: 0; border: none; }

.footer-rows-right .footer-row:first-child {
	padding-left: 40px;
	border-left:  1px solid #484848;
}

.footer-rows-right {
	float: right;
	height: 100%;
}

.language-switcher.bootstrap-select.btn-group .dropdown-menu.inner {
	width: 100%;
}

.language-switcher.bootstrap-select:before { display: none; }

.language-switcher.bootstrap-select .dropdown-menu {
    padding-top: 15px;
    top: calc(100% + 15px);
    width: 160px;
    left: auto;
    right: 0;
}

.language-switcher.bootstrap-select .dropdown-menu:before {
	position: absolute;
	top: -5px;
	content: "";
	right: 20px;
	width: 0; 
	height: 0; 
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #fff;
}

.language-switcher.bootstrap-select.btn-group button {
	height: 44px;
	padding-right: 35px;
	padding-left: 18px;
	color: #fff;
	background-color: #444;
	transition: 0.3s;
	box-shadow: none;
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	height: 44px;
	line-height: 44px;
}

.language-switcher.bootstrap-select.btn-group button:hover {
	background-color: #fff;
	color: #333;
}

.language-switcher.bootstrap-select.btn-group.open button,
.language-switcher.bootstrap-select.btn-group button:hover {
	background-color: #82bfd8;
	color: #fff;
}

.language-switcher.bootstrap-select.btn-group button .caret { transition: 0.3s; }

.language-switcher.bootstrap-select.btn-group.open button .caret,
.language-switcher.bootstrap-select.btn-group button:hover .caret {
	border-top-color: #fff;
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .caret {
	right: 18px;
}

.footer-social-links {
	list-style: none;
	margin: 0 -10px;
	margin-top: 3px;
	padding: 0;
}

.footer-social-links li {
	display: inline-block;
	padding: 0;
	margin: 0;
	float: left;
}

.footer-social-links li a {
	font-size: 20px;
	padding: 0 10px;
	color: #fff;
	display: inline-block;
	transition: 0.3s;
	opacity: 0.5;
	transform: translate3d(0,-0.5px,0);
}

.footer-social-links li a:hover {
	opacity: 1;
}

.footer-middle-section {
	padding: 60px 0;
	position: relative;
	z-index: 10;
}

.footer-links {
	margin-left: 25px;
}
#footer h3,
#footer h2,
.footer-links h3 {
	font-size: 18px;
	color: #fff;
	margin: 0 0 15px 0;
	padding: 0;
	display: block
}

#footer h3 i {
	position: relative;
	margin-right: 5px;
	top: 2px;
	font-size: 20px;
	font-weight: 400 !important;
}
.footer-links ul {
	list-style: none;
	text-align: left;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 0;
	display: block;
}

.footer-links ul li:first-child a { padding-top: 0; }
.footer-links ul li:last-child a { padding-bottom: 0; }

.footer-links ul li a {
	color: #c0c0c0;
	display: block;
	line-height: 25px;
	position: relative;
	z-index: 100;
	padding: 4px 0;
}

.footer-links ul li a span {
	display: inline-block;
	position: relative;
}

.footer-links ul li a:hover {
	color: #fff;
}

.footer-links ul li a span:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #82bfd8;
	height: 2px;
	display: block;
	transition: all 0.25s, opacity 0.2s;
	z-index: -1;
	border-radius: 3px;
	opacity: 0.5;
	width: 0;
}

.footer-links ul li a:hover span:before {
	width: 100%;
	opacity: 1;
}

.newsletter {
	display: flex;
	margin-top: 20px;
}

.newsletter input,
.newsletter button {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.newsletter input {
	background: #262626;
	box-shadow: none;
	margin-bottom: 0;
}

.newsletter input:focus {
	box-shadow: none;
}

.newsletter button {
	background-color: #82bfd8;
	border-radius: 4px;
	height: 48px;
	min-width: 48px;
	max-width: 48px;
	text-align: center;
	line-height: 48px;
	font-size: 18px;
	color: #fff;
	margin-left: 10px;
	transition: 0.3s;
}

.newsletter button:hover {
	background-color: #fff;
	color: #333;
}

.newsletter button i {
	width: 100%;
	line-height: 48px;
}

.footer-bottom-section {
	padding: 25px 0;
	border-top: 1px solid #393939;
	text-align: center;
}

.footer-bottom-section strong {
	color: #fff;
	font-weight: 500;
}


@media (max-width: 992px) {
	#footer h3 { margin-top: 45px; }
	.footer-middle-section { padding-top: 0; padding-bottom: 45px }
}

@media (max-width: 768px) {
	.content-left-offset { padding-left: 15px; }
	.content-right-offset { padding-left: 15px; }

	.footer-rows-container {
		height: auto;
		padding: 20px 0 40px 0;
	}

	.footer-rows-left,
	.footer-rows-right {
	    float: none;
	    height: auto;
	}

	.footer-row-inner.footer-logo img { top: 0; }

	.footer-row-inner {
	    position: relative;
	    top: 0;
	    transform: translateY(0);
	}

	.footer-row-inner.footer-logo {
	    top: 0;
	    position: relative;
	    height: 46px;
	}

	#footer .footer-row {
		padding: 0;
		float: none;
		padding: 20px 0 0 0;
		display: block;
		width: 100%;
		border: none;
	}

	.footer-rows-container .footer-rows-left,
	.footer-rows-container .footer-rows-right{ display: block }

}

.photo-section {
	background-size: cover;
	background-position: 50%;
	display: block;
	position: relative;
}

.photo-section:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #82bfd8;
	opacity: 0.65;
	display: block;
	position: absolute;
	top: 0;
}

.text-content {
	background: transparent;
	padding: 110px 0px;
	font-weight: 500;
	z-index: 99;
	position: relative;
}

.text-content.white-font,
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content.white-font h1,
.text-content.white-font h2,
.text-content.white-font h3,
.text-content.white-font h4,
.text-content.white-font h5 {
	color: #fff;
}

.text-content a.button {
	font-size: 16px;
	box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.text-content p {
	font-size: 18px;
	font-weight: 300;
	line-height: 31px;
	opacity: 0.85;
}

.text-content h2 {
	margin-bottom: 0px;
	line-height: 46px;
	font-size: 34px;
	font-weight: 500;
}

.top-1 { position: relative; top: -1px; }
.top-0 { position: relative; }


@media (max-width: 992px) {
	.text-content {
		padding: 80px 0;
	}

	.text-content h2 {
		margin-bottom: 20px;
		line-height: 40px;
		font-size: 30px;
		font-weight: 500;
	}
}


.intro-banner {
	padding: 45px 0;
	position: relative;
}
@media (min-width: 992px) {
	.intro-banner { 
		height: 895px;
	}
}

.intro-banner.inline-banner {
	border-radius: 10px;
	margin-bottom: 35px;
	padding: 0 0 195px 0;
}
.intro-banner.inline-banner:after, .intro-banner.inline-banner:before, .intro-banner.inline-banner .background-image-container {
	border-radius: 10px;
}
.intro-banner.inline-banner:after, .intro-banner.inline-banner:before {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.7) 85%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 0.9) 100%);
}

.intro-banner.inline-banner .background-image-container { 
	top: 0;
	left: 0;
	height: 100%;
	width: 100%; 
	filter: none; 
}

.advert-hotel-widget {
	position: absolute;
	right: 9px;
	bottom: 10%;
	z-index: 16;
}
.advert-hotel-widget i {
	vertical-align: -1px;
}
.advert-hotel-widget p {
	color: #fff;
}
.ribbon {
	position: absolute;
	top: 10px;
	right: -1px;
	color: #fff;
	background: #f38f1d;
	padding: 8px 12px 5px 9px;
	white-space: nowrap;
	z-index: 9;
	font-size: 17px;
	line-height: 10px;
	position: relative;
	width: 99px;
	float: right;
	margin-right: -12px;
	padding-right: 15px;
	margin-top: -20px;
}

.ribbon strong {
	display: block;
	font-size: 12px;
	font-weight: 300;
}

.ribbon.right-top:after, .ribbon.right-top:before {
	position: absolute;
	left: -10px;
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-top-color: transparent !important;
	border-left-color: transparent !important;
}

.ribbon.right-top:before {
	bottom: 0;
	border-width: 0 0 17px 10px;
	border-right-color: transparent !important;
	border-bottom-color: #f38f1d;
}

.ribbon.right-top:after {
	top: 0;
	border-width: 0 10px 17px 0;
	border-right-color: #f38f1d;
	border-bottom-color: transparent !important;
}

.intro-banner.big-padding {
	padding: 130px 0;
}

.intro-banner .container, .intro-banner .container-fluid {
	z-index: 100;
	position: relative;
}
@media(min-width: 1040px) {
	.intro-banner .container {
		z-index: 100;
		position: relative;
		top: 26vh;
	}
	.intro-banner .container-fluid {
		z-index: 100;
		position: relative;
		top: 26vh;
	}
}

.intro-banner:after,
.intro-banner:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	display: block;
	top: 0;
	left: 0;
	z-index: 15;
	background: transparent; /* rgb(247 247 247 / 70%);*/
}

.intro-banner:after {
    z-index: 5;
    background-color: #fafafa;
}

.intro-banner .background-image-container {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 1468px;
	left: 50%;
	z-index: 10;
	overflow: hidden;
	transform: translateX(-50%);
}

.intro-banner.disable-gradient:before {
	background: #f2f2f2;
	opacity: 0.85;
}

.intro-banner.disable-gradient .background-image-container {
	left: 0;
	width: 100%;
}

.banner-headline {
	display: block;
	max-width: 55%;
	margin: 0 auto;
	text-align: center;
}

	.banner-headline h1,
	.banner-headline h2,
	.banner-headline h3,
	.banner-headline h4 {
		font-size: 28px;
		font-weight: 600;
		color: #fff;
		line-height: 60pt;
	}

	.banner-headline strong {
		font-weight: 300;
		letter-spacing: -0.5px;
		font-size: 60pt;
		letter-spacing: -0.5px;
		font-family: 'Italiana', serif;
	} 

.banner-headline span {
    font-size: 17px;
}

.banner-headline strong.color {
	color: #82bfd8;
}

.banner-headline-alt {
	margin: -10px 0 0 0;
	display: block;
}

.banner-headline-alt h3 {
	font-size: 40px;
	font-weight: 600;
	color: #333;
	line-height: 50px;
}

.banner-headline-alt span {
	font-size: 24px;
	color: #888;
	font-weight: 300;
	line-height: 34px;
	margin-top: 5px;
	display: inline-block;
}
.dark-overlay .banner-headline-alt h3 { color: #fff; }
.dark-overlay .banner-headline-alt span { color: rgba(255,255,255,0.7); }

.intro-banner-search-form {
	display: flex;
	width: 100%;
	background-color: #fff;
	border-radius: 0;
	padding: 8px;
	box-shadow: 0px 2px 27px rgba(0, 0, 0, 0.16);
	max-width: 1390px;
	margin: 0 auto;
}
	.intro-banner-search-form input,
	.intro-banner-search-form input[type="text"],
	.intro-banner-search-form input[type="email"],
	.intro-banner-search-form input[type="number"],
	.intro-banner-search-form textarea,
	.intro-banner-search-form select { 
		font-weight: 300; 
	}
.single-page-header.white .intro-banner-search-form {
	display: flex;
	width: calc( 100% - 80px );
	background-color: #fff;
	border-radius: 0;
	padding: 8px;
	box-shadow: 0px 2px 27px rgba(0, 0, 0, 0.16);
	max-width: 100%;
	margin: 0 40px;
}

.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	overflow: hidden;
	background-size: cover;
	background-position: 50%;
}

.video-container video {
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -10;
	background-size: cover;
	transition: 1s opacity;
	position: absolute;
	z-index: 9;
}

.intro-search-field {
	padding: 0;
	border-right: 1px solid #e4e4e4;
	/* flex: 1; */
	align-items: center;
	display: flex;
	position: relative;
	margin-right: 20px;
}

.intro-search-field .field-title {
	content: attr(data-field-tiele);
	position: absolute;
	top: 0;
	left: 0;
	background: #82bfd8;
	color: #fff;
	border-radius: 4px;
	padding: 5px 10px;
	line-height: 22px;
	transform: translateY(calc(-100% - 15px));
	cursor: default;
}

.intro-banner-search-form .intro-search-field:nth-last-child(2) {
	border-right: none;
}

.intro-search-button {
	margin: 8px;
	margin-left: auto;
	flex: auto;
	flex-grow: 0;
	display: flex;
	align-items: center;
}

	.intro-search-button .button {
		height: 52px;
		line-height: 52px;
		padding: 0 30px;
		font-size: 32px;
		border-color: #665541;
		border-width: 1px;
		border-style: solid;
		padding: 16px 20px;
		line-height: 24px;
		color: #665541;
		background-color: transparent;
		border-radius: 0;
		height: auto;
		line-height: 31px;
		font-weight: 800;
		min-width: 180px;
		font-family: 'Italiana', serif;
		letter-spacing: 1px;
	}
		.intro-search-button .button:hover, .intro-search-button .button:focus {
			color: #fff;
			background-color: #665541;
		}
		.intro-banner-search-form input:focus {
			box-shadow: none;
		}
.intro-banner-search-form input {
	box-shadow: none;
	font-size: 19px;
	margin: 0;
}

.intro-banner-search-form input::placeholder {
	color: #888;
}

.intro-banner-search-form .input-with-icon  {
	align-self: center;
	flex: 1;
}

.intro-banner-search-form  input {
	padding: 10px 15px;
}
.intro-banner-search-form .input-with-icon input {
	padding: 10px 0px 10px 15px;
	padding-left: 43px;
	min-width: 310px;
}

.intro-banner-search-form .input-with-icon i {
	position: absolute;
	right: auto;
	left: 10px;
	top: calc(50% - 1px);
	font-size: 19px;
	color: #434647;
	opacity: .3;
}

.intro-search-field.with-autocomplete .pac-container {
	border: none;
    padding-top: 0;
    z-index: 9;
    left: 0 !important;
    top: 100% !important;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    width: 100% !important;
    margin-top: 0;
    overflow: visible;
}

.intro-search-field.with-autocomplete .pac-container:before {
	content: "";
	position: absolute;
	background-color: #fff;
	width: 100%;
	height: 5px;
	display: block;
	top: -5px;
	left: 0;
}

.intro-search-field .bootstrap-select.btn-group button {
	padding: 0 15px;
	box-shadow: none;
	font-size: 18px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.intro-search-field .field-title {
		transform: translateY(-100%);
		margin-top: -15px;
	}
	.intro-banner-search-form input { line-height: 20px; } 
	.intro-search-field .bootstrap-select.open .dropdown-menu { top: 55px; }
}

.intro-stats {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.intro-stats li {
	flex: auto;
	flex-grow: 0;
	margin-right: 35px;
	padding-right: 35px;
	border-right: 1px solid #e0e0e0;
}

.intro-stats li:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.intro-stats li span,
.intro-stats li strong {
	display: block;
	margin: 0;
	padding: 0;
}

.intro-stats li strong {
	font-weight: 600;
	color: #333;
	font-size: 28px;
	margin-bottom: 2px;
}

.intro-stats li span {
	font-weight: 300;
	color: #888;
	font-size: 18px;
}

.intro-banner.dark-overlay:before {
	background: #333;
	opacity: 0.75;
}

.intro-banner.dark-overlay .background-image-container {
	left: 0;
	width: 100%;
    background-position: 100%;
}

.intro-banner.dark-overlay .intro-stats li span,
.intro-banner.dark-overlay .banner-headline strong,
.intro-banner.dark-overlay .banner-headline h1,
.intro-banner.dark-overlay .banner-headline h2,
.intro-banner.dark-overlay .banner-headline h3,
.intro-banner.dark-overlay .banner-headline h4 {
	color: rgba(255,255,255,0.7);
}

.intro-banner.dark-overlay .intro-stats li strong,
.intro-banner.dark-overlay .banner-headline strong { color: #fff; }
.intro-banner.dark-overlay .intro-banner-search-form { box-shadow: 0 3px 12px rgba(0,0,0,0.2); }
.intro-banner.dark-overlay .intro-stats li { border-right: 1px solid rgba(255,255,255,0.25); }
.intro-banner.dark-overlay .intro-stats li:last-child { border-right: none; }

@media (max-width: 1366px) {
	.banner-headline h1,
	.banner-headline h2,
	.banner-headline h3,
	.banner-headline h4 {
		font-size: 34px;
		line-height: 48px;
		text-align: center;
		text-shadow: 1px 1px 12px #fff;
	}

	.banner-headline strong {
		text-shadow: 1px 1px 12px #fff;
	}
}

@media (max-width: 1240px) {
	.banner-headline {
		max-width: 65%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 992px) {

	.intro-search-field .bootstrap-select.btn-group .dropdown-toggle .filter-option { height: auto; line-height: 20px; }

	.intro-banner { padding: 70px 0; }

		.intro-banner + .section {
			margin-top: 30px!important;
		}
	.banner-headline {
		max-width: 320px px;
		margin: 0 auto;
		display: block;
	}
			.banner-headline h1,
			.banner-headline h2,
			.banner-headline h3,
			.banner-headline h4 {
				font-size: 24px;
				line-height: 25px;
				text-align: center;
			}
		.banner-headline span {
			font-size: 17px;
			line-height: 20px;
			display: inline-block;
			text-align: center;
			margin-top: 15px;
		}
	.intro-banner.dark-overlay .intro-banner-search-form { box-shadow: none }
	.intro-banner.big-padding {  padding: 70px 0; }

	.banner-headline-alt { margin-bottom: 0; }
	.banner-headline-alt h3 { font-size: 36px; line-height: 42px; }
	.banner-headline-alt span { font-size: 22px; line-height: 32px; }

	.intro-banner:after,
	.intro-banner:before {
	    background: rgba(250,250,250,0);
	}

	.intro-banner .background-image-container {
		background-size: cover;
		height: 100%;
		width: 100%;
		left: 0;
	}

	.intro-banner-search-form .intro-search-field .bootstrap-select.btn-group button,
	.intro-banner-search-form input {
	    height: 56px;
	    padding: 15px 22px;
	}

	.intro-banner-search-form .input-with-icon i { left: 17px; }
	.intro-banner-search-form .input-with-icon input { padding-left: 50px; }

	.intro-banner-search-form.margin-top-100,
	.intro-banner-search-form.margin-top-95,
	.intro-banner-search-form.margin-top-90,
	.intro-banner-search-form.margin-top-85 {
		margin-top: 20px !important;
	}

	.intro-banner-search-form {
		flex-direction: column;
		background: transparent;
		box-shadow: none;
		margin-top: 20px;
	}

	.intro-banner-search-form .intro-search-field {
		padding: 0;
		border-radius: 4px;
		box-shadow: 0 2px 12px rgba(0,0,0,0.07);
		margin-top: 20px;
	}
		.intro-banner-search-form .user-menu .header-notifications-trigger,
		.intro-banner-search-form .user-menu .header-notifications-trigger a {
			top: 0;
			transform: none;
			width: 100%;
		}
		.intro-banner-search-form .header-notifications:first-child {
			margin-right: -5px;
			margin: 0;
			width: 100%;
		}
	.intro-search-button .button {
		height: 52px;
		line-height: 52px;
		padding: 0 30px;
		font-size: 18px;
	}
	.intro-search-button .button {
		width: 100%;
	}
	.intro-banner-search-form .intro-search-field.with-label {
		margin-top: 80px;
	}

	.intro-banner-search-form .intro-search-button {
		margin: 0;
		margin-top: 30px;
	}
	.intro-banner-search-form + .intro-cancel-button {
		width: 100%;
	}
	.intro-stats {
		flex-direction: column;
		background: #fff;
		padding: 20px;
		border-radius: 4px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		justify-content: center;
	}

	.intro-stats li {
		display: flex;
		flex-direction: column;
		margin: 0 0 10px 0;
		padding: 0 0 10px 0;
		border: none;
		border-bottom: 1px solid #eee;
		width: 100%;
		align-self: center;
		text-align: center;
	}

	.intro-stats li:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border: none;
	}

}

.bidding-widget .bidding-value {
	font-size: 26px;
	font-weight: 500;
	color: #333;
	margin: 5px 0 20px 0;
}

.bidding-widget .bidding-value {
	font-size: 26px;
	font-weight: 500;
	color: #333;
}

.bidding-widget .button  {
	box-shadow: 0 4px 12px rgba(102,103,107,0.15);
	transition: 0.3s;
	height: 46px;
}

.bidding-widget .button:hover {
	box-shadow: 0 4px 12px rgba(102,103,107,0.25);
	transform: translateY(-2px)
}

.bidding-fields {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 0;
	width: calc(100% + 20px);
	flex-direction: column;
}

.bidding-fields .bidding-field {
	flex: 1;
	margin-right: 20px;
}

	.bidding-fields .bidding-field .note {
		font-weight: 300;
		font-size: 15px;
		line-height: 25px;
		font-family: 'Montserrat';
		padding-top: 40px;
		display: block;
	}

	.bidding-fields .bidding-field label {
		line-height: 48px;
		font-size: 19px;
		font-weight: 400;
	}
 
.qtyButtons {
    display: flex;
    margin: 0;
    background: #fafafa;
    border-radius: 4px; 
    height: 48px;
    padding: 6px;
}

.qtyButtons.with-border {
	border: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.05)
}

	.qtyButtons input {
		outline: 0;
		font-size: 19px;
		font-weight: 600;
		text-align: center;
		width: 50px;
		height: 36px;
		color: #808080;
		line-height: 36px;
		margin: 0 !important;
		padding: 0 5px;
		border: none;
		box-shadow: none;
		display: inline-block;
		flex-grow: 1;
		box-shadow: none !important;
	}

.qtyTitle {
	font-size: 16px;
	font-weight: 600;
	line-height: 36px;
	padding-right: 15px;
	display: block;
	flex: 1;
}

.qtyInc,
.qtyDec {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
    background-color: #f0f0f0;
    color: #808080;
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
	font-family: "Feather-Icons";
    flex: 1;
	min-width: 36px;
	max-width: 36px;
	transition: 0.3s;
}

.qtyInc:before { content: "\e9b1"; }
.qtyDec:before { content: "\e996"; }

	.qtyInc:hover,
	.qtyDec:hover {
		background-color: #333;
		color: #fff;
	}

.qtyTotal {
	background-color: #333;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	font-family: "Open Sans", sans-serif;
	line-height: 18px;
	text-align: center;
	position: relative;
	top: -2px;
	left: 2px;
	height: 18px;
	width: 18px;
}

@media (max-width: 1366px) {
	.qtyInc, .qtyDec { min-width: 34px; max-width: 34px; }
	.bidding-widget .bidding-inner { padding: 27px 32px; }
	.bidding-widget .bidding-headline { padding: 20px 32px; }
}

@media (max-width: 1240px) {
	.qtyInc, .qtyDec { min-width: 36px; max-width: 36px; }

	.bidding-widget .bidding-fields .bidding-field {
	    flex: auto;
	    margin-right: 0;
	    width: 100%;
	}

	.bidding-widget .bidding-fields .bidding-field:first-child { margin-bottom: 20px }
	.bidding-widget .bidding-fields { width: 100%; }

}

select.bs-select-hidden,
select.selectpicker {
	display: none !important;
}

.bootstrap-select .btn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.bootstrap-select > .dropdown-toggle {
	width: 100%;
	padding-right: 25px;
	z-index: 1;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
	color: #808080;
}

.bootstrap-select > select {
	position: absolute !important;
	bottom: 0;
	left: 50%;
	display: block !important;
	width: 0.5px !important;
	height: 100% !important;
	padding: 0 !important;
	opacity: 0 !important;
	border: none;
}
.bootstrap-select > select.mobile-device {
	top: 0;
	left: 0;
	display: block !important;
	width: 100% !important;
	z-index: 2;
}

.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
	border-color: #b94a48;
}

.bootstrap-select.fit-width {
	width: auto !important;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: 100%;
}

.bootstrap-select.form-control {
	margin-bottom: 0;
	padding: 0;
	border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
	width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
	z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
	border-radius: 0;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
	float: none;
	display: flex;
	margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
	float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.checkbox .bootstrap-select.btn-group {
	margin-bottom: 0;
}
.checkbox-lg .bootstrap-select.btn-group.form-control,
.checkbox-sm .bootstrap-select.btn-group.form-control {
	padding: 0;
}
.checkbox-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.checkbox-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
	height: 100%;
	font-size: inherit;
	line-height: inherit;
	border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
	width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
	cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
	outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
	position: absolute;
	height: 0 !important;
	padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
	z-index: 1060;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    overflow: hidden;
    width: 100%;
    line-height: 48px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 90%;
    float: left;
    height: 48px;
    display: block;
}

.bootstrap-select.btn-group .dropdown-menu li.hidden {
    display: none;
}

.language-switcher.bootstrap-select.btn-group .dropdown-toggle .filter-option,
.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    max-width: 100%;
    float: left;
}

.sort-by .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    line-height: 20px;
    height: auto;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -2px;
	vertical-align: middle;
	transition: 0.35s;
}

.bootstrap-select.open .dropdown-toggle .caret {
	transform: rotate(180deg)
}

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
	width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
	min-width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 13px;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
	position: static;
	float: none;
	border: 0;
	padding: 0 5px;
	border-radius: 0;
	box-shadow: none;
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative;
    margin-bottom: 1px;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled {
	opacity: 0.75;
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
	color: #fff;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
	cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
	cursor: pointer;
	-webkit-user-select: none;
	  -moz-user-select: none;
	   -ms-user-select: none;
	       user-select: none;
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
	display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
	padding-left: 7px;
	opacity: 0.8;
}

.bootstrap-select.btn-group .dropdown-menu .notify {
	position: absolute;
	bottom: 5px;
	width: calc(100% - 20px);
	margin: 0;
	min-height: 26px;
	padding: 3px 5px;
	pointer-events: none;
	padding: 5px 10px;
	background: #333;
	color: #fff;
	margin: 5px;
	margin-bottom: 5px;
	border-radius: 4px;
	white-space: nowrap;
	font-size: 14px;
	border: none;
}

.bootstrap-select.btn-group .no-results {
	padding: 5px 10px;
	background: #f6f6f6;
	margin: 5px 0;
	margin-bottom: 0;
	border-radius: 4px;
	white-space: nowrap;
	font-size: 14px;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
	position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
	position: static;
	top: auto;
	margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
	white-space: normal;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
	z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
	content: '';
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid rgba(204, 204, 204, 0.2);
	position: absolute;
	bottom: -4px;
	left: 9px;
	display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid white;
	position: absolute;
	bottom: -4px;
	left: 10px;
	display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
	bottom: auto;
	top: -3px;
	border-top: 7px solid rgba(204, 204, 204, 0.2);
	border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
	bottom: auto;
	top: -3px;
	border-top: 6px solid white;
	border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
	right: 12px;
	left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
	right: 13px;
	left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
	display: block;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
	padding: 0 5px;
}

.bs-actionsbox {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 5px;
	margin-bottom: 10px;
	margin-top: -5px;
}

.bs-actionsbox div { display: flex; }

.bootstrap-select.btn-group .bs-actionsbox div button {
	flex: 1;
    background: #f6f6f6;
    box-shadow: none;
    padding: 5px;
    height: 36px;
    font-size: 14px;
    color: #777;
    transition: 0.3s;
}

.bootstrap-select.btn-group .bs-actionsbox div button:first-child {
	border-radius: 4px 0 0 4px;
	background-color: #f0f0f0;
}

.bootstrap-select.btn-group .bs-actionsbox div button:last-child {
	border-radius: 0 4px 4px 0;
}

.bootstrap-select.btn-group .bs-actionsbox div button:hover {
    background: #82bfd8;
    color: #fff;
}

.bs-actionsbox .btn-group button {
	width: 50%;
}

.bs-donebutton {
	float: left;
	width: 100%;
	-webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
	       box-sizing: border-box;
}

.bs-donebutton .btn-group button {
	width: 100%;
}

.bs-searchbox + .bs-actionsbox {
	padding: 0;
}

.bs-searchbox .form-control:focus,
.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none;
    box-shadow: none;
    background: #f4f4f4;
    margin: -5px 0 10px 0;
    height: 38px;
    line-height: 38px;
    padding: 10px;
}

.bs-searchbox {
	position: relative;
}

.bs-searchbox:after {
	font-family: "Material-Icons";
	content: "\e982";
	font-size: 20px;
	width: 20px;
	height: 20px;
	line-height: 0;
	display: inline-block;
	position: absolute;
	margin: 0;
	color: #a0a0a0;
	right: 15px;
	top: 18px;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid #aaa;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	padding: 10px 5px;
	margin: -4px 0 0 0;
	font-size: 15px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	border: none;
	border-radius: 4px;
	box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.12);
}

.dropdown-menu.pull-right {
	right: 0;
	left: auto;
}
.dropdown-menu .divider {
	display: none;
}
.dropdown-menu > li > a {
	display: block;
	padding: 7px 10px;
	padding-right: 35px;
	clear: both;
	font-weight: normal;
	line-height: 21px;
	color: #808080;
	border-radius: 4px;
}


.bootstrap-select:before {
	content: "";
	position: absolute;
	z-index: 2100;
	bottom: 0px;
	left: 0;
	height: 8px;
	width: 100%;
	background-color: #fff;
	display: block;
	opacity: 0;
	pointer-events: none;
	transition: 0.4s;
}

.bootstrap-select.open:before {
	opacity: 1;
}


.dropdown-menu > li > a:hover,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover {
	color: #82bfd8;
	text-decoration: none;
	background-color: rgba(102,103,107,0.07);
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover{
  color: #777;
}

.dropdown-menu > .disabled > a:hover {
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
	background-image: none;
}

.dropdown-menu.inner::-webkit-scrollbar { width: 5px; }

.dropdown-menu.inner::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.0);
    border-radius: 12px;
}

.dropdown-menu.inner::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-color: #d8d8d8;
}

.dropdown-menu.inner::-webkit-scrollbar-thumb:hover {
    border-radius: 12px;
    background-color: #c8c8c8;
}


.bootstrap-select .dropdown-menu {
	opacity: 0;
	transition: 0.4s;
	display: block;
	pointer-events: none;
	visibility: hidden;
	cursor: default;
}

.bootstrap-select.open .dropdown-menu {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}

.open > a {
	outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
	right: auto;
	left: 0;
}

.dropdown-header {
	display: block;
	padding: 7px 10px;
	line-height: 20px;
	white-space: nowrap;
	background: #f6f6f6;
	color: #777;
	border-radius: 4px;
	margin-bottom: 1px;
}

.dropdown-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 990;
}

.pull-right > .dropdown-menu {
	right: 0;
	left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	content: "";
	border-top: 0;
	border-bottom: 4px dashed;
	border-bottom: 4px solid \9;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: 100%;
  bottom: auto;
  margin-bottom: 2px;
}

@media (min-width: 767px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}

.bootstrap-select.btn-group {
	position: relative;
}

	.bootstrap-select.btn-group button {
		position: relative;
		display: inline-block;
		height: 48px;
		line-height: 0;
		padding: 0 20px;
		margin: 0;
		outline: none;
		font-size: 13px;
		color: #808080;
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
		display: block;
		background-color: #fff;
		font-weight: 500;
		opacity: 1;
		border-radius: 4px;
		border: none;
		box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.12);
	}

.hide-tick .check-mark { display: none !important; }
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
	position: absolute;
	display: inline-block;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	line-height: 0;
	width: 20px;
	height: 20px;
	text-align: center;
}

.bootstrap-select.btn-group .dropdown-menu li span.check-mark:before {
	font-family: "Feather-Icons";
	content: "\e92b";
	font-size: 18px;
	transition: all 0.3s;
	display: inline-block;
	top: 50%;
	right: 0;
	position: absolute;
	margin: 0;
	opacity: 0;
	transform: scale(0.5);
}

.bootstrap-select.btn-group .dropdown-menu li.selected span.check-mark:before {
	opacity: 1;
	transform: scale(1);
	transition: all 0.35s cubic-bezier(0.3,-.41,.19,2), opacity 0.3s;
}

.bootstrap-select .dropdown-menu li.selected a span.check-mark:before,
.bootstrap-select .dropdown-menu li.selected:hover a span.check-mark:before {
	color: #82bfd8;
}

.bootstrap-select .glyphicon:not(.check-mark) {
	font-size: 17px;
	line-height: 0;
	position: relative;
	top: 1px;
	margin-right: 3px;
}

.bootstrap-select .filter-option .glyphicon {
	position: relative;
	top: 1px;
}

.with-border .dropdown-menu,
.with-border.bootstrap-select.btn-group button {
	border: 1px solid #e0e0e0;
	box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.05);
}

.with-border.bootstrap-select:before {
	width: calc(100% - 2px);
	left: 1px;
}


.full-page-container {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.full-page-sidebar {
	flex: 0 0 360px;
	background-color: #fafafa;
	position: relative;
}

.full-page-sidebar .full-page-sidebar-inner {
	overflow: auto;
	height: 100%;
}

.full-page-sidebar .sidebar-container {
	padding: 40px;
}

.full-page-sidebar .simplebar-scrollbar {
	width: 5px;
}

.full-page-sidebar .sidebar-widget:last-of-type {
	margin-bottom: 0;
}

.full-page-content-container {
	flex: 1;
	background-color: #fff;
	background: #F7F7F7;
	padding: 0;
	overflow: auto;
}

.full-page-content-inner {
	padding: 0 40px;
	padding-bottom: 0;
	max-width: 100%;
	margin: 0 auto;
	margin: 0 40px;
}

.full-page-content-inner .grid-layout {
	width: calc(100% + 30px)
}

.full-page-content-inner .grid-layout .hotel-listing {
    margin: 0 30px 30px 0;
    width: calc(100% * (1/3) - 30px);
}

.grid-layout {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 30px);
}

.grid-layout .hotel-listing {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 30px 30px 0;
	width: calc(100% * (1/2) - 30px);
	flex-direction: column;
}

.grid-layout .hotel-listing-details {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap; 
	padding: 0;
	flex-direction: column; 
}


@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.tasks-list-container.tasks-grid-layout .task-listing .task-listing-details,
	.grid-layout .hotel-listing-details { flex-basis: 100px; }
	.tasks-list-container.tasks-grid-layout .task-listing-bid { flex-basis: 100px; }
}

.sidebar-container { margin-bottom: 40px; }
.full-page-container .sidebar-container { 	
	margin-bottom: 0px;
	background-color: #fff;
	margin: 40px 40px 20px 40px;
	padding: 24px;
	border-radius: 4px;
	box-shadow: 0 0 3px -2px #333;		
 }
 .sidebar-search-button-container {
    align-items: center;
    display: flex;
    justify-content: center;
 }
 .sidebar-search-button-container button {
	min-width: 70%;
 }
.sidebar-widget input { margin-bottom: 0; }

.sidebar-widget {
	margin-bottom: 50px;
	display: block;
}

.sidebar-widget h3 {
	font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
}

.grid-layout .hotel-listing-footer {
	flex-grow: 0;
	padding: 20px 30px;
}

.grid-layout .hotel-listing h3.hotel-listing-title {
	font-size: 37px;
	line-height: 28px;
	font-weight: 600;
	font-family: 'Italiana', serif;
	letter-spacing: 0.5px;
	padding: 10px 0 0;
}

.grid-layout .hotel-listing h3.hotel-listing-title small {
	font-size: 50%;
	font-family: 'Montserrat';
	font-weight: 300;
}

.grid-layout .hotel-listing-footer .bookmark-icon {
	top: 0;
	right: 25px;
	transform: translateY(-50%) scale(0.96);
}

.grid-layout .hotel-listing .hotel-listing-location-logo {
	max-width: none;
	margin-right: 24px;
	top: 1px;
	flex: none;
	width: 100%;
}

.full-page-map-container {
	flex: auto;
	position: relative;
	background-color: #e5e3df;
	height: 0;
}

.full-page-map-container.active { 
	height: 40vh;
}

.full-page-map-container #map {
	position: relative;
	z-index: 30;
}

/*.full-page-sidebar.hidden-sidebar {
	visibility: hidden;
	transition: 0.4s;
	position: relative;
	opacity: 0;
	max-width: 0;
}
*/
.full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner { width: 360px; }

.full-page-container .full-page-sidebar.hidden-sidebar.enabled-sidebar {
	visibility: visible;
	opacity: 1;
	max-width: 360px;
}

.enable-filters-button {
	position: relative;
	left: 48px;
	top: 0px;
	z-index: 100;
	background-color: #fff;
	color: #333;
	border-radius: 0 4px 4px 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	height: 48px;
	line-height: 48px;
	padding: 0;
	transition: 0.3s;
	min-width: 126px;
	text-align: center;
}

.enable-filters-button span {
	position: relative;
	padding: 0 15px;
	background-color: #82bfd8;
	color: #fff;
	width: 100%;
	z-index: 100;
	border-radius: 0 4px 4px 0;
	transition: 0.3s;
}

.filter-button-container {
	position: absolute;
	left: 40px;
	top: 20px;
	width: calc(100% - 40px);
	overflow-x: hidden;
	padding: 20px 0;
}

.filter-button-tooltip {
	position: absolute;
	width: auto;
	left: 15px;
	top: 24px;
	z-index: 100;
	border-radius: 4px;
	width: auto;
	animation: tooltip-bounce 2s infinite;
	margin-left: 15px;
	white-space: nowrap;
	opacity: 0;
	overflow: visible;
	transition: opacity 0.3s;
	pointer-events: none;
	padding: 0 20px;
	background-color: #fff;
	color: #555;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	font-size: 15.7px;
	line-height: 48px;
	top: 20px;
}

.filter-button-tooltip.tooltip-visible { opacity: 1; }

.filter-button-tooltip:before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	top: calc(50% - 3px);
	content: "";
	left: -3px;
	box-sizing: border-box;
	border: 5px solid black;
	border-color: transparent transparent #fff #fff;
	transform-origin: 0 0;
	transform: rotate(45deg) translateY(-50%);
	box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.04);
}

@keyframes tooltip-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
	40% { transform: translateX(14px); } 
	60% { transform: translateX(7px); }
}

.enable-filters-button:hover i,
.enable-filters-button.active i,
.enable-filters-button:hover span,
.enable-filters-button.active span {
	background-color: #333;
}

.enable-filters-button:hover i:after,
.enable-filters-button:hover i:before,
.enable-filters-button.active i:after,
.enable-filters-button.active i:before {
	background-color: rgba(0,0,0,0.25);
}

.enable-filters-button i {
	position: absolute;
	z-index: 90;
	left: -48px;
	height: 100%;
	font-size: 20px;
	background-color: #82bfd8;
	color: #fff;
	line-height: 48px;
	text-align: center;
	width: 48px;
	border-radius: 4px 0 0 4px;
	font-style: normal;
	font-family: "Feather-Icons";
	transition: 0.3s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.enable-filters-button i:after,
.enable-filters-button i:before {
	position: absolute;
	left: 0;
	right: 0;
	transition: 0.3s;
	border-radius: 4px 0 0 4px;
	background-color: rgba(0,0,0,0.1);
}

.enable-filters-button i:after {
	content: "\e9d1";
	opacity: 1;
}

.enable-filters-button.active i:after {
	opacity: 0;
}

.enable-filters-button i:before {
	content: "\ea02";
	opacity: 0;
}
.enable-filters-button.active i:before {
	opacity: 1;
}

.enable-filters-button span.show-text,
.enable-filters-button.active span.hide-text {
	display: inline-block;
}

.enable-filters-button.active span.show-text,
.enable-filters-button span.hide-text {
	display: none;
}

.location-field-on-map {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 280px;
	max-width: 40%;
	z-index: 100;
}

.location-field-on-map input {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
	.full-page-content-inner .grid-layout .hotel-listing,
	.grid-layout .hotel-listing {
		margin: 0 0 30px 0;
		width: 100%;
	}
	.grid-layout,
	.full-page-content-inner .grid-layout { width:100%; }

	.full-page-content-container .simplebar-content {overflow-x: hidden !important;}
	.full-page-container.with-map .full-page-content-inner .grid-layout .hotel-listing { width: 100%; }
}

@media (max-width: 3860px) {
	.full-page-content-inner .grid-layout .hotel-listing {
	    width: calc(100% * (1/4) - 30px);
	}

	/* Full Page With Map */
	.full-page-container.with-map .full-page-content-inner .grid-layout .hotel-listing {
	    width: calc(100% * (1/3) - 30px);
	}
}

@media (max-width: 2560px) {
	.full-page-content-inner .grid-layout .hotel-listing {
	    width: calc(100% * (1/4) - 30px);
	}

	/* Full Page With Map */
	.full-page-container.with-map .full-page-content-inner .grid-layout .hotel-listing {
	    width: calc(100% * (1/2) - 30px);
	}
}

@media (max-width: 1920px) {
	.full-page-content-inner .grid-layout .hotel-listing {
	    width: calc(100% * (1/3) - 30px);
	}

	/* Full Page With Map */
	.full-page-container.with-map .full-page-sidebar { flex: 0 0 340px }
	.full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner { width: 340px; }
	.full-page-container.with-map .full-page-content-inner .grid-layout .hotel-listing {
		width: calc(100% - 30px);
	}
}

@media (max-width: 1600px) {
	.full-page-content-inner .grid-layout .hotel-listing {
	    width: calc(100% * (1/2) - 30px);
	}

	.full-page-sidebar {
		flex: 0 0 340px;
	}
	
	.full-page-container.with-map .full-page-sidebar { flex: 0 0 320px }
	.full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner { width: 320px; }
	.full-page-container.with-map .full-page-content-inner .grid-layout .hotel-listing {
	    width: calc(100% - 30px);
	}
}

@media (max-width: 1365px) {
	.location-field-on-map {
		left: 0px;
		right: auto;
		width: calc(100% - 80px);
		max-width: calc(100% - 80px);
		margin: 0 40px;
	}

	/* Notify Box Responsive Styles*/
	.full-page-container .notify-box { margin-bottom: 0; }
	.full-page-container .notify-box .sort-by {
		/*position: absolute;
		margin-top: 40px;
		left: 0;*/
	}
	.full-page-container .notify-box .sort-by .bootstrap-select .dropdown-menu { left: 0; right: auto; }
}

/*a.filterButton {
	display: none;
}*/


.full-page-content-inner .grid-layout .hotel-listing {
	width: calc(100% * (1/2) - 30px);
}

.full-page-sidebar {
	flex: 0 0 340px;
}

/* Important Responsive Styles */
.full-page-map-container {
	order: -1;
	width: 100%;
	height: 0; 
	top: 0;
}

	.full-page-map-container.active {
		order: -1;
		width: 100%;
		height: 75vh;
		top: 0;
	}

.full-page-container.with-map {
	padding-top: 300px;
	height: auto !important;
	width: 100%;
	position: relative;
}

	.full-page-container.with-map .full-page-sidebar {
		max-width: 100%;
		visibility: visible;
		opacity: 1
	}

		.full-page-container .full-page-sidebar.hidden-sidebar {
			visibility: hidden;
			transition: 0.4s;
			position: relative;
			opacity: 0;
			max-width: 0;
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			z-index: 9999;
		}

			.full-page-container.with-map .full-page-sidebar.hidden-sidebar.enabled-sidebar {
				max-width: 360px;
				visibility: visible;
				opacity: 1
			}



	a.button.filterButton:focus, a.button.filterButton:not([href]):not([tabindex]):hover, a.button.filterButton:not([href]):not([tabindex]):focus {
		color: #fff;
	}

.full-page-container .sidebar-container {
	margin: 0;
	padding: 24px;
	overflow: scroll;
}



.filter-button-container {
	display: none;
}

.sidebar-search-button-container {
	padding-top: 20px !important;
	margin-bottom: 20px !important;
}

.full-page-container.with-map .full-page-sidebar .full-page-sidebar-inner {
	position: relative;
	width: 100%;
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100% !important;
}

.full-page-container.with-map .full-page-content-container {
	flex: 1;
}

.full-page-container,
.full-page-sidebar-inner,
.full-page-content-container,
.full-page-container .full-page-sidebar {
	height: auto !important;
}

	.full-page-container .simplebar-track {
		display: none;
	}


@media (max-width: 1099px) {
	.full-page-container.with-map .full-page-sidebar.hidden-sidebar.enabled-sidebar {
		max-width: 100%;
		visibility: visible;
		opacity: 1
	}
	a.button.filterButton {
		position: fixed;
		display: block;
		bottom: 10px;
		top: auto;
		z-index: 99999;
		left: 15%;
		right: 15%;
		justify-content: center;
		text-align: center;
		color: #fff;
		background-color: #333;
		margin: 0 20px;
	}
}

@media (max-width: 992px) {
	.location-field-on-map {
    	width: calc(100% - 50px);
    	max-width: calc(100% - 50px);
    	margin: 0 25px;
    	top: 25px;
	}

	.sidebar-search-button-container,
	.full-page-sidebar .sidebar-container,
	.full-page-content-inner { padding: 35px; }
	.full-page-content-inner { padding-bottom: 0; }

	.full-page-content-inner .grid-layout .hotel-listing { width: calc(100% - 30px); }
	.full-page-sidebar { flex: 0 0 320px; }

	.full-page-sidebar-inner,
	.full-page-content-container,
	.full-page-container .full-page-sidebar {
		height: auto !important;
	}
}

@media (max-width: 768px) {
	.location-field-on-map {
    	width: calc(100% - 30px);
    	max-width: calc(100% - 30px);
    	margin: 0 15px;
	}

	.sidebar-search-button-container,
	.full-page-sidebar .sidebar-container,
	.full-page-content-inner { padding: 40px 30px; }
	.full-page-content-inner { padding-bottom: 0; }

	.full-page-content-inner .grid-layout .hotel-listing { width: calc(100% - 30px); }

	.full-page-sidebar {
		flex: 1;
		width: 100%;
	}

	.full-page-container {
		display: block;
	    width: 100%;
	    flex-wrap: wrap;
	    height: auto;
	}

	.small-footer { display: block; text-align: center; }
	.small-footer .footer-social-links {
		float: none;
		left: -10px;
		margin-top: 10px;
	}

}

.notify-box {
	display: block;
	width: 100%;
	background-color: #f2f2f2;
	border-radius: 0;
	padding: 15px 25px;
	position: relative;
	line-height: 28px;
	min-height: 59px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.notify-box label {
	margin-bottom: 0;
	cursor: pointer;
}

.notify-box .switch-button {
	margin-right: 10px;
}

.sort-by .bootstrap-select {
	position: relative;
	right: 0;
	top: 0;
}

.sort-by .dropdown-menu {
	box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.14);
}

.sort-by .bootstrap-select.btn-group button {
	flex: 1;
	position: relative;
	right: 0;
	top: 4px;
	font-weight: 600;
	margin-left: 10px;
	width: auto;
	padding: 0;
	padding-right: 12px;
	background-color: transparent;
	box-shadow: none;
	height: 20px;
	color: #333;
}

.sort-by .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: auto;
}

.sort-by .bootstrap-select.btn-group .dropdown-toggle .caret {
	right: 0;
}

.sort-by .bootstrap-select .dropdown-menu {
	padding-top: 15px;
	top: 40px;
	right: 0;
	left: auto;
	position: absolute;
	min-width: 160px !important;
	flex: 1;
}

.sort-by .bootstrap-select.open:before { display: none; }

.sort-by {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
    position: relative;
    float: right;
}

@media (max-width: 768px) {
	.notify-box { margin-bottom: 90px; }
	.notify-box .sort-by {
		position: absolute;
		margin-top: 35px;
		left: 0;
	}
	.notify-box .sort-by .bootstrap-select .dropdown-menu { left: 0; right: auto; }
}

.switches-list .switch-container {
	width: 100%
}

.switches-list .switch-container:last-child label {
	margin-bottom: 0;
}

.switch-container {
	display: inline-block;
	cursor: pointer;
}

label.switch { position: relative; }

.switches-list .switch-container label {
	cursor: pointer;
	position: relative;
	padding-left: 45px;
	line-height: 26px;
}

.switch-button {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 20px;
	cursor: pointer;
	background-color: #ccc;
	border-radius: 50px;
	transition: 0.4s;
	margin: 0 7px 0 0;
	top: 4px;
	position: absolute;
	top: 2px;
	left: 0;
}

.notify-box .switch-button {
    top: 0;
}

.notify-box .switch-container {
	top: 5px;
	position: relative;
}

.switch span.switch-text {
	display: block;
	padding-left: 48px;
	font-size: 13px;
	line-height: 22px;
	color: #666;
}

.switch input {display:none;}

.switch.interactive-effect input:checked + .switch-button:before {
	animation: switch-shadow-color 0.4s;
}

.switch.interactive-effect .switch-button:before {
	animation: switch-shadow 0.4s;
}

@keyframes switch-shadow {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
  100% { box-shadow: 0 0 0px 10px rgba(0,0,0,0); }
}

@keyframes switch-shadow-color {
  0% { box-shadow: 0 0 0 0 rgba(102,103,107,0.6); }
  100% { box-shadow: 0 0 0px 10px rgba(0,0,0,0); }
}

.switch-button:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	bottom: 2px;
	left: 2px;
	background-color: white;
	transition: 0.4s, box-shadow 0.3s;
	border-radius: 50px;
}

input:checked + .switch-button {
	background-color: #82bfd8;
}

input:checked + .switch-button:before {
	transform: translateX(14px);
}

.infoBox { 
	border-radius: 4px;
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 30px);
	line-height: 24px;
}

.infoBox .hotel-listing {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	box-shadow: none;
	width: 100%;
}

.infoBox .hotel-listing .hotel-listing-description {
	padding-top: 0;
}

.infoBox .hotel-listing:hover {
	transform: none;
}

.infoBox .hotel-listing-details {
	flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 25px;
}

.infoBox .hotel-listing h4.hotel-listing-location {
	font-size: 14px;
	position: relative;
	top: 0px;
}

.infoBox .hotel-listing .verified-badge {
	transform: scale(0.85);
	right: -7px;
	bottom: -7px;
}

.infoBox .hotel-listing .not-verified-badge {
	display: none;
}

.infoBox .hotel-listing-footer {
	flex-grow: 0;
	padding: 15px 25px;
	font-size: 16px;
	display: none;
}

.infoBox .hotel-listing h3.hotel-listing-title {
	font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

.infoBox .hotel-listing .hotel-listing-location-logo {
	max-width: 126px;
	margin: 5px 18px 5px 0;
	top: 0;
	flex: 0 0 126px;
}

.infoBox .hotel-listing .hotel-listing-location-logo img { max-width: 126px; }


.map-box {
	background-color: #fff;
	margin-bottom: 20px;
	border-radius: 4px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
	position: relative;
	width: 100%;
}

.map-box .listing-img-container img {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.map-box h4 {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.map-box h4 a {
	padding: 0 0 2px 0;
	font-size: 17px;
	line-height: 25px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	display: inline-block;
}

.listing-img-container {
	position: relative;
	height: 100%;
	display: block;
}

.map-box h4 a:hover { color: #82bfd8; }

.map-box p {
	padding: 0;
	line-height: 25px;
	margin: 2px 0 0 0;
	font-size: 14px;
}

.map-box ul.listing-details {
	padding: 0;
	font-size: 14px;
	display: none;
}

.map-box .listing-title {
	padding: 16px 22px;
}


.map-box .listing-img-content {
	padding: 18px 22px;
}


.map-box .listing-img-content span {
	font-size: 21px;
}

.map-box .listing-img-content .listing-price i {
    font-size: 15px;
    margin: -7px 0 0 0;
}


.infoBox > img {
	position: absolute !important;
	right: 0px;
	top: 0px;
}

.map-box .listing-img-container::before {
    content:"";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
	background: linear-gradient(to top, rgba(35,35,37,0.85) 0%, rgba(35,35,37,0.40) 35%, rgba(22,22,23,0) 60%, rgba(0,0,0,0) 100%);
	background-color: rgba(35,35,37,0.2);
}

.map-box .listing-item-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 0 24px;
    width: 100%;
    z-index: 50;
    box-sizing: border-box;
}

.map-box .listing-item-content h3 {
    color: #fff;
    font-size: 18px;
    padding: 0 0 2px 0;
    font-weight: 500;
    margin: 0;
    line-height: 27px;
}

.map-box .listing-item-content span {
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
    color: rgba(255,255,255,0.7);
}

.infoBox-close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-block;
	z-index: 999;
	text-align: center;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	height: 27px;
	width: 27px;
	line-height: 27px;
	background-color: #f0f0f0;
	color: #666;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-radius: 4px;
}

.infoBox-close i {
	position: relative;
	top: 2px;
	left: -0.5px;
}

.infoBox-close:hover {
	color: #fff;
	background-color: #82bfd8;
}


.map-box-icon {
	height: 38px;
	width: 38px;
	position: absolute;
	bottom:0;
	right:0;
	background-color: #3685cf;
	display: block;
	color: #fff;
	font-size: 12px;
	z-index: 101;
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
	opacity:0;
	visibility: hidden;
}

.map-box-icon:before {
	content: "\f064";
	font-family: "FontAwesome";
	position: relative;
	top: 7px;
	display: block;
}

.map-box-image:hover .map-box-icon {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateX(0);
}

.map-box-image {
	position: relative;
	overflow: hidden;
	display: block;
}

.infoBox {
	animation: infoBoxAnimation 0.5s;
}

@keyframes infoBoxAnimation {
    from {opacity: 0; transform: translateY(-10px); }
    to {opacity: 1; transform: translateY(0px); }
}

.infoBox .star-rating span { margin-right: 3px; }

.infoBox .rating-counter {
	position: relative;
	top: -1px;
}

.infoBox:after {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-top: 16px solid #fff;
}

#map {
	height: 100%;
	width: 100%;
	margin: 0;
	z-index: 990;
}

#map-container {
	position: relative;
	top: 0;
	left: 0;
	height: 520px;
	width: 100%;
	z-index: 990;
	margin-bottom: 60px;
}

.gmnoprint { margin: 10px; }

.homepage-map {
    height: 560px;
    margin-bottom: 0;
    position: relative;
  
}

.search-bar-on-map {
	position: absolute;
	bottom: 50px;
	z-index: 1000;
	margin: 0 auto;
	left: 0;
	right: 0;
}

/* Cluster styles */
.cluster img { display:none }

.cluster-visible {
	text-align: center;
	font-size: 14px !important;
	color: #fff !important;
	font-weight: 700;
	border-radius: 50%;
	width: 33px !important;
	height: 33px !important;
	line-height: 33px !important;
	background-color: #82bfd8;
	animation: clusterAnimation 2.5s infinite;
}

@keyframes clusterAnimation {
	0%,100% {
		box-shadow: 0 0 0 6px rgba(102,103,107,0.15);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(102,103,107,0.15);
	}
}

.map-marker-container { position: absolute; }

.marker-container {
	position: relative;
	margin: -9px 0 0 -9px;
	width: 18px;
	height: 18px;
	z-index: 1;
	border-radius: 50%;
	cursor: pointer;
	top: 0;
	background-color: #82bfd8;
	animation: markerAnimation 2.5s infinite;
	transition: 0.4s;
}

@keyframes markerAnimation {
	0%,100% {
		box-shadow: 0 0 0 6px rgba(102,103,107,0.15);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(102,103,107,0.15);
	}
}


.map-marker-container.clicked .marker-container {
	transform: scale(1.3);
}

.marker-container:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: transparent;
	border-radius: 50%;
	transform: scale(2);
	opacity: 0;
}

.custom-zoom-in,
.custom-zoom-out {
	background-color: #fff;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	margin: 5px 15px;
	transition: 0.3s;
	box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
	text-align: center;
	font-size: 18px;
	height: 34px;
	width: 34px;
}

.custom-zoom-in:hover,
.custom-zoom-out:hover {
	background-color: #82bfd8;
	color: #fff;
}

.custom-zoom-in:before,
.custom-zoom-out:before  {
	font-family: "Feather-Icons";
	width: 100%;
	line-height: 35px;
}

.zoomControlWrapper {
	position: absolute;
	left: initial;
	right: 0;
	width: 70px;
	margin-right: 20px;
}

.custom-zoom-in:before { content: "\e9b1"; }
.custom-zoom-out:before  { content: "\e996"; }

#streetView,
#geoLocation,
#scrollEnabling {
	background-color: #fff;
	color: #333;
	cursor: pointer;
	border-radius: 4px;
	margin: 5px 15px;
	transition: 0.3s;
	box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 10px;
	left: 5px;
	z-index: 99;
	font-size: 14px;
	line-height: 21px;
	padding: 8px 14px;
	font-weight: 500;
}

#geoLocation:hover,
#streetView:hover,
#scrollEnabling:hover,
#scrollEnabling.enabled {
	background-color: #82bfd8;
	color: #fff;
}

#streetView:before {
	content: "\e974";
	font-family: "Material-Icons";
	font-size: 18px;
	top: 3px;
	position: relative;
	margin-right: 7px;
	margin-left: -1px;
	line-height: 0;
}

.tags-container { display: block; }

.tags-container input[type="checkbox"] {
  display: none;
}

.tags-container input[type="checkbox"] + label {
	transition: 0.3s;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #eee;
    color: #777;
    display: inline-block;
    padding: 4px 8px;
    margin: 0;
    line-height: 21px;
}

.tags-container input[type="checkbox"] + label:hover {
	background-color: #e8e8e8;
}

.tags-container input[type="checkbox"]:checked + label {
	background-color: #82bfd8;
	color: #fff;
	transition: 0.3s;
}

.tags-container input[type="checkbox"] + label:before {
	font-family: "Feather-Icons";
	content: "\e92b";
	font-size: 18px;
	transition: all 0.35s cubic-bezier(0.5,-.41,.19,2), max-width 0.3s, margin 0.3s;
	max-width: 0;
	display: inline-block;
	position: relative;
	top: 3px;
	margin: 0;
	opacity: 0;
	color: #fff;
	line-height: 0;
	transform: scale(0.5);
}

.tags-container input[type="checkbox"]:checked + label:before {
	max-width: 30px;
	opacity: 1;
	transform: scale(1);
	margin: 0 5px 0 -2px;
}

.tags-container .tag {
	display: inline-block;
	float: left;
	margin: 0 7px 7px 0;
	overflow: hidden;
}

input.range-slider,
input.default-slider { display: none; }

.slider {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.slider.slider-horizontal {
	width: calc(100% - 20px);
	margin-left: 11px;
	height: 20px;
}

.slider.slider-horizontal .slider-track {
    height: 3px;
    width: calc(100% + 18px);
    margin-top: -2px;
    top: 50%;
    left: -9px;
}

.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
	height: 100%;
	top: 0;
	bottom: 0;
}

.slider.slider-horizontal .slider-handle {
	margin-left: -11px;
}

.slider.slider-horizontal .slider-tick-label-container {
	white-space: nowrap;
	margin-top: 20px;
}

.slider.slider-horizontal .tooltip {
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	position: absolute;
}

.slider input { display: none; }

.slider .tooltip.top { margin-top: -40px; }

.slider .tooltip-inner {
	white-space: nowrap;
	max-width: none;
	background-color: #333;
	padding: 4px 12px;
	line-height: 21px;
	color: #fff;
	font-size: 14px;
	border-radius: 4px;
}

.slider .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
}

.tooltip.tooltip-min,
.tooltip.tooltip-max { display: none; }

.slider .hide { display: none; }

.slider-track {
	position: absolute;
	cursor: pointer;
	border-radius: 4px;
	background-color: #e0e0e0;
}

.slider-selection {
	position: absolute;
	background-color: #82bfd8;
	box-sizing: border-box;
	border-radius: 4px;
}

.slider-track-low,
.slider-track-high {
	position: absolute;
	background: transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
}

.slider-handle {
	position: absolute;
	top: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #82bfd8;
	cursor: pointer;
	z-index: 20;
	border-radius: 50%;
}

.slider-handle:after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	border-radius: 50%;
	z-index: 30;
	display: block;
	box-shadow: 0 0 0px 6px rgba(102,103,107,.12);
	transition: 0.2s;
}

.slider-handle:hover:after {
	box-shadow: 0 0 0px 8px rgba(102,103,107,.12);
}

.slider-handle.custom {
	position: absolute;
	top: -5px;
	width: 40px;
	height: 29px;
	border: none;
	cursor: pointer;
	z-index: 20;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	text-align: center;
}

.slider-handle.custom:after { display: none; }

.slider-handle.custom:before {
	content: "\e958 \e959";
	font-family: "Material-Icons";
	letter-spacing: -10px;
	font-size: 21px;
	color: #a0a0a0;
	margin-left: -10px;
	transition: 0.3s;
}

.slider-handle.custom:hover:before { color: #333; }
.slider.slider-horizontal .slider-handle.custom { margin-left: -20px; }


.hotel-listing {
	display: block;  
	margin-bottom: 35px; 
	transition: 0.3s;
	position: relative;
}

.hotel-listing:hover {
	transform: translateY(-2px);
}

.hotel-listing-details {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 35px;
	padding-bottom: 32px;
}

.hotel-listing .hotel-listing-location-logo {
	flex: 1;
	max-width: 256px;
	margin-right: 25px;
	position: relative;
	top: 3px;
}

	.hotel-listing .hotel-listing-location-logo img {
		border-radius: 0;
		transform: translate3d(0,0,0);
		height: 65vh;
		object-fit: cover;
		width: 100%;
		display: block;
	}

.hotel-listing .hotel-listing-description {
	flex: 1;
	padding-top: 3px;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 15px 0 0 0;
}
.hotel-listing .notification {
	margin: 15px 15px 0 0;
	max-width: 332px;
}
.hotel-listing .hotel-listing-description p {
	margin: 15px 0 0 0;
	padding: 0;
	color: #666;
}

.hotel-listing h4.hotel-listing-location {
	font-size: 13px;
}

.hotel-listing h4.hotel-listing-location {
	font-size: 13px;
	position: absolute;
	margin-top: -60px;
	margin-left: 30px;
	color: #fff;
	text-shadow: 0 0 16px BLACK;
}

.hotel-listing h3.hotel-listing-title {
	font-size: 20px;
	color: #333;
	line-height: 30px;
}

.hotel-listing .hotel-listing-footer {
	padding: 4px 0;
    border-radius: 0 0 4px 4px;
    position: relative; 
}

.hotel-listing .hotel-listing-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hotel-listing .hotel-listing-footer ul li {
	display: inline-block;
	margin-right: 5px;
	color: #fff;
	background-color: #e7e7e7;
	border-radius: 14px;
	padding: 0px 7px;
	margin-bottom: 5px;
	color: #515662;
	font-size: 12px;
	line-height: 2;
}

.hotel-listing .hotel-listing-footer ul li:last-child {
	margin-right: 0;
}

.hotel-listing .hotel-listing-footer ul li i.icon-material-outline-location-on {
	margin-right: 0;
}

.hotel-listing .hotel-listing-footer ul li i {
	position: relative;
	top: 1px;
	margin-right: 3px;
	color: #777;
}

/* Media Queries for Default List Layout*/
@media (max-width: 768px) {
	/*.hotel-listing .hotel-listing-location-logo { display: none; }*/
	.hotel-listing .hotel-listing-title { padding-right: 10%; }
	.grid-layout .hotel-listing .hotel-listing-location-logo {
		max-width: 100%;
		margin-right: 0;
		top: 1px;
		flex: 0 0 100%;
	} 
	.grid-layout .hotel-listing-details { 
		padding: 10px;
		padding-right: 10px;
	}
	.hotel-listing .hotel-listing-description {
		height: auto;
	}
	.hotel-listing-bid { 
		min-width: 100%;
	}
	.hotel-listing-bid-inner {
		width: 100%;
		padding: 15px 5px 5px 5px;
	}
	.safety-tourism { 
		position: absolute;
		right: 15px;
		top: 5px;
	}
	.full-page-container.with-map .full-page-content-inner .grid-layout .hotel-listing {
		width: calc(100% - 10px);
	}
	.section-gallery .photo-box { 
		height: calc( 100vw / 2 ); 
		margin-bottom: 10px;
	}
	.section-gallery .photo-box.small:first-child {
		display: none;
	}
	.section-gallery {
		padding: 15px;
	}
	.single-page-header .single-page-header-inner .header-details li {
		margin-bottom: 3px;
		margin-top: 5px;
	}


}
.hotel-listing-bid {
	flex: 0 0 240px;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 65vh;
}


.hotel-listing-bid-inner {
	width: 100%;
	padding: 35px;
	background: linear-gradient(154deg, rgb(0 0 0 / 41%) 15%, rgb(0 0 0 / 0%) 40%, rgb(119 105 87 / 0%) 90%);
	height: 100%;
}

	.hotel-listing-bid-inner .button {
		display: block;
		text-align: center;
		background-color: #fff;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
		color: #3c4e4f;
		font-weight: 300;
		font-size: 18pt;
		padding: 15px 25px;
	}

	@media(min-width: 1280px) {
		.hotel-listing-bid-inner .button {
			transform: translateX(-50%) translateY(-40%);
			opacity: 0;
			transition: all .2s ease-in-out;
		}
		.hotel-listing-details:hover .hotel-listing-bid-inner .button {
			transform: translateX(-50%) translateY(-50%);
			opacity: 1; 
		}
	}

.hotel-listing-bid-inner .button.primary {
	background-color: #82bfd8;
}

.hotel-listing-bid-inner .button:hover {
	box-shadow: 0 4px 12px rgba(102,103,107,0.25);
}

.hotel-listing-bid .task-offers {
	margin-bottom: 15px;
/*	text-align: center;*/
}

.hotel-listing-bid .hotel-offers strong {
	display: block;
	color: #fff;
	font-weight: 600;
	line-height: 24px;
	font-size: 32px;
	letter-spacing: -1px;
	text-align: left;
}

.hotel-listing-bid .hotel-offers strong small {
	font-size: 70%;
}

.hotel-listing-bid .hotel-offers span {
	display: block;
	color: #fff;
	line-height: 24px;
	text-align: left;
}
.hotel-offers { 
	padding-bottom: 6px;
	font-family: 'Italiana', serif;
}
.old-price {
    font-size: 14px;
    font-weight: normal;
    color: #61656e;
    text-decoration: line-through;
    display: block;
}

.safety-tourism {	
	width: 56px;
	height: 56px;
	background: url(../images/safe-tourism.png) no-repeat center center;
    background-size: cover;
    display: block;
	margin: 10px 0;
}

.single-page-section {
	padding: 35px 25px;
	margin: 0 50px;
}
.single-page-header {
	padding: 30px 0;
	position: relative;
	height: 50vh;
	min-height: 500px;
	display: flex;
	align-items: flex-end;
	transition: all 1s ease-in-out;
}
body.with-map .single-page-header {
	height: 97px;
	min-height: 97px;
}
	body.with-map .single-page-header .left-side, body.with-map  .single-page-header .center-side .header-details h3 + p {
		opacity: 0;
	}
	body.with-map .single-page-header .background-image-container { 
		opacity: 0;
	}
	body.with-map .single-page-header:after {
		z-index: 5;
		background-color: #f7f7f7;
	}
	body.with-map .single-page-header .header-details h3, body.with-map .single-page-header .single-page-header-inner label {
		color: #384b4c;
	}
	body.with-map .single-page-header .right-side { 
		top: 18%; 
		background-color: #f0f0f0; 
		box-shadow: none; 
	}
	.single-page-header.full-text {
		height: auto;
		max-width: none;
		min-height: auto;
		padding: 60px 0;
	}
@media(min-width: 1280px) {
	.single-page-header { 
		max-width: 100%;
		margin: 0 40px;
	}
	.single-page-header.full-text {
		margin: 0;
	}
}

.single-page-header .container {
	z-index: 100;
	position: relative;
}

.single-page-header:after,
.single-page-header:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	display: block;
	top: 0;
	left: 0;
	z-index: 15;
	background: linear-gradient(to bottom,rgb(119 105 87 / 0%) 50%,rgb(255 255 255 / 19%) 77%,rgb(247 247 247) 95%);
}

	.single-page-header.white:after, .single-page-header.white:before { 
		background: #f7f7f7;
	}

.single-page-header:after {
    z-index: 5;
    background-color: #f7f7f7;
}

	.single-page-header .background-image-container {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 100% 50%;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		left: 0;
		z-index: 10;
	}
.single-page-header.full-text .single-page-header-inner {
	position: relative;
}
.single-page-header.full-text:after { 
	background: #374a4b;
}
	.single-page-header.full-text:before {
		display: none;
	}
.single-page-header.full-text .header-details h3 { 
	width: auto;
	padding-right: 40px;
}
.single-page-header.full-text .header-details p { 
	font-weight: 300;
}
.single-page-header.full-text .left-side {
	padding-right: 30px;
	left: 0;
	position: relative;
	bottom: 0;
}
.single-page-header .single-page-header-inner {
	display: flex;
	/* max-width: 850px; */
	margin: 0 auto;
	padding: 0 25px;
	padding-bottom: 0;
	/* max-width: 1090px; */
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 16;
	display: flex;
	align-items: flex-end;
}

.single-page-header .single-page-gallery {
	position: relative;
	width: 100%;
	/* height: 100%; */
	left: 0;
	top: 0;
	z-index: 15;
}

.single-page-header.header-room {
	padding: 30px 0;
	position: relative;
	height: auto;
	min-height: 500px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	transition: all 1s ease-in-out;
}
.single-page-header.header-room form {
	position: absolute;
	bottom: 10%;
	right: -70px;
	z-index: 101;
}
.roomTitle {
	font-size: 53pt;
	text-align: left;
	font-family: 'Italiana', serif;
	display: flex;
	flex-direction: column;
}
.roomTitle small {
	font-size: 24px;
	color: #434647;
	margin-bottom: 20px;
	font-family: 'Montserrat';
}
.roomDescription p {
	font-size: 34pt;
	line-height: 38pt;
	text-align: left;
	font-family: 'Italiana', serif;
	font-weight: 300;
	letter-spacing: 1px;
}
.roomFacily h4 {
	font-size: 24px;
	color: #434647;
	text-align: left;
	padding-bottom: 10px;
	border-bottom: 1px solid #d3ccc0;
	margin-bottom: 10px;
	font-weight: 600;
}
.rental-description__image {
	position: relative;
	min-height: 27.5rem;
}
.rental-description__image img {
	position: absolute;
	top: -5rem;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
@media (min-width: 640px) {
	.rental-description__image {
		min-height: 37.5rem;
	}
	.rental-description__image img {
		top: -4rem;
	}
}
.facilityFlex {
	display: flex;
	flex-direction: row; 
	flex-wrap: wrap;
}
	.facilityFlex .section-headline { 
		flex: 1;
		min-width: 100%;
	}
	.facilityFlex > ul {
		width: 20%;
	}
	.single-page-header.header-room .single-page-header-inner {
		height: auto;
		position: relative;
	}
.single-page-header.header-room .left-side {
	padding-right: 0;
	left: 0;
	position: relative;
	bottom: -55px;
}
.single-page-header.header-room .header-details {
	flex: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-top: 0;
}
	.single-page-header.header-room.white .header-details h5 {
		font-size: 16px;
		font-weight: 600;
		color: #fff;
		margin-bottom: 20px;
		text-shadow: 0px 2px 22px black;
	}
	.single-page-header.header-room.white .header-details h3 {
		color: #434647;
		text-align: center;
		line-height: 3vw;
		margin-bottom: 30px;
		font-size: 7vw;
	}
		.single-page-header.header-room.white .header-details h3 small {
			font-size: 24px;
			font-family: 'Montserrat';
		}
.single-page-header .single-page-header-inner label {
	color: #fff;
}
	.single-page-header .single-page-header-inner input:checked + .switch-button {
		background-color: #ffffff;
	}
	.single-page-header .single-page-header-inner input:checked + .switch-button:before {
		background-color: #37acc1;
	}

	.single-page-header .single-page-header-inner .button.white {
		background-color: #fff;
		color: #374a4b;
		margin-left: 10px;
		font-family: 'Italiana', serif;
		font-size: 16px;
		letter-spacing: 1px;
	}
			.single-page-header .single-page-header-inner .button.white:not([href]):not([tabindex]):hover {
				color: #82bfd8;
			}
.single-page-header .left-side,
.single-page-header .right-side {
	flex: 1;
	display: flex;
	align-items: center;
}

.single-page-header .left-side {
	padding-right: 30px;
	left: 40px;
	position: relative;
	bottom: 5%;
}

.single-page-header .right-side {
	max-width: 35%;
	position: absolute;
	top: 10%;
	right: 55px;
	background-color: rgb(0 0 0 / 54%);
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 0 20px rgb(0 0 0 / 51%);
}
.single-page-header .center-side {
	max-width: 35%;
	position: absolute;
	top: 10%;
	left: 55px;
	padding: 10px;
}

@media (min-width: 1365px) {
	.single-page-header .right-side { max-width: 30%; }
}

.single-page-header .header-image a {
	display: flex; 
	height: 100%;
}

.single-page-header .header-image {
    height: 140px;
    flex: 0 0 140px;
    margin-right: 35px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    display: flex;
    padding: 0 20px;
}

/* IE 11 Fixes */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.single-page-header .header-image { max-width: 140px; }
}

.single-page-header.freelancer-header .header-image {
    background: #fff;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    padding: 0;
    overflow: hidden;
    height: 130px;
    flex: 0 0 130px;
    width: 130px;
}

.single-page-header .header-image img {
	align-self: center;
	transform: translate3d(0,0,0);
}

@media all and (-ms-high-contrast:none) {
	.single-page-header .header-image img {
		width: 100%;
	}
}

.single-page-header .header-details {
	flex: 1;
	display: flex;
	align-items: center;
}

.single-page-header .center-side .header-details {
	flex: 1;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.single-page-header .header-details p {
	font-size: 14px;
	line-height: 27px;
	color: #fff;
}

.single-page-header .header-details h3 {
	color: #ffffff;
	font-size: 47px;
	font-weight: 300;
	margin: 0;
	padding: 0;
	margin-bottom: 0;
	margin-top: 3px;
	line-height: 54px;
	position: relative;
	padding-right: 0;
	display: inline-block;
	font-family: 'Italiana', serif;
}

	.single-page-header.white .header-details h3 {
		color: #434647; 
	}

.single-page-header .header-details h3 + p {
	font-size: 14pt;
	margin-top: 10px;
	line-height: 20pt;
}

	.single-page-header .header-details h3 span {
		color: #808080;
		display: block;
		font-size: 20px;
		font-weight: 300;
		margin-top: -3px;
	}

	.single-page-header .center-side .header-details h3 + p {
		font-size: 13pt;
		line-height: 28px;
		margin-top: 10px;
		font-weight: 300;
	}

	.single-page-header .header-details h5 {
		font-size: 16px;
		font-weight: 600;
		color: #f0fcff;
	}

.single-page-header .header-details h5 {
	font-size: 19px;
	font-weight: 300;
	color: #3c4e4f;
	line-height: 22px;
	padding-right: 20px;
}

.single-page-header .header-details span {
	font-family: 'Italiana', serif; 
	font-size: 57px;
	font-weight: 300;
	color: #3c4e4f;
	line-height: 22px;
}
.single-page-header .header-details span small {
	font-size: 70%;
}

	.single-page-header.white .header-details h5 {
		font-size: 14px;
		font-weight: 600;
		color: #6d5c49;
	}

.single-page-header .header-details ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 24px;
	margin-bottom: -7px;
}

.single-page-header .header-details li {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 0;
	background-color: #fff;
	box-shadow: 0 0 3px -1px;
	padding: 3px 8px;
	border-radius: 0;
	margin-top: 7px;
	color: #695541;
	box-shadow: none;
	font-size: 13px;
	font-weight: 300;
}

.single-page-header .header-details li:last-child { margin-right: 0; }

.single-page-header .header-details li a { color: #666; }
.single-page-header .header-details li a:hover { color: #66676b; }

	.single-page-header .header-details li i {
		font-size: 20px;
		position: relative;
		top: 2px;
		color: #695541;
		margin-right: 2px;
	}

.single-page-header .header-details li .verified-badge {
	transform: scale(0.85);
	position: relative;
	top: 2px;
}

.single-page-header .header-details li .verified-txt {
	color: #299840;
}

.single-page-header .header-details li .star-rating  {
	position: relative;
	top: 6px;
}

.single-page-header .header-details ul li img.flag {
	height: 16px;
	border-radius: 3px;
	position: relative;
	top: -1px;
	display: inline-block;
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	margin-right: 5px;
	cursor: default
}

.single-page-header .price-box {
	border-radius: 4px;
	background-color: #fff;
	display: inline-block;
	padding: 20px 25px;
	margin-left: auto;
	text-align: center;
}

.price-box .price-type {
	color: #888;
	line-height: 20px;
	margin: 0 0 8px 0;
}

.price-box .price-amount {
	color: #333;
	font-size: 28px;
	line-height: 36px;
	letter-spacing: -1px;
	font-weight: 700;
}

@media (max-width: 1366px) {
	.single-page-header.freelancer-header .header-image {
	    height: 130px;
	    flex: 0 0 130px;
	    width: 130px;
	}
}

@media (max-width: 1240px) {
    .single-page-header .header-details h3 {
        font-size: 26px;
    }
	.single-page-header {
		padding: 30px 0 30px 0;
	}
    .price-box .price-amount {
        font-size: 26px;
        line-height: 32px;
    }
    .single-page-header .header-image {
        height: 120px;
        flex: 0 0 120px;
    }

	.single-page-header.freelancer-header .header-image {
	    height: 120px;
	    flex: 0 0 120px;
	    width: 120px;
	}
}

@media (max-width: 992px) {
	.single-page-header .single-page-header-inner {
	    display: flex;
	    flex-direction: column;
	}
	.single-page-header .left-side { padding-right: 0; }
    .single-page-header .header-details h3 {
        font-size: 24px;
    }
	.single-page-header {
		padding: 15px 0 0;
	}
    .single-page-header .price-amount {
        font-size: 22px;
        line-height: 24px;
    }
		.single-page-header .price-box {
			padding: 0;
			margin-top: 15px;
			margin-bottom: 20px;
			background-color: transparent;
			box-shadow: none;
			position: absolute;
			top: -7px;
			right: 15px;
			line-height: 1;
			background-color: #fff;
			padding: 5px;
			border-radius: 5px;
			text-align: center;
		}
	.price-box .price-type { 
		font-size: 12px; 
        font-weight: 600;
        color: #333;
    }
    .single-page-header .left-side,
    .single-page-header .right-side,
    .single-page-header-inner {
        display: block;
        max-width: 100%;
    }
    .single-page-header .header-image {
        height: 70px;
        width: auto;
        padding: 15px 20px;
        margin: 15px 0;
        display: inline-block;
    }
    .single-page-header .header-image img {
        height: 100%;
    }

	.single-page-header .header-details h5 {
		border-top: 1px solid #e0e0e0;
		padding-top: 7px;
	}

	.single-page-header.freelancer-header .header-image {
	    height: 70px;
	    flex: 0 0 70px;
	    width: 70px;
	    margin-bottom: -70px;
	}
	.single-page-header.freelancer-header .header-details h3 {
		margin-left: 90px;
	}
}

@media (max-width: 768px) {
	.single-page-header:after, .single-page-header:before { background: #f7f7f7; }

	.single-page-header.freelancer-header .header-image {
	    height: 70px;
	    flex: 0 0 70px;
	    width: 70px;
	    margin-bottom: -70px;
	}
	.single-page-header.freelancer-header .header-details h3 {
		margin-left: 90px;
	}
}

.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	overflow: hidden;
	position: fixed;
	background: rgb(255 255 255 / 81%);
}

.mfp-wrap {
	top: -10px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2001;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	height: 100%;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 18px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 505;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
 }

 .mfp-arrow {
	position: absolute;
	opacity: 1;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 64px;
    height: 72px;
	-webkit-tap-highlight-color: transparent; }
	.mfp-arrow:active {
	  margin-top: -54px; }
	.mfp-arrow:hover,
	.mfp-arrow:focus {
	  opacity: 1; }
	.mfp-arrow:before,
	.mfp-arrow:after {
	  content: '';
	  display: block;
	  width: 0;
	  height: 0;
	  position: absolute;
	  left: 0;
	  top: 0;
	  margin-top: 15px;
	  margin-left: 19px;
	  border: medium inset transparent; }
	.mfp-arrow:after {
	  border-top-width: 13px;
	  border-bottom-width: 13px;
	  top: 8px; }
	.mfp-arrow:before {
	  border-top-width: 21px;
	  border-bottom-width: 21px;
	  opacity: 0.7; }
  
  .mfp-arrow-left {
	left: 0; }
	.mfp-arrow-left:after {
	  border-right: 17px solid #82bfd8;
	  margin-left: 19px; }
	.mfp-arrow-left:before {
		margin-left: 14px;
		border-right: 30px solid #FFF; }
  
  .mfp-arrow-right {
	right: 0; }
	.mfp-arrow-right:after {
	  border-left: 17px solid #82bfd8;
	  margin-left: 25px; }
	.mfp-arrow-right:before {
	  border-left: 29px solid #FFF; }

	.mfp-arrow-left:hover { 
		background-color: #82bfd8;
	}
	
	.mfp-arrow-right:hover { 
		background-color: #82bfd8;
	}
	.mfp-arrow-right:hover:before {
		border-left-color: #82bfd8;
	}
	.mfp-arrow-right:hover:after {
		border-left: 17px solid #ffffff; 
	}
	.mfp-arrow-left:hover:before {
		border-right-color: #82bfd8; 
	}
	.mfp-arrow-left:hover:after {
		border-right: 17px solid #ffffff; 
	}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}
.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
	transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: none;
	}
}

.mfp-preloader {
	color: #aaa;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 504;
}

.mfp-preloader a {
	color: #cccccc;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

.mfp-s-loading .mfp-arrow {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: block;
    padding: 0;
    z-index: 506;
    background-color: #fff;
    border-radius: 10px;
    /* margin: 0 10px; */
    margin-right: 10px;
    margin-left: 10px;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	right: 0px;
	top: -40px;
}

/* Close Button */
.og-close,
button.mfp-close {
	position: absolute;
	width: 45px;
	height: 45px;
	top: -20px;
	display: block;
	right: -12px;
	cursor: pointer !important;
	z-index: 9999;
	color: #fff;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-radius: 50%;
	margin: 0px;
	background-color: transparent;
	outline: none;	transform: translate3d(0,0,0);
}

.mfp-iframe-holder .mfp-close {
	top: -50px;
	right: -12px;
	transform: translate3d(0,0,0);
}

.mfp-gallery .mfp-close {
	top: 20px;
	right: 10px;
}

.mfp-gallery  .mfp-content .mfp-close {
	display: none;
}

.mfp-close::after,
.mfp-close::before {
    top: 0px;
}

.og-close {
	margin: 17px;
	right: 10px;
	background: transparent;
	color: #222;
}

.og-close:before,
.mfp-close:before {
	font-family: "Feather-Icons";
	font-size: 20px;
	top: 2px;
	left: 0;
	position: relative;
	height: 10px;
}

.og-close:before,
.mfp-close:before {
	content:"\ea02";
}

.tabs ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

.tabs {
	z-index: 15px;
	position: relative;
	background: #FFFFFF;
	width: 100%;
	border-radius: 4px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	margin: 0;
	overflow: hidden;
}

.tabs-header {
	position: relative;
	background: #f7f7f7;
	overflow: hidden;
}

.tabs-header .tab-hover {
	position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100%;
    transition: 0.3s ease;
    z-index: 90;
    border-bottom: 3px solid #37acc1;
}

.tabs-header ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: calc(100% - 100px);
	position: relative;
	z-index: 100;
}

.tabs-header li { transition: 0.3s ease; }

.tabs.villas .tabs-header li {
	transition: 0.3s ease;
	flex: 1;
	justify-content: center;
	text-align: center;
	height: 240px;
	align-items: center;
	display: flex;
	background-color: #454545;
}
	.tabs.villas .tabs-header li.active {
		background-color: #5a5a5a;
	}
	.tabs.villas .tabs-header li a {
		color: #fff;
		height: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
.tabs.villas .tabs-header ul {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: calc(100% - 110px);
	position: relative;
	z-index: 100;
	max-width: 980px;
}
.tabs.villas .tabs-nav { display: none; }
.tabs.villas .tabs-header .tab-hover {
	border: none;
}
.tabs-header a {
	z-index: 1;
	display: block;
	box-sizing: border-box;
	padding: 15px 25px;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
}
.tabs-header .active a {
    font-weight: 700;
}
.tabs .container {
	position: relative;
	padding: 0;
}
.tabs-nav {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 15px;
	color: #fff;
	user-select: none;
	font-size: 19px;
}

.tabs-nav i {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	height: 30px;
	width: 30px;
	line-height: 30px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 4px;
	text-align: center;
	position: relative;
	z-index: 101;
	margin-left: 5px;
	transition: 0.3s;
}

.tabs-nav i:hover {
	background-color: rgba(255,255,255,0.15);
}

.tabs-content {
	position: relative;
	transition: 0.3s ease;
	overflow: hidden;
}

.tabs-content .tab {
	padding: 25px;
}
	.tabs.villas .tabs-content .tab {
		padding: 0;
	}
.tabs-content .tab p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.tabs-content:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	box-shadow: 0 0 20px 10px #FFFFFF;
}

.tabs-content .tab { display: none; }
.tabs-content .tab.active {  display: block; }

@media (max-width: 992px) {
	.tabs-nav { display: none; }
	.tabs-header ul { width: 100%; margin-top: 20px; }
	.tab-hover { display: none; }
	.tabs-header a { box-shadow: 0 -1px 0 rgba(255,255,255,0.15); }
	.tabs-header ul li.active a {
		background-color: #fff;
	}
}

.list-3,
.list-2,
.list-1 {
	padding: 3px 0 0 0;
	font-size: 16px;
}

.list-3 li,
.list-2 li,
.list-1 li {
	list-style: none;
	margin: 10px 0;
	line-height: 27px;
	margin-left: 20px;
	position: relative;
}

.list-3 li:first-child,
.list-2 li:first-child,
.list-1 li:first-child {
	margin-top: 0;
}

.list-4 li:before,
.list-3 li:before,
.list-2 li:before,
.list-1 li:before {
	margin: 0;
	position: relative;
	color: #66676b;
	float: left;
	margin-left: -20px;
	display: block;
}

.list-1.gray li:before {
	color: #777;
}

.list-2 li,
.list-2 li { margin-left: 28px; }


.list-3 li:before,
.list-2 li:before {
	font-family: "Material-Icons"; 
	content: "\e928";
	font-size: 18px;
	font-weight: 600;
	position: relative;
	top: -2px;
	margin-left: -28px;
}

.list-3 li:before {
	content: "\e912";
	font-family: "Feather-Icons";
	font-weight: 500;
	font-size: 18px;
}

.list-1 li:before {
	content: "";
	height: 6px;
	width: 6px;
	background-color: #66676b;
	border-radius: 2px;
	position: relative;
	top: 9px;
}
	.list-2.color li:before {
		color: #908475;
		background-color: #f7f7f7;
		border-radius: 4px;
		width: 22px;
		text-align: center;
	}
.boxed-list {
	margin-top: 0;
	display: block;
}

.boxed-list-headline {
	background-color: #f2f2f2;
	border-radius: 4px;
	padding: 20px 35px;
}

.boxed-list-headline h3 { font-size: 18px; }
.boxed-list-headline h3 span { color: #888; }

.boxed-list-headline h3 i {
	font-size: 18px;
	color: #66676b;
	font-size: 24px;
	position: relative;
	top: 3px;
	line-height: 0;
	display: inline-block;
	margin-right: 5px;
}

.boxed-list ul.boxed-list-ul {
	padding: 0;
	margin: 0 55px;
	list-style: none;
}

	.boxed-list ul.boxed-list-ul > li {
		display: block;
		background-color: transparent;
		padding: 0;
		border-radius: 0;
		border-bottom: 1px solid #d2d2d2;
	}

.boxed-list ul.boxed-list-ul > li:nth-child(2n) {
	background-color: #fafafa;
}

@media( max-width: 768px ) {
	.boxed-list ul.boxed-list-ul > li { 
		padding: 5px; 
	}
}

/* Fields UL */
.fields-ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.fields-ul > li {
	display: block;
	background-color: transparent;
	padding: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e4e4e4
}


/* Boxed List Item
------------------------------------- */
.boxed-list-item {
	display: flex;
}

.boxed-list-item .item-image {
	flex: 0 0 60px;
	height: 60px;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	padding: 10px;
	margin-right: 25px;
	position: relative;
	top: -2px;
	display: flex;
	background-color: #fff;
}

/* IE 11 Fixes */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.boxed-list-item .item-image { max-width: 60px; }
	.boxed-list-item .item-image img { width: 100%; }
}
/* IE 11 Fixes - End */

.boxed-list-item .item-image img {
	height: auto;   
	align-self: center;
}

.boxed-list-item .item-content h4 a,
.boxed-list-item .item-content h4 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.boxed-list-item .item-content h4 span {
	font-size: 16px;
	color: #808080;
	display: block;
	font-weight: 500;
}

.boxed-list-item .item-details {
	display: flex;
	margin-top: 5px;
}

.boxed-list-item .item-details .star-rating {
	top: -2px;
	position: relative;
	margin-right: 15px;
}

.boxed-list-item .item-details .detail-item {
	margin-right: 15px;
	color: #808080;
}

.boxed-list-item .item-details .detail-item a { color: #808080; }
.boxed-list-item .item-details .detail-item a:hover { color: #66676b; }

.boxed-list-item .item-details .detail-item i {
	margin-right: 3px;
	position: relative;
	top: 0;
}

.boxed-list-item .item-description p { margin-bottom: 0; padding-bottom: 0; }

.boxed-list-item .item-description {
	margin-top: 15px;
}


.room {
	display: flex;
	width: 100%;
}

.room .room-content {
	flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

	.room .rooms-price {
		align-items: center;
		display: flex;
		flex-direction: column;
		align-self: center;
		margin: 10px 30px;
	}

.room .rooms-price .button {
    text-align: center;
	width: 100%;
}

.room .room-images { align-self: center; }

.room .room-name { margin-top: 0; }
.room .room-name h4 {
    font-size: 18px;
	font-weight: 700;
}
.room .room-name p {
    font-size: 14px;
    line-height: 27px;
}
	.room .room-image {
		width: 327px;
		margin: 0 auto;
		position: relative;
		margin-right: 30px;
	}

.room .star-rating { margin-top: 3px; display: block }

.room .room-image img {
	width: 100%;
    border-radius: 0;
    cursor: pointer;
}

.room .room-image .verified-badge {
	position: absolute;
	bottom: 0;
	right: 0;
}
 
.room-rate {
	width: 100%;
	text-align: center;
	font-size: 14px;
	background: #f4f4f4;
	color: #888;
	border-radius: 4px;
	padding: 8px 12px;
	margin-bottom: 10px;
}

.boxed-list ul.boxed-list-ul > li:nth-child(2n) .room-rate {
	background: #f2f2f2;
}

.room-rate .rate {
	color: #333;
	font-weight: 600;
	text-align: center;
	line-height: 20px;
	border-radius: 4px;
	padding: 5px 10px;
	padding-bottom: 0;
	font-size: 22px;
	letter-spacing: -0.5px;
}

.room-rate span {
	display: block;
	margin-top: -2px;
}

@media (max-width: 768px) {
	.room .room-image {
		width: 100%;
		margin: 0 0 15px 0;
	}
	.room .room-images {
		align-self: flex-start;
		width: 100%;
	}
	.room {
		align-items: flex-start;
		flex-direction: column;
	}
	.rooms-price { margin-top: 15px; }
	.room-rate { width: 100%; }

	.room .room-name p {
		font-size: 14px;
		line-height: 20px;
	}
	.room .room-content {
		padding: 0 10px;
	}


}

.concept {
    border-radius: 4px;
    background-color: #82bfd8;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    padding: 7px 9px;
    display: inline-block;
    margin-top: 8px;
    text-align: center;
}

#single-room-map-container {
	position: relative;
}

#single-room-map-container #singleListingMap {
	position: relative;
	height: 360px;
	border-radius:  0;
}

.chg-date-text {
	font-size: 12px;
    color: #f85156;
    line-height: 16px;
    display: block;
    max-width: 156px;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
	border: none !important;
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 15%) !important;
    border-radius: 6px !important;
	max-width: 720px;
	margin: 30px auto;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    padding: 20px 40px 10px !important;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #1f2126;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    padding-left: 40px !important;
    padding-right: 40px !important;
}
.modal-body .single-page-section {
    padding: 0;
}

.modal-body .section-headline h4 {
    font-size: 16px;
    line-height: 24px;
}

.modal-content .og-close, .modal-content button.mfp-close {
    position: absolute;
    width: 45px;
    height: 45px;
    top: -20px;
    display: block;
    right: -12px;
    cursor: pointer !important;
    z-index: 9999;
    color: #606060;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-radius: 50%;
    margin: 0px;
    background-color: transparent;
    outline: none;
    transform: translate3d(0,0,0);
    margin: 24px 15px;
}

.room-carousel {
    width: calc(100% + 30px);
    left: -15px;
}

.room-carousel .room-compact-item-container {
	margin: 15px;
    display: inline-block;
    width: 30%;
}

.room-carousel.slick-initialized .room-compact-item-container { width: auto; }


.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.modal-body .slick-slide img {
	display: block;
	max-height: 320px;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
/*.slick-loading .slick-list {
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}
*/

/* Arrows */
.slick-prev,
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	border: none;
	outline: none;
	background-color: #82bfd8;
	border-radius: 4px;
	width: 48px;
	height: 48px;
	display: block;
	top: calc(50% - 15px);
	transform: translateY(-50%);
	transition: 0.3s;
	box-shadow: 0 3px 12px rgba(0,0,0,0.15);
	z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
    color: transparent;
    outline: none;
    background: #66676b;
}
.slick-prev:hover:before,
.slick-next:hover:before {
    opacity: 1;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    pointer-events: none;
	cursor: default;
	background-color: #e8e8e8;
	box-shadow: none;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    color: #808080;
}

.slick-prev:before,
.slick-next:before {
    font-family: "Feather-Icons";
    font-size: 26px;
    line-height: 1;
    opacity: 1;
    transition: 0.3s;
    position: relative;
    color: #fff;
}

.slick-prev { left: -85px; }
.slick-prev:before {  content: '\e92f'; left: -1px; }

.slick-next {  right: -85px; }
.slick-next:before { content: '\e930'; right: -1px; }

/* Dots */
.slick-dots {
	margin: 0 auto;
	padding: 0;
	text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 3px;
    cursor: pointer;
}

.slick-dots li {
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    position: relative;
    outline: none;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 3px;
	opacity: 1;
	border-radius: 50%;
	line-height: 0;
	box-shadow: inset 0 0 0 2px #c0c0c0;
	transition: all 0.3s;
}

.slick-dots li.slick-active {
	box-shadow: inset 0 0 0 6px #c0c0c0;
	transition: all 0.3s;
}

.slick-dots li:after {
    display: block;
    height: 13px;
    width: 13px;
	content: "";
	position: absolute;
	top: 1px;
	left: 1px;
	background-color: transparent;
	border-radius: 50%;
	transition: all 0.3s;
	opacity: 0;
	background-color: #c0c0c0;
}

.slick-dots li.slick-active:after {
	opacity: 1;
}


/* Reset */
.slick-slide { display: none; outline: none; }
.slick-initialized .slick-slide { display: block; }

.default-slick-carousel .slick-carousel-item { margin: 15px; }

.default-slick-carousel {
    height: auto;
    width: calc(100% + 30px);
    left: -15px;
}

.default-slick-carousel,
.testimonial-carousel,
.logo-carousel,
.blog-carousel { display: none; }

.default-slick-carousel.slick-initialized,
.testimonial-carousel.slick-initialized,
.logo-carousel.slick-initialized,
.blog-carousel.slick-initialized { display: block; }

/* Custom */
.default-slick-carousel .freelancer { margin: 15px; width: 30%; }
.default-slick-carousel.slick-initialized .freelancer { width: auto; }
.default-slick-carousel .freelancer-details-list ul li { margin-right: 22px; }
.default-slick-carousel .freelancer-details-list ul li:last-child { margin-right: 0px; }

.default-slick-carousel .freelancer:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transform: translateY(0px);
}

.popular-10 { padding: 10px; }

.hotels-slick-carousel .hotel-listing-details { 
	padding: 15px; 
}

@media (min-width: 1367px) and (max-width: 1440px) {
	.slick-prev { left: -65px; }
	.slick-next {  right: -65px; }
}

@media (max-width: 1290px) {
	.slick-prev { left: -10px; }
	.slick-next {  right: -10px; }
}

@media (max-width: 1090px) {
	.slick-prev { left: 40px; }
	.slick-next {  right: 40px; }
}

.full-width-carousel-fix { overflow: hidden; }
.full-width-carousel-fix .slick-list { overflow: visible; }

.modal-content .slick-prev {
    left: -10px; 
}

.modal-content .slick-next {
    right: -10px; 
}
.modal-content .slick-track { 
    display: flex;
    align-items: center;
}

/*.modal-content .datepicker table tr td, .modal-content .datepicker table tr th {
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: none;
    padding: 10px;
    font-size: 18px;
}
#calendar-form.modal-content { 
    max-width: 380px;
    margin: 30px auto;
}
#calendar-form .datepicker table tr td.disabled, #calendar-form .datepicker table tr td.disabled:hover {
    background: 0 0;
    color: #777;
    cursor: default;
    background-color: #ffd4d4;
    color: red;
}*/
.modal-title { 
	min-height: 21px;
}
.modal .close {
	position: absolute;
	width: 45px;
	height: 45px;
	top: -20px;
	display: block;
	right: -12px;
	cursor: pointer !important;
	z-index: 9999;
	color: #606060;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-radius: 50%;
	margin: 0px;
	background-color: transparent;
	outline: none;
	transform: translate3d(0,0,0);
	margin: 24px 15px;
	font-size: 23pt;
}
.boxed-widget {
	background-color: #f9f9f9;
	padding: 0;
	transform: translate3d(0,0,0);
	z-index: 90;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	margin: 20px 0;
}

.boxed-widget-headline {
    color: #333;
    font-size: 20px;
    padding: 20px 30px;
    background-color: #f0f0f0;
    color: #333;
    position: relative;
    border-radius: 4px 4px 0 0;
}

.boxed-widget-headline h3 {
	font-size: 20px;
	padding: 0;
	margin: 0;
}

.boxed-widget-inner {
	padding: 30px;
}

.boxed-widget-inner {
	padding: 30px;
}

.boxed-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.boxed-widget ul li span {
    float: right;
    color: #333;
    font-weight: 600;
}

.boxed-widget ul li {
    color: #666;
    padding-bottom: 1px;
}

.boxed-widget.summary li.total-costs {
    font-size: 18px;
	border-top: 1px solid #e4e4e4;
    padding-top: 18px;
    margin-top: 18px;
}

.boxed-widget-footer {
	border-top: 1px solid #e4e4e4;
	width: 100%;
	padding: 20px 30px;
}

.boxed-widget-footer .checkbox label {
	margin-bottom: 0;
}

.boxed-widget.summary li.total-costs span {
    font-weight: 700;
    color: #66676b;
}

.listing-item-container.compact.order-summary-widget .listing-item {
	border-radius: 4px 4px 0 0;
	cursor: default;
	height: 240px;
}

.listing-item-container.compact.order-summary-widget { margin-bottom: 0; }
.listing-item-container.compact.order-summary-widget:hover { transform: none; }

.payment-logo {
	height: 24px;
	position: absolute;
	right: 19px;
	top: 18px;
	image-rendering: -webkit-optimize-contrast;
}

.payment-logo.paypal {
	height: 16px;
	top: 22px;
}

.payment-tab-trigger > input {
	position: absolute;
	visibility: hidden;
}

.payment-tab-trigger {
	padding: 0px 20px;
}

.payment-tab-trigger > label {
	cursor: pointer;
	display: block;
	position: relative;
	top: 0;
	padding: 14px 0;
	top: 3px;
	margin-bottom: 0;
	font-weight: 600;
    font-size: 16px;
}

.payment-tab-trigger > label::before {
	transition: 0.2s;
	box-sizing: border-box;
	background-color: #fff;
	border: 2px solid #d0d0d0;
	border-radius: 100%;
	content: "";
	display: inline-block;
	margin-right: 10px;
	position: relative;
	top: 3px;
	width: 18px;
	height: 18px;
}

.payment-tab-trigger > label::after {
	background: #fff;
	border-radius: 100%;
	content: "";
	display: inline-block;
	position: absolute;
	left: 5px;
	top: 22px;
	width: 8px;
	height: 8px;
	transition: 0.2s;
	transform: scale(0);
}

.payment-tab-trigger > input:checked ~ label::before { border-color: #66676b; }

.payment-tab-trigger > input:checked ~ label::after {
	background-color: #66676b;
	transform: scale(1);
}

.payment {
	border: 2px solid #f2f2f2;
	border-radius: 4px;
	overflow: hidden;
}

.payment-tab {
	background: #f2f2f2;
	box-sizing: border-box;
	max-height: 60px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s 0s ease-in-out;
	width: 100%;
}

.payment-tab:first-of-type { border-radius: 4px 4px 0 0; }
.payment-tab:last-of-type { border-radius: 0 0 4px 4px; }

.payment-tab.payment-tab-active {
	max-height: 400px;
	background: #fff;
}

@media (max-width: 991px) {
	.payment-tab.payment-tab-active { max-height: 800px; }
}

.payment-tab-content {
	padding: 0 20px 20px 20px;
	background-color: #fff;
	visibility: hidden;
	opacity: 0;
	transition: 0.2s ease-in-out;
}

.payment-form-row {
	margin-top: -10px;
	margin-bottom: 5px;
}

.payment-tab.payment-tab-active .payment-tab-content {
	visibility: visible;
	opacity: 1;
}

.card-label > input {
	box-sizing: border-box;
	display: block;
	height: 51px;
	margin: 14px auto 5px;
	padding: 5px 15px 0 15px;
	transition: border-color 0.3s;
	width: 100%;
	border: 1px solid #dbdbdb;
	background-color: #fff;
	text-decoration: none;
	border-radius: 4px;
	box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.06);

	box-shadow: none;
	padding: 15px 0;
	border: none;
	border-bottom: 1px solid #e0e0e0;
	border-radius: 0;
}

.card-label > input:focus {
	box-shadow: none;
	border-bottom: 1px solid #e0e0e0;	padding: 15px 0;
}


.card-label > input::placeholder {
	transition: 0.2s ease-in-out;
	-webkit-transform-origin: left;
}

.card-label > input:focus::placeholder {
transform: translateY(-18px);
}


.card-label > label {
    background-color: #fff;
    display: inline-block;
    margin: 6px auto auto 8px;
    font-size: 13px;
    padding: 0px 7px;
    font-weight: 500;
    color: #909090;
    display: none;
}

.payment-tab p { margin: 10px 0; }

.modal-content .table-wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
  }
  .modal-content .table td {
	border-top: 1px solid #dee2e6;
	border: 1px solid #dbe0e6;
	vertical-align: middle;
	padding: 10px; 
	height: 70px; 
  }
  .modal-content .table td.table-img{
	width: 120px;
	max-width: 120px;
	min-width: 120px;
  }
  .modal-content .table td.table-img img{
	width: 60px;
	max-width: 60px;
	max-height: 40px;
  }
  .modal-content .table td { 
    font-size: 13px;
    font-weight: 400;
    line-height: 1.1;
	}
  @media(max-width: 991px) {
	.modal-content .y {
		width: 400px;
	}
  }

  #invoice {
	background: white;
    width: auto; 
    padding: 60px;
    margin: 50px auto 60px auto;
    border-radius: 4px;
    box-shadow: 0 0 10px rgb(0 0 0 / 18%);
}

#invoice #details {
    text-align: right;
    margin: 0;
    padding-bottom: 40px;
    clear: both;
}

#invoice h2 {
    font-size: 36px;
    line-height: 1;
    margin: 65px 0 45px 0;
}

#invoice strong {
    font-weight: 700;
    color: #333;
    display: inline-block;
}

#invoice table {
	width: 100%;
	margin: 0 0 30px;
	padding: 1px 0;
	border-spacing: 0;
	border-bottom: 1px solid #ddd;
  }
  
  #invoice th,
  #invoice td {
	padding: 15px 0;
	text-align: left;
  }
  
  #invoice th {
	font-weight: 700;
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	color: #333;
  }
  
  #invoice th:last-child,
  #invoice td:last-child {
	text-align: right;
  }
  
  #invoice th span {
	position: relative;
	display: inline-block;
	height: 100%;
  }
  
  #invoice th span::after {
	content: '';
	width: 100%;
	bottom: -16px;
	position: absolute;
	right: 0;
	border-bottom: 1px solid #2a41e8;
  }


  #invoice #footer {
	width: 100%;
	border-top: 1px solid #ddd;
	background-color: transparent;
	margin: 60px 0 0 0;
	padding: 20px 0 0 0;
	list-style: none;
	font-size: 15px;
  }
  
  #invoice #footer li {
	display: inline-block;
	padding: 0 20px;
	border-right: 1px solid #ddd;
	line-height: 11px;
  }
  
  #invoice #footer li:first-child { padding-left: 0; }
  #invoice #footer li:last-child { border:none; }
  
  #invoice #footer li span {
	 color: #2a41e8;
  }

  #invoice #totals {
	width: 100%;
  }

  .breathing-icon {
	background-color: rgb(126 201 40 / 85%);
    width: 48px;
    height: 48px;
    line-height: 0;
    font-size: 18px;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: 30px;
    position: relative;
    z-index: 100;
    transition: 0.4s;
    color: #fff;
    font-weight: 500;
    animation: bicokAnim 3s infinite;
    box-shadow: 0 0 0 15px rgb(126 201 40 / 20%);
    margin-bottom: 30px;
    font-size: 34px;
    margin-right: 34px;
}

.breathing-icon i {
	color: #fff;
	position: absolute;
	top: 53%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	text-align: center;
}

@keyframes bicokAnim {
	0%,100% {
		box-shadow: 0 0 0 15px rgb(126 201 40 / 20%);
	}
	50% {
		box-shadow: 0 0 0 28px rgb(126 201 40 / 20%);
	}
}

.notification {
	line-height: 24px;
	margin-bottom: 15px;
	position: relative;
	padding: 20px 26px;
	padding-right: 50px;
	border-radius: 3px;
}

.notification p { 
	margin: 0!important;
    font-size: 15px;
    line-height: 1.2;
 }

#result .success,
.notification.success {
	background-color: #EBF6E0;
}

#result .success,
.notification.success,
.notification.success a,
.notification.success strong {
	color: #5f9025;
}

.notification.error {
	background-color: #ffe9e9;
}
.notification.error,
.notification.error a,
.notification.error strong {
	color: #de5959;
}

.notification.warning {
	background-color: #FBFADD;
}
.notification.warning,
.notification.warning a,
.notification.warning strong {
	color: #8f872e;
}

.notification.notice h4 { font-size: 19px; margin: 3px 0 15px 0; }
.notification.notice h4,
.notification.notice,
.notification.notice a,
.notification.notice strong {
	color: #3184ae
}

.notification.notice {
	background-color: #E9F7FE;
}

.notification.notice.large{
	padding: 32px 36px;
}

.notification strong { font-weight: 700; }
.notification a { text-decoration: underline; }


body .notification strong { border: none; }

.notification.success .close,
.notification.error .close,
.notification.warning .close,
.notification.notice .close {
	padding: 0px 9px;
	position: absolute;
	right: 0;
	top: 22px;
	display: block;
	height: 8px;
	width: 8px;
	cursor: pointer;
}

.notification.notice p span i { font-weight: 500; }
.notification a.button {
	float: right;
	color: #fff;
	margin-top: 3px;
}

.notification.notice a.button { background-color: #388fc5; }
.notification.warning a.button { background-color: #dfbe51; }
.notification.error a.button { background-color: #d34c4c; }
.notification.success a.button { background-color: #79ba38; }

.intro-cancel-button {
	padding: 5px 10px;
	display: block;
	background-color: #12130b;
	border-radius: 4px;
	margin-top: 10px;
	margin: 20px auto 0 auto;
	max-width: 100%;
	width: 240px;
	text-align: center;
	color: #ffffff;
}

.ui-helper-hidden-accessible {
	display: none !important;
}

.personInformation {
	display: block;
	box-sizing: border-box;
	padding: 15px 0px;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
}

#ui-id-1 {
	/*top: -2029px !important;*/
	z-index: 99999;
}

#close-date {
	height: 30px !important;
	color: #333;
	background-color: #eee;
	font-size: 10pt;
	margin: 0 4px;
	padding: 16px !important;
}
	#close-date i {
		position: absolute;
		right: auto;
		left: 50%;
		top: 50%;
		transform: translateX(-50%) translateY(-50%);
		font-size: 24px;
		color: inherit;
		opacity: 1;
	}
#close-date:hover {
	height: 30px !important;
	color: #fff; 
	background-color: #333; 
}
.ui-autocomplete {
	max-width: 100%;
	width: 320px;
	list-style-type: none;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 2px 12px rgb(0 0 0 / 9%);
	padding: 20px 0;
	margin: 0;
}
.ui-menu-item {
	margin: 0;
	padding: 5px 15px; 
}
.ui-menu-item a { 
	color: #333;
}
.ui-menu-item:hover {
	background-color: #fafafa;
	cursor: pointer;
}
.datepicker__month .datepicker__month-day {
	background-color: #fff;
	padding: 9px 7px;
	padding: 15px 14px ;
	font-size: 14px; 
	margin: 1px;
	color: #333;
}
.datepicker__month .datepicker__month-day--today {
	background-color: transparent;
	color: #484c55;
}

.datepicker__month .datepicker__month-day--first-day-selected, .datepicker__month .datepicker__month-day--last-day-selected {
	background-color: #eee; 
	border: 2px solid #665541;
}
.datepicker__month-day--lastMonth, .datepicker__month-day--nextMonth {
	visibility: hidden;
	border: none !important;
}
.datepicker__month .datepicker__month-day--selected {
	background-color: #eee; 
}
.datepicker__month .datepicker__month-day--invalid {
	background-color: #ffe9e9;
	color: #683b3b;
	border-radius: 0;
}
.datepicker__month .datepicker__month-button {
	background-color: #eeeeee;
	border-radius: 4px;
	color: #333;
	display: inline-block;
	padding: 5px 0;
	font-size: 0;
	line-height: 22px;
	margin: 3px;
	font-family: none;
	width: 36px;
	height: 36px;
	line-height: 26px;
}
.datepicker__month .datepicker__month-button:hover {
	background-color: #333;
	color: #fff;
}
.datepicker__month-button.datepicker__month-button--prev:before {
	font-family: 'Line-Awesome' !important;
	content: "\f111";
	font-weight: 300;
	font-size: 20pt;
}
.datepicker__month-button.datepicker__month-button--next:before {
	font-family: 'Line-Awesome' !important;
	content: "\f112";
	font-weight: 300;
	font-size: 20pt;
}

@media (max-width: 768px) {
	.datepicker__month--month2 {
		display: table!important;
		margin-top: 20px;
	}
	.datepicker {
		width: 100%;
		position: fixed !important;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		border-radius: 0;
		padding-top: 100px !important;
		overflow-y: scroll !important;
	}
	.datepicker__inner {
		padding: 10px;
	}
	.datepicker__topbar { 
		padding: 0 16px;
	}
	.datepicker__info--selected-label {
		display: none!important;
	}
	.datepicker__month .datepicker__month-day { 
		border: 6px solid #fff;
	}
	.datepicker__month .datepicker__month-button { 
		padding: 5px 10px;
		font-size: 14pt;
		line-height: 22px;
		margin: 3px 0; 
		width: 100%;
	}
	.datepicker__inner #close-date {
		height: 30px !important;
		color: #333;
		background-color: #eee;
		font-size: 10pt;
		margin: 0 4px;
		padding: 7px 12px !important;
		position: absolute;
		right: 5px;
		top: -5px;
		width: 30px;
		color: #fff;
		background-color: #333;
	}

	.ui-autocomplete { 
		min-height: 50vh;
	}

	.header-notifications-dropdown { 
		padding: 0 15px 0 15px;
	}

	.header-notifications-dropdown a.button {
		color: #fff;
		/* margin-left: auto; */
		display: flex;
		/* text-align: center; */
		justify-content: center;
		margin-bottom: 15px;
		margin-top: auto;
	}
	.header-notifications-dropdown {
		position: fixed;
		top: 0 !important;
		left: 0;
		right: 0 !important;
		width: 100% !important;
		bottom: 0 !important;
		padding-top: 110px;
		display: flex;
		flex-direction: column;
	}
}

.section-card {
	background: #f6f9fd;
	border-top: 1px solid #ebf1fa; 
}

	.section-card .col-xl-6 {
		display: flex;
		align-items: center;
	}

.bank-card {
	display: block;
	height: 36px;
	margin: 20px 25px 20px auto;
}

.agent-card {
	display: block;
	height: 76px;
	margin: 20px auto 20px 25px;
}

.dashboard-box {
	display: block;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	bottom: 30px;
	position: relative;
}

	.dashboard-box .headline {
		display: block;
		padding: 14px 20px;
		border-bottom: 1px solid #e4e4e4;
		position: relative;
	}

		.dashboard-box .headline h3 {
			font-size: 14px;
			font-weight: 600;
			color: #333;
			line-height: 26px;
			text-transform: uppercase;
		}

.dashboard-box .headline h3 i {
	color: #66676b;
	font-size: 21px;
	line-height: 0;
	position: relative;
	top: 2px;
	margin-right: 4px;
}


ul.dashboard-box-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

	ul.dashboard-box-list > li {
		border-bottom: 1px solid #e4e4e4;
		padding: 0;
		line-height: 26px; 
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		flex-flow: row wrap;
		transition: 0.3s;
	}

		ul.dashboard-box-list > li:before {
			font-family: "Feather-Icons";
			font-size: 26px;
			/* font-weight: 300; */
			line-height: 1;
			opacity: 1;
			transition: 0.3s;
			position: absolute;
			color: #ddd;
			content: '\e930';
			right: 7px;
		}

ul.dashboard-box-list > li:last-child {
	border-bottom: none;
}

ul.dashboard-box-list > li:hover {
	background-color: #fcfcfc;
}

.dashboard-list-item {
	display: flex;
	padding: 14px 20px;
	flex-direction: column;
	width: 100%;
}
.dashboard-list-item strong {
	color: #82bfd8;
}
.dashboard-list-item ul {
	list-style-type: none;
	padding: 0;
	font-size: 13px;
}


./*box_group {
	overflow: hidden;
}*/

	.box_group.half {
		float: left;
	}

	.box_group .slick-list { 
		overflow: visible!important;
	}

	.box_group .box {
		border-right: 2px solid #d2d2d2;
		border-bottom: 2px solid #d2d2d2;
		background: #fff;
		float: left;
		overflow: hidden;
		position: relative;
	}

		.box_group .box.last {
			border-right: none;
		}

		.box_group .box .table_like .cell {
			text-align: center; 
		}

		.box_group .box h3 {
			font-size: 22px; 
			font-weight: 400;
			margin: 0 0 10px;
			padding: 0;
			line-height: 30px;
			letter-spacing: 2px;
			text-transform: uppercase;
		}

		.box_group .box h4 {
			font-size: 16px;
			font-family: 'Roboto';
			font-weight: 400;
			margin: 0 0 10px;
			padding: 0;
			line-height: 30px;
			letter-spacing: 2px;
			text-transform: uppercase;
		}

		.box_group .box p {
			font-size: 16px;
			line-height: 25px;
			margin: 0 0 10px;
		}

			.box_group .box p.text {
				display: table-cell;
				vertical-align: bottom;
			}

		.box_group .box a.learn_more {
			display: inline-block;
			color: #82bfd8;
			border: 1px solid #82bfd8;
			padding: 10px 15px;
			line-height: 1em;
			letter-spacing: 1.5px;
			font-size: 14px;
		}

			.box_group .box a.learn_more:hover {
				background: #82bfd8;
				color: #fff;
			}

		.box_group .box.msg .table_like .cell {
			text-align: left;
		}

		.box_group .box.msg h3 {
			color: #665541;
			font-size: 21px;
		}

		.box_group .box.msg p {
			font-size: 13px;
			line-height: 18px;
			color: #000;
		}

		.box_group .box.launch img {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.box_group .box.launch .claim { 
			color: #fff;
			padding: 0;
			display: inline-block;
			position: relative;
			z-index: 2;
			width: 100%; 
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 0 40px;
		}

		.box_group .box.launch:hover .claim {
			background: rgb(0 0 0 / 36%);
			color: #fff;
		}

		.box_group .box.launch .claim h3 {
			font-size: 34pt;
			line-height: 38pt;
			letter-spacing: 1px;
			font-weight: 400;
			color: inherit;
			margin: 0;
			max-width: 50%;
			display: block;
			text-align: left;
			text-transform: capitalize;
			padding: 30px 0;
			font-family: 'Italiana', serif;
			text-shadow: 0 0 15px BLACK;
		}

		.box_group .box.launch .claim p {
			line-height: 0;
			font-size: 12px;
			display: inline-block;
			letter-spacing: 1.5px;
			margin: 0;
			padding: 0;
			font-family: 'Italiana', serif;
			display: flex;
			flex-direction: column;
			padding: 0 0 0 20px;
			border-left: 1px solid #fff;
		}
			.box_group .box.launch .claim p strong {
				font-size: 34pt;
				display: block;
				height: 33px;
				font-weight: 300;
			}

		.box_group .box.htl a, .box_group .box.launch a {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 10;
			background: url(img/transparent.gif);
			background: linear-gradient(to bottom, rgba(51, 51, 51, 0) 64%, rgb(52 39 26 / 78%) 100%);
		}

		.box_group .box.htl img, .box_group .box.launch img {
			image-rendering: -moz-crisp-edges;
		}

		.box_group .box.htl:hover img, .box_group .box.launch:hover img {
			-webkit-transform: scale(1.1);
			-moz-transform: scale(1.1);
			-ms-transform: scale(1.1);
			-o-transform: scale(1.1);
			transform: scale(1.1);
		}

		.box_group .box.htl .info {
			background: #434647;
			background: rgba(67,70,71,.7);
			background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 80%, rgba(234, 234, 234, 1) 100%);
			color: #fff;
			color: #434647;
			position: absolute;
			bottom: 3%;
			left: 3%;
			width: 94%;
			height: 82px;
			text-align: left;
		}

		.box_group .box.htl:hover .info {
			background: #434647;
		}

		.box_group .box.htl .info h3 {
			margin: 22px 0 4px 25px;
			padding: 0;
			font-weight: 400;
			letter-spacing: .5px;
			line-height: 1em;
			font-size: 18px;
			text-overflow: ellipsis;
			text-transform: Capitalize;
			width: 200px;
			white-space: nowrap;
			overflow: hidden;
		}

		.box_group .box.htl:hover .info h3 {
			color: #fff;
		}

		.box_group .box.htl ul {
			margin: 0 0 0 25px;
			padding: 0;
			list-style: none;
		}

			.box_group .box.htl ul li {
				margin: 0 12px 0 0;
				padding: 0;
				display: inline-block;
				font-size: 14px;
				line-height: 14px;
				font-family: 'Roboto';
				color: #a3a9ab;
			}

				.box_group .box.htl ul li span {
					margin: 0 7px 0 0;
					margin: 2px 7px 0 0;
					vertical-align: baseline;
				}

		.box_group .box.htl .info .price {
			position: absolute;
			width: 85px;
			height: 60px;
			top: 0;
			right: 0;
			padding: 22px 0 0;
			background: #4fb1a2;
			background: linear-gradient(to bottom, rgba(245, 245, 245, 1) 80%, rgba(255, 255, 255, 1) 100%);
			text-align: center;
			font-size: 22px;
			color: #D17F01;
			font-family: 'Roboto';
		}

			.box_group .box.htl .info .price span {
				display: block;
				font-size: 11px;
			}

		.box_group .box.htl .info .star {
			position: absolute;
			display: inline-block;
			height: 30px;
			line-height: 30px;
			min-width: 48px;
			top: -20px;
			left: 25px;
			background: #69cfbf;
			font-size: 14px;
			font-family: 'Roboto';
			text-align: center;
		}

			.box_group .box.htl .info .star em {
				font-size: 10px;
				font-style: normal;
				vertical-align: top;
				display: inline-block;
				margin: -2px 0 0 0;
			}

		.box_group .box.review {
			background: #69cfbf;
			color: #fff;
			padding: 18px;
		}

			.box_group .box.review .cell {
				border: 2px solid #4fb1a2;
			}

			.box_group .box.review h4 {
				margin: 0 0 20px;
			}

			.box_group .box.review h3 {
				font-size: 20px;
				margin: 0 0 30px;
			}

			.box_group .box.review h3 span {
				font-size: 60px;
				font-style: italic;
				display: block;
				margin: 15px 0;
			}

			.box_group .box.review a.read {
				display: inline-block;
				color: #2b7e71;
				border: 1px solid #2b7e71;
				padding: 10px 15px;
				line-height: 1em;
				letter-spacing: 1.5px;
				font-size: 14px;
			}

				.box_group .box.review a.read:hover {
					background: #2b7e71;
					color: #fff;
				}
.table_like {
	display: table;
	width: 100%;
	height: 100%;
	z-index: 10;
	position: absolute;
	top: 0;
	pointer-events: none;
}

	.table_like .cell {
		display: table-cell;
		vertical-align: bottom;
	}

.box_group .box.htl img, .box_group .box.launch img, a, button, input {
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	-webkit-backface-visibility: hidden;
}

.box_group .box .claim, .box_group .box.htl .info, .table_like {
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

 

	.claim {
		width: 548px;
	}

.popular-slick-carousel.box_group {
	margin: 6rem 0;
}
.popular-slick-carousel.box_group:after {
	position: absolute;
	top: -6rem;
	left: -5rem;
	--tw-bg-opacity: 1;
	background-color: rgba(255,255,255,0.5);
	opacity: .5;
	position: absolute;
	content: "";
	width: 36rem;
	height: 22rem;
	z-index: 0;
}
.popular-slick-carousel.box_group .slick-list {
	z-index: 1;
}
.popular-slick-carousel.box_group .box {
	width: 100%;
	max-width: 100%;
	padding-bottom: 100%;
}
.popular-slick-carousel .slick-slide {
	opacity: 0;
	transition: 1s all;
}

.popular-slick-carousel .slick-next {
	background-color: rgb(0 0 0 / 81%);
	/* box-shadow: 0 3px 202px 100px rgb(0 0 0); */
	width: auto;
	height: auto;
	padding: 2rem;
	border-radius: 0;
	margin-right: -2rem;
}

.popular-slick-carousel .slick-prev {
	background-color: #afa392;
	box-shadow: none;
	margin-left: -32px;
	border-radius: 0;
	width: auto;
	height: auto;
	padding: 2rem;
}

.popular-slick-carousel .slick-slide.slick-active {
	opacity: 1;
}
.popular-slick-carousel .slick-slide.slick-active + .slick-slide {
	opacity: 1;
}

.box_group {
	width: 100%; 
}
.box_group_full {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.box_group.half {
	width: 513px;
}

		.box_group.two_thirds {
			width: 684px;
			overflow: hidden;
			float: left;
		}

		.box_group.one_third {
			width: 340px;
			overflow: hidden;
			float: left;
		}

		.box_group .box {
			/*			height: 340px;
			max-width: 33.333%;*/
			width: 100%;
			max-width: 50%; 
			padding-bottom: 40%;
		}

			.box_group .box.review {
				width: 304px;
				height: 304px;
			}

			.box_group .box p.text {
				height: 170px;
			}
		.box_group .villas-slick-carousel {
			position: absolute;
			width: 100%;
			height: 100%;
		}
			.box_group .villas-slick-carousel > *, .box_group .villas-slick-carousel .slick-track { 
					height: 100% !important;
				}


			.chat {
				position: absolute;
				width: 300px;
				z-index: 101;
				overflow: hidden;
				box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
				background-color: #fff;
				display: -webkit-box;
				display: flex;
				-webkit-box-pack: justify;
				justify-content: space-between;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				flex-direction: column;
				bottom: 0;
				right: 61px;
				position: fixed;
				width: 300px;
			}

.chat-close {
	color: #ffffff;
	display: block;
	float: right;
	font-size: 22px;
	height: 21px;
	line-height: 21px;
	margin: 2px 0 0 0;
	text-align: center;
	width: 22px;
}

.videochat {
	position: absolute;
	width: 100%;
	top: 47px;
	left: 0;
	height: calc( 100% - 47px );
	z-index: 1;
	background: url(../images/videochat.png) no-repeat;
	background-position-x: center;
	background-size: cover;
}
.videochat.hidden {
	display: none;
}
	/*--------------------
	  Chat Title
	  --------------------*/
	.chat-title {
		-webkit-box-flex: 0;
		flex: 0 1 45px;
		position: relative;
		z-index: 2;
		background: #9e9387;
		color: #fff;
		text-transform: uppercase;
		text-align: left;
		padding: 10px 10px 10px 20px;
		cursor: pointer;
	}

	.chat-title h1, .chat-title h2 {
		font-weight: normal;
		font-size: 16px;
		color: #fff;
		margin: 0;
		padding: 0;
	}

	.chat-title h2 {
		color: rgba(255, 255, 255, 0.5);
		font-size: 8px;
		letter-spacing: 1px;
	}

	.chat-title .avatar {
		position: absolute;
		z-index: 1;
		top: 8px;
		left: 9px;
		/* border-radius: 30px; */
		width: 30px;
		height: 36px;
		overflow: hidden;
		margin: 0;
		padding: 0;
	}

		.chat-title .avatar img {
			width: 100%;
			height: auto;
		}

.chat .mCSB_container {
	overflow: hidden;
}
/*--------------------
	  Messages
	  --------------------*/
.messages {
	-webkit-box-flex: 1;
	flex: 1 1 auto;
	height: 300px;
	color: rgba(255, 255, 255, 0.5);
	overflow: hidden;
	position: relative;
	width: 100%;
}

	.messages .messages-content {
		position: absolute;
		top: 0;
		left: 0;
		height: 101%;
		width: 100%;
		padding: 0 5px;
	}

	.messages .message {
		clear: both;
		float: left;
		padding: 6px 10px 7px;
		border-radius: 10px 10px 10px 0;
		background: rgba(0, 0, 0, 0.3);
		background: #6e7c82;
		color: #fff;
		font-weight: 600;
		margin: 8px 0;
		font-size: 12px;
		line-height: 1.4;
		margin-left: 5px;
		position: relative;
		text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
		background-color: #fff;
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
		color: #4a4a4a;
	}

		.messages .message a {
			color: #0595d1;
			font-weight: 700;
		}

	.messages .button {
		clear: both;
		float: left;
		padding: 6px 10px 7px;
		border-radius: 10px;
		background: rgba(0, 0, 0, 0.3);
		background: #34414d;
		color: #fff;
		margin: 8px 0;
		font-size: 12px;
		line-height: 1.4;
		margin-left: 5px;
		position: relative;
		text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
		cursor: pointer;
	}

		.messages .button:hover {
			background-color: #60707e;
		}

	.messages .message .timestamp {
		position: absolute;
		bottom: -15px;
		font-size: 9px;
		color: rgba(255, 255, 255, 0.3);
	}

	.messages .message::before {
		content: '';
		position: absolute;
		bottom: -6px;
		border-top: 6px solid #fff;
		left: 0;
		border-right: 7px solid transparent;
	}

	.messages .message .avatar {
		position: absolute;
		z-index: 1;
		bottom: -15px;
		left: -35px;
		border-radius: 30px;
		width: 30px;
		height: 30px;
		overflow: hidden;
		margin: 0;
		padding: 0;
		border: 2px solid rgba(255, 255, 255, 0.24);
	}

		.messages .message .avatar img {
			width: 100%;
			height: auto;
		}

	.messages .message.message-personal {
		float: right;
		color: #fff;
		text-align: right;
		background: linear-gradient(120deg, #248A52, #257287);
		border-radius: 10px 10px 0 10px;
	}

		.messages .message.message-personal::before {
			left: auto;
			right: 0;
			border-right: none;
			border-left: 5px solid transparent;
			border-top: 4px solid #257287;
			bottom: -4px;
		}

	.messages .message:last-child {
		margin-bottom: 30px;
	}

	.messages .message.new {
		-webkit-transform: scale(0);
		transform: scale(0);
		-webkit-transform-origin: 0 0;
		transform-origin: 0 0;
		-webkit-animation: bounce 500ms linear both;
		animation: bounce 500ms linear both;
	}

	.messages .message.loading::before {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		content: '';
		display: block;
		width: 3px;
		height: 3px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.5);
		z-index: 2;
		margin-top: 4px;
		-webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
		animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
		border: none;
		-webkit-animation-delay: .15s;
		animation-delay: .15s;
	}

	.messages .message.loading span {
		display: block;
		font-size: 0;
		width: 20px;
		height: 10px;
		position: relative;
	}

		.messages .message.loading span::before {
			position: absolute;
			top: 50%;
			left: 50%;
			-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
			content: '';
			display: block;
			width: 3px;
			height: 3px;
			border-radius: 50%;
			background: rgba(255, 255, 255, 0.5);
			z-index: 2;
			margin-top: 4px;
			-webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
			animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
			margin-left: -7px;
		}

		.messages .message.loading span::after {
			position: absolute;
			top: 50%;
			left: 50%;
			-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
			content: '';
			display: block;
			width: 3px;
			height: 3px;
			border-radius: 50%;
			background: rgba(255, 255, 255, 0.5);
			z-index: 2;
			margin-top: 4px;
			-webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
			animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
			margin-left: 7px;
			-webkit-animation-delay: .3s;
			animation-delay: .3s;
		}

/*--------------------
	  Message Box
	  --------------------*/
.message-box {
	-webkit-box-flex: 0;
	flex: 0 1 40px;
	width: 100%;
	background: #dfdfdf;
	padding: 0;
	position: relative;
}

	.message-box .message-input {
		background: none;
		border: none;
		outline: none !important;
		resize: none;
		color: #2c2c2c;
		font-size: 13px;
		margin: 0;
		padding-right: 20px;
		width: 265px;
		min-height: 0;
		padding: 0;
		padding: 10px;
		padding-right: 82px;
		line-height: 17px;
	}

	.message-box textarea:focus:-webkit-placeholder {
		color: transparent;
	}

	.message-box .message-submit {
		position: absolute;
		z-index: 1;
		top: 9px;
		right: 10px;
		color: #ffffff;
		border: none;
		background: #665541;
		font-size: 12px;
		font-weight: 600;
		text-transform: uppercase;
		line-height: 1;
		padding: 6px 10px;
		border-radius: 10px;
		outline: none !important;
		-webkit-transition: background .2s ease;
		transition: background .2s ease;
	}

		.message-box .message-submit:hover {
			background: #0eaf70;
			color: #fff;
		}

/*--------------------
	  Custom Srollbar
	  --------------------*/
.mCSB_scrollTools {
	margin: 1px -3px 1px 0;
	opacity: 0;
}

.mCSB_inside > .mCSB_container {
	margin-right: 0px;
	padding: 0 10px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: rgba(0, 0, 0, 0.5) !important;
}

/*--------------------
	  Bounce
	  --------------------*/
@-webkit-keyframes bounce {
	0% {
		-webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	4.7% {
		-webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	9.41% {
		-webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	14.11% {
		-webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	18.72% {
		-webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	24.32% {
		-webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	29.93% {
		-webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	35.54% {
		-webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	41.04% {
		-webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	52.15% {
		-webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	63.26% {
		-webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	85.49% {
		-webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	100% {
		-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}
}

@keyframes bounce {
	0% {
		-webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	4.7% {
		-webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	9.41% {
		-webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	14.11% {
		-webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	18.72% {
		-webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	24.32% {
		-webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	29.93% {
		-webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	35.54% {
		-webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	41.04% {
		-webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	52.15% {
		-webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	63.26% {
		-webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	85.49% {
		-webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}

	100% {
		-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
		transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	}
}

@-webkit-keyframes ball {
	from {
		-webkit-transform: translateY(0) scaleY(0.8);
		transform: translateY(0) scaleY(0.8);
	}

	to {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@keyframes ball {
	from {
		-webkit-transform: translateY(0) scaleY(0.8);
		transform: translateY(0) scaleY(0.8);
	}

	to {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}


@media (min-width: 1240px) {

	.container {
		max-width: 1312px;
	}
}

.rental-overview {
	margin-top: 2rem;
	margin-bottom: 1rem
}

@media(min-width: 640px) {
	.rental-overview {
		margin-top: 2rem;
		margin-bottom: 2rem
	}
}

.rental-overview__inner {
	border-bottom-width: 1px;
	--tw-border-opacity: 1;
	border-color: rgba(203,169,71,var(--tw-border-opacity))
}

.rental-overview__number {
	font-weight: 300;
	line-height: 1;
	--tw-text-opacity: 1;
	color: rgba(203,169,71,var(--tw-text-opacity));
	font-family: 'Italiana', serif;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 64px;
}

@media(min-width: 640px) {
	.rental-overview__number {
		font-weight: 100
	}
}

.rental-overview__number {
	font-size: 4.5rem
}

@media(min-width: 567px) {
	.rental-overview__number {
		font-size: 7.5rem
	}
}

.rental-overview__label {
	margin-bottom: .25rem;
	font-family: GrandSlang,serif;
	font-size: 1.125rem;
	text-transform: capitalize
}

@media(min-width: 640px) {
	.rental-overview__label {
		margin-bottom: .75rem;
		font-size: 1.875rem
	}
}

.rental-highlights__list {
	display: flex;
	flex-wrap: wrap;
	font-family: GrandSlang,serif;
	font-size: 1.75rem
}

@media(min-width: 640px) {
	.rental-highlights__list {
		font-size: 2.25rem
	}
}

@media(max-width: 375px) {
	.rental-highlights__list {
		font-size: 1.4rem
	}
}
.rental-overview__point {
	text-align: center;
}
.rental-highlights__list span:not(:last-child):after {
	padding-right: .5rem;
	--tw-text-opacity: 1;
	color: rgba(203,169,71,var(--tw-text-opacity));
	content: " / "
}