/**
* CONTENTS
*
* GENERIC
* Box-sizing............Better default `box-sizing`.
* Image Aligns..........WP specific img aligns.
*
* BASE
* Typography............@fontfaces, base text and vertical rhythem setup.
*
* COMPONENTS
* Wrappers..............Wrapping and constraining elements.
* Grid System...........Bootstrap based grid.
* Clearfix..............Properly clear floats.
*
* Objects
* Icons.................Icon Elements.
* Buttons...............Button elements.
* Tables................Table Styles.
* Forms.................Form Elements.
* Breadcrumbs...........Breadcrumbs.
* Pagination............Pagination.
* Sliders/Carousels.....Sliders/Carousels.
*
* UI
* Page head.............The main page header.
* Navigation............Navigation elements.
* Masthead..............Page title/image/slideshow header block.
* Page footer...........The main page footer.
*
* TRUMPS
* Images................Round, Circle, Square Images.
* Visiblity.............Make items visible.
* Hiding................Make items invisible/hidden.
* Screen Readers........Display for screen readers.
* Print.................Display for printing.
* Clears................Clearing floats.
* Text alignment........Align text.
* Font weights..........Adjust font weights.
* Borders...............Add borders.
* Add/remove margins....Remove margins.
* Add/remove paddings...Remove padding.
* Positioning...........float, center, and stick items.
*
* CUSTOM IMPLEMENTATIONS
* Tripadvisor...........Hidden Elements, Stylings
*/
/*------------------------------------*\
Generic
\*------------------------------------*/
/**
* Box-sizing
*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}


/*
 * IMPORTANT: If using CookieYes, need to re-scope all `[class*="btn-"]` styling to `[class*="btn-"]:not([class*="cky-"])` so it does not affect the CookieYes buttons
 */

/*
* Effects
*/
a,
img,
span,
button,
input,
select,
textarea,
[class*="btn-"]:not([class*="cky-"]),
[class*="btn-"]:not([class*="cky-"]):after,
.js-slider-has-preloader,
.promotions-bar.js-scrolled,
.top-header.js-scrolled,
.page-header-fixed.js-scrolled,
.sub-menu-toggle,
.imgbttn:before,
.post-small,
.icon-play:after {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.select2-container, .select2-dropdown, .select2-search, .select2-results {
	-webkit-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

/**
* Images
*
* These selectors are hard cast because they are only used
* by wordpress wyswyg when adding images to content
*/
/* TODO: Update image bottom margin to match paragraph margin */
img.alignright,
.wp-caption.alignright,
img.alignleft,
.wp-caption.alignleft {
	display: block;
	height: auto;
	max-width: 50%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
	display: block;
	height: auto;
	max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
	margin: 22px 0 22px 0;
}

img.alignright,
.wp-caption.alignright {
	float: right;
	margin: 0 0 22px 30px;
}

img.alignleft,
.wp-caption.alignleft {
	float: left;
	margin: 0 30px 22px 0;
}

img.aligncenter,
.wp-caption.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*------------------------------------*\
Typography
\*------------------------------------*/
/* Optional: use https://www.gridlover.net/try to create vertical rhythm.
Note: you'll most likely need to modify the code generated from gridlover to match the prototypes.*/
/* Please set up line-heights in ems */
body {
	font-family: "Manuale", serif;
	font-weight: 400;
	overflow-anchor: none;
	/* fixes "load more" content in Chrome */
}

@font-face {
	font-family: "bebas_neuebold";
	src: url("../fonts/bebasneue_bold.woff2") format("woff2"),
	url("../fonts/bebasneue_bold.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

hr {
	border-bottom: 1px solid #c2ced7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "bebas_neuebold";
	font-weight: 400;
	margin-bottom: 20px;
	margin-top: 0.7625em;
	text-transform: uppercase;
}

.home h1,
.home .h1 {
	font-size: 50px;
	line-height: .8333em;
}

h1,
.h1 {
	font-size: 33px;
	line-height: .9em;
}

.home h2,
.home .h2 {
	font-size: 33px;
	line-height: .9em;
}

h2,
.h2 {
	font-size: 30px; /*28*/
	line-height: .9em;
}

h3,
.h3 {
	font-size: 26px; /*24*/
	line-height: 1em;
}

h4,
.h4 {
	font-size: 20px; /*18*/
	line-height: 1.2em;
}

h5,
.h5 {
	font-size: 18px; /*16*/
	line-height: 1.6em;
}

body,
p,
h6,
.h6,
td,
th {
	font-size: 15px;
	line-height: 1.5em;
}

.montserrattlt,
.sngl-dstntn-price,
.sidebar-filter h6 {
	font-family: "Montserrat", serif;
	font-weight: 600;
	text-transform: none;
}

.filter-cat-btn.--toggled:after {
	content: "\2715";
	font-size: 1.2rem;
	color: #e91e63
}

.sidebar__img-box {
	height: 7rem;
	position: relative !important;
	overflow: hidden;
}

.sidebar__post-img {
	height: 100% !important;
	width: 100%;
	position: absolute;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
	z-index: 1;
}

b,
strong {
	font-weight: 600;
}

p.large {
	line-height: 1.6em;
}

p,
ul,
ol {
	margin-top: 20px;
	margin-bottom: 27px;
	list-style-type: none;
}

ul,
ol,
li ul,
li ol {
	margin-left: 35px;
}

li ul,
li ol {
	margin: 0;
	padding: 0;
}

li {
	margin-top: 7px;
}

a {
	text-decoration: none;
	color: #8b9a64;
}

a:hover {
	text-decoration: none;
}

.page-body a:hover {
	text-decoration: underline;
}

[class*="btn-"]:not([class*="cky-"]):hover,
.post-cat a:hover,
.widget a:hover,
.post-share-btnlist a:hover,
.filter-cat-list a:hover,
.breadcrumbs a:hover {
	text-decoration: none !important;
}

.breadcrumbs-cont ul li a,
.breadcrumbs-cont ul li span {
	font-size: 15px;
}

@media (min-width: 600px) {

	h6,
	.h6 {
		font-size: 20px;
	}
}

@media (min-width: 768px) {

	.home h1,
	.home .h1 {
		font-size: 80px !important;
		margin-bottom: -15px;
	}

	h1,
	.h1 {
		font-size: 60px;
	}

	.home h2,
	.home .h2 {
		font-size: 60px;
	}

	h2,
	.h2 {
		font-size: 50px;
	}

	h3,
	.h3 {
		font-size: 35px;
	}

	h4,
	.h4 {
		font-size: 21px;
	}

	h5,
	.h5 {
		font-size: 18px;
	}

	p.large {
		font-size: 20px;
	}
}

@media (min-width: 1200px) {

	.home h1,
	.home .h1 {
		font-size: 120px;
	}

	h1,
	.h1 {
		font-size: 80px;
	}

	.home h2,
	.home .h2 {
		font-size: 80px;
	}

	h2,
	.h2 {
		font-size: 60px;
	}

	h3,
	.h3 {
		font-size: 46px;
	}

	h4,
	.h4 {
		font-size: 26px;
	}

	h5,
	.h5 {
		font-size: 22px;
	}

	body,
	p,
	h6,
	.h6,
	td,
	th {
		font-size: 19px;
	}

	p.large {
		font-size: 24px;
	}
}

/**
* UL listing
*/
li {
	padding-left: 21px;
	position: relative;
}

ul > li:before,
ol > li:before {
	position: absolute;
	left: 0;
}

ul > li:before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: #8b9964;
	display: inline-block;
	top: 9px;
}

/*check list*/
ul.check-list > li:before {
	background: none;
	width: auto;
	height: auto;
	font-size: 13px;
	top: 8px;
	color: #8b9a64;
}

ul.check-list.flush-top.flush-sides {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	width: 100%;
}

ul.check-list li {
	display: inline-block;
	width: 100%;
}

/**
* OL listing
*/
body,
ol {
	counter-reset: counter;
}

ol > li:before {
	counter-increment: counter;
	content: counter(counter) ".";
}

.page-header ul > li:before,
.page-footer ul > li:before,
.masthead ul > li:before,
.banner ul > li:before,
.slick-dots ul > li:before,
[class*="flexbox-"] > li:before,
.list-style-none > li:before,
.selectric-scroll li:before,
.sngl-dstntn-itinenary li:before {
	display: none;
}

.page-header li,
.page-footer li,
.masthead li,
.banner li,
.slick-dots li,
[class*="flexbox-"] > li,
.list-style-none li,
.sngl-dstntn-itinenary li {
	margin: 0;
	padding: 0;
}

/*------------------------------------*\
Flex Display
\*------------------------------------*/
.eqhwrap,
.slick-dots,
.valign-middle,
[class*="flexbox-"] {
	display: -moz-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

/**
* Vertical align middle
*/
.valign-middle {
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.valign-middle-item {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.eqhwrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*
* Display
*/
[class*="flexbox-"] {
	-ms-box-orient: horizontal;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.flexbox-justify {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}


.flexbox-right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flexbox-left {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.slick-dots,
.flexbox-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.flexgrow-item,
.flexgrow li {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.flexbox-not > div,
.flexbox-not > li {
	float: left;
}

/*
* Overwrite Display flex
*/
@media (max-width: 1199px) {
	.disblock-md-down {
		display: block;
	}
}

@media (max-width: 1024px) {
	.disblock-sm-down {
		display: block;
	}
}

@media (max-width: 767px) {
	.disblock-xs-down {
		display: block;
	}
}

@media (max-width: 599px) {
	.disblock-xxs {
		display: block;
	}
}

/*------------------------------------*\
COMPONENTS
\*------------------------------------*/
/**
* Wrappers
*/
.container,
.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container {
	max-width: 1820px;
}

@media (min-width: 768px) {

	.container,
	.container-fluid {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (min-width: 1300px) {

	.container,
	.container-fluid {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/**
* Grid System
*
* Bootstrap v3.3.1 (https://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
* Base setup 20px gutters
*
* Phones         - xxs - <  600px    ** Default **
* Small Tablets  - xs - >=  600px
* Tablets        - sm - >= 768px
* Desktop        - md - >= 1025px
* Large Desktop  - lg - >= 1200px
* --------------------------------------------------------------------------
* Learn more here: https://getbootstrap.com/css/#grid
* -------------------------------------------------------------------------- */
.row {
	margin-left: -20px;
	margin-right: -20px;
}

[class*="col-"],
.grid li {
	position: relative;
	min-height: 1px;
	padding-left: 20px;
	padding-right: 20px;
}

.grid [class*="col-"],
.grid li {
	padding-top: 20px;
	padding-bottom: 20px;
}

@media (min-width: 768px) {
	.row {
		margin-left: -16px;
		margin-right: -16px;
	}

	[class*="col-"],
	.grid li {
		padding-left: 16px;
		padding-right: 16px;
	}
}

@media (min-width: 1025px) {
	.grid [class*="col-"] {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] {
	float: left;
}

.col-xxs-12 {
	width: 100%;
}

.col-xxs-11 {
	width: 91.66666667%;
}

.col-xxs-10 {
	width: 83.33333333%;
}

.col-xxs-9 {
	width: 75%;
}

.col-xxs-8 {
	width: 66.66666667%;
}

.col-xxs-7 {
	width: 58.33333333%;
}

.col-xxs-6 {
	width: 50%;
}

.col-xxs-5 {
	width: 41.66666667%;
}

.col-xxs-4 {
	width: 33.33333333%;
}

.col-xxs-3 {
	width: 25%;
}

.col-xxs-2 {
	width: 16.66666667%;
}

.col-xxs-1 {
	width: 8.33333333%;
}

.col-xxs-pull-12 {
	right: 100%;
}

.col-xxs-pull-11 {
	right: 91.66666667%;
}

.col-xxs-pull-10 {
	right: 83.33333333%;
}

.col-xxs-pull-9 {
	right: 75%;
}

.col-xxs-pull-8 {
	right: 66.66666667%;
}

.col-xxs-pull-7 {
	right: 58.33333333%;
}

.col-xxs-pull-6 {
	right: 50%;
}

.col-xxs-pull-5 {
	right: 41.66666667%;
}

.col-xxs-pull-4 {
	right: 33.33333333%;
}

.col-xxs-pull-3 {
	right: 25%;
}

.col-xxs-pull-2 {
	right: 16.66666667%;
}

.col-xxs-pull-1 {
	right: 8.33333333%;
}

.col-xxs-pull-0 {
	right: auto;
}

.col-xxs-push-12 {
	left: 100%;
}

.col-xxs-push-11 {
	left: 91.66666667%;
}

.col-xxs-push-10 {
	left: 83.33333333%;
}

.col-xxs-push-9 {
	left: 75%;
}

.col-xxs-push-8 {
	left: 66.66666667%;
}

.col-xxs-push-7 {
	left: 58.33333333%;
}

.col-xxs-push-6 {
	left: 50%;
}

.col-xxs-push-5 {
	left: 41.66666667%;
}

.col-xxs-push-4 {
	left: 33.33333333%;
}

.col-xxs-push-3 {
	left: 25%;
}

.col-xxs-push-2 {
	left: 16.66666667%;
}

.col-xxs-push-1 {
	left: 8.33333333%;
}

.col-xxs-push-0 {
	left: auto;
}

.col-xxs-offset-12 {
	margin-left: 100%;
}

.col-xxs-offset-11 {
	margin-left: 91.66666667%;
}

.col-xxs-offset-10 {
	margin-left: 83.33333333%;
}

.col-xxs-offset-9 {
	margin-left: 75%;
}

.col-xxs-offset-8 {
	margin-left: 66.66666667%;
}

.col-xxs-offset-7 {
	margin-left: 58.33333333%;
}

.col-xxs-offset-6 {
	margin-left: 50%;
}

.col-xxs-offset-5 {
	margin-left: 41.66666667%;
}

.col-xxs-offset-4 {
	margin-left: 33.33333333%;
}

.col-xxs-offset-3 {
	margin-left: 25%;
}

.col-xxs-offset-2 {
	margin-left: 16.66666667%;
}

.col-xxs-offset-1 {
	margin-left: 8.33333333%;
}

.col-xxs-offset-0 {
	margin-left: 0%;
}

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
	[class*="col-xs-"] {
		float: left;
	}

	.col-xs-12 {
		width: 100%;
	}

	.col-xs-11 {
		width: 91.66666667%;
	}

	.col-xs-10 {
		width: 83.33333333%;
	}

	.col-xs-9 {
		width: 75%;
	}

	.col-xs-8 {
		width: 66.66666667%;
	}

	.col-xs-7 {
		width: 58.33333333%;
	}

	.col-xs-6 {
		width: 50%;
	}

	.col-xs-5 {
		width: 41.66666667%;
	}

	.col-xs-4 {
		width: 33.33333333%;
	}

	.col-xs-3 {
		width: 25%;
	}

	.col-xs-2 {
		width: 16.66666667%;
	}

	.col-xs-1 {
		width: 8.33333333%;
	}

	.col-xs-pull-12 {
		right: 100%;
	}

	.col-xs-pull-11 {
		right: 91.66666667%;
	}

	.col-xs-pull-10 {
		right: 83.33333333%;
	}

	.col-xs-pull-9 {
		right: 75%;
	}

	.col-xs-pull-8 {
		right: 66.66666667%;
	}

	.col-xs-pull-7 {
		right: 58.33333333%;
	}

	.col-xs-pull-6 {
		right: 50%;
	}

	.col-xs-pull-5 {
		right: 41.66666667%;
	}

	.col-xs-pull-4 {
		right: 33.33333333%;
	}

	.col-xs-pull-3 {
		right: 25%;
	}

	.col-xs-pull-2 {
		right: 16.66666667%;
	}

	.col-xs-pull-1 {
		right: 8.33333333%;
	}

	.col-xs-pull-0 {
		right: auto;
	}

	.col-xs-push-12 {
		left: 100%;
	}

	.col-xs-push-11 {
		left: 91.66666667%;
	}

	.col-xs-push-10 {
		left: 83.33333333%;
	}

	.col-xs-push-9 {
		left: 75%;
	}

	.col-xs-push-8 {
		left: 66.66666667%;
	}

	.col-xs-push-7 {
		left: 58.33333333%;
	}

	.col-xs-push-6 {
		left: 50%;
	}

	.col-xs-push-5 {
		left: 41.66666667%;
	}

	.col-xs-push-4 {
		left: 33.33333333%;
	}

	.col-xs-push-3 {
		left: 25%;
	}

	.col-xs-push-2 {
		left: 16.66666667%;
	}

	.col-xs-push-1 {
		left: 8.33333333%;
	}

	.col-xs-push-0 {
		left: auto;
	}

	.col-xs-offset-12 {
		margin-left: 100%;
	}

	.col-xs-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-xs-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-xs-offset-9 {
		margin-left: 75%;
	}

	.col-xs-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-xs-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-xs-offset-6 {
		margin-left: 50%;
	}

	.col-xs-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-xs-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-xs-offset-3 {
		margin-left: 25%;
	}

	.col-xs-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-xs-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-xs-offset-0 {
		margin-left: 0%;
	}
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	[class*="col-sm-"] {
		float: left;
	}

	.col-sm-12 {
		width: 100%;
	}

	.col-sm-11 {
		width: 91.66666667%;
	}

	.col-sm-10 {
		width: 83.33333333%;
	}

	.col-sm-9 {
		width: 75%;
	}

	.col-sm-8 {
		width: 66.66666667%;
	}

	.col-sm-7 {
		width: 58.33333333%;
	}

	.col-sm-6 {
		width: 50%;
	}

	.col-sm-5 {
		width: 41.66666667%;
	}

	.col-sm-4 {
		width: 33.33333333%;
	}

	.col-sm-3 {
		width: 25%;
	}

	.col-sm-2 {
		width: 16.66666667%;
	}

	.col-sm-1 {
		width: 8.33333333%;
	}

	.col-sm-pull-12 {
		right: 100%;
	}

	.col-sm-pull-11 {
		right: 91.66666667%;
	}

	.col-sm-pull-10 {
		right: 83.33333333%;
	}

	.col-sm-pull-9 {
		right: 75%;
	}

	.col-sm-pull-8 {
		right: 66.66666667%;
	}

	.col-sm-pull-7 {
		right: 58.33333333%;
	}

	.col-sm-pull-6 {
		right: 50%;
	}

	.col-sm-pull-5 {
		right: 41.66666667%;
	}

	.col-sm-pull-4 {
		right: 33.33333333%;
	}

	.col-sm-pull-3 {
		right: 25%;
	}

	.col-sm-pull-2 {
		right: 16.66666667%;
	}

	.col-sm-pull-1 {
		right: 8.33333333%;
	}

	.col-sm-pull-0 {
		right: auto;
	}

	.col-sm-push-12 {
		left: 100%;
	}

	.col-sm-push-11 {
		left: 91.66666667%;
	}

	.col-sm-push-10 {
		left: 83.33333333%;
	}

	.col-sm-push-9 {
		left: 75%;
	}

	.col-sm-push-8 {
		left: 66.66666667%;
	}

	.col-sm-push-7 {
		left: 58.33333333%;
	}

	.col-sm-push-6 {
		left: 50%;
	}

	.col-sm-push-5 {
		left: 41.66666667%;
	}

	.col-sm-push-4 {
		left: 33.33333333%;
	}

	.col-sm-push-3 {
		left: 25%;
	}

	.col-sm-push-2 {
		left: 16.66666667%;
	}

	.col-sm-push-1 {
		left: 8.33333333%;
	}

	.col-sm-push-0 {
		left: auto;
	}

	.col-sm-offset-12 {
		margin-left: 100%;
	}

	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-sm-offset-9 {
		margin-left: 75%;
	}

	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-sm-offset-6 {
		margin-left: 50%;
	}

	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-sm-offset-3 {
		margin-left: 25%;
	}

	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-sm-offset-0 {
		margin-left: 0%;
	}
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
	[class*="col-md-"] {
		float: left;
	}

	.col-md-12 {
		width: 100%;
	}

	.col-md-11 {
		width: 91.66666667%;
	}

	.col-md-10 {
		width: 83.33333333%;
	}

	.col-md-9 {
		width: 75%;
	}

	.col-md-8 {
		width: 66.66666667%;
	}

	.col-md-7 {
		width: 58.33333333%;
	}

	.col-md-6 {
		width: 50%;
	}

	.col-md-5 {
		width: 41.66666667%;
	}

	.col-md-4 {
		width: 33.33333333%;
	}

	.col-md-3 {
		width: 25%;
	}

	.col-md-2 {
		width: 16.66666667%;
	}

	.col-md-1 {
		width: 8.33333333%;
	}

	.col-md-pull-12 {
		right: 100%;
	}

	.col-md-pull-11 {
		right: 91.66666667%;
	}

	.col-md-pull-10 {
		right: 83.33333333%;
	}

	.col-md-pull-9 {
		right: 75%;
	}

	.col-md-pull-8 {
		right: 66.66666667%;
	}

	.col-md-pull-7 {
		right: 58.33333333%;
	}

	.col-md-pull-6 {
		right: 50%;
	}

	.col-md-pull-5 {
		right: 41.66666667%;
	}

	.col-md-pull-4 {
		right: 33.33333333%;
	}

	.col-md-pull-3 {
		right: 25%;
	}

	.col-md-pull-2 {
		right: 16.66666667%;
	}

	.col-md-pull-1 {
		right: 8.33333333%;
	}

	.col-md-pull-0 {
		right: auto;
	}

	.col-md-push-12 {
		left: 100%;
	}

	.col-md-push-11 {
		left: 91.66666667%;
	}

	.col-md-push-10 {
		left: 83.33333333%;
	}

	.col-md-push-9 {
		left: 75%;
	}

	.col-md-push-8 {
		left: 66.66666667%;
	}

	.col-md-push-7 {
		left: 58.33333333%;
	}

	.col-md-push-6 {
		left: 50%;
	}

	.col-md-push-5 {
		left: 41.66666667%;
	}

	.col-md-push-4 {
		left: 33.33333333%;
	}

	.col-md-push-3 {
		left: 25%;
	}

	.col-md-push-2 {
		left: 16.66666667%;
	}

	.col-md-push-1 {
		left: 8.33333333%;
	}

	.col-md-push-0 {
		left: auto;
	}

	.col-md-offset-12 {
		margin-left: 100%;
	}

	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-md-offset-9 {
		margin-left: 75%;
	}

	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-md-offset-6 {
		margin-left: 50%;
	}

	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-md-offset-3 {
		margin-left: 25%;
	}

	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-md-offset-0 {
		margin-left: 0%;
	}
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1366px) {
	[class*="col-lg-"] {
		float: left;
	}

	.col-lg-12 {
		width: 100%;
	}

	.col-lg-11 {
		width: 91.66666667%;
	}

	.col-lg-10 {
		width: 83.33333333%;
	}

	.col-lg-9 {
		width: 75%;
	}

	.col-lg-8 {
		width: 66.66666667%;
	}

	.col-lg-7 {
		width: 58.33333333%;
	}

	.col-lg-6 {
		width: 50%;
	}

	.col-lg-5 {
		width: 41.66666667%;
	}

	.col-lg-4 {
		width: 33.33333333%;
	}

	.col-lg-3 {
		width: 25%;
	}

	.col-lg-2 {
		width: 16.66666667%;
	}

	.col-lg-1 {
		width: 8.33333333%;
	}

	.col-lg-pull-12 {
		right: 100%;
	}

	.col-lg-pull-11 {
		right: 91.66666667%;
	}

	.col-lg-pull-10 {
		right: 83.33333333%;
	}

	.col-lg-pull-9 {
		right: 75%;
	}

	.col-lg-pull-8 {
		right: 66.66666667%;
	}

	.col-lg-pull-7 {
		right: 58.33333333%;
	}

	.col-lg-pull-6 {
		right: 50%;
	}

	.col-lg-pull-5 {
		right: 41.66666667%;
	}

	.col-lg-pull-4 {
		right: 33.33333333%;
	}

	.col-lg-pull-3 {
		right: 25%;
	}

	.col-lg-pull-2 {
		right: 16.66666667%;
	}

	.col-lg-pull-1 {
		right: 8.33333333%;
	}

	.col-lg-pull-0 {
		right: auto;
	}

	.col-lg-push-12 {
		left: 100%;
	}

	.col-lg-push-11 {
		left: 91.66666667%;
	}

	.col-lg-push-10 {
		left: 83.33333333%;
	}

	.col-lg-push-9 {
		left: 75%;
	}

	.col-lg-push-8 {
		left: 66.66666667%;
	}

	.col-lg-push-7 {
		left: 58.33333333%;
	}

	.col-lg-push-6 {
		left: 50%;
	}

	.col-lg-push-5 {
		left: 41.66666667%;
	}

	.col-lg-push-4 {
		left: 33.33333333%;
	}

	.col-lg-push-3 {
		left: 25%;
	}

	.col-lg-push-2 {
		left: 16.66666667%;
	}

	.col-lg-push-1 {
		left: 8.33333333%;
	}

	.col-lg-push-0 {
		left: auto;
	}

	.col-lg-offset-12 {
		margin-left: 100%;
	}

	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}

	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}

	.col-lg-offset-9 {
		margin-left: 75%;
	}

	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}

	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}

	.col-lg-offset-6 {
		margin-left: 50%;
	}

	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}

	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}

	.col-lg-offset-3 {
		margin-left: 25%;
	}

	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}

	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}

	.col-lg-offset-0 {
		margin-left: 0%;
	}
}

/**
* Clearfix
* Apply clearing without adding additional markup
*/
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
	content: " ";
	display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
	clear: both;
}

/*--------------------------------------------------------------*\
OBJECTS
Objects are independent generic stylibf classes or UI peices.
All styles for objects should be self contained.
e.g. an object shouldn't rely on trump helpers to apply padding etc.
\*--------------------------------------------------------------*/
/**
* Buttons
*/

/* Do not add the CookieYes fix here, it breaks the modal popups */
[class*="btn-"] {
	position: relative;
	border: none;
}

.btn-primary,
.btn-secondary,
.btn-accent,
.btn-tertiary {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	padding: 18px 40px;
	color: #fff;
	display: inline-block;
	text-align: center;
}

[class*="btn-"]:not([class*="cky-"]):after {
	padding-left: 5px;
}

[class*="btn-"]:not([class*="cky-"]):before {
	margin-right: 5px;
}

[class*="btn-"]:not([class*="cky-"]):hover {
	color: #fff;
}

.btn-primary,
.bgc-primary {
	background-color: #d18523;
}

.btn-primary:hover {
	background-color: #d07704;
}

.btn-secondary,
.bgc-secondary {
	background-color: #8b9a64;
}

.btn-secondary:hover {
	background-color: #6f8439;
}

.btn-tertiary {
	border: 2px solid #d18523;
}

.btn-tertiary:hover {
	background-color: #d18523;
}

.btn-accent {
	background-color: #fff;
	color: #353b49;
	border: 1px solid #c2ced7;
}

.btn-accent:after {
	color: #8b9a64;
}

.btn-accent:hover {
	background-color: #d18523;
	border-color: #d18523;
}

.btn-accent:hover:after {
	color: #fff;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-load-more:after {
	content: "\e914" !important;
}

.btn-print:after,
.btn-pdf:after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	position: absolute;
	top: 19px;
}

@media (max-width: 1199px) {
	[class*="btn-"]:not([class*="cky-"]) {
		font-size: 12px;
		padding: 15px 28px;
	}

	.btn-print,
	.btn-pdf {
		padding: 15px 15px;
	}
}

@media (max-width: 767px) {
	[class*="btn-"]:not([class*="cky-"]) {
		font-size: 12px;
		padding: 15px 20px;
	}

	.btn-print,
	.btn-pdf {
		width: calc(50% - 2px);
		padding: 15px 2px;
	}
}

@media (min-width: 768px) {
	.btn-print {
		margin-right: 7px;
	}

	.btn-print,
	.btn-pdf {
		width: calc(50% - 7px);
		padding: 18px 20px;
	}
}

@media (max-width: 350px) {

	.btn-print,
	.btn-pdf {
		padding: 15px 0;
		font-size: 10px;
	}
}

.btn-small {
	padding: 4px 30px;
}

.btn-small:after,
.btn-no-arrow:after {
	display: none;
}

.btnlink {
	color: #d18523;
}

.btnlink:hover {
	color: #8b9a64;
}

.btnlink:after {
	vertical-align: middle;
	font-size: 12px;
	margin-left: 5px;
}

/*Skin*/
.bgc-tertiary,
.selectric-open .selectric,
.selectric-open .selectric .button {
	background: #e6ecf2;
}

.bgc-quaternary {
	background: #eff4f7;
}

.bgc-quinary {
	background: #762326;
}

.bgc-senary {
	background: #4b5263;
}

.bgc-white {
	background: #fff;
}

/*font-color*/
.color-primary {
	color: #d18523;
}

.color-secondary {
	color: #8b9a64;
}

.color-tertiary {
	color: #919da6;
}

/**
* Icons
*/
@font-face {
	font-family: "icomoon";
	src: url("../icomoon/fonts/icomoon.eot?6ci788");
	src: url("../icomoon/fonts/icomoon.eot?6ci788#iefix") format("embedded-opentype"),
	url("../icomoon/fonts/icomoon.ttf?6ci788") format("truetype"),
	url("../icomoon/fonts/icomoon.woff?6ci788") format("woff"),
	url("../icomoon/fonts/icomoon.svg?6ci788#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"]:before,
[class*=" icon-"]:before,
[class^="icon-"]:after,
[class*=" icon-"]:after,
[class*="btn-"]:not([class*="cky-"]):after,
.btnlink:after,
.top-header-menu ul li a:after,
.slick-arrow:before,
.nav-fixed-menubtn:before,
ul.check-list > li:before,
.accordion-title:after,
.sidebar-filter h6:after,
.simple-trip__btns .pdfprnt-button-title:after {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:hover {
	text-decoration: none !important;
}

.icon-cardiogram:before {
	content: "\e924";
}

.icon-hiking:before {
	content: "\e900";
}

.icon-mountain:before {
	content: "\e901";
}

.icon-maps:before {
	content: "\e902";
}

.icon-camping:before {
	content: "\e903";
}

.icon-backpack:before {
	content: "\e904";
}

.icon-bed:before {
	content: "\e905";
}

.icon-hiking1:before {
	content: "\e906";
}

.icon-tent:before {
	content: "\e907";
}

.icon-circled-check:before {
	content: "\e908";
}

.icon-roadsign:before {
	content: "\e909";
}

.icon-basecamp-tours:before {
	content: "\e929";
}

.icon-family-friendly:before {
	content: "\e92a";
}

.icon-guides-choice:before {
	content: "\e92b";
}

.icon-hut-to-hut:before {
	content: "\e92c";
}

.icon-inn-based:before {
	content: "\e92d";
}

.icon-llama:before {
	content: "\e92e";
}

.icon-womens-adventure:before {
	content: "\e92f";
}

.icon-dayhike:before {
	content: "\e930";
}

.icon-guided:before {
	content: "\e931";
}

.icon-kayak:before {
	content: "\e932";
}

.icon-other:before {
	content: "\e933";
}

.icon-ski:before {
	content: "\e934";
}

.Tours:before {
	content: "\e934";
}

.icon-Portered:before {
	content: "\e904";
}

.icon-Basecamp:before {
	content: "\e907";
}

.icon-Inn-Based:before {
	content: "\e905";
}

.icon-Hut:before {
	content: "\e92c";
}

.icon-Llama:before {
	content: "\e92e";
}

.icon-Womens:before {
	content: "\e92f";
}

.icon-Guides:before {
	content: "\e92b";
}

.icon-Family:before {
	content: "\e92a";
}

.icon-National:before {
	content: "\e929";
}

.icon-Other:before {
	content: "\e933";
}

.icon-Day:before {
	content: "\e930";
}

.icon-Paddle:before {
	content: "\e932";
}

/*Social Media*/
.icon-tripadvisor:before {
	content: "\e90a";
}

.icon-facebook:before {
	content: "\e90b";
}

.icon-linkedin:before {
	content: "\e90c";
}

.icon-instagram:before {
	content: "\e90d";
}

.icon-youtube:before {
	content: "\e90e";
}

/*Misc*/
.icon-zig-zag:before {
	content: "\e90f";
}

.icon-qoute-open:before,
.icon-qoute-close:after {
	display: inline-block;
	content: "\e910";
}

.icon-qoute-open:before {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.icon-phone:before {
	content: "\e911";
}

.icon-search:before {
	content: "\e912";
}

[class*="btn-"]:not([class*="cky-"]):after,
.btnlink:after,
.top-header-menu ul li a:after,
.icon-long-arrow:after {
	content: "\e913";
}

.slick-arrow:before,
.icon-angle-down:after {
	content: "\e914";
}

.icon-arrow:before,
.sidebar-filter h6:after {
	content: "\e915";
}

.icon-share:after {
	content: "\e917";
}

.icon-time:before {
	content: "\e918";
}

.icon-envelope:before {
	content: "\f003";
}

.icon-twitter:before {
	content: "\f099";
}

.icon-gplus:before {
	content: "\f0d5";
}

.icon-pinterest:before {
	content: "\f231";
}

.icon-menu:before,
.nav-fixed-menubtn:before {
	content: "\e919";
}

.icon-menu-close:before,
.nav-fixed-menubtn.open:before {
	content: "\e91a";
}

.icon-stars:before {
	content: "\e922";
}

.icon-star:before {
	content: "\e91c";
}

.icon-calendar:before {
	content: "\e91b";
}

.icon-plus:before,
.accordion-title:after {
	content: "\e91d";
}

.icon-minus:before,
.accordion-title.active:after {
	content: "\e923";
}

.icon-email:before {
	content: "\e91e";
}

.icon-hourglass:before {
	content: "\e91f";
}

.icon-info:before {
	content: "\e920";
	font-size: .8em;
}

.sngl-dstntn-details .icon-info:before, .sngl-dstntn-details-subratings .icon-info:before {
	content: "(Details)";
	font-size: .7em;
}

@media (max-width: 600px) {
	.icon-info:before {
		font-size: 1.3em;
		top: 0px;
		position: relative;
	}
}

.icon-check:before,
ul.check-list > li:before {
	content: "\e921";
}

/*Video Play button*/
.icon-play {
	position: relative;
	display: block;
	height: 100%;
}

.icon-play:before,
.icon-play:after {
	font-size: 26px;
	line-height: 80px;
	text-align: center;
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -40px;
	margin-left: -40px;
	color: #fff;
	border-radius: 50%;
}

.icon-play:before {
	content: "\e916";
	z-index: 2;
}

.icon-play:hover:before {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .6);
	box-shadow: 0 0 10px rgba(0, 0, 0, .6);
}

.icon-play:after {
	content: "";
	height: 80px;
	background-color: rgba(28, 32, 42, .6);
	z-index: 1;
}

.icon-play:hover:after {
	background-color: rgba(28, 32, 42, .3);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin: 0;
	border-radius: 0px;
}

.icon-address-book:before {
	content: "\e928";
}

.icon-price-tags:before {
	content: "\e925";
}

.icon-printer:before {
	content: "\e926";
}

.icon-download:before {
	content: "\e927";
}

.icon-save:before {
	content: "\e927";
}

.icon-store:before {
	content: "\e927";
}

/**
* Tables
*/
table {
	border-collapse: collapse;
	width: 100%;
}

td {
	border: 1px solid #e6ecf2;
	padding: 5px;
}

tr {
}

th {
}

thead th,
thead td,
.tablepress thead th,
.tablepress tfoot th {
	background-color: #515151 !important;
	color: #fff;
}

/*tbody tr:nth-child(odd)  {
background-color: #ccc;
}*/
tfoot {
	background-color: #333;
}

/* Responsive Tables */
.table-wrap-outer:after {
	content: "";
	position: absolute;
	right: -1px;
	/* account for border */
	top: 0;
	height: 100%;
	width: 80px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 1)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=1);
	/* IE6-9 */
}

@media (min-width: 600px) {
	.table-wrap-outer:after {
		display: none;
	}

	.table-wrap-inner {
		overflow: visible !important;
	}
}

/**/
address,
dl {
	margin-bottom: 20px;
}

dt {
	font-weight: 700;
}

.dl-horizontal dt {
	float: left;
	width: 160px;
	clear: left;
	text-align: right;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-top: 2px;
	padding-bottom: 2px;
}

.dl-horizontal dd {
	margin-left: 165px;
	padding-top: 2px;
	padding-bottom: 2px;
}

.tooltip-popup .dl-horizontal dt {
	width: 30%;
	-o-text-overflow: inherit;
	text-overflow: inherit;
}

.tooltip-popup .dl-horizontal dd {
	margin-left: auto;
	width: 69%;
}

@media (max-width: 1199px) {
	.mfp-wrap[class*="btn-"] {
		font-size: 15px;
	}
}

@media (max-width: 599px) {
	.tooltip-popup .dl-horizontal dt {
		width: 50%;
	}

	.tooltip-popup .dl-horizontal dd {
		width: 49%;
	}

	.tooltip-popup .dl-horizontal dt {
		text-align: left;
	}
}

@media (max-width: 399px) {
	.tooltip-popup .dl-horizontal dt {
		width: 60%;
	}

	.tooltip-popup .dl-horizontal dd {
		width: 39%;
	}
}

/**
* Forms
*/
label {
	display: block;
	padding: 0 0 5px;
	text-align: left;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 1em;
	color: #353b49;
	text-transform: uppercase;
}

label.hidden-label {
	color: transparent;
}

select {
	outline: 0;
}

textarea {
	padding: 0 16px;
	width: 100%;
	height: 160px;
	background-color: #fff;
	border: 1px solid #c2ced7;
	font-size: 15px;
	color: #000;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	outline: 0;
}

.comment-form-just_another_id {
	display: none;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
	-webkit-appearance: none;
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
	border: 1px solid #c2ced7;
	padding: 0 16px;
	width: 100%;
	height: 45px;
	background-color: #fff;
	font-size: 15px;
	color: #000;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	display: block;
	outline: 0;
	border-radius: 0;
}

#mailpoet_form_1 form.mailpoet_form {
	padding: 0px !important;
}

#mailpoet_form_1 input.mailpoet_text {
	padding-left: 20px !important;
	padding-right: 50px !important;
}

#mailpoet_form_1 .mailpoet_paragraph {
	margin-bottom: 0px !important;
}

#mailpoet_form_1 input.mailpoet_submit {
	padding: 20px !important;
	border-radius: 0;
}

#mailpoet_form_1 ul > li:before {
	display: none;
}

@media (min-width: 1200px) {

	[type="text"],
	[type="date"],
	[type="datetime"],
	[type="datetime-local"],
	[type="email"],
	[type="month"],
	[type="number"],
	[type="password"],
	[type="search"],
	[type="tel"],
	[type="url"],
	[type="week"],
	[type="date"] {
		height: 54px;
		line-height: 54px;
		font-size: 14px;
	}
}

[type="text"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
[type="date"]:focus,
textarea:focus {
}

.form-col {
	margin-bottom: 20px;
}

/* Popup forms */
#reservation-request-form,
#js-prepermit-form-container,
#js-printable-format-form {
	position: relative;
	background: #fff;
	width: 85%;
	margin: 20px auto;
	padding: 25px;
}

#js-printable-format-form {
	color: #353b49;
}

.gform_required_legend {
    color: #353b49;
}

legend.gfield_label.gform-field-label {
    color: #353b49;
}

@media (min-width: 768px) {

	#reservation-request-form,
	#js-prepermit-form-container,
	#js-printable-format-form {
		width: 75%;
		padding: 30px;
	}
}

@media (min-width: 1200px) {

	#reservation-request-form,
	#js-prepermit-form-container,
	#js-printable-format-form {
		width: 50%;
		padding: 50px;
	}
}

.printable-format-form [type="submit"] {
	border: 0;
}

.printable-format-form .check-label {
	color: #353b49;
	margin-right: 10px;
}

.printable-format-form td {
	border: 0;
	padding: 0;
}

/* Cognito Forms */
.c-forms-form [type="text"],
.c-forms-form [type="date"],
.c-forms-form [type="datetime"],
.c-forms-form [type="datetime-local"],
.c-forms-form [type="email"],
.c-forms-form [type="month"],
.c-forms-form [type="number"],
.c-forms-form [type="password"],
.c-forms-form [type="search"],
.c-forms-form [type="tel"],
.c-forms-form [type="url"],
.c-forms-form [type="week"],
.c-forms-form [type="date"] {
	padding: 0 16px !important;
	border: 1px solid #c2ced7 !important;
	font-size: 14px !important;
	font-family: "Montserrat", sans-serif !important;
	font-weight: 500 !important;
	color: #000;
}

.c-forms-form .c-section {
	padding-right: 0;
	padding-left: 0;
}

.c-forms-form select {
	line-height: 54px;
	padding: 0 16px !important;
}

.c-forms-form label {
	padding: 0 7px 5px 0px;
}

.c-forms-form ul li:before {
	display: none;
}

.c-forms-form ul li {
	padding-left: 0px !important;
}

.cognito .c-forms-form :not(.c-question) > .c-label {
	padding: 0 7px 5px 8px;
	display: block;
	text-align: left;
	font-size: 14px !important;
	font-family: "Montserrat", sans-serif !important;
	font-weight: 600 !important;
	line-height: 1em;
	color: #353b49 !important;
	text-transform: uppercase;
}

.c-forms-form input::-webkit-input-placeholder {
	color: #000;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	opacity: .7;
}

.cognito-datepicker th {
	background-color: #fff !important;
}

.c-forms-form ol > li:before {
	display: none !important;
}

.cognito .c-forms-form .c-forms-form-title h2,
.cognito .c-forms-form h3 {
	font-family: "bebas_neuebold" !important;
	font-weight: 400 !important;
	text-transform: uppercase !important;
	line-height: .9em !important;
	font-size: 28px !important;
}

.cognito .c-forms-form .c-forms-form-title h2 {
	font-size: 28px !important;
	margin-bottom: 20px;
	margin-top: 0;
}

.cognito .c-forms-form h3 {
	font-size: 24px !important;
	margin-top: 24px !important;
}

.c-forms-description,
.c-editor.c-html p,
.c-helptext p {
	line-height: 1.5em !important;
	font-size: 19px !important;
	font-family: "Manuale", serif !important;
	font-weight: 400 !important;
}

.c-helptext p {
	margin-top: 0px !important;
	margin-bottom: 20px !important;
	font-size: 16px !important;
}

.c-forms-description {
	margin-top: 20px !important;
	margin-bottom: 0px !important;
}

.cognito .c-forms-form button:not(.c-icon-button),
.cognito .c-forms-form .c-add-item,
.cognito .c-forms-form input[type=button],
.cognito .c-forms-form .c-fileupload-dropzone .c-upload-button button {
	-webkit-appearance: none !important;
	background: #d18523;
	font-family: "Montserrat", sans-serif !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	text-transform: uppercase;
	padding: 18px 40px !important;
	color: #fff !important;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all .5s ease !important;
	-o-transition: all .5s ease !important;
	transition: all .5s ease !important;
	border-radius: 0 !important;
}

.cognito .c-forms-form button:not(.c-icon-button):hover,
.cognito .c-forms-form .c-add-item:hover,
.cognito .c-forms-form input[type=button]:hover,
.cognito .c-forms-form .c-fileupload-dropzone .c-upload-button button:hover {
	background: #8b9a64;
	color: #fff;
}

.c-yesno-radiobuttons legend {
	margin-top: 30px !important;
}

.c-forms-form .c-yesno-radio {
	font-size: 18px;
	margin-top: 20px !important;
	display: inline-block !important;
}

.cognito #c-submit-button {
	float: none !important;
}

@media (min-width: 768px) {
	.cognito .c-forms-form .c-forms-form-title h2 {
		font-size: 50px !important;
	}

	.cognito .c-forms-form h3 {
		font-size: 35px !important;
	}
}

@media (min-width: 1200px) {
	.cognito .c-forms-form .c-forms-form-title h2 {
		font-size: 60px !important;
	}

	.cognito .c-forms-form h3 {
		font-size: 46px !important;
	}
}

/* Default Submit Button Style */
[type="submit"] {
	-webkit-appearance: none;
	background: #d18523;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	padding: 18px 40px;
	color: #fff;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	width: 100%;
	border: 0;
}

[type="submit"]:hover {
	background: #8b9a64;
	color: #fff;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border: none;
	padding: 0;
}

/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
	display: inline-block;
	margin-left: 5px;
	font-family: "Manuale", serif;
	color: #000;
	font-weight: 400;
	font-size: 16px;
}

/* Default Radio/Checkbox Style (if using HTML code) */
.form-col .list-item-label {
	display: inline-block;
	margin-left: 5px;
	font-family: "Manuale", serif;
	color: #000;
	font-weight: 400;
	font-size: 16px;
}

/* Selectric */
.selectric-wrapper {
	position: relative;
	cursor: pointer;
}

.selectric-responsive {
	width: 100%;
}

.selectric {
	border-radius: 0px;
	background: #fff;
	position: relative;
	overflow: hidden;
	border: 1px solid #c2ced7;
}

.selectric .label {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin: 0 38px 0 15px;
	font-size: 12px;
	line-height: 44px;
	color: #353b49;
	height: 45px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	text-align: left;
}

.selectric .button {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	line-height: 44px;
	background-color: #fff;
	color: #8b9a64;
	text-align: center;
	font: 0/0 a;
	*font: 20px/44px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
	content: " ";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-top-color: #8b9a64;
	border-bottom: none;
}

.selectric-focus .selectric {
	border-color: #aaa;
}

.selectric-hover .selectric {
	border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
	color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
	border-top-color: #a2a2a2;
}

.selectric-open {
	z-index: 9999;
}

.selectric-open .selectric {
	border-color: #c4c4c4;
}

.selectric-open .selectric-items {
	display: block;
}

.selectric-disabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectric-hide-select {
	position: relative;
	overflow: hidden;
	width: 0;
	height: 0;
}

.selectric-hide-select select {
	position: absolute;
	left: -100%;
}

.selectric-hide-select.selectric-is-native {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	border: none;
	z-index: 1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 0;
}

.selectric-input {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 1px !important;
	height: 1px !important;
	outline: none !important;
	border: none !important;
	*font: 0/0 a !important;
	background: none !important;
}

.selectric-temp-show {
	position: absolute !important;
	visibility: hidden !important;
	display: block !important;
}

/* Items box */
.selectric-items {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #f8f8f8;
	border: 1px solid #c4c4c4;
	z-index: -1;
	-webkit-box-shadow: 0 0 10px -6px;
	box-shadow: 0 0 10px -6px;
	width: 100% !important;
}

.selectric-items .selectric-scroll {
	height: 100%;
	overflow: auto;
}

.selectric-above .selectric-items {
	top: auto;
	bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 20px;
	min-height: 20px;
}

.wysiwyg-gray-cnt .selectric-items ul {
	margin: 0;
}

.selectric-items li {
	display: block;
	padding: 10px;
	color: #666;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

.selectric-items li.selected {
	background: #e0e0e0;
	color: #444;
}

.selectric-items li.highlighted {
	background: #d0d0d0;
	color: #444;
}

.selectric-items li:hover {
	background: #d5d5d5;
	color: #444;
}

.selectric-items .disabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
	cursor: default !important;
	background: none !important;
	color: #666 !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
	font-weight: bold;
	padding-left: 10px;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: none;
	color: #444;
}

.selectric-items .selectric-group.disabled li {
	filter: alpha(opacity=100);
	opacity: 1;
}

.selectric-items .selectric-group li {
	padding-left: 25px;
}

.trips-select-area .selectric-items ul {
	padding: 8px 10px
}

.trips-select-area .selectric-items li {
	margin: 2px 0
}

.selectric-items li.highlighted {
	background: #4b5263;
	color: #fff;
}

.selectric-items li:hover {
	background: #4b5263;
	color: #fff;
}

@media (min-width: 1200px) {
	.selectric .label {
		height: 54px;
		line-height: 54px;
		font-size: 14px;
	}

	.selectric .button {
		height: 54px;
	}
}

/* CF7 Validation (Replace if not using CF7) */
.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-form-control-wrap {
	display: block;
}

.wpcf7-not-valid-tip {
	position: absolute;
	left: 0;
	bottom: -22px;
	display: block;
	font-size: 12px;
	color: #ed1c24;
}

.wpcf7-response-output.wpcf7-display-none wpcf7-validation-errors {
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .selectric {
	color: #ed1c24;
	border: 1px solid #ed1c24;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
	position: relative;
	margin-top: 10px;
}

.screen-reader-response {
	display: none;
}

/**
* Masthead / page banner
*/
.masthead {
	position: relative;
	color: #fff;
	height: 120px;
	width: 100%;
}

.masthead-cont {
	background-color: rgba(0, 0, 0, .0);
	height: 100%;
	top: 0;
	z-index: 2;
}

.masthead-title {
	text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.75);
}

.masthead-title:first-child {
	padding-top: .2em;
}

.masthead,
.masthead-img {
	min-height: 120px;
	-o-object-fit: cover;
	object-fit: cover;
	/* font-family: 'object-fit: cover;'; */
}

.masthead-img {
	height: 100% !important;
	width: 100%;
	position: absolute;
	-o-object-fit: cover;
	z-index: 1;
}

@media (min-width: 768px) {
	.masthead {
		height: 220px;
	}

	.masthead,
	.masthead-img {
		min-height: 220px;
	}
}

@media (min-width: 1025px) {
	.masthead {
		height: 300px;
	}

	.masthead,
	.masthead-img {
		min-height: 300px;
	}
}

@media (min-width: 1600px) {
	.masthead {
		height: 431px !important;
	}
}

.masthead-title span {
	font-size: .5em;
	display: block;
	line-height: 1.4em;
}

.masthead-title-blog {
	margin-top: 30px;
}

.masthead__content {
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

/**
* Breadcrumbs
*/
.breadcrumbs {
	padding-top: 1px;
	padding-bottom: 2px;
	color: #8b9a64;
}

.breadcrumbs.bgc-senary,
.breadcrumbs.bgc-senary a {
	color: #fff;
}

.breadcrumbs a,
.breadcrumbs span,
.breadcrumbs i {
	margin-left: 5px;
	margin-right: 5px;
}

.breadcrumbs li {
	display: inline-block;
}

.breadcrumbs i {
	font-size: 12px;
}

.breadcrumbs a:hover {
	color: #d18523;
}

/**
* Pagination
*/
.pagination span,
.pagination a {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #acaeb3;
	width: 38px;
	line-height: 38px;
	display: inline-block;
	background-image: none;
	background-size: 100% 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.pagination span.current,
.pagination a:hover {
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #1c202a;
	background-image: -o-linear-gradient(rgb(209, 133, 35), rgb(209, 133, 35));
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(209, 133, 35)), to(rgb(209, 133, 35)));
	background-image: linear-gradient(rgb(209, 133, 35), rgb(209, 133, 35));
	background-size: 100% 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
}

.pagination a,
.pagination a:hover {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.wp-pagenavi a,
.wp-pagenavi span {
	border: 0px;
	margin: 0;
	padding: 0;
}

.wp-pagenavi a.first,
.wp-pagenavi a.last {
	width: auto;
}

.wp-pagenavi a:hover {
	text-decoration: none;
}

.navigation.pagination {
	width: 100%;
}

.nav-links.wp-pagenavi .next.page-numbers {
	width: auto;
}

.js-load-more {
	display: none
}

/**
* Sliders/Carousels
* Slick Slider - https://kenwheeler.github.io/slick/
*/
/* General styling */
.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: "";
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-slide,
.slick-slide:focus * {
	outline: none !important;
}

.slick-initialized .slick-slide {
	float: none;
	display: inline-block;
	vertical-align: middle;
}

.slick-arrow:focus {
	outline: none !important;
}

/* Preload affect */
.slick-slider .slide {
	display: none;
}

.slick-slider .slide:first-child {
	display: block;
}

.slick-slider.slick-initialized .slide {
	display: block;
}

.js-slider-has-preloader {
	/* Add this class to your slider */
	min-height: 50px;
	position: relative;
}

.js-slider-has-preloader:before {
	content: url("../img/loading.gif");
	/* Create and upload a loading gif to your image directory */
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	/* Update width based on gif size */
	height: 50px;
	/* Update height based on gif size */
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

/* Custom styling per slider/carousel */
.slick-arrow {
	font-size: 0;
	line-height: 0px;
	border: none;
	background: none;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 30px;
	z-index: 99;
	margin-top: -24px;
}

.slick-arrow:before {
	display: block;
	font-size: 12px;
	line-height: 24px;
	color: #fff;
	background: #1c202a;
	width: 24px;
}

.slick-prev:before {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.slick-next:before {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.slick-next {
	left: auto;
	right: 30px;
}

@media (min-width: 600px) {
	.slick-arrow {
		left: 50px;
	}

	.slick-arrow:before {
		font-size: 20px;
		line-height: 40px;
		width: 40px;
	}

	.slick-next {
		left: auto;
		right: 50px;
	}
}

@media (min-width: 1025px) {
	.slick-arrow:before {
		line-height: 48px;
		width: 48px;
		height: 48px;
	}
}

/*Side Slider Arrows*/
.side-slider .slick-arrow {
	left: -33px;
}

.side-slider .slick-next {
	margin-top: 10px;
}

@media (min-width: 600px) {
	.side-slider .slick-arrow {
		left: -57px;
		margin-top: -48px;
	}

	.side-slider .slick-next {
		margin-top: 0px;
	}
}

@media (min-width: 768px) {
	.side-slider .slick-arrow {
		left: -60px;
	}
}

@media (min-width: 1025px) {
	.side-slider .slick-arrow {
		left: -80px;
	}

	.side-slider .slick-next {
		margin-top: 10px;
	}
}

@media (min-width: 1200px) {
	.side-slider .slick-arrow {
		left: -100px;
	}
}

/*Full Width Slider*/
.full-width-slider .slick-arrow {
}

.full-width-slider .slick-arrow:before {
	font-size: 26px;
	line-height: 1em;
	background: none;
	width: auto;
	height: auto;
}

.full-width-slider .slick-slide,
.full-width-slider .slick-track {
	max-height: 400px;
}

.full-width-slider .slick-slide > div,
.full-width-slider-img {
	-o-object-fit: cover;
	object-fit: cover;
	max-height: 320px;
}

/*Only show the 1st slide while your slider is loading*/
.full-width-slider .slide {
	display: none;
}

.full-width-slider .slide:first-child {
	display: inline-block;
}

.full-width-slider.slick-initialized .slide {
	display: inline-block;
}

@media (min-width: 600px) {
	.full-width-slider .slick-arrow:before {
		font-size: 34px;
	}
}

/**/
.accordion {
	border-bottom: 1px solid #c2ced7;
}

.accordion-title {
	color: #1c202a;
	font-size: 22px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	text-transform: capitalize;
	cursor: pointer;
	position: relative;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-right: 20px;
	border-top: 1px solid #c2ced7;
}

.sngl-dstntn-accordion .accordion-title {
	font-size: 18px;
}

/* .sngl-dstntn-accordion .accordion-title.active {
    padding-bottom: 0;
} */

.accordion-cont.accordion-active {
	margin-top: 0;
}

.accordion .accordion-title:first-child {
	border-top: 0px;
}

.accordion-title.current {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion-title:after {
	font-size: 15px;
	line-height: 30px;
	width: 30px;
	color: #4c5364;
	background-color: #c2ced7;
	position: absolute;
	right: 0;
	top: 50%;
	text-align: center;
	margin-top: -15px;
}

.accordion-cont {
	display: none;
}

.accordion-cont.accordion-active {
	display: block;
}

.itinerarypic:before,
.itinerarypic:after {
	content: " ";
	display: table;
}

.itinerarypic:after {
	clear: both;
}

/*
* WYSIWYG Accordion
* this is the accordion with border arround the all the items
*/
.shortcode-accordion {
	border: 1px solid #4b5263;
}

.shortcode-accordion .accordion-title,
.shortcode-accordion .accordion-cont {
	padding-left: 20px;
	padding-right: 20px;
}

.shortcode-accordion .accordion-cont {
	padding: 20px;
}

.shortcode-accordion .accordion-title {
	background-color: #e6ecf2 !important;
	padding-right: 70px;
}

.shortcode-accordion .accordion-title:after {
	right: 20px;
	left: auto;
}

.shortcode-accordion .accordion-cont {
	border-top: 1px solid #c2ced7;
}

/**/
.mobile-accrdn {
	border-top: 1px solid #c2ced7;
}

.mobile-accrdn-first {
	border-top: 0;
}

.mobile-accrdn-title {
	color: #1c202a;
	background: url(../img/plus.png) right center no-repeat;
	cursor: pointer;
	padding: 15px 30px 15px 35px;
	position: relative;
}

.mobile-accrdn-title.open {
	border-bottom: none;
	background: url(../img/minus.png) right center no-repeat;
}

.mobile-accrdn-title:before {
	color: #bac3a3;
	font-weight: 300;
	font-size: 25px;
	position: absolute;
	left: 0;
	top: 25px !important;
}

.mobile-accrdn-cont {
	display: none;
}

.mobile-accrdn p {
	margin-bottom: 15px;
}

.mobile-accrdn-cont p:first-child {
	margin-top: 0;
}

@media (min-width: 768px) {
	.mobile-accrdn {
		border-top: none;
	}

	.mobile-accrdn-cont {
		display: block;
	}

	.mobile-accrdn-title {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

/*
* Pop-up
*/
/*.tooltip-popup {
display: none;
}
.tooltip-popup.active {
display: block;
}*/
/**/
.find-trips-form {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e6ecf2;
}

.find-trips-form-field {
	margin-top: 10px;
	margin-bottom: 10px;
}

.find-trips-form-btn {
	padding: 15px 0px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.find-trips-form .center-block {
		width: 100%;
	}

	.find-trips-form h4 {
		font-size: 18px;
	}

	.find-trips-form-btn {
		font-size: 12px;
	}
}

/* --------------------------------------------------*\
UI
UI peices are site specific non generic styles.
eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/
/**
* Page-head
*/
.page-header,
.page-header-fixed {
	position: relative;
	z-index: 999;
}

.page-header-cont {
	/*padding: 18px 0 15px 0;*/
	padding-top: 18px;
	padding-bottom: 15px;
}

.logo {
	max-width: 280px;
	margin: 0 auto;
}

.logocaption {
	max-width: 280px;
}

.logo:after {
	border-bottom: 1px solid #e6ecf2;
	content: "";
	bottom: 0;
}

.logo img {
	display: block;
	max-width: 100%;
}

.logocaption {
	text-align: center;
	margin: 0 auto 9px auto;
	padding-bottom: 14px;
}

.logocaption a {
	color: #8b9a64;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	/* font-size: .65em; */
	font-size: 11.2px;
	clear: both;
	overflow: hidden;
	position: relative;
	line-height: 1.25em;
	padding-left: 14%;
}

.search-icon {
	font-size: 17px;
	color: #353b49;
	cursor: pointer;
	border: 0;
	background: none;
	outline: none;
}

@media (min-width: 600px) {

	.logo,
	.logocaption {
		margin: 0;
		padding: 0;
	}

	.logocaption a {
		display: block;
	}

	.logo:after {
		display: none;
	}
}

@media (min-width: 768px) {
	.page-header {
		border-bottom: none;
	}

	.page-header-cont {
		padding-top: 22px;
		padding-bottom: 17px;
	}
}

@media (max-width: 1024px) {
	.page-header {
		height: auto !important;
	}
}

/* @media (min-width: 1025px) and (max-width: 1199px) {
    .logocaption a {
        font-size: 8px;
    }
} */

@media (min-width: 1025px) {
	.page-header-cont {
		padding-top: 0;
		padding-bottom: 0;
	}

	.page-header-fixed {
		background: #fff;
		-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
		box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
	}

	.promotions-bar.hideheader,
	.top-header.hideheader,
	.page-header-fixed.hideheader {
		top: -140px;
	}

	.promotions-bar.js-scrolled {
		position: fixed;
		width: 100%;
		top: 0;
	}

	.top-header.js-scrolled {
		position: fixed;
		background: #353b49;
		width: 100%;
		top: 38px;
	}

	.page-header-fixed.js-scrolled {
		position: fixed;
		width: 100%;
		top: 84px;
	}

	.logo,
	.logocaption {
		max-width: none;
	}

	.logocaption a {
		font-size: 0.57vw;
	}
}

/* @media (min-width: 1160px) and (max-width: 1365px) {
    .logocaption a {
        font-size: 0.57vw;
    }
} */


@media (min-width: 1367px) {
	.logocaption a {
		font-size: 0.91vw;
	}
}

@media (min-width: 1366px) and (max-width: 1367px) {
	.logocaption a {
		font-size: 0.83vw;
	}
}

@media (min-width: 1600px) {
	.logocaption {
		padding-left: 2em;
	}

	.logocaption a {
		padding-left: 5%;
	}
}

@media (min-width: 1921px) {
	.logo {
		max-width: none;
	}

	.logocaption a {
		font-size: 0.69vw;
	}
}

/*Fixed Nav*/
.nav-fixed {
	background-color: #353b49;
	position: fixed;
	left: 0;
	bottom: 0;
	height: 44px;
	z-index: 999;
	width: 100%;
	-webkit-box-shadow: 0 -5px 5px rgb(0 0 0 / 10%);
	box-shadow: 0 -5px 5px rgb(0 0 0 / 10%);
}

.nav-fixed-rsrvbtn {
	float: left;
}

.top-header-phone .mobile-phone {
	display: inline-block;
	font-size: 13px;
	color: #fff;
	margin-left: 5px;
}

@media (min-width: 1025px) {
	.top-header-phone .mobile-phone {
		display: none;
	}
}

@media (max-width: 1220px) {
	.top-header-phone span {
		display: none;
	}
}

@media (max-width: 1024px) {
	.nav-fixed {
		position: relative;
	}

	.nav-fixed .top-header-phone a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.nav-fixed .top-header-phone span {
		font-family: "Montserrat", sans-serif;
		font-weight: 600;
		font-size: 12px;
		text-transform: uppercase;
	}
	.search-icon {
		position: absolute;
		right: 50px;
		width: 50px;
		color: #fff;
		text-align: center;
		height: 44px;
	}

	.nav-fixed-menubtn {
		position: absolute;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.nav-fixed [class*="btn-"] {
		padding: 0 28px;
		min-height: 44px;
		max-height: 44px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media (max-width: 767px) {
	.nav-fixed-rsrvbtn [class*="btn-"] {
		padding: 12px 20px;
	}
}

.nav-fixed-menubtn {
	float: right;
	width: 50px;
	background-color: #353b49;
	padding-top: 23px;
	color: #fff;
	font-size: 9px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-align: center;
	height: 44px;
	border: none;
	border-radius: 0;
	cursor: pointer;
	position: relative;
	border-left: 1px solid #4b5263;
	outline: none;
}

@media (max-width: 390px) {
	.nav-fixed-menubtn {
		width: 50px;
	}
}


.nav-fixed-menubtn:before {
	font-size: 18px;
	top: 8px;
}

.nav-fixed-menubtn.open {
	background-color: #e6ecf2;
	color: #353b49;
}

.nav-fixed-menubtn.open:before {
	font-size: 20px;
}

.nav-fixed-callbtn {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 44px;
	font-size: 22px;
}

.nav-fixed-callbtn a {
	color: #fff;
}

/*Top Header*/
.top-header {
	background-color: #353b49;
	position: relative;
	z-index: 9999;
}

.top-header-phone {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #fff;
	font-size: 16px;
	line-height: 1em;
	padding-top: 14px;
	padding-bottom: 14px;
}

.top-header-phone span {
	font-weight: 400;
	color: #c2ced7;
	font-family: "Manuale", serif;
}

.top-header-phone a {
	color: #fff;
}

.top-header-phone a:hover {
	color: #c2ced7;
}

.top-header-lang {
	width: 220px;
	text-align: center;
	padding: 4px 0 0 0;
	height: 44px;
	vertical-align: middle;
	border-left: 1px solid #4b5263;
	position: absolute;
	right: 0;
	top: 0;
}

.top-header-lang .gtranslate_wrapper {
	display: inline-block;
}

.top-header-lang label {
	display: inline-block;
	font-size: 14px;
	color: #c2ced7;
	line-height: 34px;
	padding-right: 5px;
	font-family: "Manuale", serif;
	font-weight: 400;
	text-transform: none;
}

.top-header-lang .selectric-wrapper {
	width: 64px;
	height: 34px;
	display: inline-block;
	padding: 0 0 0 0;
	vertical-align: middle;
}

.top-header-lang .selectric {
	background-color: #1c202a;
	border: 0;
}

.top-header-lang .selectric .label {
	height: 34px;
	line-height: 34px;
	font-size: 16px;
	margin-right: 20px;
	font-family: "Manuale", serif;
	color: #c2ced7;
	font-weight: 400;
}

.top-header-lang .selectric .button {
	height: 34px;
	background-color: #1c202a;
	width: 25px;
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}

	.ubermenu .ubermenu-item.ubermenu-item-level-0 .search-icon {
		line-height: 4em;
	}
}

@media (min-width: 1200px) and (max-width: 1366px) {
	.ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
		padding-top: 25px !important;
		padding-bottom: 25px !important;
	}

	.page-header-fixed .col-xs-6.col-md-9.col-lg-9 {
		width: 83.33333333%
	}

	.ubermenu .ubermenu-item.ubermenu-item-level-0 .search-icon {
		line-height: 3.5em;
	}

	.reserve-bttn a {
		line-height: 4.8em !important;
		padding: 0;
	}

	.reserve-bttn a:after {
		top: -8px !important;
		display: none;
	}

	.page-header-fixed.js-scrolled .ubermenu .ubermenu-item.ubermenu-item-level-0 .search-icon {
		line-height: 4.6em;
	}

	.page-header-fixed.js-scrolled .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
		padding-top: 25px !important;
		padding-bottom: 25px !important;
	}

	.ubermenu .ubermenu-item.ubermenu-item-level-0 {
		line-height: 5em !important;
	}

	.search-icon {
		font-size: 14px;
	}
}

.top-header-menu {
	float: right;
	margin-right: 200px;
	max-width: 626px;
	/*max-width: 480px;*/
}

.top-header-menu.contact {
	margin-right: 0 !important;
}

.top-header-menu ul li {
	line-height: 44px;
	font-size: 16px;
	color: #c2ced7;
}

.top-header-menu ul li:first-of-type {
	margin-right: 50px;
}

.top-header-menu ul li span {
	float: left;
}

.top-header-menu ul li img {
	float: left;
	padding-left: 4px;
	margin-left: 3%;
	max-height: 38px;
	width: auto !important;
}

.top-header-menu ul li a {
	color: #c2ced7;
	position: relative;
	display: block;
	padding-right: 22px;
}

.top-header-menu ul li a:hover {
	color: #d18523;
}

.top-header-menu ul li a:after {
	font-size: 12px;
	line-height: 44px;
	position: absolute;
	margin-left: 5%;
	/* right: 0; */
}

.top-header-menu ul,
.top-header-menu ul li{
	list-style: none;
	margin: 0;
	padding: 0;
}

/*@media (min-width: 1200px) {*/
/*	.top-header-menu {*/
/*		margin-right: 200px;*/
/*		!*max-width: 714px;*!*/
/*		max-width: 480px;*/
/*	}*/
/*}*/

/*@media (min-width: 1366px) {*/
/*	.top-header-menu {*/
/*		margin-right: 200px;*/
/*	}*/
/*}*/

/*Reserve Button*/
@media (min-width: 1200px) {
	.reserve-bttn {
		position: absolute;
		top: 0;
		right: 0;
		width: 220px;
		z-index: 0;
		height: 100%;
		background-color: #d18523;
	}

	.reserve-bttn a,
	.reserve-bttn a:after {
		font-size: 13px;
	}

	.js-scrolled .reserve-bttn a,
	.js-scrolled .reserve-bttn a::after {
		font-size: 13px;
		right: auto;
		top: 1px;
	}

	.js-scrolled .reserve-bttn a:hover::after {
		right: -5px;
	}

	.js-scrolled .reserve-bttn:hover a {
		background-color: transparent !important;
	}

	.js-scrolled .reserve-bttn:hover {
		background-color: #d07704;
	}

	.reserve-bttn a {
		display: block;
		-webkit-transition: all .5s ease !important;
		-o-transition: all .5s ease !important;
		transition: all .5s ease !important;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.reserve-bttn a:after {
		position: relative;
		top: 0;
		right: 0;
		width: 17px;
		/* height: 100%; */
	}

	.reserve-bttn a:hover:after {
		right: -30px;
	}
}

@media (min-width: 1366px) {

	.reserve-bttn a {
		padding: 0 26px 0 0;
		height: 100%;
	}

	.page-header-fixed.js-scrolled .reserve-bttn a {
		top: 50%;
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}

	.page-header-fixed.js-scrolled .reserve-bttn a,
	.page-header-fixed.js-scrolled .reserve-bttn a:after {
		font-size: 16px;
		line-height: normal;
	}
}

/*Serch Form*/
.searchform {
	display: none;
	background-color: #8b9a64;
	padding: 10px 0;
	position: absolute;
	width: 100%;
}

.searchform-cont {
	max-width: 750px;
}

.searchform-cont input[type="text"] {
	background: #fff;
	border: none;
	border-radius: 0;
	width: 100%;
	height: 48px;
	padding: 0 10px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	border: 2px solid #fff;
}

.searchform-cont [class*="btn-"] {
	border: 2px solid #d18523;
	cursor: pointer;
}

.searchform-cont [class*="btn-"]:hover {
	color: #d18523;
	background-color: #fff;
}

.searchform-cont [class*="col-"] {
	padding-left: 0;
	padding-right: 0;
}

.searchform-cont .row {
	margin-left: -0;
	margin-right: -0;
}

@media (min-width: 1200px) {
	.searchform-cont input[type="text"] {
		height: 58px;
	}
}

@media (max-width: 1025px) {
	.searchform {
		margin-top: 43px;
	}
}

/* Fix sticky header position for when admin bar visible
TODO: Uncomment if design has sticky header */
@media screen and (min-width: 1025px) {

	/*body.admin-bar .page-body {
margin-top: 32px;
}*/
	body.admin-bar .page-header-fixed.js-scrolled {
		top: 32px;
	}
}

@media (-webkit-min-device-pixel-ratio: 2),
(-o-min-device-pixel-ratio: 2/1),
(min-resolution: 192dpi) {
	/* TODO: Add Retina-specific logo here */
}

/**
* Navigation
*/
/**
* Secondary Navigation
*/
.nav-secondary ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-secondary ul li {
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 24px;
}

.nav-secondary ul li a {
	color: #353b49;
}

.header-trip {
	font-size: 14px;
	text-align: center;
	color: #4b5263;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	border-top: 1px solid #e6ecf2;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-top: 35px;
}

.nav-primary .header-trip a {
	color: #4b5263;
}

.header-trip img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

@media (min-width: 768px) {
	.nav-secondary ul li {
		font-size: 14px;
	}
}

/*
*
*/
.zigzag,
.heading-icon {
	margin-top: 5px;
	background: url(../img/zigzag.png) center bottom no-repeat;
}

@media (min-width: 1200px) {

	.zigzag,
	.heading-icon {
		margin-top: 30px;
	}
}

/**
* Masthead
*/
.banner {
	position: relative;
}

.banner-item {
	height: 611px;
}

.banner-img,
.banner-txt {
	height: 250px;
}

.banner-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 110%;
	display: block;
	opacity: .8;
}

/* @media (max-width: 767px) {
    .home .banner-img img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 110%;
        display: block;
        opacity: .8;
    }
} */

.banner-overlay {
	/* background-color: rgba(28, 32, 42, .2); */
	color: #fff;
	text-align: center;
	top: 0;
}

.banner-overlay-cont {
	text-align: center;
}

.banner-txt {
	padding-top: 60px;
}

.banner-form {
	position: relative;
	margin-top: 0;
	padding: 30px 20px;
	background: url(../img/guide-bg.png) 0 0 repeat;
	color: #fff;
	height: 361px;
}

.banner-form__content {
	-webkit-transition: opacity .2s linear;
	-o-transition: opacity .2s linear;
	transition: opacity .2s linear;
}

.banner-form.is-loading .banner-form__content {
	opacity: .3;
}

.banner-form__content h4,
.banner-form__content p {
	text-align: center;
}

.banner-form.is-loading:before {
	content: "";
	position: absolute;
}

.banner-form.is-loading:before {
	top: 50%;
	left: 50%;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 3px solid white;
	border-top-color: transparent;
	border-bottom-color: transparent;
	z-index: 1000;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: isLoading .75s linear infinite;
	animation: isLoading .75s linear infinite;
}

@-webkit-keyframes isLoading {
	0% {
		-webkit-transform: translate(-50%, -50%) rotateZ(0);
		transform: translate(-50%, -50%) rotateZ(0);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotateZ(360deg);
		transform: translate(-50%, -50%) rotateZ(360deg);
	}
}

@keyframes isLoading {
	0% {
		-webkit-transform: translate(-50%, -50%) rotateZ(0);
		transform: translate(-50%, -50%) rotateZ(0);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotateZ(360deg);
		transform: translate(-50%, -50%) rotateZ(360deg);
	}
}

.banner-form h4 {
	margin-bottom: 20px;
}

.banner-form button {
	cursor: pointer;
}

.banner-form p {
	font-family: "Montserrat", sans-serif;
	font-size: 12px;
	font-weight: 600;
	margin-top: 15px;
	text-transform: uppercase;
}

.form-select {
	margin-bottom: 6px;
}

.banner-form .facetwp-facet {
	margin-bottom: 5px;
}

@media (max-width: 599px) {
	.home .banner-item {
		height: 229px;
	}

	.home .banner-img,
	.home .banner-txt {
		height: 229px;
	}

	.home .banner-txt h1 {
		margin-bottom: 60px;
	}
}

@media (min-width: 767px) {
	.banner-item {
		height: 487px;
	}

	.banner-form {
		position: absolute;
		padding-left: 30px;
		padding-right: 30px;
		height: 237px;
	}

	.banner-form [class*="col-"] {
		padding-left: 3px;
		padding-right: 3px;
	}

	.banner-form [class*="btn-"] {
		padding-top: 11px;
		padding-bottom: 11px;
	}

	.banner-img img {
		opacity: 1;
	}
}

@media (min-width: 600px) and (max-width: 767px) {
	.banner-item {
		height: auto;
	}
}

@media (min-width: 768px) {

	.banner-item,
	.banner-txt {
		height: auto;
		padding-top: 0;
	}

	.banner-img,
	.banner-overlay {
		height: 650px;
	}

	.banner-form {
		padding-bottom: 15px;
		background: rgba(28, 32, 42, .6);
		width: calc(100% - 60px);
		margin: 43px auto 0;
		height: auto;
		max-width: 900px;
		bottom: 60px;
		left: 30px;
	}

	.banner-overlay-cont {
		margin-top: -100px;
	}

	.banner-form [class*="btn-"] {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.banner-form .row {
		margin-left: -3px;
		margin-right: -3px;
	}

}

@media (min-width: 1025px) {
	.banner {
		overflow: visible;
		height: 650px;
		top: -50px;
		z-index: 9;
	}

	.banner,
	.banner-item,
	.banner-overlay {
		height: 650px;
	}

	.banner-img {
		height: 830px;
		-webkit-transform: skewY(-2.73deg);
		-ms-transform: skewY(-2.73deg);
		transform: skewY(-2.73deg);
		overflow: hidden;
		background: #000;
	}

	.banner-img img {
		-webkit-transform: skewY(2.73deg);
		-ms-transform: skewY(2.73deg);
		transform: skewY(2.73deg);
	}

	.banner-overlay {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	.home .page-content {
		margin-top: -100px;
	}

	.home .page-content section:first-child {
		padding-top: 230px;
		width: 100%;
	}

	.banner-form {
		bottom: 30px;
		left: 50%;
		margin-left: -450px;
		position: absolute;
	}

	.banner-overlay-cont {
		margin-top: 0px;
	}
}

@media (min-width: 1200px) {

	.banner,
	.banner-item,
	.banner-overlay {
		height: 780px;
	}

	.banner-img,
	.banner-overlay {
		height: 830px;
	}

	.banner-overlay h1 {
		letter-spacing: 3px;
	}

	.banner-form {
		padding: 30px 40px;
		z-index: 9999;
		bottom: 130px;
	}

	.banner-overlay-cont {
		margin-top: -210px;
	}

	.banner-form .row {
		margin-left: -7px;
		margin-right: -7px;
	}

	.banner-form [class*="col-"] {
		padding-left: 7px;
		padding-right: 7px;
	}

	.banner-form [class*="btn-"] {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.home .page-content section:first-child {
		padding-top: 180px;
	}
}


/*Front Page Global CSS*/
.imgbttn,
.sngl-dstntn-similar-item-img {
	position: relative;
}

.imgbttn:before {
	height: 100%;
	top: 0;
}

.imgbttn-wbg:before {
	content: "";
	/* background: -webkit-gradient(linear,  left top, left bottom,  from(rgba(28,32,42,0)),to(rgba(28,32,42,0.7))); */
	/* background: linear-gradient(to bottom,  rgba(28,32,42,0) 0%,rgba(28,32,42,0.7) 100%); */
}

.sngl-dstntn-similar-item-img:before {
	content: "";
	background: -o-linear-gradient(top, rgba(28, 32, 42, 0) 0%, rgba(28, 32, 42, 0.3) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 32, 42, 0)), to(rgba(28, 32, 42, 0.3)));
	background: linear-gradient(to bottom, rgba(28, 32, 42, 0) 0%, rgba(28, 32, 42, 0.3) 100%);
}

.imgbttn-overlay {
	height: 100%;
	top: 0;
	text-align: center;
	color: #fff;
}

.imgbttn:before {
	background-color: transparent; /*rgba(28, 32, 42, .8)*/
}

.imgbttn-title:before {
	font-size: 21px;
	color: #fff;
	display: block;
	border: 2px solid #fff;
	width: 46px;
	height: 46px;
	line-height: 46px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
	-webkit-box-shadow: 0px 0px 4px #000;
	box-shadow: 0px 0px 4px #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.imgbttn:hover .imgbttn-title:before {
	color: #8b9a64;
	border: 2px solid #8b9a64;
}

.imgbttn-btn {
	display: none;
	position: absolute;
	bottom: 50%;
	width: 100%;
}

.imgbttn .imgbttn-btn {
	display: block;
}

.imgbttn-btn a {
	color: #ffab3e;
	padding-top: 14px;
	padding-bottom: 14px;
}

.trip-detail-box {
	float: none !important;
}

/*Side Slider*/
.side-slider-item {
	position: relative;
	cursor: pointer;
	width: 270px !important;
	padding-right: 10px;
	padding-left: 0;
}

.side-slider-item .imgbttn-title:before {
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.side-slider-item {
		width: 310px !important;
		padding-right: 25px;
	}
}

@media (max-width: 1024px) {
	.imgbttn-btn {
		bottom: 15px;
		padding: 0 15px;
	}

	.imgbttn-btn a.btn-tertiary {
		display: block;
		background: #d18523;
		color: #fff;
	}

	.home .imgbttn-wbg h4.imgbttn-title,
	.home .imgbttn-wbg p.icon-roadsign {
		text-shadow: 1px 2px 2px #000;
	}

	.home .imgbttn-wbg .imgbttn-btn span.btn-tertiary {
		display: block;
		background: #d18523;
	}
}

@media (min-width: 1025px) {

	.imgbttn:before {
		background-color: transparent;
	}

	.imgbttn:hover:before {
		background-color: rgba(28, 32, 42, .8);
	}

	.imgbttn .imgbttn-btn {
		display: none;
	}

	.imgbttn:hover .imgbttn-btn {
		display: block;
	}
}

@media (max-width: 1199px) {
	.home .imgbttn-wbg h4.imgbttn-title {
		font-size: 26px
	}
}

@media (min-width: 1920px) {
	.side-slider-item {
		padding-right: 32px;
	}
}

@media (min-width: 1920px) {
	.side-slider-item {
		width: 461px !important;
	}
}

@media (max-width: 500px) {

}

/*Section with bacground image*/
.sec-with-imgbg,
.sec-with-imgbg > div:first-child {
	position: relative;
}

.sec-with-imgbg > div:first-child {
	z-index: 9;
}

.sec-imgbg {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	top: 0;
	z-index: 1;
}

.sec-imgbg,
.logo:after,
.nav-fixed-menubtn:before,
.banner-overlay,
.imgbttn:before,
.imgbttn-overlay,
.destination:after,
.destination-card:before,
.destn-slide-cont,
.sec-tripstyle:after,
.trip-imgbttn-text,
.twocolm_withbg:before,
.cta-overlay,
.sec-safety-slantbg,
.masthead-cont,
.why-hike-with-us-bg {
	width: 100%;
	position: absolute;
	left: 0;
}

.sngl-dstntn-sec.sngl-dstntn-blog {
	overflow: hidden;
}

.sngl-dstntn-sec.sngl-dstntn-blog .sec-imgbg {
	height: 100%;
}

/**/
.welcome,
.sec-tripstyle {
	overflow: hidden;
}

.welcome-imgbg,
.sec-tripstyle-imgbg {
	width: auto;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 110%;
	display: block;
}

.sec-tripstyle-imgbg {
	height: 100%;
}

/**/
.welcome {
	color: #4b5263;
	padding-bottom: 60px;
}

.welcome > div {
	padding-top: 30px;
}

.welcome-txt {
	text-align: center;
}

.welcome-txt h3 {
	color: #1c202a;
	margin-bottom: 8px;
}

.welcome-txt p.large {
	margin-top: 8px;
	margin-bottom: 8px;
}


.welcome-list h5 {
	color: #1c202a;
	font-weight: 600;
	line-height: 19px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: none;
}

.welcome-list .mobile-accrdn-title {
	font-size: 17px;
	line-height: 1.1;
	padding-left: 45px;
	padding-top: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: none;
}

.welcome-list .mobile-accrdn-title:before {
	color: #8b9a64;
	font-size: 30px;
	top: 14px !important;
}

@media (min-width: 768px) {
	.welcome > div {
		padding-top: 75px;
	}

	.welcome-txt {
		padding-bottom: 15px;
	}

	.welcome-txt h3 {
		margin-bottom: 15px;
	}

	.welcome-txt p.large {
		margin-top: 12px;
		margin-bottom: 8px;
	}

	.welcome-list {
		padding-top: 25px;
	}

	.welcome-list h5 {
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.welcome-list-icon {
		font-size: 50px;
		color: #8b9a64;
		line-height: 50px;
	}

}

@media (min-width: 1200px) {
	.welcome-txt {
		text-align: left
	}

	.welcome-list {
		min-height: 208px;
		padding-top: 0;
		padding-bottom: 25px;
	}


	.welcome [class*="btn-"] {
		margin-top: 30px;
	}
}

@media (min-width: 1200px) and (max-width: 1365px) {
	.welcome [class*="btn-"] {
		margin-bottom: 30px;
	}
}

@media (min-width: 1920px) {
	.welcome-list {
		min-height: auto;
	}
}

/*Front Page News Callout Section*/
.homepage-announcement {
	z-index: 9;
	position: relative;
	border: 1px solid #e6ecf2;
	padding: 40px;
	margin-top: 40px;
	background-color: #fff;
	text-align: left;
}

.homepage-announcement__text h4:first-child {
	margin-top: 25px;
	margin-bottom: 15px;
}

.homepage-announcement__text p {
	margin-top: 10px;
	margin-bottom: 20px;
}

.welcome .homepage-announcement__text [class*="btn-"] {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.homepage-announcement {
		padding: 50px;
		margin-top: 50px;
	}

	.homepage-announcement__text h4:first-child {
		margin-top: 0;
	}

	.homepage-announcement .row {
		display: -moz-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.homepage-announcement [class*="col-sm-"] {
		display: -moz-flex;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.homepage-announcement img {
		-o-object-fit: cover;
		object-fit: cover;
		font-family: "object-fit: cover;";
		max-height: 300px;
		width: 100%;
	}

}


@media (max-width: 1024px) {
	.homepage-announcement__text h4 {
		font-size: 18px;
		line-height: 1.2em;
	}

	.homepage-announcement__text h3 {
		font-size: 24px;
		line-height: 1em;
	}
}

@media (min-width: 1200px) {
	.homepage-announcement {
		margin-top: 20px;
		padding: 60px;
	}

	.homepage-announcement__text p {
		margin-top: 0;
		margin-bottom: 27px;
	}
}

@media (min-width: 1200px) and (max-width: 1365px) {
	.homepage-announcement img {
		max-height: 400px;
	}
}

@media (min-width: 1366px) {
	.homepage-announcement [class*="col-sm-"] {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

/*Front Page Destination Section*/
.destination {
	color: #fff;
	margin-top: -50px;
	padding-bottom: 35px;
	overflow: hidden;
}

.destination:after {
	content: "";
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,353b49+100&0+0,1+100 */
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(53, 59, 73, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(53, 59, 73, 1)));
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(53, 59, 73, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#353b49", GradientType=0);
	/* IE6-9 */
	height: 447px;
	bottom: 0;
	z-index: 2;
}

.destination > div {
	padding-top: 245px;
}

.destination p {
	margin-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

.destination .btnlink {
	display: block;
}

@media (min-width: 768px) {
	.destination {
		padding-bottom: 55px;
	}

	.destination:after {
		height: 354px;
	}

	.destination .btnlink {
		display: inline-block;
	}
}

@media (max-width: 1199px) {
	.destination:after {
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,353b49+50,353b49+100&0+0,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
		background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(53, 59, 73, 0.75) 50%, rgba(53, 59, 73, 1) 100%);
		background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(53, 59, 73, 0.75)), to(rgba(53, 59, 73, 1)));
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(53, 59, 73, 0.75) 50%, rgba(53, 59, 73, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#353b49", GradientType=0); /* IE6-9 */
	}
}

@media (min-width: 1200px) {
	.destination {
		/* margin-top: -150px; */
		padding-bottom: 80px;
	}

	.destination:after {
		height: 584px;
	}

	.destination > div {
		padding-top: 525px;
	}

	.destination [class*="btn-"] {
		margin-top: 50px;
	}
}

/*.guide-choices .sec-imgbg {
width: 100%;
height: auto;
}*/
@media (min-width: 1524px),
(max-width: 1200px) and (min-width: 822px) {
	.guide-choices .sec-imgbg {
		height: auto;
	}
}

/*Destination Slider*/
.destination-card {
	background: url(../img/guide-bg.png) 0 bottom repeat #353b49;
	position: relative;
	padding-bottom: 70px;
}

.destination-card:before {
	content: "";
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#353b49+0,000000+100&1+40,0.2+100 */
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(top, rgba(53, 59, 73, 1) 0%, rgba(32, 35, 44, 1) 40%, rgba(0, 0, 0, 0.2) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(53, 59, 73, 1)), color-stop(40%, rgba(32, 35, 44, 1)), to(rgba(0, 0, 0, 0.2)));
	background: linear-gradient(to bottom, rgba(53, 59, 73, 1) 0%, rgba(32, 35, 44, 1) 40%, rgba(0, 0, 0, 0.2) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#353b49", endColorstr="#33000000", GradientType=0);
	/* IE6-9 */
	top: 0;
	height: 100%;
}

.destn-slide-cont {
	bottom: 30px;
}

.destn-slide-cont p {
	margin: 5px 0 15px;
}

.destn-slide-cont p i {
	font-size: 10px;
}

.destn-trip-count {
	background: #c2ced7;
	border-radius: 20px;
	width: 128px;
	height: 26px;
	margin: 0 auto;
	color: #4b5263;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 26px;
	font-size: 13px;
}

.js-guides-choice-destinations .badge {
	width: 100px;
}

@media (max-width: 767px) {
	.js-guides-choice-destinations .badge {
		top: 20px;
	}

	.js-guides-choice-destinations .widget {
		padding: 0 40px;
		margin-bottom: 0;
	}

	.js-guides-choice-destinations .slick-prev {
		left: 10px;
	}

	.js-guides-choice-destinations .slick-next {
		right: 10px;
	}
}

@media (min-width: 768px) {
	.destn-slide-cont p {
		font-size: 16px;
	}

	.js-guides-choice-destinations .widget:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 1024px) {
	.destn-slide-cont {
		bottom: 92px;
	}
}

@media (min-width: 1025px) {
	.js-guides-choice-destinations .sngl-dstntn-sec-cont {
		z-index: 2;
	}
}

@media (min-width: 1366px) {
	.destn-slide-cont {
		padding: 0 32px;
	}
}

@media (min-width: 1800px) {
	.destination-card {
		padding-bottom: 100px;
	}

	.destn-slide-cont {
		bottom: 46px;
		padding: 0 50px;
	}
}

@media (max-width: 500px) {

}

/*  */
.tooltip-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	border: 1px solid #e5ecf3;
	border-left: 0.6rem #e5ecf3 solid;
	padding: 1rem 2rem;
	margin: 1.5rem 0 0;
}

.tooltip-bar__icon {
	height: 2rem;
	border-radius: 2rem;
	width: 2rem;
	padding: 0.5rem;
	margin: 0 0.5rem 0 0;
}

.tooltip-bar__desc {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
}

.tooltip-bar__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 3rem 0 0;
	padding: .5rem 0;
}

/*Trip Styles Section*/
.sec-tripstyle {
	color: #4b5263;
	border-bottom: 1px solid #e6ecf2;
	position: relative;
}

.sec-tripstyle > div {
	padding-top: 60px;
	padding-bottom: 60px;
}

.sec-tripstyle:after {
	content: "";
	height: 65px;
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 1)));
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
	bottom: 0;
	z-index: 8;
}

.sec-tripstyle .slick-arrow:before {
	color: #1c202a;
	background: #c2ced7;
}

.sec-tripstyle h2 {
	color: #1c202a;
}

.trip-imgbttn {
	padding-top: 25px;
	padding-bottom: 25px;
}

.home .trip-imgbttn {
	padding-bottom: 25px;
}

.trip-imgbttn-text img {
	display: inline-block;
}

.trip-imgbttn-text {
	bottom: 30px;
}

.trip-imgbttn-text .imgbttn-title {
	text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.75);
}

.trip-imgbttn-text .imgbttn-title:before {
	margin-bottom: 15px;
}

.trip-styles-cards .imgbttn span {
	display: none;
}

.trip-styles-cards .imgbttn:before,
.trip-slider .imgbttn:before {
	background: -o-linear-gradient(top, rgba(28, 32, 42, .0) 0%, rgba(28, 32, 42, .0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 32, 42, .0)), to(rgba(28, 32, 42, .0)));
	background: linear-gradient(to bottom, rgba(28, 32, 42, .0) 0%, rgba(28, 32, 42, .0) 100%);
}

.trip-styles-cards .imgbttn:hover:before,
.trip-slider .imgbttn:hover:before {
	background-color: rgba(28, 32, 42, .8);
}

.trip-slider .imgbttn.imgbttn-wbg img {
	min-height: 300px;
	max-height: 300px;
	height: 100%;
	width: 100%;
}

.trip-slider .imgbttn span {
	display: none;
}

@media (min-width: 600px) {
	.trip-styles-cards {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.trip-styles-cards [class*="col-"] {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.trip-styles-cards [class*="col-"] a,
	.trip-styles-cards .page-destin-item {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

@media (min-width: 768px) {
	.trip-imgbttn {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.home .trip-imgbttn {
		padding-bottom: 0;
	}

	.trip-imgbttn-text {
		bottom: 40px;
	}

	.trip-slider .imgbttn.imgbttn-wbg img {
		min-height: 428px;
		max-height: 428px;
	}
}

@media (min-width: 1025px) {
	.trip-styles-cards [class*="col-"]:nth-of-type(3n+1) {
		clear: both;
	}

	.trip-styles-cards .imgbttn:hover span {
		display: block;
	}

	.trip-slider .imgbttn:hover span {
		display: block;
	}
}

/* No greater than 1024px, no less than 600px */
@media (max-width: 1024px) and (min-width: 600px) {
	.trip-styles-cards [class*="col-"]:nth-of-type(2n+1) {
		clear: both;
	}
}

​

@media (min-width: 1920px) {
	.sec-tripstyle > div {
		padding-top: 90px;
		padding-bottom: 80px;
	}

	.sec-tripstyle:after {
		height: 80px;
	}

	.sec-tripstyle p {
		margin-top: 25px;
	}
}

/* hike section */
.twocolm {
	background-color: #fff;
	color: #1c202a;
	padding-bottom: 20px;
	position: relative;
}

.twocolm > div {
	padding-top: 40px;
}

.single-post .twocolm > div {
	padding-top: 20px;
}

.twocolm-incont p {
	color: #4b5263;
	font-weight: 500;
	margin-top: 15px;
	margin-bottom: 15px;
}

.morecontent {
	display: block;
}

.morecontent a {
	font-size: 15px;
	font-family: "Manuale", serif;
	font-weight: 500;
	line-height: 20px;
	color: #d18523;
	padding: 10px 0;
	display: block;
	position: relative;
}

.morelink:after {
	content: "";
	position: absolute;
	top: 13px;
	left: 76px;
	width: 10px;
	height: 13px;
	background: url(../img/read-more-arrow.png) 0 0 no-repeat;
}

.morelink.less:after {
	content: "";
	position: absolute;
	top: 13px;
	left: 67px;
	width: 10px;
	height: 13px;
	background: url(../img/read-less-arrow.png) 0 0 no-repeat;
}

.avatar {
	border-radius: 50%;
}

@media (min-width: 768px) {
	.twocolm {
		text-align: center;
	}

	.twocolm > div,
	.single-post .twocolm > div {
		padding-top: 60px;
	}

	.twocolm-incont p:first-child {
		padding-top: 0;
		margin-top: 0;
	}

	.twocolm-incont p:last-child {
		padding-bottom: 0;
	}

	.twocolm-cont {
		padding-top: 40px;
		padding-bottom: 55px;
		text-align: left;
	}

	.twocolm-incont {
		position: relative;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 62px;
		-moz-column-gap: 62px;
		column-gap: 62px;
	}

	.twocolm-incont:before {
		content: "";
		background-color: #c2ced7;
		display: block;
		position: absolute;
		top: 0;
		left: 50%;
		height: 100%;
		width: 1px;
	}
}

@media (min-width: 1199px) {
	.twocolm > div {
		padding-top: 50px;
	}
}

@media (min-width: 1200px) {
	.twocolm-cont {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* two Column Content with background */
.twocolm_withbg {
	width: 100%;
	position: relative;
	padding-bottom: 175px;
	min-height: 700px;
	overflow: hidden;
}

.twocolm_withbg > img {
	top: auto;
	bottom: 0px;
	-o-object-fit: cover;
	object-fit: cover;
}

.twocolm_withbg:before {
	content: "";
	height: 144px;
	background: url(../img/twocolm-mask.png) 0 0 no-repeat;
	background-size: 100%;
	margin-top: -22px;
	top: 100%;
	z-index: 2;
}

.single-post .twocolm_withbg {
	min-height: 550px;
	border-top: 1px solid #c2ced7;
	margin-top: 60px;
}

@media (min-width: 768px) {

	.twocolm_withbg,
	.single-post .twocolm_withbg {
		padding-bottom: 350px;
		min-height: 900px;
	}

	.twocolm_withbg:before {
		margin-top: -54px;
	}
}

@media (min-width: 1025px) {
	.twocolm_withbg {
		height: 1080px;
	}

	.twocolm_withbg > img {
		max-height: 1080px;
	}

	.twocolm_withbg > div {
		padding-top: 81px;
	}

	.twocolm_withbg:before {
		margin-top: -70px;
	}
}

@media (min-width: 1199px) {
	.twocolm_withbg:before {
		margin-top: -104px;
	}
}

@media (min-width: 1200px) {
	.twocolm_withbg {
		height: 1250px;
	}

	.twocolm_withbg > img {
		max-height: 1250px;
	}
}

@media (min-width: 1499px) {
	.twocolm_withbg {
		height: 1430px;
	}

	.twocolm_withbg > img {
		max-height: 1430px;
	}
}

@media (min-width: 1699px) {
	.twocolm_withbg {
		height: 1400px;
	}

	.twocolm_withbg > img {
		max-height: 1400px;
	}
}

/* sec-instagram */
.sec-instagram {
	background: #fff;
	padding-bottom: 20px;
	text-align: center;
	color: #1c202a;
}

.sec-instagram > div {
	padding-top: 20px;
}

.sec-instagram a {
	padding: 0 0;
	margin: 10px 0 0;
	color: #8b9a64;
	display: inline-block;
}

.sec-instagram a:hover {
	color: #d18523;
}

.instagram-feeds {
	margin-top: 15px;
}

.instagram-feeds ul li {
	width: 33.333%;
	float: left;
	height: 107px;
}

.instagram-feeds ul li a {
	padding: 0 0;
	margin: 0 0;
	display: block;
	width: 100%;
	height: 100%;
}

.instagram-feeds ul li img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.instagram-feeds ul li:hover img {
	opacity: 0.8;
}

@media (min-width: 768px) {
	.instagram-feeds ul li {
		width: 25%;
		height: 190px;
	}
}

@media (min-width: 1025px) {
	.instagram-feeds ul li {
		width: 16.666%;
		height: 230px;
	}
}

@media (min-width: 1920px) {
	.instagram-feeds ul li {
		height: 320px;
	}
}

/* trips explore */
.cta {
	text-align: center;
	color: #fff;
	position: relative;
}

.cta_wheight {
	height: 450px;
}

.cta-overlay {
	background: rgba(28, 32, 42, .4);
	height: 100%;
	top: 0;
}

.cta-overlay > div {
	padding-top: 100px;
	padding-bottom: 100px;
}

.cta-overlay p {
	margin-top: 16px;
	color: #fff;
}

.trips-select-area {
	margin-top: 20px;
}

.trips-select-col {
	width: 100%;
	text-align: left;
}

.trips-select-col select {
	width: 100%;
}

.or {
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	line-height: 15px;
	color: #fff;
	text-transform: uppercase;
	margin: 4px 0;
}

@media (min-width: 600px) {
	.cta-overlay {
		background: rgba(28, 32, 42, .1);
	}

	.trips-select-area {
		width: 580px;
		margin: 0 auto;
		vertical-align: middle;
		margin-top: 40px;
	}

	.trips-select-col {
		width: 260px;
		display: inline-block;
		vertical-align: middle
	}

	.or {
		display: inline-block;
		vertical-align: middle;
		padding: 0 15px;
	}
}

@media (min-width: 1200px) {
	.cta_wheight {
		height: 840px;
	}

	.trips-select-area {
		margin-top: 65px;
	}
}

/* newsletter */
.home .newsletter {
	overflow: hidden;
}

.newsletter {
	background: #1c202a;
	padding-bottom: 40px;
	color: #fff;
}

.newsletter label {
	color: #fff;
}

.newsletter > div {
	padding-top: 45px;
}

.newsletter-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter p {
	color: #92a2af;
	margin: 10px 0;
}

.newsletter-form {
	position: relative;
	margin-top: 10px;
}

.newsletter-input {
	padding: 0 16px;
	width: 100%;
	height: 44px;
	background: #fff;
	border: none;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 20px;
	color: #666;
}


.newsletter-form [class*="btn-"] {
	width: 100%;
	height: 44px;
	background: #d18523;
	border: none;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 44px;
	color: #fff;
	padding: 0;
	margin: 15px 0 0;
	cursor: pointer;
}

.newsletter-form [class*="btn-"]:hover {
	background: #8b9a64;
	color: #fff;
}

.newsletter-form .wpcf7-not-valid-tip {
	position: relative;
	bottom: 0;
}

@media (min-width: 768px) {
	.newsletter p {
		font-size: 16px;
	}

	.newsletter-form {
		/*max-width: 510px;
margin-left: auto;
margin-right: auto;
position: relative;*/
	}

	.newsletter-form [class*="btn-"] {
		font-size: 12px;
		width: auto;
		padding: 0 28px;
		margin: 0;
		position: absolute;
		top: 0;
		right: 0;
	}

	.newsletter p {
		margin: 0;
	}

	.newsletter-content .push-top {
		margin-top: 30px !important;
	}
}

@media (min-width: 1025px) {
	.newsletter-content {
		text-align: left;
		max-width: none;
	}

	.newsletter-fstxt {
		margin: 0px 0px 0px -32px;
	}
}

@media (min-width: 1200px) {
	.newsletter-content .content h3 {
		float: left;
		margin-right: 20px !important;
		line-height: 1.3;
	}

	p.newsletter-fstxt {
		width: 95%;
	}
}

@media (min-width: 1500px) {
	.newsletter-content .content {
		margin-top: 10px
	}
}

/**/
.hightlighted-section {
	padding-top: 65px;
	color: #1c202a;
}

.hightlighted-section ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 20px;
	margin-right: 20px;
}

.hightlighted-section ul li {
	padding: 0 10px;
}

.hightlighted-section ul li:first-child {
	display: block;
	padding-bottom: 8px;
}

@media (max-width: 1199px) {
	.hightlighted-section ul li {
		width: 12%;
	}
}

@media (max-width: 767px) {
	.hightlighted-section ul li {
		width: 20%;
	}

	.hightlighted-section ul li:first-child {
		width: 100%;
	}

	.hightlighted-section ul li img {
		width: 100%;
		height: auto;
	}

	.hightlighted-section ul li h4 {
		text-align: center;
	}
}

@media (max-width: 600px) {
	.hightlighted-section ul li {
		width: 25%;
	}
}

@media (max-width: 400px) {
	.hightlighted-section ul li {
		width: 33%;
	}
}

@media (min-width: 768px) {
	.hightlighted-section ul li:first-child {
		display: inline-block;
		padding-bottom: 0;
		width: auto;
	}

	.hightlighted-section ul li h4 {
		line-height: 48px;
		padding: 0;
		margin-top: 10px;
		background: url(../img/zigzag.png) right bottom no-repeat;
	}

	.hightlighted-section ul li img {
		height: 100%;
		width: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
}

@media (min-width: 1200px) {
	.hightlighted-section ul li h4 {
		line-height: 64px;
		margin-top: 6px;
		margin-right: 16px;
	}
}

/**/
.page-hightlighted {
	border-bottom: 1px solid #e6ecf2;
}

.page-hightlighted .hightlighted-section {
	padding-top: 43px;
	padding-bottom: 35px;
}

/**/
.sec-safety {
	/*background: url(../img/mountain-bg-m.png) 0 bottom no-repeat;
background-size: 100% auto;*/
	color: #4b5263;
	padding-bottom: 55px;
}

.sec-safety > div {
	padding-top: 60px;
}

.sec-safety h3 {
	color: #1c202a
}

.sec-safety h3 {
	margin-bottom: 10px;
}

.sec-safety p {
	margin: 10px 0 40px 0;
}

.testimonial-content {
	max-width: 896px;
	margin: 0 auto;
}

.page-template-page-testimonial .intro-content-title {
	padding-right: 0 !important;
}

@media (min-width: 1200px) {
	.sec-safety p {
		margin: 20px 0 40px 0;
	}
}

@media (min-width: 1366px) {
	/*.page-template-page-testimonial .intro-content .col-lg-4 {*/
	/*    width: 50%;*/
	/*}*/
	.sec-safety p {
		margin: 20px 0 40px 0;
	}
}

.testimonial {
	background-color: rgba(53, 59, 73, 0.6);
	padding: 0;
}

.testimonial-inner {
	background-color: rgba(53, 59, 73, 0.6);
	padding: 70px 20px 30px 20px;
	text-align: center;
	position: relative;
	color: #fff;
}

.sec-safety .testimonial-inner p {
	padding: 0;
	color: #fff;
	margin-bottom: 20px;
}

.testimonial-inner:before,
.testimonial-inner:after {
	position: absolute;
	font-size: 33px;
	color: #8b9a64;
}

.testimonial-inner:before {
	left: 50%;
	top: 28px;
	margin-left: -16px;
}

.testimonial-inner:after {
	right: 20px;
	top: 44px;
	display: none;
}

.testimonial-tour {
	text-transform: uppercase;
	font-size: 12px;
	color: #c2ced7;
}

.testimonial-tour:before {
	background-color: #d18523;
	color: #fff;
	font-size: 12px;
	width: 20px;
	line-height: 20px;
	display: inline-block;
	border-radius: 50%;
	margin-right: 7px;
}

.testimonial-author {
	text-align: center;
	vertical-align: middle;
}

.testimonial-author span {
	font-size: 12px;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	padding-right: 10px;
}

.testimonial-author img {
	display: inline-block;
	vertical-align: middle;
}

.sec-safety [class*="btn-"] {
	/*font-size: 11px;
padding: 0 15px;
line-height: 30px;*/
	margin-top: 30px;
}

.sec-safety-slantbg {
	bottom: 0;
	z-index: 8;
}

.sec-safety-slantbg img {
	display: none;
}

@media (min-width: 768px) {
	.sec-safety {
		background-size: 100%;
		padding-bottom: 98px;
	}

	.sec-safety > div {
		padding-top: 95px
	}

	.testimonial {
		padding: 10px;
	}

	.testimonial-inner:before {
		left: 20px;
		top: 44px;
		margin-left: 0;
	}

	.testimonial-inner:after {
		display: block
	}

	.testimonial-inner {
		padding: 44px 70px;
	}

	.sec-safety img.sec-imgbg {
		-webkit-transform: skewY(-2.73deg);
		-ms-transform: skewY(-2.73deg);
		transform: skewY(-2.73deg);
		overflow: hidden;
	}
}

@media (min-width: 1200px) {
	.sec-safety {
		padding-bottom: 198px;
	}

	.testimonial-inner {
		padding: 44px 134px 30px;
	}

	.testimonial-inner:after {
		right: 30px;
	}

	.testimonial-inner:before {
		left: 30px;
	}
}

/* basecamp */
.basecamp {
	position: relative;
}

.guild-section {
	background: url(../img/guide-bg.png) repeat center;
	width: 100%;
	color: #fff;
	padding: 55px 20px;
	text-align: center;
}

.guild-section h3 {
	margin-bottom: 20px;
}

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

.basecamp-wrapper {
	padding: 100px 20px 44px;
	color: #fff;
}

.guild-title {
	font-family: "Montserrat", sans-serif;
	font-size: 10px;
	font-weight: 600;
	color: #c2ced7;
	letter-spacing: 2px;
	text-transform: uppercase;
	background-image: url(../img/guild-title-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 14px 40px;
	display: inline-block;
	min-width: 300px;
}

.basecamp-info {
	padding: 30px 0 80px;
}

.basecamp-info h1 {
	margin-bottom: 15px;
}

.basecamp-author-info-details h6 {
	font-size: 12px;
	color: #fff;
	font-weight: normal;
	font-family: "Manuale", serif;
}

.basecamp-author-info-details h5 {
	text-transform: uppercase;
	line-height: 1.4em;
}

.basecamp-author-info-details p {
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	color: #c2ced7;
	line-height: 1.1em;
}

.basecamp-testi [class*="btn-"] {
	font-size: 13px;
	padding: 10px 20px;
}

@media (max-width: 767px) {
	.guild-title {
		font-size: 12px;
	}

	.basecamp-author-info-details h6 {
		font-size: 18px;
	}

	.basecamp-author-info-details h5 {
		font-size: 22px;
	}

	.basecamp-author-info-details p {
		font-size: 18px;
	}
}

@media (min-width: 768px) {
	.guild-section p {
		margin-bottom: 30px;
	}

	.basecamp-author-image {
		width: 70px;
		display: inline-block;
		vertical-align: middle;
	}

	.basecamp-author-image img {
		display: block;
	}

	.basecamp-author-info-details {
		display: inline-block;
		vertical-align: middle;
		text-align: left;
		padding-left: 15px;
	}

	.basecamp-testi {
		max-width: 555px;
		margin: 0 auto;
	}

	.basecamp-info {
		padding: 30px 0 40px;
	}

	.basecamp-testi p {
		margin-top: 10px;
	}

	.basecamp-testi [class*="btn-"] {
		margin-top: 20px;
	}

	.basecamp-testi-quote {
		font-size: 21px;
		color: #8b9a64;
	}

	.basecamp-wrapper {
		padding-top: 150px;
		padding-bottom: 130px;
	}

	.basecamp-author-info {
		padding-top: 20px;
	}

	.guild-section {
		padding: 80px 20px;
	}
}

@media (min-width: 1025px) {
	.basecamp {
		z-index: 2;
	}

	.guild-section {
		width: 41.66666667%;
		text-align: left;
		padding: 150px 180px 70px 50px;
		margin-top: -60px;
	}

	.basecamp-section {
		position: absolute;
		right: 0;
		top: 0;
		width: 64%;
		height: 100%;
	}

	.guild-image {
		width: 41.66666667%;
	}

	.guild-image img {
		width: 100%;
	}

	.basecamp-info {
		padding: 30px 100px 40px;
	}

	.basecamp-testi {
		max-width: 650px;
		margin: 0 auto;
	}

	.basecamp-wrapper {
		padding-top: 0;
		padding-bottom: 0;
	}

	.guild-title {
		font-size: 12px;
		padding: 18px 50px;
	}
}

/* tour */
.tour {
	background: #fff;
	color: #1c202a;
	padding-bottom: 30px;
}

.home .tour {
	padding-bottom: 50px;
}

.tour > div:first-child {
	padding-top: 50px;
}

.tour-imgbg {
	top: auto;
	bottom: 0px;
}

.tour-info {
	text-align: center;
	margin-bottom: 30px;
}

.tour-info p {
	margin-top: 15px;
	margin-bottom: 15px;
}

.tour-col h4 {
	font-size: 17px;
	color: #1c202a;
	position: relative;
	padding-left: 35px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: none;
}

.tour-col h4:before {
	font-weight: 300;
	font-size: 25px;
	position: absolute;
	left: 0;
}

.tour-col h4:before {
	color: #bac3a3;
	top: 0;
}

.home .accrdn-title.icon-circled-check:before {
	padding-right: 8px;
}

.tour-col .accrdn-title {
	padding-left: 32px;
	font-size: 17px;
	color: #1c202a;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	text-transform: none;
}

.tour-col h5.icon-circled-check:before {
	position: absolute;
	left: 20px;
	top: 2px;
	color: #bac3a3;
	font-size: 25px;
}

@media (min-width: 768px) {
	.home .tour {
		padding-bottom: 100px;
	}

	.tour > div:first-child {
		padding-top: 80px;
	}

	.tour-info {
		margin-bottom: 50px;
	}

	.tour-col {
		padding-bottom: 46px;
	}

	.tour-col p {
		margin: 10px 0 0 36px;
	}
}

@media (min-width: 1025px) {
	.home .tour {
		padding-bottom: 230px;
	}

	.tour-info {
		padding-right: 15px;
	}

	.tour-info p {
		margin: 15px 0 25px;
	}

	.tour-pack-image {
		position: absolute;
		bottom: -18px;
		left: 0;
		z-index: 8;
		width: 32%;
	}

	.tour-col p {
		margin: 10px 0 0 36px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.home .tour .col-sm-12.col-lg-8 .row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media (min-width: 1200px) {
	.tour-info {
		text-align: left;
	}

	.tour > div:first-child {
		padding-top: 120px;
	}
}

@media (min-width: 1399px) {
	.home .tour {
		padding-bottom: 290px;
	}

	.tour-info {
		padding-right: 20px;
	}

	.tour-col p {
		margin: 6px 15px 0 36px;
	}
}

/*Page Intro text*/
.intro-content {
	overflow: hidden;
	padding-top: 30px;
	padding-bottom: 30px;
}

.intro-content-title h3 {
	margin: 0;
}

.page-id-223 .intro-content {
	padding-bottom: 0;
}

.intro-content-subtitle {
	margin-top: 15px;
	margin-bottom: 15px;
	color: #4b5263;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

@media (max-width: 767px) {
	.intro-content-title h2 {
		margin-bottom: 10px;
	}
}

@media (min-width: 767px) {
	.page-id-223 .img-left-text-right {
		margin-top: 60px;
	}
}

@media (min-width: 1025px) {
	.intro-content-title {
		padding-right: 45px;
	}

	.intro-content {
		overflow: hidden;
		padding-top: 56px;
		padding-bottom: 47px;
	}
}

@media (min-width: 1200px) {
	.intro-content-subtitle {
		font-size: 19px;
		line-height: 1.5em;
	}
}

@media (min-width: 1366px) {
	.intro-content-subtitle {
		font-size: 24px;
	}
}


/*landing page header section*/
.lp-page-header .page-header-cont {
	padding-top: 10px;
	padding-bottom: 10px;
}

.lp-page-header [class*="btn-"] {
	padding: 6px 15px;
}

@media (max-width: 599px) {
	.lp-page-header .lp-header-btn {
		text-align: center;
	}

	.lp-page-header [class*="btn-"] {
		font-size: 12px;
		width: 100%;
	}
}

@media (min-width: 600px) {
	.lp-page-header .page-header-cont {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.lp-page-header .lp-header-btn {
		float: right;
	}
}

@media (min-width: 768px) {
	.lp-page-header .page-header-cont {
		padding-top: 17px;
		padding-bottom: 17px;
	}

	.lp-page-header [class*="btn-"] {
		padding: 9px 20px;
	}
}


/*50/50 section*/
.halfimg,
.halfimg-incont {
	position: relative;
}

.halfimg {
	overflow: hidden;
}

.halfimg-txt {
	background: url(../img/guide-bg.png) 0 0 repeat #4b5263;
	color: #fff;
	padding: 55px 16px;
}

@media (min-width: 768px) {
	.halfimg-txt {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

@media (min-width: 1025px) {
	.halfimg {
		padding-top: 60px;
		margin-top: 80px;
		margin-bottom: 40px;
	}

	.halfimg-incont {
		padding-bottom: 60px;
	}

	.halfimg-txt {
		padding-right: 12%;
		margin-top: -60px;
	}

	.halfimg-pic {
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		overflow: hidden;
	}

	.halfimg-pic img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.page-id-8391 .halfimg-pic img {
		-o-object-fit: contain;
		object-fit: contain;
	}

	.halfimg-txt {
		padding: 78px 120px 74px 50px;
	}
}

@media (min-width: 1366px) {
	.halfimg-txt {
		padding-right: 261px;
	}
}

/**/
.content h1:first-child,
.content h2:first-child,
.content h3:first-child,
.content h4:first-child,
.content h5:first-child,
.content h6:first-child,
.content p:first-child,
.content ul:first-child {
	margin-top: 0;
}

.wysiwyg-gray {
	/*padding-bottom: 40px;*/
}

.wysiwyg-cntnt {
	margin-top: 44px;
	margin-bottom: 80px;
}

.wysiwyg-cntnt .wpcf7-submit {
	border: none;
}

/* mission page */
.page-id-2005 .wysiwyg-cntnt,
.page-id-2005 .wysiwyg-cntnt p {
	margin-bottom: 0;
}

/* about page */
.page-id-1978 .wysiwyg-cntnt {
	margin-bottom: 0;
}

.wysiwyg-gray-item {
	margin-bottom: 30px;
	margin-top: 30px;
}

.wysiwyg-gray .testimonial {
	margin-top: 40px;
	margin-bottom: 80px;
}

.wysiwyg-gray-cnt {
	padding: 35px;
}

.wysiwyg-gray-cnt .whypics {
	display: inline-block;
	width: 100%;
}

.wysiwyg-gray-cnt ul {
	margin-left: 15px;
}

@media (min-width: 768px) {
	.wysiwyg-cntnt {
		margin-top: 74px;
	}

	.wysiwyg-gray-cnt {
		padding: 72px 74px 50px;
	}

	.wysiwyg-gray-cnt ul {
		margin-left: 35px;
	}
}

/**/
.related-page {
	overflow: hidden;
}

.related-page > .container,
.imagebtns > .container,
.private-trip-types > .container {
	padding-top: 77px;
	padding-bottom: 68px;
}

@media (max-width: 767px) {
	.related-page > .container, .imagebtns > .container, .private-trip-types > .container {
		/* padding-top: 17px;
        padding-bottom: 8px; */
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.private-trip-types .col-md-8 p {
		margin-top: 5px;
		margin-bottom: 15px;
	}

	.private-trip-types-item-cont:last-child {
		padding-bottom: 0;
	}
}

/* about page */
.page-id-1978 .imagebtns > .container {
	padding-top: 47px;
}

.related-page-item {
	padding: 4px !important;
}

@media (min-width: 600px) {
	.related-page-item {
		padding: 22px !important;
	}

}

/**
* Blog Home
*/
/*blog masthead*/
.blog .masthead,
.blog .masthead-img {
	min-height: 400px;
}

.blog .cat-tags {
	display: none;
}

@media (min-width: 768px) {

	.blog .masthead,
	.blog .masthead-img {
		min-height: 321px;
	}
}

@media (min-width: 1025px) {

	.blog .masthead,
	.blog .masthead-img {
		min-height: 400px;
	}
}

/*blog intro content*/
.blog .intro-content,
.archive .intro-content {
	border-bottom: 1px solid #e6ecf2;
}

/*post*/
.post-big,
.widget-cta,
.post-small {
	height: 100%;
}

.post-big .post-img,
.widget-cta-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.post-big:hover,
.post-small:hover {
	-webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, .15);
	box-shadow: 0 7px 15px rgba(0, 0, 0, .15);
}

.post-template-single-blog hr {
	border: 1px solid #c2ced7;
	margin-top: 60px;
	margin-bottom: 60px;
}

.post-template-single-blog .accordion {
	border: 1px solid #c2ced7;
}

.post-template-single-blog .accordion p {
	display: block;
}

.post-template-single-blog .accordion-title {
	background-color: #e6ecf2;
	padding-right: 70px;
	padding-left: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

.post-template-single-blog .accordion-content {
	padding: 20px;
	border-top: 1px solid #c2ced7;
}

.post-template-single-blog .accordion-title:after {
	right: 20px;
}

.blog-section-heading {
	background-color: #e6ecf2;
	padding: 12px;
	padding-bottom: 6px;
	/* padding-top: 12px;
    padding-left: 10px;
    margin-top: 50px; */
}

@media (min-width: 768px) {
	.blog-section-heading {
		padding-bottom: 0px;
		/* margin-top: 80px; */
	}

	.blog-trip-style-cards [class*="col-"]:nth-of-type(2n+1) {
		clear: both;
	}
}

/**
* Blog - Jump to section
*/
.jump-to-wrapper {
	padding: 20px;
	margin: 30px 0;
	background: #e6ecf2;
}

.jump-to {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jump-to--heading {
	margin-top: 5px;
	margin-bottom: 5px;
}

.jump-to--item {
	background: #fff;
	padding: 10px 10px 6px 10px;
	font-family: "bebas_neuebold";
	font-weight: 400;
	text-transform: uppercase;
	font-size: 18px;
	width: auto;
	margin-right: 5px;
	margin-bottom: 5px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	line-height: 1.25em;
}

.jump-to--item:last-child {
	margin-right: 0px;
}

.jump-to--item:hover {
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, .15);
	box-shadow: 0 7px 15px rgba(0, 0, 0, .15);
}

@media (min-width: 768px) {
	.jump-to {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.jump-to--item {
		/* width: 100%;
        padding: 20px; */
	}
}

/**
* Blog -Gallery section
*/
.img-slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.img-slider .slick-slide {
	margin: 10px;
	height: auto;
	border: 1px solid #e6ecf2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/**
* Blog - Tags section
*/
.extra-tag-section {
	border-top: 1px solid #e6ecf2;
	border-bottom: 1px solid #e6ecf2;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 60px;
	margin-bottom: 60px;
}

.extra-tag-section .post-cat a {
	margin-right: 6px;
	margin-top: 6px;
	font-size: 12px;
	background-color: #d18523;
}

.extra-tag-section .widget_post-tag {
	padding-top: 0;
}

/**
* Blog - Trip Styles Cards
*/
.trip-styles--card {
	display: block;
	margin: 20px 0;
}

.trip-styles--desc {
	font-size: 16px;
	line-height: 1.5em;
}

.blog-trip-style-cards .imgbttn-wbg:before {
	content: "";
	background: -o-linear-gradient(top, rgba(28, 32, 42, 0) 0%, rgba(28, 32, 42, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 32, 42, 0)), to(rgba(28, 32, 42, 0.7)));
	background: linear-gradient(to bottom, rgba(28, 32, 42, 0) 0%, rgba(28, 32, 42, 0.7) 100%);
}

/*other post*/
.post-small {
	background-color: #fff;
	padding-left: 27px;
	padding-right: 27px;
	position: relative;
}

.post-lnk {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.post-img img {
	min-height: 200px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	max-height: 261px;
}

.post-small .post-img {
	margin: -1px -28px 32px;
	min-height: 200px;
	height: auto;
}

.post-cat a {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 10px;
	line-height: 2.2em;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;
	background-color: #c2ced7;
	padding: 3px 10px;
	border-radius: 50px;
	position: relative;
	z-index: 2;
	vertical-align: middle;
	margin: 2px 0;
}

.post-cont {
	color: #1c202a;
	display: block;
}

.post-cont h5 {
	margin-top: 8px;
	margin-bottom: 6px;
}

.post-cont p {
	margin-top: 6px;
}

/*featured post*/
.featured-post {
	padding-top: 25px;
	padding-bottom: 21px;
}

.featured-post .post-small {
	border: 1px solid #e7edf3;
}

.post-big-overlay {
	max-width: 566px;
	height: auto;
	top: auto;
	bottom: 0px;
	text-align: left;
	padding-left: 40px;
	padding-right: 40px;
}

.post-big-title {
	margin-top: 23px;
}

.post-big .post-cat a {
	background-color: rgba(194, 206, 215, .6);
}

.post-cat a:hover,
.post-big .post-cat a:hover {
	background-color: #d18523;
}

/**/
.widget-cta-top,
.widget-cta-bot {
	height: auto;
	padding-top: 11px;
}

.widget-cta-bot {
	top: auto;
	bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}

.widget_signup h4 {
	margin-bottom: 0;
}

.widget_signup h6 {
	margin-top: 0;
}

@media (max-width: 400px) {
	.post-big .post-img {
		min-height: 300px;
	}
}

@media (min-width: 1025px) {
	.widget-cta-bot {
		top: auto;
		bottom: 40px;
		padding-left: 35px;
		padding-right: 35px;
	}
}

/**/
.filter-bar {
	background-color: #fff;
	border: 1px solid #e6ecf2;
	margin-bottom: 18px;
	padding: 14px 17px;
}

.filter-cat,
.filter-sort {
	position: relative;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.filter-sort {
	font-weight: 700;
	font-size: 16px;
}

.filter-cat-btn,
.filter-cat-list a {
	padding: 13px 10px;
	color: #353b49;
}

.filter-bar .filter-cat a:hover {
	text-decoration: none;
}

.filter-cat-btn {
	padding-top: 16px;
	padding-bottom: 15px;
	text-transform: uppercase;
	background: none;
	position: relative;
	z-index: 9;
	border: 1px solid #fff;
	/* transition: all ease-in-out .2s; */
}

.filter-cat-btn:after {
	font-size: 11px;
	margin-left: 5px;
	-webkit-transition: all ease-in-out .2s;
	-o-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
}

.filter-cat-list {
	display: none;
	background-color: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99;
	margin-top: -1px;
	border: 1px solid #e6ecf2;
	height: 500px;
	overflow: scroll;
}

.blog .filter-cat-btn,
.post .filter-cat-btn,
.single-post .filter-cat-btn {
	font-size: 15px;
	outline: none !important;
	width: 100%;
	text-align: left;
	padding-right: 30px;
}

.blog .filter-cat-btn.--toggled,
.post .filter-cat-btn.--toggled,
.single-post .filter-cat-btn.--toggled {
	background: #e6ecf2;
	border-color: #c4c4c4;
}

.blog .filter-cat-btn.--toggled:active,
.post .filter-cat-btn.--toggled:active,
.blog .filter-cat-btn.--toggled:focus,
.post .filter-cat-btn.--toggled:focus,
.single-post .filter-cat-btn.--toggled:focus {
	border-color: #c4c4c4;
}

.blog .filter-cat-btn.--toggled:after,
.post .filter-cat-btn.--toggled:after,
.single-post .filter-cat-btn.--toggled:after {
	content: "\2715";
	font-size: .75rem;
	color: #e91e63;
}

.blog .filter-cat-list,
.post .filter-cat-list,
.single-post .filter-cat-list {
	height: auto;
	max-height: 300px;
	overflow: auto;
	background: #fff !important;
	background-color: #fff !important;
	width: 100%;
	border: 1px solid #c4c4c4;
}

.blog .filter-cat-list a,
.post .filter-cat-list a,
.single-post .filter-cat-list a {
	padding: 7px 10px;
	min-width: 100%;
	max-width: 100%;
}

/* scrollbar */
.blog .filter-cat-list::-webkit-scrollbar,
.post .filter-cat-list::-webkit-scrollbar,
.single-post .filter-cat-list::-webkit-scrollbar {
	width: 10px;
	min-width: 10px !important;
}

/* Track */
.blog .filter-cat-list::-webkit-scrollbar-track,
.post .filter-cat-list::-webkit-scrollbar-track,
.single-post .filter-cat-list::-webkit-scrollbar-track {
	-webkit-box-shadow: none !important;
	border-radius: 0px !important;
	border-left: 1px solid #c4c4c4;
}

/* Handle */
.blog .filter-cat-list::-webkit-scrollbar-thumb,
.post .filter-cat-list::-webkit-scrollbar-thumb,
.single-post .filter-cat-list::-webkit-scrollbar-thumb {
	border-radius: 0px !important;
	background: #c2ced7 !important;
	-webkit-box-shadow: none !important;
	border-left: 1px solid #c4c4c4;
	height: 128px !important;
}

.blog .filter-cat-list::-webkit-scrollbar-thumb:window-inactive,
.post .filter-cat-list::-webkit-scrollbar-thumb:window-inactive,
.single-post .filter-cat-list::-webkit-scrollbar-thumb:window-inactive {
	background: #eee !important;
}

.blog .filter-cat-list ul > li:before,
.post .filter-cat-list ul > li:before,
.single-post .filter-cat-list ul > li:before {
	display: none;
}

.filter-cat-list a {
	display: block;
	min-width: 300px;
	max-width: 300px;
}

.filter-cat-btn.open,
.filter-cat-list {
}

.filter-cat-btn:hover,
.filter-cat-btn.open,
.filter-cat-list a:hover,
.filter-cat-list .current-cat a {
	color: #d18523;
	background: #f8f8f8;
	border-color: #e6ecf2;
}

.filter-cat-btn.open {
	border-bottom-color: #f8f8f8;
}

.filter-search {
	position: relative;
}

.filter-search input {
	border: 1px solid #c2ced7;
	line-height: 51px;
	padding-left: 20px;
	padding-right: 56px;
	width: 100%;
}

.filter-search button {
	width: 46px;
	height: 45px;
	position: absolute;
	top: 0;
	right: 0;
	color: #1c202a;
	padding: 0;
}

.filter-search .search-icon:before {
	content: "\e912";
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.filter-search .fa-search:before {
	display: none;
}

.blog .filter-search,
.post .filter-search,
.single-post .filter-search {
	float: none;
}

.blog .filter-search input,
.post .filter-search input,
.single-post .filter-search input {
	width: 100%;
}

.filter-cat-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.filter-cat-wrapper .filter-cat-list li {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.filter-cat-wrapper .filter-cat-list li:hover a {
	background: #4b5263;
	color: #fff;
}

@media (max-width: 399px) {
	.filter-cat-btn {
		text-align: left;
	}

	.filter-cat {
		display: block;
	}
}

@media (max-width: 767px) {
	.filter-cat-list a {
		min-width: 250px;
		max-width: 250px;
	}
}

@media (min-width: 768px) {
	.filter-search {
		float: right;
	}

	.filter-search input {
		width: 385px;
	}
}

@media (max-width: 1024px) {

	.blog .filter-search,
	.post .filter-search,
	.single-post .filter-search {
		float: none;
	}

	.filter-cat-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: 10px;
	}

	.filter-cat-wrapper .filter-cat-btn:after {
		position: absolute;
		right: 10px;
		top: 42%;
	}

	.blog .filter-cat-btn,
	.post .filter-cat-btn,
	.single-post .filter-cat-btn {
		/* background: #e6ecf2; */
		border: 1px solid #c4c4c4;
		margin-bottom: 4px;
	}

	.blog .filter-cat-btn.--toggled,
	.post .filter-cat-btn.--toggled,
	.single-post .filter-cat-btn.--toggled {
		margin-bottom: 0;
	}
}

@media (min-width: 1200px) {
	.filter-search button {
		height: 54px;
	}
}

@media (max-width: 599px) {
	.blog .recent-post-lists .row {
		margin-left: -8px;
		margin-right: -8px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.blog .recent-post .col-xxs-6 {
		padding-left: 8px;
		padding-right: 8px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.blog .recent-post .post-small {
		padding-left: 8px;
		padding-right: 8px;
	}

	.blog .recent-post .post-small .post-img {
		margin: -1px -8px 16px;
		min-height: 110px;
	}

	.blog .recent-post .recent-post-lists .post-cont {
		padding-bottom: 8px;
	}

	.blog .recent-post .post-img img {
		min-height: 110px;
	}

	.blog .recent-post .post-cont h5 {
		font-size: 14px;
	}
}

/*recent-post*/
.recent-post {
	background-color: #f5f7fa;
	padding-top: 38px;
	padding-bottom: 121px;
}

.recent-post-lists {
	margin-top: 18px;
}

.recent-post-lists .post-cont {
	padding-bottom: 32px;
}

.post-cont .btn-primary {
	padding: 7px 20px;
	margin-top: 10px;
}

/**
* Single Post
*/
.single-post-cont {
	padding-top: 40px;
}

/*single post half-content*/
.single-post .halfimg {
	margin-top: 0;
	margin-bottom: 0;
}

/*Author Profile*/
.post-twocolm:before {
	display: none;
}

/**/
.post-meta {
	padding-top: 18px;
}

.post-date,
.post-share-btn {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 24px;
	color: #4b5263;
}

.post-date {
	float: left;
}

.post-share {
	float: right;
	text-align: right;
	position: relative;
}

.post-share-btn {
	background: none;
	border: 0;
}

.post-date:before,
.post-share-btn:after {
	position: relative;
	top: 2px;
}

.slide-to-top {
	border: none;
	padding: .5rem 1rem .2rem;
	background: #6d8136;
	color: #fff;
	font-weight: bold;
	font-family: "bebas_neuebold";
}

.slide-to-top:hover {
	opacity: .7;
	-webkit-transition: all ease-in-out .2s;
	-o-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s
}

.post-date:before {
	margin-right: 7px;
}

.post-share-btn:after {
	font-size: 20px;
	margin-left: 7px;
}

.post-share-btnlist {
	width: 73px;
	font-size: 18px;
	position: absolute;
	top: 100%;
	right: 0px;
	background-color: #fff;
	padding: 10px 0;
	border-radius: 10px;
	border: 1px solid #4b5263;
	display: none;
}

.post-share-btnlist a {
	display: block;
	color: #4b5263;
	line-height: 36px;
	width: 40px;
	border: 2px solid #4b5263;
	text-align: center;
	border-radius: 50%;
	margin: 5px auto;
}

.post-share-btnlist a:hover {
	color: #d18523;
	border-color: #d18523;
}

/**/
.post-title {
	margin-bottom: 10px;
	margin-top: 30px;
}

h1.post-title {
	font-size: 32px;
}

@media (min-width: 1025px) {
	.post-title {
		font-size: 52px;
	}

	h1.post-title {
		font-size: 72px;
	}
}

@media (min-width: 1200px) {
	.page-sidebar {
		padding-left: 35px;
	}
}

/**/
.widget {
	margin-bottom: 69px;
}

.widget:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.widget:last-child {
		margin-bottom: 69px;
	}
}

/**/
.widget_author {
	border: 1px solid #e6ecf2;
	font-size: 15px;
	padding: 18px 20px 30px;
}

.widget_author-cat {
	padding-top: 4px;
}

.widget_post-tag {
	padding-top: 24px;
}

/* Orange circle tag style */
/*.widget_author-cat a {
font-size: 17px;
background-color: #d18523;
line-height: 1em;
padding: 10px 15px;
}*/
.widget_author .post-cat a:hover {
	background-color: #4b5263;
}

.widget_author .post-cat a {
	margin: 5px 4px;
}

/**/
.widget_search {
	margin-bottom: 40px;
}

.widget_search .screen-reader-text {
	display: none;
}

.widget_search .search-form {
	border: 1px solid #c2ced7;
	padding-left: 20px;
	padding-right: 50px;
	position: relative;
}

.widget_search-field {
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	height: 53px;
	width: 100%;
	border: 0;
	padding: 0;
}

.widget_search-btn {
	border: 0;
	height: 100%;
	width: 46px;
	font-size: 16px;
	background-color: transparent;
	position: absolute;
	top: 0;
	right: 0;
	color: #1c202a;
	padding: 0;
}

/**/
.widget_recent_entries h6 a {
	color: #1c202a;
	text-transform: none;
}

.widget_recent_entries article {
	color: #4b5263;
}

.sidebar__title-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.sidebar__title-box h6 {
	padding-right: 20px;
}

.related-post-block {
	border: 1px solid #e6ecf2;
	margin-bottom: 1rem;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.related-post-block > .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.related-post-block:hover {
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, .15);
	box-shadow: 0 7px 15px rgba(0, 0, 0, .15);
}

@media (max-width: 599px) {
	.sidebar__title-box h6 {
		font-size: 14px;
	}
}

/**/
.widget-destn-item {
	margin-bottom: 30px;
}

.widget-destn-item .imgbttn {
}

.widget-destn-item .imgbttn-img,
.guides-imgbtn {
	min-height: 276px;
	max-height: 380px;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/**
* Destination Page
*/
.page-destin-list {
	background: url(../img/guide-bg.png) 0 0 repeat;
	min-height: 300px;
	padding-top: 20px;
	padding-bottom: 30px;
}

.page-destin-list__headline {
	color: #fff;
	margin-bottom: 0;
	margin-top: 0;
}

.tax-trip_location .page-destin-list {
	padding-top: 50px;
	background: #eff4f7;
	border-bottom: 1px solid #e6ecf2;
}

.tax-trip_location .page-destin-list__headline {
	margin-top: 0;
}

.tax-trip_location .page-destin-list__headline {
	color: #000;
}

.tax-trip_location .page-destin-list .slick-arrow {
	top: -3px;
	left: initial;
	z-index: 99;
}

.tax-trip_location .page-destin-list .slick-prev {
	right: 55px;
}

.tax-trip_location .page-destin-list .slick-next {
	right: 20px;
}

.m-swipe-container {
	text-align: center;
}

.m-swipe img,
.m-swipe span {
	display: inline-block;
	vertical-align: middle;
}

.m-swipe img {
	padding-right: 5px;
}

@media (max-width: 599px) {
	.tax-trip_location .page-destin-list__headline {
		width: 75%;
	}
}

@media (min-width: 600px) {
	.tax-trip_location .page-destin-list .slick-arrow {
		top: -13px;
	}

	.tax-trip_location .page-destin-list .slick-prev {
		right: 75px;
	}
}

@media (max-width: 767px) {
	.tax-trip_location .destin-list__carousel [class*="col-"] {
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 10px;
	}

	.tax-trip_location .destin-list__carousel .page-destin-item {
		display: block;
		max-width: 85vw;
		margin: 0 auto;
		position: relative;
	}
}

@media (min-width: 1025px) {
	.tax-trip_location .page-destin-list .slick-arrow {
		top: -23px;
	}

	.tax-trip_location .page-destin-list .slick-prev {
		right: 75px;
	}

	.tax-trip_location .page-destin-list .slick-next {
		right: 17px;
	}
}

/*.page-destin-list>.container {
    margin-bottom: -60px;
}
*/
.page-destin-item {
	overflow: hidden;
}

.page-destin-img {
	min-height: 270px;
	max-height: 380px;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	aspect-ratio: 7 / 4;
}

.page-destin-title {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	text-transform: none;
	text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.95);
}

.page-exprncs {
	background: url(../img/destination/page-destination-bg.jpg) center no-repeat;
	background-size: cover;
	padding-top: 114px;
	padding-bottom: 80px;
}

.page-exprncs-slider {
	padding-top: 7px;
}

.page-exprncs-slider .slick-slide > div,
.page-exprncs-slider .page-exprncs-item,
.page-exprncs-slider .testimonial,
.page-exprncs-slider .testimonial-inner {
	height: 100%;
}

.page-exprncs-slider .slick-slide > div {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.testimonial-tour {
	min-height: 40px;
}

.page-exprncs-slider .slick-track {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.page-exprncs-slider .slick-slide {
	padding-top: 9px;
}

.page-exprncs-item .testimonial-inner {
	padding: 45px 20px 20px;
}

.page-exprncs-item .testimonial-inner:before {
	top: -12px;
	left: 50%;
	margin-left: -16px;
}

.page-exprncs-mbtn {
	padding: 8px 20px;
	margin-top: 41px;
}

@media (min-width: 768px) {
	.page-exprncs-item .testimonial-inner:before {
		top: -22px;
	}
}

/*@media (min-width: 1025px) {
.page-exprncs-item .testimonial-inner {
height: 405px;
}
}*/
@media (min-width: 1366px) {
	.page-exprncs {
		min-height: 801px;
	}

	.page-exprncs-item {
		width: 325px !important
		/*293*/;
	}
}

/**/
.page-wysiwyg {
	padding-top: 73px;
	padding-bottom: 52px;
}

/**/
.guide-filter-list {
	font-size: 14px;
	text-align: center;
	display: none;
}

.guide-filter-list a {
	color: #acaeb3;
	font-size: 14px;
	border-bottom: 2px solid #fff;
	padding: 2px 5px 0;
}

.guide-filter-list a.is-active,
.guide-filter-list a:hover {
	color: #1c202a;
	text-transform: uppercase;
	text-decoration: none;
	border-color: #d18523;
}

.guide-filter-all {
	text-transform: uppercase;
	border-left: 1px solid #c2ced7;
}

.guide-filter-cont {
	min-height: 93px;
}

.guide-filter-title span {
	font-size: 15px;
	display: block;
	line-height: 1em;
}

@media (min-width: 480px) {
	.guide-filter-title span {
		display: inline-block;
		position: relative;
		top: -2px;
		left: 5px;
	}
}

@media (min-width: 1025px) {
	.guide-filter-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.guide-filter-title span {
		font-size: 16px;
	}
}

@media (min-width: 1366px) {
	.guide-filter-list {
		padding-left: 60px;
	}
}

/**/
.guide-lists {
	padding-top: 19px;
	border-top: 1px solid #e6ecf2;
	position: relative;
	z-index: 2;
}

.guide-btn {
	position: relative;
	z-index: 9;
	top: 38px;
}

.guild-title {
	margin-bottom: 24px;
}

.guide-picture {
	width: 100%;
}

.guide-choices {
	padding-bottom: 21px;
	position: relative;
	z-index: 1;
}

.guide-position {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .03em;
	padding: 10px 28px;
	margin-top: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin-bottom: 0;
	min-height: 85px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.guide-name {
	font-size: 16px;
	padding-top: 5px;
	padding-bottom: 5px;
}


.guide-lists .flex-stretch-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}


.flex-stretch-row .guide-bttn-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	/*    border: 1px solid #e6ecf2;*/
}

.flex-stretch-row .guide-bttn-content
	/* Guide Bio Popup */
.guide-bio-wrap {
	margin-bottom: 20px;
}

.guide-bio-info,
.guide-testimonial-wrap,
.guide-testimonials-wrap h4 {
	text-align: center;
}

.guide-bio-info h4 {
	margin-top: 0;
}

.guide-bio-wrap .guide-picture {
	width: 175px;
	height: auto;
	margin: 0 auto 14px auto;
}

.guide-testimonial-wrap {
	margin-left: 40px;
	text-align: left;
	margin-top: 25px;
	margin-bottom: 25px;
}

.guide-testimonial {
	position: relative;
}

.guide-testimonial:before {
	content: "\e910";
	font-family: "icomoon" !important;
	font-style: normal;
	position: absolute;
	display: inline-block;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	font-size: 28px;
	left: -42px;
	color: #8b9a64;
	top: 10px;
}

.guide-testimonial-name {
	text-transform: uppercase;
	margin-top: 8px;
	font-size: 14px;
}

.bio-popup hr {
	border-top: 3px solid #e6ecf2;
	margin-bottom: 40px;
	border-bottom: 0;
	border-left: 0;
}

@media (min-width: 768px) {

	.guide-position {
		padding: 10px 10px;
	}

	.guide-testimonial:before {
		font-size: 42px;
		left: -62px;
	}

	.guide-bio-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.guide-testimonial-wrap {
		margin-left: 60px;
	}

	.guide-bio-info,
	.guide-testimonial-wrap,
	.guide-testimonials-wrap h4 {
		text-align: left;
	}

	.guide-bio-wrap .guide-picture {
		margin: 0 20px 0 0;
	}

	.guide-testimonial-name {
		font-size: 16px;
	}
}

@media (min-width: 1366px) {
	.guide-position {
		padding: 10px 28px;
	}
}

/*Testimonial Page*/
.tstmnl-sec {
	padding-top: 60px;
	padding-bottom: 38px;
}

.tstmnl-sec {
	position: relative;
}

.tstmnl-sec .grid [class*="col-"] {
	/* NOTE: Added to fix review items not filling space on mobile and other responsive sizes */
	flex: 1 1 auto;
}

.tstmnl-imgbg,
.tstmnl-imgbg img {
	position: absolute;
	top: 0;
	width: 100%;
}

.tstmnl-rate,
.tstmnl-rate-item {
	height: 100%;
	background-color: #fff;
}

.tstmnl-rate {
	text-align: center;
	padding: 17px 20px 27px;
}

.tstmnl-rate-img,
.tstmnl-rate-btn {
	position: relative;
	padding-top: 18px;
	padding-bottom: 16px;
}

.tstmnl-rate-img:before,
.tstmnl-rate-btn:before {
	content: "";
	width: 82px;
	height: 1px;
	background-color: #e6ecf2;
	display: inline-block;
	position: absolute;
	left: 50%;
	margin-left: -41px;
}

.tstmnl-rate-img:before {
	bottom: 0;
}

.tstmnl-rate-btn:before {
	top: 0;
}

.tstmnl-rate-count {
	color: #fff;
	display: inline-block;
	padding: 4px 6px;
	margin-top: 21px;
}

.tstmnl-rate-star {
	color: #d18523;
	margin-top: 7px;
	margin-bottom: 2px;
}

.tstmnl-rate p {
	margin-top: 2px;
	margin-bottom: 13px;
}

.tstmnl-rate-item {
	padding: 21px 12px 20px;
}

.tstmnl-secbtn {
	color: #8b9a64;
	font-size: 15px;
	font-weight: 500;
	position: relative;
	top: -9px;
}

.tstmnl-secbtn:hover {
	text-decoration: none !important;
	color: #d18523;
}

.tstmnl-secbtn:after {
	margin-left: 5px;
	position: relative;
	top: 2px;
}

.js-testimonial-slider {
	padding-left: 0;
	padding-right: 0;
}

.js-testimonial-slider .tstmnl-rate-item.tstmnl-trip-advisor {
	min-height: 440px !important; /*Changes from 320*/
	margin-left: 15px;
	margin-right: 15px;
}

.js-testimonial-slider #CDSWIDSSP {
	width: 100% !important;
}

.js-testimonial-slider .slick-arrow {
	top: 85%;
}

/**/
.widSSPData {
	padding: 7px 10px 7px;
	font: normal 12px Verdana, Bitstream Vera Sans, Arial, Helvetica, sans-serif;
}

.widSSPBranding {
	margin-bottom: 12px;
	border-bottom: 1px solid #b7b7b7;
}

.widSSPBranding dt {
	width: 218px;
	height: 24px;
	overflow: hidden;
	margin: 6px 0 6px;
}

.widSSPBranding dt.widSSPTagline {
	height: auto;
	margin-bottom: 9px;
	color: #b7b7b7;
	font: normal 10px Arial, Verdana, Bitstream Vera Sans, Helvetica, sans-serif;
}

.widSSPSummary a {
	text-decoration: underline;
	color: #069;
}

.widSSPData .widSSPH18 {
	font: 700 16px Arial, Helvetica, sans-serif;
	color: #069;
}

.widSSPData .widSSPH11 {
	padding: 9px 0 3px;
	padding-top: 12px;
	font-weight: 700;
	font-size: 11px;
	color: #333;
}

.widSSPData .widSSPTrvlRtng .widSSPOverall {
	margin-bottom: 11px;
}

.widSSPData .widSSPTrvlRtng .widSSPOverall div {
	padding-left: 2px;
	color: #b7b7b7;
	font: normal 11px Arial, Helvetica, sans-serif;
}

.widSSPData .widSSPTrvlRtng .widSSPOverall div b {
	font-weight: 400;
	color: #b7b7b7;
	font: normal 12px Arial, Helvetica, sans-serif;
}

.widSSPOptional + .widSSPOptional {
	border-top: 1px solid #b7b7b7;
}

.widSSPData .widSSPInformation {
	height: auto;
	overflow: hidden;
	margin-top: 2px;
	padding: 12px 0 18px;
}

.widSSPData .widSSPInformation .widSSPPopIdx b {
	display: block;
	margin-bottom: 3px;
	font-size: 11px;
	color: #333;
}

.widSSPData .widSSPInformation .widSSPPopIdx .widSSPPopIdxData {
	font-family: ArialMT, Tahoma, Bitstream Vera Sans, sans-serif;
	color: #00a680;
	font-size: 14px;
}

.widSSPData .widSSPInformation .widSSPPopIdx .widSSPPopIdxNumbers {
	font-weight: 700;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

.widSSPnarrow .widSSPData .widSSPAll {
	padding: 3px 0 0 3px;
	width: 95%;
}

.widSSPData .widSSPAll .widSSPReadReview {
	font: normal 11px Arial, Helvetica, sans-serif;
	letter-spacing: 0;
	padding-right: 8px;
	margin: 0;
}

.widSSPData .widSSPAll a:link {
	color: #069;
	font-size: 11px;
	line-height: normal;
	text-decoration: underline;
}

.widSSPData .widSSPLegal {
	margin: 5px 2px 2px;
	font-size: 11px;
	color: #b7b7b7;
	clear: both;
}

/**/
.tp-widget-review {
	font-family: "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
	font-size: 13px;
	line-height: 18px;
	word-wrap: break-word;
}

.tp-widget-review {
	border-radius: 2px;
	line-height: 18px;
	overflow: hidden;
	padding: 16px;
	position: relative;
	word-wrap: break-word;
}

.tp-widget-review .tp-widget-stars {
	margin: 0 0 20px;
}

.tp-widget-review .tp-widget-stars-wrapper {
	margin: 0 0 8px;
}

.tp-widget-review .tp-widget-review__name {
	color: #727273;
	font-size: 0;
	line-height: 1.2;
	margin: 0 0 4px;
}

.tp-widget-review .tp-widget-review__name strong {
	color: #727273;
	font-size: 13px;
}

.tp-stars--5 .tp-star:nth-of-type(-n+5) .tp-star__canvas,
.tp-stars--5 .tp-star:nth-of-type(-n+5) .tp-star__canvas--half {
	fill: #00b67a;
}

.tp-widget-review .tp-widget-stars .date {
	position: absolute;
	right: 16px;
	top: 16px;
}

.tp-widget-review .tp-widget-stars .date {
	font-size: 12px;
	margin: 0 0 0 auto;
}

.tp-widget-review .tp-widget-stars .date {
	color: #727273;
	font-size: 10px;
	line-height: 1;
}

.tp-widget-review .header {
	color: #191919;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	margin: 0 0 12px;
}

.tp-widget-review .header {
	margin: 0 0 8px;
}

.tp-widget-review .text,
.tstmnl-yelp-cont {
	position: relative;
	padding-bottom: 8px;
	/*min-height: 328px;*/
	overflow: hidden;
}

.tp-widget-review .text:not(.showall):after,
.tstmnl-yelp-cont:after {
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 85%, #fff 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(85%, #fff), to(#fff));
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 85%, #fff 100%);
	bottom: 0;
	content: "";
	font-size: 0;
	height: 50px;
	left: 0;
	pointer-events: none;
	position: absolute;
	width: 100%;
}

[data-readmore] {
	overflow: hidden;
}

.tp-widget-review .read-more,
.tstmnl-yelp-read-more {
	text-align: center;
	color: #00b67a;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
}

.height-auto {
	height: auto !important;
}

/**/
.tstmnl-yelp {
	padding: 5px 16px;
	overflow: hidden;
}

.tstmnl-yelp iframe {
	max-width: 100% !important;
	width: 100% !important;
	min-width: 100% !important;
}

.tstmnl-yelp p,
.tstmnl-yelp-head {
	font-size: 13px !important;
	line-height: 1.28571em !important;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #333;
	margin-top: 10px;
	margin-bottom: 10px;
}

.tstmnl-yelp-head {
	padding-bottom: 5px;
}

.tstmnl-yelp-head img {
	float: left;
	margin-right: 8px;
}

.tstmnl-yelp-read-more {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #d32323;
	text-transform: capitalize;
}

/**/
.page-testimonial {
	padding-top: 80px;
	padding-bottom: 30px;
}

.page-testimonial-item {
	border-top: 3px solid #e6ecf2;
	position: relative;
	padding-top: 40px;
	padding-bottom: 20px;
	display: none;
}

.page-testimonial-item:before {
	font-size: 42px;
	color: #8b9a64;
	position: absolute;
	left: -62px;
	/*top: 80px;*/
}

.page-testimonial-name cite {
	text-transform: uppercase;
	font-style: normal;
}

.page-testimonial-item-item {
	border-top: 0px;
	padding-top: 0;
}

/*
* Global
* Trip Destination Post Type Template
* single-trip.php
*/
.sngl-dstntn-spacer {
	padding-top: 80px;
	padding-bottom: 80px;
}

.sngl-dstntn-desc {
	padding-top: 48px;
	padding-bottom: 44px;
}

.sngl-dstntn-desc-addrss h5:before {
	color: #8b9a64;
	margin-right: 5px;
}

.readmoreToggle {
	position: relative;
	display: none;
	text-decoration: none !important;
}

.readmoreToggle:focus {
	text-decoration: none !important;
}

@media ( max-width: 767px ) {
	.readmoreToggle {
		display: block;
	}


	.single-trip-description {
		height: 130px;
		overflow: hidden;
		position: relative;
	}

	.single-trip-description.open {
		height: auto;
	}

	.single-trip-description.open::after {
		display: none;
	}

	.single-trip-description::after {
		content: "";
		background: rgb(255, 255, 255);
		background: linear-gradient(180deg, rgb(255 255 255 / 38%) 0%, rgba(255, 255, 255, 1) 100%);
		bottom: 0;
		left: 0;
		width: 100%;
		height: 60px;
		position: absolute;
	}

	.single-trip-description.open ~ a.readmoreToggle::after {
		content: "Read less …";
		position: absolute;
		background-color: #fff;
		left: 0;
		padding-right: 10px;
	}
}

@media (min-width: 1025px) {
	.single-trip-description .accordion-title {
		font-size: 18px;
	}
}

.single-trip-video__img-container {
	position: relative;
	display: block;
	background-color: #111;
}

.single-trip-video__img-container:before,
.single-trip-video__img-container:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: block;
}

.single-trip-video__img-container:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 25px;
	border-color: transparent transparent transparent #fff;
	z-index: 1000;
}

.single-trip-video__img-container:after {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: rgba(17, 17, 17, .5);
	z-index: 500;
	-webkit-transition: background-color .25s;
	-o-transition: background-color .25s;
	transition: background-color .25s;
}

.single-trip-video__img-container:hover:after {
	background-color: rgba(17, 17, 17, .75);
}

.single-trip-video__img {
	opacity: .5;
	-webkit-transition: opacity .25s;
	-o-transition: opacity .25s;
	transition: opacity .25s;
}

.single-trip-video__img-container .single-trip-video__img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
}

.single-trip-video__img-container:hover .single-trip-video__img {
	opacity: .8;
}

/*
* Banner
*/
.sngl-dstntn-mbanner {
	position: relative;
	display: block;
}

.sngl-dstntn-mbanner:before {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 16px;
	color: #fff;
	line-height: 40px;
	background-color: #8c9b64;
	width: 40px;
	text-align: center;
}

@media (min-width: 600px) {

	.sngl-dstntn-banner .full-width-slider .slick-slide > div,
	.sngl-dstntn-banner .full-width-slider-img {
		min-height: 350px !important;
	}
}

@media (min-width: 768px) {
	.sngl-dstntn-banner img.full-width-slider-img {
		border-left: solid #fff;
		border-right: solid #fff;
		border-width: 0.025em;
	}

	.sngl-dstntn-banner .full-width-slider .slick-slide > div,
	.sngl-dstntn-banner .full-width-slider-img {
		max-height: 430px !important;
	}

	.sngl-dstntn-banner .full-width-slider-img {
		max-width: 100% !important;
		width: auto !important;
		height: auto;
	}
}

@media (max-width: 1024px) {
	.sngl-description-content h3 {
		margin-bottom: 0;
	}

	.sngl-description-content .single-trip-description p:first-child {
		margin-top: 10px;
	}
}

@media (min-width: 1366px) {

	.sngl-dstntn-banner .full-width-slider .slick-slide > div,
	.sngl-dstntn-banner .full-width-slider-img {
		max-height: 400px !important;
	}
}

/*
* Description sidebar
*/
/*price*/
.sngl-dstntn-price {
	line-height: 1em;
	background-color: #4b5263;
	color: #c2ced7;
	text-transform: uppercase !important;
	margin-top: 20px;
}

.sngl-dstntn-price .package {
	border-left: 1px solid #353b49;
	padding-bottom: 9px;
	padding-top: 21px;
}

.sngl-dstntn-price .package:first-child {
	border-left: none;
}

.sngl-dstntn-price .single {
	border-top: 1px solid #353b49;
	padding-top: 8px;
	padding-bottom: 8px;
}

.sngl-dstntn-price h5 {
	font-size: 21px;
}

.sngl-dstntn-price h5,
.sngl-dstntn-price .single b {
	color: #fff;
}

.ht-n-open-toggle {
	background-color: #6f8439 !important;
}

@media (min-width: 1025px) {
	.sngl-dstntn-price {
		margin-top: 0;
	}

	.ht-n-open-toggle {
		right: 248px;
	}
}

@media (min-width: 1200px) {
	.sngl-dstntn-price {
		font-size: 14px;
	}

	.sngl-dstntn-price h5 {
		font-size: 28px;
	}
}

/*discount*/
.sngl-dstntn-discount {
	background-color: #f0f4f7;
	color: #000;
	font-size: 15px;
	line-height: 1.734em;
	padding-top: 2px;
	padding-bottom: 2px;
	border: 1px solid #e6ecf2;
}

/*details and more info combine css*/
.sngl-dstntn-moreinfo,
.sngl-dstntn-details, .sngl-dstntn-details-subratings {
	border-left: 1px solid #e6ecf2;
	border-right: 1px solid #e6ecf2;
}

.sngl-dstntn-details .details-item,
.sngl-dstntn-moreinfo, .sngl-dstntn-details-subratings .details-item,
.sngl-dstntn-moreinfo {
	padding: 20px;
	font-size: 16px;
}

.difficulty-subtext {
	text-align: center;
	width: 120px;
	font-weight: 400;
	color: #565755;
	font-size: 15px;
	margin-top: -26px;
}

.sngl-dstntn-details .details-item, .sngl-dstntn-details-subratings .details-item {
	border-bottom: 1px solid #e6ecf2;
}

.sngl-dstntn-details span {
	font-size: 1.154em;
	font-family: "Manuale", sans-serif;
	font-weight: 400;
}

.sngl-dstntn-details .details-item .icon-info, .sngl-dstntn-details-subratings .details-item icon-info {
	padding: 1px 15px 1px 0;
}

@media (min-width: 768px) {
	.single-trip .sngl-dstntn-details .row, .single-trip .sngl-dstntn-details-subratings .row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.sngl-dstntn-details .details-item:nth-of-type(2n+1) {
		clear: both;
	}
}

@media (max-width: 1024px) {
	.sngl-dstntn-details .sngl-dstntn-sec-cont {
		width: 100%;
	}
}

@media (min-width: 1025px) {
	.sngl-dstntn-details .details-item, .sngl-dstntn-details-subratings .details-item {
		padding: 10px 0px 10px 33px;
	}
}

/**/
.sngl-dstntn-moreinfo {
	border-bottom: 1px solid #e6ecf2;
	/*font-size: 15px;*/
}

.sngl-dstntn-moreinfo ul {
	margin-bottom: 25px;
}

.sngl-dstntn-moreinfo li {
	padding-right: 15px;
}

.sngl-dstntn-moreinfohelp {
	padding: 20px;
	margin-bottom: 20px;
}

.sngl-dstntn-moreinfo [class*="btn-"] {
	margin-top: 10px;
}

.sngl-dstntn-moreinfopvt {
	border-top: 1px solid #e6ecf2;
	padding-top: 15px;
	margin-top: 13px;
}

@media (min-width: 1025px) {
	.sngl-dstntn-moreinfo {
		padding: 38px;
	}
}

/*
* single-trip.php template CSS
* Section: Trip Dates
*/
.trip-dates-heading {
	font-size: 22px;
}

.trip-dates-subheading {
	font-size: 19px;
	color: #4c5167;
}

.trip-dates-key {
	border: 1px solid #e6ecf2;
	border-left: 12px solid #e6ecf2;
	padding: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #1c202a;
	font-size: 14px;
	margin-bottom: 41px;
}

.trip-dates-key--item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 14px;
	margin-right: 14px;
}

.trip-dates-key--item:last-child {
	margin-bottom: 0;
}

.icon-circle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	color: #fff;
	margin-right: 6px;
}

.icon-circle > span {
	position: relative;
	top: 1px;
}

.icon-circle > span img {
	height: 15px;
}

.available .icon-circle {
	background-color: #6d892c;
}

.going-fast .icon-circle {
	background-color: #752624;
}

.request-reservation .icon-circle {
	background-color: #4a5060;
}

.trip-dates-key--item .icon-info {
	cursor: pointer;
}

.trip-dates-key--item .icon-info:before {
	color: #d4831d;
	font-weight: bolder;
	margin-left: 4px;
}

.messageCell {
	background: #e6ecf2;
	padding: 16px 23px 12px 23px;
}

@media (min-width: 652px) {
	.trip-dates-key--item {
		margin-bottom: 0;
	}
}

@media (min-width: 768px) {
	.trip-dates-heading {
		background: #e6ecf2;
		padding: 16px 23px 12px 23px;
	}

	.trip-dates-message {
		font-size: 24px;
	}

	.trip-dates-key {
		padding: 16px 32px;
	}

	.trip-dates-key--item {
		margin-right: 26px;
		margin-bottom: 0px;
	}

	.trip-dates-subheading {
		font-size: 40px;
	}
}

@media (min-width: 1025px) {
	.trip-dates-key--item {
		margin-right: 36px;
	}
}

@media (min-width: 1200px) {
	.trip-dates-key--item {
		margin-right: 56px;
	}
}

/* individual date styles - styled w max-width */
.trip-dates-container > [class*="col-"] {
	margin-bottom: 20px;
}

.trip-dates-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
}

.trip-datebox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #1c202a;
	border: 1px solid #d4831d;
	position: relative;
	height: 100%;
}

.trip-datebox:before {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	content: "\e921";
	font-family: "icomoon";
	background: #d4831d;
	padding: 4px 10px;
	color: #fff;
}

.trip-datebox-cont {
	padding: 3px 13px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.3em;
	display: inline-block;
	color: #1c202a;
}

.page-body .trip-datebox:hover {
	text-decoration: none;
	opacity: .7;
}

.trip-datebox-avail {
	border: 1px solid #6d892c;
}

.trip-datebox-avail:before {
	content: "\e921";
	background: url(https://wildlandtrekking.secure.force.com/TripDates/resource/1541015796000/Icon/check-mark.png) no-repeat center #6d892c;
	background-size: 15px auto;
	color: transparent;
	height: 80%;
}

.trip-datebox-goingfast {
	border: 1px solid #752624;
}

.trip-datebox-goingfast:before {
	content: "\e91f";
	background: url(https://wildlandtrekking.secure.force.com/TripDates/resource/1541015796000/Icon/hourglass.png) no-repeat center #752624;
	background-size: 15px auto;
	color: transparent;
}

.trip-datebox-email {
	border: 1px solid #4a5060;
}

.trip-datebox-email:before {
	content: "\e91e";
	background: url(https://wildlandtrekking.secure.force.com/TripDates/resource/1541015796000/Icon/envelope.png) no-repeat center #4a5060;
	background-size: 15px auto;
	color: transparent;
}

@media (max-width: 767px) {
	.trip-datebox {
		text-align: center;
		display: block;
		margin-top: 20px;
	}

	.trip-datebox:before {
		width: auto;
		height: auto;
		left: 0;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.trip-datebox-cont {
		padding: 4px 0;
		font-size: 12px;
		line-height: 1.3em;
		width: 100%;
	}

	.trip-dates-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding-right: 20px;
		padding-left: 20px;
	}

	.trip-dates-container > [class*="col-"] {
		width: calc(25% - 5px);
		margin-right: 5px;
		margin-bottom: 12px;
		padding-left: 0px;
		padding-right: 0px;
	}

	.trip-dates-container > [class*="col-xxs"] {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0;
		margin-top: 26px;
	}

	.trip-dates-container > [class*="col-xxs"]:first-child {
		margin-top: 0;
	}
}

/*
* single-trip.php template CSS
* Section: Trip ITINERARY
*/
.sngl-dstntn-itinenary {
	background-color: #e6ecf2;
	color: #000;
}

.sngl-dstntn-itinenary ul {
	margin: 0;
}

.sngl-dstntn-itinenary li {
	font-size: 17px;
	line-height: 1.846em;
	color: #1c202a;
	font-weight: 600;
}

.sngl-dstntn-itinenary .center-block:first-child > h3 {
	margin-top: 0;
}

/*
* single-trip.php template CSS
* Section: Accomodations
*/
.sngl-dstntn-accom img {
	width: 100%;
}

.sngl-dstntn-accom-item {
	padding-top: 24px;
	padding-bottom: 24px;
}

/*
* single-trip.php template CSS
* Section: Trip Reviews
*/
/*
* single-trip.php template CSS
* Section: Similar Trips : You might also like...
*/
.sngl-dstntn-similar-item,
.blog-item {
	background-color: #fff;
	height: 100%;
	display: block;
	text-decoration: none !important;
	border: 1px solid #e6ecf2;
	margin-bottom: 1rem;
	clear: both;
	-webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, .10);
	box-shadow: 0 7px 15px rgba(0, 0, 0, .10);
}

.sngl-dstntn-similar-item-img,
.blog-item-img {
	position: relative;
}

.sngl-dstntn-similar-item-img img {
	min-height: 250px;
	max-height: 380px;
	height: 100%;
	width: 100%;
}

.sngl-dstntn-similar .sngl-dstntn-similar-item-img img {
	max-height: 250px;
}

.sngl-dstntn-similar-day,
.blog-item-date {
	position: absolute;
	left: 22px;
	bottom: 20px;
	color: #fff;
}

.bgc-tertiary .sngl-dstntn-similar-item {
	border: 0px;
}

/*
* single-trip.php template CSS
* Section: Si
*/
.sngl-dstntn-similar-day {
	font-family: "bebas_neuebold";
	font-size: 18px;
	text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.75);
}

.sngl-dstntn-similar-day:before {
	font-size: 15px;
	padding-right: 6px;
}

.sngl-dstntn-similar-day--right {
	left: auto;
	right: 22px;
}

.sngl-dstntn-similar-item-cont {
	padding: 22px;
	font-size: 14px;
	color: #4b5263;
}

.sngl-dstntn-similar-item-cont h5 {
	color: #000;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	text-transform: capitalize;
	font-weight: 700;
}

.sngl-dstntn-similar-item-cont strong {
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 800;
	color: #000;
}

.sngl-dstntn-similar-item-img::before {
	/*position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    bottom: 0px;
    top: auto;*/
	display: none;
}

.sngl-dstntn-similar-difficulty img {
	vertical-align: middle;
}

.sec-with-floating-sidebar .sngl-dstntn-similar-difficulty img {
	vertical-align: middle;
	display: inline-block;
}

.sngl-dstntn-days,
.sngl-dstntn-cost {
	display: inline-block;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

@media (min-width: 1366px) and (max-width: 1599px) {
	/* Pages with the Trip Filter Sidebar only - Have the trip cards break into two columns */
	.archive.tax-trip_location .sngl-dstntn-sec-cont [class*="col-"],
	.archive.tax-trip_type .sngl-dstntn-sec-cont [class*="col-"],
	.page-template-page-destination-style .sngl-dstntn-sec-cont [class*="col-"] {
		width: 50%;
	}
}

/*blog-item-cont*/
.blog-item-img:before {
	content: "";
	width: 100%;
	height: 80%;
	position: absolute;
	bottom: 0;
	background: -o-linear-gradient(top, rgba(28, 32, 42, 0) 0%, rgba(28, 32, 42, 0.7) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 32, 42, 0)), to(rgba(28, 32, 42, 0.7)));
	background: linear-gradient(to bottom, rgba(28, 32, 42, 0) 0%, rgba(28, 32, 42, 0.7) 100%);
}

.blog-item-cont {
	padding: 28px 26px;
}

.blog-item-cont h3 {
	font-size: 22px;
	font-family: "Montserrat", sans-serif;
	text-transform: capitalize;
	font-weight: 700;
}

.blog-item-date:before {
	padding-right: 5px;
	font-size: 13px;
}

.blog-item-cont [class*="btn-"] {
	font-size: 12px;
	line-height: 14px;
	padding: 12px 25px 12px 25px;
}

/*sticky-sidebar filter*/
@media ( min-width: 1025px ) {
	.sticky-sidebar {
		position: -webkit-sticky;
		position: sticky;
		top: 76px;
	}

	.admin-bar .sticky-sidebar {
		top: 105px;
	}
}

@media ( min-width: 1200px ) {
	.sticky-sidebar {
		position: -webkit-sticky;
		position: sticky;
		top: 66px;
	}

	.admin-bar .sticky-sidebar {
		top: 100px;
	}
}


/*side-tabmenu*/
.side-tabmenu {
	padding: 34px 31px 38px;
	background-color: #fff;
	border: 1px solid #c2ced7;
	font-size: 16px;
}

.side-tabmenu li {
	padding-top: 15px;
	padding-bottom: 15px;
}

.side-tabmenu li a {
	color: #000;
	font-size: 26px;
	font-family: "bebas_neuebold";
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
}

.side-tabmenu li a.current {
	border: 2px solid #d18523 !important;
	padding: 10px;
	padding-bottom: 5px;
}

.sngl-dstntn-sec [class*="btn-"] {
	padding-top: 15px;
	padding-bottom: 15px;
}

.side-tabmenu .btn-primary {
	padding: 18px 5px;
	width: 100%;
}

.side-tabmenu .smoothlnk.btn-primary {
	margin-bottom: 5px;
}

.side-tabmenu .side-calendar {
	margin-top: 15px;
}

/*Floating Sidebar*/
.sec-with-floating-sidebar,
.sngl-dstntn-sec-cont {
	position: relative;
	z-index: 1;
}

.sec-with-floating-sidebar img {
	display: block;
	max-width: 100%;
	height: auto;
}

.floating-sidebar {
	width: 100%;
	position: absolute;
	top: 0px;
	z-index: 9;
}

.floating-sidebar-cont {
	position: absolute;
	z-index: 999;
}

.sngl-dstntn-mobile-accordion {
	padding-left: 16px;
	padding-right: 16px;
	border-top: 1px solid #c2ced7;
}

.sngl-dstntn-mobile-accordion.active {
	border-bottom: 1px solid #f0f4f7;
}

.sngl-dstntn-mobile-accordion .mobile-accrdn-title {
	padding: 0;
	margin-bottom: 0.6em;
}

.sngl-dstntn-mobile-accordion.active .mobile-accrdn-title {
	border-bottom: none;
	background: url(../img/minus.png) right center no-repeat;
}

@media (min-width: 1366px) and (max-width: 1500px) {
	.side-tabmenu {
		padding: 20px;
	}
}

@media (max-width: 1024px) {
	.mobile-accordion-container {
		display: none;
	}
}

@media (min-width: 1025px) {
	.sngl-dstntn-sec-cont {
		z-index: 999;
		min-height: 581px;
	}
}

.sngl-dstntn-sec-cont .content {
	padding: 1rem;
	border: 1px solid #c2ced7;
	margin: 1.5rem 0 0;
	font-weight: 400;
}

.sngl-dstntn-sec-cont .accordion-cont.accordion-active {
	border-bottom: 0;
}

.sngl-dstntn-itinenary .sngl-dstntn-accordion .content img.alignleft,
.sngl-dstntn-itinenary .sngl-dstntn-accordion .content img.alignright {
	float: none;
}

#iFrameResizer0 {
	min-height: 100px !important;
	border: 1px solid #c2ced7;
}

body.single-trip .sngl-dstntn-sec #iFrameResizer0 {
	/* NOTE: Disables borders on iframes on individual trip pages, was causing issues with the trip-dates area */
	border: 0;
}

.js-calendar-iframe {
	border: 0 !important;
}

.g-recaptcha #iFrameResizer0 {
	min-height: auto !important;
	border: 0;
}

@media (max-width: 767px) {
	.sngl-dstntn-sec-cont .accordion-cont ul {
		margin-left: 15px;
	}

	.sngl-dstntn-sec-cont .accordion-cont ul > li:before {
		width: 6px;
		height: 6px;
	}
}

/**
* Fin a trip template
* page-find-a-trip.php
*/
.filter-tab {
	border-top: 1px solid #e6ecf2;
	border-bottom: 1px solid #e6ecf2;
	padding-top: 14px;
	padding-bottom: 7px;
	text-transform: uppercase;
	font-size: 13px;
}

.filter-tab h4 span {
	font-size: 16px;
	line-height: 26px;
	position: relative;
	bottom: 3px;
	left: 4px;
}

.filter-tab a {
	text-transform: uppercase;
	color: #acaeb3;
	position: relative;
	display: block;
}

.filter-tab a:hover {
	color: #4b5263;
	text-decoration: none;
}

.filter-tab a:hover:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #d18523;
}

.is-loading {
	display: block;
	width: 100%;
	position: absolute;
	text-align: center;
}

.sidebar-filter .is-loading {
	text-align: left;
	position: relative;
}

.sidebar-filter .facetwp-facet.is-loading:before {
	content: "";
	position: absolute;
}

.sidebar-filter .facetwp-facet.is-loading:before {
	top: 50%;
	left: 50%;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 3px solid #5c6372;
	border-top-color: transparent;
	border-bottom-color: transparent;
	z-index: 1000;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: isLoading .75s linear infinite;
	animation: isLoading .75s linear infinite;
}


/**/
.sidebar-filter {
	border: 1px solid #e6ecf2;
	background: url("../img/sidebar-filter-bg.jpg") no-repeat center bottom;
	margin-right: 30px;
	padding: 23px 36px 70px;
}

.fixed {
	position: fixed;
}

.sidebar-filter h6 {
	font-size: 14px;
	text-transform: uppercase;
	padding-top: 24px;
	padding-bottom: 24px;
	margin: 0;
}

.sidebar-filter h6:before {
	display: inline-block;
	font-size: 13px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	border: 1px solid #8b9a64;
	text-align: center;
	border-radius: 50%;
	color: #8b9a64;
	margin-right: 7px;
}

.sidebar-filter h6:after {
	font-size: 11px;
	color: #8b9a64;
	float: right;
	line-height: 26px;
}

.sidebar-filter li {
	margin: 0;
	border-bottom: 1px solid #c2ced7;
}

.sidebar-filter li > div {
	border-top: 1px solid #c2ced7;
	background-color: rgba(255, 255, 255, .5);
	padding: 26px;
}

.sidebar-filter li > div li {
	border: 0;
	padding: 0;
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.sidebar-filter {
		margin-right: 5px;
		padding: 23px 23px 70px;
	}
}


/**/
.trip-destination-list {
	padding-top: 10px;
	position: relative;
	z-index: 1;
}

.trip-destination-list .sngl-dstntn-similar-item-img img {
	min-height: 250px;
	max-height: 250px;
	height: 100%;
	width: 100%;
}

.trip-destination-list .sngl-dstntn-sec-cont .facetwp-load-more.btn-primary.no-arrow {
	outline-color: #d18523;
}

.trip-destination-list .facetwp-load-more.no-arrow:after {
	content: "\e914" !important;
	margin-left: 5px;
}

.trip-destination-list .sngl-dstntn-sec-cont .facetwp-facet {
	margin-top: 10px;
}

.trip-destination-list .sngl-dstntn-sec-cont .facetwp-facet.is-loading {
	position: relative;
}

.trip-destination-list .sngl-dstntn-sec-cont .facetwp-facet.is-loading:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 3px solid white;
	border-top-color: transparent;
	border-bottom-color: transparent;
	z-index: 1000;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: isLoading .75s linear infinite;
	animation: isLoading .75s linear infinite;
}

.facetwp-facet-difficulty div[data-value]:before {
	content: "";
	width: 4.6rem;
	height: 1.3rem;
	position: relative;
	display: block;
	background: #f0f0f0;
	margin: 4px 0;
	background-image: url("https://wildlandtrekking.com/content/uploads/2020/05/difficulty1.png");
}

.facetwp-facet-difficulty div[data-value="2"]:before {
	background-image: url("https://wildlandtrekking.com/content/uploads/2020/05/difficulty2.png");
}

.facetwp-facet-difficulty div[data-value="3"]:before {
	background-image: url("https://wildlandtrekking.com/content/uploads/2020/05/difficulty3.png");
}

.facetwp-facet-difficulty div[data-value="4"]:before {
	background-image: url("https://wildlandtrekking.com/content/uploads/2020/05/difficulty4.png");
}

.facetwp-facet-difficulty div[data-value="5"]:before {
	background-image: url("https://wildlandtrekking.com/content/uploads/2020/05/difficulty5.png");
}

.facetwp-facet-difficulty .facetwp-checkbox span {
	/* left: 4rem; */
	position: relative;
	color: black;
}

.facetwp-facet-difficulty .facetwp-checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: transparent !important;
}

.facetwp-facet-difficulty .facetwp-counter span {
	text-indent: -4.5rem;
	color: #4b5263;
}

/**/
.why-hike-with-us {
	background-color: #f4f4f4;
	padding-top: 80px;
	padding-bottom: 80px;
	overflow: hidden;
	min-height: 922px;
}

.why-hike-with-us .container {
	position: relative;
	z-index: 2;
}

.why-hike-with-us.sec-with-imgbg:before {
	content: "";
	width: 100%;
	height: 100px;
	background: -o-linear-gradient(top, rgb(244, 244, 244, 1) 0%, rgba(244, 244, 244, 0.85) 50%, rgba(244, 244, 244, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(244, 244, 244, 1)), color-stop(50%, rgba(244, 244, 244, 0.85)), to(rgba(244, 244, 244, 0)));
	background: linear-gradient(to bottom, rgb(244, 244, 244, 1) 0%, rgba(244, 244, 244, 0.85) 50%, rgba(244, 244, 244, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#444444", GradientType=0);
	display: block;
	position: absolute;
	top: 0;
	z-index: 1;
}

section.bg-img--holder {
	position: absolute;
	top: 0;
	width: 100%;
	height: 250px;
}

img.why-hike-with-us-bg {
	height: 100%;
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	font-family: "object-fit: cover;";
}

.why-hike-with-us.sec-with-imgbg:after {
	content: "";
	width: 100%;
	height: 100px;
	background: -o-linear-gradient(top, rgb(244, 244, 244, 0) 0%, rgba(244, 244, 244, 0.85) 50%, rgba(244, 244, 244, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(244, 244, 244, 0)), color-stop(50%, rgba(244, 244, 244, 0.85)), to(rgba(244, 244, 244, 1)));
	background: linear-gradient(to bottom, rgb(244, 244, 244, 0) 0%, rgba(244, 244, 244, 0.85) 50%, rgba(244, 244, 244, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#444444", GradientType=0);
	display: block;
	position: absolute;
	top: 150px;
	z-index: 0;
}

.why-hike-with-us-bg {
	top: 0;
}

.why-hike-with-us.sec-with-imgbg:before,
.why-hike-with-us.sec-with-imgbg:after {
}

@media (min-width: 768px) {
	.why-hike-with-us.sec-with-imgbg:before {
		height: 100px;
	}

	section.bg-img--holder {
		height: 600px;
	}

	.why-hike-with-us.sec-with-imgbg:after {
		height: 200px;
		top: 400px;
	}
}

@media (max-width: 1024px) {
	.why-hike-with-us {
		padding-top: 100px;
	}

	.why-hike-with-us h2 {
		margin-bottom: 30px !important;
	}
}

@media (min-width: 1025px) {
	.trip-destination-list {
		padding-bottom: 40px;
	}
}

@media (min-width: 1200px) {
	.why-hike-with-us {
		padding-top: 150px;
	}

	section.bg-img--holder {
		position: absolute;
		top: 0;
		width: 100%;
		height: 1000px;
	}

	.why-hike-with-us.sec-with-imgbg:after {
		height: 200px;
		top: 800px;
	}
}

.why-hike-with-us-item,
.private-trip-types-item {
	padding-left: 30px;
	padding-right: 30px;
}

.why-hike-with-us-item-cont,
.private-trip-types-item-cont {
	padding-bottom: 20px;
}

.private-trip-types-item-cont img {
	width: 100%;
}

@media (max-width: 767px) {
	.private-trip-types-item {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (min-width: 1366px) {

	.why-hike-with-us-item,
	.wprivate-trip-types-item {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/**/
.find-a-trip-wysiwyg {
	padding-top: 80px;
	padding-bottom: 80px;
}

.find-a-trip-wysiwyg-cont {
	padding: 75px 65px;
}

/* media partners */
.thumb-pad5 {
	border-bottom: 1px solid #e6ecf2;
	padding-top: 15px;
	padding-bottom: 22px;
}

.thumb-pad5 img {
	padding: 5px 15px 15px 15px;
}

/* shirts page */
.image-card-item-cont {
	padding: 22px;
	font-size: 16px;
	color: #4b5263;
}

.tshirtexpand.image-card-item-cont span {
	font-size: 10px;
	padding-right: 3px;
}

.tshirtexpand a:hover {
	text-decoration: none;
}

.image-card-item-cont .icon-info:before {
	padding-right: 3px;
}

.image-card-item-cont .icon-info {
	text-transform: uppercase;
}

/**
*
* Alternating image/text sections
*
*/
.img-right-text-left,
.img-left-text-right {
	margin-top: 40px;
	margin-bottom: 40px;
}

@media (min-width: 768px) {

	.img-right-text-left .row,
	.img-left-text-right .row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.img-right-text-left,
	.img-left-text-right {
		margin-top: 100px;
		margin-bottom: 100px;
	}
}

/**
*
* Notification Bar (Hashbar)
*
*/
.ht-notification-text {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	text-transform: none;
	text-align: center;
}

/**
*
* 404 Page
*
*/
.error404 .page-destin-list {
	overflow: hidden;
	padding-top: 56px;
	padding-bottom: 47px;
}

.error404 .search-submit {
	-webkit-appearance: none;
	border: 2px solid #d18523;
	cursor: pointer;
	background-color: #d18523;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	padding: 14px 10px;
	color: #fff;
	display: inline-block;
	text-align: center;
	position: relative;
}

.error404 .screen-reader-text {
	display: block;
	text-align: center;
	display: none;
}

.error404 .search-submit:hover {
	color: #d18523;
	background-color: #fff;
}

.error404 input[type="search"] {
	background: #fff;
	border: none;
	border-radius: 0;
	border: 1px solid #c2ced7;
	width: 50%;
	height: 48px;
	padding: 0 10px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
}

@media (max-width: 767px) {

	.error404 .masthead,
	.error404 .masthead-img {
		min-height: 150px;
	}

	.error404 .intro-content {
		padding-top: 26px;
		padding-bottom: 17px;
	}

	.error404 .page-destin-list {
		padding-top: 26px;
		padding-bottom: 17px;
	}
}

@media (min-width: 768px) {
	.error404 input[type="search"] {
		height: 58px;
		width: 73%;
	}

	.error404 .search-submit {
		padding: 18px 40px;
	}
}

/**
*
* Reviews CTA
*
*/
.reviews-cta {
	border: 1px solid #e6ecf2;
	padding: 30px;
	position: relative;
	overflow: hidden;
	margin-top: 30px;
}

.reviews-cta h3,
.cta-mountain-bg h4 {
	margin-top: 0;
}

.reviews-cta h3 {
	font-size: 30px;
}

.reviews-background {
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
	-o-object-position: center center;
	object-position: center center;
	z-index: 1;
}

.reviews-cta-wrapper {
	position: relative;
	z-index: 2;
}

@media (min-width: 768px) {
	.reviews-cta {
		margin-top: 0px;
		padding: 50px;
	}

	.reviews-cta h3 {
		font-size: 40px;
	}
}

.cta-mountain-bg {
	margin-top: 0px; /*30*/
	margin-bottom: 30px;
}

.cta-mountain-bg--phone {
	color: #d18523;
	font-size: 30px;
	font-weight: bold;
}

.cta-mountain-bg--phone i {
	font-size: 20px;
}

/**
* page-simple-trip.php
*/
.border--bottom {
	border-bottom: 1px solid #c2ced7;
	margin-bottom: 25px;
}

.border--all {
	border: 1px solid #c2ced7;
}

hr.simple-line-break {
	margin-top: 15px;
	margin-bottom: 15px;
	opacity: .5;
	display: block;
	position: relative;
	clear: both;
}

.page-simple-view-content .sngl-dstntn-sec-cont:last-child hr.simple-line-break {
	display: none;
}

.simple-trip__error-msg {
	color: #ed1c24;
	border: 1px solid #ed1c24;
	padding: 10px;
	position: relative;
	display: block;
}

.simple-trip__btns .icon-long-arrow {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	position: relative;
	display: inline-block;
}

.simple-trip__share .post-share-btnlist {
	display: block !important;
	position: relative;
	width: 100%;
	padding: 0;
	border-radius: 0;
	border: 0;
	padding-bottom: 20px;
}

.simple-trip__btns .btn-accent {
	padding: 5px 10px;
}

.simple-trip__share .post-share-btnlist li {
	display: inline-block !important;
}

.simple-trip__share .post-share-btnlist a {
	color: #d18523;
	border: 2px solid #d18523;
}

.simple-trip__share .post-share-btnlist a:hover {
	color: #4b5263;
	border: 2px solid #4b5263;
}

.simple-trip__share .share-popup-copy-link {
	position: relative;
	margin-top: 10px;
}

.simple-trip__share .share-input {
	padding: 0 16px;
	width: 100%;
	height: 44px;
	background: #fff;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 20px;
	color: #666;
}

.simple-trip__share .share-popup-copy-link [class*="btn-"] {
	width: 100%;
	height: 44px;
	background: #d18523;
	border: none;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 44px;
	color: #fff;
	padding: 0;
	margin: 15px 0 0;
	cursor: pointer;
}

.simple-trip__btns .pdfprnt-buttons {
	display: inline-block;
}

.simple-trip__btns .pdfprnt-button {
	position: relative;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	display: inline-block;
	text-align: center;
	background-color: #fff;
	color: #353b49;
	border: 1px solid #c2ced7;
	padding: 0;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.simple-trip__btns .pdfprnt-button:hover {
	background-color: #d18523;
	border-color: #d18523;
	color: #fff;
}

.simple-trip__btns .pdfprnt-button-title:after {
	content: "\e927";
	padding-left: 3px;
}

.simple-trip__btns .pdfprnt-button-title {
	padding: 5px 10px;
}

.simple-trip__btns .help-text {
	font-size: 1rem;
	margin-top: 0.5em;
	color: #666;
	height: 0.5em;
}

.simple-trip__share .copy-link-text-field {
	display: block;
	clear: both;
	position: relative;
}

.page-template-page-simple-trip .sngl-dstntn-details .details-item:nth-child(1) {
	border-top: 1px solid #e6ecf2;
}

.page-template-page-simple-trip .sngl-dstntn-details-subratings .details-item:nth-child(1) {
	border-top: 1px solid #e6ecf2;
}

.page-template-page-simple-trip .sngl-dstntn-sec-cont h2:first-child,
.page-template-page-simple-trip .sngl-dstntn-sec-cont h3:first-child,
.page-template-page-simple-trip .sngl-dstntn-sec-cont h4:first-child,
.page-template-page-simple-trip .sngl-dstntn-sec-cont h5:first-child,
.page-template-page-simple-trip .sngl-dstntn-sec-cont p:first-child {
	margin-top: 0;
}

.page-template-page-simple-trip .sngl-dstntn-desc {
	margin-top: 28px;
	margin-bottom: 0;
}

.simple-container .bgc-white:first-child {
	margin-top: 25px;
}

.simple-container .bgc-white:last-child {
	margin-bottom: 25px;
}

.simple-container h4.accordion-title.flush {
	margin-bottom: 0;
	-webkit-margin-end: 0;
	margin-inline-end: 0;
	-webkit-margin-after: 0;
	margin-block-end: 0;
	padding-bottom: 0;
}

.page-simple-view-content .sngl-dstntn-details span img {
	display: inline-block;
}

.page-simple-view-content .accordion-title:after {
	display: none !important;
}

.page-simple-view-content .sngl-dstntn-sec-cont .content {
	padding: 0;
	/*1rem 0*/
	border: 0 solid #c2ced7;
	margin: .5rem 0 0;
}

.page-simple-view-content .accordion-title {
	padding-bottom: 10px;
	padding-right: 0;
	cursor: default;
}

.page-simple-view-content .accordion.shortcode-accordion {
	border: 0;
}

.page-simple-view-content .shortcode-accordion .accordion-title,
.page-simple-view-content .shortcode-accordion .accordion-cont {
	padding-left: 0;
}

.page-simple-view-content h4.accordion-title {
	border-top: 0 !important;
}

.page-template-page-simple-trip .simple-container h4.accordion-title {
	padding-top: 0;
}

.page-simple-view-content .shortcode-accordion .accordion-title {
	padding-top: 0;
	padding-bottom: 0;
}

.page-simple-view-content .shortcode-accordion .accordion-cont {
	padding: 0;
	border-top: 0;
}

.page-simple-view-content .shortcode-accordion .accordion-title {
	background-color: #fff !important;
}

.page-simple-view-content .sngl-dstntn-accom-item {
	padding-top: 10px;
	padding-bottom: 10px;
}

.page-simple-view-content .sngl-dstntn-accom-item h5 {
	margin-bottom: 5px;
}

.page-simple-view-content .accordion-cont ul li {
	font-size: 14px;
}

.page-simple-view-content .page-destin-list {
	color: #fff;
}

.page-simple-view-content img.zigzag {
	margin-bottom: 15px;
}

.page-simple-view-content .page-destin-list {
	padding-left: 15px;
	padding-right: 15px;
}

.simple-top-sec--contact {
	width: 100%;
	padding: 20px;
}

.simple-sngl-dstntn-banner img {
	border: 15px solid #fff;
	-webkit-box-shadow: 0 9px 24px rgba(0, 0, 0, .15);
	box-shadow: 0 0px 20px rgba(0, 0, 0, .15);
}

.page-simple-view-content .accordion-cont {
	display: block;
}

.simpleimg-aligncenter {
	margin: 0 auto;
	margin-bottom: 22px;
}

.page-template-page-simple-trip .sngl-dstntn-details .details-item, .page-template-page-simple-trip .sngl-dstntn-details-subratings .details-item {
	border-left: 0;
	border-right: 0;
}

.page-simple-view-content .sngl-dstntn-accom-item h4,
.page-simple-view-content .sngl-dstntn-accom-item .content {
	padding-left: 15px !important;
}

.page-simple-view-content .row.sngl-dstntn-accom-item {
	margin-left: 0px !important;
}

.page-simple-view-content .sngl-dstntn-sec-cont img.alignleft {
	display: inline-block;
}

/*.sngl-dstntn-sec-cont p:first-child {
    display: inline-block;
}*/

.simple-below-accom_wysiwyg img.alignleft {
	margin: 0 12px 22px 0 !important;
}

.simple-below-accom_wysiwyg [class*="col-"] {
	padding-left: 0 !important;
}

@media (max-width: 599px) {

	.simple-trip__btns [class*="btn-"],
	.simple-trip__btns .pdfprnt-button {
		width: 100%;
	}

	.simple-trip__btns .pdfprnt-buttons {
		display: block;
	}

	.page-simple-view-content .sngl-dstntn-accom-item p {
		margin-top: 10px;
		margin-bottom: 17px;
	}

	.page-template-page-simple-trip table,
	.page-template-page-simple-trip thead,
	.page-template-page-simple-trip tbody,
	.page-template-page-simple-trip th,
	.page-template-page-simple-trip td,
	.page-template-page-simple-trip tr {
		display: block;
	}
}

@media (min-width: 600px) {
	.simple-trip__btns .pdfprnt-button {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	.border--bottom {
		margin-bottom: 50px;
	}

	hr.simple-line-break {
		margin-top: 25px;
		margin-bottom: 25px;
	}

	.simple-trip__share .post-share-btnlist a {
		margin: 5px 35px;
	}

	.simple-trip__share .share-popup-copy-link [class*="btn-"] {
		font-size: 12px;
		width: auto;
		padding: 0 28px;
		margin: 0;
		position: absolute;
		top: 0;
		right: 0;
	}

	.simple-trip__share .share-popup-copy-link {
		margin-top: 25px;
	}

	.simple-trip__share .js-social-share:after {
		display: block;
		position: absolute;
		text-align: center;
		clear: both;
		margin: 0 auto;
		left: 0%;
		width: 100%;
		height: auto;
		color: #353b49;
		padding-top: 10px;
		font-family: "Montserrat", sans-serif !important;
		font-weight: 600;
		font-size: 16px;
	}

	.simple-trip__share .icon-share:before {
		content: "\e917";
	}

	.simple-trip__share .js-social-share.icon-share:after {
		content: "Copy Link";
	}

	.simple-trip__share .js-social-share.icon-facebook:after {
		content: "Facebook";
	}

	.simple-trip__share .js-social-share.icon-twitter:after {
		content: "Twitter";
	}

	.simple-trip__share .js-social-share.icon-linkedin:after {
		content: "LinkedIn";
	}

	.simple-trip__share .js-social-share.icon-gplus:after {
		content: "Google Plus";
	}

	.simple-trip__share .js-social-share.icon-pinterest:after {
		content: "Pinterest";
	}

	.simple-trip__share .js-social-share.icon-envelope:after {
		content: "Email";
	}

	.page-template-page-simple-trip .sngl-dstntn-details .details-item:nth-child(1),
	.page-template-page-simple-trip .sngl-dstntn-details .details-item:nth-child(2) {
		border-top: 1px solid #e6ecf2;
	}

	.page-template-page-simple-trip .sngl-dstntn-details-subratings .details-item:nth-child(1),
	.page-template-page-simple-trip .sngl-dstntn-details-subratings .details-item:nth-child(2) {
		border-top: 1px solid #e6ecf2;
	}

	.page-template-page-simple-trip .sngl-dstntn-desc {
		padding-top: 28px;
		padding-bottom: 0;
	}

	.simple-container .bgc-white:first-child {
		margin-top: 50px;
	}

	.simple-container .bgc-white:last-child {
		margin-bottom: 50px;
	}

	.page-simple-view-content .sngl-dstntn-sec-cont .content {
		margin: 0;
	}

	.page-simple-view-content .page-destin-list {
		padding-left: 50px;
		padding-right: 50px;
	}

	.row.sngl-dstntn-accom-item [class*="col-"] {
		padding-left: 0 !important;
	}
}

@media (max-width: 1024px) {

	.simple-page-header .logo,
	.simple-page-header .logocaption {
		margin: 0 auto;
	}

	.simple-trip__btns {
		margin-top: 10px;
		text-align: center;
	}

	.simple-trip__btns [class*="btn-"] {
		margin-top: 5px;
	}

	.simple-trip__btns .help-text {
		height: auto;
	}

	.page-template-page-simple-trip .sngl-dstntn-spacer h3 {
		display: block;
	}

	.simple-top-sec--contact {
		margin-bottom: 15px;
	}
}

@media (min-width: 1025px) {
	.page-template-page-simple-trip .sngl-dstntn-sec-cont {
		min-height: auto;
	}

	.simple-trip__btns {
		float: right;
		text-align: right;
	}

	.simple-trip__btns .pdfprnt-button {
		top: -1px;
	}

	.simple-top-section,
	.simple-top-section [class*="col-"] {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.simple-top-sec--contact {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (max-width: 1199px) {
	.simple-trip__btns .pdfprnt-button {
		font-size: 12px;
	}
}

/* Reduced font sizes for print and PDF */
.page-template-page-simple-trip body,
.page-template-page-simple-trip p,
.page-template-page-simple-trip h6,
.page-template-page-simple-trip .h6,
.page-template-page-simple-trip td,
.page-template-page-simple-trip th,
.page-template-page-simple-trip ul li,
.page-template-page-simple-trip ol li,
.page-template-page-simple-trip .sngl-dstntn-details .details-item,
.page-template-page-simple-trip .sngl-dstntn-details span,
.page-template-page-simple-trip .sngl-dstntn-details-subratings .details-item,
.page-template-page-simple-trip .sngl-dstntn-details-subratings span {
	font-size: 14px;
}

.page-template-page-simple-trip h1,
.page-template-page-simple-trip h2,
.page-template-page-simple-trip h3,
.page-template-page-simple-trip h4,
.page-template-page-simple-trip h5,
.page-template-page-simple-trip h6,
.page-template-page-simple-trip .h1,
.page-template-page-simple-trip .h2,
.page-template-page-simple-trip .h3,
.page-template-page-simple-trip .h4,
.page-template-page-simple-trip .h5,
.page-template-page-simple-trip .h6 {
	margin-bottom: 10px;
}

.page-template-page-simple-trip p,
.page-template-page-simple-trip ul {
	margin-top: 10px;
	margin-bottom: 17px;
}

.page-template-page-simple-trip .sngl-dstntn-desc-addrss span {
	display: inline-block;
}

.page-template-page-simple-trip ul > li:before {
	display: none;
}

.page-template-page-simple-trip ul > li.has-bullet {
	padding-left: 0;
}

.page-template-page-simple-trip ul > li.has-bullet {
	list-style-type: square;
}

.page-template-page-simple-trip ul > li.has-bullet::marker {
	color: #8b9a64;
}

.page-template-page-simple-trip h2,
.page-template-page-simple-trip .h2 {
	font-size: 50px;
}

.page-template-page-simple-trip h3,
.page-template-page-simple-trip .h3 {
	font-size: 35px;
}

.page-template-page-simple-trip h4,
.page-template-page-simple-trip .h4 {
	font-size: 21px;
}

.page-template-page-simple-trip h5,
.page-template-page-simple-trip .h5 {
	font-size: 18px;
}

.page-simple-view-content .accordion-title {
	font-size: 18px;
}

@media (min-width: 1025px) {
	.page-template-page-simple-trip .accordion-cont ul li {
		margin-bottom: 14px;
	}
}

/**
* footer.php
*/
.page-footer {
	background: #11151d;
	padding: 50px 0 90px;
}

.footer-col {
	margin-bottom: 30px;
}

.footer-logo {
	text-align: center;
}

.footer-address {
	text-align: center;
	color: #fff;
	padding-top: 10px;
}

.footer-col h6 {
	margin: 0 0 10px 0;
	position: relative;
	color: #fff;
}

.footer-col p {
	margin: 10px 0;
	font-weight: 600;
	color: #92a2af;
}

.footer-address a {
	padding: 0 0;
	font-weight: 600;
	color: #8b9a64;
}

.footer-address a:hover {
	color: #d18523;
}

.footer-social-media {
	padding-top: 25px;
	text-align: center;
}

.footer-social-media ul {
	margin-top: 5px;
	margin-left: 0;
}

.footer-social-media ul li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 2px;
}

.footer-social-media ul li a {
	display: block;
	width: 34px;
	height: 34px;
	border: 2px solid #8b9a64;
	font-size: 16px;
	font-weight: 400;
	color: #8b9a64;
	line-height: 30px;
}

.footer-social-media ul li a:hover {
	border: 2px solid #d18523;
	color: #d18523;
}

/* Disabled for now, can be restored to bring back the "10% promo" image */
.promo-image {
	text-align: center;
}

.promo-image img {
	max-width: 100%;
}

.contact-information,
.contact-information * {
	color: #fff !important;
}

.contact-information {
	font-weight: bold;
	text-align: left;
	max-width: 220px;
	margin: 0 auto;
	margin-bottom: 48px;
}

.contact-information p {
	margin: 1.25em 0;
}

.contact-information a {
	text-decoration: none;
}

@media (max-width: 768px) {
	.contact-information {
		text-align: center;
	}
}

.footer-menu h6 {
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 15px;
}

.footer-menu h6:after {
	content: "";
	/*position: absolute;*/
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: #8b9a64;
}

.footer-menu {
	margin-bottom: 30px;
}

.footer-menu ul {
	margin: 0;
	padding: 0;
}

.footer-menu ul li {
	margin: 0 0;
	padding: 10px 0;
}

.footer-menu ul li a {
	padding: 0 0 0 0;
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 14px;
	color: #92a2af;
	display: block;
}

.footer-menu ul li a:hover {
	color: #d18523;
}

.back-to-top {
	text-align: center;
	margin: 10px 0;
}

.back-to-top a {
	font-size: 12px;
	line-height: 14px;
	padding: 12px 25px 12px 25px;
}

.back-to-top a:after {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	display: inline-block;
	position: relative;
	top: 3px;
	left: 5px;
}

.footer-bottom-menu {
	margin: 30px 0 10px;
	text-align: center;
}

.footer-bottom-menu ul {
	margin-left: 0;
}

.footer-bottom-menu ul li {
	margin: 0 0;
	padding: 0 8px;
	display: inline-block;
}

.footer-bottom-menu ul li a {
	font-size: 12px;
	font-weight: 600;
	line-height: 14px;
	color: #92a2af;
	display: block;
}

.footer-bottom-menu ul li a:hover {
	color: #d18523;
}

.copyright {
	font-size: 12px;
	font-weight: 600;
	line-height: 14px;
	color: #92a2af;
	display: block;
	text-align: center;
}

.slide-to-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	display: none;
}

.slide-to-top.is-visible {
	display: block;
}

@media (min-width: 768px) {
	.footer-col {
		min-height: 325px;
	}

	.footer-bottom-menu,
	.copyright {
		display: inline-block;
	}

	.footer-bottom {
		text-align: center;
	}
}

@media (min-width: 1200px) {
	.page-footer {
		padding: 90px 0 60px 0;
	}

	.footer-col {
		min-height: 325px;
	}

	.footer-bottom-menu,
	.copyright {
		display: block;
		text-align: left
	}

	.footer-bottom {
		text-align: left;
	}

	.footer-menu ul li a {
		font-size: 14px;
		line-height: 1.4em;
	}

	.footer-logo {
		text-align: left;
	}

	.footer-address {
		width: 300 pxn;
		text-align: left
	}

	.footer-col p {
		padding-left: 0;
		padding-right: 0;
	}

	.footer-social-media {
		text-align: left;
	}

	.footer-social-media ul li a {
		text-align: center;
		width: 42px;
		height: 42px;
		line-height: 38px;
		font-size: 20px;
	}

	.footer-bottom-menu ul li {
		padding: 0 16px 0 0;
	}

	.back-to-top {
		margin-top: 15px;
		margin-bottom: 50px;
		display: inline-block;
	}
}

.link-inherit {
	color: inherit;
	background: inherit;
	text-decoration: inherit;
	font-style: inherit;
}

.link-inherit:hover {
	text-decoration: inherit !important;;
	opacity: .7;
	-webkit-transition: all ease-in-out .2s;
	-o-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s
}

.destin-list__carousel .page-destin-item {
	max-height: 220px;
}

.destin-list__carousel .imgbttn-title {
	margin-bottom: 0;
}

.footer_logos_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: center;
	align-items: center;
	gap: 20px 0px;
}

.logos_grid_itm {
	text-align: center;
}

.footer-logo-intrepid {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-logo-intrepid .intrepid-logo {
	width: 100%;
	max-width: 160px;
}

.footer-logo-intrepid .b-corp-logo {
	height: 72px;
}

@media (max-width: 1199px) {
	.footer-logo-intrepid {
		justify-content: center;
		text-align: center;
	}
}

.footer_logos_grid .logos_grid_itm img {
	max-width: 200px;
}

/*footer carsoul slider css*/

.carousel_wrapped {
	height: 325px;
	overflow: hidden;
}

@media (max-width: 1199px) {
	.carousel_wrapped {
		text-align: center;
		max-width: 270px;
		margin: 0 auto;
	}
}

.carousel_wrapped .owl-carousel {
	transform: rotate(90deg);
	max-width: 270px;
	width: 100%;
	margin-top: 100px;
	background: transparent;
}

.carousel_wrapped .item {
	transform: rotate(-90deg);
}

.carousel_wrapped .owl-carousel .owl-nav {
	display: flex;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	top: calc(50% - 33px);
	display: none;
}

.carousel_wrapped .owl-carousel .owl-item img {
	width: auto;
	height: 100%;
	/*width: 200px;*/
	/*max-width: 100%;*/
}

.carousel_wrapped .owl-theme .owl-dots {
	display: none;
	position: absolute;
	top: -90px;
	transform: translate(116px, 0px);
}

.carousel_wrapped div.owl-carousel .owl-nav .owl-prev,
.carousel_wrapped div.owl-carousel .owl-nav .owl-next {
	font-size: 36px;
	top: unset;
	bottom: 15px;
}

.carousel_wrapped .owl-carousel.owl-theme {
	padding: 15px 0px;
}

.carousel_wrapped .owl-carousel .owl-stage-outer {
	overflow: inherit !important;
}

@media (max-width: 600px) {
	.carousel_wrapped {
		height: 370px !important;
	}
}

/*footer carsoul slider css*/


/**
* Print CSS
*/
.print-only {
	display: none;
}

@media print {
	.print-only {
		display: block;
	}

	/* Reset*/
	*,
	*:before,
	*:after {
		background: transparent !important;
		color: #000 !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
		filter: none !important;
		-webkit-filter: none !important;
		text-shadow: none !important;
	}

	h2,
	h3 {
		/* Avoid a paragraph being detached from the heading immediately preceding it */
		page-break-after: avoid;
	}

	figure,
	table {
		/* Avoid breaking figure or table into 2 pages */
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
		page-break-inside: avoid;
	}

	p {
		/* Prevent single line at the end of a page and a single line at the top the next page */
		orphans: 2;
		widows: 2;
	}

	a[href]:after {
		/* Show URLs after links */
		content: " (" attr(href) ")";
	}

	/* Grid Styling */
	.container {
		width: auto;
		max-width: 100%;
	}

	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}

	.col-sm-12 {
		width: 100%;
	}

	.col-sm-11 {
		width: 91.66666666666666%;
	}

	.col-sm-10 {
		width: 83.33333333333334%;
	}

	.col-sm-9 {
		width: 75%;
	}

	.col-sm-8 {
		width: 66.66666666666666%;
	}

	.col-sm-7 {
		width: 58.333333333333336%;
	}

	.col-sm-6 {
		width: 50%;
	}

	.col-sm-5 {
		width: 41.66666666666667%;
	}

	.col-sm-4 {
		width: 33.33333333333333%;
	}

	.col-sm-3 {
		width: 25%;
	}

	.col-sm-2 {
		width: 16.666666666666664%;
	}

	.col-sm-1 {
		width: 8.333333333333332%;
	}

	/* Slick Slider - remove if not using slick slider */
	.slick-slider .slick-arrow,
	.slick-slider .slick-dots {
		display: none !important;
		/* we usually don't need to show slider navigation for print */
	}

	/* For sliders you want to display full width for print.
Update ".slick-slider" with your specific slider names. */
	.slick-slider,
	.slick-slider .slick-list,
	.slick-slider .slick-track,
	.slick-slider .slick-slide {
		width: 100% !important;
		height: auto !important;
	}

	/* For sliders where you only want to show the 1st image of that slider.
Update ".slick-slider" with your specific slider names. */
	.slick-slider .slick-slide {
		display: none !important;
	}

	.slick-slider .slick-slide.slick-active {
		display: block !important;
	}

	/* Show Only Active Thumbnails */
	.slick-slider .slick-cloned {
		display: none;
	}

	/* Reset adaptiveHeight */
	.slick-list {
		height: auto !important;
	}

	/* Remove Scrollbars */
	.slick-track {
		width: auto !important;
		height: auto !important;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}

	.slick-track.slick-slide {
		width: auto !important;
	}

	.sngl-dstntn-banner,
	.page-footer,
	.newsletter,
	.subscribe,
	.page-header,
	.copyright,
	.single-blog-sidebar,
	.navbar-fixed.sticky-header,
	.blog-share-print-area,
	.comment-wrapper,
	.mobile-read-more-trigger,
	.floating-sidebar,
	.sngl-dstntn-mobile-accordion .mobile-accrdn-title,
	.accordion-title:after,
	.sngl-dstntn-sec [class*="btn-"],
	.sngl-dstntn-moreinfopvt {
		display: none;
	}

	.sngl-dstntn-spacer,
	.sngl-dstntn-spacer.active,
	.sngl-dstntn-sec,
	.sngl-dstntn-sec.active,
	.accordion-cont,
	.accordion-cont.accordion-active,
	.mobile-read-more-container.hidden-sm-down {
		display: block !important;
	}

	.sngl-dstntn-accom .col-xs-7.col-sm-8 {
		width: 100%;
	}

	/* desktop view */
	@page {
		size: 330mm 427mm;
		margin: 14mm;
	}

	/*    .container {
        width: 1170px;
    }
*/
	/* Trip Styles */
	.trip-template-default .breadcrumbs,
	.trip-template-default .ht-notification-section,
	.trip-template-default #difficulty-level-info,
	.trip-template-default #solitude-level-info,
	.trip-template-default .sngl-dstntn-moreinfo--toolbar,
	.hide-print,
	.trip-template-default .tooltip-popup.content img,
	.trip-template-default .tooltip-popup.content form,
	.trip-template-default .accordion-cont img,
	.trip-template-default .sngl-dstntn-date,
	.trip-template-default .sngl-dstntn-accom-item img,
	.trip-template-default .sngl-dstntn-review,
	.trip-template-default .sngl-dstntn-similar {
		display: none !important;
	}

	.trip-template-default .sngl-dstntn-itinenary ul {
		margin-left: 35px;
	}

	.trip-template-default .sngl-dstntn-moreinfo li,
	.trip-template-default .sngl-dstntn-accordion li {
		list-style-type: disc;
		padding-left: 0px;
		font-size: 15px;
	}

	.trip-template-default .accordion {
		background: lightgrey;
		border: 0;
		padding: 0;
	}

	.trip-template-default .tooltip-popup {
		display: block !important;
		padding: 0;
		margin: 0;
	}

	.trip-template-default .sngl-dstntn-details .details-item, .trip-template-default .sngl-dstntn-details-subratings .details-item {
		border-bottom: 1px solid rgba(0, 0, 0, .4);
	}

	.trip-template-default .sngl-dstntn-moreinfohelp,
	.trip-template-default .sngl-dstntn-discount,
	.trip-template-default .sngl-dstntn-details, .trip-template-default .sngl-dstntn-details-subratings {
		border: 1px solid rgba(0, 0, 0, .4);
	}

	.trip-template-default .sngl-dstntn-sec.sngl-dstntn-details,
	.trip-template-default .sngl-dstntn-moreinfo {
		border: 0;
	}

	.trip-template-default .sngl-dstntn-moreinfo {
		padding: 0px;
	}

	.trip-template-default .package {
		margin-bottom: 20px;
	}

	.sngl-dstntn-details .row, .sngl-dstntn-details-subratings .row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.trip-template-default .thead th,
	thead td,
	.trip-template-default .tablepress thead th,
	.trip-template-default .tablepress tfoot th {
		background: #fff !important;
	}

	.trip-template-default .sngl-dstntn-spacer {
		padding-bottom: 30px;
		margin-bottom: 30px;
		border-bottom: 2px solid rgba(0, 0, 0, .4) !important;
	}

	.trip-template-default .sngl-dstntn-mobile-accordion {
		border-top: 0;
	}

	.page-template-page-simple-trip .sngl-dstntn-sec-cont {
		min-height: auto;
		padding-top: 0;
		padding-bottom: 0;
	}

	.page-template-page-simple-trip .sngl-dstntn-desc {
		padding-top: 0;
	}

	.simple-sngl-dstntn-banner img {
		margin: 0 auto;
	}

	.border--all {
		border: 0;
	}

	.simple-sngl-dstntn-banner img {
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
}

.video-responsive {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
}

.video-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

/*------------------------------------*\
Trumps
\*------------------------------------*/
@-ms-viewport {
	width: device-width;
}

/**
* Images
*/
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-inline {
	display: inline-block;
}

/**
* Visiblity
*/
.show {
	display: block !important;
}

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

@media (max-width: 599px) {
	.visible-xxs {
		display: block !important;
	}

	table.visible-xxs {
		display: table;
	}

	tr.visible-xxs {
		display: table-row !important;
	}

	th.visible-xxs,
	td.visible-xxs {
		display: table-cell !important;
	}

	.visible-xxs-block {
		display: block !important;
	}

	.visible-xxs-inline {
		display: inline !important;
	}

	.visible-xxs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 600px) and (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}

	table.visible-xs {
		display: table;
	}

	tr.visible-xs {
		display: table-row !important;
	}

	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}

	.visible-xs-block {
		display: block !important;
	}

	.visible-xs-inline {
		display: inline !important;
	}

	.visible-xs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.visible-sm {
		display: block !important;
	}

	table.visible-sm {
		display: table;
	}

	tr.visible-sm {
		display: table-row !important;
	}

	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}

	.visible-sm-block {
		display: block !important;
	}

	.visible-sm-inline {
		display: inline !important;
	}

	.visible-sm-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.visible-md {
		display: block !important;
	}

	table.visible-md {
		display: table;
	}

	tr.visible-md {
		display: table-row !important;
	}

	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}

	.visible-md-block {
		display: block !important;
	}

	.visible-md-inline {
		display: inline !important;
	}

	.visible-md-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}

	table.visible-lg {
		display: table;
	}

	tr.visible-lg {
		display: table-row !important;
	}

	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}

	.visible-lg-block {
		display: block !important;
	}

	.visible-lg-inline {
		display: inline !important;
	}

	.visible-lg-inline-block {
		display: inline-block !important;
	}
}

/**
* Hiding
*/
.hide,
.hidden-xxs-up {
	display: none !important;
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}

.faded {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .5s ease, visibility .5s ease;
	-o-transition: opacity .5s ease, visibility .5s ease;
	transition: opacity .5s ease, visibility .5s ease;
}

.faded.fade-in {
	opacity: 1;
	visibility: visible;
}

.invisible {
	visibility: hidden !important;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

@media (max-width: 599px) {
	.hidden-xxs {
		display: none !important;
	}
}

@media (min-width: 600px) {
	.hidden-xs-up {
		display: none !important;
	}
}

@media (min-width: 600px) and (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.hidden-xs-down {
		display: none !important;
	}
}

@media (min-width: 768px) {
	.hidden-sm-up {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (max-width: 1024px) {
	.hidden-sm-down {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.hidden-md-up {
		display: none !important;
	}
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (max-width: 1199px) {
	.hidden-md-down {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

@media (min-width: 1366px) {
	.hidden-xl-lg {
		display: none !important;
	}
}

/**
* Screen Readers
*/
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

/**
* Print
*/
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
	display: none !important;
}

@media print {
	.visible-print {
		display: block !important;
	}

	table.visible-print {
		display: table;
	}

	tr.visible-print {
		display: table-row !important;
	}

	th.visible-print,
	td.visible-print {
		display: table-cell !important;
	}

	.visible-print-block {
		display: block !important;
	}

	.visible-print-inline {
		display: inline !important;
	}

	.visible-print-inline-block {
		display: inline-block !important;
	}

	.hidden-print {
		display: none !important;
	}
}

/**
* Text alignment
*/
.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

/**
* Positioning
*/
.affix-top {
	position: fixed !important;
	top: 0 !important;
}

.affix-bottom {
	position: fixed !important;
	bottom: 0 !important;
}

.affix-left {
	position: fixed !important;
	left: 0 !important;
}

.affix-right {
	position: fixed !important;
	right: 0 !important;
}

.pull-right {
	float: right !important;
}

.pull-left {
	float: left !important;
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
	float: none;
}

/* TODO: Update pushes, flushes, softs, and hards to match your vertical rhythm */
/**
* Add/remove margins
*/
.push {
	margin: 20px !important;
}

.push-top {
	margin-top: 20px !important;
}

.push-right {
	margin-right: 20px !important;
}

.push-bottom {
	margin-bottom: 20px !important;
}

.push-left {
	margin-left: 20px !important;
}

.push-ends {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.push-sides {
	margin-right: 20px !important;
	margin-left: 20px !important;
}

.push-half {
	margin: 10px !important;
}

.push-half-top {
	margin-top: 10px !important;
}

.push-half-right {
	margin-right: 10px !important;
}

.push-half-bottom {
	margin-bottom: 10px !important;
}

.push-half-left {
	margin-left: 10px !important;
}

.push-half-ends {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

.push-half-sides {
	margin-right: 10px !important;
	margin-left: 10px !important;
}

.flush {
	margin: 0 !important;
}

.flush-top {
	margin-top: 0 !important;
}

.flush-right {
	margin-right: 0 !important;
}

.flush-bottom {
	margin-bottom: 0 !important;
}

.flush-left {
	margin-left: 0 !important;
}

.flush-ends {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.flush-sides {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/**
* Add/remove paddings
*/
.soft {
	padding: 20px !important;
}

.soft-top {
	padding-top: 20px !important;
}

.soft-right {
	padding-right: 20px !important;
}

.soft-bottom {
	padding-bottom: 20px !important;
}

.soft-left {
	padding-left: 20px !important;
}

.soft-ends {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.soft-sides {
	padding-right: 20px !important;
	padding-left: 20px !important;
}

.soft-half {
	padding: 10px !important;
}

.soft-half-top {
	padding-top: 10px !important;
}

.soft-half-right {
	padding-right: 10px !important;
}

.soft-half-bottom {
	padding-bottom: 10px !important;
}

.soft-half-left {
	padding-left: 10px !important;
}

.soft-half-ends {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.soft-half-sides {
	padding-right: 10px !important;
	padding-left: 10px !important;
}

.hard {
	padding: 0 !important;
}

.hard-top {
	padding-top: 0 !important;
}

.hard-right {
	padding-right: 0 !important;
}

.hard-bottom {
	padding-bottom: 0 !important;
}

.hard-left {
	padding-left: 0 !important;
}

.hard-ends {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.hard-sides {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

@media (min-width: 600px) {
	.flush-xs {
		margin: 0 !important;
	}

	.flush-xs-top {
		margin-top: 0 !important;
	}

	.flush-xs-right {
		margin-right: 0 !important;
	}

	.flush-xs-bottom {
		margin-bottom: 0 !important;
	}

	.flush-xs-left {
		margin-left: 0 !important;
	}

	.flush-xs-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.flush-xs-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-xs {
		margin: 20px !important;
	}

	.push-xs-top {
		margin-top: 20px !important;
	}

	.push-xs-right {
		margin-right: 20px !important;
	}

	.push-xs-bottom {
		margin-bottom: 20px !important;
	}

	.push-xs-left {
		margin-left: 20px !important;
	}

	.push-xs-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	.push-xs-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-xs {
		margin: 10px !important;
	}

	.push-half-xs-top {
		margin-top: 10px !important;
	}

	.push-half-xs-right {
		margin-right: 10px !important;
	}

	.push-half-xs-bottom {
		margin-bottom: 10px !important;
	}

	.push-half-xs-left {
		margin-left: 10px !important;
	}

	.push-half-xs-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}

	.push-half-xs-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-xs {
		margin: 40px !important;
	}

	.push-double-xs-top {
		margin-top: 40px !important;
	}

	.push-double-xs-right {
		margin-right: 40px !important;
	}

	.push-double-xs-bottom {
		margin-bottom: 40px !important;
	}

	.push-double-xs-left {
		margin-left: 40px !important;
	}

	.push-double-xs-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}

	.push-double-xs-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-xs {
		margin: 60px !important;
	}

	.push-triple-xs-top {
		margin-top: 60px !important;
	}

	.push-triple-xs-right {
		margin-right: 60px !important;
	}

	.push-triple-xs-bottom {
		margin-bottom: 60px !important;
	}

	.push-triple-xs-left {
		margin-left: 60px !important;
	}

	.push-triple-xs-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}

	.push-triple-xs-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-xs {
		padding: 20px !important;
	}

	.soft-xs-top {
		padding-top: 20px !important;
	}

	.soft-xs-right {
		padding-right: 20px !important;
	}

	.soft-xs-bottom {
		padding-bottom: 20px !important;
	}

	.soft-xs-left {
		padding-left: 20px !important;
	}

	.soft-xs-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}

	.soft-xs-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-xs {
		padding: 10px !important;
	}

	.soft-half-xs-top {
		padding-top: 10px !important;
	}

	.soft-half-xs-right {
		padding-right: 10px !important;
	}

	.soft-half-xs-bottom {
		padding-bottom: 10px !important;
	}

	.soft-half-xs-left {
		padding-left: 10px !important;
	}

	.soft-half-xs-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}

	.soft-half-xs-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-xs {
		padding: 40px !important;
	}

	.soft-double-xs-top {
		padding-top: 40px !important;
	}

	.soft-double-xs-right {
		padding-right: 40px !important;
	}

	.soft-double-xs-bottom {
		padding-bottom: 40px !important;
	}

	.soft-double-xs-left {
		padding-left: 40px !important;
	}

	.soft-double-xs-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.soft-double-xs-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-xs {
		padding: 60px !important;
	}

	.soft-triple-xs-top {
		padding-top: 60px !important;
	}

	.soft-triple-xs-right {
		padding-right: 60px !important;
	}

	.soft-triple-xs-bottom {
		padding-bottom: 60px !important;
	}

	.soft-triple-xs-left {
		padding-left: 60px !important;
	}

	.soft-triple-xs-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.soft-triple-xs-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-xs {
		padding: 0 !important;
	}

	.hard-xs-top {
		padding-top: 0 !important;
	}

	.hard-xs-right {
		padding-right: 0 !important;
	}

	.hard-xs-bottom {
		padding-bottom: 0 !important;
	}

	.hard-xs-left {
		padding-left: 0 !important;
	}

	.hard-xs-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hard-xs-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

@media (min-width: 768px) {
	.flush-sm {
		margin: 0 !important;
	}

	.flush-sm-top {
		margin-top: 0 !important;
	}

	.flush-sm-right {
		margin-right: 0 !important;
	}

	.flush-sm-bottom {
		margin-bottom: 0 !important;
	}

	.flush-sm-left {
		margin-left: 0 !important;
	}

	.flush-sm-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.flush-sm-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-sm {
		margin: 20px !important;
	}

	.push-sm-top {
		margin-top: 20px !important;
	}

	.push-sm-right {
		margin-right: 20px !important;
	}

	.push-sm-bottom {
		margin-bottom: 20px !important;
	}

	.push-sm-left {
		margin-left: 20px !important;
	}

	.push-sm-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	.push-sm-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-sm {
		margin: 10px !important;
	}

	.push-half-sm-top {
		margin-top: 10px !important;
	}

	.push-half-sm-right {
		margin-right: 10px !important;
	}

	.push-half-sm-bottom {
		margin-bottom: 10px !important;
	}

	.push-half-sm-left {
		margin-left: 10px !important;
	}

	.push-half-sm-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}

	.push-half-sm-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-sm {
		margin: 40px !important;
	}

	.push-double-sm-top {
		margin-top: 40px !important;
	}

	.push-double-sm-right {
		margin-right: 40px !important;
	}

	.push-double-sm-bottom {
		margin-bottom: 40px !important;
	}

	.push-double-sm-left {
		margin-left: 40px !important;
	}

	.push-double-sm-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}

	.push-double-sm-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-sm {
		margin: 60px !important;
	}

	.push-triple-sm-top {
		margin-top: 60px !important;
	}

	.push-triple-sm-right {
		margin-right: 60px !important;
	}

	.push-triple-sm-bottom {
		margin-bottom: 60px !important;
	}

	.push-triple-sm-left {
		margin-left: 60px !important;
	}

	.push-triple-sm-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}

	.push-triple-sm-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-sm {
		padding: 20px !important;
	}

	.soft-sm-top {
		padding-top: 20px !important;
	}

	.soft-sm-right {
		padding-right: 20px !important;
	}

	.soft-sm-bottom {
		padding-bottom: 20px !important;
	}

	.soft-sm-left {
		padding-left: 20px !important;
	}

	.soft-sm-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}

	.soft-sm-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-sm {
		padding: 10px !important;
	}

	.soft-half-sm-top {
		padding-top: 10px !important;
	}

	.soft-half-sm-right {
		padding-right: 10px !important;
	}

	.soft-half-sm-bottom {
		padding-bottom: 10px !important;
	}

	.soft-half-sm-left {
		padding-left: 10px !important;
	}

	.soft-half-sm-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}

	.soft-half-sm-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-sm {
		padding: 40px !important;
	}

	.soft-double-sm-top {
		padding-top: 40px !important;
	}

	.soft-double-sm-right {
		padding-right: 40px !important;
	}

	.soft-double-sm-bottom {
		padding-bottom: 40px !important;
	}

	.soft-double-sm-left {
		padding-left: 40px !important;
	}

	.soft-double-sm-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.soft-double-sm-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-sm {
		padding: 60px !important;
	}

	.soft-triple-sm-top {
		padding-top: 60px !important;
	}

	.soft-triple-sm-right {
		padding-right: 60px !important;
	}

	.soft-triple-sm-bottom {
		padding-bottom: 60px !important;
	}

	.soft-triple-sm-left {
		padding-left: 60px !important;
	}

	.soft-triple-sm-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.soft-triple-sm-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-sm {
		padding: 0 !important;
	}

	.hard-sm-top {
		padding-top: 0 !important;
	}

	.hard-sm-right {
		padding-right: 0 !important;
	}

	.hard-sm-bottom {
		padding-bottom: 0 !important;
	}

	.hard-sm-left {
		padding-left: 0 !important;
	}

	.hard-sm-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hard-sm-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

@media (min-width: 1025px) {
	.flush-md {
		margin: 0 !important;
	}

	.flush-md-top {
		margin-top: 0 !important;
	}

	.flush-md-right {
		margin-right: 0 !important;
	}

	.flush-md-bottom {
		margin-bottom: 0 !important;
	}

	.flush-md-left {
		margin-left: 0 !important;
	}

	.flush-md-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.flush-md-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-md {
		margin: 20px !important;
	}

	.push-md-top {
		margin-top: 20px !important;
	}

	.push-md-right {
		margin-right: 20px !important;
	}

	.push-md-bottom {
		margin-bottom: 20px !important;
	}

	.push-md-left {
		margin-left: 20px !important;
	}

	.push-md-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	.push-md-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-md {
		margin: 10px !important;
	}

	.push-half-md-top {
		margin-top: 10px !important;
	}

	.push-half-md-right {
		margin-right: 10px !important;
	}

	.push-half-md-bottom {
		margin-bottom: 10px !important;
	}

	.push-half-md-left {
		margin-left: 10px !important;
	}

	.push-half-md-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}

	.push-half-md-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-md {
		margin: 40px !important;
	}

	.push-double-md-top {
		margin-top: 40px !important;
	}

	.push-double-md-right {
		margin-right: 40px !important;
	}

	.push-double-md-bottom {
		margin-bottom: 40px !important;
	}

	.push-double-md-left {
		margin-left: 40px !important;
	}

	.push-double-md-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}

	.push-double-md-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-md {
		margin: 60px !important;
	}

	.push-triple-md-top {
		margin-top: 60px !important;
	}

	.push-triple-md-right {
		margin-right: 60px !important;
	}

	.push-triple-md-bottom {
		margin-bottom: 60px !important;
	}

	.push-triple-md-left {
		margin-left: 60px !important;
	}

	.push-triple-md-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}

	.push-triple-md-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-md {
		padding: 20px !important;
	}

	.soft-md-top {
		padding-top: 20px !important;
	}

	.soft-md-right {
		padding-right: 20px !important;
	}

	.soft-md-bottom {
		padding-bottom: 20px !important;
	}

	.soft-md-left {
		padding-left: 20px !important;
	}

	.soft-md-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}

	.soft-md-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-md {
		padding: 10px !important;
	}

	.soft-half-md-top {
		padding-top: 10px !important;
	}

	.soft-half-md-right {
		padding-right: 10px !important;
	}

	.soft-half-md-bottom {
		padding-bottom: 10px !important;
	}

	.soft-half-md-left {
		padding-left: 10px !important;
	}

	.soft-half-md-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}

	.soft-half-md-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-md {
		padding: 40px !important;
	}

	.soft-double-md-top {
		padding-top: 40px !important;
	}

	.soft-double-md-right {
		padding-right: 40px !important;
	}

	.soft-double-md-bottom {
		padding-bottom: 40px !important;
	}

	.soft-double-md-left {
		padding-left: 40px !important;
	}

	.soft-double-md-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.soft-double-md-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-md {
		padding: 60px !important;
	}

	.soft-triple-md-top {
		padding-top: 60px !important;
	}

	.soft-triple-md-right {
		padding-right: 60px !important;
	}

	.soft-triple-md-bottom {
		padding-bottom: 60px !important;
	}

	.soft-triple-md-left {
		padding-left: 60px !important;
	}

	.soft-triple-md-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.soft-triple-md-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-md {
		padding: 0 !important;
	}

	.hard-md-top {
		padding-top: 0 !important;
	}

	.hard-md-right {
		padding-right: 0 !important;
	}

	.hard-md-bottom {
		padding-bottom: 0 !important;
	}

	.hard-md-left {
		padding-left: 0 !important;
	}

	.hard-md-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hard-md-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

@media (min-width: 1200px) {
	.flush-lg {
		margin: 0 !important;
	}

	.flush-lg-top {
		margin-top: 0 !important;
	}

	.flush-lg-right {
		margin-right: 0 !important;
	}

	.flush-lg-bottom {
		margin-bottom: 0 !important;
	}

	.flush-lg-left {
		margin-left: 0 !important;
	}

	.flush-lg-ends {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}

	.flush-lg-sides {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.push-lg {
		margin: 20px !important;
	}

	.push-lg-top {
		margin-top: 20px !important;
	}

	.push-lg-right {
		margin-right: 20px !important;
	}

	.push-lg-bottom {
		margin-bottom: 20px !important;
	}

	.push-lg-left {
		margin-left: 20px !important;
	}

	.push-lg-ends {
		margin-top: 20px !important;
		margin-bottom: 20px !important;
	}

	.push-lg-sides {
		margin-right: 20px !important;
		margin-left: 20px !important;
	}

	.push-half-lg {
		margin: 10px !important;
	}

	.push-half-lg-top {
		margin-top: 10px !important;
	}

	.push-half-lg-right {
		margin-right: 10px !important;
	}

	.push-half-lg-bottom {
		margin-bottom: 10px !important;
	}

	.push-half-lg-left {
		margin-left: 10px !important;
	}

	.push-half-lg-ends {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}

	.push-half-lg-sides {
		margin-right: 10px !important;
		margin-left: 10px !important;
	}

	.push-double-lg {
		margin: 40px !important;
	}

	.push-double-lg-top {
		margin-top: 40px !important;
	}

	.push-double-lg-right {
		margin-right: 40px !important;
	}

	.push-double-lg-bottom {
		margin-bottom: 40px !important;
	}

	.push-double-lg-left {
		margin-left: 40px !important;
	}

	.push-double-lg-ends {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}

	.push-double-lg-sides {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}

	.push-triple-lg {
		margin: 60px !important;
	}

	.push-triple-lg-top {
		margin-top: 60px !important;
	}

	.push-triple-lg-right {
		margin-right: 60px !important;
	}

	.push-triple-lg-bottom {
		margin-bottom: 60px !important;
	}

	.push-triple-lg-left {
		margin-left: 60px !important;
	}

	.push-triple-lg-ends {
		margin-top: 60px !important;
		margin-bottom: 60px !important;
	}

	.push-triple-lg-sides {
		margin-right: 60px !important;
		margin-left: 60px !important;
	}

	.soft-lg {
		padding: 20px !important;
	}

	.soft-lg-top {
		padding-top: 20px !important;
	}

	.soft-lg-right {
		padding-right: 20px !important;
	}

	.soft-lg-bottom {
		padding-bottom: 20px !important;
	}

	.soft-lg-left {
		padding-left: 20px !important;
	}

	.soft-lg-ends {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}

	.soft-lg-sides {
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.soft-half-lg {
		padding: 10px !important;
	}

	.soft-half-lg-top {
		padding-top: 10px !important;
	}

	.soft-half-lg-right {
		padding-right: 10px !important;
	}

	.soft-half-lg-bottom {
		padding-bottom: 10px !important;
	}

	.soft-half-lg-left {
		padding-left: 10px !important;
	}

	.soft-half-lg-ends {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}

	.soft-half-lg-sides {
		padding-right: 10px !important;
		padding-left: 10px !important;
	}

	.soft-double-lg {
		padding: 40px !important;
	}

	.soft-double-lg-top {
		padding-top: 40px !important;
	}

	.soft-double-lg-right {
		padding-right: 40px !important;
	}

	.soft-double-lg-bottom {
		padding-bottom: 40px !important;
	}

	.soft-double-lg-left {
		padding-left: 40px !important;
	}

	.soft-double-lg-ends {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.soft-double-lg-sides {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}

	.soft-triple-lg {
		padding: 60px !important;
	}

	.soft-triple-lg-top {
		padding-top: 60px !important;
	}

	.soft-triple-lg-right {
		padding-right: 60px !important;
	}

	.soft-triple-lg-bottom {
		padding-bottom: 60px !important;
	}

	.soft-triple-lg-left {
		padding-left: 60px !important;
	}

	.soft-triple-lg-ends {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}

	.soft-triple-lg-sides {
		padding-right: 60px !important;
		padding-left: 60px !important;
	}

	.hard-lg {
		padding: 0 !important;
	}

	.hard-lg-top {
		padding-top: 0 !important;
	}

	.hard-lg-right {
		padding-right: 0 !important;
	}

	.hard-lg-bottom {
		padding-bottom: 0 !important;
	}

	.hard-lg-left {
		padding-left: 0 !important;
	}

	.hard-lg-ends {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.hard-lg-sides {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
}

/**
* Navigation - Mobile
*/
.nav-primary {
	display: none;
	background-color: #fff;
	font-size: 14px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 999;
	/*height: calc(100% - 88px);*/
	height: 100%;
	overflow-y: auto;
}

.nav-primary li {
	position: relative;
	font-size: 14px;
	line-height: 30px;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	background: #4b5263;
}

.nav-primary > ul > li {
	background-color: #fff;
}

.nav-primary > ul > li > a {
	color: #4b5263;
}

.nav-primary a {
	color: #fff;
	padding: 10px 15px;
	overflow: hidden;
	display: block;
	position: relative;
}

.nav-primary a:hover,
.nav-primary li.current-menu-item > a,
.nav-primary li.current-menu-parent > a,
.nav-primary li.current-menu-ancestor > a {
	/*color: #d18523;*/
	color: #8b9a64;
}

.nav-primary .sub-menu-toggle {
	cursor: pointer;
	width: 50px;
	height: 50px;
	position: absolute;
	right: 0;
	top: 0;
}

.nav-primary .sub-menu-toggle:before {
	content: "\e914";
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
}

.nav-primary .sub-menu-toggle.current {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.sub-menu {
	display: none;
	margin-top: 0;
}

.sub-menu.opened-menu {
	display: block;
}

.nav-primary .sub-menu li {
	font-size: 13px;
	line-height: 1em;
	background: #c2ced7;
}

.nav-primary .sub-menu li a {
	color: #4c5364;
	padding: 20px 15px;
}

.nav-primary .sub-menu .sub-menu li {
	background: #f5f6f3;
}

.nav-primary .sub-menu .sub-menu li a {
	color: #4b5263;
	text-transform: none;
	padding: 20px 15px;
}

.nav-primary .sub-menu .sub-menu .sub-menu li {
	background: #fff;
}

.nav-primary .sub-menu .sub-menu .sub-menu li a {
	padding: 15px 15px;
}

.header-trip {
	font-size: 14px;
	text-align: center;
	color: #4b5263;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	border-top: 1px solid #e6ecf2;
	padding-top: 40px;
	margin-top: 35px;
}

.header-trip img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

@media (max-width: 599px) {
	.page-header-cont {
		padding-bottom: 6px;
	}
}

@media (min-width: 1025px) {

	/*
.nav-primary {
display: block !important;
position: relative;
top: auto;
left: auto;
border-left: 1px solid #e6ecf2;
width:auto;
height: auto;
padding:0 0 0 10px;
margin-left:0;
overflow-y: unset;
}*/
	/*.nav-primary li {
padding-top: 0;
padding-bottom: 0;
font-size: 13px;
line-height: 6.125em;
}
.sub-menu {
border: 1px solid #ebebeb;
position: absolute;
top: 100%;
left: 0;
width: 258px;
-webkit-box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, .15);
-o-box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, .15);
box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, .15);
z-index: 999;
padding: 15px;
background-color: #fff;
}
.nav-primary li:hover .sub-menu {
display: block
}
.nav-primary .sub-menu  li {
float: none;
font-size: 13px;
padding: 5px 0;
}*/
	.top-header-phone {
		width: auto;
	}

	.top-header-menu {
		/*max-width: 554px;*/
		max-width: 50%;
	}
}

@media (min-width: 1200px) {
	.page-header_main-menu {
		padding-right: 230px;
	}

	.nav-primary {
		padding-left: 33px;
	}

	.top-header-phone {
		width: auto;
	}

	.top-header-menu {
		/*max-width: 646px;*/
		/*max-width: 480px;*/
		max-width: 45%;
	}
}

@media (min-width: 1366px) {
	.search-icon {
		font-size: 20px;
	}

	.top-header-phone {
		width: 28%;
	}

	.top-header-menu {
		/*max-width: 714px;*/
		/*max-width: 480px;*/
		max-width: 50%;
	}

	/*.nav-primary li {
font-size: 16px;
}
.nav-primary .sub-menu  li {
font-size: 15px;
}*/
}

@media (min-width: 1920px) {
	.page-header_main-menu {
		padding-right: 253px;
	}

	.nav-primary {
		padding: 0 33px 0 65px;
		margin-left: 33px;
	}
}

.promotions-bar {
	position: relative;
	z-index: 100;
	height: 38px;
}

/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.mfp-container:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #ccc;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #fff;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #92a2af;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ccc;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: "";
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}

.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

/* remove arrow icon */
.mfp-wrap[class*="btn-"]:after {
	content: "" !important;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {

	/**
* Remove all paddings around the image on small screen
*/
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		-ms-transform: scale(0.75);
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		-ms-transform-origin: 0;
		transform-origin: 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		-ms-transform-origin: 100%;
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

/* White Popup */
.white-popup {
	position: relative;
	background: #fff;
	padding: 50px;
	width: 55%;
	margin: 50px auto;
	color: #000;
	font-family: "Manuale", serif;
	text-transform: initial;
}

.white-popup p {
	color: #4b5263;
	text-transform: none;
	font-family: "Manuale", serif;
	margin-top: 10px;
}

@media (max-width: 1599px) {
	.white-popup {
		width: 65%;
	}
}

@media (max-width: 1199px) {
	.white-popup {
		width: 85%;
	}
}

@media (max-width: 767px) {
	.white-popup {
		padding: 20px;
		width: 95%;
	}
}

/* Single Banner Popup */
.sngl-bannerimg-popup {
	position: relative;
	padding: 0;
	width: 95%;
	margin: 50px auto;
}

.sngl-bannerimg-popup .mfp-close {
	background: #353b49;
	color: #fff;
}

/*
* single-trip.php template CSS
* Section: Trip Reviews
*/
.sngl-dstntn-review {
	padding-top: 40px;
	padding-bottom: 40px;
	color: #4b5263;
	font-family: "Manuale", serif;
}

.sngl-dstntn-review h4 {
	font-family: "Manuale", serif;
	text-transform: capitalize;
	color: #4b5263;
}

.sngl-dstntn-review h5 {
	color: #1c202a;
}

.sngl-dstntn-review-filter {
	border-bottom: 1px solid #e6ecf2;
	padding-bottom: 5px;
}

.sngl-dstntn-review-filter li {
	display: inline;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 12px;
}

.sngl-dstntn-review-filter a {
	color: #acaeb3;
	/*4b5263*/
	padding-left: 12px;
	text-decoration: none;
}

/*.sngl-dstntn-review-filter a:active {
color: #4b5263;
text-decoration: 1px solid#d18523;
}*/
/*.sngl-dstntn-review-list a,
.sngl-dstntn-review-list-btn a,
.sngl-dstntn-review-btn a {
text-transform: uppercase;
padding: 18px 40px;
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: 14px;
}*/
.sngl-dstntn-review-btn {
}

.sngl-dstntn-review-spacer {
	padding-top: 33px;
	padding-bottom: 33px;
}

.sngl-dstntn-review-list {
	border-bottom: 1px solid #e6ecf2;
}

.sngl-dstntn-review-list span {
	background-color: #c2ced7;
	padding: 5px 20px;
	border-radius: 10px;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
}

.sngl-dstntn-review-rating {
	padding: 23px 16px;
	background-color: #e6ecf2;
	margin-top: 35px;
	margin-bottom: 50px;
}


.sngl-dstntn-review-rating h4 {
	color: #1c202a;
	font-family: "bebas_neuebold";
	text-transform: uppercase;
}

.sngl-dstntn-review-list-btn {
	margin-top: 40px;
	outline-color: #8b9a64;
}

.sngl-dstntn-review-list-btn button {
	outline-color: #8b9a64;
}

.sngl-dstntn-review-list .slick-slider {
	margin-top: 0px;
	margin-bottom: 40px;
	padding-left: 9%;
}

.sngl-dstntn-review-list .slick-arrow:before {
	color: #1c202a;
	background: #c2ced7;
}

.sngl-dstntn-review-list .slick-arrow {
	left: 10px;
	top: 50%;
}

.sngl-dstntn-review-list .slick-next {
	bottom: -5px;
	z-index: 3;
}

.sngl-dstntn-review-list .slick-slider .col-md-3 {
	padding-left: 0;
}

@media (min-width: 600px) {
	.sngl-dstntn-review-list .slick-arrow {
		top: 32%;
	}

	.sngl-dstntn-review h4 {
		margin-bottom: 0;
	}

	.sngl-dstntn-review-list .slick-next {
		bottom: -25px;
	}
}

@media (max-width: 767px) {
	.sngl-dstntn-review-btn {
		margin-top: 30px;
	}
}

@media (max-width: 1024px) {
	#reviews .sngl-dstntn-sec-cont [class*="col-"]:first-child {
		display: auto;
	}

	.sngl-dstntn-review-btn {
		text-align: left !important;
	}

	.sngl-dstntn-review-list .slick-track {
		min-width: 6000px;
	}

	.sngl-dstntn-review-list .slick-slide {
		min-width: 325px;
	}
}

@media (min-width: 1025px) {
	.sngl-dstntn-review-list p {
		margin-bottom: 0;
	}

	.sngl-dstntn-review-spacer {
		padding-bottom: 0;
	}


	.sngl-dstntn-review-list .slick-slider {
		margin-top: 40px;
		margin-bottom: 0px;
	}

	.sngl-dstntn-review-list .slick-arrow {
		left: 15px;
		top: 32%;
	}

	.sngl-dstntn-review-list .slick-next {
		bottom: -35px;
	}
}

.sngl-dstntn-stat-area {
	margin: 1.5rem 0;
}


/**
*
* Footer
*
*/
/* Footer - Newsletter */
@media (max-width: 1024px) {
	.newsletter-content h3 {
		text-align: center !important;
	}

	.newsletter-content .content {
		padding-left: 0 !important;
	}
}

/* Footer - Active State */
.footer-menu ul li.current-menu-item a {
	color: #8b9a64;
}

/* Guides Page */
.guide-imgbttn {
	position: relative;
	height: 100%;
	background-color: #9e9e9e;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	height: 200px;
	/* height: 460px; */
}

.guide-lists .flex-stretch-row > div > a {
	height: 100%;
	display: block;
}

.guide-bttn-wrapper {
	height: 100%;
}


@media (min-width: 600px) {
	.guide-imgbttn {
		height: 260px;
	}
}


@media (min-width: 1200px) {
	.guide-imgbttn {
		height: 360px;
	}
}

.guide-imgbttn img {
	height: 100%;
	position: absolute;
	-o-object-fit: cover;
	object-fit: cover;
}

.guide-imgbttn:before {
	content: "";
	height: 100%;
	top: 0;
	width: 100%;
	position: absolute;
	left: 0;
}

.guide-imgbttn .imgbttn-overlay .imgbttn-btn {
	bottom: auto;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.guide-imgbttn.imgbttn:before {
	background-color: transparent;
}

.guide-imgbttn.imgbttn .imgbttn-btn {
	display: none;
}

@media (min-width: 1025px) {
	.guide-imgbttn:hover:before {
		/* Fallback for web browsers that doesn't support RGBA */
		background-color: rgb(28, 32, 42, 0.50);
		/* RGBa with 0.5 opacity */
		background-color: rgba(28, 32, 42, .5);
	}

	.guide-imgbttn.imgbttn:hover:before {
		background-color: rgba(28, 32, 42, .8);
	}

	.guide-imgbttn.imgbttn:hover .imgbttn-btn {
		display: block;
	}
}

@media (max-width: 1024px) {
	.mfp-content .m-guide-filter-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		background-color: #fff;
		font-size: 14px;
		position: fixed;
		left: 0;
		top: 60px;
		width: 100%;
		z-index: 999;
		/* height: 100%; */
		padding: 32px;
		overflow-y: auto;
		border: 0;
		margin: 0;
		color: #1c202a;
		text-align: left;
	}

	.mfp-content .m-guide-filter-list li:first-child {
		background: transparent;
		margin: 10px 0;
		padding: 10px 0;
		width: 100%;
	}

	.mfp-content .m-guide-filter-list li a {
		color: #acaeb3;
		background: #fff;
		margin: 2px 2px;
		padding: 10px 15px;
		width: 46px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		border: 1px solid #c2ced7;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.mfp-content .m-guide-filter-list .guide-filter-all {
		text-transform: uppercase;
		border-left: 0;
	}

	.mfp-close-btn-in .m-guide-filter-list .mfp-close {
		content: "\e91a";
		font-family: "icomoon" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		opacity: 1;
		font-size: 33px;
		right: 25px;
		top: 25px;
	}

	.mfp-close-btn-in .m-guide-filter-list a {
		color: #fff;
		font-size: 14px;
		border-bottom: 0;
		padding: 15px 20px;
		padding-left: 0;
	}
}

@media (min-width: 600px) {
	.flex-stretch-row .guide-bttn-wrapper {
		height: 100%;
		margin-bottom: 10px;
	}

	.flex-stretch-row .guide-bttn-content {
		position: relative;
		height: calc(100% - 10px);
	}
}

/* Guides Bio Popup */
.bio-popup {
	text-align: center;
}

.bio-popup h4,
.bio-popup h6 {
	color: #000;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.bio-popup h6 {
	padding-top: 0;
}

@media (max-width: 1366px) {
	.guide-imgbttn .imgbttn-overlay .imgbttn-btn a {
		padding: 0 15px;
	}
}

@media (max-width: 768px) {
	.bio-popup .guide-name {
		font-size: 14px;
	}

	.sngl-dstntn-banner .full-width-slider .slick-slide > div,
	.sngl-dstntn-banner .full-width-slider-img {
		min-height: 320px !important;
	}

	.sngl-dstntn-banner .full-width-slider-img {
		max-width: 100% !important;
		width: auto !important;
		height: auto;
	}

}

/* Buttons */
.no-arrow:after {
	content: "" !important;
	padding-left: 0 !important;
}

/* Google Translate - Reserve Button Dropdown */
.reserve-bttn font {
	font-size: 11.5px;
}

/* Destinations Reviews Form */
#js-trip-review-form {
	position: relative;
	background: #fff;
	width: 85%;
	margin: 20px auto;
	padding: 25px;
}

.comment-respond #reply-title {
	font-size: 26px;
	color: #4b5263;
}

.comment-form label {
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 20px;
	color: #353b49;
	text-transform: uppercase;
}

.comment-form .required {
	color: #92a2af;
}

.comment-form p {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 16px;
}

.comment-form .comment-notes,
label[for="wp-comment-cookies-consent"] {
	font-family: "Manuale", serif;
	text-transform: none;
	color: #92a2af;
	font-size: 16px;
	font-weight: 400;
}

label[for="wp-comment-cookies-consent"],
.comment-form-author label {
	display: inline-block;
}

.comment-form p.comment-form-author {
	margin-bottom: 0;
}

.comment-form-cookies-consent {
	position: relative;
	margin-bottom: 0;
}

.comment-form input[type="radio"] {
	vertical-align: middle;
	position: relative;
}

label[for="wp-comment-cookies-consent"] {
	vertical-align: middle;
	position: absolute;
	padding-left: 10px;
	font-size: 16px;
}

.comment-form textarea,
.comment-form input {
	padding: 0 16px;
	width: auto;
	height: 45px;
	background-color: #fff;
	border: 1px solid #c2ced7;
	font-size: 15px;
	color: #000;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.comment-form textarea {
	height: 120px;
	padding: 16px;
}

.comment-form textarea,
.comment-form [type="text"],
.comment-form [type="email"] {
	display: block;
	width: 100%;
}

.comment-form .submit {
	-webkit-appearance: none;
	width: 100%;
	height: 44px;
	background: #d18523;
	border: none;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 44px;
	color: #fff;
	padding: 0;
	margin: 15px 0 0;
	cursor: pointer;
	text-transform: uppercase;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.comment-form .form-submit {
	margin-top: 20px;
}

.comment-form .submit:hover {
	background: #8b9a64;
	color: #fff;
}

.comment-form #images {
	display: block;
	width: 100%;
	height: 46px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #e6ecf2;
	border: 1px solid #c2ced7;
	background-image: none;
	border-radius: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

.comment-form ::-webkit-file-upload-button {
	color: #fff;
	background-color: #6f8439;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	font-size: 12px;
	line-height: 32px;
	height: 32px;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	padding: 0 12px;
}

/* for IE */
.comment-form ::-ms-browse {
	color: #fff;
	background-color: #6f8439;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	font-size: 12px;
	line-height: 32px;
	height: 32px;
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	padding: 0 12px;
}

@media (min-width: 768px) {
	#js-trip-review-form {
		width: 75%;
		padding: 30px;
	}

	.comment-form .submit {
		font-size: 12px;
		width: auto;
		padding: 0 28px;
		margin: 0;
		position: relative;
		top: 0;
		right: 0;
	}
}

@media (min-width: 1200px) {
	#js-trip-review-form {
		width: 50%;
		padding: 50px;
	}

	.comment-form textarea,
	.comment-form input {
		height: 54px;
		line-height: 54px;
		font-size: 14px;
	}
}

/* iCheck plugin Minimal skin, black
----------------------------------- */
.icheckbox_minimal,
.iradio_minimal {
	display: inline-block;
	*display: inline;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	width: 18px;
	height: 18px;
	background: url(https://wildlandtrekking.com/content/themes/wildlandtrekking/assets/img/minimal.png) no-repeat;
	border: none;
	cursor: pointer;
	margin-left: 5px;
}

.icheckbox_minimal {
	background-position: 0 0;
}

.icheckbox_minimal.hover {
	background-position: -20px 0;
}

.icheckbox_minimal.checked {
	background-position: -40px 0;
}

.icheckbox_minimal.disabled {
	background-position: -60px 0;
	cursor: default;
}

.icheckbox_minimal.checked.disabled {
	background-position: -80px 0;
}

.iradio_minimal {
	background-position: -100px 0;
}

.iradio_minimal.hover {
	background-position: -120px 0;
}

.iradio_minimal.checked {
	background-position: -140px 0;
}

.iradio_minimal.disabled {
	background-position: -160px 0;
	cursor: default;
}

.iradio_minimal.checked.disabled {
	background-position: -180px 0;
}

/* HiDPI support */
@media (-webkit-min-device-pixel-ratio: 1.25),
(-o-min-device-pixel-ratio: 5/4),
(min-resolution: 120dpi),
(min-resolution: 1.25dppx) {

	.icheckbox_minimal,
	.iradio_minimal {
		background-image: url(https://wildlandtrekking.com/content/themes/wildlandtrekking/assets/img/minimal@2x.png);
		background-size: 200px 20px;
	}
}

/* destination-category-cards.php */
.filter-tab.has-category-cards {
	padding-top: 114px;
	background: #fff;
}

/**
*
* Tour Calendar Page
*
*/
.page-template-page-tour-calendar .intro-content {
	padding-bottom: 10px;
}

.tour-calendar-months {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	grid-gap: 20px;
}

@media (max-width: 767px) {
	.page-template-page-tour-calendar .intro-content {
		padding-top: 16px;
	}
}

.tc-filter-tab h4 {
	float: left;
	margin-right: 30px;
}

.tc-filter-tab ul {
	margin-left: 0;
}

.tc-filter-tab li a:hover {
	color: #8b9a64;
	text-decoration: none;
}

.tc-filter-tab .current {
	background: #e6ecf2;
	padding: 0px 10px;
	color: #d18523;
}

.page-template-page-tour-calendar h2.destination-title {
	margin-bottom: 6px;
}

.tc-trip-dates {
	margin: 30px 0px;
}

.tc-trips-sec h3 {
	color: #000;
}

/* Tour Calendar - accordion */
.tc-trips-accordion {
	border-bottom: 0;
}

.tc-trips-accordion .accordion-title {
	background: #fff;
	border: 1px solid #c2ced7;
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	margin-top: 0;
}

.tc-trips-accordion .accordion-title.active {
	background: #e6ecf2;
	margin-bottom: 0;
}

.tc-trips-accordion .accordion-title span {
	margin-left: 12px;
	margin-right: 20px;
}

.tc-trips-accordion .accordion-title:first-child {
	border-top: 1px solid #c2ced7;
}

.tc-trips-accordion .accordion-title:after {
	right: 12px;
	font-size: 10px;
	line-height: 20px;
	width: 20px;
	margin-top: -11px;
}

.tc-trips-accordion .accordion-title img {
	display: inline-block;
	vertical-align: middle;
}

.tc-trips-accordion .accordion-cont {
	background: #fff;
	padding: 40px;
}

/*.tc-trips-accordion .accordion-cont iframe {*/
/*    height: auto !important;*/
/*}*/


.tc-trips-accordion .accordion-cont h4 {
	color: #000;
}

.tc-sngl-trip {
	margin-top: 20px;
	margin-bottom: 20px;
}

.tc-sngl-trip.active {
	margin-top: 20px;
	margin-bottom: 20px;
	/* border: 1px solid #4b5263; */
}

.select-trip-form-btn {
	padding: 14px 0px;
}

.select-trip-form-field {
	margin-bottom: 20px;
}

/* Tour Calendar - filter tab mobile */
.select-month {
	display: none;
	background-color: #fff;
	font-size: 14px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	height: calc(100% - 44px);
	padding: 32px 32px 0 32px;
	overflow-y: auto;
}

.select-month h4 {
	margin-right: 0;
	text-align: left;
	display: inline-block;
}

.select-month i {
	float: right;
	margin-bottom: 20px;
	margin-top: 0.7625em;
}

.select-month ul {
	clear: both;
}

.select-month li {
	position: relative;
	font-size: 14px;
	line-height: 30px;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	padding: 5px 0;
	text-align: left;
}

.select-month button {
	width: 100%;
	padding: 10px;
	margin-top: 20px;
}

.trip-selector-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.trip-selector-container .selectric-wrapper {
	width: calc(100% - 141px);
}

.trip-selector-container button {
	width: 121px;
	margin-left: 20px;
	padding: 14px 40px;
}

.gc-pre-permit-text-container {
	border: 1px solid #c2ced7;
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-top: 20px;
	margin-bottom: 20px;
}

.gc-pre-permit-text-container i {
	margin-right: 20px;
}

.gc-pre-permit-text-container i:before {
	font-size: 30px;
	color: #d18523;
}

.gc-pre-permit-text {
	font-size: 14px;
	color: #353b49;
	margin-top: 0;
	margin-bottom: 15px;
}

.js-pre-permit-container {
	margin-bottom: 25px;
	position: relative;
	clear: both;
}

.js-pre-permit-container button {
	-webkit-appearance: none;
	background: #d18523;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	padding: 14px 40px;
	color: #fff;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	width: 100%;
	border: 0;
	margin-top: 15px;
}

.js-pre-permit-container button:hover {
	background: #8b9a64;
	color: #fff;
}

.accordion-cont .js-pre-permit-container ul li {
	margin-bottom: 0px;
	font-size: 12px;
	line-height: 20px;
	min-height: 20px;
}

@media (min-width: 768px) {
	.tc-trips-accordion .accordion-title span {
		margin-left: 26px;
	}

	.tc-trips-accordion .accordion-title {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.tc-trips-accordion .accordion-title img {
		margin-left: 12px;
		width: 120px;
		max-height: 60px;
	}

	.tc-trips-accordion .accordion-title:after {
		right: 26px;
	}

	.js-pre-permit-container button {
		margin-top: 0;
	}

}

@media (max-width: 1024px) {
	/* .tourcalendar-content .container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .tourcalendar-content .row {
        margin-left: 0px;
        margin-right: 0px;
    } */
	.tc-trips-accordion .accordion-cont {
		background: #fff;
		padding: 30px 15px;
	}

	.tc-trips-accordion .accordion-cont h4 {
		margin-bottom: 10px;
	}

	.tc-trips-accordion p {
		margin-top: 10px;
		margin-bottom: 17px;
	}

	.tc-bttn {
		text-align: center;
	}

	.select-month-btn {
		width: auto;
		padding: 0px 15px;
	}

	.select-month-btn:hover {
		cursor: pointer;
	}

	.tourcalendar-content.wysiwyg-cntnt {
		margin-top: 44px;
		margin-bottom: 40px;
	}

	/* .tc-trips-sec.sngl-dstntn-spacer {
        padding-top: 30px;
        padding-bottom: 5px;
    } */
	.tc-sngl-trip:last-child {
		margin-bottom: 0;
	}

	.tc-trips-accordion .accordion-title {
		clear: both;
		overflow: hidden;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-align: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.tc-trips-accordion .accordion-title span {
		font-size: 16px;
		width: 50%;
		float: left;
		line-height: 1.2em;
		display: block;
		width: 100%;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.tc-trips-accordion .accordion-title img {
		max-width: 60px;
		min-height: 60px;
		float: left;
		height: 77px;
	}

	.select-trip-form-btn {
		padding: 12.5px 0px;
	}
}

@media (min-width: 1025px) {
	.tc-filter-tab {
		/*border: 1px solid #e6ecf2;*/
		/*padding: 30px 20px;*/
		text-transform: uppercase;
		font-size: 14px;
		max-width: 1180px;
		margin: 0 auto;
	}

	.tc-filter-tab a {
		color: #353b49;
		position: relative;
		display: block;
	}

	.select-trip-form-field:first-child {
		padding-left: 16px !important;
	}

	.select-trip-form-field {
		margin-bottom: 40px;
	}
}

@media (min-width: 1200px) {
	.tc-filter-tab h4 {
		margin-right: 60px;
	}

	.page-template-page-tour-calendar .zigzag {
		margin-top: 10px;
	}

	.page-template-page-tour-calendar h2.destination-title {
		margin-bottom: 12px;
	}
}

@media (min-width: 1366px) {
	.tc-trips-accordion .accordion-title:after {
		font-size: 15px;
		line-height: 30px;
		width: 30px;
		margin-top: -15px;
	}
}

/* Tour Calendar - table */
.tc-table tr:first-child {
	border-top: 1px solid #c2ced7;
}

.tc-table tr:last-child {
	border-bottom: 1px solid #c2ced7;
}

.tc-table tbody td,
.tc-table tfoot th {
	border-top: 0;
}

.tc-table.tablepress-responsive-stack-phone tbody td {
	text-align: left;
}

@media (max-width: 767px) {
	.tablepress.tc-table .odd td {
		background: #fff;
	}

	.tablepress.tc-table.tablepress-responsive-stack-phone td {
		padding: 0px 8px;
	}

	.tablepress.tc-table tr {
		border: 1px solid #c2ced7;
	}

	.tablepress.tc-table.tablepress-responsive-stack-phone tbody td:first-child,
	.tablepress.tc-table.tablepress-responsive-stack-phone tbody td:last-child {
		border-top: 0;
	}

	.tablepress.tc-table .column-2 a {
		color: #1c202a;
		font-size: 16px;
		font-weight: 600;
		font-family: "Montserrat", sans-serif;
		text-transform: capitalize;
	}

	.tablepress.tc-table .column-3,
	.tablepress.tc-table .column-4 {
		font-size: 13px;
	}

	.tablepress.tc-table .column-3:before,
	.tablepress.tc-table .column-4 {
		color: #1c202a;
		font-size: 11px;
		font-weight: 600;
		font-family: "Montserrat", sans-serif;
		text-transform: uppercase;
	}

	.tablepress.tc-table .column-3:before {
		content: "Status:";
		padding-right: 5px;
	}

	.tablepress.tc-table.tablepress-responsive-stack-phone .column-1 {
		padding-top: 20px;
	}

	.tablepress.tc-table.tablepress-responsive-stack-phone .column-5 {
		padding-bottom: 20px;
	}
}

/**
*
* Trip Filter Page
*
*/
.filter-tab a.active {
	color: #4b5263;
	text-decoration: none;
}

.filter-tab a.active:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #d18523;
}

.sidebar-filter-wrap {
	margin-top: 20px;
	margin-bottom: 20px;
}

.trip-destination-list--title {
	margin-top: 40px;
	margin-bottom: 0;
}

.sidebar-filter-wrap .js-accordion {
	cursor: pointer;
}

/*Sidebar Trip Filter */
.sidebar-filter h6.active:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.sidebar-filter .filter-tab a.active {
	color: #4b5263;
	text-decoration: none;
}

.sidebar-filter .filter-tab a.active:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #d18523;
}

.sidebar-filter .facetwp-checkbox {
	color: #4b5263;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	text-transform: capitalize;
	font-weight: 600;
}

.sidebar-filter .facetwp-type-checkboxes .facetwp-depth.visible .facetwp-checkbox {
	font-family: "Manuale", serif !important;
	font-size: 15px;
	line-height: 1.5em;
}

.sidebar-filter .facetwp-type-checkboxes .facetwp-depth.visible .facetwp-checkbox .facetwp-counter {
	padding-left: 4px;
}

.sidebar-filter .facetwp-facet {
	margin-bottom: 0;
}

.sidebar-filter .facetwp-toggle {
	background: #d18523;
	border: none;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	line-height: 44px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	width: auto;
	padding: 5px 38px 5px 28px;
}

.sidebar-filter .facetwp-toggle:after {
	content: "\e914";
	font-family: "icomoon" !important;
	color: #fff;
	position: absolute;
	font-size: 10px;
	margin-left: 4px;
}

.sidebar-filter .facetwp-toggle.facetwp-toggle--less:after {
	-webkit-transform: rotateZ(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotateZ(-180deg);
}

.sidebar-filter .facetwp-toggle:hover {
	background: #8b9a64;
	color: #fff;
	text-decoration: none;
}

.filter-tab h4 span {
	font-family: "Manuale", serif;
}

.filter-tab h4 span span {
	bottom: 0;
	left: 0;
}

@media (min-width: 1024px) {
	.sngl-dstntn-similar-item:hover {
		-webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, .35);
		box-shadow: 0 7px 15px rgba(0, 0, 0, .35);
	}

	.destination-card .sngl-dstntn-similar-item:hover {
		-webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, .85);
		box-shadow: 0 7px 15px rgba(0, 0, 0, .85);
	}
}

/*Sidebar Trip Filter - Mobile */
@media (max-width: 1024px) {
	.sidebar-filter {
		background: none;
		background-color: #353b49;
		font-size: 14px;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 999;
		height: 100%;
		padding: 32px 32px 0 32px;
		overflow-y: auto;
		border: 0;
		color: #fff;
	}

	.sidebar-filter li > div {
		border-top: 0;
		background-color: #1c202a;
	}

	.sidebar-filter li {
		border-bottom: 0;
	}

	.sidebar-filter h5 {
		font-size: 18px;
	}

	.sidebar-filter h6 {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.sidebar-filter h6:after {
		top: -5px;
		position: relative;
		float: right;
		line-height: 33px;
		width: 30px;
		height: 30px;
		text-align: center;
		color: #353b49;
		background-color: #4b5263;
		border-radius: 50px;
		-webkit-transition: all .2s ease;
		-o-transition: all .2s ease;
		transition: all .2s ease;
	}

	.sidebar-filter h6:before {
		display: none;
	}

	.sidebar-filter h6.active:after {
		background-color: #1c202a;
		color: #fff;
	}

	.filter-tab .m-trip-filter-btn {
		color: #fff;
		display: inline-block;
		float: right;
		margin-bottom: 1.2em;
		margin-top: 1.2em;
	}

	.sidebar-filter #trip-type-sort a,
	.sidebar-filter .facetwp-checkbox {
		color: #fff;
	}

	.filter-tab a.m-trip-filter-btn:hover {
		color: #fff;
		text-decoration: none;
	}

	.filter-tab h4 span {
		display: block;
		left: 0;
		font-family: "Manuale", serif;
		line-height: 1em;
	}

	.filter-tab h4 span span {
		display: inline-block;
	}

	.sidebar-filter #trip-type-sort ul > li:before {
		width: 0;
		height: 0;
	}

	.sidebar-filter .facetwp-type-checkboxes .facetwp-depth.visible .facetwp-checkbox {
		font-family: "Montserrat", sans-serif !important;
		font-size: 12px;
		line-height: 2em;
	}

	.sidebar-filter .facetwp-type-checkboxes .facetwp-depth.visible .facetwp-checkbox.checked {
		background-position-x: 1%;
		background-color: #d18523;
		padding-left: 30px;
	}

	.mfp-close-btn-in .sidebar-filter .mfp-close {
		content: "\e91a";
		font-family: "icomoon" !important;
		speak: none;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		color: #fff;
		opacity: 1;
		font-size: 33px;
		right: 25px;
		top: 25px;
	}

	.m-filter-bttn-sec {
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 20px;
		padding-left: 32px;
		padding-right: 32px;
	}

	.m-filter-btn {
		margin: 0 auto;
		width: 100%;
	}
}

/* Homepage */
.destn-slider .destn-slider-item img {
	display: block;
	height: 340px;
	width: 100%;
}

@media (min-width: 768px) {
	.destn-slider .destn-slider-item img {
		height: 380px;
	}
}

@media (min-width: 1199px) {
	.home .twocolm > div:last-child {
		padding-top: 0px;
	}
}

@media (min-width: 1366px) {
	.home .twocolm_withbg:before {
		margin-top: -130px;
	}

	.destn-slider .destn-slider-item img {
		height: 560px;
	}
}

@media (min-width: 1600px) {
	.home .twocolm_withbg:before {
		margin-top: -144px;
	}
}

/**
*
* Destinations Page
*
*/
.post-type-archive-trip .destin-list-heading {
	display: block !important;
}

@media (min-width: 1366px) {
	.post-type-archive-trip .page-exprncs {
		min-height: 501px;
	}
}

/**
*
* Trip Page - Single Destination
*
*/
@media (min-width: 1366px) {

	.full-width-slider .slick-slide > div,
	.full-width-slider-img {
		min-height: 430px;
	}
}

.sngl-dstntn-mbanner:before {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 16px;
	color: #fff;
	line-height: 40px;
	background-color: #8c9b64;
	width: 40px;
	text-align: center;
}

.sngl-dstntn-details .details-item, .sngl-dstntn-details-subratings .details-item {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #1c202a;
}

.sngl-dstntn-sec .btn-small {
	padding: 4px 30px;
}

.sngl-dstntn-details span, .sngl-dstntn-details-subratings span {
	display: block;
}

.sngl-dstntn-details span img, .sngl-dstntn-details-subratings span img {
	top: 5px;
	position: relative;
	left: -5px;
}

.shortcode-accordion {
	border: 1px solid #c2ced7;
}

.shortcode-accordion.active {
	border: 1px solid #4b5263;
}

.sngl-dstntn-accom {
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) and (max-width: 1024px) {
	#accommodations .row.sngl-dstntn-accom-item [class*="col-"] {
		padding-left: 16px !important;
	}
}

@media (max-width: 1024px) {
	.sngl-dstntn-mbanner:before {
		display: none;
	}

	.sngl-dstntn-details .details-item, .sngl-dstntn-details-subratings .details-item {
		font-size: 13px;
	}

	.sngl-dstntn-spacer {
		padding-top: 45px;
		padding-bottom: 45px
	}

	.accordion-title {
		font-size: 16px;
	}

	.accordion-title:after {
		font-size: 10px;
		line-height: 20px;
		width: 20px;
		margin-top: -10px;
	}

	.sngl-dstntn-sec-cont h3 {
		margin-bottom: .3em;
	}
}

@media (max-width: 767px) {
	.sngl-dstntn-desc-addrss {
		display: block;
	}

	.sngl-dstntn-desc h2:first-child {
		margin-bottom: .3em
	}

	.sngl-dstntn-price .package,
	.sngl-dstntn-price .single {
		text-align: left !important;
		padding-left: 36px;
		padding-right: 36px;
	}

	.sngl-dstntn-price .single {
		text-align: left !important;
		padding-left: 20px;
		padding-right: 20px;
	}

	.sngl-dstntn-discount {
		text-align: left !important;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 13px;
	}

	.sngl-dstntn-details span, .sngl-dstntn-details-subratings span {
		display: inline-block;
	}

	.sngl-dstntn-details .details-item, .sngl-dstntn-details-subratings .details-item {
		padding: 10px 20px;
	}

	.sngl-dstntn-details span img, .sngl-dstntn-details-subratings span img {
		left: 0;
	}

	.sngl-dstntn-moreinfo {
		font-size: 13px;
	}

	.sngl-dstntn-review {
		padding-top: 0;
		padding-bottom: 0;
	}

	.sngl-dstntn-review-rating {
		margin-bottom: 0;
	}

	.sngl-dstntn-sec-cont [class*="col-"]:last-child {
		padding-bottom: 0;
	}

	/* .sngl-dstntn-sec-cont [class*="col-"]:last-child:nth-child(odd) {
        float: none;
        margin: 0 auto;
    } */
}

@media (max-width: 599px) {
	.sngl-dstntn-mbanner:before {
		display: block;
	}

	.slick-slider {
		/* NOTE Disabled: causes problems with slick-sliders on reviews page */
		/*height: 320px;*/
	}

	.sngl-dstntn-mbanner img {
		height: 224px;
		width: 100%;
	}

	.sngl-dstntn-price .package {
		padding-top: 0;
		padding-left: 20px;
		padding-right: 20px;
	}

	.sngl-dstntn-price .package:first-child {
		padding-top: 21px;
	}

	.sngl-dstntn-price .package .border-top {
		border-top: 1px solid #353b49;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 20px;
	}

	.sngl-dstntn-price .package:first-child .border-top {
		border-top: 0;
		padding-top: 0;
	}

	.sngl-dstntn-sec-cont [class*="col-"]:last-child {
		padding-bottom: 0;
		padding-top: 0;
	}

	#reviews .sngl-dstntn-sec-cont [class*="col-"]:last-child {
		padding-top: 33px;
	}

	.sngl-dstntn-review-spacer {
		padding-bottom: 0;
	}

	#reviews .sngl-dstntn-review-btn {
		margin-top: 0;
	}
}

/**
*
* Search Results Page
*
*/
.blog-content-search {
	padding-top: 73px;
	padding-bottom: 52px;
}

.search-result-tabs {
	list-style: none;
	border-bottom: 1px solid #e6ecf2;
	padding: 0;
	margin: 0;
}

.blog-content-search .tab {
	padding: 20px;
	border: 1px solid #e6ecf2;
	border-top: none;
}

.blog-content .tab {
	display: none;
}

.blog-content .active {
	display: block !important;
}

.search ul > li:before {
	display: none !important;
}

.search-result-tabs li {
	list-style-type: none !important;
	margin: 0 5px -1px 0;
	padding: 0;
	float: left;
}

.search-result-tabs:before,
.search-result-tabs:after {
	content: "";
	display: table;
}

.search-result-tabs:after {
	clear: both;
}

.search-result-tabs li.active a,
.search-result-tabs li:hover a,
.search-result-tabs li:focus a {
	color: #8b9a64;
	background: #fff;
	text-decoration: none;
}

.search-result-tabs li.active a {
	border-bottom: 1px solid #fff;
}

.search-result-tabs li a {
	display: block;
	padding: 10px 35px;
	text-decoration: none;
	background: #edf2f7;
	border: 1px solid #e6ecf2;
	border-radius: 1px 1px 0 0;
	color: #353b49;
	text-transform: uppercase;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
}

.blog-content-search article {
	border-bottom: 1px solid #e6ecf2;
	padding-bottom: 20px;
	margin-bottom: 15px;
}

.blog-content-search .product-card-item {
	margin-bottom: 30px;
}

#trips .blog-search-btn a {
	position: relative;
	z-index: 2;
}

@media (min-width: 768px) {
	.flex-stretch-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch
	}

	.flex-stretch-row .product-card {
		height: 100%;
		margin-bottom: 30px;
	}
}

@media (min-width: 1200px) {
	.search-result-tab .product-card-item:nth-of-type(3n+1) {
		clear: both;
	}
}

@media (min-width: 1400px) {
	.search-result-tab .product-card-item h5 {
		height: 60px;
	}
}

@media (min-width: 1720px) {
	.search-result-tab .product-card-item h5 {
		height: auto;
	}
}

/* Guides Choice - badge */
.sngl-dstntn-similar-item {
	position: relative;
}

.single-trip-badges {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 10px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.single-trip-badges img {
	width: 33%;
	height: auto;
}

.term-guides-choice-trips .badge {
	display: block !important;
	position: absolute;
	z-index: 1;
	float: left;
	top: 18px;
	width: 30%;
	height: auto;
	margin: 10px;
}

/* Find Trips - form */
.find-trips-form-field .facetwp-facet {
	margin-bottom: 0;
}

.find-trips-form-field .facetwp-facet.is-loading {
	position: relative;
}

/* Images - Object fit */
.objectfit {
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
}

@media (max-width: 599px) {
	.objectfit-xxs {
		-o-object-fit: cover;
		object-fit: cover;
		font-family: "object-fit: cover;";
	}
}

@media (min-width: 1366px) {
	.objectfit-lg {
		-o-object-fit: cover;
		object-fit: cover;
		font-family: "object-fit: cover;";
	}
}

/* Colors */
.white {
	color: #fff;
}

/* Hidden Background */
.hidden-bg {
	background: none;
}

.hidden-bg:before {
	display: none;
}

.ht-notification-section {
	position: absolute !important;
	top: 0 !important;
}

.accordion h5 br,
.accordion p {
	display: none;
}

/*.accordion .accordion-cont img.alignleft {
    float: none !important;
    text-align: left;
}
.accordion .accordion-cont img.alignright {
    float: none !important;
    text-align: right;
}*/
.accordion .accordion-cont p {
	display: block;
	font-weight: 400;
	float: none;
}

.js-more-trip-reviews {
	margin-bottom: 30px;
}

.accordion-cont ul li {
	font-size: 15px;
	line-height: 19px;
	margin-bottom: 10px;
}

.ubermenu-sub-indicators .ubermenu-item-has-children > .ubermenu-target.ubermenu-noindicator {
	padding-right: 0 !important;
}

.ubermenu-sub-indicators .ubermenu-item-has-children > .ubermenu-target:focus {
	outline: 1px solid #e6ecf2;
}

.ubermenu-target:focus {
	outline: 0 !important;
}

.notes-lodge {
	font-size: 16px;
}

.sngl-dstntn-similar-star {
	display: none;
}

.sngl-dstntn-similar-item-cont h5 {
	padding-bottom: 10px;
	margin-bottom: 10px !important;
	border-bottom: thin solid #e6ecf2;
	font-size: 18px;
}

.sngl-dstntn-similar-item-cont .icon-info {
	padding: 5px 15px 5px 0;
}

@media (min-width: 1025px) {
	.js-more-trip-reviews {
		margin-bottom: 60px;
	}

	.accordion-cont ul {
		margin-bottom: 10px;
	}

	.accordion-cont ul li {
		font-size: 19px;
		margin-bottom: 5px;
		line-height: 1.5em;
	}

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

@media (max-width: 1024px) {
	/* .sngl-dstntn-spacer {
        padding-top: 0;
    } */
	.sngl-dstntn-spacer h3 {
		display: block;
	}

	.tc-trips-sec.sngl-dstntn-spacer h3 {
		display: block;
	}
}

.page-simple-view-content h2.flush-top {
	font-size: 100px;
}

.select2-container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle
}

.select2-container .select2-selection--single {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	height: 28px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
	display: block;
	padding-left: 8px;
	padding-right: 20px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
	background-color: transparent;
	border: none;
	font-size: 1em
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
	padding-right: 8px;
	padding-left: 20px
}

.select2-container .select2-selection--multiple {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	min-height: 32px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline;
	list-style: none;
	padding: 0
}

.select2-container .select2-selection--multiple .select2-selection__clear {
	background-color: transparent;
	border: none;
	font-size: 1em
}

.select2-container .select2-search--inline .select2-search__field {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	font-size: 100%;
	margin-top: 5px;
	margin-left: 5px;
	padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none
}

.select2-dropdown {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051
}

.select2-results {
	display: block
}

.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0
}

.select2-results__option {
	padding: 6px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-results__option--selectable {
	cursor: pointer
}

.select2-container--open .select2-dropdown {
	left: 0
}

.select2-container--open .select2-dropdown--above {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-search--dropdown {
	display: block;
	padding: 4px
}

.select2-search--dropdown .select2-search__field {
	padding: 4px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
	display: none
}

.select2-close-mask {
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff;
	filter: alpha(opacity=0)
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
	height: 26px;
	margin-right: 20px;
	padding-right: 0px
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	left: 1px;
	right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #eee;
	cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
	display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px
}

.select2-container--default .select2-selection--multiple {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	padding-bottom: 5px;
	padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
	height: 20px;
	margin-right: 10px;
	margin-top: 5px;
	padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	display: inline-block;
	margin-left: 5px;
	margin-top: 5px;
	padding: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	cursor: default;
	padding-left: 2px;
	padding-right: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	background-color: transparent;
	border: none;
	border-right: 1px solid #aaa;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	color: #999;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;
	padding: 0 4px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
	background-color: #f1f1f1;
	color: #333;
	outline: none
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
	padding-left: 5px;
	padding-right: 2px
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	border-left: 1px solid #aaa;
	border-right: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
	float: left;
	margin-left: 10px;
	margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: solid black 1px;
	outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
	background-color: #eee;
	cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
	display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
	background: transparent;
	border: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: textfield
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto
}

.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
	padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -1em;
	padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -2em;
	padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -3em;
	padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -4em;
	padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -5em;
	padding-left: 6em
}

.select2-container--default .select2-results__option--group {
	padding: 0
}

.select2-container--default .select2-results__option--disabled {
	color: #999
}

.select2-container--default .select2-results__option--selected {
	background-color: #ddd
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #5897fb;
	color: white
}

.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px
}

.select2-container--classic .select2-selection--single {
	background-color: #f7f7f7;
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: 0;
	background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
	background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
	border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: bold;
	height: 26px;
	margin-right: 20px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
	color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
	background-color: #ddd;
	border: none;
	border-left: 1px solid #aaa;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
	background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
	background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
	float: left
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
	border: none;
	border-right: 1px solid #aaa;
	border-radius: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	left: 1px;
	right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
	border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
	background: transparent;
	border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
	background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
	background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	outline: 0;
	padding-bottom: 5px;
	padding-right: 5px
}

.select2-container--classic .select2-selection--multiple:focus {
	border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
	display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	display: inline-block;
	margin-left: 5px;
	margin-top: 5px;
	padding: 0
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
	cursor: default;
	padding-left: 2px;
	padding-right: 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
	background-color: transparent;
	border: none;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	color: #888;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;
	padding: 0 4px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #555;
	outline: none
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
	padding-left: 5px;
	padding-right: 2px
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
	border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

.select2-container--classic .select2-dropdown {
	background-color: #fff;
	border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
	border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
	border-top: none
}

.select2-container--classic .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto
}

.select2-container--classic .select2-results__option--group {
	padding: 0
}

.select2-container--classic .select2-results__option--disabled {
	color: grey
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #3875d7;
	color: #fff
}

.select2-container--classic .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
	border-color: #5897fb
}

span.select2-selection.select2-selection--single {
	border-radius: 0;
	height: 45px;
	border: 1px solid #c2ced7;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 45px;
	font-family: "Montserrat", sans-serif;
	padding: 0 16px;
	padding-left: 16px;
	padding-right: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #000;
	font-size: 13px;
	letter-spacing: 0;
	font-weight: 500;
	text-transform: uppercase;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #8b9a64 transparent transparent transparent;
	border-style: solid;
	border-width: 6px 6px 0 6px;
	height: 0;
	left: 50%;
	margin-left: -14px;
	margin-top: 5px;
	position: absolute;
	top: 50%;
	width: 0;
}

ul.select2-results__options li:before {
	display: none;
}

@media (min-width: 1200px) {
	span.select2-selection.select2-selection--single {
		height: 54px;
	}

	.select2-container .select2-selection--single .select2-selection__rendered {
		line-height: 50px;
	}

	.select2-container--default .select2-selection--single .select2-selection__arrow b {
		margin-top: 10px;
		margin-left: -16px;
	}

	.select2-container--open .select2-dropdown {
		left: 0;
		bottom: initial;
	}
}


/*------------------------------------*\
    CUSTOM IMPLEMENTATIONS
\*------------------------------------*/
/**
* Trip Advisor Custom Styling
*/
.widSSPWrap {
	display: none;
}

.tstmnl-trip-advisor h3 {
	font-size: 36px;
	margin: 0 10px;
}

.tstmnl-trip-advisor h3 span {
	display: block;
	font-size: 18px;
}

.widSSPComponent .widSSPSummary dt,
.widSSPComponent .widSSPSummary a .widSSPH18 {
	font-size: 18px !important;
}

.widSSPComponent.widSSPOptional {
	padding-bottom: 5px;
}

.widSSPComponent ul > li:before {
	display: none;
}

.subratingadditions {
	padding: 20px 20px 1px 20px;
}

.subratingadditions p {
	font-size: 14px
}

/*.footer_slider_main .owl-carousel {*/
/*	background: transparent;*/
/*}*/

/*.footer_slider_main .owl-carousel .item img {*/
/*	width: 200px;*/
/*	max-width: 100%;*/
/*}*/

.founders_text {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.f_italic_txt {
	font-style: italic;
}

.images_main_wrap {
	height: 325px;
	overflow: scroll;
}

.images_main img {
	width: 100%;
	max-width: 200px;
}


/*************** SCROLLBAR BASE CSS ***************/

.scroll-wrapper {
	overflow: hidden !important;
	padding: 0 !important;
	position: relative;
}

.scroll-wrapper > .scroll-content {
	border: none !important;
	box-sizing: content-box !important;
	height: auto;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none !important;
	overflow: scroll !important;
	padding: 0;
	position: relative !important;
	top: 0;
	width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
	height: 0;
	width: 0;
}

.scroll-element {
	display: none;
}

.scroll-element, .scroll-element div {
	box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
	display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
	cursor: default;
}

.scroll-textarea {
	border: 1px solid #ccc;
	border-top-color: #999;
}

.scroll-textarea > .scroll-content {
	overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
	border: none !important;
	box-sizing: border-box;
	height: 100% !important;
	margin: 0;
	max-height: none !important;
	max-width: none !important;
	overflow: scroll !important;
	outline: none;
	padding: 2px;
	position: relative !important;
	top: 0;
	width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
	height: 0;
	width: 0;
}


/*************** SIMPLE INNER SCROLLBAR ***************/

.images_main_wrap > .scroll-element,
.images_main_wrap > .scroll-element div {
	border: none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 10;
}

.images_main_wrap > .scroll-element div {
	display: block;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
}

.images_main_wrap > .scroll-element.scroll-x {
	bottom: 2px;
	height: 8px;
	left: 0;
	width: 100%;
}

.images_main_wrap > .scroll-element.scroll-y {
	height: 100%;
	right: 2px;
	top: 0;
	width: 8px;
}

.images_main_wrap > .scroll-element .scroll-element_outer {
	overflow: hidden;
}

.images_main_wrap > .scroll-element .scroll-element_outer,
.images_main_wrap > .scroll-element .scroll-element_track,
.images_main_wrap > .scroll-element .scroll-bar {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.images_main_wrap > .scroll-element .scroll-element_track,
.images_main_wrap > .scroll-element .scroll-bar {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	filter: alpha(opacity=40);
	opacity: 0.4;
}

.images_main_wrap > .scroll-element .scroll-element_track {
	background-color: #e0e0e0;
}

.images_main_wrap > .scroll-element .scroll-bar {
	background-color: #c2c2c2;
}

.images_main_wrap > .scroll-element:hover .scroll-bar {
	background-color: #919191;
}

.images_main_wrap > .scroll-element.scroll-draggable .scroll-bar {
	background-color: #919191;
}


/* update scrollbar offset if both scrolls are visible */

.images_main_wrap > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
	left: -12px;
}

.images_main_wrap > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
	top: -12px;
}


.images_main_wrap > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
	left: -12px;
}

.images_main_wrap > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
	top: -12px;
}

@media (max-width: 600px) {
	.full-width-slider {
		max-height: 330px !important;
		overflow: hidden;
	}

	.full-width-slider .slick-slide,
	.full-width-slider .slide {
		max-height: 330px !important;
	}
}

/* Styles from Contact Form 7 - Added to prevent form styling issues from previous integrations */
/* Plugin has since been removed */
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: "";
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

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

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

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

/*------------------------------------*\
    Tour calendar Update Design
\*------------------------------------*/

.tourcalendar-tabs {
    /*margin-top: 74px;*/
	margin-top: 1rem;
}
.tourcalendar-tabs .intro-content-inner  {
    margin-top: 40px;
}
.tourcalendar-tabs .intro-content-inner-column {
    border-top: 1px solid #e6ecf2;
    text-transform: capitalize;
    padding-top: 10px;
}
.tourcalendar-tabs .intro-content-inner .content p:empty {
    display: none;
}
.tourcalendar-tabs .intro-content-inner .content p {
    margin-bottom: 0;
    text-transform: initial;
}
.tourcalendar-tabs .intro-content-inner .content p a {
    text-decoration: none;
    display: inline-block;
    color: #8b9a64;
}
.tourcalendar-tabs .intro-content-inner .content p a:hover {
    text-decoration: underline;
    color: #8b9a64;
}
.tourcalendar-tabs .intro-content-inner .content h4 {
    text-align: center;
    width: 100%;
}
.tourcalendar-tabs .tc-filter-tab .tc-bttn a {
    font-family: 'Montserrat',sans-serif;
    font-weight: 600;
}

/*.tourcalendar-content{*/
/*	max-height: 2650px;*/
/*    overflow: auto;*/
/*}*/

.tourcalendar-content .js-calendar-iframe{
    width: 100%;
}

.tourcalendar-content {
	margin-top: 2rem;
}

@media (min-width: 1366px){
	.tourcalendar-tabs .intro-content-inner .content {
	    max-width: 70.66%;
	    margin-left: auto;
	    margin-right: auto;
	}
}
@media (max-width: 1024px){
	.tourcalendar-tabs .intro-content-inner {
	    margin-top: 25px;
	}
}
@media (max-width: 767px){
	.tourcalendar-tabs .intro-content-inner {
	    padding-left: 0;
	    padding-right: 0;
	}
}

/*------------------------------------*\
    Sub menu overflow design destop
\*------------------------------------*/

@media (min-width: 1025px) {
	.ubermenu.ubermenu-disable-submenu-scroll .ubermenu-active>.ubermenu-submenu.ubermenu-submenu-type-mega {
		max-height: calc(100vh - 150px);
		overflow: auto;
	}

	.logged-in.admin-bar .ubermenu.ubermenu-disable-submenu-scroll .ubermenu-active>.ubermenu-submenu.ubermenu-submenu-type-mega {
		max-height: calc(100vh - 180px);
	}

	.hideheader .ubermenu.ubermenu-disable-submenu-scroll .ubermenu-active>.ubermenu-submenu.ubermenu-submenu-type-mega {
		max-height: calc(100vh - 65px);
	}

	.logged-in.admin-bar .hideheader .ubermenu.ubermenu-disable-submenu-scroll .ubermenu-active>.ubermenu-submenu.ubermenu-submenu-type-mega {
		max-height: calc(100vh - 96px);
	}
}


/*------------------------------------*\
     homepage headings design
\*------------------------------------*/
.banner .banner-overlay .banner-txt .flush-top {
	font-size: 50px;
	line-height: .8333em;
	margin: 0.67em 0;
	margin-top: 0 !important;
}

.basecamp-section .basecamp-info .flush-top {
	font-size: 50px;
	line-height: .8333em;
	margin: 0.67em 0;
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.banner .banner-overlay .banner-txt .flush-top {
		font-size: 80px !important;
		margin-bottom: -15px;
	}

	.basecamp-section .basecamp-info .flush-top {
		font-size: 80px !important;
	}
}

@media (min-width: 1200px) {
	.banner .banner-overlay .banner-txt .flush-top {
		letter-spacing: 3px;
	}
}

@media (max-width: 599px) {
	.banner .banner-overlay .banner-txt .flush-top {
		margin-bottom: 60px;
	}
}



/*------------------------------------*\
  Increase the title contrast on destination and trip-style cards
\*------------------------------------*/
.page-destin-item .imgbttn-title,
.trip-imgbttn-text .imgbttn-title {
	text-shadow:
			1px 1px 0 #777,
			-1px 1px 0 #777,
			-1px -1px 0 #777,
			1px -1px 0 #777,
			4px 4px 15px rgba(0, 0, 0, 0.75);
}

/*------------------------------------*\
     Adjust heading hierarchy on destination pages
\*------------------------------------*/
.sngl-dstntn-similar-item-cont h4 {
	color: #000;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	text-transform: capitalize;
	font-weight: 700;
}

.sngl-dstntn-similar-item-cont h4 {
	padding-bottom: 10px;
	margin-bottom: 10px !important;
	border-bottom: thin solid #e6ecf2;
	font-size: 18px
}

.sidebar-filter p {
	font-family: "Montserrat", serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	padding-top: 24px;
	padding-bottom: 24px;
	margin: 0;
}

.sidebar-filter p:after {
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e915";
}

.sidebar-filter p:before {
	display: inline-block;
	font-size: 13px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	border: 1px solid #8b9a64;
	text-align: center;
	border-radius: 50%;
	color: #8b9a64;
	margin-right: 7px;
}

.sidebar-filter p:after {
	font-size: 11px;
	color: #8b9a64;
	float: right;
	line-height: 26px;
}

.sidebar-filter p.active:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

@media (max-width: 1024px) {
	.sidebar-filter p {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.sidebar-filter p:after {
		top: -5px;
		position: relative;
		float: right;
		line-height: 33px;
		width: 30px;
		height: 30px;
		text-align: center;
		color: #353b49;
		background-color: #4b5263;
		border-radius: 50px;
		-webkit-transition: all .2s ease;
		-o-transition: all .2s ease;
		transition: all .2s ease
	}

	.sidebar-filter p:before {
		display: none
	}

	.sidebar-filter p.active:after {
		background-color: #1c202a;
		color: #fff
	}
}

.tc-trips-accordion .accordion-title {
	line-height: 1em;
}

/*------------------------------------*\
     Trip Destinations - Add CTA button above the fold that drops users down to the list of tours
\*------------------------------------*/
html {
	scroll-behavior: smooth;
}

.jump-to-trips {
	max-width: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	background: #e6ecf2;
}

.jump-to-trips a {
	font-size: 14px;
	line-height: 14px;
	padding: 10px 16px;
	background-color: #8b9a64;
	color: #fff;
	margin: 15px auto;
	display: inline-block;
}

.jump-to-trips a:after {
	transform: rotate(90deg);
	display: inline-block;
	position: relative;
	top: 1px;
	left: 5px;
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	content: "\e913";
}

.jump-to-trips a:hover,
.jump-to-trips a:focus,
.jump-to-trips a:active {
	background-color: #6f8439;
	text-decoration: none;
}

@media (min-width: 768px) {
	.jump-to-trips {
		display: none !important;
	}
}
				
/*------------------------------------*\
     Trip Notice Styling
\*------------------------------------*/
.trip-notice {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: #247BA0;
    color: #ffffff;
    padding: 24px;
	margin-bottom: 40px;
}

.trip-notice .headline {
    color: #ffffff;
    margin: 0;
}

.trip-notice .content {
    color: #ffffff;
}

.trip-notice .content a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.trip-notice .content a:hover {
    color: #e6ecf2;
}



.trip-notice .content p:last-child {
    margin-bottom: 0;
}


@media (max-width: 1024px) {
	.trip-notice {
		max-width: 100%;
	}
}

/*------------------------------------*\
     Mobile - Move mobile navigation from bottom of screen to top
\*------------------------------------*/
@media (max-width: 1024px) {
	.nav-fixed {
		position: static !important;
		box-shadow: none;
		margin-top: -1px;
	}

	.js-scrolled .nav-fixed,
	.nav-fixed.open-mobile-menu {
		position: fixed !important;
		top: 0;
		margin-top: 0px;
	}

	.nav-primary {
		top: 0 !important;
		bottom: inherit;
		padding-top: 50px;
	}

}

@media (max-width: 767px) {
	.nav-fixed .nav-fixed-rsrvbtn [class*=btn-] {
		padding: 11px 20px;
	}

	.js-scrolled .nav-fixed .nav-fixed-rsrvbtn [class*=btn-],
	.nav-fixed.open-mobile-menu .nav-fixed-rsrvbtn [class*=btn-] {
		padding: 10.5px 20px;
	}
}

@media (max-width: 599px) {
	.nav-secondary {
		display: none;
	}

	.page-header-cont {
		padding-bottom: 0 !important;
	}

	.logocaption {
		margin-bottom: 0 !important;
	}
}
