/******************************************************************
	TABLE OF CONTENT
	
	01 - Reset
	02 - Globals
		- 02.1 Lists
		- 02.2 Buttons
		- 02.3 Icons
		- 02.4 Loading
	03 - Typography
	04 - Layout
	05 - Widgets
	06 - Header
	07 - Content
		- 07.1 Static elements
		- 07.2 Offers, Deals
	08 - Search results 
	09 - Single accommodation, cruise, car, tour, location
	10 - Get inspired
	11 - Maps
	12 - Blog
	13 - Error page
	14 - Footer
	15 - Lightbox
	16 - Form elements
	17 - Print css
	18 - Plugins
		- 18.1 Uniform Custom Form Elements
		- 18.2 Mega menu
		- 18.3 UI Slider
		- 18.4 UI Datepicker
		- 18.5 WooCommerce
		- 18.6 Contact Form 7
	19 - Responsiveness
	
**********************************/

/* 01 Reset */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body {
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-x: hidden;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure {
	border: 0;
	margin: 0;
	padding: 0
}

html {
	overflow-y: scroll;
	-webkit-text-size-adjust: auto;
	-webkit-overflow-scrolling: touch;
}

img,
fieldset,
abbr,
acronym {
	border: 0;
}

article,
aside,
figure,
figcaption,
hgroup,
footer,
header,
nav,
section,
video,
object {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

img {
	border: 0;
	max-width: 100%;
	vertical-align: middle;
	height: auto;
	display: block;
}

figure img {
	display: block;
}

iframe,
.fb_iframe_widget {
	border: 0;
	max-width: 100%;
	width: 100%;
	overflow: hidden;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

hr {
	background: #ccc;
	height: 1px;
	border: none;
	width: 100%;
	display: inline-block;
	margin: 5px 0 15px;
}

p,
blockquote {
	padding: 0 0 20px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	margin: 0 0 30px;
}

table th {
	background: #fef4ed;
	border: 1px solid #f9c0a7;
	padding: 13px;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	vertical-align: top;
}

table td {
	background: #fff;
	border: 1px solid #ccc;
	color: #454545;
	padding: 13px;
}

table p {
	padding: 0;
}

a {
	font-weight: 600;
	text-decoration: none;
	-webkit-transition: all 0.1s ease-in 0.1s;
	-moz-transition: all 0.1s ease-in 0.1s;
	-o-transition: all 0.1s ease-in 0.1s;
	-ms-transition: all 0.1s ease-in 0.1s;
	transition: all 0.1s ease-in 0.1s;
}

article:empty,
.widget h1:empty,
.widget h2:empty,
.widget h3:empty,
.widget h4:empty,
.widget h5:empty,
.widget h6:empty {
	display: none !important;
}

/* 02 Globals */
body {
	font: 13px/1.5 'Open Sans', Helvetica, Arial, sans-serif;
	text-align: center;
	color: #454545;
	background: #fff;
}
/* Header cart */
a.my-header-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    color: inherit;
    padding: 6px 8px;
}

.my-cart-icon {
    display: block;
    width: 30px;
    height: 30px;
    fill: rgb(255 255 255);
    opacity: 0.9;
}
.tax-product_cat > main, .single-product > main{
    max-width: 1170px;
    margin: 0 auto;
    float: none;
}
.woocommerce div.product div.summary{
    text-align: left;
}
.tax-product_cat .woocommerce-notices-wrapper{
    display: none;
}
/* Badge */
.my-cart-count {
    background: #e02424; /* badge color */
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0px;
}

/* Hide zero for a cleaner UI (optional) */
a.my-header-cart .my-cart-count:empty,
a.my-header-cart .my-cart-count[aria-hidden="true"],
a.my-header-cart .my-cart-count[aria-hidden="true"] + * {
    display: none;
}

/* If you prefer to hide the whole badge when zero count: */
a.my-header-cart .my-cart-count.zero { display:none; }

.left {
	float: left;
}

.right {
	float: right;
}

.left_pic {
	float: left;
	margin: 0 15px 5px 0;
}

.right_pic {
	float: right;
	margin: 0 0 5px 15px;
}

.clear:after {
	content: ".";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

/* 02.1 Lists */

ul {
	margin: 0 0 17px;
}

ul>li {
	list-style: none;
	position: relative;
	padding: 0 0 8px 15px;
}

ul ul {
	margin: 8px 0 -8px 15px;
}

ol {
	margin: 0 0 17px 25px;
	display: inline-block;
}

ol li {
	list-style: decimal outside;
	padding: 0 0 8px 5px;
}

ol ol {
	margin: 8px 0 -8px 15px;
}

.widget ul {
	margin: 0;
}

nav ul,
footer ul,
.gallery ul {
	margin: 0;
}

nav ul>li,
footer ul>li,
.widget,
aside ul>li,
.gallery li {
	padding: 0;
}

nav ul>li:before,
.widget:before,
aside ul>li:before,
.widget>div>ul li:before,
.social li:before,
.gallery li:before {
	display: none !important;
}

.social li {
	display: inline-block;
	padding: 0 1px 4px 0 !important;
	font-size: 15px;
}

.social li a {
	text-align: center;
	line-height: 30px;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	color: #fff !important;
	display: block;
	border: 1px solid #fff;
	margin: 0 10px 0 0;
}

.social li:last-child {
	padding-right: 0 !important;
}


/* 02.2 Buttons */
.gradient-button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	font-size: 11.5px;
	line-height: 32px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	height: 32px;
	padding: 0 18px;
	text-align: center;
	display: inline-block;
	border-radius: 17px;
	-moz-border-radius: 17px;
	-webkit-border-radius: 17px;
	cursor: pointer;
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, .3);
	-moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, .3);
	box-shadow: inset 0 0 1px rgba(0, 0, 0, .3);
}

.gradient-button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.gradient-button:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.promo .gradient-button {
	background: rgb(193, 182, 174);
	background: -moz-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(193, 182, 174, 1)), color-stop(100%, rgba(186, 172, 163, 1)));
	background: -webkit-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: -o-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: -ms-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: linear-gradient(to bottom, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
}

.promo .gradient-button:hover,
.promo .gradient-button:focus {
	background: rgb(186, 172, 163);
	background: -moz-linear-gradient(top, rgba(186, 172, 163, 1) 0%, rgba(193, 182, 174, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(186, 172, 163, 1)), color-stop(100%, rgba(193, 182, 174, 1)));
	background: -webkit-linear-gradient(top, rgba(186, 172, 163, 1) 0%, rgba(193, 182, 174, 1) 100%);
	background: -o-linear-gradient(top, rgba(186, 172, 163, 1) 0%, rgba(193, 182, 174, 1) 100%);
	background: -ms-linear-gradient(top, rgba(186, 172, 163, 1) 0%, rgba(193, 182, 174, 1) 100%);
	background: linear-gradient(to bottom, rgba(186, 172, 163, 1) 0%, rgba(193, 182, 174, 1) 100%);
}

.scroll-to-top {
	margin: 0 0 0 40px;
	float: right;
	font-size: 11px;
	line-height: 33px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	height: 33px;
	width: 100px;
	text-align: center;
	display: inline-block;
	border-radius: 17px;
	-moz-border-radius: 17px;
	-webkit-border-radius: 17px;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
	position: relative;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.scroll-to-top:before {
	content: "";
	position: absolute;
	top: -8px;
	left: 42%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 8px 8px;
}

.bottom-nav {
	float: left;
	width: 100%;
	padding-top: 15px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.pager {
	float: right;
}

.pager span {
	white-space: nowrap;
	font-size: 11px;
	line-height: 33px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin: 0 3px;
	float: left;
	width: 33px;
	height: 33px;
	background: #fff;
	-moz-border-radius: 17px;
	-webkit-border-radius: 17px;
	border-radius: 17px;
	webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.pager a {
	font-weight: 700;
	color: #999;
	float: left;
	width: 100%;
	height: 100%;
	text-decoration: none;
	-moz-border-radius: 17px;
	-webkit-border-radius: 17px;
	border-radius: 17px;
	webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.pager span:first-child,
.pager span:last-child {
	width: auto;
}

.pager span:first-child a,
.pager span:last-child a {
	padding: 0 15px;
}

.pager .current,
.pager a:hover {
	color: #fff;
}

/* 02.3 Icons */
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	width: 1em;
	height: 1em;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
}

.material-icons.md-18 {
	font-size: 18px;
}

.material-icons.md-24 {
	font-size: 24px;
}

.material-icons.md-36 {
	font-size: 36px;
}

.material-icons.md-48 {
	font-size: 48px;
}

/* 02.4 Loading */
.ball {
	background-color: rgba(0, 0, 0, 0);
	border-width: 10px;
	border-style: solid;
	opacity: .9;
	border-top-color: transparent !important;
	border-left-color: transparent !important;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	-webkit-box-shadow: 0 0 35px #fff;
	-moz-box-shadow: 0 0 35px #fff;
	box-shadow: 0 0 35px #fff;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	-moz-animation: spin .5s infinite linear;
	-o-animation: spin .5s infinite linear;
	animation: spin .5s infinite linear;
	-webkit-animation: spin .5s infinite linear;
}

.ball1 {
	background-color: rgba(0, 0, 0, 0);
	border-width: 10px;
	border-style: solid;
	opacity: .9;
	border-top-color: transparent !important;
	border-left-color: transparent !important;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	-webkit-box-shadow: 0 0 15px #fff;
	-moz-box-shadow: 0 0 15px #fff;
	box-shadow: 0 0 15px #fff;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	position: relative;
	top: -75px;
	-moz-animation: spinoff .5s infinite linear;
	-o-animation: spinoff .5s infinite linear;
	animation: spinoff .5s infinite linear;
	-webkit-animation: spinoff .5s infinite linear;
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	width: 100%;
	height: 100%;
	background: #fff;
	text-align: center;
	padding-top: 18%;
}

@-moz-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
	}

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

@-moz-keyframes spinoff {
	0% {
		-moz-transform: rotate(0deg);
	}

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

@-o-keyframes spin {
	0% {
		-o-transform: rotate(0deg);
	}

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

@-o-keyframes spinoff {
	0% {
		-o-transform: rotate(0deg);
	}

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

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

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

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

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

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

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

@-webkit-keyframes spinoff {
	0% {
		-webkit-transform: rotate(0deg);
	}

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


/* 03  Typography */

h1 {
	font-size: 23px;
	font-weight: 700;
	padding: 24px 0 44px;
}

.post h1 {
	padding: 0 0 20px;
}

h2 {
	font-size: 20px;
	font-weight: 700;
	padding: 0 0 20px;
}

h3 {
	font-size: 18px;
	font-weight: 700;
	padding: 0 0 20px;
}

h4 {
	font-size: 16px;
	font-weight: 700;
	padding: 0 0 20px;
}

h5 {
	font-size: 14px;
	font-weight: 700;
	padding: 0 0 20px;
}

h6 {
	font-size: 13px;
	font-weight: 700;
	padding: 0 0 20px;
}

.full-width>h1 {
	font-size: 26px;
	padding: 20px 10px 44px;
	text-shadow: 0 1px 0 rgba(238, 238, 238, 1);
	display: inline-block;
	width: 100%;
}

/* 04  Layout */
.wrap {
	margin: 0 auto;
	text-align: left;
	width: 1170px;
	max-width: 94%;
	position: relative;
}

.row {
	margin: 0 -10px;
}

.full-width {
	width: 100%;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
}

.three-fourth {
	width: 75%;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
}

.two-third {
	width: 66.6667%;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
}

.one-half {
	width: 50%;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
}

.one-third {
	width: 33.3333%;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
}

.one-fourth {
	width: 25%;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
}

.one-fifth {
	width: 20%;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
}

.lower {
	margin-top: 102px;
}
.trending-wrap{
    background: #fffaf6;
    margin: 30px 0 0 0;
}
.trending-wrap .trending-inn{
    position: relative;
    margin: 0 0 25px 0;
}
.trending-wrap .trending-inn img{
    border-radius: 18px;
}
.trending-wrap .trending-inn h3{
    position: absolute;
    bottom: 8px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 17px 6px 17px;
    color: #000;
}
/* 05 Widgets */


.testimonials {
	float: left;
	display: block;
	padding: 17px 20px 20px;
	width: 100%;
	margin: 0 0 20px;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.testimonials blockquote {
	font-size: 15px;
	font-weight: 600;
	font-style: italic;
	padding: 0 0 10px;
}

.testimonials .name {
	font-size: 13px;
	font-weight: 600;
}

p.number {
	position: relative;
	font-weight: 700;
	padding: 0 0 15px 30px;
}

p.number:before {
	content: "\e0cd";
	font-family: 'Material Icons';
	font-size: 24px;
	color: #B8ACA4;
	position: absolute;
	top: -6px;
	left: 0;
	font-weight: 400;
	-webkit-transform: rotate(15deg);
	-moz-transform: rotate(15deg);
	transform: rotate(15deg);
}

p.email {
	position: relative;
	font-weight: 700;
	padding: 0 0 15px 30px;
}

p.email:before {
	content: "\e0be";
	font-family: 'Material Icons';
	font-size: 24px;
	color: #B8ACA4;
	position: absolute;
	top: -7px;
	left: 0;
	font-weight: 400;
}


.show-all {
	float: right;
	padding: 0 0 3px;
}

.top-trending-wrap{
    background: #17202d url(../images/top-trending-back.png) no-repeat;
    background-size: 100%;
    margin: 30px 0 55px 0;
    padding: 35px 0 35px 0;
    position: relative;
}
.top-trending-wrap header h2{
    color: #fff;
    text-align: left;
}
.top-trending-wrap header p{
    color: #fff;
    text-align: left;
}
.top-trending-wrap .content{
    position: absolute;
    bottom: 5px;
    text-align: center;
    width: 100%;
}
.top-trending-wrap .item img{
    border-radius: 20px;
}
.top-trending-wrap .item .bg-overlay{
    background: rgba(0,0,0,.2);
    position: absolute;
    border-radius: 20px;
    mix-blend-mode: multiply;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.top-trending-wrap .content h4{
    color: #fff;
    text-shadow: 2px 2px 5px #000;
    font-weight: 700;
    margin: 0;
    padding: 0 0 8px 0;
    font-size: 20px;
}
.top-trending-wrap .content p{
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}
.top-trending-wrap .content a.btn{
    background-color: #f1612f;
    color: #fff;
    margin-top: 0px;
    width: 180px;
}
/* Ensure carousel container has relative positioning */
.top-trending-carousel, .discover-world-carousel {
  position: relative;
}

/* Style navigation arrows */
.top-trending-carousel .owl-nav, .discover-world-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* allow clicks to pass through if needed */
}

.top-trending-carousel .owl-nav .owl-prev,
.top-trending-carousel .owl-nav .owl-next,
.discover-world-carousel .owl-nav .owl-prev, 
.discover-world-carousel .owl-nav .owl-next{
  background: #fff !important;
  color: #333 !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all; /* allow these to be clickable */
  cursor: pointer;
  font-size: 28px !important;
  outline: none;
}
.view-more-btn{
    background: #0f1e2c;
    color: #fff;
    margin: 15px 0 20px 0;
    display: inline-block;
    padding: 10px 70px 10px 70px;
    border-radius: 20px;
}
.view-more-btn:hover {
    text-decoration: none;
    background: #f16a2e;
    color: #fff;
}

.travel-exp{
    background: #fffaf6;
    margin: 40px 0 40px 0;
    padding: 40px 0 40px 0;
}
.travel-exp .travel-exp-left img{
    max-width: 90%;
    z-index: 99;
    /*position: relative;*/
}
.travel-exp .travel-exp-left img.floating-baloon {
    position: absolute;
    bottom: 0;
    animation: floatY 10s ease-in-out infinite;
    left: 0;
    max-width: 160px;
}
.home-explore-world-tabs{
    position: relative;
    margin: 0 0 18px 0;
}
.home-explore-world-tabs .scroll-btn { display: none; }

.home-explore-world-tabs ul{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
}
.home-explore-world-tabs ul li{
    padding: 0 2px 0 0;
}
.home-explore-world-tabs ul.nav-tabs li button{
    display: inline-block;
    transition: all .3s ease-in-out;
    padding: 7px 15px;
    margin-right: 5px;
    border-radius: 5px;
    border: 1px solid #9D9D9D !important;
    background: #fff;
    line-height: 1;
    height: 34px;
    color: #333333;
    font-weight: 600;
    text-transform: none;
}
.home-explore-world-tabs ul.nav-tabs li button.active {
    background: #132738;
    color: #fff;
}
.offers.explore-world>.tab-content>.active{
    display: flex;
}
.home-contact-sec{
    padding: 40px 0 60px 0;
}
.home-contact-sec p{
    margin: 50px 0 0 0;
    font-weight: 600;
}
.home-contact-sec form .input-group-inline{
    display: flex;
    column-gap: 15px;
}
.home-contact-sec form .input-group-inline .form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.home-contact-sec form input{
    border: 1px solid #f9c0a7;
    border-radius: .25rem;
    font-size: 13px;
    height: 37px;
}
.home-contact-sec form textarea{
    width: 100%;
    margin: 16px 0 15px 0;
    min-height: 100px;
    border: 1px solid #f9c0a7;
    font-size: 13px;
    padding: 5px 0 0 8px;
}
.home-contact-sec form button{
    padding: 5px 50px 5px 50px !important;
    border: 0;
    display: block;
    height: 40px;
    border-radius: 30px;
}
.home-contact-sec .con-banner{
    max-width: 100%;
    border-radius: 10px;
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100px); /* How high it moves up */
  }
}
.travel-exp .travel-exp-right h3{
    color: #0f1e2c;
    font-size: 26px;
}
.travel-exp .travel-exp-right h3 span{
    color: #f16a2e;
    font-style: italic;
}
.travel-exp .travel-exp-right p{
    font-size: 15px;
    color: #000;
}
.travel-exp .travel-exp-right .tour-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 25px 0 0 0;
}
.travel-exp .travel-exp-right .tour-list li:before{
    display: none;
}
.travel-exp .travel-exp-right .tour-list li {
    display: flex;
    flex: 0 0 48%;
    background: #fff5f2;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
    padding: 10px;
}

.travel-exp .travel-exp-right .tour-list img {
    width: 40px;
    height: 45px;
    margin-right: 15px;
}
.travel-exp .travel-exp-right .tour-text {
  flex: 1;
}

.travel-exp .travel-exp-right .tour-text p {
    margin: 0;
    font-size: 14px;
    color: #000;
    font-weight: 600;
    display: inline;
}

/* Optional: Add spacing from edges */
.top-trending-carousel .owl-nav .owl-prev {
    margin-left: -50px; /* or adjust to fit your layout */
}
 .discover-world-carousel .owl-nav .owl-prev{
    margin-left: -50px;
    border: 1px solid #595959 !important;
 }
.top-trending-carousel .owl-nav .owl-next {
  margin-right: -50px;
}
.discover-world-carousel .owl-nav .owl-next{
    margin-right: -50px;
    border: 1px solid #595959 !important;
}
.top-trending-carousel .owl-nav .owl-prev span, .discover-world-carousel .owl-nav .owl-prev span {
  margin-top: -6px;
}

.top-trending-carousel .owl-nav .owl-next span, .discover-world-carousel .owl-nav .owl-next span {
  margin-top: -6px;
}
.owl-carousel .custom-prev, .owl-carousel .custom-next{
     font-size: 20px;
}

.slide-overlay{
    background-color: rgba(0, 0, 0, .35);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}


.refine-search-results dt {
	border-bottom: 1px solid #ccc;
	width: 100%;
	font-weight: 700;
	padding: 0 0 15px;
	margin: 0 0 15px;
	cursor: pointer;
	color: #555;
	position: relative;
}

.refine-search-results dt:before {
	content: "\e315";
	font-family: 'Material Icons';
	font-size: 24px;
	color: #B8ACA4;
	position: absolute;
	top: -7px;
	right: 0;
	font-weight: 400;
}

.refine-search-results dt.active {
	border: none;
	margin: 0;
}

.refine-search-results dt.active:before {
	content: "\e313";
	top: -5px;
}

.refine-search-results dd {
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 0 0 15px;
	margin: 0 0 15px;
}

.refine-search-results .checkbox {
	display: inline-block;
	width: 100%;
}

.refine-search-results .checkbox label {
	max-width: 100%;
}

.refine-search-results div.radio>div,
.refine-search-results div.checkbox>div {
	margin-right: 5px;
}

.refine-search-results .checkbox label,
.refine-search-results .radio label {
	padding: 0;
}

.refine-search-results div.radio span,
.refine-search-results div.radio input {
	width: 20px;
	height: 20px;
}

.refine-search-results div.radio span.checked:before {
	width: 10px;
	height: 10px;
	left: 4px;
	top: 4px;
}

.refine-search-results div.checker span,
.refine-search-results div.checker input {
	width: 20px;
	height: 20px;
}

.refine-search-results div.checker span.checked:before {
	left: 0;
	top: -1px;
}

#star {
	margin: 0 0 8px;
}

#star img {
	display: inline;
}

.stars-info {
	float: right;
	font-size: 12px;
	line-height: 24px;
}

.refine-search-results .gradient-button {
	width: 100%;
}

/* Search widget */
.main-search .wrap>.form {
	position: absolute;
	top: -300px;
	left: 80px;
	z-index: 99;
	width: 100%;
	display: inline-block;
	padding: 15px 15px 10px;
}

.main-search input {
	background-color: #fff;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    height: 60px;
    padding: 20px 18px;
    border-left: 0 !important;
    border-right: 1px solid #e1e1e1 !important;
}
.main-search .submit-btn {
	background-color: #f1612f;
    border: 0;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    height: 60px;
    width: 120px;
}
.main-search .column {
	margin-bottom: 0;
}

#form3 .column>.row,
#form5 .column>.row,
#form6 .column>.row {
	min-height: 140px;
}

.main-search h5 {
	font: 400 16px 'Open Sans', Helvetica, Arial, sans-serif;
	padding: 0 0 15px;
}

.main-search h5 span {
	font-weight: 800;
}
.main-search .search-title{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    /*text-align: center;*/
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .9);
    margin: 0 0 40px 0;
    left: 10%;
}
.main-search .f-item {
	background-color: rgba(0, 0, 0, .5);
    color: var(--white);
    display: inline-block;
    font-size: var(--fnt-14);
    height: 40px;
    padding: 8px 25px;
}
.main-search .f-item:hover{
    cursor: pointer;
    background: #f1612f;
}
.main-search .f-item.active{
    background: #2789c8;
}
.main-search .f-item i{
    display: inline-block;
    vertical-align: bottom;
    font-size: 22px;
    margin: 0 0 -2px 0;
}
.main-search .f-item .f-item,
.main-search .f-item.full-width {
	margin: 0;
}

.main-search .f-item.one-half,
.main-search .f-item.one-third {
	padding-right: 0;
}

.main-search .f-item.one-half:last-of-type,
.main-search .f-item.one-third:last-of-type {
	padding-right: 10px;
}

.main-search div.radio,
.main-search div.checkbox {
	margin-right: 5px;
}

.main-search .checkbox label,
.main-search .radio label {
	padding: 0;
}

.main-search div.radio span,
.main-search div.radio input {
	width: 20px;
	height: 20px;
}

.main-search div.radio span.checked:before {
	width: 10px;
	height: 10px;
	left: 4px;
	top: 4px;
}

.main-search div.checker span,
.main-search div.checker input {
	width: 20px;
	height: 20px;
}

.main-search div.checker span.checked:before {
	left: 0;
	top: -1px;
}

.main-search .gradient-button {
	position: absolute;
	left: 41.5%;
	bottom: -1px;
	width: 17%;
	height: 34px;
	border: none;
	-webkit-border-radius: 17px 17px 0 0;
	-moz-border-radius: 17px 17px 0 0;
	border-radius: 17px 17px 0 0;
}

/*search results*/
.header-search-results{
    position: absolute;
    width: 95%;
    background: #fff;
    z-index: 9;
}
.ajax-search-packages,
.ajax-search-destinations {
  list-style: none;
  margin: 0 0;
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}
.ajax-search-destinations{
    padding: 4px 0 4px 0;
}
.ajax-search-destinations li{
    padding: 4px 0 1px 15px;
}
.ajax-search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 12px;
  transition: background 0.2s ease;
}
.ajax-search-item:last-child {
  border-bottom: none;
}
.ajax-search-item:hover {
  background: #f9f9f9;
}
.ajax-search-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  width: 100%;
  gap: 10px;
}
.ajax-search-img {
  flex: 0 0 50px;
  margin-right: 10px;
}

.ajax-search-img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.ajax-search-content {
  flex: 1;
}

.ajax-search-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: #333;
}

.ajax-search-price {
  font-size: 13px;
  color: #e63946; /* red price */
  font-weight: bold;
}

/* Remove cross (clear) button from search inputs */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* 06 Header */
.header {
	float: left;
	background: #0f1e2c;
	margin: 0 0 0 0;
	width: 100%;
	/*height: 120px;*/
	position: relative;
	z-index: 999;
}

.noslider .header {
	margin: 0 0 20px !important;
}

.noslider .main-search {
	top: 0;
	position: relative;
	margin: 20px 0 0;
}

.slider {
	margin: -20px 0 20px;
	height: 400px;
	overflow: hidden;
	display: inline-block;
	width: 100%;
}

.logo {
	float: left;
	display: block;
	padding: 15px 0;
}

.logo img {
	max-width: 285px;
}

.header .search {
	margin: 21px 0 0 0;
	position: relative;
}

.header .search form {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
}

.header .search form:after {
	font-family: 'Material Icons';
	content: "\e8b6";
	font-size: 22px;
	position: absolute;
	top: 2px;
	right: 10px;
	color: #0f1e2c;
}

.header .search input {
	padding: 8px 15px;
	border-radius: 5px;
}

.header .search input[type="submit"] {
	z-index: 10;
	width: 37px;
	height: 37px;
	background: transparent;
	font-size: 0;
	text-align: right;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.header-login{
    position: absolute;
    right: 0;
    top: 6px;
}
.header-login a{
    color: #fff;
}
.header-login a i{
    vertical-align: top;
    font-size: 22px;
}
.header-login a span{
    
}
.header-top-wrap .contact {
	display: inline-block;
    width: auto;
    margin: 22px 0 0 10px;
    border-radius: 24px;
    animation: pulse 2s infinite;
}
.header-top-wrap .contact a {
	color: #2c4c99;
    text-decoration: none;
    border: 1px solid #2c4c99;
    border-radius: 24px;
    padding: 5px 9px 5px 10px;
    display: block;
}
.header-top-wrap .contact a i{
    vertical-align: bottom;
    font-size: 22px;
}
.header-top-wrap .contact a:hover{
    border: 1px solid #f1612f;
    text-decoration: none;
    background: #f1612f;
    color: #fff;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgb(44 76 153 / 28%); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}
  
.header-top-wrap .offers{
    display: inline-block;
    width: auto;
    margin: 22px 0 0 10px;
}
.header-top-wrap .offers a {
    color: #fff;
    background: #2c4c99;
    border: 1px solid #2c4c99;
    border-radius: 24px;
    padding: 7px 9px 7px 10px;
}
.header-top-wrap .offers a i{
    vertical-align: bottom;
    font-size: 22px;
}
.header-top-wrap .offers a:hover{
    border: 1px solid #18326f;
    text-decoration: none;
    background: #18326f;
    color: #fff;
}
.header-top-wrap .gift-card{
    display: inline-block;
    width: auto;
    margin: 22px 0 0 10px;
}
.header-top-wrap .gift-card a {
    color: #333;
    background: #fee026;
    border: 1px solid #fee026;
    border-radius: 24px;
    padding: 7px 9px 7px 10px;
}
.header-top-wrap .gift-card a i{
    color: #e65c2d;
    vertical-align: bottom;
    font-size: 22px;
}
.header-top-wrap .gift-card a:hover{
    border: 1px solid #fee026;
    text-decoration: none;
    background: #e9ce24;
    color: #333;
}
.header-top-wrap .account{
    display: inline-block;
    width: auto;
    margin: 17px 0 6px 40px;
}
.header-top-wrap .account a{
    background: #fff;
    color: #f16a2e;
    font-size: 14px;
    vertical-align: inherit;
    font-weight: 700;
    padding: 0;
    display: block;
    border: 0;
}
.header-top-wrap .account a span{
    padding: 3px 9px 4px 4px;
    display: inline-block;
    font-size: 15px;
}
.header-top-wrap .account a i{
    color: #fff;
    vertical-align: bottom;
    font-size: 22px;
    background: #f16a2e;
    padding: 4px 7px 4px 3px;
    display: inline-block;
    height: 30px;
    width: 30px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.header-top-wrap .account a:hover {
    background: #132738;
    color: #fff;
}


/* 07 Content*/
.main {
	float: left;
	width: 100%;
	min-height: 500px;
	padding-bottom: 70px;
}

.breadcrumbs {
	float: left;
	width: 100%;
	margin: 0 0 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.breadcrumbs ul {
	float: left;
	padding: 0 0 10px;
}

.breadcrumbs li {
	float: left;
	display: block;
	font-size: 12px;
}

.breadcrumbs li a {
	color: #454545;
	border-right: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);
	-moz-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);
	box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);
	padding: 0 14px 0 0;
	margin: 0 15px 0 0;
}

.breadcrumbs li a:hover {
	color: #3F3F3F;
}

.breadcrumbs .top-right-nav {
	float: right;
}

.breadcrumbs .top-right-nav li:last-of-type a {
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
}

/* 07.1 Static elements */
.static-content {
	float: left;
	display: block;
	background: #fff;
	padding: 20px;
	width: 100%;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}


/* 07.2 Offers, Deals lists */
.s-title {
	display: inline-block;
	width: 100%;
}

.s-title h2 {
    position: relative;
	font-size: 23px;
	font-weight: 700;
	color: #000;
	margin: 40px 0 0;
	padding: 35px 0 5px;
	display: inline-block;
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, 0.7);
	text-align: center;
}
.s-title h2::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    height: 15px;
    width: 100%;
    background: url(../images/heading-underline.png) no-repeat center;
    background-size: contain;
}
.s-title:first-of-type h2 {
	border-top: none;
	margin: 0;
	padding-top: 25px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.offers article,
.deals article,
.destinations article,
.boxes article {
	position: relative;
}
.offers article .offer-wrap{
    background: #fef4ed;
    padding: 10px 15px 10px 15px;
    border: 1px solid #f9c0a7;
    border-radius: 10px;
}
.offers article .offer-wrap:hover{
    background: #f16a2e21;
}
.offers article .offer-wrap h3{
    padding: 0 0 5px 0;
    font-weight: 600;
    font-size: 15px;
    color: #454545;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.offers article .offer-wrap .loc-rat{
    margin: 0 0 8px 0;
}
.offers article .offer-wrap .loc-rat i{
    font-size: 14px;
    vertical-align: text-bottom;
}
.offers article .offer-wrap .loc-rat .loc{
    display: inline-block;
    font-size: 11px;
    color: #585757;
}
.offers article .offer-wrap .loc-rat .rat{
    float: right;
    background: #fff;
    color: #f16a2e;
    font-size: 13px;
    padding: 2px 9px 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}
.offers article .offer-wrap .pr-book h4{
    display: inline-block;
}
.offers article .offer-wrap .pr-book .book-btn{
    float: right;
    background: #0f1e2c;
    color: #fff;
    text-decoration: none;
    padding: 2px 15px 4px 15px;
    border-radius: 10px;
    font-size: 11px;
}
.offers article .offer-wrap figure{
    position: relative;
}
.offers article .offer-wrap figure img{
    border-radius: 10px;
    max-height: 200px;
    width: 100%;
}
.offers article .offer-wrap .iti{
    position: absolute;
    bottom: -9px;
    right: 9px;
    text-align: right;
    background: #fff;
    border-radius: 10px;
    padding: 2px 10px 1px 10px;
    color: #000;
    font-size: 11px;
}
.ribbon-small {
	position: absolute;
	top: 0;
	right: 30px;
	z-index: 2;
	background: #FFC904;
	color: #fff;
	text-align: center;
	width: 50px;
	height: 45px;
	line-height: 45px;
	font-size: 16px;
	font-weight: bold;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.ribbon-small:before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 25px 0 0;
	border-color: #FFC904 transparent transparent transparent;
}

.ribbon-small:after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 25px 10px 0;
	border-color: transparent #FFC904 transparent transparent;
}
.offers{
    margin: 50px 0 0 0;
}
.offers .details h3 {
	padding: 0 0 3px;
	margin: 0 0 2px;
	font-size: 14px;
    font-weight: 600;
    color: #111;
}
.offers .details p {
    color: #4a4a4a;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    padding: 0 0 15px;
}
.offers .details h3 a {
	color: #454545;
	font-weight: 600;
}
.offers.explore-world{
    margin: 35px 0 0 0;
}
.destinations .details {
	text-align: left;
}

.details {
	text-align: left;
    display: block;
    position: relative;
    padding: 18px 0 0 0;
    width: 100%;
}

.details h3 {
	text-align: left;
	padding: 0 75px 5px 0;
}

.details .address {
	text-align: left;
	display: inline-block;
	width: 100%;
	color: #858585;
	padding: 0 65px 12px 0;
}

.details .stars {
	text-align: left;
	position: absolute;
	top: 18px;
	right: 15px;
}

.stars {
	text-align: left;
	float: right;
}

.stars i {
	display: inline;
	float: left;
	color: #FFC904;
	font-size: 16px;
}

.rating {
	text-align: left;
	position: absolute;
	padding: 0 0 0 19px;
	display: inline-block;
	float: right;
	white-space: nowrap;
	top: 44px;
	right: 15px;
}

.rating:before {
	content: "\e8dc";
	font-family: 'Material Icons';
	color: #B8ACA4;
	font-size: 15px;
	position: absolute;
	top: -1px;
	left: 0;
}







.boxes {
	display: inline-block;
	margin: 40px 0 0;
	padding: 60px 0 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.boxes article>div {
	min-height: 200px;
	padding: 15px;
	margin: 0;
	background: rgb(255, 255, 255);
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(242, 242, 242, 1)));
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0);
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.boxes article h4 {
	border-bottom: 1px solid #ccc;
	font-size: 17px;
	margin: 0 0 14px;
	padding: 0 0 13px;
}

.tab-content .deals article {
	padding: 0;
}

/* 08 Search results */
.sort-by {
	height: 48px;
	background: #fff;
	display: inline-block;
	width: 100%;
	padding: 0 10px 0 15px;
	margin: 0 0 20px;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.sort-by * {
	float: left;
}

.sort-by h3 {
	padding: 0 20px 0 0;
	font-size: 16px;
	color: #858585;
	line-height: 48px;
}

.sort-by li {
	position: relative;
}

.sort {
	margin: 14px 0;
	border-left: 1px solid #ccc;
}

.sort li {
	padding: 0 75px 0 0;
	margin: 0 0 0 20px;
	border-right: 1px solid #ccc;
}

.sort li:before {
	display: none;
}

.sort a {
	position: absolute;
	right: 15px;
	font-size: 0;
	width: 14px;
	height: 7px;
}

.sort a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
}

.ascending {
	top: 3px;
}

.descending {
	top: 12px;
}

.view-type {
	margin: 10px 0 0 0;
	float: right;
}

.view-type li {
	width: 28px;
	height: 28px;
	margin: 0 0 0 3px;
	background: #999;
	color: #fff;
	padding: 0;
	text-align: center;
	cursor: pointer;
}

.view-type li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	text-indent: -99999px;
	cursor: pointer;
}

.view-type li:before {
	font-family: 'Material Icons';
	font-size: 24px;
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 2px;
	color: #fff;
	line-height: 28px;
}

.view-type .grid-view:before {
	content: "\e8f0";
}

.view-type .list-view:before {
	content: "\e8ef";
}

.view-type .location-view:before {
	content: "\e55f";
	font-size: 21px;
	left: 4px;
}

.ascending:before {
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent #b1a398 transparent;
}

.descending:before {
	border-width: 7px 7px 0 7px;
	border-color: #b1a398 transparent transparent transparent;
}

.row.destinations .details h4 {
	padding: 0 0 10px !important;
}

.row.destinations .details .description {
	text-align: left;
	border-top: none;
	padding-top: 0;
}

.row.destinations .gradient-button {
	position: static;
}

.row.destinations .one-third .details {
	text-align: center;
}

.row.destinations .one-third .details h4 {
	text-align: left;
}

.row.destinations .full-width figure {
	float: left;
	width: 27%;
	height: 155px;
	overflow: hidden;
	background: #fff;
}

.row.destinations .full-width figure img {
	height: 100%;
	max-width: none;
}

.row.destinations .full-width .details {
	float: left;
	width: 73%;
	min-height: 155px;
	height: auto !important;
	padding-right: 110px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.row.destinations .full-width .details .description {
	border: none;
	padding: 0;
}

.row.destinations .full-width .ribbon {
	margin: 0;
	position: absolute;
	top: 22px;
	right: -10px;
	width: 110px;
	height: 110px;
}

.row.destinations .full-width .ribbon:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 0 10px;
	border-color: transparent transparent transparent #a39385;
	bottom: auto;
	left: auto;
	top: -10px;
	right: 0;
}

.row.destinations .full-width .ribbon:after {
	display: none;
}

.row.destinations .full-width .ribbon:hover:before {
	border-color: transparent transparent transparent #30928C !important;
}

.row.destinations .full-width.promo .ribbon:before {
	border-color: transparent transparent transparent #D2A300;
}

.row.destinations .full-width .ribbon>div {
	width: 100%;
	height: 50%;
}

.row.destinations .full-width .ribbon>div:first-child:after {
	height: 1px;
	width: 90px;
	top: auto;
	bottom: 0;
	right: 10px;
}

.row.destinations .full-width .ribbon>div>a {
	padding: 5px 15px;
}

.row.destinations .full-width .ribbon>div>a:before {
	left: 10px;
	top: 2px;
}

.row.destinations .full-width .ribbon>div span {
	padding-right: 5px;
}



/* 09 Single accommodation, cruise, car, tour, location */

.lg-outer {
	text-align: left;
}

aside h1 {
	padding: 0;
	color: #555 !important;
}

aside .address {
	width: 100%;
	color: #858585;
}

aside .description {
	padding: 15px 0;
	border-top: 1px solid #ccc;
	margin-top: 15px;
}

aside .description p {
	padding: 0;
}

div.tags {
	border-top: 1px solid #ccc;
	padding: 18px 0 0;
	margin: 0 0 15px;
	width: 100%;
}

.tags ul {
	position: relative;
	width: 104%;
	overflow: hidden;
	margin: 0;
}

.tags li {
	position: relative;
	float: left;
	display: block;
	margin: 0 5px 5px 0;
	padding: 0 10px 0 20px;
	background: #DFDCD1;
	height: 30px;
	line-height: 30px;
	-webkit-border-radius: 15px 2px 2px 15px;
	-moz-border-radius: 15px 2px 2px 15px;
	border-radius: 15px 2px 2px 15px;
	-webkit-box-shadow: 0 1px 0 #C1BBA8;
	-moz-box-shadow: 0 1px 0 #C1BBA8;
	box-shadow: 0 1px 0 #C1BBA8;
	-webkit-transition: all 0.1s ease-in 0.1s;
	-moz-transition: all 0.1s ease-in 0.1s;
	-o-transition: all 0.1s ease-in 0.1s;
	-ms-transition: all 0.1s ease-in 0.1s;
	transition: all 0.1s ease-in 0.1s;
}

.tags li:before {
	display: block !important;
	content: "";
	width: 8px;
	height: 8px;
	background: #fff;
	position: absolute;
	top: 11px;
	left: 7px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .3);
	-moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .3);
	box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .3);
}

.tags a {
	color: #666;
}

.tags li:hover a {
	color: #fff;
}

.room-types {
	margin: 0;
	display: inline-block;
	width: 100%;
	padding: 0 0 5px;
}

.room-types li {
	float: left;
	display: block;
	width: 100%;
	border-bottom: 1px solid #ccc;
	margin: 0 0 30px;
	padding: 0 0 30px;
}

.room-types li:last-of-type {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.room-types li figure {
	position: relative;
	width: 42%;
	height: auto;
	overflow: hidden;
	max-height: 162px;
	float: left;
}

.room-types li figure a {
	display: none;
}

.room-types li figure a:first-of-type {
	display: block;
}

.room-types img {
	margin: 0;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.1s ease-in 0.1s;
	-moz-transition: all 0.1s ease-in 0.1s;
	-o-transition: all 0.1s ease-in 0.1s;
	-ms-transition: all 0.1s ease-in 0.1s;
	transition: all 0.1s ease-in 0.1s;
}

.image-overlay:before {
	content: "\e8ff";
	font: normal 36px/80px 'Material Icons';
	text-align: center;
	color: #fff;
	width: 80px;
	height: 80px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	position: absolute;
	top: 41px;
	left: 34%;
}

.image-overlay:hover {
	opacity: 1;
}

.tab-content .room-types .meta h3 {
	font: 700 15px/1.2 'Open Sans', Helvetica, Arial, sans-serif;
	color: #3FAEA9;
	padding: 0 0 10px;
}

.tab-content .room-types .meta {
	float: left;
	width: 36%;
	padding: 0 20px;
	min-height: 152px;
}

.tab-content .meta .text-wrap,
.tab-content .more-information .text-wrap {
	padding: 0;
}



.room-information .gradient-button {
	position: absolute;
	right: 0;
	bottom: 0;
}

.more-information {
	float: left;
	display: block;
	width: 100%;
	margin: 20px 0 0;
}

.more-information p>span {
	font-weight: 600;
	padding-right: 5px;
	color: #3f3f3f;
}

.three-col {
	display: inline-block;
	width: 100%;
	margin: 0;
}

.three-col li {
	float: left;
	width: 33.3333%;
}

.three-col li:before {
	color: #BBADA4;
}

.lSSlideOuter {
	margin: 0 0 20px;
	max-width: 100%;
	float: left;
	width: 100%;
	display: block;
}

.lightSlider li {
	text-align: center;
	overflow: hidden;
	padding: 0;
}

.lightSlider li:before {
	display: none;
}

.lightSlider img {
	height: auto;
	display: inline;
	margin: 0 auto;
}

.inner-nav {
	float: left;
	display: block;
	width: 90%;
	position: relative;
	z-index: 50;
	z-index: 1;
}

.inner-nav li {
	padding: 0 !important;
	float: left;
	display: block;
	height: 42px;
	width: 100%;
	margin: 0 0 1px;
	font-size: 14px;
	font-weight: 600;
	line-height: 42px;
	text-align: left;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	background: rgb(193, 182, 174);
	background: -moz-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(193, 182, 174, 1)), color-stop(100%, rgba(186, 172, 163, 1)));
	background: -webkit-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: -o-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: -ms-linear-gradient(top, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	background: linear-gradient(to bottom, rgba(193, 182, 174, 1) 0%, rgba(186, 172, 163, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c1b6ae', endColorstr='#baaca3', GradientType=0);
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.inner-nav li a {
	float: left;
	display: block;
	color: #fff;
	padding: 0 0 0 41px;
	width: 100%;
	height: 100%;
	position: relative;
	font-weight: 600;
}

.inner-nav li.active,
.inner-nav li.active:hover {
	width: 100%;
	background: #f16a2e;
}
.inner-nav li.active a:after {
	content: "";
	position: absolute;
	top: 0;
	right: -21px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 21px 0 21px 21px;
	border-color: transparent transparent transparent #f1612f;
}

.inner-nav li a:before {
	font-family: 'Material Icons';
	font-size: 24px;
	font-weight: 400;
	position: absolute;
	top: 0;
	left: 10px;
}

.inner-nav .availability a:before {
	content: "\e878";
}

.inner-nav .description a:before {
	content: "\e88f";
}

.inner-nav .facilities a:before {
	content: "\e87a";
}

.inner-nav .location a:before,
.inner-nav .map a:before {
	content: "\e55f";
}

.inner-nav .things-to-do a:before,
.inner-nav .locations a:before {
	content: "\e553";
}

.inner-nav .reviews a:before {
	content: "\e8dc";
}

.single-location .inner-nav li a,
.myaccount .inner-nav li a {
	padding-left: 21px;
}

.user-dashboard .tab-content {
	text-align: left;
}

.user-dashboard .tab-content article {
	float: left;
	width: 100%;
	padding: 13px 20px 20px;
	overflow: hidden;
	margin: 0 0 20px;
	background: #fff;
	webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	font-size: 13px;
}

.user-dashboard .tab-content h2 {
	color: #B1A398;
	padding: 0 0 10px;
	margin: 0 0 20px;
	text-indent: 10px;
	border-bottom: 1px solid #ccc;
	display: inline-block;
	width: 100%;
}

.user-dashboard .tab-content h2 a,
.user-dashboard .tab-content h3 a {
	color: #B1A398;
}

.user-dashboard .tab-content h3 {
	color: #B1A398;
	padding: 0 0 15px;
}

.user-dashboard .tab-content h4 {
	padding: 0 0 15px;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 15px;
}

.detailBox ul{
    list-style-type: none;
}
.detailBox .nav-tabs li{
    padding: 0;
}
.detailBox .nav-tabs li button{
    border: 0;
    padding: 0 12px 0 12px;
    border-radius: 0;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}
.detailBox .nav-tabs li button:hover{
    background: #132738;
    color: #fff;
}
.detailBox .nav-tabs li button.active{
    background: #f16a2e;
    color: #fff;
}
.detailBox .tab-content h4{
    color: #333;
}
.detailBox .tab-content .list li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    background: url('../images/list-highlight-icon.svg') no-repeat center center;
    background-size: contain;
}
.detailBox{
    text-align: left;
}
.detailBox .title-box{
    display: inline-block;
}
.detailBox .ratings-wrap{
    float: right;
    margin: 30px 0 0 0;
}
.detailBox .ratings-wrap .stars{
    float: none;
    margin-right: 7px;
}
.detailBox .ratings-wrap .rating-txt{
    color: #212220;
    font-size: 13px;
    font-weight: 600;
}
.detailBox .ratings-wrap .reviews-link{
    color: #f16a2e;
    text-decoration: underline;
}

.detailBox .title-box h1{
    padding: 16px 0 5px 0;
}
.detailBox .title-box .days{
    margin: 0 0 0 0;
}
.detailBox .short-iti-options {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 20px; /* space between columns */
    margin: 0 0 20px 0;
}
.detailBox .short-iti-options .deal-loc-list,
.detailBox .short-iti-options .tour-by {
    flex: 1 1 50%; /* take 50% width each */
}
.detailBox .short-iti-options .tour-by {
    display: flex;
    align-items: normal;
    text-align: right;
}
.detailBox .short-iti-options .tour-by h3{
    font-size: 14px;
    display: block;
    width: 100%;
    font-weight: 500;
    padding: 7px 7px 0 0;
    color: #f16a2e;
}
.detailBox .short-iti-options .tour-by .selector{
    width: 180px !important;
}
.detail-proceed-wrap .price, .tour-book .price{
    display: block;
}
.detail-proceed-wrap .price span, .tour-book .price span{
    font-size: 24px;
    font-weight: 900;
    line-height: 22px;
    color: #4a4a4a;
}
.detail-proceed-wrap .price .taxes-info, .tour-book .price .taxes-info{
    display: block;
    font-size: 11px;
    font-weight: 500;
}
.destination-ft .tour-book{
    min-width: 40%;
    text-align: left;
}
.detail-proceed-wrap .prcd-btn, .destination-ft .tour-book .btn-book{
    background: #444;
    color: #fff;
    padding: 6px 0 6px 0;
    width: 100%;
    display: block;
    text-align: center;
    margin: 10px 0 0 0;
}
.itin-days{
    border-bottom: 1px solid #ccc;
    margin: 0 0 15px 0;
    padding: 0;
}
.itin-days:last-child{
    border-bottom: 0;
}
.itin-days .desc-before{
    padding: 0;
}
.itin-days .desc-before ul{
    margin: 15px 0 0 0;
}
.itin-days .desc-before ul li{
    padding: 0 0 8px 0;
}
.itin-days h5{
    background: #f9c0a7;
    color: #000;
    padding: 10px 0 10px 12px;
    margin: 0 0 12px 0;
}
.itin-days .day-count{
    background: #eee;
    padding: 10px 0 0 10px;
    font-size: 15px;
    font-weight: 600;
}
.itin-days .days-info ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.itin-days .days-info ul li {
    flex: 0 0 calc(50% - 5px);
    box-sizing: border-box;
    padding: 5px;
    background: #fef4ed;
    margin: 0 0 0 0;
    font-size: 12px;
    color: #000;
}
.detail-sidebar article{
    background: #fffaf6;
    margin: 20px 0 0 0;
    padding: 20px 20px 20px 20px;
    border: 1px solid #dad8d6;
    text-align: left;
}
.detail-sidebar article h4{
    border-bottom: 1px dashed #a8a3a3;
    padding: 0 0 5px 0;
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.detail-sidebar article h5{
    font-size: 13px;
    font-weight: 700;
    padding: 0 0 2px 0;
}
.detail-sidebar .detail-form-wrap input{
    font-size: 13px;
    margin: 0 0 14px 0;
}
.detail-sidebar .detail-form-wrap button{
    width: 100%;
    border: 0;
    border-radius: 0;
}

   
#location.tab-content article,
#map.tab-content article {
	padding: 15px;
}

#things-to-do img {
	margin: 0 0 20px;
}

#things-to-do article h2 {
	padding: 0 0 10px;
}

.text-wrap {
	padding: 0 10px 30px;
	display: inline-block;
	width: 100%;
}

.text-wrap h2 {
	margin-left: -10px;
	margin-right: -10px;
	width: auto;
	display: block;
}

.text-wrap table {
	margin: 0;
}

.score {
	float: left;
	width: 35%;
	text-align: center;
	padding: 0 30px 0 10px;
}

.score span {
	font-size: 55px;
	letter-spacing: -0.1em;
	color: #b1a398;
	line-height: 60px;
}

.score .achieved {
	color: #666;
	font-weight: 700;
	margin-left: -10px;
}

.score .info {
	font-size: 12px;
	font-weight: 600;
	padding: 3px 0 0;
}

.score .disclaimer {
	border-top: 1px solid #ccc;
	width: 100%;
	padding: 10px 10px 0;
	margin: 12px 0 0;
	font-size: 12px;
	text-align: left;
}

.chart {
	float: right;
	width: 65%;
	font-size: 12px;
	font-weight: 700;
	line-height: 25px;
	color: #fff;
	margin: 5px 0 0;
}

.chart dt {
	position: relative;
	z-index: 5;
	float: left;
	margin: 0 0 0 10px;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.chart dd {
	position: relative;
	height: 25px;
	margin: 0 0 1px;
	-webkit-border-radius: 0 15px 15px 0;
	-moz-border-radius: 0 15px 15px 0;
	border-radius: 0 15px 15px 0;
	background: #E9E6E0;
}

.chart dd span {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	text-align: right;
	height: 100%;
	-webkit-border-radius: 0 15px 15px 0;
	-moz-border-radius: 0 15px 15px 0;
	border-radius: 0 15px 15px 0;
}

.reviews {
	margin: 5px 0 0;
	display: inline-block;
	width: 100%;
}

.reviews li {
	float: left;
	display: block;
	width: 100%;
	border-bottom: 1px solid #ccc;
	margin: 0 0 20px;
	padding: 0 0 20px;
}

.reviews li:before {
	display: none;
}

.reviews li.last {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.reviews li figure {
	padding-right: 20px;
	width: 35%;
}

.reviews li figure img {
	float: left;
	margin-right: 15px;
}

.reviews address {
	font-size: 11px;
	font-style: normal;
}

.reviews address span {
	font-size: 12px;
	font-weight: 600;
}

.reviews .rev {
	position: relative;
	padding: 0 0 20px 32px;
	display: table;
	width: 65%;
	float: right;
}

.reviews .rev:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	line-height: 22px;
	float: left;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	border-radius: 11px;
	color: #fff;
}

.reviews .pro:before {
	content: "+";
	background: #43a047;
}

.reviews .con:before {
	content: "-";
	background: #E14242;
	line-height: 18px;
	font-size: 21px;
	font-weight: 700;
}

.reviews p {
	padding: 0;
}

.booking h2 {
	color: #B1A398;
	padding: 0 0 10px;
	margin: 0 0 20px;
	text-indent: 10px;
	border-bottom: 1px solid #ccc;
	display: inline-block;
	width: 100%;
}

.booking h3 {
	color: #B1A398;
	padding: 0 10px 15px;
}

span.info {
	margin: -15px 10px 20px;
	float: left;
	width: 100%;
	color: #999;
	font-style: italic;
}

.text-wrap .output p {
	float: left;
	width: 66%;
}

.text-wrap .output p:nth-child(2n+1) {
	width: 34%;
	font-weight: 600;
}

.myaccount table {
	margin: 0 0 20px;
}

.myaccount th,
.b-info th {
	width: 35%;
	vertical-align: middle;
}

.myaccount td .gradient-button {
	float: right;
}

.myaccount .reviews {
	width: 65%;
}

.myaccount .reviews .rev {
	width: 100%;
}

.mysettings td:last-of-type {
	width: 89px;
}

.edit_field {
	padding: 15px 0;
}

.edit_field input {
	margin-bottom: 10px;
}

.single-location .tab-content img {
	margin-bottom: 15px;
}

/* 10 Get inspired */
.get_inspired {
	margin: 0 -10px;
}

.get_inspired li:before {
	display: none;
}

.get_inspired li {
	width: 20%;
	height: 130px;
	float: left;
	display: block;
	padding: 0 10px;
	margin: 0 0 20px;
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.get_inspired li a {
	float: left;
	width: 100%;
	height: 100%;
	color: #454545;
	background: #fff;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.get_inspired li figure {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.get_inspired img {
	width: 100%;
	-webkit-transition: all 0.7s ease-in-out;
	-moz-transition: all 0.7s ease-in-out;
	-o-transition: all 0.7s ease-in-out;
	-ms-transition: all 0.7s ease-in-out;
	transition: all 0.7s ease-in-out;
}

.get_inspired figcaption {
	font-weight: 700;
	font-size: 14px;
	padding: 10px;
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.get_inspired li:hover img {
	-webkit-transform: scale(10);
	-moz-transform: scale(10);
	-o-transform: scale(10);
	-ms-transform: scale(10);
	transform: scale(10);
	opacity: 0;
	-ms-opacity: 0;
}

.get_inspired li:hover figcaption {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #40BFB8;
	color: #fff;
}


/* 11 Maps */
.map-wrap {
	width: 100%;
	padding: 15px;
	background: #fff;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.gmap {
	border: 1px solid #ccc;
	display: block;
	width: 100%;
	height: 550px;
}

.gmap * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.infoBox {
	font-size: 14px;
	margin: -100px 0 0 50px;
	display: inline-block;
	padding: 15px 15px 20px;
	color: #fff;
	width: 200px !important;
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.infoBox:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 45%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
}

.gmap strong {
	font-size: 15px;
	padding: 0 0 10px;
	margin: 0 0 13px;
	display: inline-block;
	width: 100%;
	font-weight: 700;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

#map_canvas img {
	max-width: none;
}

#map_canvas label {
	width: auto;
	display: inline;
}

.gm-style div,
.gm-style span,
.gm-style label,
.gm-style a {
	font-family: Arial, Helvetica, sans-serif !important;
}

/* 12 Blog */
.post,
.entry-featured {
	margin-bottom: 20px;
}

.entry-featured:empty {
	display: none;
}

.req {
	position: absolute;
	color: #858585;
}

.entry-meta span {
	position: relative;
	padding: 0 20px;
	display: inline-block;
}

.entry-meta span:before {
	font: 15px 'Material Icons';
	color: #b9aca4;
	position: absolute;
	top: 0;
	left: 0;
}

.entry-meta .date:before {
	content: '\e8df';
}

.entry-meta .author:before {
	content: '\e7fd';
}

.entry-meta .categories:before {
	content: '\e2c7';
}

.entry-meta .tags:before {
	content: '\e89a';
}

.entry-meta .comments:before {
	content: '\e0bf';
}

.entry-meta span:empty {
	display: none;
}

.entry-meta span a {
	color: #454545;
	font-weight: 400;
}

div.comments {
	display: inline-block;
	width: 100%;
}

div.comments h2 {
	padding: 25px 0 40px;
}

.comment {
	position: relative;
	background: #fff;
	padding: 15px;
	margin: 0 0 20px;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.comment .third {
	float: left;
	width: 20%;
}

.comment .third figure {
	float: left;
	margin-right: 15px;
}

.comment .third address {
	color: #858585;
	padding-top: 5px;
}

.comment .third address span {
	font-weight: 600;
	font-style: normal;
}

.comment .comment-content {
	float: left;
	width: 80%;
	min-height: 70px;
	height: 100%;
	border-left: 1px solid #ccc;
	padding-left: 15px;
}

.comment .reply {
	position: absolute;
	top: 60px;
	left: 100px;
}

.comments .children {
	margin: 0;
	padding-left: 100px;
}

.depth-1 {
	float: right;
	width: 90%;
}

.depth-1 .third {
	width: 22%;
}

.depth-1 .comment-content {
	width: 78%;
}

.depth-2 {
	float: right;
	width: 80%;
}

.depth-2 .third {
	width: 25%;
}

.depth-2 .comment-content {
	width: 75%;
}

.entry-header h2 a {
	color: #555;
}

;
}

/* 13 Error page */
section.error {
	padding-top: 50px;
	display: inline-block;
	width: 100%;
}

section.error .one-third {
	text-align: center;
}

.error-type {
	display: inline-block;
	width: 270px;
	height: 270px;
	max-width: 100%;
	text-align: center;
	color: #40BFB8;
	-webkit-border-radius: 135px;
	-moz-border-radius: 135px;
	border-radius: 135px;
	border: 1px solid #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	background: rgb(255, 255, 255);
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(242, 242, 242, 1)));
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0);
}

.error-type h1 {
	font-size: 96px;
	color: #40BFB8;
	padding: 38px 0 0;
	margin: 0 0 -13px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
}

.error-type p {
	font-size: 19px;
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
}

.error-content {
	display: inline-block;
	padding: 60px 0 0 70px;
	color: #3F3F3F;
}

.error-content h3 {
	font-size: 15px;
}

.error-content ul li:before {
	color: #666;
}

.error-content a {
	color: #3F3F3F;
}

/* 14 Footer */
.footer {
    position: relative;
	float: left;
	width: 100%;
	background-color: #0f1e2c;
	color: #fff;
	z-index: 0;
	padding: 25px 0 0 0;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: url('../images/footer-bg-1.png') no-repeat bottom left;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

/* RIGHT image with opacity 0.6 */
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1250px;
  height: 360px;
  background: url('../images/footer-bg-2.png') no-repeat bottom right;
  background-size: contain;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.footer .logo-sec img{
    max-width: 225px;
    margin-bottom: 5px;
}
.footer h6 {
	font-size: 17px;
	color: #fff;
	padding: 0 0 10px 0;
	font-weight: 600;
	position: relative;
	display: inline-block;
}
.footer h6.half-underline{
    margin: 0 0 10px 0;
}
.footer h6.half-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%; /* Half width */
  height: 1px;
  background-color: #f16a2e; /* Customize color */
}
.footer a.locate{
    margin: 8px 0 0 0;
    display: block;
}
.footer a.locate:hover{
    text-decoration: none;
}
.footer a.locate span{
    color: #f16a2e;
    border-bottom: 1px solid #f16a2e;
}
.footer a.locate i{
    font-size: 16px;
    vertical-align: middle;
    color: #fff;
}
.footer a.call{
    color: #f16a2e;
    margin: 8px 0 0 0;
    display: inline-block;
}
.footer a.email{
    color: #f16a2e;
}
.footer p {
	padding: 0 0 2px;
}
.footer .separator{
    border-top: 1px solid #eeeeee36;
    margin: 0 0 20px 0;
}
.footer p em {
	font-style: normal;
	font-weight: 700;
	color: #3facaa;
}

.footer p a {
	color: #fff;
	font-weight: 400;
}

.footer ul li {
	padding: 0 0 2px 0;
}

.footer ul li:before {
	display: none;
}

.footer ul li a {
	color: #fff;
	font-weight: 400;
}

.footer form {
	position: relative;
	margin: 8px 0 20px 0;
}

.footer form input[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	height: 36px;
	line-height: 36px;
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
}

.footer .full-width {
	margin: 2px 0 20px;
	padding-top: 0;
}
.newsletter-form input[type="email"]{
    border-radius: 5px 5px 5px 5px;
    border: 0;
}
.copy {
	color: #d5d5d5;
	display: block;
	float: left;
	padding: 0;
}

.footer .full-width nav {
	float: right;
}

.footer .full-width nav li {
	float: left;
	border-left: 1px solid #e5e5e5;
	padding: 0 0 0 12px;
	margin: 0 0 0 12px;
}

.footer .full-width nav li a {
	color: #d5d5d5;
	font-weight: 400;
}

.footer .full-width nav li a:hover,
.footer .full-width nav li a:focus {
	color: #3f3f3f;
}

.footer .full-width nav li:first-child {
	border: none;
}


/* 15 Lightbox */
.lightbox {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background: rgba(255, 255, 255, .5);
	top: 0;
	left: 0;
}

.lb-wrap {
	text-align: left;
	color: rgba(0, 0, 0, .8);
	position: absolute;
	top: 10%;
	left: 35%;
	width: 30%;
	padding: 15px 20px;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, .4);
	box-shadow: 0 0 3px rgba(0, 0, 0, .4);
}

.lb-wrap .close {
	float: right;
	color: #454545;
	font-size: 17px;
}

.lb-wrap h3 {
	color: #454545;
	padding: 0 10px 10px;
}

.lb-wrap a {
	color: #fff;
}

.lb-wrap p {
	display: inline-block;
	width: 100%;
	font-weight: 600;
	margin: 0 0 20px;
	padding: 12px 0 13px;
	border-top: 1px solid rgba(255, 255, 255, .2);
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .2), 0 -1px 0 rgba(0, 0, 0, .15);
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .2), 0 -1px 0 rgba(0, 0, 0, .15);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .2), 0 -1px 0 rgba(0, 0, 0, .15);
}

.lb-wrap input,
.lb-wrap div.checker span {
	border-color: #fff;
}

.lb-wrap .f-item {
	margin: 0 0 15px;
}

.lb-wrap .gradient-button {
	width: 100%;
	background: rgba(0, 0, 0, .4) !important;
	height: 38px;
	line-height: 36px;
}

.lb-wrap .gradient-button:hover,
.lb-wrap .gradient-button:focus {
	background: rgba(0, 0, 0, .6) !important;
}

/* 16 Form elements */
label {
	cursor: pointer;
	font-weight: 600;
	position: relative;
	padding: 0 0 5px 1px;
	display: inline-block;
}

.checkbox label,
.radio label {
	text-transform: none;
	font-size: 13px;
	width: auto;
	padding: 3px 0 0;
	max-width: 85%;
	font-weight: 400;
}

label span {
	text-transform: none;
}

input,
textarea {
	outline: none;
}

button,
input,
select,
textarea {
	margin: 0;
	vertical-align: baseline;
	*vertical-align: middle;
	outline: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	text-transform: uppercase;
	-webkit-appearance: button;
	text-align: center;
}

input[type="checkbox"],
input[type="radio"] {
	/*box-sizing: border-box;
	width: 100%;
	height: 100%;*/
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

input[type="search"],
input[type="email"],
input[type="text"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea {
	display: block;
	padding: 8px 10px;
	width: 100%;
	border: 1px solid #ccc;
	color: #454545;
	border-radius: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

textarea {
	resize: none;
	height: 125px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
textarea:focus,
div.selector.active,
div.selector.focus,
input.uniform-input.active,
select.uniform-multiselect.active,
textarea.uniform.active,
input.uniform-input.focus,
select.uniform-multiselect.focus,
textarea.uniform.focus {
	border-color: #454545;
}

input[type="file"] {
	border: 1px solid #ccc;
	color: #454545;
	padding: 6px;
	margin: 5px 0;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.datepicker-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
}

.ui-datepicker-trigger {
	position: absolute;
	top: 10px;
	right: 10px;
}

.error_message {
	color: #DE0603;
	font-size: 13px;
	padding: 0 0 10px;
}

.loader {
	float: right;
}
.error-msg{
    color: #d0021b;
    font-size: 700;
}
/*popup*/
.common-popup .modal-dialog.modal-desktop {
    max-width: 450px;
    margin: auto;
}
.common-popup .modal-bottom {
    position: relative;
    transform: none !important;
}
  .common-popup .animate-popup {
    animation: slideUp 0.8s ease forwards;
  }
  @keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
.common-popup .header-hero {
    background: #2989f7 url(../images/popup-background.png) no-repeat;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-size: contain;
    background-position: 0px 70px;
}
.common-popup .overlay {
  /*background: linear-gradient(135deg, rgb(33 122 187 / 85%), rgb(13 108 190 / 85%));
  position: absolute;
  inset: 0;
  z-index: 1;*/
}
.common-popup .form-wrap{
    padding: 30px 50px 30px 50px;
    background: #faf9fd;   
}
.common-popup .header-hero .heading-wrap {
    padding: 4px 0 50px 0;
    position: relative;
    z-index: 2;
    margin: 35px 0 25px 0;
}
.common-popup .header-hero .btn-close{
    background: #444444bd;
    color: #fff;
    border-radius: 100%;
    padding: 4px 8px 4px 8px;
    position: absolute;
    right: 18px;
    top: 6px;
    opacity: 1;
    z-index: 9;
    height: auto;
    width: auto;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
}
.common-popup input[type="text"]{
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 3px 0 3px 7px;
    height: 45px;
}
  /* Title Animation */
  .common-popup .animate-title {
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    padding: 0 0 15px 0
  }
  .common-popup .heading-wrap p{
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 0 10px 20px 10px;
  }
  /* Glowing Button */
  .common-popup .glowing-btn {
    background: linear-gradient(90deg, #f16a2e, #ff8c42, #f16a2e);
    background-size: 300% 300%;
    border-radius: 5px;
    padding: 10px 0 10px 0;
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 0 12px rgba(241, 106, 46, 0.6);
    transition: all 0.3s ease;
    height: auto;
    width: 100%;
    color: #fff;
    font-size: 15px;
    text-transform: none;
  }
  .common-popup .glowing-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(241,106,46,0.9);
  }
  .common-popup .glowing-btn i{
    vertical-align: middle;
    font-size: 21px;
  }
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
/* 17 Print css */

@media print {
	* {
		color: #000 !important;
		text-shadow: none !important;
		background: transparent !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
		font-size: 10pt !important;
		line-height: normal !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}

	select {
		background: none !important;
	}

	.wrap {
		width: 100%;
		max-width: 100%;
	}

	.text-wrap .output p {
		width: 50% !important;
	}

	.text-wrap {
		padding: 0 10px 10px;
	}

	.header,
	.footer,
	.breadcrumbs,
	a.print {
		display: none;
	}
}


/* 18 Plugins */

/* 18.1 Uniform Custom Form Elements */

/* General settings */
div.selector,
div.selector span,
div.checker span,
div.radio span,
div.uploader,
div.uploader span.action,
div.button,
div.button span {
	text-align: left;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

div.selector,
div.checker,
div.button,
div.radio,
div.uploader {
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	vertical-align: middle;
}

div.selector:focus,
div.checker:focus,
div.button:focus,
div.radio:focus,
div.uploader:focus {
	outline: 0;
}

div.selector,
div.selector *,
div.radio,
div.radio *,
div.checker,
div.checker *,
div.uploader,
div.uploader *,
div.button,
div.button * {
	cursor: pointer;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

/* Input & Textarea */
input.uniform-input,
select.uniform-multiselect,
textarea.uniform {
	padding: 8px 10px;
	border: 1px solid #ccc;
}


/* Remove widget webkit and possible mozilla .search styles.
 * Keeping this as :active to remove browser styles */
div.checker input,
input[type="search"],
input[type="search"]:active {
	-moz-appearance: none;
	-webkit-appearance: none;
}

/* Select */
div.selector {
	border: 1px solid #ccc;
	line-height: 35px;
	height: 37px;
	position: relative;
	overflow: hidden;
	width: 100% !important;
	padding-left: 15px;
	background: #fff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

div.selector span {
	position: relative;
	text-overflow: ellipsis;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	height: 37px;
	line-height: 35px;
	background: none;
	cursor: pointer;
	width: 100% !important;
	padding-right: 30px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
}

div.selector span:before {
	font-family: 'Material Icons';
	content: "\e313";
	position: absolute;
	top: 2px;
	right: 10px;
	font-size: 23px;
	color: #B8ACA4;
}

div.selector select {
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	border: none;
	background: none;
	position: absolute;
	height: 37px;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	border-radius: 18px;
}

/* Checkbox */
div.checker {
	position: relative;
	top: 0;
	margin-right: 12px;
	float: left;
}

div.checker,
div.checker span,
div.checker input {
	width: 20px;
	height: 20px;
}

div.checker span {
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	position: relative;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

div.checker span.checked:before {
	font: bold 17px 'Material Icons';
	content: "\e5ca";
	position: absolute;
	top: 1px;
	left: 2px;
	color: #B8ACA4;
}

div.checker input {
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	border: none;
	background: none;
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
}

/* Radio */
div.radio {
	position: relative;
	top: 0;
	margin-right: 15px;
	float: left;
}

div.radio,
div.radio span,
div.radio input {
	width: 24px;
	height: 24px;
}

div.radio span {
	border: 1px solid #ccc;
	background: #fff;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	position: relative;
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: center;
}

div.radio span.checked:before {
	content: "";
	width: 12px;
	height: 12px;
	background: #B8ACA4;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	position: absolute;
	top: 5px;
	left: 5px;
}

div.radio input {
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	border: none;
	background: none;
	display: -moz-inline-box;
	display: inline-block;
	*display: inline;
	zoom: 1;
	text-align: center;
}

/* 18.3 UI Slider */
.ui-slider-horizontal {
	height: 8px;
	border: 1px solid #ccc;
	position: relative;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 6px 8px;
}

.ui-slider-horizontal .ui-slider-handle {
	cursor: pointer;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -9px;
	margin-left: -12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	cursor: grab;
    touch-action: none; /* important for touch */
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
	background: #ff5722;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

span.max {
	float: right;
}

/* 18.4 UI Datepicker */
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.ui-datepicker a {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}

.ui-datepicker {
	width: 22em;
	padding: 0;
	display: none;
	background: #fff;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: 5px 0;
	background: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
}

.ui-icon {
	position: absolute;
	font-size: 0;
	cursor: pointer;
	z-index: 999;
}

.ui-icon:before {
	text-indent: 0;
	position: relative;
	top: 0;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	color: #B9ACA4;
	font-size: 30px;
	display: inline-block;
	width: 1em;
	height: 1em;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
}

.ui-datepicker-multi-2 .ui-icon:before {
	top: 183px;
	font-size: 40px;
	color: #666;
}

.ui-icon-circle-triangle-w:before {
	content: '\e314';
}

.ui-icon-circle-triangle-e:before {
	content: '\e315';
}

.ui-datepicker-prev,
.ui-datepicker-next {
	position: absolute;
	cursor: pointer;
	top: 6px;
}

.ui-datepicker-prev {
	left: 0;
}

.ui-datepicker-next {
	right: 29px;
}

.ui-datepicker .ui-datepicker-title {
	margin: 5px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #B9ACA4;
}

.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}

.ui-datepicker table {
	width: 100%;
	font-size: 12px;
	border-collapse: collapse;
	margin: 0;
}

.ui-datepicker th {
	padding: 0;
	text-align: center;
	background: #b9aca4;
	border-color: #b9aca4;
	color: #fff;
	text-transform: uppercase;
	font-size: 11px;
	width: 14.2857%;
}

.ui-datepicker th span {
	padding: 7px 0;
	display: inline-block;
	width: 100%;
	height: 100%;
}

.ui-datepicker td {
	padding: 0;
	text-align: center;
	width: 14.2857%;
	font-weight: 600;
	vertical-align: middle;
}

.ui-datepicker td span,
.ui-datepicker td a {
	text-align: center;
	width: 100%;
	height: 33px;
	line-height: 33px;
	color: #454545;
	display: inline-table;
	font-weight: 600;
}

.ui-datepicker .ui-datepicker-unselectable {
	background: #e9e6e0;
}

.ui-datepicker .ui-datepicker-today {
	background: #b9aca4;
}

.ui-datepicker .ui-state-hover,
.ui-datepicker .dp-highlight a,
.ui-datepicker .dp-highlight span {
	color: #fff !important;
}

/* Slicknav Mobile Menu Core Style */
.menu-collapser {
	position: relative;
	width: 100%;
	height: 40px;
	color: #FFF;
	font-size: 14px;
	line-height: 40px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box
}

.collapse-button {
	position: absolute;
	right: 0;
	top: 50%;
	width: 40px;
	padding: 7px 10px;
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	background-color: #0E0E0E;
	border-radius: 2px;
	cursor: pointer;
	transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box
}

.collapse-button:hover,
.collapse-button:focus {
	color: #FFF;
	background-color: #040404
}

.collapse-button .icon-bar {
	display: block;
	height: 2px;
	width: 18px;
	margin: 2px 0;
	background-color: #F5F5F5;
	border-radius: 1px
}

ul.slimmenu {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none
}

ul.slimmenu:before,
ul.slimmenu:after {
	content: '';
	display: table
}

ul.slimmenu:after {
	clear: both
}

ul.slimmenu.collapsed li {
	display: block;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box
}

ul.slimmenu.collapsed li>ul {
	position: static;
	display: none
}

ul.slimmenu.collapsed li a {
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.075);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box
}

ul.slimmenu.collapsed li .sub-toggle {
	height: 40px
}

ul.slimmenu li {
	position: relative;
	float: left;
	display: inline-block;
}

ul.slimmenu li ul {
	margin: 0;
	list-style-type: none
}

ul.slimmenu li ul li {
	background: #fff;
}

ul.slimmenu li>ul {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 999;
	display: none;
	width: 100%
}

ul.slimmenu li>ul>li ul {
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 999;
	display: none;
	width: 100%
}

ul.slimmenu li a {
	display: block;
}

ul.slimmenu li a:hover {
	text-decoration: none;
}

ul.slimmenu li .sub-toggle {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 999;
	width: 30px;
	height: 100%;
	text-align: center;
	cursor: pointer
}

ul.slimmenu li .sub-toggle:before {
	content: '';
	display: inline-block;
	height: 100%;
	margin-right: -0.25em;
	vertical-align: middle
}

ul.slimmenu li .sub-toggle>i {
	display: inline-block;
	color: #fff;
	font-size: 15px;
	vertical-align: middle
}
ul.slimmenu li.has-submenu > a::after {
  font-family: 'Material Icons';
  content: "\e313"; 
  font-size: 18px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: content 0.3s;
  color: #fff;
}

ul.slimmenu li.has-submenu > a:hover::after {
  content: "\e316"; /* expand_less icon */
}

ul.slimmenu>li {}

ul.slimmenu>li:first-child,
ul.slimmenu>li.has-submenu+li {}

ul.slimmenu {
	margin-left: -10px;
}

ul.slimmenu li a {
	padding: 10px;
    color: #fff;
    font-weight: 500;
    position: relative;
    font-size: 14px;
}
ul.slimmenu .has-submenu > a {
    position: relative;
    padding-right: 25px;
}
ul.slimmenu li:hover a,
ul.slimmenu li.current>a,
ul.slimmenu li:hover a:hover {
	color: #f1612f;;
}

ul.slimmenu li:hover li a {
	color: #333;
}

ul.slimmenu li .sub-toggle {
	display: none;
}

ul.slimmenu li li .sub-toggle {
	display: block;
}

ul.slimmenu li ul li {
	min-width: 180px;
}

ul.slimmenu li>ul {
	min-width: 180px;
}

ul.slimmenu.collapsed li .sub-toggle {
	display: block;
}

ul.slimmenu.collapsed .has-mega {
	position: relative;
}

ul.slimmenu .has-mega {
	position: static;
}

ul.slimmenu .mega li {
	width: 100%;
	padding: 0;
}

ul.slimmenu .mega .has-submenu {
	padding: 20px;
}

ul.slimmenu .mega ul {
	display: block !important;
	position: static !important;
}

ul.slimmenu .mega .sub-toggle {
	display: none;
}

ul.slimmenu .mega li a {
    padding: 0 0 5px;
    text-transform: none;
    letter-spacing: 0;
    border: none !important;
    font-size: 13px;
    font-weight: 600;
}

ul.slimmenu .mega li p {
	padding: 0 0 10px;
	color: #3F3F3F;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
	font-weight: 700;
}

.main-nav {
	float: left;
	display: block;
	width: 100%;
	height: 40px;
	background: #132738;
	margin: 18px 0 0 0;
}

/*********category**********/
.sidebar-filter{
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px; 
}
.sidebar-filter .sidebar-item{
    border-bottom: 1px solid #ddd;
    margin: 0 0 25px 0;
    padding: 0 0 15px 0;
}
.sidebar-filter .sidebar-item:last-child{
    border-bottom: none;
}
.sidebar-filter .sidebar-item h4{
    text-align: left;
    padding: 0 0 15px 0;
}
.sidebar-item .duration-label-min{
    float: left;
}
.sidebar-item .duration-label-max{
    float: right;
}
.sidebar-filter .sidebar-item .items-list{
    
}
.sidebar-filter .sidebar-item .items-list li{
    text-align: left;
    padding: 0 0 5px 0;
}
.sidebar-filter .sidebar-item .items-list li a{
        color: #595959;
}
.sidebar-filter .reset-filters-btn{
    display: none;
    margin: 5px 0 20px 0;
    border: 0;
}
#duration-range {
    margin: 20px 0;
    position: relative;
    width: 91%;
    margin: 20px auto 20px auto;
}

.ui-slider-horizontal {
    height: 3px;
    background: #eee;
    border-radius: 4px;
}

.ui-slider-range {
    background: #ff5722; /* Active range color */
}

.ui-slider-handle {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #ff5722;
    border-radius: 50%;
    cursor: pointer;
    top: -6px;
}
#price-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Arial, sans-serif;
}

#price-filter label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
    padding: 6px 2px;
    transition: background 0.2s ease;
}

#price-filter label:hover {
    background: #f5f5f5;
}

#price-filter input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #ff5722; /* Modern browsers: custom checkbox color */
}
#package-type-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Arial, sans-serif;
}

#package-type-filter label {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px 2px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

#package-type-filter label:hover {
    background: #fef4ed;
    border-color: #e7d5c8;
}

#package-type-filter input[type="checkbox"] {
    accent-color: #ff5722; /* Checkbox color */
    margin-right: 8px;
}

#package-type-filter i {
    color: #454545; /* Icon color */
    margin-left: 8px;
}
#tour-by-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Arial, sans-serif;
}

#tour-by-filter label {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px 2px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

#tour-by-filter label:hover {
    background: #fef4ed;
    border-color: #e7d5c8;
}

#tour-by-filter input[type="checkbox"] {
    accent-color: #ff5722; /* Checkbox color */
    margin-right: 8px;
}


.listings-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px 0;
}
.results-info h1{
    padding: 0;
    text-align: left;
}
.results-info p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.sorting-view {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cars-sort select {
    padding: 5px 10px;
    font-size: 14px;
}

.view-options {
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #555;
    text-decoration: none;
}

.view-btn.active,
.view-btn:hover {
    background: #ff5722;
    color: #fff;
    border-color: #ff5722;
}
.listings-wrap .destination-item{
    position: relative;
    height: auto;
    border-radius: 10px;
    border: 1px solid #D8D8D8;
    background: #fff;
    padding: 16px 16px 0;
    width: 100%;
}
.listings-wrap .destination-item .destination-image{
    width: 37%;
    display: inline-block;
    vertical-align: top;
}
.listings-wrap .destination-item .destination-image img{
    border-radius: 10px;
}
.listings-wrap .destination-item .destination-title{
    width: 62%;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding: 0 5px 0 10px;
}
.listings-wrap .destination-item .destination-title h3{
    padding: 0 0 10px 0;
}
.listings-wrap .destination-item .destination-title h3 a{
    color: #212221;
    font-size: 14px;
    font-weight: 700;
}
.listings-wrap .destination-item .destination-title .dn-sp{
    display: flex;
    align-items: center;
}
.listings-wrap .destination-item .destination-title .dn-sp .day-nig{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    margin-top: 5px;
    border: 1px solid #0f1e2c;
    border-radius: 4px;
    padding: 2px 4px;
    color: #0f1e2c;
    font-size: 12px;
    font-weight: 700;
}
.listings-wrap .destination-item .destination-title .dn-sp .sepr{
    margin: 5px 0 0 6px;
}
.listings-wrap .destination-item .destination-title .dn-sp .package-type{
    color: #17659d;
    font-size: 12px;
    margin: 8px 0 0 4px;
    background: #fff;
    font-weight: 600;
}
.listings-wrap .destination-item .destination-description{
    width: 100%;
}
.listings-wrap .destination-item .destination-description .highlights{
    margin: 10px 0 10px 0;
    padding: 5px 0 5px 0;
    border-top: 1px solid #D8D8D8;
    text-align: left;
}
.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
}

.rating-stars .full {
  color: #f16a2e;
}

.rating-stars .half {
  color: #f16a2e;
}

.rating-stars .empty {
  color: #ccc;
}
.deal-rating{
    display: flex;
    gap: 5px;
}
.deal-rating .reviews-count{
    font-size: 12px;
    color: #595959;
}
.tour-inclusions-icons {
    display: flex;
    gap: 12px;
    font-size: 14px;
    margin: 14px 0 0 0;
}

.tour-inclusions-icons i {
    color: #444; /* Icon color */
    cursor: pointer;
    transition: color 0.2s ease;
}

.tour-inclusions-icons i:hover {
    color: #e64a19; /* Darker on hover */
}


.deal-loc-list{
    list-style-type: none;
    margin: 12px 0 0 0;
    text-align: left;
}
.deal-loc-list li{
    display: inline-block;
    margin: 0;
    padding: 0;
}
.deal-loc-list li .line-text{
    color: #0f1e2c;
    font-size: 12px;
    font-weight: 600;
}
.deal-loc-list li .line-arrow{
    color: #999;
    font-size: 18px;
    padding: 0 0px;
    line-height: 16px;
    margin-top: -2px;
}
.destination-ft {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border: 1px solid #e7d5c8;
    border-radius: 5px;
    padding: 10px;
    background-color: #fef4ed;
    margin: 0 0 15px 0;
}
.destination-ft .tour-details{
    min-width: 40%;
}
.destination-ft .tour-details .btn-enquire{
    display: block;
    color: #f16a2e;
    text-align: left;
    font-size: 14px;
}
.destination-ft .tour-details .btn-enquire span{
    text-decoration: underline;
    
}
.destination-ft .tour-details .btn-details{
    display: block;
    color: #132738;
    text-align: center;
    border: 1px solid #132738;
    padding: 6px 10px 6px 10px;
    width: 100%;
    margin: 10px 0 0 0;
}
.cat-hero-banner {
    background-size: cover;
    background-position: center;
    padding: 10px 0;
    margin: 0 0 30px 0;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.cat-hero-banner::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: url('../images/cat-background.jpg') center/cover no-repeat;
    z-index: 1; /* Background layer */
}

.cat-hero-banner::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0,0,0,0.2); /* Dark overlay */
    z-index: 2; /* Overlay layer */
}

.cat-hero-banner .content {
    position: relative;
    z-index: 3; /* Content above overlay */
}
.cat-hero-banner .container {
    position: relative;
}
.cat-hero-banner .hero-text{
    text-align: left;
}
.hero-text h2 {
    font-size: 20px;
    font-weight: 600;
}

.hero-text ul {
    list-style: none;
    padding: 0;
}

.hero-text ul li {
    margin-bottom: 8px;
    font-size: 13px;
    padding: 0;
}

.hero-text i {
    color: #f16a2e;
    margin-right: 8px;
}

.booking-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 85%;
}
.booking-form input{
    margin: 0 0 12px 0;
    font-size: 13px;
}
.booking-form button{
    background: #f16a2e;
    color: #fff;
    width: 100%;
    padding: 5px 0 5px 0;
    height: auto;
    text-transform: unset;
    font-size: 14px;
}
.booking-form button i{
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}
.booking-form h4 {
    color: #212221;
    font-size: 14px;
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-align: left;
}

.booking-form .form-control {
    border-radius: 5px;
}
/*******package details*******/
.package-gallery .inline-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.package-gallery .inline-gallery a {
    display: block;
    border: 2px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.package-gallery .inline-gallery img {
    display: block;
    max-width: 150px;
    height: 100%;
    transition: transform 0.3s ease;
}

.package-gallery .inline-gallery img:hover {
    transform: scale(1.05);
}
.package-gallery h5{
    color: #979797;
    margin: 28px 0 10px 0;
    padding: 0;
}
.package-gallery h5:first-child{
    margin: 10px 0 10px 0;
}

/*****checkout********/
body.page-template-checkout{
    background: #f3f3f3;
}
.required-aste {
    color: red;
    font-weight: bold;
}
.checkout h2{
    font-weight: 700;
    font-size: 14px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #333333;
    border-bottom: 1px solid #E7E7E7;
    margin: 0 0 17px 0 
}
.checkout .customer-info{
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    border: 1px solid #E4E4E4;
    margin: 0 0 35px 0;
    background: #fff;
}
.checkout .customer-info textarea{
    height: 50px;
}
.checkout .customer-info select{
    border-radius: 0;
    padding: 5px;
}
 .checkout .package-info{
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    border: 1px solid #E4E4E4;
    margin: 0 0 0 0;
    background: #fff;
}
.checkout .coupons-wrap{
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    border: 1px solid #E4E4E4;
    margin: 0 0 35px 0;
    background: #fff;
}
.checkout .package-info .destination-image img{
    border-radius: 10px;
}
.checkout .package-info h3{
    padding: 0;
    margin: 0;
    font-size: 15px;
}
.checkout .package-info .package-items{
    margin: 7px 0 0 0;
}
.checkout .package-info .package-items li{
    padding: 2px 0 2px 0;
}
.checkout .package-info .package-items .lab{
    color: #595959;
    font-size: 13px;
    display: inline-block;
    min-width: 70px;
}
.checkout .package-info .package-items .val{
    color: #212221; 
    font-weight: 700;
    font-size: 13px;
}
.checkout .package-info .package-items .extra{
    display: inline-block;
    font-size: 12px;
}
.checkout .package-info .package-items .update-val{
    color: #0A66C2;
    font-size: 12px;
    cursor: pointer;
    margin: 0 0 0 6px;
    font-weight: 600;
}
.checkout .coupons-wrap .box-promo{
    position: relative;
}
.checkout .coupons-wrap .box-promo button{
    position: absolute;
    right: 0;
    top: 0;
    background: #f16a2e;
    height: 41px;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    color: #fff;
}
.checkout .coupons-wrap #coupons-app-list{
    margin: 20px 0 5px 0;
}
.checkout .coupons-wrap .coupon-item {
    background: linear-gradient(135deg, #ffe3d0, #fef4ed);
    padding: 10px 15px;
    border: 1px solid #f9c0a7;
    border-radius: 10px;
}
.checkout .coupons-wrap .coupon-item.active{
    border: 2px solid #f9c0a7;
}
.checkout .coupons-wrap .coupon-item .coupon-remove{
    position: absolute;
    bottom: 0;
    right: 0;
}
.checkout .coupons-wrap .coupon-item .radio, .checkout .coupons-wrap .coupon-item .coupon-list-radio{
    visibility: hidden;
    height: 0;
    width: 0;
    display: none;
}
.checkout .coupons-wrap .coupon-item label{
    width: 100%;
}
.checkout .coupons-wrap .coupon-item .coupon-title{
    margin: 0 0 0 3px;
    font-size: 13px;
    display: inline-block;
    vertical-align: bottom;
}
.checkout .coupons-wrap .coupon-item .coupon-desc{
    display: block;
    font-size: 12px;
    margin: 5px 0 0 0;
    font-weight: 400;
}
.checkout .coupons-wrap .coupon-item .coupon-price{
    position: absolute;
    top: 0;
    right: 0;
    color: #f36a2e;
}
.checkout .coupons-wrap .coupon-item .coupon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #f16a2e;
    color: #fff;
    font-size: 9px;
    clip-path: polygon(50% 0%, 64% 5%, 75% 15%, 85% 25%, 95% 36%, 100% 50%, 95% 64%, 85% 75%, 75% 85%, 64% 95%, 50% 100%, 36% 95%, 25% 85%, 15% 75%, 5% 64%, 0% 50%, 5% 36%, 15% 25%, 25% 15%, 36% 5%);
}
.checkout .payment-gateways-wrap .card-header{
    background: #132738;
}
.checkout .payment-gateways-wrap h5{
    color: #fff;
    margin: 0;
    padding: 10px 0 10px 0;
}
.checkout .payment-gateways-wrap .total-items{
    margin: 7px 0 0 0;
}
.checkout .payment-gateways-wrap .total-items li{
    padding: 2px 0 2px 0;
    clear: both;
}
.checkout .payment-gateways-wrap .total-items .lab{
    color: #595959;
    font-size: 13px;
    display: inline-block;
    min-width: 120px;
}
.checkout .payment-gateways-wrap .total-items .val{
    color: #212221; 
    font-weight: 700;
    font-size: 13px;
    float: right;
}
.checkout .payment-gateways-wrap .total-items .price .val{
    font-size: 20px;
}
.checkout .payment-gateways-wrap .total-items .extra{
    display: block;
    font-size: 10px;
    text-align: right;
    color: #595959;
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.checkout .payment-gateways-wrap ul.gateway-items{
    padding: 12px 0 15px;
    border-top: 1px dashed #9D9D9D;
    border-left: 0;
    border-right: 0;
    margin-top: 14px;
}
.checkout .payment-gateways-wrap ul.gateway-items li{
    padding: 0;
    margin: 0 0 10px 0;
    display: inline-flex;
}
.checkout .payment-gateways-wrap ul.gateway-items li .radio{
    
}
.checkout .payment-gateways-wrap ul.gateway-items li label{
    
}
.checkout .payment-gateways-wrap ul.gateway-items li label .title{
    display: block;
    "font-size: 15px;
}
.checkout .payment-gateways-wrap ul.gateway-items li label .desc{
    font-size: 13px;
    color: #333;
    font-weight: 400;
}
.checkout .payment-gateways-wrap .btn-pay-now{
    background: #f16a2e;
    color: #fff;
    width: 100%;
    border: 0;
    font-size: 15px;
    border-radius: 0;
    padding: 8px 0 8px 0;
    height: auto;
}
.travellers-row .edit-mode .qty-group{
    display: inline-block;
}
.travellers-row .edit-mode .qty-btn {
    padding: 0px 8px 1px 8px;
    border: 1px solid #ccc;
    background: #132738;
    cursor: pointer;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
    height: auto;
    margin: 0;
}
.travellers-row .edit-mode .qty-btn:hover {
    background: #f16a2e;
}
.travellers-row .edit-mode input{
    width: 50px;
    text-align: center;
    display: inline-block;
    height: 35px; 
}
.date-row .edit-mode input {
    width: 160px;
    text-align: center;
    display: inline-block;
    height: 35px;
}
.edit-mode .save-change{
    border: 0;
    border-radius: 0;
    height: auto;
    padding: 2px 15px 1px 15px;
    margin: 0 0 0 10px;
    display: inline-block;
    width: auto;
}
 /* Login/Register Page Styling */
.auth-container {
    background: #fff url(../images/login-background.png) no-repeat center bottom;
    background-size: contain;
    padding: 40px 20px;
    border-radius: 10px;
    background-position-y: 150px;
}

.auth-container .nav-tabs {
    border-bottom: none;
    margin: 0 0 2px 0;
}

.auth-container .nav-tabs .nav-link {
    border: none;
    border-radius: 6px 6px 0 0;
    padding: 7px 20px;
    min-width: 120px;
    text-align: center;
    color: #555;
    font-weight: 600;
    background: #eee;
    transition: all 0.3s ease;
    height: auto;
}
.auth-container .nav-tabs .nav-item{
    padding: 0 8px 0 3px
}
.auth-container .nav-tabs .nav-link i {
    margin-right: 8px;
}

.auth-container .nav-tabs .nav-link.active {
    background: #132738;
    color: #fff;
}

.auth-container .card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.auth-container .card-body {
    padding: 25px;
}

.auth-container label {
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
}

.auth-container input.form-control {
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-container input.form-control:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 0.2rem rgba(255,102,0,0.25);
}

.auth-container button.btn {
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s;
}

.auth-container button.btn:active {
    transform: scale(0.98);
}

.auth-container .btn-primary {
    background: #ff6600;
    border: none;
}

.auth-container .btn-primary:hover {
    background: #e65500;
}

.auth-container .btn-success {
    background: #28a745;
    border: none;
}

.auth-container .btn-success:hover {
    background: #218838;
}

.auth-container .form-check-label {
    font-size: 14px;
    color: #666;
}

.auth-container a {
    font-size: 14px;
    text-decoration: none;
    color: #ff6600;
}

.auth-container a:hover {
    text-decoration: underline;
}
.auth-container .login-wrap .btn-login{
    width: 100%;
    border: 0;
    padding: 4px 0 4px 0;
    height: auto;
    border-radius: 25px;
    font-size: 13px;
    margin: 10px 0 5px 0;
}
.auth-container .register-wrap .btn-register{
    width: 100%;
    border: 0;
    padding: 4px 0 4px 0;
    height: auto;
    border-radius: 25px;
    font-size: 13px;
    margin: 10px 0 5px 0;
}
/* Error message styling */
label.error {
    color: #d9534f; /* Bootstrap danger red */
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
    text-align: left;
}

/* Highlight invalid inputs */
input.error, select.error, textarea.error {
    border-color: #d9534f !important;
    background-color: #fff5f5;
    box-shadow: none;
}

/* Focused invalid input */
input.error:focus, select.error:focus, textarea.error:focus {
    border-color: #b52b27 !important;
    background-color: #fff5f5;
    outline: none;
}

.mobile-fix-bar-wrap{
    display: none;
}
.sidebar-filter {
  display: block;
}
.mobile-sort-btn,
.mobile-sort-overlay,
.mobile-sort-sheet,
.mobile-fix-single-wrap,
.mobile-filter-bar-wrap,
.header-mob-menu,
ul.slimmenu li.slimmenu-close,
ul.slimmenu li.slimmenu-contact,
.footer-toggle i{
  display: none;
}

.footer-links {
    display: block;
}
.cat-form-popup-trigger {
    display: none;
    background: #f16a2e;
    color: #fff;
    padding: 2px 20px 2px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    height: auto;
    margin: 0 auto;
    text-transform: none;
    font-weight: 600;
}
.cat-form-popup-trigger i{
    vertical-align: middle;
    font-size: 18px;
}
.payment-icons{
    float: right;
    margin-top: -10px;
}
.payment-icons img{
    max-width: 220px;
}
.single-product .product .entry-summary .price{
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #f16a2e;
}
.woocommerce-product-details__short-description table td{
	padding: 5px 0 0 5px;
    text-align: left;
}
.woocommerce-product-details__short-description table td .a-text-bold{
	font-weight: 600;
}
.woocommerce div.product .woocommerce-tabs .panel{
    text-align: left;
}
.woocommerce div.product .woocommerce-tabs .panel ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 10px;
    height: 10px;
    background: url(../images/list-highlight-icon.svg) no-repeat center center;
    background-size: contain;
}
.btn-prcd-chk a{
	background: #f16a2e;
    color: #fff;
}
/* Mobile adjustments */
@media screen and (max-width: 1040px) {
	.main-nav .wrap {
		max-width: 100%;
	}

	ul.slimmenu {
		margin-left: 0;
	}

	.menu-collapser {
		padding: 0 2.7%;
	}

	.collapse-button {
		right: 64%;
	}

	ul.slimmenu li a {
		padding: 10px 10px 10px 2.7%;
	}
	/*custom*/
    ul.slimmenu {
        position: fixed;
        top: 0;
        left: -250px; /* Start hidden off left */
        width: 250px;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 5px rgba(0,0,0,0.2);
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 10001;
        padding-top: 0;
    }
    ul.slimmenu.open {
        left: 0; /* Slide into view */
    }
    ul.slimmenu li {
        display: block;
    }
    ul.slimmenu li a {
        color: #333;
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
    }

    /* Toggle button floating on page */
    .header-mob-menu{
        display: inline-block;
        color: #fff;
        width: auto;
        margin: 9px 0 0 20px;
    }
    .header-mob-menu .collapse-button{
        position: relative;
        margin: 0 4px 0 0;
        left: 0;
        top: 9px;
        bottom: 0;
        display: inline-block;
        vertical-align: top;
    }
    .menu-toggle {
        position: fixed;
        left: 10px;
        top: 10px;
        z-index: 10000;
        background: #333;
        color: #fff;
        padding: 10px;
        cursor: pointer;
        border-radius: 4px;
    }
    /* Mask Overlay */
    #menu-mask {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 10000;
    }
    #menu-mask.active {
        display: block;
    }
    ul.slimmenu li.slimmenu-close {
        text-align: right;
        padding: 10px;
        background: #132738;
        display: block;
    }
    
    ul.slimmenu li.slimmenu-close button {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
    }
    ul.slimmenu li.slimmenu-contact{
        display: block;
        margin: 30px 0 0 0;
    }
    ul.slimmenu li.slimmenu-contact a{
        border-bottom: 0;
        margin: 0;
        padding: 0;
        color: #212221;
        font-size: 14px;
        font-weight: 600;
    }
    ul.slimmenu li.slimmenu-contact .info-wrap{
        display: flex;
        align-items: flex-start;
        gap: 7px;
        margin: 0 0 15px 14px;
    }
    ul.slimmenu li.slimmenu-contact .info-wrap .icon{
        color: #595959;
        font-size: 13px;
        margin-top: 1px;
    }
    ul.slimmenu li.slimmenu-contact .info-wrap .icon .fa-whatsapp{
        font-size: 15px;
    }
    ul.slimmenu li.slimmenu-contact .info-wrap .lab-desc{
        display: flex;
        flex-direction: column;
    }
    ul.slimmenu li.slimmenu-contact .info-wrap .lab-desc .label{
        color: #595959;
        font-size: 12px;
    }
    ul.slimmenu li.slimmenu-contact .info-wrap .lab-desc .email a{
        color: #0A66C2;
        text-decoration: underline;
    }
    /*footer*/
    .footer h6.footer-toggle {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer h6.half-underline.footer-toggle::after{
        width: 20%;
    }
    .footer-toggle i {
        transition: transform 0.3s ease;
        display: block;
    }
    .footer-links {
        display: none;
    }
    .footer-toggle.active i {
        transform: rotate(180deg);
    }
}

/* 19 - Responsiveness */

@media screen and (max-width: 1070px) {
	.header {
		height: auto;
	}

	.logo {
		width: 100%;
	}

	.header .search {
		float: left;
		width: 40%;
		margin: 0;
		padding: 0 0 15px;
	}

	.header .contact {
		width: 50%;
		margin: 0;
	}

	.deals .one-fourth,
	.deals .one-third,
	.deals .one-fifth,
	.deals .one-sixth,
	.destinations .one-fourth,
	.destinations .one-third,
	.destinations .one-fifth,
	.destinations .one-sixth,
	.offers .one-fourth,
	.offers .one-third,
	.offers .one-fifth,
	.offers .one-sixth,
	.boxes .one-fourth {
		width: 50%;
	}

	.slider {
		height: auto;
		float: left;
		width: 100%;
	}

	.main-search .wrap>.form {
		position: static;
	}

	.main-search {
		padding-bottom: 20px;
	}

	.main-search .column,
	.main-search .three-fourth {
		width: 100% !important;
		padding: 0 15px;
	}

	.main-search h5 {
		padding: 0 0 15px;
	}

	.main-search .form .column>.row {
		min-height: auto;
		border-left: none;
	}

	.main-search .form h5 {
		border-top: 1px solid #ccc;
		margin: 15px 0 0;
		padding: 15px 0;
		float: left;
		width: 100%;
	}

	.main-search .f-item.one-half,
	.main-search .f-item.one-third {
		padding-right: 10px;
	}

	.main-search .radios .f-item {
		width: 33% !important;
	}

	.main-search .f-item.one-half {
		width: 50% !important;
	}

	.main-search .f-item.one-third {
		width: 33.33% !important;
	}

	.main-search .gradient-button {
		width: auto;
		bottom: 3px;
		min-width: 17%;
	}

	.lb-wrap {
		width: 46%;
		left: 27%;
	}

	section .offers figure,
	section .deals figure,
	section .destinations figure {
		height: auto !important;
	}

	section .deals .full-width {
		height: auto !important;
	}

	section .deals .full-width figure,
	section .deals .full-width .details {
		height: auto !important;
		width: 100% !important;
		max-height: none;
	}

	section .deals .full-width .details {
		padding-left: 25px;
	}

	.inner-nav {
		width: 26.4%;
	}

	.tab-content {
		width: 70.4%;
	}

	.get_inspired li {
		width: 25%;
		height: 140px;
	}

	.sort li {
		padding: 0 40px 0 0;
	}

	.comment .third {
		width: 25%;
	}

	.comment .comment-content {
		width: 75%;
	}

	.depth-1 .third {
		width: 27%;
	}

	.depth-1 .comment-content {
		width: 73%;
	}

	.depth-2 .third {
		width: 30%;
	}

	.depth-2 .comment-content {
		width: 70%;
	}
}

@media screen and (min-width: 861px) and (max-width: 1200px) {

	.small-list h3,
	.small-list p,
	.small-list .stars,
	.small-list .rating,
	.deal-of-the-day h3,
	.deal-of-the-day p,
	.deal-of-the-day .stars,
	.deal-of-the-day .rating {
		float: left;
		width: 100%;
	}
}


@media screen and (max-width: 960px) {
	.room-types li figure {
		width: 50%;
		max-height: none;
	}

	.tab-content .room-types .meta {
		width: 50%;
		min-height: 0;
	}

	.room-types .room-information {
		width: 50%;
		height: auto;
		border-left: none;
	}

	.room-information .gradient-button {
		position: static;
	}

	.footer .full-width nav {
		float: left;
		width: 100%;
		padding: 20px 0 0;
	}

	.footer .full-width nav li:first-child {
		margin: 0;
		padding: 0;
	}

	.get_inspired li {
		width: 33.3333%;
		height: 155px;
	}

	.comment {
		width: 100% !important;
	}

	.comment .third {
		width: 30% !important;
	}

	.comment .comment-content {
		width: 70% !important;
	}

	section.error {
		text-align: center;
	}

	.error-content {
		padding: 60px 0 0;
	}

	.error-content h3,
	.error-content ul {
		text-align: left;
	}

	.three-col li {
		width: 50%;
	}

	.top-right-nav {
		float: left;
	}
}

@media screen and (max-width: 860px) {

	.full-width,
	.three-fourth,
	.one-half,
	.one-third,
	.two-third,
	.one-fourth,
	.one-fifth,
	.one-sixth,
	.boxes .one-fourth {
		width: 100% !important;
	}

	.boxes article>div {
		min-height: auto;
	}

	.lb-wrap {
		width: 80%;
		left: 10%;
		max-width: 80%;
	}

	.score,
	.chart {
		width: 100%;
	}

	.main-search .gradient-button {
		left: 38%;
	}

	.get_inspired li {
		height: 170px;
	}

	.sort-by {
		height: auto;
	}

	.sort {
		margin: 0;
		border-left: none;
	}

	.sort,
	.sort li {
		width: 100%;
	}

	.sort li {
		border-right: none;
		margin: 0;
		padding: 10px 0;
		border-top: 1px solid #ccc;
	}

	.view-type {
		position: absolute;
		right: 10px;
	}

	.ascending {
		top: 11px;
	}

	.descending {
		top: 20px;
	}

}


@media screen and (max-width: 600px) {
	.header .search {
		width: 90%;
        margin: 0 auto;
	}

	.header .contact {
		width: 100%;
		float: left;
		margin: 0 0 15px;
	}

	.main-search .radios .f-item {
		width: 50% !important;
	}

	.main-search .f-item.one-half,
	.main-search .f-item.one-third {
		width: 100% !important;
	}

	.main-search .gradient-button {
		left: 33%;
	}

	.lb-wrap {
		width: 90%;
		left: 5%;
		max-width: 90%;
	}

	.chart {
		margin-top: 10px;
	}

	.inner-nav,
	.inner-nav li.active,
	.inner-nav li.active:hover,
	.tab-content {
		width: 100%;
	}

	.inner-nav {
		margin-bottom: 20px;
	}

	.inner-nav li.active a:after,
	.inner-nav li.active a:after {
		display: none;
	}

	.room-types li figure,
	.tab-content .room-types .meta,
	.room-types .room-information {
		width: 100%;
	}

	.tab-content .room-types .meta {
		padding: 20px 0 0;
	}

	.room-types .room-information {
		padding: 13px 0 0;
	}

	.get_inspired li {
		width: 50%;
		height: 190px;
	}

	.comment .third {
		width: 40% !important;
	}

	.comment .comment-content {
		width: 60% !important;
	}

	.copy {
		width: 100%;
		text-align: center;
	}

	.footer .full-width nav {
		text-align: center;
		margin: 20px 0 0;
		border-top: 1px solid #ccc;
	}

	.footer .full-width nav li {
		float: none;
		display: inline-block;
		border: none;
		margin: 0;
		padding: 0 15px 15px;
	}
}


@media screen and (max-width: 500px) {
	.logo img {
		max-width: 50%;
		height: auto;
	}
	.main-search .gradient-button {
		left: 25%;
	}

	.get_inspired li {
		width: 100%;
		height: 300px;
	}

	.comment .third,
	.comment .comment-content {
		width: 100% !important;
	}

	.comment .comment-content {
		border: none;
		padding: 15px 0 0;
	}
	.auth-container {
        padding: 20px 10px;
    }
    .auth-container .card-body {
        padding: 20px;
    }
    .header-top-wrap .account{
        position: absolute;
        top: 12px;
        margin: 0;
        right: 0;
    }
    .header-login {
        position: absolute;
        right: 15px;
        top: 6px;
    }
    .home-explore-world-tabs{
        padding: 0 35px;
    }
    .home-explore-world-tabs .nav-tabs {
      scrollbar-width: none;  /* Firefox */
      -ms-overflow-style: none;  /* IE 10+ */
    }
    .home-explore-world-tabs .nav-tabs::-webkit-scrollbar {
      display: none;  /* Chrome/Safari */
    }
    .home-explore-world-tabs .nav-tabs {
      display: flex;
      justify-content: flex-start;
      flex-wrap: nowrap !important;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      scroll-behavior: smooth; /* optional smooth scroll */
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .home-explore-world-tabs .nav-item {
      flex: 0 0 auto;
      padding: 0 2px 1px 0;
    }
    .home-explore-world-tabs .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 0;
      width: 32px;
      height: 32px;
      font-size: 1.2rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,.2);
      cursor: pointer;
      color: #333;
    }
    
    .home-explore-world-tabs .scroll-btn.left { left: -10px; }
    .home-explore-world-tabs .scroll-btn.right { right: -10px; }
    .offers article .offer-wrap {
        margin: 0 0 20px 0;
        padding: 10px 10px 10px 10px;
    }
    .travel-exp .travel-exp-right h3 {
        font-size: 14px;
    }
    .travel-exp .travel-exp-right p{
        font-size: 13px;
    }
    .travel-exp .travel-exp-right .tour-list{
        display: block;
        margin: 0 0 0 0;
    }
    .travel-exp .travel-exp-right .tour-list li{
        padding: 0 0 12px 0;
    }
    .travel-exp .travel-exp-right .tour-list img {
        width: 29px;
        height: 30px;
        margin-right: 10px;
    }
    .travel-exp .travel-exp-right .tour-text p {
        font-size: 12px;
    }
    .travel-exp .travel-exp-left img.floating-baloon {
        max-width: 125px;
    }
    .trending-wrap .trending-inn h3 {
        bottom: 5px;
        font-size: 11px;
        padding: 6px 10px 6px 10px;
        max-width: 123px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .s-title h2 {
        font-size: 15px;
    }
    .s-title h2::after{
        width: 50%;
    }
    .offers {
        margin: 35px 0 0 0;
    }
    .hero-banner img{
        height: 125px;
    }
    .offers article .offer-wrap .pr-book h4{
        font-size: 13px;
    }
    .offers article .offer-wrap .pr-book .book-btn{
        padding: 2px 10px 4px 10px;
        font-size: 10px;
    }
    .header-top-wrap .account a i{
        font-size: 20px;
    }
    .header-top-wrap .account a span{
        font-size: 13px;
    }
    
    .mobile-fix-bar-wrap{
        background-color: #fff;
        position: fixed;
        bottom: 0;
        display: flex;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        left: 0;
        width: 100%;
        margin: 0;
        z-index: 7;
        box-shadow: 0 -1px 3px #cac4c7;
    }
    .mobile-fix-bar-wrap .cmmn{
        display: flex;
        width: 100%;
        justify-content: space-around;
        flex-direction: row;
        padding: 5px 15px 0 15px;
        margin: 0;
    }
    .mobile-fix-bar-wrap .cmmn li{
        padding: 0 0 0 10px;
    }
    .mobile-fix-bar-wrap .cmmn li a{
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        font-size: 11px;
        font-weight: 500;
        color: #586E86;
    }
    .mobile-fix-bar-wrap .cmmn li .label{
        font-size: 11px;
        color: #586E86;
        border-radius: 10px;
        padding: 1px 4px;
        min-width: 40px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-fix-bar-wrap .cmmn li .label.active{
        background: #f16a2e;
        color: #fff;
    }
    .mobile-fix-bar-wrap .cmmn li .icon{
        width: 18px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 6px;
        background-size: 100% !important;
        background-repeat: no-repeat !important;
    }
    .mobile-fix-bar-wrap .cmmn li .icon.home{
        background: url('../images/icons/sticky-home.png');
    }
    .mobile-fix-bar-wrap .cmmn li .icon.menu{
        background: url('../images/icons/sticky-menu.png');
    }
    .mobile-fix-bar-wrap .cmmn li .icon.offers{
        background: url('../images/icons/sticky-offers.png');
    }
    .mobile-fix-bar-wrap .cmmn li .icon.profile{
        background: url('../images/icons/sticky-profile.png');
    }
    .mobile-fix-bar-wrap .cmmn li .icon.support{
        background: url('../images/icons/sticky-support.png');
        width: 24px;
        height: 22px;
        margin-top: 5px;
        margin-bottom: 1px;
    }

    /* filters */
    .listings-wrap .destination-item .destination-title{
        width: 61%;
    }
    .mobile-filter-bar-wrap{
        display: block;
        position: fixed;
        background: #0e0e0eeb;
        width: 94%;
        border-radius: 50px;
        left: 3%;
        bottom: 2%;
        /*z-index: 999;*/
    }
    .mobile-filter-bar-wrap ul{
        display: flex;
        padding: 15px 0 10px 0;
        justify-content: center;
        color: #fff;
        font-size: 13px;
        text-align: center;
        margin: 0;
    }
    .mobile-filter-bar-wrap ul li{
        margin: 0;
        padding: 0;
    }
    .mobile-filter-bar-wrap ul li button{
        background: transparent;
        border: 0;
        padding: 0;
    }
    .mobile-filter-bar-wrap ul li:first-child button{
        border-right: 1px solid #ffffff8c;
        border-radius: 0;
        padding: 0 30px 0 0;
        margin: 0 25px 0 0;
    }
    .mobile-filter-bar-wrap ul li .label{
        font-size: 11px;
        color: #586E86;
        border-radius: 10px;
        padding: 1px 4px;
        min-width: 40px;
        text-align: center;
        display: inline-block;
        color: #fff;
        vertical-align: text-bottom;
    }
    .mobile-filter-bar-wrap ul li .icon{
        width: 18px;
        height: 22px;
        display: inline-block;
        background-size: 100% !important;
        background-repeat: no-repeat !important;
    }
    .mobile-filter-bar-wrap ul li .icon.filter{
        background: url('../images/icons/sticky-filter.png');
    }
    .mobile-filter-bar-wrap ul li .icon.sorting{
        background: url('../images/icons/sticky-sorting.png');
    }
    .sidebar-filter {
        position: fixed;
        left: 0;
        bottom: -100%;
        width: 100%;
        max-height: 80%;
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        transition: bottom 0.3s ease;
        z-index: 9999;
        padding: 15px;
      }

      .sidebar-filter.active {
        bottom: 0;
      }
      .filter-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 9998;
      }

      .filter-overlay.active {
        opacity: 1;
        pointer-events: auto;
      }
      .packages-sort, .listings-head .view-options {
        display: none;
      }
    
      .mobile-sort-btn {
        display: inline-block;
        padding: 10px 15px;
        background: #007bff;
        color: #fff;
        border: none;
        border-radius: 4px;
      }
    
      /* Overlay */
      .mobile-sort-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 9998;
      }
    
      /* Bottom sheet */
      .mobile-sort-sheet {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        background: #fff;
        border-radius: 12px 12px 0 0;
        padding: 15px;
        transition: 0.3s ease;
        z-index: 9999;
      }
    
      .mobile-sort-sheet ul {
        display: flex;
        justify-content: space-between;
      }
    
      .mobile-sort-sheet li {
        border-bottom: 1px solid #eee;
        cursor: pointer;
        border-radius: 10px;
        padding: 7px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 253, 255, 1) 100%);
        border: 1px solid #bcbcbe;
        text-align: center;
      }
        .mobile-sort-sheet li img{
            margin: 0 auto;
        }
      /* Active states */
      .mobile-sort-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      .mobile-sort-sheet.active {
        bottom: 0;
      }
        .results-info h1 {
            font-size: 16px;
        }
        .results-info p{
            font-size: 13px;
        }
        .cat-hero-banner {
            padding: 20px 0;
            /*z-index: 9999;*/
            margin: 0 0 10px 0;
        }
        .hero-text {
            text-align: center;
            margin-bottom: 0;
        }
        .hero-text h2 {
            font-size: 18px;
            font-weight: 600;
            padding: 0 0 10px 0;
        }
        .hero-text p {
            padding: 0 0 10px 0;
        }
        .listings-wrap .destination-item {
            padding: 13px 13px 0;
        }
        .listings-wrap .destination-item .destination-title .dn-sp .day-nig{
            font-size: 11px;
        }
        .listings-wrap .destination-item .destination-title .dn-sp .sepr {
            margin: 5px 0 0 3px;
        }
        .listings-wrap .destination-item .destination-title .dn-sp .package-type{
            font-size: 11px;
            margin: 8px 0 0 2px;
        }
        .listings-wrap .destination-title .tour-inclusions-icons{
            position: absolute;
            left: 20px;
        }
        .listings-wrap .destination-item .destination-description {
            margin: 35px 0 0 0;
        }
        .detail-proceed-wrap .price span, .tour-book .price span {
            font-size: 20px;
            font-weight: 700;
            line-height: 18px;
        }
    /*detail page*/
    .detailBox .short-iti-options{
        display: block;
    }
    .detailBox .ratings-wrap{
        float: none;
        margin: 0;
    }
    .deal-loc-list{
        margin: 2px 0 0 0;
    }
    .detailBox .short-iti-options .tour-by h3{
        width: auto;
    }
    .detailBox .short-iti-options .tour-by{
        margin: 15px 0 0 0;
    }
    .sticky-tabs {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030; /* Above Bootstrap navs */
        background: #fff; /* prevent see-through */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .detailBox .nav-tabs{
        display: flex;
        justify-content: space-between;
    }
    .detailBox .nav-tabs li button{
        padding: 0 9px 0 9px;
        font-size: 12px
    }
    .mobile-fix-single-wrap{
        display: block;
        position: fixed;
        background: #0e0e0eeb;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 999;
    }  
    .mobile-fix-single-wrap ul {
        display: flex;
        justify-content: space-between;
        padding: 8px 15px 8px 15px;
        margin: 0;
    }
    .mobile-fix-single-wrap ul li{
        padding: 0;
    }
    .mobile-fix-single-wrap ul li .price-details{
        text-align: left;
    }
    .mobile-fix-single-wrap ul li .price-details .travel-mode, .mobile-fix-single-wrap ul li .price-details .members-details{
        font-size: 12px;
        opacity: 0.7;
        color: #fff;
        display: block;
    }
    .mobile-fix-single-wrap ul li .price-details .price{
        color: #fff;
        font-size: 20px;
    }
    .mobile-fix-single-wrap ul li .book-now-btn{
        background: #f16a2e;
        color: #fff;
        padding: 10px 30px 10px 30px;
        margin: 15px 0 0 0;
        display: block;
        border-radius: 5px;
        font-size: 15px;
    }
    .mobile-fix-single-wrap ul li .book-now-btn .icon{
        font-size: 22px;
        margin: 0;
        padding: 0;
        line-height: 1px;
    }
    /*checkout*/
    .checkout .package-info h3 {
        margin: 15px 0 0 0;
    }
    .checkout .payment-gateways-wrap .btn-pay-now{
        position: fixed;
        bottom: 20px;
        z-index: 9999;
        width: 190px;
        right: 12px;
        background: #f16a2e;
        border-radius: 5px;
        text-transform: uppercase;
        font-size: 13px;
        padding: 2px 0 2px 0;
    }
    ul.slimmenu li .sub-toggle {
        padding: 10px 2px 0 0;
    }
    ul.slimmenu li .sub-toggle:before {
	    display: none;
    }
    ul.slimmenu li .sub-toggle>i {
    	display: inline-block;
    	color: #000;
    	font-size: 17px;
    	vertical-align: middle
    }
    ul.slimmenu li.has-submenu > a::after {
      display: none;
    }
    /*home*/
    .home-contact-sec {
        position: relative;
        overflow: hidden;
        padding: 0 0 60px 0;
    }
    .home-contact-sec::after {
        content: "";
        position: absolute;
        bottom: 10%;
        left: 0;
        width: 100%;
        height: 200px;
        background: #fae6d9;
        border-top-left-radius: 47% 100%;
        border-top-right-radius: 0% 0%;
        z-index: -1;
    }
    .home-contact-sec form {
        background: #fff;
        margin: 0 18px 0 26px;
        padding: 24px 17px 9px 13px;
        box-shadow: 0px 0px 4px #cac4c7;
    }
    .home-contact-sec p {
        margin: 30px 0 0 0;
        font-weight: 600;
        text-align: center;
    }
    .trending-wrap{
        margin: 0 0 0 0;
    }
    .travel-exp{
        margin: 0 0 0 0;
    }
    
    /*category popup*/
    

    .cat-form-popup-trigger { display: block; }
    .cat-mobile-popup {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.6);
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        transition: bottom 0.4s ease-in-out;
        z-index: 9998;
    }
    .cat-mobile-popup .booking-form {
        width: 100%;
        max-width: 500px;
        background: #fff;
        padding: 20px 25px 30px 25px;
        border-radius: 12px 12px 0 0;
        position: relative;
    }
    .cat-close-popup {
        position: absolute;
        top: 8px;
        right: 15px;
        font-size: 26px;
        color: #333;
        cursor: pointer;
    }
    .cat-mobile-popup.show {
        bottom: 0;
    }
    
    /*popup*/
    .common-popup .modal-bottom {
        position: fixed;
        bottom: 0;
        margin: 0;
        width: 100%;
        transform: translateY(100%);
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    }
    .common-popup .modal.show .modal-bottom {
        transform: translateY(0);
    }
    .common-popup .form-wrap {
        padding: 30px 30px 30px 30px;
    }
    .common-popup .header-hero {
        background-position: 0% 155%;
    }
    .payment-icons{
        float: none;
        margin-top: 0px;
    }
      .payment-icons img {
        max-width: 100%;
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 380px) {
	.get_inspired li {
		height: 220px;
	}
}