/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi
Description: Divi child theme via FreshySites
Author: FreshySites
Author URI: https://freshysites.com/
Template:  Divi
Version: 1.0.0
*/
/* Add your own styles at the bottom */

/* -- COLORS -- */

.white, 
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white li, .white a,
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, li.white, a.white, p.white {
	color: #fff;
}

.black, 
.black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black li, .black a,
h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, li.black, a.black, p.black {
	color: #000;
}

.primary, 
.primary h1, .primary h2, .primary  h3, .primary h4, .primary h5, .primary h6, .primary li, .primary a,
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary, li.primary, a.primary, p.primary {
	color: #32a709;
}

.secondary, 
.secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary li, .secondary a,
h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary, li.secondary, a.secondary, p.secondary {
	color: #daf238;
}

.tertiary, 
.tertiary h1, .tertiary h2, .tertiary h3, .tertiary h4, .tertiary h5, .tertiary h6, .tertiary li, .tertiary a,
h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary, li.tertiary, a.tertiary, p.tertiary {
	color: #e4debe;
}

/* background colors */
.bg-white, a.bg-white {background-color: #fff;}
.bg-black, a.bg-black {background-color: #000;}
.bg-primary, a.bg-primary {background-color: #32a709;}
.bg-secondary, a.bg-secondary {background-color: #daf238;}
.bg-tertiary, a.bg-tertiary {background-color: #e4debe;}

/* -- END COLORS -- */


/* -- TYPOGRAPHY -- */

.text-lowercase, 
.text-lowercase h1, .text-lowercase h2, .text-lowercase h3, .text-lowercase h4, .text-lowercase h5, .text-lowercase h6, .text-lowercase li, .text-lowercase a {
	text-transform: lowercase !important;
}

.text-uppercase, 
.text-uppercase h1, .text-uppercase h2, .text-uppercase h3, .text-uppercase h4, .text-uppercase h5, .text-uppercase h6, .text-uppercase li, .text-uppercase a {
	text-transform: uppercase !important;
}

.text-capitalize, 
.text-capitalize h1, .text-capitalize h2, .text-capitalize h3, .text-capitalize h4, .text-capitalize h5, .text-capitalize h6, .text-capitalize li, .text-capitalize a {
	text-transform: capitalize !important;
}

.text-transform-none, 
.text-transform-none h1, .text-transform-none h2, .text-transform-none h3, .text-transform-none h4, .text-transform-none h5, .text-transform-none h6, .text-transform-none li, .text-transform-none a {
	text-transform: none !important;
}

.font-weight-bold, 
.font-weight-bold h1, .font-weight-bold h2, .font-weight-bold h3, .font-weight-bold h4, .font-weight-bold h5, .font-weight-bold h6, .font-weight-bold li, .font-weight-bold a {
	font-weight: 700;
}

.font-weight-normal, 
.font-weight-normal h1, .font-weight-normal h2, .font-weight-normal h3, .font-weight-normal h4, .font-weight-normal h5, .font-weight-normal h6, .font-weight-normal li, .font-weight-normal a {
	font-weight: 400;
}

.font-italic {font-style: italic;}

.text-underline-none, .text-underline-none a {text-decoration: none !important;}

.text-underline, .text-underline a {text-decoration: underline !important;}

.text-nowrap, .text-nowrap a {white-space: nowrap !important;}

.text-wrap-normal, .text-wrap-normal a {white-space: normal !important;}

/* -- END TYPOGRAPHY -- */


/* -- TEMPLATE -- */

/* make page wrapper be flex and at least the height of the viewport */
body.et_divi_theme.desktop #page-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* make the actual main content wrapper fill height (not including headers), 
and make it also flex so actual content area can fill needed height to push footer down */
body.et_divi_theme.desktop #page-container #et-main-area {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

/* grow main content area to fill needed height, which pushes footer down */
body.et_divi_theme.desktop #page-container #et-main-area #main-content {
	flex-grow: 1;
}

/* -- END TEMPLATE -- */


/* -- HEADER -- */

.et_mobile_menu li a {
    font-size: 14px!important;
	line-height: 23px!important;
}

.et_mobile_menu li {
	margin-bottom: 0!important;
}

/* helps logo to not be pixelated when scaled down */
#logo {
	-webkit-transform: none !important;
	transform: none !important;
}

/* when mobile menu is open, change hamburger icon to x icon */
#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before,
.et_pb_fullwidth_menu .mobile_nav.opened .mobile_menu_bar::before {
	content: '\4d';
}

/* makes sub sub menu icon be right arrow instead of down arrow */
#top-menu .menu-item-has-children .menu-item-has-children > a:first-child::after {
	content: '5';	
}

/* - mobile menu toggling elements, injected via jQuery - */

/* make menu list item be relative, to be able to position toggle within this item */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children,
.et_pb_fullwidth_menu .et_mobile_menu .menu-item-has-children {
	position: relative;	
}
/* the new toggle element, which is added via jQuery */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle,
.et_pb_fullwidth_menu .et_mobile_menu .sub-menu-toggle {
	position: absolute;
	background-color: rgba(0,0,0,0.03);
	z-index: 1;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	top: 4px;
	right: 4px;
	cursor: pointer;
	text-align: center;
}
/* the new toggle element when popped */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped,
.et_pb_fullwidth_menu .et_mobile_menu .sub-menu-toggle.popped {
	background-color: rgba(0,0,0,0.1);
}
/* toggle icon */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle::before,
.et_pb_fullwidth_menu .et_mobile_menu .sub-menu-toggle::before {
	font-family: "ETmodules" !important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 36px;
	font-size: 24px;
	text-transform: none;
	speak: none;
	content: '\33';
}
/* toggle icon when triggered */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped::before,
.et_pb_fullwidth_menu .et_mobile_menu .sub-menu-toggle.popped::before {
	content: '\32';
}
/* hide sub menus by default */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle ~ ul.sub-menu, 
.et_pb_fullwidth_menu .et_mobile_menu .sub-menu-toggle ~ ul.sub-menu {
	display: none !important;
	padding-left: 0;
}
/* show sub menu when triggered via jQuery toggle, and add slight bg color */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu,
.et_pb_fullwidth_menu .et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu {
	display: block !important;
	background-color: rgba(0,0,0,0.03);
}
/* remove sub menu list item left padding, since padding will be on anchors */
#main-header #mobile_menu.et_mobile_menu li li,
.et_pb_fullwidth_menu .et_mobile_menu li li {
	padding-left: 0;
}

/* adjust mobile menu anchors side paddings */
#main-header #mobile_menu.et_mobile_menu li a,
.et_pb_fullwidth_menu .et_mobile_menu li a {
	padding-left: 20px;
	padding-right: 20px;
}
/* indent sub menu */
#main-header #mobile_menu.et_mobile_menu li li a,
.et_pb_fullwidth_menu .et_mobile_menu li li a {
	padding-left: 40px;
	padding-right: 20px;
}
/* indent sub sub menus further */
#main-header #mobile_menu.et_mobile_menu li li li a,
.et_pb_fullwidth_menu .et_mobile_menu li li li a {
	padding-left: 60px;
	padding-right: 20px;
}
/* if mobile menu anchor has toggle, make room for it to fit next to the link */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children .sub-menu-toggle + a,
.et_pb_fullwidth_menu .et_mobile_menu .menu-item-has-children .sub-menu-toggle + a {
	padding-right: 44px;
}

/* - end mobile menu toggling elements - */

/* undo Divi's default styling of mobile menu links that have children */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a,
.et_pb_fullwidth_menu .et_mobile_menu .menu-item-has-children > a {
	background-color: transparent;
	font-weight: inherit;
}

/* make the current page's mobile menu link be different */
#main-header #mobile_menu.et_mobile_menu li.current-menu-item > a {
	font-weight: bolder;
}

/* -- END HEADER -- */

/* -- FOOTER -- */

#freshy_copyright span {
	display: inline-block;
	line-height: 1.5em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	background: rgba(255,255,255,0.25);
	vertical-align: middle;
	margin: 10px auto 15px;
	display: block;
}

#freshy_copyright a.copyright_fs {
	display: block;
	vertical-align: middle;
	width: 86px;
	height: 20px;
	background-image: url("/wp-content/uploads/Freshy-AllWhite.png");
	background-repeat: no-repeat;
	background-size: 86px 20px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 auto;
}

/* fix if using Impreza to remove underline */
#freshy_copyright a:hover {
	border: 0 !important;
}

@media (min-width: 600px) {
	/* vertical pipe divider */
	#freshy_copyright span.copyright_via {
		width: 1px;
		height: 20px;
		margin: 0 10px;
		display: inline-block;
	}
	#freshy_copyright a.copyright_fs {
		display: inline-block;
	}
}

@media (max-width: 980px) {
	#footer-bottom .et-social-icons li:first-child {
		margin-left: 0;
	}
}

/* -- END FOOTER -- */


/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
	/* hide on mobile */
	.hide-mobile {
		display: none;
	}
}

/* do for desktop */
@media screen and (min-width: 768px) {
	/* hide on desktop */
	.hide-desktop {
		display: none;
	}
}

/* -- END RESPONSIVE -- */


/* -- CHECKLIST -- */

.checklist ul {
    margin: 0;
	padding: 0 !important;
    list-style: none;
}

.checklist ul li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 1em !important;
}

.checklist ul li:last-child {
	margin: 0!important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
	margin-bottom: 30px !important;
}

@media (max-width: 638px) {
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		margin-bottom: 20px !important;
	}
	.checklist-columns-2 ul li:last-child,
	.checklist-columns-3 ul li:last-child,
	.checklist-columns-4 ul li:last-child {
		margin-bottom: 0 !important;
	}
}

/* create columns of list items with this class */
@media (min-width: 639px) {
	.checklist-columns-2 ul::after,
	.checklist-columns-3 ul::after,
	.checklist-columns-4 ul::after {
		content: '';
		clear: both;
		display: table;
	}
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 50%;
      	padding-right: 30px;
	}
	.checklist-columns-2 ul li:nth-child(odd),
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd){
		clear: both;	
	}
	.checklist-columns-2-alt > ul,
	.checklist-columns-3-alt > ul,
	.checklist-columns-4-alt > ul {
		-moz-column-count: 2;
		-moz-column-gap: 8px;
		-webkit-column-count: 2;
		-webkit-column-gap: 8px;
		column-count: 2;
		column-gap: 20px;
	}
	.checklist-columns-2-alt ul li,
	.checklist-columns-3-alt ul li,
	.checklist-columns-4-alt ul li {
		break-inside: avoid-column;
	}
}
@media (min-width: 981px) {
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 33.333333%;
	}
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-3 ul li:nth-child(3n+1),
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: both;	
	}
	.checklist-columns-3-alt ul,
	.checklist-columns-4-alt ul {
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
}
@media (min-width: 1199px) {
	.checklist-columns-4 ul li {
		float: left;
		width: 25%;
	}
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(4n+1) {
		clear: both;	
	}
	.checklist-columns-4-alt ul {
		-moz-column-count: 4;
		-webkit-column-count: 4;
		column-count: 4;
	}
}

.checklist ul li::before {
    font-family: 'FontAwesome';
    content: '\f08d';
    width: 20px;
    margin: 0;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #a5cee2;
    /* set font size helps make icon sharper */
    font-size: 18px;
	font-weight: normal;
}

.pluslist ul li::before {
    content: '\f055';
}
.eventlist ul li::before {
    content: '\f274';
}
.locationlist ul li::before {
    content: '\f041';
}
.externallist ul li::before {
	content: '\f14c';	
}
.pdflist ul li::before {
    content: '\f1c1';
	color: red;
}
.userlist ul li::before {
	content: '\f2c0';
}

/* -- END CHECKLIST -- */


/* -- DIVI HACKS -- */

/* make parallax image be centered at the start */
.et_parallax_bg {
	background-position: center center;	
}

/* Divi was turning off bottom padding on last paragraphs, when it should be only if it's the last child */
p:last-of-type {
	padding-bottom: 1em;
}

p:last-child {
	padding-bottom: 0;
}

/* if there are more than one paragraphin the Fullwidth Header module, they should have padding */
.et_pb_fullwidth_header p:not(:last-child) {
	padding-bottom: 1em;
}

/* -- END DIVI HACKS -- */


/* -- TESTIMONIALS PLUGIN -- */

/* flip quote so it's an opening quote icon for grid and slider versions */
.b3_archive_testimonials_grid article .b3_quote.grid_quote::before,
.et_pb_module.et_pb_testimonial_slider .et_pb_slides_testi::before {
	-moz-transform: scale(-1,-1);
	-o-transform: scale(-1,-1);
	-webkit-transform: scale(-1,-1);
	transform: scale(-1,-1);
}

/* -- END TESTIMONIALS PLUGIN -- */


/* -- GRAVITY FORMS -- */

.gform_wrapper ul.gfield_checkbox li label {
	max-width: 100%;
}

/* partially due to Surbma's restyling of the form, 
there now apepars to be excess margin above fields at certain screen sizes,
when two or more inputs have errors side by side (hence the + in the CSS),
so let's remove that top gap */
@media only screen and (max-width: 761px), (max-device-width: 1023px) and (min-device-width: 768px) {
	.gform_wrapper form .gform_body ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
		margin-top: 0;
	}
}

/* we swap out form ajax spinner via PHP Function, and add spinning if its PNG */
img.gform_ajax_spinner[src$=".png"] {
	-webkit-animation: lime-spin 1.5s linear infinite;
	-moz-animation: lime-spin 1.5s linear infinite;
	animation: lime-spin 1.5s linear infinite;
	padding: 0;
	margin-left: 10px;
}
@-moz-keyframes lime-spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes lime-spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes lime-spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/* fix for when Date Picker is used */
#ui-datepicker-div:empty {
	margin-top: 0;	
}

/* -- END GRAVITY FORMS -- */


/* -- HELPERS -- */

/* use the "fullwidth-section" class on a SECTION to make a "standard" SECTION truly be fullwidth 
(NOTE: the ROW module settings needs to be set to fullwidth, and the SECTION needs THIS class) */
.fullwidth-section.et_pb_section {
	padding: 0;
}
.fullwidth-section.et_pb_section > .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0;
}

/* use the "fullwidth-row" class on a SECTION to make a "full width" ROW truly be fullwidth 
(NOTE: the ROW module settings needs to be set to fullwidth, with no gutters, and the SECTION needs THIS class,
and unlike the class above, THIS class will auto-add padding to the columns) */
.fullwidth-row.et_pb_section {
	padding: 0;	
}
.fullwidth-row.et_pb_section .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* helps add padding to each column */
.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
	padding: 50px 10%;
}

@media (min-width: 767px) {
	.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
		padding: 80px 6%;
	}
}
/* for some reason Divi removes bottom margin from modules if in column with no gutters, 
so we need to add margins back */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module:not(:last-child) {
	margin-bottom: 30px;
}
@media (min-width: 981px) {
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_2_3 .et_pb_module:not(:last-child) {
		margin-bottom: 4.242%;
	}
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_1_3 .et_pb_module:not(:last-child) {
		margin-bottom: 9.27%;
	}	
}
/* reduce gap between toggles if in fullwidth row */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module.et_pb_toggle:not(:last-child) {
	margin-bottom: 3px;
}

/* -- END HELPERS -- */

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/* -- GLOBAL CSS -- */

h1, h2, h3, h4, h5, h6 {
	letter-spacing: .1em;
	font-weight: 500!important;
}

body, body .et_pb_button {
	font-weight: 500!important;
}

.et_pb_button {
	letter-spacing: .1em!important;
}

.blurb_click:hover {
	cursor: pointer;
}

.home .entry-content, .overflow-wrapper {
	overflow: hidden;
}

/* -- HEADER MENU -- */
	
#top-menu .menu-item-has-children>a:first-child {
	padding-right: 0!important;
}

#top-menu .menu-item-has-children>a:first-child:after {
	display: none!important;
}
.nav-search-link.menu-item > a::before {
	content: '\f002\00a0';
	font-family: "FontAwesome"!important;
    font-weight: normal;
    display: inline-block;
}

#main-header #et_search_icon:before {
	content: '\f002';
	font-family: "FontAwesome"!important;
	line-height: 14px!important;
    font-weight: 500!important;
    font-size: 22px;
}

#main-header .et_menu_container #et-top-navigation li a {
	text-transform: uppercase!important;
}

#main-header .et_menu_container #et-top-navigation li.current-menu-item > a,
#main-header .et_menu_container #et-top-navigation li.current-menu-ancestor > a {
	font-weight: 600!important;
	color: #88402C!important;
}

#et-info, #et-secondary-menu>ul>li a {
	letter-spacing: .1em;
}

#top-menu-nav #top-menu ul.sub-menu li.menu-item a,
.counties-bar ul.sub-menu li.menu-item a {
	font-size: 14px;
	line-height: 1.3em;
}

#top-menu-nav #top-menu ul.sub-menu li:not(:last-child) > a {
	border-bottom: 1px solid rgba(0,0,0,.03);
}

#top-menu li a {
	font-weight: 500!important;
}

@media (max-width: 1200px) and (min-width: 981px) {
	body #top-header, body #top-header a {
		font-size: 10px;
	}
	
	body #et-secondary-nav a {
		margin-top: 2px;
	}
	
	body #top-header .et-social-icon a {
		font-size: 12px;
	}
	
	body #top-menu li a {
		font-size: 16px;
	}
}

@media (max-width: 1060px) and (min-width: 981px) {
	body #top-header, body #top-header a {
		font-size: 9px;
	}
	
	body #top-menu li a {
		font-size: 14px;
	}
}

/* -- HOME PAGE -- */

#home-hero-section.et_pb_section,
#home-hero-section.et_pb_section > .et_pb_row {
	padding: 0;
	overflow: hidden;
}

#home-hero-section.et_pb_section > .et_pb_row {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	width: 100% !important;
	max-width: 100% !important;
}

@media (min-width: 981px) {
	#home-hero-section.et_pb_section > .et_pb_row {
		height: calc(100vh - 120px);
	}
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column {
		width: auto;
	}
}

@media (min-width: 1201px) {
	#home-hero-section.et_pb_section > .et_pb_row {
		height: calc(100vh - 126px);
	}
}

@media (min-width: 1501px) {
	#home-hero-section.et_pb_section > .et_pb_row {
		height: calc(100vh - 145px);
	}
}

#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child {
	z-index: 1 !important;
	height: 100%;
	min-height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}

#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:last-child {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 60px;
	-webkit-flex-direction: column;
	flex-direction: column;
	-ms-flex-positive: 1;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:last-child .et_pb_text {
	text-shadow: 0 3px 15px black;
	width: 100%;
}

/* buttons */
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-ms-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button,
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button:hover {
	background-color: #524f48;
	white-space: nowrap;
	display: block;
	position: relative;
	color: #ffffff;
	font-size: 22px !important;
	font-weight: 500 !important;
	letter-spacing: .1em !important;
	line-height: 1em !important;
	padding: 4px 30px 4px !important;
	text-decoration: none !important;
	text-align: center;
	height: 100%;
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button::before {
	position: relative;
	margin: 0 auto;
	opacity: 1;
	text-shadow: none;
	font-size: 0;
	line-height: 0;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
	content: '';
	display: block;
	height: 50%;
	max-height: 50px;
	width: 50px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-bottom: 5%;
	margin-top: 5%;
}

@media (max-height: 600px) and (min-width: 981px) {
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button::before {
		height: 30%;
		margin-top: 0;
		margin-bottom: 2%;
	}
}

@media (min-height: 801px) and (min-width: 981px) {
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button::before {
		max-height: 70px;
		width: 70px;
	}
}

@media (max-width: 980px) {
	#home-hero-section.et_pb_section > .et_pb_row {
		-webkit-flex-direction: column;
		flex-direction: column;
		width: 100% !important;
	}
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column {
		width: 100% !important;
	}
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:last-child {
		order: -1;
		min-height: calc(50vh - 124px);
	}
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper {
		-ms-flex: none;
		-webkit-flex: none;
		flex: none;
		width: 100% !important;
	}
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button,
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button:hover {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button::before {
		margin: 0 auto;
		height: 35px;
		width: 35px;
		margin-bottom: 5px;
		margin-top: 0;
	}
}

#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper a.et_pb_button:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px 5px rgba(0,0,0,.15);
	z-index: 1;
}

#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:first-child a.et_pb_button,
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:first-child a.et_pb_button:hover {
	background-color: #7d7752 !important;
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(2) a.et_pb_button,
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(2) a.et_pb_button:hover {
	background-color: #524f48 !important;
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(3) a.et_pb_button,
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(3) a.et_pb_button:hover {
	background-color: #88402C !important;
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(4) a.et_pb_button,
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(4) a.et_pb_button:hover {
	background-color: #065B85 !important;
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(5) a.et_pb_button,
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(5) a.et_pb_button:hover {
	background-color: #6A797A !important;
}

#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:first-child a.et_pb_button::before {
	background-image: url(/wp-content/uploads/pine-tree.png);
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(2) a.et_pb_button::before {
	background-image: url(/wp-content/uploads/binoculars.png);
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(3) a.et_pb_button::before {
	background-image: url(/wp-content/uploads/people.png);
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(4) a.et_pb_button::before {
	background-image: url(/wp-content/uploads/leaf.png);
}
#home-hero-section.et_pb_section > .et_pb_row > .et_pb_column:first-child .et_pb_button_module_wrapper:nth-child(5) a.et_pb_button::before {
	background-image: url(/wp-content/uploads/trail.png);
}

/* -- TABS AREA -- */

#tabs .et_pb_tabs {
	border: 0;
	width: 100%;
	height: calc(100vh - 145px);
	display: flex;
	flex-direction: column-reverse;
}

@media (min-width: 981px) {
#tabs .et_pb_tabs_controls {
	overflow: visible;
	margin-left: -30px;
}

#tabs .et_pb_tabs_controls li {
	padding-left: 30px;
}

#tabs .et_pb_tabs_controls li.et_pb_tab_active {
	transform: translateX(30px);
	box-shadow: 0 0 15px 5px rgba(0,0,0,.15);
}
}

@media (max-width: 980px) {
	#tabs .et_pb_tabs_controls li.et_pb_tab_active {
		transform: scale(1.3);
		box-shadow: 0 0 15px 5px rgba(0,0,0,.15);
		z-index: 20!important;
	}
	
	#tabs .et_pb_tabs {
		overflow-y: visible; 
	}
}

#tabs .et_pb_tabs_controls li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	float: none;
	height: 20%;
	border: 0;
	text-align: center;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: .1em;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	line-height: 1em;
}

#tabs .et_pb_tabs_controls li a {
	color: #ffffff!important;
	padding: .2em 1em;
	white-space: nowrap;
}

#tabs .et_pb_tabs_controls li:before {
	content: '';
	display: block;
	height: 60px;
	width: 60px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

@media (max-width: 1500px) and (min-width: 981px) {
	#tabs .et_pb_tabs_controls li {
		font-size: 20px;
	}
	
	#tabs .et_pb_tabs_controls li:before {
		height: 40px;
		width: 40px;
	}
	
	#featured h2 {
		font-size: 24px!important;
	}
	
	.blog .dp_portfolio_item_left {
		max-width: 150px!important;
	}
	
	#featured .map .et_pb_button {
		padding: 30px!important;
		font-size: 24px!important;
	}
	
	#places #row-lg .places-blurb .et_pb_blurb_content h4 {
		font-size: 28px!important;
	}
	
	#places #row-sm .places-blurb .et_pb_blurb_content h4 {
		font-size: 20px!important;
	}
	
	#tabs-slider-title h1 {
		font-size: 28px!important;
	}
	
	#tabs #slider-row h4 {
		font-size: 24px!important;
	}
	
	#pbe-footer-wa-wrap {
		font-size: 14px!important;
	}
	
	#slider-row {
		padding: 0!important;
	}
	
	body.et_header_style_left #et-top-navigation, .et_header_style_split #et-top-navigation {
    padding: 40px 0 0 0;
	}
	
	body.et_header_style_left #et-top-navigation nav>ul>li>a, .et_header_style_split #et-top-navigation nav>ul>li>a {
    padding-bottom: 40px;
}
	
	#tabs .et_pb_tabs {
	height: calc(100vh - 125px);
}
}

#tabs .et_pb_tabs_controls li.et_pb_tab_0 {
	background-color: #7d7752!important;
	z-index: 15;
}

#tabs .et_pb_tabs_controls li.et_pb_tab_0:before {
	background-image: url(/wp-content/uploads/pine-tree.png);
}

#tabs .et_pb_tabs_controls li.et_pb_tab_1 {
	background-color: #524f48!important;
	z-index: 14;
}

#tabs .et_pb_tabs_controls li.et_pb_tab_1:before {
	background-image: url(/wp-content/uploads/binoculars.png);
}

#tabs .et_pb_tabs_controls li.et_pb_tab_2 {
	background-color: #a5cee2!important;
	z-index: 13;
}

#tabs .et_pb_tabs_controls li.et_pb_tab_2:before {
	background-image: url(/wp-content/uploads/people.png);
}

#tabs .et_pb_tabs_controls li.et_pb_tab_3 {
	background-color: #d3c198!important;
	z-index: 12;
}

#tabs .et_pb_tabs_controls li.et_pb_tab_3:before {
	background-image: url(/wp-content/uploads/leaf.png);
}

#tabs .et_pb_tabs_controls li.et_pb_tab_4 {
	background-color: #717f80!important;
	z-index: 11;
}

#tabs .et_pb_tabs_controls li.et_pb_tab_4:before {
	background-image: url(/wp-content/uploads/trail.png);
}

#tabs ul.et_pb_tabs_controls:after {
	display: none;
}

#tabs .overflow-wrapper {
	flex-grow: 1;
	position: relative;
	height: 100%;
	display: flex;
    flex-direction: column;
}

@media (max-width: 980px) {
	#tabs .overflow-wrapper {
		height: auto;
	}
}

#tabs .et_pb_all_tabs {
	flex-grow: 1;
	display: flex;
    flex-direction: column;
    -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
	background-color: transparent!important;
}

#tabs .et_pb_tab {
	padding: 0px!important;
	height: auto;
}

#tabs .et_pb_tab h4 {
	font-size: 28px;
}

#tabs #tabs-slider-title {
	 padding: 5% 5% 10%;
	background-image: linear-gradient(180deg,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
	 z-index: 9;
}

#tabs #tabs-slider-title p {
	letter-spacing: .1em;
}

#tabs .et_pb_section_video_bg, .mejs-video {
	background-color: transparent!important;
}

#tabs .et_pb_blurb_content {
	max-width: 100%;
	width: 100%;
}

#tabs video {
	object-fit: cover!important;
	height: 100%!important;
	width:100%!important;
}

@media (min-width: 981px) {
	#tabs .et_pb_tabs {
	display: flex;
	flex-direction: row;
}
	
	#tabs #slider-row .et_pb_row {
	display: flex;
    align-items: center;
}
}

@media (max-width: 980px) {
	#tabs #tabs-slider-title {
	 padding: 40px 10%;
	}
	
	#tabs .et_pb_tab h4, #tabs .et_pb_tabs_controls li {
	font-size: 22px;
	}
	
	#tabs .et_pb_tabs_controls li:before {
		height: 40px;
		width: 40px;
	}
	
	#tabs .et_pb_tabs {
	height: auto;
	}
	
	#tabs .et_pb_button {
		margin-top: 1em;
	}
}

#tabs .et_pb_tabs_controls li {
	padding-top: 6px;
	padding-bottom: 6px;
}

#tabs .et_parallax_bg.et_pb_parallax_css {
	background-attachment: scroll!important;
}

/* -- FEATURED AREA -- */

.map {
	display: flex;
    flex-direction: column;
}

.map-title h1 {
	padding: 0!important;
}

.map-image {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
body #hotspot-403 .hotspots-image-container, 
body #hotspot-403 .leaflet-container {
    background: transparent;
}

#hotspot-403 .hotspots-image-container {
	background-color: transparent!important;
}

#hotspot-403 .hotspots-interaction {
	margin: 0;
}

.blog .post:last-child {
	margin-bottom: 0!important;
}

.blog a.more-link {
	display: table;
	margin-top: 1em;
}

.blog .dp_portfolio_item_left {
	max-width: 175px;
}

@media (max-width: 767px) {
	.blog .et_pb_portfolio_item {
		text-align: center!important;
	}
	
	.blog .dp_portfolio_item_left {
		margin: auto!important;
	}
	
	.blog a.more-link {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 980px) {	
	.blog .post {
		margin-bottom: 30px!important;
	}
	
	.blog .dp_portfolio_item_left {
	float: none!important;
}
}


/* -- PLACES AREA -- */

#places .places-blurb {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
   -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	 -webkit-box-pack: flex-end;
    -moz-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
	overflow: hidden!important;
	height: 100%;
}

#places .et_pb_column {
	margin: 5px;
}	

#places .places-blurb .et_parallax_bg.et_pb_parallax_css {
	background-size: cover!important;
	background-attachment: scroll!important;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#places .places-blurb .et_parallax_bg.et_pb_parallax_css::before {
	content: "";
	display: block;
	opacity: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(165, 206, 226, 0.8);
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#places .places-blurb:hover .et_parallax_bg.et_pb_parallax_css:before,
#places .places-blurb:focus .et_parallax_bg.et_pb_parallax_css:before {
	opacity: 1;
}

#places .places-blurb:hover .et_parallax_bg.et_pb_parallax_css,
#places .places-blurb:focus .et_parallax_bg.et_pb_parallax_css {
	-webkit-filter: grayscale(40%) contrast(150%); /* Safari 6.0 - 9.0 */
    filter: grayscale(40%) contrast(150%);
}

#places .places-blurb h4 {
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#places .places-blurb:hover h4, #places .places-blurb:focus h4 {
	transform: translateY(-10px);
}
/* ADA Compliance Update to #places */
#places .places-blurb h3 {
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#places .places-blurb:hover h3, #places .places-blurb:focus h3 {
	transform: translateY(-10px);
}
/*End ADA Compliance Update to #places */

#places #row-lg .places-blurb {
	min-height: 20vw;
}

#places #row-sm .places-blurb {
	min-height: 10vw;
}

#places .places-blurb .et_pb_blurb_content {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-top: 10.75%;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.8+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 ); /* IE6-9 */
}

#places .places-blurb .et_pb_blurb_content .et_pb_blurb_container {
	width: 80%;
	margin: 0 auto;
}
#places #row-lg .places-blurb .et_pb_blurb_content h3 {
	font-size: 32px;
	padding: 50px 0;
}

#places #row-lg .places-blurb .et_pb_blurb_content h4 {
	font-size: 32px;
	padding: 50px 0;
}

@media (max-width: 767px) {
	#places #row-lg .places-blurb .et_pb_blurb_content h4 {
	font-size: 22px;
	padding: 30px 0;
}
	
	#places #row-lg .places-blurb {
	min-height: 150px;
}
}

#places #row-sm .places-blurb .et_pb_blurb_content h4 {
	font-size: 22px;
	padding: 30px 0;
}

/* -- FOOTER -- */

#main-footer > .container,
#footer-bottom > .container,
#footer-area-widgets .et_pb_row {
	width: 100%!important;
	max-width: 100%!important;
	padding: 0 30px;
	line-height: 1.3em!important;
	color: #524f48;
}

#footer-widgets .footer-widget li {
	padding-left: 0;
}
#footer-widgets .footer-widget li:before {
	display: none;
	content: none;
}
@media (max-width: 1500px) and (min-width: 981px) {
	#main-footer > .container {
		font-size: 14px!important;
	}
}

/* make 3 side instead of 2 wide, at this width */
@media (min-width: 768px) and (max-width: 980px) {
	#main-footer #footer-widgets .footer-widget {
		width: 30%!important;
		margin: 0 5% 5% 0!important;
	}
	/* every 2nd widget doesnt need right margin */
	#main-footer #footer-widgets .footer-widget:nth-child(3n) {
		margin-right: 0!important;
	}
	#main-footer #footer-widgets .footer-widget:nth-child(3n+1) {
		clear: both;
	}
	#main-footer #footer-widgets .footer-widget:last-child {
		margin-bottom: 0!important;
	}
}

/* make footer widgets centered at this width */
@media (max-width: 767px) {
	#pbe-footer-wa-wrap,
	#main-footer .footer-widget {
		text-align: center !important;
	}
	#main-footer #footer-widgets .footer-widget .fwidget {
		float: none !important;
	}
}
/* keep footer widgets side by side (2 side) until 480px */
@media (min-width: 480px) and (max-width: 767px) {
	#main-footer #footer-widgets .footer-widget:nth-child(n) {
		width: 46.25%!important;
		margin: 0 7.5% 7.5% 0!important;
	}
	/* every 2nd widget doesnt need right margin */
	#main-footer #footer-widgets .footer-widget:nth-child(2n) {
		margin-right: 0!important;
	}
	#main-footer #footer-widgets .footer-widget:last-child {
		margin-bottom: 0!important;
	}
}

@media (max-width: 479px) {
	#main-footer #footer-widgets {
		padding-top: 8%;
		padding-bottom: 8%;
	}
	#main-footer #footer-widgets .footer-widget:last-child {
		margin-bottom: 0!important;
	}
}

/* old PBE stuff */
#footer-area-widgets li.menu-item {
	white-space:nowrap;
}
#footer-area-widgets div.textwidget a {
	white-space:nowrap;
}
#footer-area-widgets .fwidget h4.title {
	white-space:normal;
}

/* footer accent color */
.brown {
	color: #7d7752;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.et_pb_module.et_pb_post_title .entry-title {
	padding: 0;
}

/* -- PBE FIX -- */

div[id^='pbe'][id$='wa-wrap'] {
	top: 0!important;
	z-index: unset!important;
}

div[id^='pbe'][id$='wa-wrap'] .et_pb_widget {
	margin: 0!important;
	float: none!important;
}

/* -- INTERNAL HEADERS -- */

.entry-title {
	margin-top: 0!important;
}

.internal-header .et_pb_post_title.text, .internal-header .et_pb_fullwidth_header {
	padding: 10px 10%!important;
}

.internal-header .et_pb_title_container,
.internal-header .et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
	width: 100%!important;
    max-width: 1200px!important;
	margin: 0 auto!important;
	padding: 10px 0!important;
}

.internal-header h1 {
	padding: 0!important;
	line-height: 1.2em!important;
	font-size: 40px;
}

@media (max-width: 1200px) {
	.internal-header h1 {
		font-size: 40px;
	}
	
	body h1 {
		font-size: 40px;
	}
	
	body h2 {
		font-size: 30px!important;
	}
}

@media (max-width: 980px) {
	.internal-header h1 {
		font-size: 30px;
	}
	
	body h1 {
		font-size: 26px;
	}
	
	body h2 {
		font-size: 28px!important;
	}
	
	.secondary-header.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
		width: 100%;
		padding: 0;
	}
}

@media (max-width: 767px) {
	.internal-header h1 {
		font-size: 30px;
	}
	
	body h1 {
		font-size: 28px;
	}
	
	body h2 {
		font-size: 22px!important;
	}
	
	h4 {
		font-size: 16px!important;
	}
}

/* fixes wrapping on outfitters, guides, & sporting goods title */
.term-outfitters-guides-sporting-goods .et_listing_category .header-content h1,
.term-historical-attractions-museums .et_listing_category .header-content h1 {
	max-width: 600px;
	margin: 0 auto;
}

.archive .et_listing_category .et_pb_fullwidth_header_overlay {
	background-color: rgba(82,79,72,0.8);
}

/* -- GRAVITY FORMS -- */

input[type='submit'].gform_button {
	color: #ffffff!important;
	padding: .3em 1em!important;
}

.gform_wrapper {
	margin: 0!important;
}

.gform_body {
	margin-top: -16px!important;
}

.gform_wrapper .gform_footer {
	padding: 0!important;
}

/*.et_pb_featured_bg.featured-image {
	-webkit-filter: grayscale(60%) contrast(150%);
    filter: grayscale(60%) contrast(150%);
	opacity: .4;
}*/

.featured-image {
	padding: 0 0 21% 0!important;
}

.featured-image .et_pb_title_container {
	display: none;
}

#acf-form {
	margin-top: 60px;
	background-color: rgba(0,0,0,.05);
}

.ginput_container.ginput_container_fileupload {
	padding: 20px;
	background-color: rgba(0,0,0,.05);
}

/* -- PROGRESS MAP -- */

/* title color */
.details_container .details_title a {
	color: #a5cee2!important;
}
/* font */
.codespacing_progress_map_area *,
div.cspml_details_container div.cspml_details_title a,
div.cspml_details_container div.cspml_details_title {
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important;
}
/* plus and minus buttons */
div.cspm_zoom_in_control, div.cspm_zoom_out_control {
	background-color: rgba(165,206,226,.97)!important;
}
/* plus and minus button divider line */
div.cspm_zoom_in_control {
	border-color: #a5cee2!important;
}
/* changes image icons to be grey instead of light blue */
img[src*="recenter.png"], /* recenter map button icon */
img[src*="geoloc.png"], /* geo location button icon */
img[src*="continents.png"], /* zoom to continents button icon */
img[src*="loup.png"], /* map search form button icon */
img[src*="filter.png"], /* faceted search form button icon */
img[src*="proximities.png"] /* nearby points of interest button icon */ {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
}
/* info box loading bar color */
.blue_cloud {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
	/* actual color is a box shadow if you want to edit the color, but it was easier to just make grey */
	/* box-shadow: 6px 0 0 0 rgba(44,172,227,1), 12px 0 0 0 rgba(44,172,227,1), 18px 0 0 0 rgba(44,172,227,1), 24px 0 0 0 rgba(44,172,227,1), 30px 0 0 0 rgba(44,172,227,1), 36px 0 0 0 rgba(44,172,227,1); */
}
/* carousel loading spinner color */
.cspm_spinner {
	/* easier to just make grey */
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
}
/* progress bar color */
#nprogress .bar {
	background-color: #a5cee2!important;
}
/* map spinner icon color */
#nprogress .spinner-icon {
        border-top-color: #a5cee2!important;
        border-left-color: #a5cee2!important;
}
/* pulsating ring around pin */
#pulsating_holder div.dot {
        border-color: #a5cee2!important;
}

/* -- LIST AND FILTER ADDON -- */

/* resize the map button */
div.cspml_resize_map,
div.cspml_resize_map:hover /* on hover */ {
    background: #a5cee2;
}

/* title font color */
#cspml_listings_container div.cspml_details_container div.cspml_details_title a,
#cspml_listings_container div.cspml_details_container div.cspml_details_title {
	color: #717f80;
}

/* refine search */
#cspml_listings_container .cspml_fs_title, /* left side */
#cspml_listings_container .cspml_close_fs /* right side */ {
    background: #a5cee2;
}

img[src*="list.png"] {
	/* easier to just make grey */
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

/* filter button */
#cspml_listings_container .cspml_btn {
    background: #a5cee2;
}

/* checkbox border color */
#cspml_listings_container .icr-label .icr-item {
    border-color: #717f80;
}

/* checkbox border color */
#cspml_listings_container .icr-label.checked .icr-item, /* checked */
#cspml_listings_container .icr-label:hover .icr-item /* hovered */ {
    border-color: #a5cee2;
}

/* checkmark color */
#cspml_listings_container .icr-label.checked .type_checkbox:after,
#cspml_listings_container .icr-label.checked .type_checkbox:before,
#cspml_listings_container .icr-label.checked .type_radio:after {
    background: #a5cee2;
}

/* pinpoint triangle */
#cspml_listings_container .cspml_item_pinpoint_triangle {
    border-right-color: rgba(165,206,226,.90)!important;
}

#cspml_listings_container div.cspml_no_results {
	color: #717f80;
}

img[src*="big-cluster.png.png"],
img[src*="medium-cluster.png"],
img[src*="small-cluster.png"],
img[src*="pin-blue.png"] {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
}

/*.simplefavorite-button, .simplefavorite-button.active {
	text-transform: uppercase;
	background-color: #7f7955;
	padding: .3em 1em;
	line-height: 1.7em;
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 1em;
	display: table;
	opacity: 1;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
}

#post-516 .entry-title.main_title {
	display: none;
}

.single-list-wrapper p:first-child > a {
	font-size: 32px;
	color:  #7f7955;
	letter-spacing: .1em;
	text-transform: uppercase;
}*/

p:empty {
	display: none;
}

/*.simplefavorite-button:hover {
	background-color: #a5cee2;
	cursor: pointer;
}*/

/*.simplefavorites-user-count {
	padding-left: .5em!important;
	padding-right: 0!important;
}

.simplefavorites-user-count:before {
	content: '(';
	display: inline-block;
}

.simplefavorites-user-count:after {
	content: ')';
	display: inline-block;
}*/

.cspml_details_content, .cspml_details_container {
	height: auto!important;
}

.cspml_details_container {
	padding: 0 0 0 30px!important;
}

.cspml_item {
	padding: 3.735% 0!important;
	box-shadow: none!important;
	border-bottom: 1px solid rgba(0,0,0,.1)!important;
	background-color: #ffffff!important;
}

div.cspml_details_container div {
    font-size: 16px!important;
    font-weight: 500!important;
}

.listing .codespacing_progress_map_area {
	display: none!important;
}

.listing .margin-top-30 {
	margin-top: 0!important;
}

/* -- EVENT CALENDAR -- */

body .eventon_fc_days .evo_fc_day.today:before {
	background-color: #a5cee2;
}

body .eventon_fullcal .eventon_fc_days .evo_fc_day.on_focus {
	background-color: #edf5f9;
}

body.single-ajde_events .event_description .evcal_close {
    display: none;
}
body.single-ajde_events .event_description .evo_metarow_learnMICS.evorow.lastrow {
    padding-right: 1px;
}

@media (min-width: 768px) {
.et_pb_tab:not(.et-pb-active-slide):not(.et-pb-moved-slide) {
display: block!important;
max-height: 0px;
width: 100%;
overflow: hidden;
	padding: 0!important;
}
}

#evcal_widget .evo_cal_above {
	display: none!important;
}

/* -- CUSTOM VIEWS PRO -- */

/* hides edit button for admin */
.pt-cv-edit-view, .pt-cv-edit-view + br {
	display: none!important;
}

/*.pt-cv-view .pt-cv-title {
	color: #7f7955;
	letter-spacing: .1em;
	padding-bottom: 10px;
	margin: 0!important;
	font-size: 22px;
}

.pt-cv-thumb-left.cvp-responsive-image {
	margin-right: 30px;
}

.pt-cv-view .pt-cv-readmore {
	margin: 1.7em 0 0;
	-webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
	padding: .3em 1em!important;
	display: table;
	opacity: 1!important;
	line-height: 1.7em!important;
	letter-spacing: .1em!important;
	text-transform: uppercase!important;
	font-size: 16px!important
}

.cvp-label {
	color: #B8B8B8;
	text-transform: uppercase;
    font-size: 11px;
	font-weight: normal!important;
	padding: 1px 0;
}

.cvp-label:after {
	content: ':';
	display: inline-block;
}

.cvp-live-filter.cvp-dropdown {
	margin: 0 10px 0 0!important;
}

.cvp-dropdown .nice-select:after {
	display: none;
}

.cvp-dropdown .nice-select {
	padding: 0;
	height: auto;
	line-height: 1em;
	border: 0;
	float: none;
	display: inline-block;
}

.cvp-dropdown .nice-select .current {
	font-family: 'open sans', 'arial narrow';
	cursor: pointer;
	margin: 0 5px 0 0;
    text-transform: uppercase;
    font-size: 11px;
    background-color: #bbbbbb;
    padding: 1px 6px;
    border-radius: 4px;
    color: #fff;
    font-style: italic;
	height: auto;
	line-height: 27px;
	border: none;
	display: inline-block;
}

.cvp-dropdown .nice-select .current:hover {
	background-color: #a5a5a5;
}

.cvp-dropdown .nice-select .list li {
    border-bottom: 1px solid #d9d9d9;
    padding: 5px;
    line-height: 130%;
	min-height: unset;
    margin: 0;
    cursor: pointer;
    display: block;
    border-left: 2px solid transparent;
    color: #929292;
    position: relative;
	text-transform: uppercase;
    font-size: 11px;
}

.cvp-dropdown .nice-select .list {
    position: absolute;
    margin-top: 5px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    z-index: 500;
    -webkit-box-shadow: 0px 0px 3px #d9d9d9;
    box-shadow: 0px 0px 3px #d9d9d9;
    border-radius: 4px;
    overflow: hidden;
    min-width: 150px;
}

.cvp-dropdown .nice-select .list li:hover {
    background-color: #f7f7f7;
    color: #606060;
    border-left-color: #C7C7C7;
}

.cvp-live-filter+.pt-cv-view {
	margin-top: 0;
}

.cvp-live-filter .cvp-label {
	margin-right: 5px!important;
}

.filter-title {
	color: #B8B8B8;
    width: auto;
    font-style: italic;
    font-size: 12px;
    text-transform: uppercase;
}*/

.cvp-label {
	displaY: block;
}

.cvp-checkbox .checkbox {
	float: left;
	margin-right: 1em;
}

.push-buttons .et_pb_blurb_position_top .et_pb_main_blurb_image img {
	max-height: 180px;
	width: auto;
}

.push-buttons .et_pb_blurb_position_left + .et_pb_button_module_wrapper {
	margin-left: 200px!important;
}

.push-buttons .et_pb_blurb_position_left .et_pb_main_blurb_image {
	width: 200px;
	padding-right: 30px;
}

.push-buttons .et_pb_blurb_position_left .et_pb_main_blurb_image img {
	width: 180px;
}

.push-buttons .et_pb_blurb_position_left .et_pb_blurb_content {
	width: 100%;
	max-width: 100%;
}

.push-buttons .et_pb_blurb_position_left .et_pb_blurb_container {
	padding-left: 0!important;
}

.push-buttons .et_pb_equal_columns .et_pb_column_inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.push-buttons .et_pb_row_inner:not(:last-child) {
	border-bottom: 1px solid rgba(0,0,0,.1);
}


.et_pb_column_4_4 .col-lg-3 {
	width: 100%!important;
	}
	
	.et_pb_column_4_4 .col-lg-9 {
		width: 100%!important;
}

.et_pb_tab {
	padding: 30px;
}

.et_pb_tabs_controls li {
	text-transform: uppercase;
	letter-spacing: .1em!important;
}

.et_pb_tabs div[class^="cspml_listings_area_map"] .cspml_item_holder:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
.et_pb_tabs div[class^="cspml_listings_area_map"] .cspml_item_holder:nth-last-child(-n+2) {
	margin-bottom: 0;
}
}

.et_pb_team_member_description h4 {
	font-size: 18px!important;
}

.no-padding h1, .no-padding h2, .no-padding h3, .no-padding h4, .no-padding h5, .no-padding h6 {
	padding: 0!important;
}

.et_pb_toggle_title {
	font-size: 16px;
}

.checklist ul + p {
	padding-top: 1em;
}

.et_pb_blurb_content p:last-of-type {
	padding-bottom: 1em;
}

.et_pb_blurb_content p:child {
	padding-bottom: 0;
}

.et_pb_acf_table table {
	margin: 0!important;
}

#listing-gallery ul {
	padding: 0!important;
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

#listing-gallery li {
	width: 20%;
	display: table;
}

#listing-gallery a, #listing-gallery img {
	display: block;
}

#listing-categories {
	border: 0;
}

#listing-categories td:not(.sb_mod_acf_table_item) {
	font-size: 13px;
}

#listing-categories table, #listing-categories tbody, #listing-categories tr, #listing-categories td {
	display: block;
	border: 0;
	padding-left: 0;
	padding-right: 0;
	background-color: transparent;
}

#listing-categories td.sb_mod_acf_table_item {
	text-transform: uppercase;
	padding-bottom: 0;
	border-bottom: 1px solid #ebebeb;
}

.social-media-icons .social-wrapper,
.amenities .taxonomy-list {
	padding: 0;
	list-style-type: none;
}

.amenities #listing-amenities .sb_cpt_term_list a, 
.amenities .taxonomy-list li span {
	display: block;
	pointer-events: none!important;
	cursor: unset;
	margin: 5px 20px 5px 0;
}

.amenities #listing-amenities .sb_cpt_term_list a:before, 
.amenities .taxonomy-list li span:before {
	content: '';
	display: inline-block;
	height: 20px;
	width: 20px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 10px;
	vertical-align: text-bottom;
}

.amenities #listing-amenities .sb_cpt_term_list a[href*="accepts-credit-cards"]:before, 
span.accepts-credit-cards:before {
	background-image: url(/wp-content/uploads/credit.gif);
}

.amenities #listing-amenities .sb_cpt_term_list a[href*="handicap-accessible"]:before, 
span.handicap-accessible:before {
	background-image: url(/wp-content/uploads/handicap.gif);
}

.amenities #listing-amenities .sb_cpt_term_list a[href*="open"]:before, 
span.open:before,
.amenities #listing-amenities .sb_cpt_term_list a[href*="open-seasonally"]:before, 
span.open-seasonally:before {
	background-image: url(/wp-content/uploads/calendar.gif);
}

.amenities #listing-amenities .sb_cpt_term_list a[href*="pet-friendly"]:before, 
span.pet-friendly:before {
	background-image: url(/wp-content/uploads/pet-friendly.gif);
}

.amenities #listing-amenities .sb_cpt_term_list a[href*="wifi"]:before, 
span.wifi:before {
	background-image: url(/wp-content/uploads/wifi.gif);
}

.amenities #listing-amenities .sb_cpt_term_list a[href*="pool"]:before, 
span.pool:before {
	background-image: url(/wp-content/uploads/sea.gif);
}

body.single-listings table.category-table {
	width: 100%;
    margin: 0 0 0.5em 0;
    border: 1px solid #eee;
    text-align: left;
}

body.single-listings table.category-table tr td {
	padding: 6px 12px;
}

/*h2.acf_label {
	font-size: 18px;
}
.categories .sb_mod_acf_table_item {
	text-transform: uppercase;
	font-size: 18px;
	color: #6B6B6B;
}
*/
.categories td:not(.sb_mod_acf_table_item) {
	font-size: 13px;
	font-style: italic;
	font-family: 'open sans', 'arial narrow';
}
/*
.categories tr:not(last-child) {
	border-bottom: 1px solid #e5e5e5!important;
}

.categories td {
	padding: 25px!important;
	background-color: #f5f5f5!important;
	border: 0!important;
}

.categories {
	border-right: 1px solid #cdcdcd!important;
    border: 1px solid #EFEEEE;
    border-radius: 6px;
}*/

.social-media-icons a {
	font-size: 20px;
}

.social-wrapper li {
	float: left;
	margin-right: 20px;
}

.social-wrapper:after {
	content: '';
	display: block;
	clear: both;
}

.single-ajde_events .eventon_main_section {
	padding: 0!important
}

.fagsfacf-gallery-slider button.slick-next, .fagsfacf-gallery-slider button.slick-next:hover, .fagsfacf-gallery-slider button.slick-next:focus, .fagsfacf-gallery-carousel  button.slick-next, .fagsfacf-gallery-carousel  button.slick-next:hover, .fagsfacf-gallery-carousel  button.slick-next:focus, .fagsfacf-gallery-slider button.slick-prev, .fagsfacf-gallery-slider button.slick-prev:hover, .fagsfacf-gallery-slider button.slick-prev:focus, .fagsfacf-gallery-carousel button.slick-prev, .fagsfacf-gallery-carousel button.slick-prev:hover, .fagsfacf-gallery-carousel button.slick-prev:focus {
	background-color: #a5cee2!important;
}

.fagsfacf-gallery-slide-inner img {
	margin: auto;
}

.fagsfacf-gallery-slider {
	overflow: hidden;
}

@media (min-width: 981px) {
.et_pb_gutters3 .et_pb_column_1_4 .et_pb_widget_area .et_pb_widget:not(:last-child) {
	margin-bottom: 13.174%!important;
}
}

	.et_pb_gutters3 .et_pb_column_1_4 .et_pb_widget_area .et_pb_widget:last-child {
		margin-bottom: 0!important;
	}

.tml input[type="text"], .tml input[type="password"]  {
	background-color: #ffffff!important;
    font-size: 14px;
    color: #333333!important;
    padding: 16px;
    line-height: initial;
    height: initial;
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	border: 1px solid #717f80;
}

.tml input[type="submit"] {
	    text-transform: uppercase;
	border: none!important;
	    background-color: #717f80;
	    font-size: 16px;
	-moz-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
	    color: #ffffff!important;
    padding: .3em 1em!important;
	    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
	line-height: 1.7em;
}

.tml input[type="submit"]:hover {
	    background-color: #a5cee2;
	cursor: pointer;
}

.tml-action-links {
	padding: 0!important;
}

body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text] {
	color: #333333!important;
	background-color: #ffffff!important;
	border: 1px solid #717f80;
}

.ph-collect {
	margin: 0!important;
}

.collect-button--icon {
	display: flex;
	align-items: center;
}

/*.collect-button--icon.in:before {
	content: 'Remove';
	display: inline-block;
	margin-right: 15px;
}

.collect-button--icon.out:before {
	content: 'Add';
	display: inline-block;
	margin-right: 15px;
}*/

.cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cta .et_pb_promo_description, .cta h2 {
	padding: 0;
}

.cspml_details_content hr {
	display: none;
}

.more-link {
	font-size: 16px;
    background: #6a797a;
    border-width: 0px!important;
    border-radius: 0px;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .1em!important;
	color: #fff!important;
	line-height: 1.7em!important;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
	display: table!important;
	padding: .3em 1em!important;
}

.more-link:hover {
	    background: #a5cee2;
}

.et_pb_posts.et_pb_module article {
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.home #featured .et_pb_portfolio_item:last-child {
	margin-bottom: 0!important;
}

/* -- REVISION ROUND 2 -- */

.towns .et_pb_row:not(:last-child) {
	border-bottom: 1px solid rgba(0,0,0,.1);
}

.towns .et_pb_blurb_position_left .et_pb_main_blurb_image {
	width: 230px;
	padding-right: 30px;
}

.towns .et_pb_blurb_position_left .et_pb_main_blurb_image img {
	width: 200px;
}

.towns .et_pb_blurb_position_left .et_pb_blurb_content {
	width: 100%;
	max-width: 100%;
}

.towns .et_pb_blurb_position_left .et_pb_blurb_container {
	padding-left: 0!important;
}

.et_pb_module.et_pb_tabs {
	border: 0px solid!important;
}

.et_pb_tab {
	padding: 30px 0 0 0!important;
}

.et_pb_tabs_controls li a {
	font-size: 22px;
	    font-weight: 500;
	    letter-spacing: .1em!important;
	    line-height: 1.7em!important;
	padding: .3em 1em!important;
}

.et_pb_tab_active a,
.et-db #et-boc .et-l .et_pb_tabs_controls li.et_pb_tab_active a {
	color: #ffffff!important;
}

.et_pb_tab_active {
	background-color: #524f48!important;
}

/*ul.et_pb_tabs_controls:after {
	display: none;
}*/

#cta .et_pb_equal_columns .et_pb_column {
	display: flex;
	align-items: center;
}

#cta .et_pb_equal_columns .et_pb_column:first-child {
	flex-grow: 1;
}

#cta .et_pb_equal_columns .et_pb_column:last-child {
	flex-basis: auto;
    width: auto;
}

.header-images {
	overflow: hidden!important;
}

.header-images .et_pb_column {
	width: calc(33.333% - 6.666px)!important;
}

.header-images .et_pb_column:not(:last-child) {
	margin-right: 10px!important;
}

.et_social_icons_container:before {
	content: 'Share';
	display: block;
	background-color: #ffffff;
	padding: 7px;
	width: 26px;
	float: right;
	color: #333333;
	font-size: 10px;
	text-align: center;

}

/* -- CHECKBOXES -- */

article .et_main_video_container {
	margin-bottom: 30px;
}

div[class^=cspml_pagination_] ul li a, div[class^=cspml_pagination_] ul li span {
	color: #333333!important;
}

div[class^=cspml_pagination_] ul li span.current, div[class^=cspml_pagination_] ul li a:hover {
	background-color: #a5cee2!important;
}

div.cspml_fs_item_container label, div.cspml_fs_label span.cspml_label_text {
	font-weight: 500!important;
}

.terms a:not(:last-child):after {
	content: ',\00a0';
	display: inline-block;
}
.eventon_events_list .eventon_list_event .evcal_eventcard, .evcal_evdata_row, .evorow .tbrow, .dark1, .evo_pop_body, .eventon_events_list .eventon_list_event .desc_trig, .eventon_events_list .eventon_list_event .desc_trig:hover {
	background-color: #ffffff!important;
}

#evcal_list {
	border-radius: 0!important;
}

/* sidebar eventon calendar month title */
.et_pb_widget_area #evcal_widget .evcal_month_line p {
	font-size: 14px;
    min-height: 1em;
}

.acf_label {
	font-size: 18px!important;
}

.eventon_fullcal .evo_fc_day {
	color: #333333!important;
}

.eventon_fullcal .evo_fc_day {
	padding: 30px 0!important;
}

.ajde_evcal_calendar .calendar_header .evcal_arrows .fa {
	color: #717f80!important;
}

.ajde_evcal_calendar .calendar_header .evcal_arrows {
	border-color: #717f80!important;
}

.eventon_sorting_section p.evo_filter_submit {
	background-color: #a5cee2!important;
}

.ajde_evcal_calendar .evo_sort_btn {
	font-style: unset!important;
	font-size: 18px!important;
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important;
	color: #7f7955!important;
	letter-spacing: .1em!important;
    font-weight: 500!important;
}

.eventon_sort_line .eventon_sortval_for_dropdown, .eventon_filter_line .filtering_set_val, .eventon_sort_line .eventon_sf_cur_val p,
.eventon_sorting_section p.evo_filter_submit, .evo_cal_above span {
	font-style: unset!important;
	border-radius: 0!important;
	font-size: 15px!important;
	font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif!important;
	font-weight: 500!important;
    letter-spacing: .1em!important;
    line-height: 1.7em!important;
    padding: .3em 1em!important;
}

/* -- REVISION ROUND 3 -- */

div.cspml_fs_label span.cspml_toggle_btn {
	left: 15px;
	text-align: right;
}

.et_pb_column {
	z-index: unset!important;
}

.evo_time p,
.evo_metarow_time .evcal_evdata_cell p {
	text-transform: capitalize;
}

.page-id-297 .evo_metarow_directimg, 
.page-id-297 .event_description .bordb:not(.evo_metarow_details):not(:last-child) {
	display: none!important;
}
/* force hide the Learn More link and the calendar buttons on the event listing (non single) on the EVENTS DIRECTORY page */
.page-id-297 #evcal_list .eventon_list_event .event_description .evo_metarow_learnMICS.evorow {
	display: none;
}
.page-id-297 #evcal_list .eventon_list_event .event_description .evo_metarow_details.evorow.evcal_event_details {
	background-color: rgba(0,0,0,0.025) !important;
}

/* -- REVISIONS ROUND 4 -- */

.evo_widget .bordb:not(.evcal_event_details) {
	display: none!important;
}

.cspml_label_text:after {
	content: '\00a0- Click here for more info';
	display: inline-block;
	font-style: italic;
	opacity: .6;
	padding-right: 30px;
}

.et_pb_gallery.et_pb_gallery_grid.gallery-crop-to-fill .et_pb_gallery_item.et_pb_grid_item img {
	height: 250px;
	width: 100%;
}

body.search-results #page-container #main-content #left-area article .left-half,
body.archive #page-container #main-content #left-area article .left-half {
	margin-bottom: 30px;
}

body.page-id-8875 .codespacing_progress_map_area {
	display: none;
}

iframe.gmap-iframe {
	display: block;
}

span.evo_above_title .featured {
    display: none!important;
}
.et_pb_blurb_position_left .et_pb_main_blurb_image {
    width: 200px!important;
    padding-right: 30px!important;
}

td.title {
	width:200px;
}

.et_pb_post a img {
	max-width:600px!important;
	max-height:350px!important;
}

.et_pb_bg_layout_light .et_pb_widget li a {
	white-space:normal;
}

.single-listings .post-date {
	display:none!important;
}

/* -- COLLECTIONS -- */

.collection-card {
	height: 360px;
}

.collections-template-default.single-collections .collection-detail--header {
	height:auto !important;
}

.collections-template-default.single-collections .collection-detail--header--heading {
	width: 100%;
	-webkit-flex-shrink: 1;
	flex-shrink: 1;
}
.post-type-archive-collections .collection-category--header--heading h1,
.post-type-archive-collections .collection-category--header--heading h2,
.collections-template-default.single-collections .collection-detail--header--heading h1,
.collections-template-default.single-collections .collection-detail--header--heading h2 {
	line-height: 1.2em;
	letter-spacing: 0;
	text-transform: none;
}

.fs-collection-divider {
	padding-top: 30px;
	padding-bottom: 30px;
}

.fs-collection-divider h6 {
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	font-size: 20px;
}

.collections-template-default.single-collections .container.postlist.single-themes-page {
	background-color: #faf9f9;
	max-width: 100%;
	width: 100%;
}
.collections-template-default.single-collections .container.postlist.single-themes-page .maincontent {
	max-width: 1280px;
	position: relative;
	width: 80%;
	margin: auto;
	padding: 30px 0;
}

.collections-template-default.single-collections .wp-collection {
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	background-color: white;
}

.collections-template-default.single-collections .wp-collection.empty {
	padding: 30px;
}

.collections-template-default.single-collections .wp-collection .reddit-post.pull-left,
.collections-template-default.single-collections .wp-collection .reddit-post-mob.pull-left {
	float: none;
}

.wp-collection .reddit-post img,
.wp-collection .reddit-post-mob img {
	margin: 25px 0 25px 25px;
	border-radius: 50%;
	width: 75px;
	float: left;
}

.wp-collection .reddit-post .content,
.wp-collection .reddit-post-mob .content {
	width: 50%;
	width: calc(100% - 100px);
}

.wp-collection .reddit-post .entry-title,
.wp-collection .reddit-post-mob .entry-title {
	font-size: 24px;
	padding: 10px;
    margin-top: 15px!important;
	text-transform: none;
    letter-spacing: 0;
}

.collections-template-default.single-collections .collection-detail--subnav--container {
	width: 80%;
	max-width: 1280px;
}

/* we moved the author element so we update styling of that wrapper */
.collections-template-default.single-collections .collection-detail--subnav--container .collection-detail--header--curator {
	display: -webkit-box;
	display: -moz-box;
	display: box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	display: none;
}
.collections-template-default.single-collections .collection-detail--subnav--container .collection-detail--header--curator .user-image {
	margin-right: 10px;
}
.collections-template-default.single-collections .collection-detail--subnav--container .collection-detail--header--curator .user-image img {
	display: block;
}
.collections-template-default.single-collections .collection-detail--subnav--container .collection-detail--header--curator span:last-child {
	align-self: center;
}

/* custom text we added via PHP */
.collection-detail--share-buttons-share-text {
	margin-right: 15px;
	line-height: 15px;
	font-weight: 300;
	font-size: 0.875em;
}

.post-type-archive-collections #your-itineraries {
	background-color: #faf9f9;
}

.post-type-archive-collections #your-itineraries .collections-user-heading {
	background-color: #717f80;
	color: white;
	text-align: center;
	padding: 30px;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2em;
	margin: 0;
}

.post-type-archive-collections .postlist {
	margin: 0;
}

.all-featured-itineraries,
.post-type-archive-collections .postlist .maincontent,
.post-type-archive-collections .postlist #collections-user {
	padding: 30px 20px;
	max-width: 1310px!important;
	margin: auto;
}

.all-featured-itineraries .no-featured-collections,
.post-type-archive-collections .postlist .no-featured-collections {
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	border-radius: 5px;
	border: 1px solid #f2f2f2;
	text-align: center;
	padding: 15px;
}

.all-featured-itineraries .no-featured-collection h4,
.post-type-archive-collections .postlist .no-featured-collections h4 {
	padding: 0;
	margin: 0;
}
.all-featured-itineraries .no-featured-collections h4 + p,
.post-type-archive-collections .postlist .no-featured-collections h4 + p {
	margin-top: 15px;
}
.all-featured-itineraries .c-card,
.post-type-archive-collections .postlist .c-card {
    width: 31.33333%;
    margin: 1%;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid #f2f2f2;
}

.all-featured-itineraries .c-card::after,
.post-type-archive-collections .postlist .c-card::after {
	height: 70px;
	width: 100%;
	position: absolute;
	bottom: 0;
	content: '';
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, 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=0 ); /* IE6-9 */
	border-radius: 0 0 5px 5px;
	pointer-events: none;
}

.all-featured-itineraries .collection-card--header,
.post-type-archive-collections .collection-card--header {
	border-radius: 5px 5px 0 0;
	background-color: #717f80;
	overflow: hidden;
}

.all-featured-itineraries .collection-card--header::after,
.post-type-archive-collections .collection-card--header::after {
	height: 70px;
	width: 100%;
	position: absolute;
	bottom: 0;
	content: '';
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
	pointer-events: none;
	opacity: 0.666;
}

.all-featured-itineraries .collection-card--header .collection-author-nickname,
.post-type-archive-collections .collection-card--header .collection-author-nickname {
	color: white;
	text-shadow: 0 1px 3px black;
	text-align: center;
	position: absolute;
	bottom: 0;
	z-index: 1;
	width: 100%;
	line-height: 1em;
	padding: 15px 10px;
	font-size: 13px;
	display: none;
}

.all-featured-itineraries .collection-card--header .collection-author-nickname img,
.post-type-archive-collections .collection-card--header .collection-author-nickname img {
	vertical-align: middle;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0,0,0,0.5);
	margin-right: 5px;
}

.all-featured-itineraries .collection-card--name h3,
.post-type-archive-collections .collection-card--name h3 {
	font-size: 18px !important;
	line-height: 1.2em;
	font-weight: 600;
	padding: 20px;
}

/* also clear all the post cards above it */
.post-type-archive-collections .show-more-featured {
	padding: 2% 1% 1%;
	clear: both;
}

.post-type-archive-collections .show-more-featured a {
	text-align: center;
	display: block;
	font-size: 20px;
	background-color: #524f48;
	color: white;
	padding: 1em 1em;
	font-weight: 500;
	text-transform: uppercase;
}
.post-type-archive-collections .show-more-featured a:hover {
	background: #717f80;
	color: white;
}
.post-type-archive-collections .show-more-featured a span::before {
    font-family: 'FontAwesome';
    content: '\f022\00a0';
    display: inline-block;
	font-weight: normal;
	vertical-align: middle;
	font-size: 24px;
	margin-right: 5px;
	opacity: 0.5;
}
.post-type-archive-collections .show-more-featured a span::after {
    font-family: 'FontAwesome';
    content: '\00a0\f101';
    display: inline-block;
	font-weight: normal;
	font-size: 14px;
	margin-left: 5px;
	vertical-align: middle;
	opacity: 0.5;
}

@media (max-width: 980px) {
	.all-featured-itineraries .c-card,
	.post-type-archive-collections .postlist .c-card {
		width: 48%;
	}
}

@media (max-width: 767px) {
	.fs-collection-divider {
		text-align: center;
	}
	.collections-template-default.single-collections .collection-detail--header--heading h1,
	.post-type-archive-collections .collection-category--header--heading h1 {
		font-size: 32px !important;
	}
	.collections-template-default.single-collections .collection-detail--header--heading h2,
	.post-type-archive-collections .collection-category--header--heading h2 {
		font-size: 16px !important;
	}
	.collections-template-default.single-collections .collection-detail--subnav,
	.collections-template-default.single-collections .collection-detail--subnav--container {
		height: auto;
		display: block;
	}
	.collections-template-default.single-collections .collection-detail--subnav--container {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.collections-template-default.single-collections .collection-detail--subnav--container .collection-detail--header--curator {
		justify-content: center;
	}
	.collections-template-default.single-collections .collection-detail--share-buttons {
		margin-top: 0;
		float: none;
		height: auto;
		justify-content: center;
	}
	.wp-collection .reddit-post .entry-title, 
	.wp-collection .reddit-post-mob .entry-title {
		font-size: 18px;
		line-height: 1.2em;
	}
	.collections-template-default.single-collections .wp-collection .description {
		font-size: 0.875em;
		line-height: 1.5em;
	}
	.all-featured-itineraries .collection-card--title
	.post-type-archive-collections .collection-card--title {
		font-size: 0.875em;
		line-height: 1.5em;
	}
}

@media (max-width: 640px) {
	.all-featured-itineraries .c-card,
	.post-type-archive-collections .postlist .c-card {
		width: 98%;
	}
}

.fs-book-it-now-button {
	margin-bottom: 0 !important;
}
.fs-book-it-now-button div.et_pb_button_module_wrapper {
	margin-bottom: 30px !important;
}
.fs-booking-button-fullwidth a {
	width: 100%;
    text-align: center;
	background: #cd1c1f !important;
}

.fs-book-it-now-button a {
	background: #cd1c1f !important;
}

div#your-itineraries {
    display: none;
}

/*-- Home Blog Post Trio --*/

#featured .et_pb_module.et_pb_posts article.et_pb_post {
	border-bottom: 0;
	position: relative;
	margin-bottom: 60px !important;
	padding-bottom: 0;
}

#featured .et_pb_module.et_pb_posts article.et_pb_post:last-child {
	margin: 0;
	padding: 0;
}

/* hide the divider line that we added elsewhere */
#featured .et_pb_module.et_pb_posts article.et_pb_post::after {
	display: none;
}

@media (min-width: 768px) {
	#featured .et_pb_module.et_pb_posts article.et_pb_post {
		min-height: 100px;
	}
	#featured .et_pb_module.et_pb_posts article.et_pb_post > a.entry-featured-image-url {
		max-width: 175px !important;
		max-height: 100px !important;
		width: 175px;
		height: 100px;
		margin: 0;
		display: inline-block;
		position: absolute;
	}
	#featured .et_pb_module.et_pb_posts article.et_pb_post > a.entry-featured-image-url > img {
		width: 100% !important;
		max-width: 100% !important;
		height: 100% !important;
		max-height: 100% !important;
		display: block;
		object-fit: cover;
	}
	#featured .et_pb_module.et_pb_posts article.et_pb_post > a.entry-featured-image-url ~ .entry-title,
	#featured .et_pb_module.et_pb_posts article.et_pb_post > a.entry-featured-image-url ~ .post-meta,
	#featured .et_pb_module.et_pb_posts article.et_pb_post > a.entry-featured-image-url ~ .post-content {
		padding-left: 195px;
	}
}
@media (max-width: 767px) {
	#featured .et_pb_module.et_pb_posts article.et_pb_post {
		text-align: center;
	}
	#featured .et_pb_module.et_pb_posts article.et_pb_post > a.entry-featured-image-url {
		float: none;
		margin: 0 auto 15px;
		width: 175px;
	}
}

@media (min-width: 1600px) {
	#featured .et_pb_module.et_pb_posts article.et_pb_post:not(:last-child) {
		margin-bottom: 120px !important;
	}
}