@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap");

body {
	background: #fff;
	padding-top: 60px;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	padding: 0 !important;
}

a {
	color: #484848;
}

.lazy{
	background: #fff;
}

.flag-icon {
	border-radius: 50%;
}

.color-red {
	color: red;
}

/*
pagination
*/

.pagin-stat {
	text-align: center;
	margin-top: 32px;
}

.pagination {
	border: none;
}

.pagination .page-item {
	margin: 2px;
	border-radius: 30px;
}

.pagination .page-item a {
	outline: none;
	color: #DB2630;
	border-radius: 30px;
	min-width: 30px;
	height: 30px;
}

.pagination .page-item a:nth-child(1) {
	border-radius: 30px;
	border: none;
}

.pagination .page-item a:hover {
	background: #DB2630;
	color: #fff;
}

.pagination .page-item.active a {
	background: #DB2630;
}

/*
Typography
*/
p {
	font-size: 16px;
	color: #70707a;
}

h1, h2, h3, h4 {
	color: #484848;
	margin: 0;
	padding: 0;
	font-weight: 600;
}

h1 {
	font-size: 48px;
	font-weight: 700;
}

h2 {
	font-size: 40px;
	font-weight: 700;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 24px;
}

.hint-text {
	font-size: 12px;
	color: #999;
}

.flex-1 {
	flex: 1;
}

/*
Container
*/
.container {
	max-width: 1190px;
}

.container.md {
	max-width: 1150px;
}

main {
	position: relative;
	min-height: 300px;
}

.form-control {
	border: 1px solid #ddd;
	border-radius: 2px;
}

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters > [class^="col-"], .row.no-gutters > [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}

.row.gutters-1 {
	margin-right: 1px;
	margin-left: 1px;
}

.row.gutters-1 > [class^="col-"], .row.gutters-1 > [class*=" col-"] {
	padding-right: 1px;
	padding-left: 1px;
}

.row.gutters-2 {
	margin-right: 2px;
	margin-left: 2px;
}

.row.gutters-2 > [class^="col-"], .row.gutters-2 > [class*=" col-"] {
	padding-right: 2px;
	padding-left: 2px;
}

/*
UL Menu List
*/
.menu-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

hr {
	height: 1px;
	width: 100%;
	display: block;
	background: #EBEDED;
	border: 0;
	outline: 0;
	position: relative;
}

.hr-or hr:after {
	content: attr(data-title);
	padding: 8px;
	left: 50%;
	text-align: center;
	transform: translateY(-50%) translateX(-50%);
	top: 50%;
	text-transform: capitalize;
	background: #fff;
	position: absolute;
}

.sticky-parent {
	position: relative;
	display: block;
}

/*
Flat icon
*/
.small-icon:before, .small-icon:before,
.small-icon:after, .small-icon:after {
	font-size: 18px;
}

.x-small-icon:before, .x-small-icon:before,
.x-small-icon:after, .x-small-icon:after {
	font-size: 12px;
}

.lg-icon:before, .lg-icon:before,
.lg-:after, .lg-icon:after {
	font-size: 30px;
}

.img-square {
	position: relative;
	overflow: hidden;
	padding-bottom: 100%;
	background: red;
}

.img-square img {
	position: absolute;
	height: 100%;
	width: 100%;
	object-position: center;
	object-fit: cover;
}

.wp-bw {
	word-wrap: break-word;
}


.owl-carousel {
	position: relative;
}

.owl-carousel .owl-nav {
	position: absolute;
	top: 28%;
	width: 100%;
	transform: translateY(-150%);
}

.owl-carousel .owl-nav .owl-next {
	right: -30px;
}

.owl-carousel .owl-nav .owl-prev {
	left: -30px;
}

.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	outline: none;
	box-shadow: rgba(0, 0, 0, 0.14) 0px 1px 1px 1px;
	background: #fff !important;
}

.owl-carousel .owl-nav .owl-next span, .owl-carousel .owl-nav .owl-prev span {
	font-size: 52px;
	line-height: 0;
	font-weight: 200;
}

.owl-carousel .owl-nav .owl-next.disabled, .owl-carousel .owl-nav .owl-prev.disabled {
	visibility: hidden;
}

/*
Success Animation
*/
@keyframes scaleAnimation {
	0% {
		opacity: 0;
		transform: scale(1.5);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes drawCircle {
	0% {
		stroke-dashoffset: 151px;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes drawCheck {
	0% {
		stroke-dashoffset: 36px;
	}
	100% {
		stroke-dashoffset: 0;
	}
}

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

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

#successAnimationCircle {
	stroke-dasharray: 151px 151px;
	stroke: forestgreen;
}

#successAnimationCheck {
	stroke-dasharray: 36px 36px;
	stroke: forestgreen;
}

#successAnimationResult {
	fill: forestgreen;
	opacity: 0;
}

#successAnimation.animated {
	animation: 1s ease-out 0s 1 both scaleAnimation;
}

#successAnimation.animated #successAnimationCircle {
	animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
}

#successAnimation.animated #successAnimationCheck {
	animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
}

#successAnimation.animated #successAnimationResult {
	animation: 0.3s linear 0.9s both fadeIn;
}


.countdown {
	display: inline-flex;
	padding: 5px;
	align-items: center;
}

.countdown .v {
	font-size: 45px;
	text-align: center;
}

.countdown .v span {
	display: block;
	font-size: 12px;
	color: #888;
	text-align: center;
	text-transform: uppercase;
}

.countdown .s {
	margin: 8px;
}

/*
BUTTONS                       *
*/
.btn {
	border-radius: 30px;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn.no-round {
	border-radius: 0;
}

.btn.round-1 {
	border-radius: 4px;
}

.btn.btn-default {
	background: #fff;
	color: #1b1e21;
}

.btn.btn-shadow {
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.14);
}

.btn.btn-primary {
	background: #FFBB00;
	border-color: #FFBB00;
	color: #fff;
	font-size: 16px;
	text-transform: capitalize;
    padding: 18px;
}

.btn.btn-book-now {
	background: #DB2630;
	border-radius: 4px;
	color: #fff;
}

/*
HEADER
*/
header {
	/* Navbar */
}

header .navbar {
	background: #fff;
	min-height: 64px;
	color: #70707a;
	transition: all 300ms linear;
	border-bottom: 1px solid #EBEDED;
}

header .navbar.sticky {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

header .navbar .user-profile-img {
	width: 32px;
	height: 32px;
	position: absolute;
	object-position: center;
	object-fit: cover;
	border-radius: 50%;
	transform: translateY(-7px);
}

header .navbar .nav-item .nav-link {
	color: #484848;
}

header .navbar .nav-item .dropdown-menu {
	border: none;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
	border-radius: 0px;
}

header .navbar .nav-item .dropdown-menu .dropdown-item {
	font-size: 14px;
}

header .navbar .nav-item .dropdown-menu a {
	text-decoration: none;
}
header .navbar .nav-item .dropdown-menu img {
	margin-right: 10px;
}

/*
MAIN HOME SEARCH
*/
.main-home-search {
	width: 100%;
	max-width: 600px;
	height: 58px;
	position: relative;
	margin-top: 16px;
	background: #fff;
	border-radius: 4px;
	transition: all ease 250ms;
	border: 1px solid #EBEDED;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
	align-items: center;
	display: flex;
}

.main-home-search.active {
	max-width: 800px;
}

.main-home-search .search-icon {
	margin-left: 16px;
}

.main-home-search .search-icon i {
	color: rgba(112, 112, 122, 0.6);
	font-size: 25px;
}

.main-home-search .search-input {
	background: transparent;
	border: 0;
	width: 100%;
	outline: none;
	height: 48px;
	margin: 5px 16px;
	font-weight: 400;
	font-size: 16px;
}

.input-theme1 {
    line-height: 54px;
    display: block;
	height: 60px;
}
.number-input a.first {
	right: 40px;
}
.number-input a.last {
	right: 5px;
}
.number-input a {
	display: block;
	position: absolute;
	top: 0;
	width: 35px;
	height: 56px;
	text-align: center;
	line-height: 56px;
	cursor: pointer;
}
.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.main-home-search .search-result-drop-down {
	width: calc(100% + 2px);
	min-height: 280px;
	background: #fff;
	position: absolute;
	top: 54px;
	left: -1px;
	border-radius: 0 0 4px 4px;
	box-shadow: rgba(26, 26, 29, 0.3) 0 15px 46px -10px;
	border: 1px solid #EBEDED;
	z-index: 1000;
	display: none;
}

.main-home-search .search-result-drop-down.show {
	display: block;
}

.main-home-search .search-result-drop-down .result-list .search-result-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	padding: 8px 16px;
	text-shadow: none;
	font-weight: 400;
	color: #484848;
	cursor: pointer;
	font-size: 14px;
}

.main-home-search .search-result-drop-down .result-list .search-result-item i {
	color: #35454D;
}

.main-home-search .search-result-drop-down .result-list .search-result-item:hover {
	background: #f8f8f8;
}

/*
PAGE HERO
*/
.page-hero {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	background: transparent;
	height: 570px;
	text-align: right;
}

.page-hero.sm {
	height: 280px;
}

.page-hero.sm .parallax-holder {
	height: 280px;
}

.page-hero.no-overflow {
	/* overflow: initial; */
	overflow: hidden;
}
.page-hero.overflow {
	overflow: visible;
}

.page-hero .hero-title {
	font-size: 70px;
	line-height: normal;
}

.page-hero .parallax-holder {
	display: block;
	width: 100%;
	height: 580px;
	overflow: hidden;
	position: absolute;
}

.page-hero.overlay:after {
	content: "";
	background: linear-gradient(-165deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.99));
	top: 0;
	left: 0;
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
}

/*.page-hero.overlay.overlay-blue:after {*/
	/*background: linear-gradient(0deg, rgba(0, 155, 255, 0) 40%, #1063cc 100%);*/
/*}*/

.page-hero .overlay-text {
	position: absolute;
	float: left;
	display: block;
	text-align: left;
	width: 100%;
	height: 100%;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	bottom: 0;
	z-index: 1000;
	color: #fff;
}

.page-hero .overlay-text i, .page-hero .overlay-text .btn {
	text-shadow: none;
}

.page-hero .overlay-text h1, .page-hero .overlay-text p {
	color: #fff;
}

.page-hero .overlay-text.full-h .container {
	height: 560px;
}

.page-hero .overlay-text.full-h .container .row {
	height: 560px;
}

.page-hero .overlay-text.full-h .container .row .col- * {
	height: 560px;
}

.page-hero .bg-parallax {
	/*max-height: 240px;*/
	object-fit: cover;
	object-position: bottom;
	width: 100%;
	/*margin-top: -10%;*/
}

.page-hero .left-bottom {
	z-index: 1000;
	position: absolute;
	left: 16px;
	bottom: 24px;
}

.page-hero .top-right {
	z-index: 1000;
	position: absolute;
	right: 16px;
	top: 24px;
}
#reset-date {
	color: #6f6f71;
	cursor: pointer;
}

.page-hero .jarallax-img{
    width: 101% !important;
}
/*
SECTION
*/
.section {
	/*padding: 64px 0;*/
	padding-top: 120px;
}

.section.grey {
	background: #F8F8F8;
}

.section.img {
	background: fixed center;
	background-size: cover;
	position: relative;
}

.section.img .container {
	z-index: 20;
	position: relative;
}

.section.img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	z-index: 1;
}

.section.md {
	padding-top: 44px;
}

.section.sm {
	padding: 16px 0;
}

.section.page-top-bar {
	padding: 16px 0;
	border-bottom: 1px solid #EBEDED;
}

.list-card {
	width: 100%;
	margin: 16px 0;
	display: inline-block;
    cursor: pointer;
}

.list-card .img {
	box-shadow: 0 8px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	border-radius: 3px;
	background: #D8D8D8;
	display: block;
	height: 200px;
	margin-bottom: 8px;
}

.list-card .img img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 200px;
}

.list-card .info {
	margin: 8px 0;
}

.list-card .info .title {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.list-card .info .descrtiption {
	font-size: 14px;
	color: #70707a;
}

.travel-photos-list-card {
	width: 100%;
	margin: 16px 0;
	display: inline-block;
}

.travel-photos-list-card .img {
	box-shadow: 0 8px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	background: #D8D8D8;
	display: block;
	height: 200px;
	margin-bottom: 8px;
}

.travel-photos-list-card .img img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 200px;
}

/*
WIDGET
*/
.widget {
	margin: 32px 0;
	border: 1px solid #EBEDED;
	border-radius: 4px;
	background: #fff;
}

.widget.w600 {
	max-width: 600px;
}

.widget.sm .header {
	padding: 16px 16px;
}

.widget.sm .body {
	padding: 16px 16px;
}

.widget .header {
	padding: 16px 32px;
}

.widget .header .title {
	font-size: 18px;
	font-weight: 600;
}

.widget .body {
	padding: 16px 32px;
}

.sidebar-widget {
	margin: 8px 0;
}

.sidebar-widget .title {
	font-size: 16px;
	color: #35454D;
	font-weight: 500;
	margin-bottom: 8px;
	margin-top: 16px;
	text-transform: capitalize;
}

.sidebar-widget .list-items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-widget .list-items .list-items-item {
	display: flex;
	align-items: center;
}

.sidebar-widget .list-items .list-items-item .info {
	display: flex;
	flex-direction: column;
}

.sidebar-widget .list-items .list-items-item .info .title {
	font-size: 11px;
	max-width: 130px;
	margin: 0;
}

.sidebar-widget .list-items .list-items-item img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	object-position: center;
}

.sidebar-widget .list-items .list-items-item i {
	margin-right: 8px;
}

/*
ICHECK
*/
.i-check {
	width: 20px;
	height: 20px;
	line-height: 18px;
	top: 2px;
}

/*
MODAL
*/
.modal-backdrop.show {
	opacity: .7;
}

.modal .modal-content {
	border: 0;
	border-radius: 0;
}

/*
BREADCRUMB
*/
.breadcrumb {
	background: transparent;
	padding: 0;
}

.page-hero .breadcrumb .breadcrumb-item a {
	color: #fff;
}

.page-hero .breadcrumb .breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb .breadcrumb-item:before {
	color: #fff;
}

/*
BLOG
*/
.blog-card {
	margin: 16px 0;
	cursor: pointer;
}

.blog-card .post-img {
	width: 100%;
	height: 200px;
	margin-bottom: 16px;
}

.blog-card .post-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
}

.blog-card .post-title {
	margin-bottom: 8px;
}

.blog-card .post-info {
	display: flex;
	align-items: center;
	font-size: 11px;
}

.blog-card .post-info .post-date {
	flex: 0.5;
}

.blog-card .post-info .post-number-of-comments {
	flex: .5;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.blog-card .post-info .post-number-of-comments .comment-icon {
	width: 14px;
	height: 14px;
	opacity: .7;
	background: url(../icons/comments.svg) no-repeat center;
	background-size: contain;
	margin-right: 8px;
}

.blog-comments-list .blog-comment {
	border: 1px solid #EBEDED;
	border-radius: 0 20px 20px;
	margin: 8px 0;
	padding: 16px;
}

.blog-comments-list .blog-comment .media-body .blog-comment {
	background: #EBEDED;
}

.blog-comments-list .blog-comment h5 {
	font-size: 14px;
}

.blog-comments-list .blog-comment .comment-author {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
}

.blog-comments-list .blog-comment .blog-comment-content {
	font-size: 14px;
}

.blog-comments-list .blog-comment .comment-like-btn {
	color: #DB2630;
}

/*
BOOKING HISTORY
*/
.booking-history {
	width: 100%;
	padding-left: 24px;
	margin-bottom: 24px;
	border-left: 2px solid #EBEDED;
	position: relative;
}

.booking-history .booking-history-list-card {
	position: relative;
	padding: 16px;
	border-radius: 4px;
	margin: 8px 0;
	display: flex;
	align-items: start;
	transition: all ease 250ms;
	cursor: pointer;
}

.booking-history .booking-history-list-card .details-info {
	flex: 1;
}

.booking-history .booking-history-list-card .details-info .cost {
	font-size: 30px;
}

.booking-history .booking-history-list-card .details-info .cost .small {
	font-size: 11px;
}

.booking-history .booking-history-list-card .details-info .location {
	font-size: 11px;
}

.booking-history .booking-history-list-card .details-info .title {
	font-size: 18px;
}

.booking-history .booking-history-list-card .type-text {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
}

.booking-history .booking-history-list-card:before {
	content: "";
	width: 10px;
	height: 10px;
	background: #00A1F3;
	border-radius: 50%;
	display: block;
	position: absolute;
	left: -31px;
	top: 50%;
	margin-top: -5px;
}

.booking-history .booking-history-list-card.hotel:before {
	background: #00A1F3;
}

.booking-history .booking-history-list-card.hotel .type-text {
	color: #00A1F3;
}

.booking-history .booking-history-list-card.hotel:hover {
	background: rgba(0, 161, 243, 0.2);
}

.booking-history .booking-history-list-card.flight:before {
	background: #FFBB00;
}

.booking-history .booking-history-list-card.flight .type-text {
	color: #FFBB00;
}

.booking-history .booking-history-list-card.flight:hover {
	background: rgba(255, 187, 0, 0.2);
}

.booking-history .booking-history-list-card.experince:before {
	background: #DB2630;
}

.booking-history .booking-history-list-card.experince .type-text {
	color: #DB2630;
}

.booking-history .booking-history-list-card.experince:hover {
	background: rgba(219, 38, 48, 0.2);
}

/*
HOTEL
*/

.hotel-facilities {
	padding: 4px 16px;
	margin: 8px 0;
	border-radius: 4px;
	transition: all ease 250ms;
	border: 1px solid #EBEDED;
	/*cursor: pointer;*/
}

.hotel-facilities:hover {
	/*background: rgba(235, 237, 237, 0.7);*/
}

.hotel-facilities i {
	margin-right: 8px;
}

.hotel-facilities img {
	width: 30px;
    height: 30px;
	object-fit: contain;
	margin-right: 5px;
}

.hotel-list-card {
	background: #fff;
	margin: 24px 0;
	border: 1px solid #EBEDED;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
	transition: all ease 250ms;
}

.hotel-list-card:hover {
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
}

.hotel-list-card:nth-child(1) {
	margin-top: 0;
}

.hotel-list-card .hotle-cover-img-box {
	position: relative;
	width: 100%;
	height: 100%;
}

.hotel-list-card .hotle-cover-img-box .wish-btn {
	position: absolute;
	right: 16px;
	top: 16px;
	cursor: pointer;
}

.hotel-list-card .hotle-cover-img-box .wish-btn.check i {
	color: #DB2630;
	opacity: 1;
}

.hotel-list-card .hotle-cover-img-box .wish-btn i {
	pointer-events: none;
	font-size: 25px;
	opacity: .6;
	color: black;
	text-shadow: 0 2px #fff, 2px 0 #fff, -2px 0 #fff, 0 -2px #fff;
}

.hotel-list-card .hotle-cover-img-box .hotel-cover-img {
	width: 100%;
	height: 100%;
	min-height: 187px;
	margin: 0;
	object-fit: cover;
	object-position: center;
	padding: 0;
}

.hotel-list-card .hotel-location {
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #888;
	margin: 8px 0;
}

.hotel-list-card .hotel-description {
	font-size: 12px;
	margin: 8px 0;
}

/*
LOGIN FORM
*/
.login-form, .register-form, .reset-password-form {
	padding: 32px;
}

.login-form .title, .register-form .title, .reset-password-form .title {
	margin-bottom: 32px;
}

.login-form .icon, .register-form .icon, .reset-password-form .icon {
	height: 20px;
}

/*
USER  PROFILE
*/
.edit-profile-img {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
}

.edit-profile-img .profile-img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	object-position: center;
}

.profile-user-profile-img {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
}

.profile-user-profile-img img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	object-position: center;
}

/*
REVIEW
*/
.review-star-rate {
	display: flex;
	color: rgba(0, 0, 0, 0.1);
}

.review-star-rate .rate.full i {
	color: #FFBB00;
}

.review-star-rate.md .rate i {
	font-size: 16px;
}

.review-star-rate.small .rate i {
	font-size: 12px;
}

/*
FAQ
*/
.faq-list .faq-section-title {
	font-size: 24px;
	margin: 16px 0;
	text-transform: capitalize;
	font-weight: 600;
}

.faq-list .card {
	border-radius: 0;
	border: 1px solid #EBEDED;
	margin: 8px 0;
}

.faq-list .card .card-header {
	background: #f4f4f4;
	border-radius: 0;
	border: 0;
}

/*
FOOTER
*/
footer {
	padding: 80px 0 10px 0;
	background: #fff;
	color: #484848;
	/*border-top: 1px solid #EBEDED;*/
}
footer p {
	font-size: 14px;
}
footer .hr{
	padding: 10px 0 30px 0;
	background: #fff;
	color: #484848;
	border-top: 1px solid #EBEDED;
}

footer .footer-title {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 8px;
}

footer .footer-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer .footer-nav .footer-nav-item {
	padding: 0;
	margin-bottom: 8px;
}

footer .footer-nav .footer-nav-item a.footer-link {
	color: #484848;
}

footer .footer-download-app .title {
	font-size: 14px;
	text-transform: capitalize;
}

footer .footer-download-app .stores {
	display: flex;
}

footer .footer-download-app .stores .store {
	margin: 8px;
}

footer .footer-download-app .stores .store:nth-child(1) {
	margin-left: 0;
}

footer .footer-payment-methods .title {
	font-size: 14px;
	text-transform: capitalize;
}

footer .footer-payment-methods .payments {
	display: flex;
}

footer .footer-payment-methods .payments .payment {
	margin: 8px;
}

footer .footer-payment-methods .payments .payment:nth-child(1) {
	margin-left: 0;
}

footer .social-network {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

footer .social-network li {
	padding: 4px;
}

footer .social-network li a {
	color: rgba(72, 72, 72, 0.6);
}

footer .social-network li a i {
	font-size: 23px;
}
p.help-block.help-block-error {
	color: red;
	/*color: #fff;*/
	text-align: left;
	font-size: 12px;
}

.pblock {
    margin-top: 15px;
}
.pblock .pbi{
    padding: 10px 0 10px 0;
}
.pblock .pbi-total{
	border-top: 1px solid rgb(228, 229, 230);
}
.pblock .pbi-total .bold {
	font-weight: 600;
}

.discount_code_wrap {
	margin-top: 20px;
}
.discount_code_wrap .discount_code_cb {
	float: left;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
}
.discount_code_wrap .input_wrap {
	position: relative;
}
.discount_code_wrap [name=discount_code] {
	padding-right: 80px;
}
.discount_code_wrap .discount_code_check {
	position: absolute;
    right: 2px;
    top: 2px;
    border-radius: 2px;
    border: 0;
    height: calc(100% - 4px);
}

.hr-or {
	position: relative;
}
.hr-or hr {
	background-color: rgb(228, 229, 230);
}
.hr-or div {
	position: absolute; top: -15px; padding: 5px 10px; left: 50%; transform: translateX(-50%); background-color: white; color: rgb(111, 111, 113);
}

.proceed-to-payment {
	border: none; display: block; border-radius: 2px; color: white; position: relative; user-select: none; font-size: 16px; font-weight: 500;
	line-height: 22px; padding: 14px 32px; width: 100%; text-align: center; margin-top: 15px; cursor: pointer;
}

.book-on-abnb {
	display: block;
	border-radius: 2px; color: rgb(69, 70, 71);
	position: relative; user-select: none; font-size: 16px; font-weight: 500; line-height: 22px; padding: 14px 32px; background-color: rgb(228, 229, 230); width: 100%; text-align: center; margin-top: 15px; cursor: pointer;
}


@media screen and (max-width : 768px){
	.page-hero {
		display: block;
		width: 100%;
		position: relative;
		overflow: hidden;
		background: transparent;
		height: 200px;
		text-align: right;
	}
	.page-hero.home {
		min-height: 680px;
	}
	.page-hero .left-bottom {
		z-index: 1000;
		/* position: absolute; */
		left: 16px;
		top: 120px;
	}
	.filter-bar .select-guests-wrap .calentim-box-arrow-top {
		display: none !important;
	}
	.filter-bar .select-guests-wrap #select-guests-dd {
		bottom: 45px !important;
    	top: unset !important;
	}
}

.map-wrapper {
	display: none;
	float: right;
	width: 33%;
}

.map-wrapper.floating {
	position: fixed;
	bottom: 10px;
}

#listing-map {
	height: 100%;
}

.booking-price-block #direct-inquiry-modal-open{
	cursor: pointer;
	border-radius: 2px;
	color: rgb(69, 70, 71);
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	padding: 14px 32px;
	background-color: rgb(228, 229, 230);
	width: 100%;
	text-align: center;
	margin-top: 15px;
}

#direct-inquiry-modal .btn-in-progress{
	background: url('/img/loading-btn.svg') no-repeat center !important;
	color: transparent !important;
}
#direct-inquiry-modal .error{
	color: red;
	font-size: 13px;
}

#direct-inquiry-modal .close{
	position: absolute;
	right: 9px;
	top: 6px;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
	-webkit-appearance: none;
	cursor: pointer;
	background: 0 0;
	border: 0;
}
#direct-inquiry-modal .modal-title {
	width: 100%;
	margin: 0;
	line-height: 1.42857143;
	text-align: center;
	font-size: 18px;
	font-family: inherit;
	font-weight: 500;
}
#direct-inquiry-modal .form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#direct-inquiry-modal .form-icon {
	padding-left: 36px;
}
#direct-inquiry-modal .form-icon~i {
	display: block;
	height: 20px;
	left: 24px;
	position: absolute;
	top: 8px;
	width: 20px;
}

#direct-inquiry-modal textarea.form-control {
	height: 100px;
}
#direct-inquiry-modal .direct-inquiry-captcha{
	text-align: right;
	display: inline-block;
	float: right;
}
#direct-inquiry-modal .direct-inquiry-captcha > input{
	width: 30%;
	margin-top: 6px;
	float: right;
}
i.fa.fa-refresh:before {
	content: "\f021";
}
.direct-inquiry-captcha > img{
	pointer-events: none;
}

#direct-inquiry-form input[disabled] {
	opacity: .5;
}

.booking-engine-container .form-control:disabled, .form-control[readonly] {
	background-color: #fff;
	opacity: 1;
}
.booking-search-input-container > select,
.booking-search-input-container > input {
	cursor: pointer;
}
.booking-search-input-container > i {
	display: block;
	height: 20px;
	left: 10px;
	position: absolute;
	top: 23px;
	width: 20px;
	z-index: 10;
}
@media(min-width: 1130px) {
	#listing-block {
		min-height: 770px;
	}

	.map-wrapper {
		display: block;
	}
}

@media(min-width: 1200px) {
	.map-wrapper {
		width: 366px;
		height: 800px;
		margin-top: 15px;
	}
}

@media(min-width: 1130px) {
	#listing-block {
		min-height: 770px;
	}

	.map-wrapper {
		display: block;
	}
}
@media(max-width: 991px){
	#listing-page-section-md{
		padding-top:0px;
	}
	#listing-page-header{
		order:0;
	}
	#listing-page-description{
		order:2;
	}
	#listing-page-book{
		order: 1;
		padding: 10px;
	}

}
@media(max-width: 768px){
	.booking-search-page-hero,
	.booking-search-page-hero > .overlay-text,
	.booking-search-page-hero > .overlay-text > .container{
		height: fit-content !important;
	}
	.booking-search-page-hero > .overlay-text > .container{
		padding-bottom: 10px;
	}

	.section.md {
		padding-top: 10px;
	}
	h2 {
		font-size: 27px;
	}
	span.h3 {
		font-size: 25px;
	}
	h4 {
		font-size: 22px;
	}

    #listing-page-section-md .widget {
		margin: 0px;
	}
	.calentim-container-mobile .calentim-input {
		top: 14%;
		bottom: auto !important;
	}
	#listing-page-book .inner-wrapper-sticky{
		position: initial !important;
		top: auto !important;
		left: auto !important;
		width: auto !important;
		transform: initial !important;
	}
	.page-hero {
		height: 250px;
	}
	.page-hero .left-bottom {
		top: 200px;
	}
}

@media(max-width: 576px) {
	#direct-inquiry-modal .inquiry_container_input {
		max-width: 50%;
		padding-right: 10px;
		padding-left: 10px;
	}
	#direct-inquiry-modal .direct-inquiry-col-container{
		padding-right: 10px;
		padding-left: 10px;
	}
}

@media screen and (orientation: landscape) {
	.calentim-container-mobile > .calentim-input{
		width: 280px !important;
		height: auto !important;
		margin: auto !important;
		top: 0px !important;
	}
	.calentim-container-mobile .calentim-filler{
		display: none !important;
	}
	.calentim-container-mobile .calentim-input .calentim-footer,
	.calentim-container-mobile .calentim-calendars{
		width: 100% !important;
	}
}

.l-description {
	font-size: 14px;
	color: #70707a;
	margin: 0;
	height: 42px;
	min-height: 42px;
	max-height: 42px;
	overflow: hidden;
}


.advanced-link {
	color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
	width: 100%;
    text-align: right;
}
.advanced-link span {
	cursor: pointer;
}
.advanced-link:hover,
.advanced-link:active {
	text-decoration: none;
	color: #fff;
}


.nowrap {
	white-space: nowrap;
}

/* adv search */

.search-form-advanced .adv-title {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.search-form-advanced .btn {
    height: 40px;
    border-radius: 4px;
}

.search-form-advanced {
	margin: 0;
    padding: 8px 14px;
    border-radius: 4px;
    background: #fff;
    color: #111;
    text-shadow: none;
}

.search-form-advanced > div {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 0 10px 0;
}

.search-form-advanced > div > div {
    width: 100%;
    min-width: 100%;
}
.search-form-advanced > div > div:not(:first-child) {
    /* width: 90%; */
}

.search-form-advanced	label {
    font-weight: normal;
}

.search-form-advanced	input[type=checkbox] {
    margin-right: 6px;
    vertical-align: middle;
}

.search-form-advanced .adv-bedrooms label {
    margin-right: 20px;
}

.search-form-advanced .adv-prop label {
    margin-right: 20px;
}

.search-form-advanced .toggle-more {
    max-height:200px;
    overflow:hidden;
    overflow-y:auto;
    position:relative;
}
.search-form-advanced .toggle-more .toggle-more-container {
	/*
	width: calc(100% - 50px);
	white-space:nowrap;
	*/
	width: 100%;

    display: block;
    position:relative;
    overflow:hidden;
    text-overflow:ellipsis;
}
.search-form-advanced .toggle-more .toggle-more-container > * { margin-right: 20px }
.search-form-advanced .toggle-more .toggle-more-container.expanded {
    width: 100%;
    white-space:normal;
}
.search-form-advanced .toggle-more .toggle-more-container .am-title {
/* .search-form-advanced .toggle-more .toggle-more-container.expanded .am-title { */
    display: block;
}
.search-form-advanced .toggle-more .toggle-more-btn {
    margin-left: 10px;
    float: right;
    cursor: pointer;
    display: block;
    z-index: 1000;
}

.search-form-advanced .line-b {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.advanced-search-wrap {
    margin-top: 97px;
}

.advanced-search-wrap .tabs__item {
    background-color: transparent;
    color: #798087;
}
.advanced-search-wrap .tabs__item--active {
    background-color: #F5F5F5;
    color: #495057;
}

@media (max-width: 767px) {
	header > .navbar,
	body {
		min-width: 250px;
	}

	.advanced-search-wrap .line-b .row > div {
		margin-bottom: 10px;
	}

	.search-form-advanced {
		margin-top: 10px;
		padding-left: 0;
		padding-right: 0;
	}

	.search-form-advanced select {
		height: auto;
	}

	.search-form-advanced .btn-reset {
		float: left;
	}

	.advanced-search-wrap .ltm-select .tabs__item br {
		display: none;
	}
	.advanced-search-wrap .ltm-select .tabs__item {
		width: auto;
		line-height: 30px;
		text-align: center;
		padding-left: 14px;
		padding-right: 14px;
	}
}

@media (max-width: 479px) {
	.advanced-search-wrap .ltm-select .tabs__item {
		width: 50%;
		padding-left: 2px;
		padding-right: 2px;
	}
}

.tipso_bubble {
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.calendar-error {
    text-align: center;
    color: red;
    margin-top: 20px;
    margin-bottom: 20px;
}

#reset-date {
    color: #6f6f71;
    cursor: pointer;
}

#prices {
	position: relative;
}

#prices.loading:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,.5) url("data:image/svg+xml,%3Csvg width='300' height='40' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%2301aeef'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(13 11) scale(.4 .4)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18' /%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite' /%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center center/cover no-repeat;
}

.filter-bar .form-control {
    box-shadow: none;
}

.filter-bar .form-control:focus {
	border-color: #ddd;
}


.filter-bar .select-guests-wrap {
	cursor: pointer;
	user-select: none;
}
.filter-bar .select-guests-wrap #select-guests-dd {
	position: absolute;
	top: 90px;
    z-index: 9999;
}
.filter-bar .select-guests-wrap .calentim-box-arrow-top {
	top: -6px;
}
.filter-bar .select-guests-wrap .select-guests {
	background: #fff;
	border-radius: 2px !important;
	box-shadow: rgb(0 0 0 / 15%) 0px 2px 6px, rgb(0 0 0 / 7%) 0px 0px 0px 1px !important;
	box-sizing: border-box !important;
	margin-bottom: 16px !important;
	min-width: 240px !important;
	padding: 8px 8px 6px 16px !important;
	/* position: absolute !important; */
	text-align: left !important;
	width: 100% !important;
	/* z-index: 999 !important; */
	/* right: 0px !important; */
	/* display: none; */
}
.filter-bar .select-guests-wrap .item-select-guests {
	margin-top: 6px;
	margin-bottom: 8px;
}
.filter-bar .select-guests-wrap .item-select-guests .input-group {
	justify-content: space-between;
	align-items: center;
}
.filter-bar .select-guests-wrap .input-func-box {
	white-space: nowrap;
	display: flex;
}
.filter-bar .select-guests-wrap .input-func-box input {
	width: 60px;
	max-width: 60px;
	min-width: 60px;
    height: 40px;
	text-align: center;
	border: none;
}
.filter-bar .select-guests-wrap .input-func-box input::selection {
	color: inherit;
	background: inherit;
}
.filter-bar .select-guests-wrap .input-func-box a {
	padding: 8px;
}
.filter-bar .select-guests-wrap .context-box {
	color: #495057;
	text-shadow: none;
}
