html,body,
h1,h2,h3,h4,h5,h6,
ul,ol,p,figure,
form,fieldset,input,textarea{
	margin:0;
	padding:0;
}

header,nav,main,article,section,aside,footer,figure{
	display:block;
}

*{box-sizing: border-box; -webkit-tap-highlight-color: transparent;}

.cl:before,
.cl:after {
  display: table;
  content: " ";
}
.cl:after{
	clear:both;
}

/* ----- */

html,body{
	width:100%;
	height:100%;
}

nav ul,.nav ul{list-style:none;}
a img,fieldset{border:0;}

.logo img{display:block;}
.img img,
.thumb img,
figure img{
	display:block;
	max-width:100%;
}

button,
input[type=button],
input[type=submit]{
	cursor:pointer;
	outline:none;
}

a,a:hover,a:focus{text-decoration:none;}
a.is-active{cursor:default;}

.disabled{opacity: 0.5; pointer-events: none;}
.disabled-click{pointer-events: none;}

/* ----- */

.lock,
.lock body{
	height:100% !important;
	overflow:hidden;
}

.fix {position:fixed !important;}

.hidden{display:none !important;}

.no-padding{padding:0 !important;}
.no-margin{margin:0 !important;}

/* ----- */

.float-left{float:left !important;}
.float-right{float:right !important;}

.center{margin:0 auto !important;}

.text-l{text-align:left !important;}
.text-r{text-align:right !important;}
.text-c{text-align:center !important;}

.lowercase{text-transform:lowercase !important;}
.uppercase{text-transform:uppercase !important;}
.nocase{text-transform:none !important;}

.italic{font-style: italic;}

.underline{text-decoration: underline;}
.line-through{text-decoration: line-through;}

.highlight {background-color: #debfa1;}

/* ----- */

body{
	background: #fff;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}


/* ==================== main styles ==================== */


/* ----------- fonts ----------- */
body,input,textarea,button{
	font-family: 'Money', 'Roboto',  sans-serif;
}
/* ----------- /fonts ----------- */



.preloader{
	width: 100%;
	height: 100%;
	background: #fff;
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.preloader::before{
	content: "";
	width: 48px;
	height: 48px;
	background-image: url(../images/icons/spinner.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	
	position: absolute;
	top: 50%;
	left: 50%;
	
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/* ----------- container ----------- */
.container{
	width:100%;
	max-width:1200px;
}
.container-sm{
	max-width: 770px;
}
@media (max-width: 991px) {
	.container{
		
	}
}
/* ----------- /container ----------- */


/* ----------- grid ----------- */
.row{
	margin-left: -14px;
	margin-right: -14px;
}
.row .col,
.row [class*=col-]{
	padding-left: 14px;
	padding-right: 14px;
}

@media (max-width: 1199px) {
	.row{
		margin-left: -10px;
		margin-right: -10px;
	}
	.row .col,
	.row [class*=col-]{
		padding-left: 10px;
		padding-right: 10px;
	}
}
/* ----------- /grid ----------- */


/* ----------- icons ----------- */
.icon{
	display:inline-block;
	width:16px;
	height:16px;
	position: relative;
}
.icon-sm{
	width: 14px;
	height: 14px;
}
.icon::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-position:center;
	background-repeat:no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}
.icon img{
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.text-with-icon{
	display: flex;
}
.text-with-icon .icon{
	top: 3px;
}
.text-with-icon .icon + span{
	margin-left: 7px;
}
/* ----------- /icons ----------- */


/* ---------- buttons ---------- */
.btn{
	min-width: 80px;
	height: 36px;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 5px;
	box-shadow: none !important;
	outline: none;
	padding: 6px 12px;
	
	color: #b99972 !important;
	font-size: 14px;
	font-weight: normal;
	line-height: 22px;
	letter-spacing: 0;
	text-transform: uppercase;
}
.btn:not(.btn-fill):hover > *{
	opacity: 0.8;
}

.btn-sm{
	height: 30px;
	padding: 5px 8px 3px;
	line-height: 20px;
}
.btn-lg{
	height: 40px;
	line-height: 26px;
}

.submit-btn{
	display: block;
	width: 100%;
	max-width: 240px;
}

/* white */
.white-btn{
	border-color: #fff;
	color: #fff !important;
}
.white-btn:hover{
	background-color: #fff;
	color: #b99972 !important;
}
/* primary */
.primary-btn{
	border-color: #b99972;
}
.primary-btn:hover{
	color: #fff !important;
	background-color: #b99972;
}
.gray-btn{
	border-color: #76777a;
	color: #76777a !important;
}
.gray-btn:hover{
	color: #fff !important;
	background-color: #76777a;
}

/* fill */
.btn-fill{
	color: #fff !important;
}

/* white fill */
.btn-fill.white-btn{
	background-color: rgba(255,255,255,0.5);
	border-color: transparent;
	color: #58595b !important;
}
.btn-fill.white-btn:hover{
	background-color: rgba(255,255,255,0.7);
}
/* primary fill */
.btn-fill.primary-btn{
	background-color: #b99972;
}
.btn-fill.primary-btn:hover{
	background-color: #a68157;
	border-color: #a68157;
}
/* gray fill */
.btn-fill.gray-btn{
	background-color: #76777a;
}
.btn-fill.gray-btn:hover{
	background-color: #636466;
	border-color: #636466;
}

.btn.disabled{
    opacity: 0.5 !important;
}
/* ---------- /buttons ---------- */


/* ----------- colors ----------- */
.color-white{
	color:#fff !important;
}
.color-default{
	color:#6d6e71 !important;
}
.color-primary{
	color:#b99972 !important;
}
.color-gray{
	color:#808285 !important;
}

.bg-white{
	background-color:#fff !important;
}
.bg-primary{
	background-color:#b99972 !important;
}
/* ----------- /colors ----------- */


/* ----------- hamburger ----------- */
.hamburger{
	display: block;
	width: 20px;
	height: 14px;
	background-color: transparent;
	border: 0;
	outline: 0 !important;
	cursor: pointer;
	padding: 0;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	overflow: visible;
	position:relative;
	z-index: 50;
}
.hamburger:before{
	content: "";
	position: absolute;
	top: -12px;
	bottom: -12px;
	left: -12px;
	right: -12px;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #b99972;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger span{
	top:0;
}
.hamburger span::before,
.hamburger span::after {
	content: "";
	display: block;
}
.hamburger span::before {
	width: 100%;
	top: 6px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: 0.15s;
}
.hamburger span::after {
	top: 12px;
}

.hamburger.is-active span,
.nav-opened .hamburger span{
	transform: translate3d(-1px, 6px, 0) rotate(45deg);
}
.hamburger.is-active span::before,
.nav-opened .hamburger span::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}
.hamburger.is-active span::after,
.nav-opened .hamburger span::after {
	transform: translate3d(0, -12px, 0) rotate(-90deg);
}
.hamburger.is-active span,
.hamburger.is-active span::before,
.hamburger.is-active span::after,
.nav-opened .hamburger span,
.nav-opened .hamburger span::before,
.nav-opened .hamburger span::after{
	width: 22px;
}

@media (min-width:992px){
	.hamburger-wrap,
	.hamburger{
		display: none !important;
	}
}
/* ----------- /hamburger ----------- */



/* ==================== layout ==================== */



/* ---------- header ---------- */
.main-header-container{
	position: relative;
	z-index: 300;
}
header.main-header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
.main-header-container,
header.main-header > .wrap{
	width: 100%;
	height: 66px;
}
header.main-header > .wrap,
header.main-header > .wrap > div{
	display: flex;
	align-items: center;
}
header.main-header > .wrap{
	justify-content: space-between;
	
	background-color: #fff;
	padding: 0 40px;
}

header.main-header .logo img{
	height: 38px;
}

/* dropdown */
header.main-header .dropdown-menu{
	background-color: transparent;
	border: 0;
	border-radius: 0;
	padding: 15px 0 0;
	margin: 0;
	z-index: 5;
}
header.main-header .dropdown-menu > ul{
	background-color: #fff;
	border: 1px solid #eaebec;
	border-radius: 0;
	padding:10px 18px;
}
header.main-header .dropdown-menu a{
	display: inline-block;
	padding: 5px 0;
}

/* nav */
header.main-header nav{
	padding: 0 20px 0 65px;
}
header.main-header nav > ul{
	display: flex;
	align-items: center;
}
header.main-header nav > ul > li{
	margin: 0 10px;
}
header.main-header nav a{
	display: inline-block;
	color: #6d6e71;
	font-size: 14px;
	line-height: 21px;
}
header.main-header nav a:hover,
header.main-header nav a.active{
	color: #414042;
}
header.main-header .nav-link{
	display: block;
	padding: 0;
	outline: none;
}
header.main-header nav .dropdown-menu{
	width: 196px;
}

/* currency */
header.main-header .currency-wrap > button{
	height: 23px;
	background-color: transparent;
	border: 0;
	outline: none;
	padding: 0;
	
	color: #000;
	font-family: 'Playfair Display', sans-serif;
    font-size: 14px;
    /*line-height: 21px;*/
	text-transform: uppercase;
}
header.main-header .currency-wrap > button::before{
	content: "";
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
}
header.main-header .currency-wrap > button::after{
	content: "";
	display: block;
	width: 11px;
	height: 7px;
	background: url(../images/icons/dropdown_arrow.svg) center no-repeat;
	background-size: contain;
	
	position: absolute;
	top: 100%;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
header.main-header .currency-wrap .dropdown-menu{
	min-width: 148px;
	left: 50% !important;
	margin-left: -74px;
}
header.main-header .currency-wrap .dropdown-menu ul{
	list-style: none;
	padding-left: 14px;
	padding-right: 0;
}
header.main-header .currency-wrap .dropdown-menu a{
	display: flex;
	position: relative;
	
	color: #6d6e71;
	font-size: 14px;
	line-height: 21px;
	white-space: nowrap;
}
header.main-header .currency-wrap .dropdown-menu a b{
	width: 40px;
	font-weight: normal;
}
header.main-header .currency-wrap .dropdown-menu a span{
	color: #b99972;
}
header.main-header .currency-wrap .dropdown-menu a::before{
	content: "";
	position: absolute;
	top: -10px;
	bottom: -10px;
	left: -10px;
	right: -10px;
}

/* book now */
.book-now-btn{
	margin: 0 20px;
}

/* lang */
header.main-header .lang-wrap,
header.main-header .lang-wrap > div{
	display: flex;
	align-items: center;
	height: 36px;
}
header.main-header .lang-wrap > div{
	padding: 0 11px;
}
header.main-header .lang-wrap > div:first-child{
	padding-left: 0;
}
header.main-header .lang-wrap > div:last-child{
	padding-right: 0;
}
header.main-header .lang-wrap > div + div{
	border-left: 1px solid #cbb395;
}
header.main-header .lang-wrap a{
	display: block;
	padding-bottom: 1px;
	
	color: #000;
	font-family: 'Playfair Display', sans-serif;
	font-size: 14px;
	line-height: 21px;
}


header.main-header.nav-opened{
	height: 100%;
}

@media (min-width:1220px) {
    header.main-header nav > ul > li {
        margin: 0 15px;
    }
    header.main-header nav a {
        font-size: 17px;
    }
    header.main-header .nav-link{
        padding:0;
    }
}

@media (min-width:992px){
	header.main-header .nav-wrap{
		display: block !important;
	}
	header.main-header .mobile-lang-wrap{
		display:none;
	}
}
@media (max-width:1100px){
	header.main-header > .wrap{
		padding: 0 15px;
	}
	header.main-header nav{
		padding-left: 30px;
	}
}
@media (max-width:991px){
	.main-header-container,
	header.main-header > .wrap{
		height: 48px;
	}
	
	header.main-header .hamburger-wrap,
	header.main-header > .wrap > div:last-child{
		width: 40px;
	}
	header.main-header > .wrap > div:last-child{
		justify-content: flex-end;
	}
	
	header.main-header .logo img{
		height: 32px;
	}
	header.main-header .currency-wrap .dropdown-menu {
		left: auto!important;
		right: 0;
		margin-left: 0;
	}
	header.main-header .book-now-btn,
	header.main-header .desktop-lang-wrap{
		display: none;
	}
	
	header.main-header .nav-wrap{
		display: none;
		width: 100%;
		height: 100%;
		background-color: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
	}
	header.main-header nav{
		width: 100%;
		padding: 0 40px;
		-webkit-overflow-scrolling: touch;
		overflow: auto;
		position: absolute;
		top: 48px;
		bottom: 0;
		left: 0;
	}
	header.main-header nav > ul{
		display: block;
		margin-bottom: 40px;
	}
	header.main-header nav > ul > li{
		margin: 16px 0;
	}
	header.main-header nav a{
		font-family: 'Playfair Display', sans-serif;
	}
	header.main-header .nav-link{
		color: #6d6e71;
		font-size: 30px;
		line-height: 30px;
		padding: 0 0 2px;
		visibility: hidden;
	}
	header.main-header nav .dropdown-menu{
		float: none;
		width: 100%;
		padding: 0;
		position: relative;
		top: 0;
	}
	header.main-header nav .dropdown-menu > ul{
		width: 100%;
		border: 0;
		padding:10px 28px 0;
	}
	header.main-header nav .dropdown-menu li{
		padding: 8px 0;
	}
	header.main-header nav .dropdown-menu li:last-child{
		padding-bottom: 0;
	}
	header.main-header nav .dropdown-menu a{
		display: inline-block;
		padding: 0 0 2px;
		
		color: #939598;
		font-size: 24px;
		line-height: 24px;
	}
	
	header.main-header .mobile-lang-wrap{
		height: 48px;
		justify-content: flex-end;
		padding: 0 15px;
	}
	header.main-header .lang-wrap > div{
		height: 28px;
	}
}
/* ---------- /header ---------- */


/* ---------- page ---------- */
.page{
	width:100%;
	min-height: calc(100vh - 66px - 384px);
}

.page-head{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 158px;
	background: #f1f2f2;
	padding: 15px;
	position: relative;
	overflow: hidden;
}
.page-head > *{
	position: relative;
	z-index: 1;
}
.page-head > .bg-container{
	content: "";
	width: 20px;
	height: 20px;
	background: #f1f2f2;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	/*opacity: 0;*/
	transform: translate(-50%, -50%);
	transition: all 2s ease;
}
.page-head.animate > .bg-container{
	width: 2000px;
	height: 2000px;
	border-radius: 0;
	opacity: 1;
}

.page-content{
	padding: 78px 0;
}
.page-content > *:not(:last-child){
	margin-bottom: 78px;
}

@media (max-width:991px){
	.page{
		min-height: calc(100vh - 48px - 384px);	
	}
	
	.page-content{
		padding: 40px 0 60px;
	}
	.page-content > *:not(:last-child){
		margin-bottom: 40px;
	}
	
}
@media (max-width:767px){
	.page{
		min-height: calc(100vh - 48px - 116px);	
	}
	.page-head{
		height: 100px;
	}
	.page-head .title{
		padding-bottom: 4px;
	}
}
/* ---------- /page ---------- */


/* ---------- footer ---------- */
footer.main-footer{
	background-color: #111;
	
}
footer.main-footer .foo-wrap{
	min-height: 328px;
	padding-top: 50px;
	padding-bottom: 50px;
}

footer.main-footer,
footer.main-footer a{
	color: #939598;
	font-size: 14px;
}

footer.main-footer h5{
	color: #d1d3d4;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	
	margin-bottom: 25px;
}
footer.main-footer ul{
	list-style: none;
	margin-bottom: 40px;
}
footer.main-footer li{
	line-height: 24px;
	margin-bottom: 10px;
}


/* logo */
footer.main-footer .logo img{
	display: block;
	height: 30px;
	margin-bottom: 30px;
}


/* contact info */
footer.main-footer .contact-info{
	list-style: none;
}
footer.main-footer .contact-info li{
	font-size: 14px;
}
footer.main-footer .contact-info li *{
	display: inline-block;
	vertical-align: middle;
}
footer.main-footer .contact-info li .icon + *{
	margin-left: 8px;
}


/* nav */
footer.main-footer .foo-nav a:hover{
	color: #bf864b !important;
}


/* bottom bar */
footer.main-footer .bottom-bar{
	background-color: #000;
}
footer.main-footer .bottom-bar .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
}
footer.main-footer .bottom-bar p{
	color: #58595b;
	font-size: 14px;
}
footer.main-footer .sixtythreebits{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
footer.main-footer .sixtythreebits span{
	color: #939598;
	font-size: 13px;
}
footer.main-footer .sixtythreebits a{
	margin-left: 8px;
}
footer.main-footer .sixtythreebits img{
	display: block;
	height: 14px;
}

@media (max-width:767px){
	footer.main-footer .foo-wrap{
		display: none;
	}
	footer.main-footer .bottom-bar{
		padding: 20px 0;
	}
	footer.main-footer .bottom-bar .container{
		display: block;
		height: auto;
		text-align: center;
	}
	footer.main-footer .bottom-bar p{
		margin-bottom: 15px;
	}
	footer.main-footer .bottom-bar p span{
		display: block;
	}
	footer.main-footer .sixtythreebits{
		justify-content: center;
	}
}
/* ---------- /footer ---------- */



/* ==================== content ==================== */


/* ---------- title ---------- */
.title{
	display:block;
	color:#58595b;
	font-family: 'Playfair Display', sans-serif;
	font-size:30px;
	font-weight:normal;
}
.title-lg{
	font-size:50px;
	line-height: 60px;
    padding-bottom: 6px;
}
.title-sm{
	font-size:24px;
}
.title-xs{
	font-size:16px;
}

@media (max-width: 767px) {
	.title{
		font-size:24px;
	}
	.title-lg{
		font-size: 30px;
		line-height: normal;
		padding-bottom: 0;
	}
	.title-sm{
		font-size:20px;
	}
	.title-xs{
		font-size:16px;
	}
}
/* ---------- /title ---------- */


/* ---------- text ---------- */
.text-wrap{
	color:#6d6e71;
	font-size:16px;
}
.text-wrap > *{margin-bottom:20px;}
.text-wrap > *:last-child{margin-bottom:0;}
.text-wrap ul,.text-wrap ol{padding-left:18px;}
.text-wrap li + li{margin-top:8px;}

.text-wrap h1,
.text-wrap h2,
.text-wrap h3,
.text-wrap h4{
	font-family: 'Playfair Display', sans-serif;
}
.text-wrap h2{
	color: #58595b;
	font-size:30px;
	font-weight:normal;
	font-style: italic;
}
.text-wrap h3{
	color: #58595b;
	font-size:24px;
	font-weight:normal;
	
}
.text-wrap h4{
	color: #58595b;
	font-size:16px;
	font-weight:normal;
}
.text-wrap h5{
	color: #808285;
	font-size:16px;
	font-weight:normal;
}
.text-wrap h6{
	color: #b99972;
	font-size:16px;
	font-weight:normal;
}

.link:not([class*=color-]),
.text-wrap a{
	color: #b99972 !important;
}
.link,
.text-wrap a{
	text-decoration:underline;
}
.link:hover,
.text-wrap a:hover{
	text-decoration:none;
}


.text-wrap img{
	max-width: 100%;
}

@media (max-width: 767px) {
	.text-wrap h2{
		font-size:24px;
	}
	.text-wrap h3{
		font-size:20px;
	}
}
/* ---------- /text ---------- */


/* ---------- section ---------- */
.section{
	padding: 78px 0;
}
.section-title{
	color:#58595b;
	font-family: 'Playfair Display', sans-serif;
	font-size:38px;
	font-weight:normal;
	line-height: 43px;
    padding-bottom: 6px;
	margin-bottom: 40px;
}
.section-title::before{
	content: "";
	display: block;
	width: 110px;
	height: 1px;
	background-color: #d8c6b0;
	margin-bottom: 10px;
}
.section-title.text-c::before{
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px) {
	.section-title{
		font-size:28px;
		line-height: normal;
		padding-bottom: 0;
	}
}
/* ---------- /section ---------- */


/* ---------- responcive img ---------- */
.img-responcive{
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 56.25%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.img-responcive img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* ---------- /responcive img ---------- */


/* ---------- bg img ---------- */
.bg-img{
	display: block;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 56.25%;
	
	position: relative;
	z-index: 1;
}
.bg-img.fit-container{
	height: 100%;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.bg-img::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.bg-img-cover{
	background-size: cover;
}
.bg-img-contain{
	background-size: contain;
}
/* ---------- bg img ---------- */


/* ---------- slick slider ---------- */
.slick-slider{
	width: 100%;
    z-index: 5;
}
.slick-slider .slick-track{
	margin: 0;
}
.slick-slide{
	position: relative;
}
.slick-slide > div > div{
	display: block !important;
}


.slick-slider .slick-prev,
.slick-slider .slick-next{
    width: 36px;
    height: 36px;
	background-color: rgba(0,0,0,0.7);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 13px 13px;
	border: 0;
	border-radius: 4px;
	outline: 0;
	overflow: hidden;
    margin-top: -18px;
	position: absolute;
    top: 50%;
    z-index: 9999;
	
	text-indent: -9999px;
}
.slick-slider .slick-prev{
	left: 10px;
	background-image: url(../images/icons/arrow_gray_left.svg);
}
.slick-slider .slick-next{
	right: 10px;
	background-image: url(../images/icons/arrow_gray_right.svg);
}
.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover{
	background-color: rgba(0,0,0,0.9);
}

.slick-dots{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	list-style: none;
	position: absolute;
	left: 0;
	bottom: 10px;
}
.slick-dots li{
	margin: 0 4px;
}
.slick-dots button{
	display: block;
	width: 12px;
	height: 12px;
	background-color: #fff;
	border: 0;
	border-radius: 50%;
	outline: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-indent: -9999px;
}
.slick-dots button:hover,
.slick-dots .slick-active button{
	background-color: #b99972;
}

.slick-carousel a{
	outline: none;
}
/* ---------- /slick slider ---------- */


/* ---------- map ---------- */
.map-container,
.map-container > div{
	width: 100%;
	position: relative;
}
.map-container > div{
	height: 500px;
}
@media (max-width:767px){
	.map-container > div{
		height: 300px;
	}
}
/* ---------- /map ---------- */


/* ---------- form ---------- */
.form-group{
	margin-bottom: 20px;
}

label{
	display: block;
	margin: 0 0 2px;
	
	color: #939598;
	font-size: 13px;
	font-weight: normal;
	line-height: 17px;
	text-transform: uppercase;
}
label span{
	text-transform: none;	
}

.form-control{
	border: 0;
	border-bottom: 1px solid #b8b9bc;
	border-radius: 0;
	box-shadow: none !important;
	padding: 0 0 2px;
	
	color: #58595b;
	font-size: 16px;
	font-weight: 300;
}

.form-control::-webkit-input-placeholder {
  color: #a7a9ac;
}

.form-control::-moz-placeholder {
  color: #a7a9ac;
}

.form-control:-ms-input-placeholder {
  color: #a7a9ac;
}

.form-control::-ms-input-placeholder {
  color: #a7a9ac;
}

.form-control::placeholder {
  color: #a7a9ac;
}


.form-control.calendar-input{
	background: url(../images/icons/date_gray.svg) right 6px top 7px no-repeat;
	background-size: 19px 19px;
	padding-right: 30px;
}

select.form-control{
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	
	background: url(../images/icons/arrow_gray.svg) right 6px top 8px no-repeat;
	background-size: 19px 19px;
	padding-right: 30px;
}
select.form-control::-ms-expand {
    display: none;
}


.form-control:disabled{
	background-color: #fff;
	opacity: 0.5;
}

/* checkbox */
.custom-control-label{
	color: #58595b;
	text-transform: none;
}
.custom-control-label::before,
.custom-control-label::after{
	top: 0;
	box-shadow: none !important;
}
.custom-control-label::before{
	background-color: transparent;
	border: 1px solid #adaeb1;
}
.custom-control-input:active ~ .custom-control-label::before {
  background-color: #eddbc5;
}
.custom-control-input:checked~.custom-control-label::before{
	background-color: #b99972 !important;
	border-color: #9e7d57 !important;
}

.custom-control.custom-checkbox{
	padding-left: 22px;
}
.custom-checkbox .custom-control-label::before{
	border-radius: 3px;
}
.custom-checkbox .custom-control-label::before,
.custom-checkbox .custom-control-label::after{
	left: -22px;
}

.form-group-head{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
    margin-bottom:2px;
}
.form-group-head > label{
    margin-bottom:0;
    white-space:nowrap;
}
.form-group-head .custom-control.custom-checkbox{
    display:flex;
    align-items:center;
    justify-content:flex-end;
	min-height: 27px;
    margin-bottom: -10px;
    position:relative;
    top:-5px;
    z-index:2;
}
.form-group-head .custom-control-label{
	font-size: 11px;
    line-height:13px;
    text-align:right;
}

.form-group-head .custom-control.custom-checkbox{
	padding-left: 22px;
	padding-right: 22px;
}
.form-group-head .custom-checkbox .custom-control-label::before,
.form-group-head .custom-checkbox .custom-control-label::after{
	left: auto;
	right: -22px;
    top:50%;
    margin-top:-8px;
}


.form-group-disabled label:not(.custom-control-label),
.form-group-disabled .form-control{
	opacity: 0.5;
	pointer-events: none;
}

.help-block{
    display:none;
}
.has-error .form-control{
    border-bottom-color:#d70f30;
}
.has-error .help-block{
    display:block;
    padding-top: 3px;

    color:#d70f30;
    font-size:11px;
    line-height:13px;
}

/* ---------- /form ---------- */


/* ---------- ui-datepicker ---------- */
.ui-datepicker{
	width: 238px;
	background-color: #fff;
	box-shadow: 0 0 13px 0 rgba(9, 9, 9, 0.23);
	padding: 0 10px;
	z-index: 550 !important;
}

.ui-datepicker-header{
	position: relative;
	margin: 5px -10px;
}

/* next/prev arrous */
.ui-datepicker-header > a{
    width: 36px;
    height: 36px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 15px 15px;
	outline: 0;
	cursor: pointer;
	position: absolute;
    top: 0;
    z-index: 9999;
}
.ui-datepicker-prev{
	left: 0;
	background-image: url(../images/icons/arrow_gray_left.svg);
}
.ui-datepicker-next{
	right: 0;
	background-image: url(../images/icons/arrow_gray_right.svg);
}
.ui-datepicker-header > a span{
	display: none;
}

/* month,year */
.ui-datepicker-title{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
}
.ui-datepicker .ui-datepicker-title select{
	border: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}
.ui-datepicker .ui-datepicker-title select::-ms-expand {
    display: none;
}
.ui-datepicker-month,
.ui-datepicker-year{
	color:#58595b;
	font-family: 'Playfair Display', sans-serif;
	font-size:16px;
	line-height: 16px;
}

/* days */
.ui-datepicker-calendar{
    width: 100%;
	border-spacing: 0;
    border-collapse: collapse;
	table-layout: fixed;
    margin: 0 0 10px;
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td{
	padding: 0;
}

.ui-datepicker-calendar span,
.ui-datepicker-calendar a {
    display: block;
	padding: 0 0 2px;
	
	font-size: 12px;
	line-height: 28px;
	text-align: center;
}

.ui-datepicker-calendar th span{
	color: #58595b;
	font-weight: bold;
}

.ui-datepicker-calendar td span,
.ui-datepicker-calendar td a {
	color: #6d6e71;
	font-family: 'Playfair Display', sans-serif;
    text-decoration: none;
}
.ui-state-default.ui-state-hover,
.ui-state-default.ui-state-active{
	color: #fff;
}
.ui-state-default.ui-state-hover{
	background: #d5c2aa;
}
.ui-state-default.ui-state-active{
	background: #b99972;
}
.ui-state-disabled .ui-state-default{
	color: #d1d3d4;
}

@media (max-width: 767px){
	.ui-datepicker{
		width: 268px;
	}
	.ui-datepicker-calendar span,
	.ui-datepicker-calendar a{
		line-height: 34px;
	}
}
/* ---------- /ui-datepicker ---------- */


/* ---------- card ---------- */
.card{
	border: 1px solid #edeeef;
	border-radius: 5px;
	margin-bottom: 20px;
}
.card-header,
.card-body{
	padding: 20px 28px;
}
.card-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-bottom-color: #edeeef;
}
.card-header .title{
	padding-bottom: 3px;
}

.card-block{
	border-bottom: 1px solid #e8e9e9;
	padding: 20px 0;
}
.card-block:first-child{
	padding-top: 0;
}
.card-block:last-child{
	border-bottom: 0;
	padding-bottom: 0;
}


.card-btn-group{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 28px;
}

@media (max-width: 767px){
	.card-header,
	.card-body{
		padding: 20px 15px;
	}
	.card-btn-group{
		padding: 0 15px;
	}
	.card-btn-group .submit-btn{
		max-width: 140px;
	}
}

/* ---------- /card ---------- */


/* ---------- modal ---------- */
.modal-header,
.modal-body,
.modal-footer{
	padding-left: 30px;
	padding-right: 30px;
}
.modal-header{
	border-bottom: 0;
	padding-top: 30px;
	padding-bottom: 0;
	position: relative;
}
.modal button.close{
	display: block;
	opacity: 1 !important;
	outline: none !important;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
}
.modal button.close::before{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: url(../images/icons/close_gray.svg) center no-repeat;
	background-size: contain;
}
.modal-title{
	width: 100%;
	color: #414042;
	font-size: 28px;
	text-align: center;
}

.modal-body{
	padding-top: 30px;
	padding-bottom: 35px;
}
.modal-body .text-wrap{
	color: #6d6e71;
	font-size: 14px;
}

.modal-footer{
	border-top: 0;
	padding-top: 0;
	padding-bottom: 28px;
}
.modal-footer .btn{
	width: 140px;
	margin: 0 0 0 20px;
}
.modal-footer.justify-content-center .btn{
	margin: 0 20px;
}
/* ---------- /modal ---------- */



/* ==================== pages ==================== */


/* ---------- home ---------- */
/* intro */
/*.home-page .intro .bg-img::before{
	background: url(../Images/intro_gradient.png) bottom repeat-x;
}*/
.home-page .intro .slide-content{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: calc(100vh - 66px);
	position: relative;
	z-index: 5;
}
.home-page .intro section{
	max-width: 640px;
	text-align: center;
}
.home-page .intro section > *{
	margin: 30px 0;
}
.home-page .intro .slide-title{
	color: #fff;
	font-family: 'Playfair Display', sans-serif;
	font-size: 60px;
	font-weight: normal;
}
.home-page .intro section .btn{
	display: block;
	max-width: 268px;
	height: 50px;
	border-width: 1px;
	border-radius: 0;
	margin-left: auto;
	margin-right: auto;
	
	line-height: 33px;
}
@media (max-width: 991px){
	.home-page .intro .slide-content{
		height: 500px;
		padding: 0 15px 15px;
	}
	.home-page .intro .slide-title{
		font-size: 50px;
	}
	.home-page .intro section .btn{
		max-width: 240px;
    	height: 44px;
		line-height: 30px;
	}
}
@media (max-width: 768px){
	.home-page .intro .slide-content{
		height: 364px;
	}
	.home-page .intro .slide-title{
		font-size: 26px;
	}
	.home-page .intro section .btn{
		max-width: 200px;
    	height: 40px;
		line-height: 26px;
	}
}

/* benefits */
.benefits-section{
	padding-bottom: 50px;
}
.benefits-section .row [class*=col-]{
	min-height: 270px;
	margin-bottom: 28px;
}
.benefits-section .item{
	min-height: 100%;
	border: 1px solid #dfe1e1;
	border-radius: 5px;
	padding: 50px 15px 30px;
	position: relative;
	text-align: center;
}
.benefits-section .item-icon{
	display: block;
	height: 68px;
	margin: 0 auto 25px;
}
.benefits-section .item-title{
	color: #414042;
	font-size: 17px;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.benefits-section .item-text{
	color: #808285;
	font-size: 16px;
	line-height: 22px;
}
/* ---------- /home ---------- */



/* ---------- room ---------- */
@media (min-width: 992px){
	.room-main{
		min-width: calc(100% - 298px);
		max-width: calc(100% - 298px);
	}
	.room-aside{
		min-width: 298px;
		max-width: 298px;
	}
}

.room-name{
	color: #414042;
	font-size: 28px;
	line-height: 30px;
}
.room-persons{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	
	color: #808285;
	font-size: 15px;
}
.room-persons::before{
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url(../images/icons/person.svg) 0 center no-repeat;
	background-size: contain;
	margin-right: 5px;
}
.room-price{
	color:#58595b;
	font-family: 'Playfair Display', sans-serif;
	font-size:40px;
	font-weight:normal;
	line-height: 42px;
	padding-bottom: 2px;
}
.room-price-sm{
	font-size: 28px;
	line-height: 30px;
	padding-bottom: 2px;
}
.room-text{
	color: #58595b;
	font-size: 14px;
}
.room-facilities img{
	display: block;
	height: 20px;
}
.room-facilities ul{
	list-style: none;
	margin-bottom: -15px;
}
.room-facilities li{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.room-facilities li .icon{
	width: 38px;
}
.room-facilities li .icon,
.room-facilities li img{
	height: 24px;
}
.room-facilities li span{
	color: #a3a3a3;
	font-size: 16px;
}

.room-filters-btn{
	display: block;
	width: 100%;
	max-width: 150px;
	margin: 0 auto 40px !important;
}

/* list */
.room-list-item{
	border: 1px solid #c9cacc;
	border-radius: 5px;
	overflow: hidden;
}
.room-list-item,
.room-list-item > div{
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
    width: 100%;
}
.room-list-item .room-img-wrap{
	min-width: 298px;
	max-width: 298px;
	position: relative;
	overflow: hidden;
}
.room-list-item .bg-img{
	height: 100%;
	min-height: 298px;
	padding-top: 0;
	position: relative;
	-webkit-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}
.room-list-item:hover .room-img-wrap .bg-img{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.room-list-item .info-wrap > div:first-child{
    width: 100%;
	padding: 20px 10px 20px 30px;
}
.room-list-item .info-wrap > div:last-child{
	display: flex;
	align-items: center;
	min-width: 200px;
	max-width: 200px;
	border-left: 1px solid #c9cacc;
}
.room-list-item .info-wrap > div:last-child > div{
	width: 100%;
}

.room-list-item .room-name{
	margin-bottom: 6px;
}
.room-list-item .room-text{
	height: 126px;
	overflow: hidden;
	margin: 20px 0;
}
.room-list-item .room-facilities{
	display: flex;
    flex-wrap:wrap;
	margin: 0 -5px;
}
.room-list-item .room-facilities img{
	margin: 0 5px;
}

.room-list-item .btn{
	display: block;
	width: 100%;
	max-width: 106px;
	margin: 0 auto;
}
.room-list-item .room-price-wrap{
	color: #808285;
	font-size: 13px;
	line-height: 15px;
	margin-bottom: 26px;
}
.room-list-item .room-price-wrap > span{
	display: block;
	text-align: center;
}

.room-list .room-list-item:not(:last-child){
	margin-bottom: 40px;
}
@media (max-width: 1199px){
	.room-list-item .room-img-wrap {
    	min-width: 250px;
	}
	.room-list-item .info-wrap > div:last-child{
		min-width: 140px;
	}
	.room-list-item .room-price-wrap{
		margin-bottom: 20px;
	}
	.room-list-item .bg-img{
		min-height: 250px;
	}
	.room-list-item .room-price{
		font-size: 30px;
		line-height: 32px;
	}
}
@media (max-width:767px){
	.room-list-item,
	.room-list-item > div{
		display: block;
	}
	.room-list-item{
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
	.room-list-item .bg-img{
		height: auto;
		min-height: 0;
		padding-top: 76%;
	}
	.room-list-item .info-wrap{
		padding: 0 15px;
	}
	.room-list-item .info-wrap > div{
		padding: 20px 0 !important;
	}
	.room-list-item .info-wrap > div:last-child{
		display: block;
		width: 100%;
		max-width: 100%;
	    border-left: 0;
		border-top: 1px solid #c9cacc;
	}
	.room-list-item .room-text{
		height: auto;
	}
}
@media (max-width:575px){
	.room-name {
		font-size: 24px;
		line-height: 24px;
	}
}


/* aside */
.room-aside .card{
	padding: 15px;
	position: relative;
	z-index: 10;
}
.room-aside .card > .title{
	font-size: 21px;
	margin-bottom: 20px;
}
.room-aside .card-block{
	padding-left: 7px;
	padding-right: 7px;
	margin: 0 -7px;
}
.room-reservation-wrap .text-with-icon{
	display: block;
	margin-bottom: 15px;
	
	color: #939598;
	font-size: 12px;
}
.room-reservation-wrap .text-with-icon .icon{
	top: 2px;
}
.room-reservation-wrap .box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f1f2f2;
	padding: 9px 10px;
}
.room-reservation-wrap .box .room-price{
	color: #414042;
}

.room-aside .submit-btn{
	max-width: 100%;
}

.close-room-filters-btn{
	display: block;
	background: none;
	border: 0;
	opacity: 1 !important;
	outline: none !important;
	padding: 10px;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
}
.close-room-filters-btn::before{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: url(../images/icons/close_white.svg) center no-repeat;
	background-size: contain;
}

@media (min-width: 992px){
	.room-aside{
		display: block !important;
	}
	.room-reservation-container{
		display: none;
	}
}
@media (max-width: 991px){
	.room-aside{
		display: none;
		width: 100%;
		height: 100%;
		background-color: rgba(35,31,32,0.95);
		padding: 40px 24px 30px;
		-webkit-overflow-scrolling: touch;
		overflow: auto;
		
		position: fixed;
		top: 0;
		left: 0;
		z-index: 500;
	}
    .room-aside.invisible{
		visibility: visible !important;
	}
	.room-aside .card{
		width: 300px;
		margin: 0 auto;
	}
	.room-aside .room-reservation-wrap{
		display: none;
	}
	.room-reservation-container{
		display: block;
		margin-bottom: 35px;
	}
}
/* details */
.room-slider-wrap{
	margin-bottom: 40px;
}
.room-slider{
	margin-bottom: 20px;
}
.room-slider .bg-img,
.room-slider-nav .bg-img{
	padding-top: 62.343%;
}
.room-slider-nav{
	width: auto;
	margin: 0 0 0 -5px;
}
.room-slider-nav .item{
	margin: 0 5px;
}
.room-slider-nav .slick-current.slick-active{
	opacity: 0.5;
}

.room-content-wrap{
	display: flex;
}
.room-content-nav,
.room-content-nav ul{
	min-width: 270px;
	position: relative;
}
.room-content-nav ul{
	list-style: none;
}
.room-content-nav li{
	border-right: 1px solid #e9eaeb;
	padding: 15px 0;
}
.room-content-nav li.active{
	border-right-color: #c0a481;
}
.room-content-nav a{
	display:block;
	color:#231f20;
	font-family: 'Playfair Display', sans-serif;
	font-size:20px;
	font-weight:normal;
	text-transform: uppercase;
}
.room-content-nav a:hover,
.room-content-nav li.active a{
	color:#808285;
}
.room-content-nav li.active a{
	cursor: default;
	pointer-events: none;
}

.room-content{
    width: 100%;
	padding-left: 28px;
}

.room-content > *{
	border-bottom: 2px solid #f3f3f4;
	padding: 30px 0;
}
.room-content > *:first-child{
	padding-top:10px; 
}
.room-content > *:last-child{
	border-bottom: 0;
	padding-bottom: 0;
}

.room-content .text-wrap{
	font-size: 14px;
}


@media (max-width: 1199px){
	.room-content-nav,
	.room-content-nav ul{
		min-width: 180px;
	}
}
@media (max-width: 991px){
	.room-content-nav{
		display: none;
	}
	.room-content{
		padding-left: 0;
	}
	.room-content > figure img{
		margin-left: auto;
		margin-right: auto;
	}
}
/* ---------- /room ---------- */


/* ---------- booking-details ---------- */
.booking-details{
	color: #58595b;
	font-size: 16px;
}
.booking-details h4{
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.booking-details ul{
	list-style: none;
}
.booking-details ul li:not(:last-child){
	margin-bottom: 6px;
}
.booking-details h4 + *:not(:last-child){
	margin-bottom: 20px;
}

.booking-details .text-with-icon{
	color: #939598;
	font-size: 15px;
	text-transform: uppercase;
}
/* ---------- /booking-details ---------- */


/* ---------- bank card ---------- */
.bank-card-header .visa-mastercard-wrap{
	display: flex;
	align-items: center;
}
.bank-card-header .visa-mastercard-wrap > * + *{
	margin-left: 20px;
}
.bank-card-header .visa-mastercard-wrap .visa-icon{
	height: 23px;
}
.bank-card-header .visa-mastercard-wrap .mastercard-icon{
	height: 40px;
}
.bank-card-container{
	width: 100%;
	max-width: 270px;
	margin: 0 auto;
}
@media (max-width: 575px){
	.bank-card-header .visa-mastercard-wrap > * + *{
		margin-left: 15px;
	}
	.bank-card-header .visa-mastercard-wrap .visa-icon{
		height: 18px;
	}
	.bank-card-header .visa-mastercard-wrap .mastercard-icon{
		height: 30px;
	}
}
@media (max-width: 374px){
	.bank-card-header .visa-mastercard-wrap > * + *{
		margin-left: 10px;
	}
	.bank-card-header .visa-mastercard-wrap .visa-icon{
		height: 13px;
	}

	.bank-card-header .visa-mastercard-wrap .mastercard-icon{
		height: 26px;
	}
}
/* ---------- /bank card ---------- */


/* ---------- maps ---------- */
.map-page .page-content{
	padding-bottom: 0;
}
/* ---------- /maps ---------- */


/* ---------- gallery ---------- */
.gallery-item{
	display: block;
	position: relative;
	overflow: hidden;
	margin-bottom: 28px;
}
.gallery-item .img,
.gallery-item .bg-img{
	position: relative;
	-webkit-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}
.gallery-item:hover .img,
.gallery-item:hover .bg-img{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
@media (max-width: 1199px) {
	.gallery-item {
		margin-bottom: 20px;
	}
}
/* ---------- /gallery ---------- */


/* ---------- contact ---------- */
.contact-page .page-content{
	padding-bottom: 0;
}
.contact-page .page-content > .container{
	margin-bottom: 28px;
}

.contact-page .contact-info .item{
	text-align: center;
	margin-bottom: 50px;
}
.contact-page .contact-info .item > span{
	display: block;
	color: #939598;
	font-size: 14px;
}
.contact-page .contact-info .item p{
	font-family: 'Playfair Display', sans-serif;
	font-size: 24px;
	line-height: 28px;
	padding-bottom: 4px;
	margin: 5px 0;
}
.contact-page .contact-info .item p,
.contact-page .contact-info .item p a{
	color: #58595b;
}
.contact-page .contact-info .item .text-sm{
    font-size:16px;
}
.contact-page .contact-info .item p + span{
    margin-top:15px;
}

.contact-page .map-container,
.contact-page .nearby-places-container{
	width: 50%;
}
.contact-page .nearby-places-container{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e6e7e8;
}
.contact-page .nearby-places-container section{
	padding: 40px 15px;
}
.contact-page .nearby-places-container section > span{
	display: block;
	color: #939598;
	font-size: 14px;
	text-align: center;
}
.contact-page .nearby-places-container .title{
	text-align: center;
	margin-bottom: 30px;
}
.contact-page .nearby-places-container ul{
	list-style: none;
	color: #808285;
	font-size: 16px;
}
.contact-page .nearby-places-container li{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 10px 0;
}
.contact-page .nearby-places-container li:last-child{
	margin-bottom: 0;
}
.contact-page .nearby-places-container li > span{
	min-width: 200px;
	padding-right: 5px;
}
.contact-page .nearby-places-container li > b{
	min-width: 60px;
	font-weight: normal;
}

@media (max-width:767px){
	.contact-page .map-container,
	.contact-page .nearby-places-container{
		width: 100%;
	}
}
/* ---------- /contact ---------- */


/* ---------- contact-info-wrap ---------- */
.contact-info-wrap{
	list-style: none;
}
.contact-info-wrap li{
	font-size: 14px;
    line-height: 24px;
    
    margin-bottom: 10px;
}
.contact-info-wrap li,
.contact-info-wrap li a{
    color:#939598;
}
.contact-info-wrap li *{
	display: inline-block;
	vertical-align: middle;
}
.contact-info-wrap li .icon + *{
	margin-left: 8px;
}
/* ---------- /contact-info-wrap ---------- */



/*
==============================================
animations
==============================================
*/
.to-animate {
    visibility: hidden;
}
.animated{
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-ms-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
	
	visibility: visible !important;
}


/* ---------- fadeIn ---------- */
.fadeIn {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;

	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;

	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;

	visibility: visible;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0.0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0.0;
	}
	100% {
		opacity: 1;
	}
}


/* ---------- fadeInUp ---------- */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

/* ---------- fadeInDown ---------- */
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

/* ---------- fadeInLeft ---------- */
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

/* ---------- fadeInRight ---------- */
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	-moz-animation-name: fadeInRight;
	-o-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

/* ---------- /fadeInRight ---------- */

/* ---------- intl-tel-input Override  ---------- */

.iti-flag {
    background-image: url("../Plugins/intl-tel-input-14.0.0/img/flags.png");
}

.intl-tel-input .country-list {
    z-index: 5 !important;
    font-size: 11px;
}

.intl-tel-input {
    display: block !important;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti-flag {
        background-image: url("../Plugins/intl-tel-input-14.0.0/img/flags@2x.png");
    }
}
/* ---------- /intl-tel-input Override  ---------- */