:root {
	--redText: #e7111a;
	--redBg: #fd5049;
	--green: #188017;
	--greenBg: #62b666;
}

@media only screen and (min-width: 699px) {
	nav#menu.main-menu {
		display: block !important;
	}

	header .btn_mobile {
		display: none !important;
	}

	.main-menu {
		position: relative;
		z-index: 9;
		width: auto;
		top: 18px;
		right: 15px;
		float: right;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		color: #fff;
	}

	.main-menu ul,
	.main-menu ul li {
		position: relative;
		display: inline-block;
		margin: 0;
		padding: 0;
	}

	.main-menu ul a,
	.main-menu ul li a {
		position: relative;
		margin: 0;
		padding: 0;
		display: block;
		padding: 5px 10px;
		white-space: nowrap;
	}

	.main-menu>ul>li span>a {
		color: #fff;
		padding: 0 4px 15px;
		font-size: 14px;
		font-size: 0.875rem;
		font-weight: 500;
	}

	.main-menu>ul>li span:hover>a {
		opacity: 0.7;
	}

	header.sticky .main-menu>ul>li span>a {
		color: #444;
	}

	header.sticky .main-menu>ul>li span:hover>a {
		opacity: 1;
		color: var(--redText);
	}

	header.nocover .main-menu>ul>li span>a {
		color: #444 !important;
	}

	header.nocover .main-menu>ul>li span:hover>a {
		opacity: 1 !important;
		color: var(--redText) !important;
	}

	.main-menu ul ul {
		position: absolute;
		z-index: 1;
		visibility: hidden;
		left: 3px;
		top: 100%;
		margin: 0;
		display: block;
		padding: 0;
		background: #fff;
		min-width: 200px;
		-webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.175);
		-moz-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.175);
		box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.175);
		transform: scale(0.4);
		transform-origin: 10% top;
		transition: 0.15s linear, 0.1s opacity cubic-bezier(0.39, 0.575, 0.565, 1),
			0.15s transform cubic-bezier(0.1, 1.26, 0.83, 1);
		opacity: 0;
		-moz-transition: all 0.2s ease;
		-o-transition: all 0.2s ease;
		-webkit-transition: all 0.2s ease;
		-ms-transition: all 0.2s ease;
		transition: all 0.2s ease;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
	}

	.main-menu ul ul:before {
		bottom: 100%;
		left: 15%;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
		border-bottom-color: #fff;
		border-width: 7px;
		margin-left: -7px;
	}

	.main-menu ul ul li {
		display: block;
		height: auto;
		padding: 0;
	}

	.main-menu ul ul li a {
		font-size: 13px;
		font-size: 0.8125rem;
		color: #555;
		border-bottom: 1px solid #ededed;
		display: block;
		padding: 15px 10px;
		line-height: 1;
	}

	.main-menu ul li:hover>ul {
		padding: 0;
		visibility: visible;
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
		-webkit-transition-duration: 0s, 0.2s, 0.2s;
		transition-duration: 0s, 0.2s, 0.2s;
	}

	.main-menu ul ul li:first-child a:hover {
		-webkit-border-radius: 3px 3px 0 0;
		-moz-border-radius: 3px 3px 0 0;
		-ms-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}

	.main-menu ul ul li:last-child a {
		border-bottom: 0;
	}

	.main-menu ul ul li:last-child a:hover {
		-webkit-border-radius: 0 0 3px 3px;
		-moz-border-radius: 0 0 3px 3px;
		-ms-border-radius: 0 0 3px 3px;
		border-radius: 0 0 3px 3px;
	}

	.main-menu ul ul li:hover>a {
		background-color: #f9f9f9;
		color: var(--redText);
		padding-left: 18px;
	}
}

.main-menu ul ul li span a {
	font-weight: 400 !important;
}

.main-menu ul ul li span a:hover {
	color: var(--redText);
	padding-left: 18px;
	opacity: 1;
}

.main-menu ul ul li span a:after {
	font-family: tticons;
	/*font-family: ElegantIcons;
  content: "\35";*/
	content: "\E028";
	float: right;
	font-size: 16px;
	font-size: 1rem;
	margin-top: -2px;
}

.main-menu ul ul ul {
	position: absolute;
	border-top: 0;
	z-index: 1;
	height: auto;
	left: 100%;
	top: 0;
	margin: 0;
	padding: 0;
	background: #fff;
	min-width: 190px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(190, 100, 100, 0.175);
}

.main-menu ul ul ul li a {
	border-bottom: 1px solid #ededed !important;
}

.main-menu ul ul ul:before {
	border-width: 0;
	margin-left: 0;
}

@media only screen and (min-width: 699px) {
	nav#menu .close {
		display: nonel;
	}
}

@media only screen and (max-width: 699px) {
	nav#menu {
		display: block;
		background: #ffffff;
		position: fixed;
		left: 0;
		height: 100%;
		z-index: 9;
		overflow: hidden;
		width: 0%;
		transition: 0.2s;

		opacity: 0;
	}

	header.activemenu nav#menu {
		width: 100%;
		opacity: 1;
	}

	nav#menu .clsmnav:before {
		content: "×";
		display: block;
		float: right;
		margin-top: 5px;
		margin-right: 15px;
		font-size: 2rem;
		top: 0;
	}

	nav#menu ul {
		padding-top: 30px;
		min-width: 300px;
	}

	nav#menu ul li {
		display: block;
		padding: 10px;
		border-bottom: 1px solid #ccc;
	}

	nav#menu ul li ul {
		display: none;
	}

	.main-menu {
		top: 0;
		right: 0;
		float: none;
	}
}

[data-loader="circle-side"] {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	-webkit-animation: circle infinite 0.95s linear;
	-moz-animation: circle infinite 0.95s linear;
	-o-animation: circle infinite 0.95s linear;
	animation: circle infinite 0.95s linear;
	border: 2px solid var(--redText);
	border-top-color: rgba(0, 0, 0, 0.2);
	border-right-color: rgba(0, 0, 0, 0.2);
	border-bottom-color: rgba(0, 0, 0, 0.2);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	border-radius: 100%;
}

.right {
	text-align: right;
}

@-webkit-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes circle {
	0% {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: #f8f8f8;
	font-size: 0.875rem;
	line-height: 1.6;
	font-family: Poppins, Helvetica, sans-serif;
	color: #555;
	min-height: 100vh;
}

#page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333;
}

p {
	margin-bottom: 30px;
}

strong {
	font-weight: 600;
}

label {
	font-weight: 500;
	margin-bottom: 3px;
}

hr {
	margin: 30px 0;
	border-color: #ededed;
}

ul,
ol {
	list-style: none;
	margin: 0 0 25px;
	padding: 0;
}

.main_title {
	text-align: center;
	margin-bottom: 45px;
	position: relative;
}

.main_title span {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: auto;
	margin-bottom: 20px;
	opacity: 1;
	background-color: #999;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

.main_title_2 {
	text-align: center;
	margin-bottom: 45px;
	position: relative;
}

.main_title_2 span {
	width: 120px;
	height: 2px;
	background-color: #e1e1e1;
	display: block;
	margin: auto;
}

.main_title_2 span em {
	width: 60px;
	height: 2px;
	background-color: var(--redText);
	display: block;
	margin: auto;
}

@media (max-width: 699px) {
	.main_title_2 {
		margin-bottom: 10px;
	}
}

.main_title_2 h2 {
	margin: 25px 0 0;
}

@media (max-width: 699px) {
	.main_title_2 h2 {
		font-size: 26px;
		font-size: 1.625rem;
	}
}

.main_title_2 h3 {
	margin: 25px 0 0;
}

@media (max-width: 699px) {
	.main_title_2 h3 {
		font-size: 24px;
		font-size: 1.5rem;
	}
}

.main_title_2 p {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.4;
}

@media (max-width: 699px) {
	.main_title_2 p {
		font-size: 18px;
		font-size: 1.125rem;
	}
}

.main_title_3 {
	margin-bottom: 25px;
	position: relative;
}

.main_title_3 span {
	width: 120px;
	height: 2px;
	background-color: #e1e1e1;
	display: block;
}

.main_title_3 span em {
	width: 60px;
	height: 2px;
	background-color: var(--redText);
	display: block;
}

@media (max-width: 699px) {
	.main_title_3 {
		margin-bottom: 10px;
	}
}

.main_title_3 h2,
.main_title_3 h3 {
	font-size: 23px;
	font-size: 1.4375rem;
	margin: 25px 0 0;
}

@media (max-width: 699px) {

	.main_title_3 h2,
	.main_title_3 h3 {
		font-size: 21px;
		font-size: 1.3125rem;
	}
}

.main_title_3 p {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.4;
}

a,
.a {
	color: var(--redText);
	text-decoration: none;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	outline: 0;
}

a:hover {
	color: #111;
	text-decoration: none;
	outline: 0;
}

.lazy {
	-moz-transition: none;
	-o-transition: none;
	-webkit-transition: none;
	-ms-transition: none;
	transition: none;
}

.btn_clear {
	background: none;
	padding: 0;
	border: 0;
	color: #151515;
}

a.btn_1,
.btn_1 {
	border: 0;
	color: #fff;
	background: var(--redBg);
	outline: 0;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	padding: 15px 30px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	line-height: 1;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

a.btn_1:hover,
.btn_1:hover {
	background: #0054a6;
	color: #fff;
}

a.btn_1.full-width,
.btn_1.full-width {
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 5px;
}

a.btn_1.full-width.purchase,
.btn_1.full-width.purchase,
.btn_1.active {
	background-color: var(--green);
}

a.btn_1.full-width.purchase:hover,
.btn_1.full-width.purchase:hover {
	background-color: #0054a6;
}

a.btn_1.small,
.btn_1.small {
	font-size: 14px;
	padding: 5px 10px;
}

a.btn_1.rounded,
.btn_1.rounded {
	-webkit-border-radius: 25px !important;
	-moz-border-radius: 25px !important;
	-ms-border-radius: 25px !important;
	border-radius: 25px !important;
}

.btn_1.outline0 {
	border: 0px solid none;
	color: var(--redText);
	padding: 11px 40px;
	background: 0;
}

a.btn_1.outline,
.btn_1.outline {
	border: 2px solid var(--redText);
	color: var(--redText);
	padding: 11px 40px;
	background: 0;
}

a.btn_1.outline:hover,
.btn_1.outline:hover {
	background: #0054a6;
	color: #fff;
	border-color: #0054a6;
}

a.btn_1.outline:focus,
.btn_1.outline:focus {
	outline: 0;
}

a.btn {
	font-size: 16px;
	font-size: 1rem;
	padding: 10px 16px !important;
}

a.btn_map {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	padding: 8px 12px;
	line-height: 1;
	margin-bottom: 5px;
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, 0.08);
	font-weight: 600;
	font-size: 12px;
	font-size: 0.75rem;
	color: rgba(0, 0, 0, 0.5);
}

a.btn_map:hover {
	color: var(--redText);
}

a.btn_map:before {
	/*font-family: ElegantIcons;
  content: "\e081";*/
	font-family: tticons;
	content: "\E02D";
	display: inline-block;
	margin-right: 5px;
}

a.btn_map_in,
.btn_map_in {
	border: 0;
	color: #fff;
	background: var(--redText);
	outline: 0;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	padding: 15px 30px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	width: 100%;
	margin-bottom: 20px;
	display: inline-block;
	line-height: 1;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

a.btn_map_in:hover,
.btn_map_in:hover {
	background: #0054a6;
	color: #fff;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 10px 30px;
	z-index: 99997;
	border-bottom: 1px solid rgba(255, 255, 255, 0);
}

@media (max-width: 699px) {
	header {
		padding: 15px 15px 5px;
	}

	img {
		max-width: 100%;
		height: auto;
	}
}

header.header .logo_sticky {
	display: none;
}

header.header.sticky,
.nocover {
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-bottom: 1px solid #ededed;
	background-color: #fff;
}

header.header.sticky {
	opacity: 0.9;
}

@media (max-width: 699px) {
	header.header.sticky {
		padding: 15px 15px 5px;
	}
}

header.header.sticky .logo_normal {
	display: none;
}

header.header.sticky .logo_sticky {
	display: inline-block;
}

ul#top_menu {
	float: right;
	margin: 7px 0 0 10px;
	padding: 0;
	font-size: 13px;
	font-size: 0.8125rem;
}

@media (max-width: 699px) {
	ul#top_menu {
		margin: -2px 0 0 10px;
	}
}

ul#top_menu li {
	float: left;
	margin: 0;
	line-height: 1;
	margin-right: 15px;
}

ul#top_menu li:last-child {
	margin-right: 0;
	position: relative;
	top: 0;
}

@media (max-width: 699px) {
	ul#top_menu li {
		margin: 0 0 0 10px;
	}
}

@media (max-width: 699px) {
	ul#top_menu li:first-child {
		display: none;
	}
}

ul#top_menu li a {
	color: #fff;
}

ul#top_menu li a:hover {
	color: #fff;
	opacity: 0.7;
}

ul#top_menu li a.cart-menu-btn {
	display: block;
	width: 22px;
	height: 23px;
	position: relative;
	top: 8px;
	-moz-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
	-webkit-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}

@media (max-width: 699px) {
	ul#top_menu li a.cart-menu-btn {
		top: 2px;
	}
}

ul#top_menu li a.cart-menu-btn:before {
	font-family: Glyphter;
	font-size: 21px;
	font-size: 1.3125rem;
	color: #fff;
	text-indent: 0;
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 400;
	line-height: 1;
}

.sticky ul#top_menu li a:before {
	color: #444;
}

.nocover ul#top_menu li a:before {
	color: #444;
}

header.header.nocover .logo_sticky {
	display: inline-block !important;
}

header.header.nocover .logo_normal {
	display: none !important;
}

ul#top_menu li a.cart-menu-btn {
	top: 6px;
}

@media (max-width: 699px) {
	ul#top_menu li a.cart-menu-btn {
		top: 0;
	}
}

ul#top_menu li a.cart-menu-btn:before {
	content: "\0041";
}

ul#top_menu li a.cart-menu-btn strong {
	font-size: 11px;
	font-size: 0.6875rem;
	width: 15px;
	height: 15px;
	display: block;
	background-color: #333;
	color: #fff;
	position: relative;
	bottom: -15px;
	right: -10px;
	text-align: center;
	line-height: 17px !important;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	margin: 0;
	padding: 0;
}

.dropdown-user .dropdown-menu {
	border: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	min-width: 0;
	padding: 0;
	width: 150px;
	top: 160%;
	margin-left: -115px;
	font-weight: 400;
	text-shadow: none;
	text-transform: none !important;
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.02);
	border-left: 1px solid rgba(0, 0, 0, 0.02);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
	box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	padding: 0;
}

.dropdown-user .dropdown-menu:before {
	bottom: 100%;
	right: 10%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #fff;
	border-width: 7px;
	margin-left: -7px;
}

.dropdown-user .dropdown-menu ul {
	padding: 0;
	margin: 0 !important;
	list-style: none;
}

.dropdown-user .dropdown-menu ul li {
	border-bottom: 1px solid #ededed;
	margin: 0;
	width: 100%;
	margin-bottom: 15px;
	display: inline-block;
	font-size: 13px;
	font-size: 0.8125rem;
}

@media (max-width: 699px) {
	.dropdown-user .dropdown-menu ul li {
		margin: 0 !important;
	}
}

.dropdown-user .dropdown-menu ul li a {
	color: #444 !important;
	padding: 15px 8px;
	display: block;
}

.dropdown-user .dropdown-menu ul li a:hover {
	color: var(--redText) !important;
	opacity: 1 !important;
	padding-left: 15px;
}

.dropdown-user .dropdown-menu ul li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
}

@media (max-width: 699px) {
	.dropdown-user .dropdown-menu ul li:first-child {
		display: block !important;
	}
}

header.sticky .hamburger-inner,
header.sticky .hamburger-inner::before,
header.sticky .hamburger-inner::after {
	background-color: #444;
}

header.nocover .hamburger-inner,
header.nocover .hamburger-inner::before,
header.nocover .hamburger-inner::after {
	background-color: #444 !important;
}

#logo {
	float: left;
	z-index: 1;
}

@media (max-width: 699px) {
	#logo {
		float: none;
		position: absolute;
		top: 0;
		left: 50%;
		margin-left: -70px;
		width: 140px;
		text-align: center;
	}

	#logo img {
		width: auto;
		height: 40px;
		margin: 3px 0 0;
	}
}

.hero_in {
	width: 100%;
	height: 450px;
	position: relative;
	overflow: hidden;
	text-align: center;
	color: #fff;
}

@media (max-width: 699px) {
	.hero_in {
		height: 350px;
	}
}

.hero_in.tours:before {
	background: url(../img/pixel.jpg) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.hero_in.tours .wrapper {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.3);
}

.hero_in.hotels:before {
	background: url(../img/pixel.jpg) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.hero_in.hotels .wrapper {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.3);
}

.hero_in.tours_detail {
	height: 550px;
}

@media (max-width: 575px) {
	.hero_in.tours_detail {
		height: 280px;
	}
}

.hero_in.tours_detail .wrapper {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.3);
}

.hero_in.hotels_detail {
	height: 550px;
}

@media (max-width: 575px) {
	.hero_in.hotels_detail {
		height: 500px;
	}
}

.hero_in.hotels_detail:before {
	background: url(../img/pixel.jpg) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.hero_in.hotels_detail .wrapper {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.3);
}

.hero_in.contacts:before {
	background: url(../img/pixel.jpg) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.hero_in.contacts .wrapper {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.3);
}

/*
.hero_in:before {
  animation: pop-in 5s .3s cubic-bezier(0,.5,0,1) forwards;
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
*/
.hero_in .wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.hero_in .wrapper h1 {
	color: #fff;
	font-size: 42px;
	font-size: 2.625rem;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 30px;
}

.hero_in .wrapper h2 {
	color: #fff;
	font-size: 32px;
	font-size: 1.6rem;
	font-weight: 600;
	margin-top: 10px;
}

@media (max-width: 699px) {
	.hero_in .wrapper h1 {
		font-size: 32px;
		font-size: 1.6rem;
	}

	.hero_in .wrapper h2 {
		font-size: 20px;
		font-size: 1.2rem;
	}
}

.hero_in .wrapper h1 span {
	width: 80px;
	height: 4px;
	margin: auto;
	background-color: #ffc107;
	display: block;
	margin: auto;
	margin-bottom: 20px;
	border-radius: 10px;
	opacity: 1;
}

.hero_in .wrapper p {
	font-weight: 300;
	margin-bottom: 0;
	font-size: 24px;
	font-size: 1.5rem;
}

.hero_in .wrapper p strong {
	font-weight: 600;
}

.hero_in a.btn_photos {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background-color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
	line-height: 1;
	padding: 10px 15px;
	color: #444;
	font-weight: 500;
}

.hero_in a.btn_photos:hover {
	color: var(--redText);
}

@keyframes pop-in {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		transform: scale(1.1);
	}
}

.hero_in h1 {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
}

.hero_in p {
	animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	animation-duration: 0.3s;
	-webkit-animation-duration: 0.3s;
	-moz-animation-duration: 0.3s;
}

main {
	background-color: #f8f8f8;
	position: relative;
	z-index: 1;
}

footer {
	background-color: #121921;
	color: #fbfbfb;
	color: rgba(255, 255, 255, 0.7);
}

footer h5 {
	color: #fff;
	margin: 25px 0;
	font-size: 18px;
	font-size: 1.125rem;
}

@media (max-width: 575px) {
	footer h5 {
		margin: 25px 0 10px;
	}
}

footer ul li {
	font-size: 1rem;
	min-height: 30px;
}

footer ul li a,
.flink {
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	display: inline-block;
	position: relative;
	color: #fff;
	opacity: 0.7;
}

footer ul li a:hover,
.flink:hover {
	color: var(--redText);
	opacity: 1;
}

footer ul li a i {
	margin-right: 10px;
	color: #fff;
}

footer ul.links li a:hover {
	-webkit-transform: translate(5px, 0);
	-moz-transform: translate(5px, 0);
	-ms-transform: translate(5px, 0);
	-o-transform: translate(5px, 0);
	transform: translate(5px, 0);
}

footer ul.links li a:hover:after {
	opacity: 1;
	color: var(--redText);
}

footer ul.links li a:after {
	/*font-family: ElegantIcons;
  content: "\24";*/
	font-family: tticons;
	content: "\E02E";
	position: absolute;
	margin-left: 5px;
	top: 1px;
	opacity: 0;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

footer ul.contacts li a i {
	margin-right: 10px;
}

footer hr {
	opacity: 0.1;
}

footer #copy {
	text-align: right;
	font-size: 13px;
	font-size: 0.8125rem;
	opacity: 0.7;
}

@media (max-width: 699px) {
	footer #copy {
		text-align: left;
		margin: 5px 0 20px;
	}
}

#newsletter .form-group {
	position: relative;
}

#newsletter h6 {
	color: #fff;
	margin: 15px 0;
}

#newsletter .form-group {
	position: relative;
}

#newsletter input[type="email"] {
	border: 0;
	height: 40px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	padding-left: 15px;
	font-size: 14px;
	font-size: 0.875rem;
	background-color: #f3f3f3;
	background-color: rgba(255, 255, 255, 0.06);
	color: #fff;
}

#newsletter input[type="email"]:focus {
	border: 0;
	box-shadow: none;
}

#newsletter input[type="submit"] {
	position: absolute;
	right: 0;
	color: #fff;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 600;
	top: 0;
	border: 0;
	padding: 0 12px;
	height: 40px;
	cursor: pointer;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	-ms-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	background-color: var(--redText);
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	outline: 0;
}

#newsletter input[type="submit"]:hover {
	background-color: #ffc107;
	color: #222;
}

.follow_us {
	margin-top: 15px;
	animation-delay: 1.1s;
	-webkit-animation-delay: 1.1s;
	-moz-animation-delay: 1.1s;
}

.follow_us h5 {
	color: #fff;
}

.follow_us ul li {
	display: inline-block;
	margin-right: 5px;
	font-size: 20px;
	font-size: 1.25rem;
}

.follow_us ul li:first-child {
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
	font-size: 13px;
	font-size: 0.8125rem;
}

.follow_us ul li a {
	color: #fff;
	opacity: 0.7;
}

.follow_us ul li a:hover {
	opacity: 1;
}

ul#additional_links {
	margin: 0;
	padding: 8px 0 0;
	color: #555;
	font-size: 13px;
	font-size: 0.8125rem;
	float: right;
}

@media (max-width: 991px) {
	ul#additional_links {
		float: none;
		margin-top: 10px;
	}
}

ul#additional_links li {
	display: inline-block;
	margin-right: 15px;
}

ul#additional_links li:first-child,
.mr20 {
	margin-right: 20px;
}

ul#additional_links li:last-child:after {
	content: "";
}

ul#additional_links li span {
	color: #fff;
	opacity: 0.5;
}

ul#additional_links li a {
	color: #fff;
	opacity: 0.5;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

ul#additional_links li a:hover {
	opacity: 1;
}

ul#additional_links li:after {
	content: "|";
	font-weight: 300;
	position: relative;
	left: 10px;
}

.wow {
	visibility: hidden;
}

.carousel li {
	margin-right: 5px;
}

@media (max-width: 1199px) {
	.partners li {
		margin: 10px 20px;
		text-align: center;
		float: left;
	}
}

@media (max-width: 699px) {
	.partners li {
		margin: 10px 0;
		width: 50%;
	}
}

.header-video {
	position: relative;
	overflow: hidden;
	background: #000;
}

@media (max-width: 991px) {
	.header-video {
		height: 620px !important;
	}
}

#hero_video {
	position: relative;
	background-size: cover;
	color: #fff;
	width: 100%;
	font-size: 16px;
	font-size: 1rem;
	height: 100%;
	z-index: 99;
	text-align: center;
	display: table;
}

#hero_video .wrapper {
	display: table-cell;
	vertical-align: middle;
}

#hero_video .wrapper h3 {
	color: #fff;
	font-size: 42px;
	font-size: 2.625rem;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0;
	text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 699px) {
	#hero_video .wrapper h3 {
		font-size: 26px;
		font-size: 1.625rem;
		margin-top: 60px;
	}
}

@media (max-width: 575px) {
	#hero_video .wrapper h3 {
		font-size: 22px;
		font-size: 1.375rem;
	}
}

#hero_video .wrapper p {
	font-weight: 300;
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 1.4;
	text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

#hero_video .wrapper p strong {
	font-weight: 600;
}

@media (max-width: 699px) {
	#hero_video .wrapper p {
		padding: 0;
		font-size: 14px;
		font-size: 0.875rem;
	}
}

video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.4;
}

video {
	width: 100%;
}

.header-video--media {
	width: 100%;
	height: auto;
}

@media (max-width: 1024px) {
	#hero_video {
		background: #ccc url(../img/pixel.jpg);
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	#hero_video>div {
		background-color: #000;
		background-color: rgba(0, 0, 0, 0.5);
	}

	.header-video {
		background: 0;
	}
}

.hero_single {
	width: 100%;
	position: relative;
	overflow: hidden;
	text-align: center;
	margin: 0;
	color: #fff;
}

.hero_single .wrapper {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.8);
}

.hero_single .wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.hero_single .wrapper h3,
.hero_in .wrapper h3 {
	color: #fff;
	font-size: 52px;
	font-size: 3.25rem;
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
}

@media (max-width: 699px) {
	.hero_single .wrapper h3 {
		font-size: 21px;
		font-size: 1.3125rem;
	}
}

@media (max-width: 575px) {
	.hero_single .wrapper h3 {
		font-size: 23px;
		font-size: 1.4375rem;
	}
}

.hero_single .wrapper p {
	font-weight: 300;
	margin: 10px 0 0;
	padding: 0 20%;
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 1.4;
}

.hero_single .wrapper p strong {
	font-weight: 600;
}

@media (max-width: 699px) {
	.hero_single .wrapper p {
		padding: 0;
		font-size: 18px;
		font-size: 1.125rem;
	}
}

.hero_single.version_2 {
	height: 620px;
}

.hero_single.version_2:before {
	background: url(../img/pixel.jpg) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.hero_single.version_2 .wrapper {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.25);
}

.hero_single.version_2 .wrapper h3 {
	font-size: 42px;
	font-size: 2.625rem;
	text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 838px) {
	.hero_single.version_2 .wrapper h3 {
		font-size: 26px;
		font-size: 1.625rem;
		margin-top: 60px;
	}
}

@media (max-width: 575px) {
	.hero_single.version_2 .wrapper h3 {
		font-size: 22px;
		font-size: 1.375rem;
	}
}

.hero_single.version_2 .wrapper p {
	font-weight: 400;
	margin: 5px 0 0;
	padding: 0;
	font-size: 21px;
	font-size: 1.3125rem;
	text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero_single.version_2 .wrapper p strong {
	font-weight: 600;
}

@media (max-width: 699px) {
	.hero_single.version_2 .wrapper p {
		padding: 0;
		font-size: 14px;
		font-size: 0.875rem;
	}
}

#custom-search-input {
	padding: 0;
	width: 600px;
	margin: 20px auto 0;
	position: relative;
}

@media (max-width: 991px) {
	#custom-search-input {
		width: auto;
	}
}

#custom-search-input .search-query {
	width: 100%;
	height: 50px;
	padding-left: 20px;
	border: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	font-size: 16px;
	font-size: 1rem;
	color: #333;
}

#custom-search-input .search-query:focus {
	outline: 0;
}

@media (max-width: 575px) {
	#custom-search-input .search-query {
		padding-left: 15px;
	}
}

#custom-search-input input[type="submit"] {
	position: absolute;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	right: -1px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	font-size: 0.875rem;
	top: 0;
	border: 0;
	padding: 0 25px;
	height: 50px;
	cursor: pointer;
	outline: 0;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	-ms-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	background-color: var(--redText);
}

#custom-search-input input[type="submit"]:hover {
	background-color: #ffc107;
	color: #222;
}

@media (max-width: 575px) {
	#custom-search-input input[type="submit"] {
		text-indent: -999px;
		background: var(--redText) url(../img/search.svg) no-repeat center center;
	}
}

.custom-search-input-2 {
	background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	margin-top: 15px;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
}

.custom-search-input-2 input {
	border: 0;
	height: 50px;
	padding-left: 15px;
	font-weight: 500;
}

@media (max-width: 699px) {
	.custom-search-input-2 input {
		border: 0;
	}

	.custom-search-input-2 {
		background: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	.custom-search-input-2 .form-group {
		margin-bottom: 5px;
	}

	.custom-search-input-2 input:focus {
		border-right: 0;
	}

	.custom-search-input-2 i {
		padding-right: 10px;
	}
}

.custom-search-input-2 input:focus {
	box-shadow: none;
	border-right: 1px solid #d2d8dd;
}

.custom-search-input-2 select {
	display: none;
}

.custom-search-input-2 .form-group {
	margin: 0;
}

.custom-search-input-2 i {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	font-size: 18px;
	font-size: 1.125rem;
	position: absolute;
	background-color: #fff;
	line-height: 50px;
	top: 0;
	right: 1px;
	padding-right: 15px;
	display: block;
	width: 20px;
	box-sizing: content-box;
	height: 50px;
	z-index: 9;
	color: #999;
}

.custom-search-input-2 input[type="submit"],
.btnred {
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	font-size: 0.875rem;
	border: 0;
	padding: 0 25px;
	height: 50px;
	cursor: pointer;
	outline: 0;
	width: 100%;
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	-ms-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	background-color: var(--redBg);
	margin-right: -1px;
}

@media (max-width: 574px) {

	.custom-search-input-2 input[type="submit"],
	.btnred {
		margin: 20px 0 0;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
	}

	.custom-search-input-2.inner {
		margin: 0 0 20px;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
}

.custom-search-input-2 input[type="submit"]:hover,
.btnred:hover {
	background-color: #ffc107;
	color: #222;
}

.custom-search-input-2.inner {
	margin-bottom: 30px;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.custom-search-input-2.inner-2 {
	margin: 0 0 20px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	background: 0;
}

.custom-search-input-2.inner-2 .form-group {
	margin-bottom: 10px;
}

.custom-search-input-2.inner-2 input {
	border: 1px solid #ededed;
}

.custom-search-input-2.inner-2 input[type="submit"] {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	margin-top: 10px;
}

.custom-search-input-2.inner-2 i {
	padding-right: 10px;
	line-height: 48px;
	height: 48px;
	top: 1px;
}

.panel-dropdown {
	position: relative;
	text-align: left;
	padding: 15px 10px 0 15px;
}

@media (max-width: 991px) {
	.panel-dropdown {
		background-color: #fff;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		height: 50px;
	}
}

.panel-dropdown a {
	color: #727b82;
	font-weight: 500;
	transition: all 0.3s;
	display: block;
	position: relative;
	font-size: 14px;
}

.panel-dropdown a:after {
	/*font-family: ElegantIcons;
  content: "\33";*/
	font-family: tticons;
	content: "\E026";
	font-size: 24px;
	font-size: 1.5rem;
	color: #999;
	font-weight: 500;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: absolute;
	right: 0;
	top: -8px;
}

.panel-dropdown.active a:after {
	transform: rotate(180deg);
}

.panel-dropdown .panel-dropdown-content {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	position: absolute;
	top: 58px;
	left: 0;
	z-index: 99;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
	padding: 15px 15px 0;
	white-space: normal;
	width: 280px;
}

.panel-dropdown .panel-dropdown-content:after {
	bottom: 100%;
	left: 15px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #fff;
	border-width: 7px;
	margin-left: -7px;
}

.panel-dropdown .panel-dropdown-content.right {
	left: auto;
	right: 0;
}

.panel-dropdown .panel-dropdown-content.right:after {
	left: auto;
	right: 15px;
}

.panel-dropdown.active .panel-dropdown-content {
	opacity: 1;
	visibility: visible;
}

.qtyButtons {
	display: flex;
	margin: 0 0 13px;
}

.qtyButtons input {
	outline: 0;
	font-size: 16px;
	font-size: 1rem;
	text-align: center;
	width: 30px;
	height: 36px !important;
	color: #333;
	line-height: 36px;
	margin: 0 !important;
	padding: 0 5px !important;
	border: 0;
	box-shadow: none;
	pointer-events: none;
	display: inline-block;
	border: 0 !important;
}

.qtyButtons label {
	font-weight: 500;
	line-height: 35px;
	padding-right: 15px;
	display: block;
	flex: 1;
	color: #727b82;
}

.qtyTotal {
	background-color: #66676b;
	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: 0;
	left: 2px;
	height: 18px;
	width: 18px;
}

.qtyInc,
.qtyDec {
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 28px;
	font-size: 1.75rem;
	background-color: #f2f2f2;
	-webkit-text-stroke: 1px #f2f2f2;
	color: #333;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	/*font-family: 'ElegantIcons';*/
	font-family: tticons;
}

.qtyInc:before {
	content: "\E030";
}

.qtyDec:before {
	content: "\E02F";
}

@keyframes rotate-x {
	from {
		transform: rotateY(0deg);
	}

	to {
		transform: rotateY(360deg);
	}
}

a.grid_item {
	display: block;
	margin-bottom: 25px;
}

a.grid_item .info {
	position: absolute;
	width: 100%;
	z-index: 9;
	display: block;
	padding: 25px 20px 5px;
	color: #fff;
	left: 0;
	bottom: 0;
	background: transparent;
	background: -webkit-linear-gradient(top, transparent, #000);
	background: linear-gradient(to bottom, transparent, #000);
	box-sizing: border-box;
}

a.grid_item .info .cat_star {
	font-size: 9px;
	font-size: 0.5625rem;
}

a.grid_item .info .cat_star i {
	color: #fff;
}

a.grid_item .info h3 {
	color: #fff;
	font-size: 21px;
	font-size: 1.3125rem;
}

a.grid_item .info p {
	color: #fff;
	margin-bottom: 0;
	font-size: 15px;
	font-size: 0.9375rem;
}

a.grid_item figure,
.ppreview .figure {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.ppreview .pdates {
	padding-left: 10px;
	font-size: 15px;
	font-weight: bold;
	margin-top: -55px;
	margin-right: 15px;
	right: 0;
	position: absolute;
	color: #fff;

	background-color: #00000050;
	color: #fff;
	line-height: 1;
	border-radius: 5px;
	padding: 10px;
}

.ppreview .ppricedual {
	display: flex;
	align-items: center;
}

.o5 {
	opacity: 0.5;
	color: #000;
	font-weight: normal;
}

.ppreview .ptransport {
	padding-left: 10px;
	font-size: 15px;
	font-weight: bold;
	margin-top: -55px;
	margin-left: 15px;
	position: absolute;
	color: #fff;
	background-color: #00000050;
	color: #fff;
	line-height: 1;
	border-radius: 5px;
	padding: 10px;
}

@media (max-width: 699px) {

	a.grid_item figure,
	.ppreview .figure {
		height: 350px !important;
	}
}

@media (max-width: 575px) {

	.grid_item figure,
	.ppreview .figure {
		height: auto !important;
	}
}

.ppreview .figure strong,
.ppreview .figure span.promo-label {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 8;
}

.grid_item figure small {
	position: absolute;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.6);
	left: 20px;
	top: 22px;
	text-transform: uppercase;
	color: #ccc;
	font-weight: 600;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	padding: 7px 10px 4px;
	line-height: 1;
	z-index: 8;
}

a.grid_item figure img,
.ppreview .figure img {
	width: 100%;
	height: auto;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	object-fit: cover;
}

a.grid_item:hover figure img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.search_container {
	padding: 30px 0 15px;
	border-bottom: 1px solid #ededed;
}

div.box_feat {
	font-size: 1.1rem;
}

a.box_feat {
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.box_feat {
	text-align: center;
	background: #fff;
	padding: 40px 30px 30px;
	display: block;
	-webkit-box-shadow: 0 3px 0 0 #f0f2f4;
	-moz-box-shadow: 0 3px 0 0 #f0f2f4;
	box-shadow: 0 3px 0 0 #f0f2f4;
	color: #555;
	margin-bottom: 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	overflow: hidden;
}

@media (max-width: 699px) {
	.box_feat {
		padding: 10px 10px 0;
	}
}

a.box_feat:hover {
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0 3px 0 0 #ebedef;
	-moz-box-shadow: 0 3px 0 0 #ebedef;
	box-shadow: 0 3px 0 0 #ebedef;
}

.box_feat i {
	font-size: 70px;
	font-size: 4.375rem;
	color: var(--green);
	margin-bottom: 10px;
}

.box_feat h3 {
	font-size: 18px;
	font-size: 1.125rem;
}

#carousel {
	margin-top: 40px;
}

@media (max-width: 699px) {
	#carousel {
		margin-bottom: 30px;
	}
}

#carousel .item .title {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	z-index: 9;
}

#carousel .item .title h4 {
	background-color: #0054a6;
	background-color: #0054a6;
	display: inline-block;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	-ms-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
	color: #fff;
	padding: 10px 15px;
	margin: 0;
	font-size: 16px;
	font-size: 1rem;
	opacity: 0;
}

#carousel .item .title h4 em {
	display: block;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 300;
	margin-top: 3px;
}

#carousel .item a {
	position: relative;
	display: block;
}

#carousel .owl-item {
	opacity: 0.5;
	transform: scale(0.85);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(0.85, 0.85);
	transition: all 0.3s ease-in-out 0s;
	overflow: hidden;
}

#carousel .owl-item.active.center {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1, 1);
	transform: scale(1);
}

#carousel .owl-item.active.center .item .title h4 {
	opacity: 1;
}

.mr10 {
	margin-right: 10px;
}

.ppreview .figure strong,
.ppreview .figure span.promo-label {
	background-color: rgba(0, 75, 156, 0.6);
	color: #fff;
	font-weight: bold;
	line-height: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	padding: 10px;
	margin-left: 5px;
	display: inline-block;
}

.score span {
	display: inline-block;
	position: relative;
	top: 7px;
	margin-right: 8px;
	font-size: 12px;
	font-size: 0.75rem;
	text-align: right;
	line-height: 1.1;
	font-weight: 500;
}

.score span em {
	display: block;
	font-weight: 400;
	font-size: 11px;
	font-size: 0.6875rem;
}

.wrapper-grid {
	padding: 0 20px;
}

.box_grid {
	background-color: #fff;
	display: block;
	position: relative;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.box_grid .price {
	display: inline-block;
	color: var(--green);
	font-weight: bold;

	line-height: 35px;
}

.box_grid .price.bold i {
	color: #999;
	font-weight: normal;
}

.box_grid figure,
.ppreview .figure {
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
	height: 210px;
}

.bubble a,
a.bubble {
	color: #333;
	display: block;
	padding: 5px 10px;
	background: #eeeeee;
	border-radius: 6px;
	font-size: 14px;
	margin-top: 5px;
	margin-bottom: 5px;
}

a.bubble {
	display: inline-block;
	margin: 5px;
}

.bubble a:hover,
a.bubble:hover,
.bubble.active {
	background: #cccccc;
}

.box_grid figure small,
.ppreview .figure small {
	position: absolute;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.6);
	left: 20px;
	top: 22px;
	text-transform: uppercase;
	color: #ccc;
	font-weight: 600;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	padding: 7px 10px 4px;
	line-height: 1;
}

/*
.box_grid figure a img, .ppreview .figure a img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%) scale(1.1);
  -moz-transform: translate(-50%,-50%) scale(1.1);
  -ms-transform: translate(-50%,-50%) scale(1.1);
  -o-transform: translate(-50%,-50%) scale(1.1);
  transform: translate(-50%,-50%) scale(1.1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
*/
/*
.box_grid figure a:hover img {
  -webkit-transform: translate(-50%,-50%) scale(1);
  -moz-transform: translate(-50%,-50%) scale(1);
  -ms-transform: translate(-50%,-50%) scale(1);
  -o-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%,-50%) scale(1);
}
*/
.box_grid .wrapper {
	padding: 25px;
}

.box_grid .wrapper h3 {
	font-size: 20px;
	font-size: 1.25rem;
	margin-top: 0;
}

.box_grid .wrapper p {
	font-size: 14px;
	margin: 0 !important;
}

.box_grid ul {
	padding: 10px;
	border-top: 1px solid #ededed;
	height: 55px;
}

.box_grid ul li .btn_1,
.btnmiddle {
	padding: 10px 20px;
}

.box_grid ul li {
	display: inline-block;
	margin-right: 0;
}

.box_grid ul li .score {
	margin-top: -10px;
}

.box_grid ul li:last-child {
	margin-right: 0;
	float: right;
}

.cat_star i {
	margin-right: 2px;
	color: #ffc107;
}

.box_list {
	background-color: #fff;
	display: block;
	position: relative;
	margin: 0 15px 30px;
	min-height: 310px;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.box_list figure {
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
	min-height: 310px;
}

@media (max-width: 991px) {
	.box_list figure {
		min-height: 220px;
		max-height: 220px;
		height: 220px;
	}
}

.box_list figure small {
	position: absolute;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.6);
	right: 20px;
	top: 20px;
	text-transform: uppercase;
	color: #ccc;
	font-weight: 600;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	padding: 7px 10px 4px;
	line-height: 1;
	z-index: 99;
}

@media (max-width: 991px) {
	.box_list figure small {
		right: 15px;
		top: 15px;
	}
}

@media (max-width: 991px) {
	.box_list figure {
		min-height: 220px;
		max-height: 220px;
		height: 220px;
	}
}

.box_list figure a img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	-moz-transform: translate(-50%, -50%) scale(1.1);
	-ms-transform: translate(-50%, -50%) scale(1.1);
	-o-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	width: 100%;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height: 320px;
	width: auto;
	max-width: none;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
	.box_list figure a img {
		max-width: inherit;
		height: 460px;
		width: auto;
	}
}

@media (max-width: 699px) {
	.box_list figure a img {
		height: 350px;
	}
}

.box_list figure a:hover img {
	-webkit-transform: translate(-50%, -50%) scale(1);
	-moz-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	-o-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.box_list .wrapper {
	padding: 30px 30px 20px;
	min-height: 245px;
}

@media (max-width: 991px) {
	.box_list .wrapper {
		min-height: inherit;
	}
}

.box_list .wrapper h3 {
	font-size: 20px;
	font-size: 1.25rem;
	margin-top: 0;
}

.box_list .wrapper .price {
	display: inline-block;
	font-weight: 500;
	color: #999;
}

.box_list .wrapper .price strong {
	color: var(--green);
}

.box_list small {
	text-transform: uppercase;
	color: #999;
	font-weight: 600;
}

.box_list ul {
	padding: 20px 15px 20px 30px;
	border-top: 1px solid #ededed;
	margin-bottom: 0;
}

.box_list ul li {
	display: inline-block;
	margin-right: 15px;
}

.box_list ul li .score {
	margin-top: -10px;
}

.box_list ul li:last-child {
	margin-right: 0;
	float: right;
}

#list_sidebar .box_list {
	min-height: 330px;
}

#list_sidebar .box_list figure {
	min-height: 330px;
}

@media (max-width: 991px) {
	#list_sidebar .box_list figure {
		min-height: 200px;
		max-height: 200px;
		height: 200px;
	}
}

#list_sidebar .box_list figure a img {
	height: 350px;
}

@media (max-width: 991px) {
	#list_sidebar .box_list figure a img {
		max-width: 100%;
		height: auto;
		width: inherit;
	}
}

#list_sidebar .box_list .wrapper {
	min-height: 265px;
}

@media (max-width: 991px) {
	#list_sidebar .box_list .wrapper {
		min-height: inherit;
	}
}

#filters_col {
	background-color: #fff;
	padding: 20px 20px 15px;
	margin-bottom: 25px;
	border: 1px solid #ededed;
}

#filters_col label {
	color: #333;
	font-weight: 400;
	font-size: 13px;
	font-size: 0.8125rem;
}

a#filters_col_bt {
	display: block;
	color: #333;
	position: relative;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 600;
}

a#filters_col_bt:before {
	/*font-family: ElegantIcons;
  content: "\66";*/
	font-family: tticons;
	content: "\E022";
	font-size: 26px;
	font-size: 1.625rem;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 1;
	font-weight: 400;
}

.filter_type h6 {
	border-top: 1px solid #ededed;
	margin: 15px 0;
	padding: 15px 0 0;
	font-size: 13px;
	font-size: 0.8125rem;
}

.filter_type ul {
	list-style: none;
	padding: 0;
	margin: 0 0 15px;
}

.filter_type ul li {
	margin-bottom: 5px;
}

.filter_type ul li:last-child {
	margin-bottom: 0;
}

.boxed_list {
	text-align: center;
	padding: 30px;
	border: 1px solid #ededed;
	display: block;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-bottom: 25px;
}

.boxed_list i {
	font-size: 60px;
	font-size: 3.75rem;
	margin-bottom: 15px;
}

.boxed_list h4 {
	font-size: 18px;
	font-size: 1.125rem;
	color: #333;
}

.boxed_list p {
	color: #777;
	margin-bottom: 0;
}

.boxed_list:hover i {
	color: var(--green);
}

.secondary_nav {
	background: #fff;
	border-bottom: 1px solid #ededed;
	padding: 5px 0;
	opacity: 0.9;
}

.secondary_nav ul {
	margin-bottom: 0;
}

.secondary_nav ul li {
	display: inline-block;
	margin-right: 15px;
	font-weight: 500;
	font-size: 16px;
	font-size: 1rem;
}

.secondary_nav ul li a {
	color: rgba(0, 0, 0, 0.5);
}

.secondary_nav ul li a:hover {
	color: var(--redText);
}

.secondary_nav ul li a.active {
	color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 575px) {
	.secondary_nav ul li:last-child {
		display: inline-block;
	}
}

section#description {
	border-bottom: 3px solid #ededed;
	margin-bottom: 45px;
}

section#description h2 {
	font-size: 24px;
	font-size: 1rem;
}

section#description h3 {
	font-size: 21px;
	font-size: 1.3125rem;
}

section#description h4 {
	font-size: 18px;
	font-size: 1.125rem;
}

.box_detail {
	padding: 25px 25px 15px;
	border: 1px solid #ededed;
	background-color: #f8f8f8;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 30px;
}

.box_detail .price {
	line-height: 1;
	border-bottom: 1px solid #ededed;
	margin: 0 -25px 25px -25px;
	padding: 0 25px 15px;
}

.box_detail .price>span {
	font-size: 31px;
	font-size: 1.9375rem;
	font-weight: 600;
}

.box_detail .price>span>small {
	font-size: 11px;
	font-size: 0.6875rem;
	font-weight: 500;
}

.box_detail .price .score {
	float: right;
	margin-top: -5px;
}

.box_detail h3 {
	font-size: 20px;
	font-size: 1.25rem;
	margin: 25px 0 10px;
}

.box_detail ul {
	margin-bottom: 0;
}

.box_detail ul li {
	margin-bottom: 5px;
}

.box_detail ul li i {
	margin-right: 8px;
}

#productform small {
	font-size: 13px !important;
}

.box_detail figure {
	position: relative;
	background-color: #000;
}

.box_detail figure img {
	opacity: 0.8;
}

.box_detail figure span {
	position: absolute;
	display: block;
	left: 0;
	bottom: 10px;
	text-align: center;
	width: 100%;
	color: #fff;
	font-weight: 600;
}

.box_detail figure a i {
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.6);
	display: block;
	width: 60px;
	height: 60px;
	color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	line-height: 60px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -30px 0 0 -30px;
	font-size: 42px;
	font-size: 2.625rem;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 9;
}

.box_detail figure:hover i {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	transform: scale(1.3);
}

.booking input {
	font-weight: 500;
	height: 45px;
}

.booking input:focus {
	box-shadow: none;
	border: 1px solid #d2d8dd;
}

.booking .panel-dropdown {
	background-color: #fff;
	font-size: 14px;
	font-size: 0.875rem;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #d2d8dd;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0 0 10px;
}

@media (max-width: 991px) {
	.booking .panel-dropdown {
		height: inherit;
	}
}

.booking .panel-dropdown .panel-dropdown-content {
	top: 50px;
}

.booking .custom-select-form select {
	display: none;
}

.booking .form-group {
	margin: 0 0 10px;
}

.booking .form-group i {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	font-size: 18px;
	font-size: 1.125rem;
	position: absolute;
	background-color: #fff;
	height: 43px;
	top: 1px;
	right: 1px;
	padding-right: 10px;
	display: block;
	width: 20px;
	box-sizing: content-box;
	line-height: 43px;
	z-index: 9;
	color: #999;
}

ul.cbp_tmtimeline {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.cbp_tmtimeline:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #ebeef3;
	left: 18.5%;
	margin-left: -2px;
}

.cbp_tmtimeline>li {
	position: relative;
}

.cbp_tmtimeline>li .cbp_tmlabel {
	/* margin: 0 0 15px 10.5%;*/
	margin: 20px 0;
	background: #eef3f7;
	padding: 20px;
	position: relative;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.cbp_tmtimeline>li .cbp_tmlabel:last-child {
	margin-bottom: 5px;
}

.cbp_tmtimeline>li .cbp_tmlabel p {
	margin-bottom: 0;
	/*  font-size: 13px;
  font-size: .8125rem;*/
}

.cbp_tmtimeline>li .cbp_tmlabel h4 {
	margin: 0 0 5px;
	padding: 0;
	font-size: 16px;
	font-size: 1rem;
}

/*
.cbp_tmtimeline>li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #eef3f7;
  border-width: 10px;
  top: 15px;
}*/

.cbp_tmtimeline>li .cbp_tmicon {
	width: 48px;
	height: 48px;
	font-weight: 500;
	background-color: #fff;
	text-transform: none;
	font-size: 18px;
	line-height: 50px;
	position: absolute;
	color: #f93;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #999;
	text-align: center;
	left: 3.5%;
	top: 0;
	margin: 0 0 0 -25px;
}

@media screen and (max-width: 47.2em) {
	.cbp_tmtimeline:before {
		display: none;
	}

	.cbp_tmtimeline>li .cbp_tmlabel {
		margin: 10px 0 30px;
		padding: 1em;
	}

	.cbp_tmtimeline>li .cbp_tmlabel:after {
		right: auto;
		left: 20px;
		border-right-color: transparent;
		border-bottom-color: #eef3f7;
		top: -20px;
		display: none;
	}

	.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {
		border-right-color: transparent;
		border-bottom-color: #eef3f7;
	}

	.cbp_tmtimeline>li .cbp_tmicon {
		position: relative;
		left: auto;
		margin: -20px 5px 0 0;
		box-shadow: none;
		background: #f93;
		width: 24px;
		height: 24px;
		line-height: 24px;
		color: #fff;
	}
}

.room_type {
	padding: 30px 30px 10px;
}

.room_type.last {
	padding: 30px 30px 0;
}

@media (max-width: 699px) {
	.room_type h4 {
		margin-top: 25px;
	}
}

@media (min-width: 699px) {
	h3.smaller {
		font-size: 18px !important;
	}
}

.partners {
	display: table;
	width: 100%;
}

.partners li {
	display: table-cell;
	padding: 2px;
}

@media (min-width: 992px) {
	.boxed_list {
		margin: 0 4%;
	}
}

@media (min-width: 1199px) {
	h3.smaller {
		font-size: 1rem !important;
	}
}

.container_check {
	display: block;
	position: relative;
	padding-top: 5px;
	font-size: 13px;
	font-size: 0.8125rem;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-right: 10px;
}

.noselect {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Old versions of Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.container_check input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.container_check .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border: 1px solid #d2d8dd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.container_check:hover input~.checkmark {
	background-color: #ededed;
	border: 1px solid transparent;
}

.container_check input:checked~.checkmark {
	background-color: #0072bc;
	border: 1px solid transparent;
}

.container_check .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 10px;
	top: 6px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.container_check input:checked~.checkmark:after {
	display: block;
}

.map {
	width: 100%;
	height: 500px;
}

.map.map_single {
	height: 400px;
}

.infoBox {
	-webkit-animation: fadeIn 0.9s;
	animation: fadeIn 0.9s;
	padding-right: 50px;
}

.infoBox>img {
	position: absolute !important;
	right: 60px !important;
	top: 10px !important;
	z-index: 9999;
	width: 20px;
	height: 20px;
	display: block;
	cursor: pointer;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

a.btn_infobox_detail {
	position: absolute;
	top: 20px;
	right: 15px;
	width: 20px;
	height: 20px;
}

a.btn_infobox_detail:before,
a.btn_infobox_phone:before {
	font-style: normal;
	font-weight: 400;
	/*font-family: ElegantIcons;*/
	font-family: tticons;
	font-size: 20px;
	font-size: 1.25rem;
	cursor: pointer;
}

a.btn_infobox_detail:before {
	content: "\E025";
	color: #ccc;
}

a.btn_infobox_detail:before:hover {
	color: var(--redText);
}

a.btn_infobox_phone {
	border: 0;
	display: inline-block;
	font-weight: 500;
	color: var(--redText);
	background: 0;
	cursor: pointer;
	font-size: 13px;
	font-size: 0.8125rem;
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	outline: 0;
}

a.btn_infobox_phone:focus {
	outline: 0;
}

a.btn_infobox_phone:hover {
	color: #333;
}

a.btn_infobox_phone:before {
	font-size: 14px;
	content: "\e090";
	position: absolute;
	left: 0;
	top: -2px;
}

@keyframes cluster-animation {

	0%,
	100% {
		transform: scale(1.3) rotate(0deg);
	}

	50% {
		transform: scale(1.5) rotate(90deg);
	}
}

.map_contact {
	width: 100%;
	height: 465px;
}

@media (max-width: 991px) {
	.map_contact {
		height: 350px;
		margin-bottom: 45px;
	}
}

.contact_info {
	background-color: #121921;
	color: #fff;
	padding: 30px 0;
	text-align: center;
}

.contact_info ul {
	margin: 0;
	padding: 0;
}

.contact_info ul li {
	float: left;
	width: 33.33%;
	position: relative;
	padding: 0 20px;
}

.contact_info ul li span {
	opacity: 0.7;
}

.contact_info ul li h4 {
	color: #fff;
	font-size: 18px;
	font-size: 1.125rem;
	color: var(--redText);
}

.contact_info ul li i {
	color: #fff;
	font-size: 46px;
	font-size: 2.875rem;
	margin-bottom: 10px;
}

@media (max-width: 699px) {
	.contact_info ul li {
		width: 100%;
		float: none;
		margin-bottom: 35px;
		padding: 0;
	}

	.contact_info ul li:last-child {
		margin-bottom: 5px;
	}
}

.cart_section {
	background: #4d657c url(../img/pattern_1.svg) center bottom repeat-x;
	max-height: 350px;
	background-size: contain;
}

@media (max-width: 350px) {
	.ppreview li i {
		display: none;
	}
}

@media (max-width: 699px) {
	.cart_section {
		/* background-size: auto 300px;*/
		background-size: cover;
	}
}

.cart_section.last {
	height: 600px;
}

@media (max-width: 699px) {
	.cart_section.last {
		height: 500px;
	}
}

.table.cart-list {
	margin-bottom: 0;
}

.table.cart-list td {
	vertical-align: middle;
}

.table.cart-list td strong {
	font-weight: 500;
}

@media (max-width: 991px) {

	.table.cart-list,
	.table.cart-list td,
	.table.cart-list tr {
		display: block;
		border: 0;
	}

	.table.cart-list tr {
		border: 1px solid #eee;
	}

	.table.cart-list td {
		border: 0;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
	}

	.table.cart-list td:before {
		position: absolute;
		top: 12px;
		left: 12px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
	}

	.table.cart-list td:nth-of-type(1):before,
	.table.cart-list td:nth-of-type(2):before,
	.table.cart-list td:nth-of-type(3):before,
	.table.cart-list td:nth-of-type(4):before {
		font-weight: 600;
		color: #111;
	}

	.table.cart-list td:nth-of-type(1):before {
		content: "Item";
	}

	.table.cart-list td:nth-of-type(2):before {
		content: "Discount";
	}

	.table.cart-list td:nth-of-type(3):before {
		content: "Total";
	}

	.table.cart-list td:nth-of-type(4):before {
		content: "Actions";
	}
}

.item_cart {
	display: inline-block;
	margin: 20px 0 0 15px;
	font-weight: 500;
}

@media (max-width: 991px) {
	.item_cart {
		margin: 5px 0 0;
	}
}

ul.cart_details {
	margin: 0 0 25px;
	padding: 0 0 15px;
	border-bottom: 1px solid #ededed;
}

ul.cart_details li {
	font-weight: 500;
}

ul.cart_details li span,
.fright {
	float: right;
}

.form_title {
	position: relative;
	padding-left: 55px;
	margin-bottom: 10px;
}

.form_title {
	position: relative;
	padding-left: 55px;
	margin-bottom: 0;
}

.form_title h3 {
	margin: 0;
	padding: 0;
	font-size: 21px;
	font-size: 1.3125rem;
}

.form_title h3 strong {
	background-color: var(--redText);
	text-align: center;
	width: 40px;
	height: 40px;
	display: inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 42px;
	text-align: center;
	position: absolute;
	left: 0;
	top: -5px;
}

.form_title p {
	color: #999;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 14px;
}

.message {
	background-color: #f8f8f8;
	padding: 15px;
	margin-bottom: 30px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

.message p {
	margin: 0;
}

.box_cart {
	margin-bottom: 25px;
}

.box_cart hr {
	margin: 30px -25px 30px -25px;
}

.box_cart label {
	font-weight: 500;
}

.box_cart a.btn_1.outline,
.box_cart .btn_1.outline {
	border: 2px solid #999;
	color: #999;
	padding: 12px 40px;
}

.box_cart a.btn_1.outline:hover,
.box_cart .btn_1.outline:hover {
	color: #fff;
	border: 2px solid #0054a6;
}

.grid ul {
	margin: 0 0 25px;
	padding: 0;
	width: 100%;
	text-align: center;
}

.grid ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
	margin: -3px;
	min-height: 100%;
	width: 25%;
	background-color: #000;
	list-style: none;
}

@media (max-width: 991px) {
	.grid ul li {
		width: 50%;
	}
}

@media (max-width: 699px) {
	.grid ul li {
		width: 100%;
		min-height: 100%;
		float: none;
	}
}

.grid ul li figure {
	position: relative;
	overflow: hidden;
	margin: -3px;
}

.grid ul li figure img {
	width: 100%;
	height: 100%;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.grid ul li figure:hover img,
.grid ul li figure:focus 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);
}

.mfp-zoom-in .mfp-with-anim {
	opacity: 0;
	transition: all 0.2s ease-in-out;
	transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.box_style_cat {
	background: #fff;
	border: 1px solid #ededed;
	margin-bottom: 25px;
	-webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
	.box_style_cat {
		display: none;
	}
}

ul#cat_nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul#cat_nav li {
	border-bottom: 1px solid #ededed;
}

ul#cat_nav li i {
	font-size: 16px;
	font-size: 1rem;
	margin: 2px 10px 0 0;
	float: left;
}

ul#cat_nav li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

ul#cat_nav li a {
	position: relative;
	color: #555;
	display: block;
	padding: 15px 10px;
}

ul#cat_nav li a:after {
	/*font-family: fontello;
  content: "\e89b";*/
	font-family: tticons;
	content: "\E028";
	position: absolute;
	right: 15px;
	top: 15px;
}

ul#cat_nav li a span {
	font-size: 11px;
	font-size: 0.6875rem;
	color: #999;
}

ul#cat_nav li a:hover,
ul#cat_nav li a#active,
ul#cat_nav li a.active {
	color: var(--redText);
}

.hero_in form {
	animation-delay: 1.3s;
	-webkit-animation-delay: 1.3s;
	-moz-animation-delay: 1.3s;
}

ul.list_3 {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.list_3 li {
	margin-bottom: 0;
	position: relative;
	padding-left: 20px;
}

ul.list_3 li strong {
	font-weight: 500;
}

.form-control {
	padding: 8px;
	font-size: 14px;
	font-size: 0.875rem;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #d2d8dd;
}

.form-group {
	position: relative;
}

.bg_color_1 {
	background-color: #fff;
}

.box_1 {
	background-color: #121921;
	color: #fff;
	padding: 45px;
	opacity: 0;
}

.box_1 p {
	opacity: 0.8;
}

.box_1 h3 {
	color: #fff;
}

.custom-select-form select {
	display: none;
}

ul.share-buttons {
	padding: 0;
	list-style: none;
	text-align: left;
	margin: 0 auto;
}

ul.share-buttons li {
	display: inline-block;
	margin: 0 5px 5px;
	width: 45%;
}

ul.share-buttons li a {
	background: #fff;
	border: 0 solid #666;
	border-radius: 17px;
	font-weight: 500;
	font-size: 11px;
	padding: 7px;
	transition: 0.2s;
	display: inline-block;
	line-height: 17px;
	font-weight: 500;
	width: 100%;
	color: #318243;
}

ul.share-buttons li a:hover {
	color: #3b5998;
}

ul.share-buttons li a.blue-share,
.a-blue {
	border-color: #3b5998;
	color: #3b5998;
}

ul.share-buttons li a.blue-share:hover {
	background: #3b5998;
	color: #fff;
}

ul.share-buttons li a.red-share {
	border-color: var(--redText);
	color: var(--redText);
}

ul.share-buttons li a.red-share:hover {
	background: var(--redText);
	color: #fff;
}

ul.share-buttons li a.green-share {
	border-color: #318243;
	color: #318243;
}

ul.share-buttons li a.green-share:hover {
	background: #318243;
	color: #fff;
}

ul.share-buttons li i {
	font-size: 16px;
	font-size: 1rem;
	position: relative;
	right: 3px;
	top: 2px;
}

.pointer {
	cursor: pointer;
}

#toTop {
	position: fixed;
	right: 15px;
	bottom: 6px;
	z-index: 9999;
	width: 32px;
	height: 32px;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 1;
	border-radius: 50%;
	text-align: center;
	font-size: 21px;
	color: #fff;
	cursor: pointer;
}

#toTop:after {
	/*font-family: fontello;
  content: "\e899";*/
	font-family: tticons;
	content: "\E02A";
	position: relative;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-55%);
	transform: translateY(-55%);
}

#toTop:hover {
	background-color: var(--redText);
}

ul.bullets {
	line-height: 1.8;
	margin: 0;
	padding: 0;
}

ul.bullets li {
	position: relative;
	padding-left: 20px;
}

ul.bullets li:before {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	font-size: 0.875rem;
	/*font-family: ElegantIcons;
  content: "\5c";*/
	font-family: tticons;
	content: "\E02B";
	color: #ccc;
	position: absolute;
	left: 0;
	top: 0;
}

.add_bottom_15 {
	margin-bottom: 15px;
}

.add_bottom_30 {
	margin-bottom: 30px;
}

.add_bottom_45 {
	margin-bottom: 45px;
}

.add_bottom_60 {
	margin-bottom: 60px;
}

.add_bottom_75 {
	margin-bottom: 75px;
}

.add_top_10 {
	margin-top: 10px;
}

.add_top_15 {
	margin-top: 15px;
}

.add_top_20 {
	margin-top: 20px;
}

.add_top_30 {
	margin-top: 30px;
}

.add_top_60 {
	margin-top: 60px;
}

.margin_60 {
	padding-top: 60px;
	padding-bottom: 60px;
}

.margin_60_35 {
	padding-top: 60px;
	padding-bottom: 35px;
}

@media (max-width: 575px) {
	.margin_60_35 {
		padding-top: 30px;
		padding-bottom: 5px;
	}
}

.margin_80 {
	padding-top: 80px;
	padding-bottom: 80px;
}

@media (max-width: 991px) {
	.margin_80 {
		padding-bottom: 60px;
		padding-top: 60px;
	}
}

@media (max-width: 575px) {
	.margin_80 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

.margin_80_55 {
	padding-top: 80px;
	padding-bottom: 55px;
}

@media (max-width: 991px) {
	.margin_80_55 {
		padding-top: 60px;
		padding-bottom: 35px;
	}
}

@media (max-width: 575px) {
	.margin_80_55 {
		padding-top: 45px;
		padding-bottom: 15px;
	}
}

.margin_80_0 {
	padding-top: 80px;
}

@media (max-width: 991px) {
	.margin_80_0 {
		padding-top: 60px;
	}
}

@media (max-width: 575px) {
	.margin_80_0 {
		padding-top: 45px;
	}
}

.margin_60_0 {
	padding-top: 60px;
}

@media (max-width: 991px) {
	.margin_60_0 {
		padding-top: 60px;
	}
}

@media (max-width: 575px) {
	.margin_60_0 {
		padding-top: 45px;
	}
}

.margin_30_30 {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media (max-width: 575px) {
	.margin_30_30 {
		margin-top: 18px;
		margin-bottom: 18px;
	}
}

.margin_30_0 {
	padding-top: 30px;
}

@media (max-width: 991px) {
	.margin_30_0 {
		padding-top: 30px;
	}
}

@media (max-width: 575px) {
	.margin_30_0 {
		padding-top: 18px;
	}
}

.margin_30_95 {
	padding-top: 30px;
	padding-bottom: 95px;
}

@media (max-width: 991px) {
	.margin_30_95 {
		padding-top: 15px;
		padding-bottom: 35px;
	}

	.bubble a,
	a.bubble {
		padding: 2px 7px;
	}
}

@media (max-width: 575px) {
	.margin_30_95 {
		padding-top: 5px;
		padding-bottom: 30px;
	}
}

@media (max-width: 699px) {
	.hidden_mobile {
		display: none !important;
	}

	.bubble a,
	a.bubble {
		padding: 0px 5px;
	}
}

.block-horizzontal {
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 10;
}

.block-reveal img {
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	/*  opacity: 0;*/
}

@keyframes reveal_left_to_right {
	0% {
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	50% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes reveal_top_to_bottom {
	0% {
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		-o-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	50% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(100%);
		-moz-transform: translateY(100%);
		-ms-transform: translateY(100%);
		-o-transform: translateY(100%);
		transform: translateY(100%);
	}
}

@keyframes color {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

#sign-in-dialog,
#dialog {
	background: #fff;
	padding: 30px;
	padding-top: 0;
	text-align: left;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

#sign-in-dialog {
	max-width: 400px;
}

#sign-in-dialog.wauto {
	width: 800px;
	max-width: 100% !important;
}

.small-dialog-header {
	font-size: 18px;
	width: calc(100% + 60px);
	position: relative;
	left: -30px;
	top: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	background-color: #f6f6f6;
	padding: 18px 20px 15px;
	margin-bottom: 30px;
}

.small-dialog-header2 {
	font-size: 18px;
	position: relative;
	top: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	margin: 30px 0;
}

.small-dialog-header h3,
.small-dialog-header2 h3 {
	padding: 0;
	margin: 0;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
}

#sign-in-dialog .form-group {
	position: relative;
}

#sign-in-dialog .form-group input.form-control,
.form-i input {
	padding-left: 40px;
	background-color: #fff !important;
}

#sign-in-dialog .form-group i {
	font-size: 21px;
	font-size: 1.3125rem;
	position: absolute;
	left: 5px;
	top: 30px;
	color: #ccc;
	width: 25px;
	height: 25px;
	display: block;
	font-weight: 400 !important;
}

.form-i i {
	font-size: 18px;
	position: absolute;
	margin-top: -30px;
	margin-left: 8px;
	color: #ccc;
	width: 20px;
	height: 20px;
	display: block;
	font-weight: 400 !important;
}

.form-i input {
	height: 36px;
	width: 185px;
	font-size: 13px;
}

.form-i {
	position: relative;
}

.sign-in-wrapper {
	position: relative;
	height: 100%;
}

.mfp-bg {
	opacity: 0.8 !important;
}

.aqua {
	background: #1cbbb4;
}

.blue {
	background: #004dda;
}

.f18,
.row.f18 p,
.row.f18 div,
.row.f18 label,
.row.f18 span {
	font-size: 18px;
}

@media only screen and (min-width: 700px) and (max-width: 800px) {
	.tabhidemshow {
		display: none;
	}
}

@media only screen and (max-width: 700px) {
	.mhide {
		display: none;
	}

	.m-label-left50 label {
		float: left;
		width: 50%;
		text-align: left;
	}

	.m-label-left40 {
		float: left;
		width: 40%;
		text-align: left;
	}

	.m-label-left60 {
		float: left;
		width: 60%;
		text-align: left;
	}

	.f18,
	.row.f18 p,
	.row.f18 div,
	.row.f18 label,
	.row.f18 span {
		font-size: 15px;
	}
}

a.btnsmall {
	padding: 5px 10px;
}

.info {
	color: #757575;
}

.bold {
	font-weight: 700;
}

.big {
	font-size: 18px;
}

.green {
	color: #2c955c;
	border-color: #2c955c;
}

.red {
	color: #fc5058;
}

a.score.bold {
	border-radius: 5px;
	font-wight: bold;
}

.center {
	text-align: center;
}

.hidden,
#aload {
	display: none !important;
}

.ppreview {
	text-align: left;
}

.ppreview .th3 {
	font-size: 16px;
	line-height: 22px;
	color: var(--redText);
	margin-top: 0;
	margin-bottom: 3px;
	display: block;
}

.ppreview .wrapper p,
.ppreview li {
	color: #4b4b4b;
}

.ppreview .wrapper {
	padding: 15px 15px;
	background: #fff;
}

@media only screen and (min-width: 700px) {
	.tshow {
		display: none !important;
	}
}

@media only screen and (min-width: 699px) {
	.mshow {
		display: none !important;
	}

	.ppreview .wrapper {
		height: 130px;
		overflow: hidden;
	}
}

.ppreview .figure img {
	min-width: 100%;
	min-height: 100%;
}

.ppreview .figure {
	margin: 0;
}

.left {
	text-align: left;
}

.paging ul {
	list-style: none outside none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.paging li {
	margin: 0;
	display: inline;
}

a.on {
	font-weight: 600 !important;
}

#nav-search {
	float: right;
	margin-top: 6px;
}

#nav-search input:focus {
	outline: none;
}

#nav-search input::placeholder {
	color: #fff;
	font-size: 14px;
	opacity: 0.8;
}

#nav-search input {
	width: 180px;
	background: 0;
	border: 0;
	border-bottom: 1px solid #fff;
	padding-left: 6px;
	color: #fff;
	border-radius: 0 !important;
}

#nav-search input,
#nav-search button {
	-moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	-webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

header.sticky #nav-search input::placeholder,
header.nocover #nav-search input::placeholder {
	color: #444;
}

header.sticky #nav-search button,
header.nocover #nav-search button,
header.sticky #nav-search a,
header.nocover #nav-search a {
	color: #444;
}

header.sticky #nav-search input,
header.nocover #nav-search input {
	border-bottom: 1px solid #2f2f2f;
	color: #444;
}

#nav-search button {
	width: 26px;
	padding: 5px;
	background: 0;
	color: #fff;
	border: 0;
}

#nav-search a {
	color: #fff;
}

@media only screen and (max-width: 850px) {
	a.active_search {
		display: none !important;
	}
}

@media only screen and (min-width: 699px) and (max-width: 900px) {
	.main-menu {
		right: 10px;
	}

	#nav-search input {
		width: 80px;
	}

	input.active_search {
		width: 155px !important;
	}

	#btn_nav_contact.active_search {
		display: none;
	}

	header {
		padding: 10px 15px;
	}
}

.breadcrumb {
	margin-bottom: 0;
	background: 0;
	padding-left: 0;
}

@media only screen and (max-width: 699px) {
	#nav-search {
		display: none;
		position: fixes;

		right: 0;
		width: 100%;
		opacity: 0;
		top: 0;
		transition: 0.5s;
	}

	header.stick #nav-search {
		background: white;
	}

	#nav-search input {
		width: 88% !important;
		margin-left: 2%;
	}

	#nav-search a {
		display: none;
	}

	#nav-search button {
		width: 10%;
	}

	#nav-search button,
	header .icon-search,
	header .icon-close,
	header .icon-phone,
	header .icon-heart,
	header .icon-user {
		font-size: 22px;
	}

	header [class^="icon-"]:before,
	header [class*=" icon-"]:before {
		margin-right: 0;
	}
}

@media only screen and (max-width: 380px) {
	#nav-search input {
		width: 190px;
	}

	#sign-in-dialog {
		max-width: 100% !important;
	}
}

@media only screen and (max-width: 360px) {
	#nav-search input {
		width: 170px;
	}
}

@media only screen and (max-width: 320px) {
	#nav-search input {
		width: 140px;
	}

	#logo img {
		width: auto;
		height: 35px;
		margin: 7px 0 0;
	}
}

.required:after {
	content: "*";
	color: #ff5e60;
	margin-left: 4px;
}

.secondary_nav li:last-child {
	margin-right: 0;
}

body .productbox:last-child {
	margin-bottom: 30px;
}

.post-content p,
.post-content p span {
	font-size: 16px !important;
}

#mainContent .container.cm100 {
	margin-top: 100px;
}

.h3collapse {
	margin-bottom: 10px;
}

.h3collapse h3 {
	margin-top: 5px;
	margin-bottom: 0;
}

.collapse-title:after {
	/*font-family: fontello;
  content: '\e896';*/
	font-family: tticons;
	content: "\E031";
	color: #000;
	float: right;
	margin-left: 5px;
	color: #337ca3;
}

.collapse-title {
	color: #337ca3;
	cursor: pointer;
	padding: 10px 14px;
	width: 100%;
	text-align: left;
	outline: 0;
	display: block;
	background: #d3eaf6;
	line-height: 20px;
	font-size: 16px;
	font-weight: 400;
}

.panel-collapse {
	padding: 20px;
	border: 1px solid #cde7f5;
	border-top: 0;
	border-radius: 0 0 3px 3px;
}

.hero_in.tours_detail {
	background-size: cover;
	background-position: center center;
}

.box_grid .price s {
	opacity: 0.6;
}

@media (min-width: 699px) {
	.ppreview .figure>img {
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

/* Popup close button*/
#sign-in-dialog .mfp-close,
#lang-dialog .mfp-close,
.closeicon {
	color: #666;
	background-color: #e4e4e4;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	top: 12px;
	right: 20px;
	width: 32px;
	height: 32px;
	line-height: 32px;
}

#sign-in-dialog .mfp-close:hover,
#lang-dialog .mfp-close:hover {
	color: #fff;
	background-color: #66676b;
}

#sign-in-dialog .mfp-close:before,
.closeicon:before {
	font-size: 24px;
	/*font-family: 'ElegantIcons';
  content: "\4d";*/
	font-family: tticons;
	content: "\E02C";
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
	text-decoration: inherit;
	width: 1em;
	margin-right: 0.2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: 0.2em;
}

.filters_listing {
	padding: 10px 0 5px;
	background: #fff;
	border-bottom: 1px solid #ededed;
	z-index: 999999 !important;
	position: relative;
}

.filters_listing ul {
	margin: 0;
	display: inline-table;
}

@media (min-width: 691px) and (max-width: 890px) {
	.thide {
		display: none;
	}
}

@media (max-width: 991px) {
	.filters_listing .container {
		max-width: 100%;
		width: 100%;
	}

	.filters_listing ul {
		margin: 0;
	}

	.filters_listing ul li span.title {
		width: 90px;
	}
}

.filters_listing ul li {
	float: left;
	margin: 5px 6px 5px 0;
}

.switch-field {
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	color: rgba(0, 0, 0, 0.5);
}

.switch-field span {
	cursor: pointer;
	float: left;
	display: inline-block;
	min-width: 70px;
	color: rgba(0, 0, 0, 0.5);
	font-weight: 600;
	font-size: 12px;
	font-size: 0.75rem;
	text-align: center;
	text-shadow: none;
	padding: 10px 12px 8px;
	line-height: 1;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	margin: 0;
}

.switch-field span.icon {
	min-width: auto;
	font-size: 1rem;
	padding: 8px 12px 7px;
	width: 45px;
	height: 34px;
}

.switch-field span:hover,
.switch-field span.active {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	color: #ee9714 !important;
	background: #ff7f7;
}

.custom-select-form .nice-select {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #d2d8dd;
	height: 45px;
	line-height: 42px;
}

.custom-select-form .nice-select:hover {
	border-color: #d2d8dd;
}

.custom-select-form .nice-select:active,
.custom-select-form .nice-select.open,
.custom-select-form .nice-select:focus {
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select-form select {
	display: none;
}

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	border-radius: 3px;
	border: none;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	height: 50px;
	line-height: 48px;
	outline: none;
	padding-left: 10px;
	padding-right: 27px;
	position: relative;
	text-align: left !important;
	transition: all 0.2s ease-in-out;
	user-select: none;
	white-space: nowrap;
	width: auto;
	color: #555;
	padding-top: 2px;
}

.nice-select:hover {
	border-color: #8c8c8c;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #999;
}

.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: "";
	display: block;
	height: 8px;
	margin-top: -5px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	transform-origin: 66% 66%;
	transform: rotate(45deg);
	transition: all 0.15s ease-in-out;
	width: 8px;
}

.nice-select.open:after {
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1) translateY(0);

	max-height: 250px;
	overflow-y: auto;
}

.nice-select.disabled {
	border-color: #9e9e9e;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #cccccc;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 13px;
	height: 36px;
	line-height: 32px;
	width: 135px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	transform-origin: 50% 0;
	transform: scale(0.75) translateY(-25px);
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 38px;
	list-style: none;
	min-height: 38px;
	outline: none;
	padding-left: 12px;
	padding-right: 26px;
	text-align: left;
	transition: all 0.2s;
	width: 100%;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: 500;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

.nice-select ul {
	margin: 0;
}

.nice-select ul li {
	margin: 0;
}

.filters_listing span.title {
	float: left;
	padding: 7px;
	font-size: 13px;
}

.switch-field span.inactive,
.switch-field span.inactive:hover {
	color: #e6e6e6 !important;
}

@media (max-width: 690px) {
	.filters_listing span.title {
		padding-left: 0;
		text-align: left;
	}

	.nice-select.small,
	.nice-select .option {
		width: 138px;
	}

	.filter_type {
		width: 120px !important;
	}

	#ftl4 .nice-select.small,
	.nice-select .option {
		width: 185px;
	}

	#ftl2,
	#ftl4 {
		margin-right: 0;
	}

	#ftlul {
		width: 335px;
	}

	.m100 {
		float: none !important;
		display: block !important;
		clear: both;
	}

	body,
	.panel-dropdown,
	.collapse-titlen {
		font-size: 0.875rem;
	}

	#productform small {
		font-size: 15px !important;
	}
}

iframe {
	max-width: 100%;
}

@media (max-width: 320px) {
	#ftlul {
		width: 300px;
	}

	#ftl4 .nice-select.small,
	.nice-select .option {
		width: 145px;
	}

	.form-i input#d {
		width: 145px;
	}
}

.black {
	color: #555;
}

.filters_listing #calendar::before {
	font-family: "tticons";
	content: "\e012";
}

.drp-buttons {
	display: block !important;
}

.ppreview .ih {
	position: absolute;
	margin-left: -35px;
	margin-top: 5px;
	background: #fff;
}

.upper {
	text-transform: uppercase;
}

@media only screen and (min-width: 700px) {
	#homepageproducts {
		max-width: 1280px;
	}
}

#homepageproducts {
	margin: 0 auto;
}

@media only screen and (max-width: 699px) {
	#homepageproducts {
		max-width: 480px;
	}
}

#top-destinations a.caption {
	padding: 15px 20px;
}

#top-destinations a.caption span {
	text-transform: none;
	font-weight: 500;
	font-size: 12px;
	display: block;
	line-height: 18px;
}

#top-destinations a.caption i {
	position: absolute;
	font-style: normal;
	padding-left: 2px;
}

@media only screen and (min-width: 700px) {
	#top-destinations_ {
		bottom: 20px;
	}
}

#top-destinations h3 {
	font-size: 20px;
}

.shadow {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.crsl {
	padding: 40px 20px 0 20px;
}

.crsl a {
	display: inline-block;
	text-decoration: none;
	padding: 10px;
	font-size: 24px;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 22px;
	white-space: nowrap;

	color: #fff;
}

@media only screen and (min-width: 699px) {
	.hamburger {
		display: none;
	}
}

@media only screen and (max-width: 699px) {
	.crsl {
		margin: 0 0 0 0;
		padding: 15px 0 0 0;
	}

	.crsl a {
		font-size: 14px;
		line-height: 12px;
		padding: 5px 5px 0 0;
	}

	.crsl a span {
		display: none !important;
	}

	.mfp-auto-cursor .mfp-content {
		margin-top: 50px;
	}

	.mfp-auto-cursor .mfp-content h1 {
		font-size: 1.5rem;
		margin-top: 10px;
	}

	.hamburger {
		display: block;
		width: 28px;
		border-top: 2px solid #fff;
		z-index: 2;
		cursor: pointer;
		transition: 0.3s;
		height: 26px;
		position: absolute;
	}

	.hamburger div:first-of-type {
		transition: 0.3s;
		transform-origin: center;
	}

	.hamburger div:last-of-type {
		margin-top: 6px;
		transition: 0.3s;
		transform-origin: center;
	}

	.hamburger div {
		border-bottom: 2px solid #fff;
		margin-top: 6px;
		width: 100%;
		float: right;
	}
}

header.sticky .hamburger,
header.nocover .hamburger,
header.sticky .hamburger div,
header.nocover .hamburger div {
	border-color: #444;
}

/* 
.bootbox-body,
#request-content,
.noscrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bootbox-body::-webkit-scrollbar,
#request-content::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar {
  display: none;
} */

.amenities {
	margin-bottom: 30px;
}

@media (min-width: 699px) {
	.amenities {
		column-count: 2;
	}
}

#ui-id-1 {
	z-index: 99999;
}

.hero_in .wrapper p {
	line-height: 25px;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 500;
}

.bw img,
.bw .wrapper,
.bw ul {
	filter: grayscale(1);
	opacity: 0.7;
}

.hotel_room_photos img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	margin: 5px;
	border-radius: 3px;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loading:after {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid #fff;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	position: absolute;
	margin-top: 5px;
	margin-left: 3px;
}

.product_preview {
	min-width: 280px;
}

.nice-select ul {
	max-height: 400px;
}