/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-row-fixed-width {
	max-width: 960px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-col-content {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
@media(max-width: 992px) {
	.fl-module[data-node] > .fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
		margin-top: 20px;
		margin-right: 20px;
		margin-bottom: 20px;
		margin-left: 20px;
	}
}
@media(max-width: 768px) {
	.fl-module[data-node] > .fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
		margin-top: 20px;
		margin-right: 20px;
		margin-bottom: 20px;
		margin-left: 20px;
	}
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }.fl-node-e30k715cd9wf {
	color: #000000;
}
.fl-builder-content .fl-node-e30k715cd9wf *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-e30k715cd9wf a {
	color: #b93d26;
}

.fl-builder-content .fl-node-e30k715cd9wf a:hover {
	color: #562b45;
}

.fl-builder-content .fl-node-e30k715cd9wf h1,
.fl-builder-content .fl-node-e30k715cd9wf h2,
.fl-builder-content .fl-node-e30k715cd9wf h3,
.fl-builder-content .fl-node-e30k715cd9wf h4,
.fl-builder-content .fl-node-e30k715cd9wf h5,
.fl-builder-content .fl-node-e30k715cd9wf h6,
.fl-builder-content .fl-node-e30k715cd9wf h1 a,
.fl-builder-content .fl-node-e30k715cd9wf h2 a,
.fl-builder-content .fl-node-e30k715cd9wf h3 a,
.fl-builder-content .fl-node-e30k715cd9wf h4 a,
.fl-builder-content .fl-node-e30k715cd9wf h5 a,
.fl-builder-content .fl-node-e30k715cd9wf h6 a {
	color: #000000;
}


.fl-node-e30k715cd9wf > .fl-row-content-wrap {
	background-color: #eee1ca;
}
.fl-node-e30k715cd9wf .fl-row-content {
	max-width: 1100px;
}





 .fl-node-wxez0qd5svr8 > .fl-row-content-wrap {
	margin-top:20px;
}
@media ( max-width: 992px ) {
 .fl-node-wxez0qd5svr8.fl-row > .fl-row-content-wrap {
	margin-top:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-wxez0qd5svr8.fl-row > .fl-row-content-wrap {
	margin-top:20px;
}
}





@media ( max-width: 992px ) {
 .fl-node-gacfq2o07ke5.fl-row > .fl-row-content-wrap {
	margin-right:20px;
	margin-left:20px;
}
}










.fl-node-058mv67ix1lz {
	color: #000000;
}
.fl-builder-content .fl-node-058mv67ix1lz *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-058mv67ix1lz a {
	color: #b93d26;
}

.fl-builder-content .fl-node-058mv67ix1lz a:hover {
	color: #562b45;
}

.fl-builder-content .fl-node-058mv67ix1lz h1,
.fl-builder-content .fl-node-058mv67ix1lz h2,
.fl-builder-content .fl-node-058mv67ix1lz h3,
.fl-builder-content .fl-node-058mv67ix1lz h4,
.fl-builder-content .fl-node-058mv67ix1lz h5,
.fl-builder-content .fl-node-058mv67ix1lz h6,
.fl-builder-content .fl-node-058mv67ix1lz h1 a,
.fl-builder-content .fl-node-058mv67ix1lz h2 a,
.fl-builder-content .fl-node-058mv67ix1lz h3 a,
.fl-builder-content .fl-node-058mv67ix1lz h4 a,
.fl-builder-content .fl-node-058mv67ix1lz h5 a,
.fl-builder-content .fl-node-058mv67ix1lz h6 a {
	color: #000000;
}


.fl-node-058mv67ix1lz > .fl-row-content-wrap {
	background-color: #eee1ca;
}
.fl-node-058mv67ix1lz .fl-row-content {
	max-width: 1100px;
}




.fl-node-5ba1e89babb16 {
	width: 100%;
}




.fl-node-qt3xoup2jcev {
	width: 100%;
}




.fl-node-m8qeshiol74j {
	width: 100%;
}




.fl-node-5d0060d1313ff {
	width: 100%;
}




.fl-node-5d005e877f8c6 {
	width: 100%;
}




.fl-node-5ba1e8b6509c6 {
	width: 100%;
}
.fl-node-5ba1e8b6509c6 > .fl-col-content {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
 .fl-node-5ba1e89babb5c > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
@media ( max-width: 992px ) {
 .fl-node-5ba1e89babb5c.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5ba1e89babb5c.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
 .fl-node-ej4fa5yt9h07 > .fl-module-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-ej4fa5yt9h07.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ej4fa5yt9h07.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-5d0060d131400.fl-module-heading .fl-heading {
	text-align: left;
}
 .fl-node-5d0060d131400 > .fl-module-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-5d0060d131400.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5d0060d131400.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }


.fl-node-5d005e877f8c7 .pp-spacer-module {
    height: 5px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-5d005e877f8c7 .pp-spacer-module {
        height: 5px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-5d005e877f8c7 .pp-spacer-module {
        height: 5px;
    }
}
 .fl-node-5ba1e8b650a1b > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
@media ( max-width: 992px ) {
 .fl-node-5ba1e8b650a1b.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5ba1e8b650a1b.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}

/* Start Global CSS */
/*** BANNER BADGE & MODAL ***/

#page-banner-new #banner-badge {
    position: absolute;
    right: 0;
    bottom: 0;
}

#page-banner-new #banner-badge .fl-module-content {
    margin-bottom: 10px !important;
    margin-right: 40px !important;
}

#banner-badge img:hover {
    cursor: pointer;
}

/* Modal */

#badge-modal-content .fl-col-content {
    padding: 40px 50px;
}
    
    
/* Responsive */    

@media only screen and (max-width: 1200px) {
    #badge-modal-content .fl-col-content {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 768px) {
    #page-banner-new #banner-badge {
        right: unset;
        left: 0;
    }
    #page-banner-new #banner-badge .fl-module-content {
        margin-bottom: 2px !important;
        margin-left: 10px !important;
    }
    #page-banner-new #banner-badge .fl-photo-content, #page-banner-new #banner-badge .fl-photo-img {
        max-width: 20vw;
    }
    
    /* Modal */
    
    #badge-modal-content .img-col .fl-col-content {
        padding: 20px 10px 0;
        background: #eee1ca;
    }
    #badge-modal-content .content-col .fl-col-content {
        padding: 0 10px 20px;
    }
    
    #badge-modal-content .img-col .fl-module-content {
        margin-bottom: 0 !important;
    }
    
    #badge-modal-content .img-col .fl-photo-img {
        max-width: 120px;
    }
}




/*--------------------------------*/
/*             MODAL              */
/*--------------------------------*/

.pp-modal-button a {
    min-width: 200px;
}


/*** Modal Body ***/

.pp-modal-wrap .pp-modal-container {
    background-color: rgba(63,63,63,0.79);
}

.pp-modal-wrap .pp-modal-container .pp-modal {
    background-color: #fff;
}

.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-body {
    margin: 40px 0;
    /*padding: 50px 80px;*/
}

/*@media only screen and (max-width: 992px) {
    .pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-body {
        padding: 50px;
    }
}*/
@media only screen and (max-width: 768px) {
    /*.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-body {
        padding: 50px 30px;
    }*/
    .pp-modal-wrap .pp-modal-container .pp-modal {
        max-width: calc(100% - 60px) !important;
        margin: 30px !important;
    }
}


/*** Modal Header ***/

.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-header {
    border: none !important;
}

.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-title {
    padding: 20px 20px 0 20px;
}



/** Close **/

.pp-modal-wrap .pp-modal-container .pp-modal-close.box-top-right {
    border: none !important;
    top: 6px !important;
    right: 6px !important;
    width: 30px !important;
    height: 30px !important;
}

.pp-modal-wrap .pp-modal-container .pp-modal-close .bar-wrap span {
    background: var(--wm-text-dark);
}
.pp-modal-wrap .pp-modal-container .pp-modal-close:hover .bar-wrap span {
    background: var(--wm-hover);
}



/*** Content ***/

.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-content {
    padding: 0px;
}

.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-content .fl-row {
    padding: 0px !important;
}
.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-content .fl-row {
    padding: 0px !important;
}













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

/*** BOX MODULE ***/

.fl-module.fl-module-box {
    margin: 0;
    padding: 20px;
}
.fl-module.fl-module-box .fl-module-box {
    padding: 0px;
}

.fl-module.fl-module-box .fl-module {
    width: auto;
}

.fl-module-box > .fl-module .fl-module-content {
    margin: 0;
}


.fl-builder-content .fl-button:active {
    top: 0 !important;
}

.mega-menu img{max-height: none !important;}
.mega-menu .sub-menu{width: auto !important;}

.no-link a:hover {
    cursor: default;
}
.no-link .sub-menu a:hover {
    cursor: pointer;
}

.fl-module-rich-text .fl-rich-text p strong {
    font-weight: 600;
}


ol.breadcrumb {
    padding: 0 !important;
}

@media (max-width: 768px) {
    .fl-col-small,
    .fl-col-small:not(.fl-col-small-full-width) {
        max-width: 100%;
    } 
}

@media (max-width: 992px){
	.fl-row-fixed-width.fl-row > .fl-row-content-wrap {
		margin-right: 0;
		margin-left: 0;
	}
}

/* Banner Image Positioning */
/* Top */
.wm-banner-image-top .fl-page-content #page-banner .fl-row-content-wrap,
.wm-banner-image-top .fl-page-content #page-banner-new .fl-col-content {
    background-position: center top;
}
/* Top Third */
.wm-banner-image-top-third .fl-page-content #page-banner .fl-row-content-wrap,
.wm-banner-image-top-third .fl-page-content #page-banner-new .fl-col-content {
    background-position: center 25%;
}
/* Center (Default) */
.wm-banner-image-center .fl-page-content #page-banner .fl-row-content-wrap,
.wm-banner-image-center .fl-page-content #page-banner-new .fl-col-content {
    background-position: center center;
}
/* Bottom Third */
.wm-banner-image-bottom-third .fl-page-content #page-banner .fl-row-content-wrap,
.wm-banner-image-bottom-third .fl-page-content #page-banner-new .fl-col-content {
    background-position: center 75%;
}
/* Bottom */
.wm-banner-image-bottom .fl-page-content #page-banner .fl-row-content-wrap,
.wm-banner-image-bottom .fl-page-content #page-banner-new .fl-col-content {
    background-position: center bottom;
}


/*** BANNER Content ***/

#page-banner .fl-row-content-wrap,
#page-banner-new #banner-image .fl-col-content {
    height: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 140px;
}
@media (max-width: 1700px) {
    #page-banner .fl-row-content-wrap,
    #page-banner-new #banner-image .fl-col-content {
        height: 650px;
    }
}
@media (max-width: 992px) {
    #page-banner .fl-row-content-wrap,
    #page-banner-new #banner-image .fl-col-content {
        height: 550px;
        padding-top: 90px;
    }
}
@media (max-width: 768px) {
    #page-banner .fl-row-content-wrap,
    #page-banner-new #banner-image .fl-col-content {
        height: 0px;
        padding-top: 75%;
        padding-bottom: 0;
    }
}

#page-banner.flat-banner .fl-row-content-wrap,
#page-banner-new.flat-banner #banner-image .fl-col-content {
    height: 300px;
}
@media (max-width: 992px) {
    #page-banner.flat-banner .fl-row-content-wrap,
    #page-banner-new.flat-banner #banner-image .fl-col-content {
        height: 200px;
    }
}
@media (max-width: 768px) {
    #page-banner.flat-banner .fl-row-content-wrap,
    #page-banner-new.flat-banner #banner-image .fl-col-content {
        height: 350px;
        padding-top: 0%;
    }
}

#page-banner .fl-row-content-wrap .fl-row-content {
    width: 100%;
}



/** Banner Heading and Caption **/

#page-banner-new #banner-content .fl-col-content,
#page-banner-new #banner-caption {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
#page-banner-new #banner-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

#page-banner #banner-content #banner-heading {
    /*max-width: 550px;*/
    margin-left: 0;
    text-align: left;
}

#page-banner-new #banner-caption .fl-module-content {
    margin-bottom: 0;
    text-align: right;
}

#page-banner #banner-heading .fl-module-content .banner-content-wrap,
#page-banner-new #banner-heading .fl-module-content .banner-content-wrap { 
    min-height: 40px;
}
#page-banner-new #banner-caption .fl-module-content .banner-caption-wrap { 
    /*min-height: 30px;
    background: rgba(51,63,72,0.8);
    padding: 0 10px 2px 10px;*/
}


#page-banner #banner-heading .fl-module-content .banner-text-wrap,
#page-banner-new #banner-heading .fl-module-content .banner-text-wrap,
#page-banner-new #banner-caption .fl-module-content .banner-caption-wrap { 
    /*background-color: rgba(28,36,44,0.75);
    padding: 15px 40px 20px 40px;*/
    display: inline-block;
}

#page-banner #banner-heading .fl-module-content .banner-text,
#page-banner-new #banner-heading .fl-module-content .banner-text {
    color: #fff !important;
    font-size: 54px;
    line-height: 1.2;
    display: inline;
}
#page-banner-new #banner-caption .fl-module-content .banner-caption-text {
    color: #fff !important;
    font-size: 14px;
    line-height: 1;
    display: inline;
    /*background: rgba(51,63,72,0.8);*/
    background: none;
    padding: 0 10px 2px 10px;
}


/* New Banner Positioning */
#page-banner-new .fl-row-content {
    position: relative;
}

#page-banner-new #banner-content {
    /**/position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 50px;
    left: 0;
    right: 0;
}
/*#page-banner-new #banner-content-caption {
    position: absolute;
    bottom: 0;
    right: 0;
}*/

#page-banner-new #banner-content-buttons .fl-col-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: row;
}

@media only screen and (max-width: 1140px) {
    #page-banner-new #banner-content > .fl-col-content,
    #page-banner-new #banner-caption {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 768px) {
    #page-banner-new #banner-content > .fl-col-content,
    #page-banner-new #banner-caption {
        padding: 0 10px;
    }
    
    #page-banner-new #banner-content {
        position: relative;
        top: unset;
        transform: unset;
        padding: 0;
    }
    
    #page-banner-new #banner-content > .fl-col-content {
        padding: 20px 10px 40px 10px;
        background: #eee1ca;
        text-align: center;
    }
    
    #page-banner-new #banner-heading .fl-module-content .banner-text {
        color: #000000 !important;
        font-size: 42px;
        text-shadow: none !important;
    }
    
    #page-banner-new #banner-content-buttons .fl-col-content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    #page-banner-new #banner-content-buttons .fl-col-content .fl-module-button .fl-module-content {
        margin: 10px 20px;
    }
       
}


/*** Banner Content End ***/


/*** Banner Spacer ***/

#wm-banner-no-image .pp-spacer-module {
    height: 99px;
}



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

/* BUTTONS */

/* Dual Buttons Icon Padding and Responsive Spacing*/
.pp-dual-button-content .pp-font-icon {
    margin: 0 8px 0 0 !important;
}

.pp-dual-button-content div.pp-spacer {
    height: 20px;
}

/*@media (max-width: 768px) {
    a.fl-button {
        text-align: center;
    }
}*/



/** Button Col **/
/* use class .wm-btn-col-vertical on a column containing 2* button modules on top of each other to automate spacing between them */

.wm-btn-col-vertical .fl-module-button .fl-module-content {
    margin-bottom: 0;
}

.wm-btn-col-vertical .fl-col-content .fl-module-button:last-child .fl-module-content {
    margin-bottom: 20px;
}

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


/*** FORMS ***/
/* Use class .show-label to unhide labels and legends */

/* Steps */

.fl-builder-content .gform_wrapper.gravity-theme .gf_step_number,
.fl-builder-content .gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
    border: 2px solid #000;
    color: #000;
}
.fl-builder-content .gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
    background: #000;
    color: #ffffff;
}

.fl-builder-content .gform_wrapper.gravity-theme .gf_step_label {
    font-weight: 500;
}

/* Search Form */

.fl-module-pp-search-form button {
    border: none !important;
    background: #b93d26 !important;
}
.fl-module-pp-search-form button:hover {
    background: #562b45 !important;
}

.fl-module-pp-search-form .pp-search-form button {
    min-width: calc( 1 * 50px );
}


/** Misc **/

.gform_wrapper .gform_footer .gform_button, 
.gform_wrapper.gf_browser_ie .gform_footer .gform_button, 
.gform_wrapper .gform_page_footer .button,
.gform_wrapper.gf_browser_ie .gform_page_footer .button {
    min-width: 200px;
}

.gform_wrapper .show-label.gfield .gfield_label {
    display: inline-block !important;
}

fieldset legend {
    border: none;
}

div.fl-module.fl-module-pp-gravity-form .pp-gf-content {
    background-color: transparent;
}

/* Change Widths */
/* 12 grid layout > Use class 
    .wm-field-width-2 (one 6th)
    .wm-field-width-3 (one 4th)
    .wm-field-width-4 (one 3rd)
    .wm-field-width-5
    .wm-field-width-6 (one half)
    .wm-field-width-half (one half - permanent)
*/

/* permanent fix for single fields that should be 50% */
@media only screen and (min-width: 641px){
	.gform_wrapper.gravity-theme form .gfield.wm-field-width-half {
	    grid-column: span 6;
    }
}

/* fix only for desktop */
@media only screen and (min-width: 992px){
	.gform_wrapper.gravity-theme form .gfield.wm-field-width-2 {
	    grid-column: span 2;
    }
    .gform_wrapper.gravity-theme form .gfield.wm-field-width-3 {
	    grid-column: span 3;
    }
    .gform_wrapper.gravity-theme form .gfield.wm-field-width-4 {
	    grid-column: span 4;
    }
    .gform_wrapper.gravity-theme form .gfield.wm-field-width-5 {
	    grid-column: span 5;
    }
    .gform_wrapper.gravity-theme form .gfield.wm-field-width-6 {
	    grid-column: span 6;
    }
}

.gform_wrapper.gravity-theme form .ginput_container_date input {
	width: 100%;
}

/** Fields **/

.wm-styled-form .gform_wrapper .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), 
.wm-styled-form .gform_wrapper .gfield input:focus, 
.wm-styled-form .gform_wrapper .gfield select {
    height: 42px;
}

input[type="text"], 
input[type="password"], 
input[type="email"], 
input[type="tel"], 
input[type="date"], 
input[type="month"], 
input[type="week"], 
input[type="time"], 
input[type="number"], 
input[type="search"], 
input[type="url"], 
textarea,
select {
    background-color: #ffffff !important;
    font-size: 15px !important;
}


/** Placeholders **/

.gform_wrapper .gform_fields .gfield input::placeholder,
.gform_wrapper .gform_fields .gfield textarea::placeholder {
    color: #000000;
    opacity: 0.6;
}

/** Field Borders **/

.gform_wrapper .gform_fields .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), 
.gform_wrapper .gform_fields .gfield select, 
.gform_wrapper .gform_fields .gfield textarea {
    border: 1px solid rgba(0,0,0,0.60);
    border-radius: 0;
}

#subscribe-row .gform_wrapper .gform_fields .gfield input {
    border: 1px solid #ffffff;
}

.gform_wrapper .gform_fields .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus, 
.gform_wrapper .gform_fields .gfield select:focus, 
.gform_wrapper .gform_fields .gfield textarea:focus,
#subscribe-row .gform_wrapper .gform_fields .gfield input:focus {
    border: 1px solid #b93d26;
}




/** Radio and Checkbox **/


.gform_wrapper .gform_fields .gfield .gfield_radio div input[type="radio"], 
.gform_wrapper .gform_fields .gfield .gfield_radio div input[type="radio"]:focus, 
.gform_wrapper .gform_fields .gfield .gfield_checkbox div input[type="checkbox"], 
.gform_wrapper .gform_fields .gfield .gfield_checkbox div input[type="checkbox"]:focus, 
.gform_wrapper .ginput_container_consent input[type="checkbox"], 
.gform_wrapper .ginput_container_consent input[type="checkbox"]:focus, 
.pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:focus, 
.pp-gf-content .gform_wrapper .gfield input[type="radio"]:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    width: 16px !important;
    height: 16px !important;
    border: 1px solid #00000099;
    padding: 2px;
}

.gform_wrapper .gform_fields .gfield .gfield_radio div input[type="radio"]:checked, 
.gform_wrapper .gform_fields .gfield .gfield_checkbox div input[type="checkbox"]:checked, 
.gform_wrapper .ginput_container_consent input[type="checkbox"]:checked, 
.pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:checked, 
.pp-gf-content .gform_wrapper .gfield input[type="radio"]:checked {
    background: #eee1ca;
    border-color: #b93d26;
}

.gform_wrapper .gform_fields .gfield .gfield_radio div input[type="radio"], 
.gform_wrapper .gform_fields .gfield .gfield_radio div input[type="radio"]:focus, 
.pp-gf-content .gform_wrapper .gfield input[type="radio"]:focus {
    border-radius: 50%;
}

.gform_wrapper .gform_fields .gfield .gfield_radio label,
.gform_wrapper .gform_fields .gfield .gfield_checkbox label {
	padding-left: 10px;
}

.gform_wrapper .gform_fields .gfield .gfield_radio input[type="radio"]:not(:checked) + label,
.gform_wrapper .gform_fields .gfield .gfield_checkbox input[type="checkbox"]:not(:checked) + label {
	font-weight: 400;
}

/* Date */

.ginput_container_date{position: relative;}
.ginput_container_date:after{
    font-family: FontAwesome;
    font-weight: 900;
    font-size: 22px;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "f073";
	margin-left: 6px;
    right: 10px;
    position: absolute;
    color: #849888;
}

#ui-datepicker-div.gravity-theme.ui-datepicker .ui-datepicker-calendar td,
#ui-datepicker-div.gravity-theme.ui-datepicker .ui-datepicker-calendar th span,
#ui-datepicker-div.gravity-theme.ui-datepicker .ui-datepicker-header select {
    font-size: 12px;
}

.gravity-theme.ui-datepicker .ui-datepicker-title {
	padding: 5px 0;	
}


/* Forms End */




/***************************************************/
/* SPECIFIC STYLING ELEMENTS*/


/*** Dual Overlay Colour Rows ***/

/* Home */

.home .dual-overlay-row .dual-overlay-col-left .fl-col-content {
    padding: 80px 60px 80px 0px;
}
.home .dual-overlay-row .dual-overlay-col-right .fl-col-content {
    padding: 80px 0px 80px 60px;
}

@media (max-width: 768px) {
    .home .dual-overlay-row .dual-overlay-col-left .fl-col-content,
    .home .dual-overlay-row .dual-overlay-col-right .fl-col-content {
        padding: 80px 0px;
    }
}

.home .dual-overlay-row .dual-overlay-col-left .fl-module,
.home .dual-overlay-row .dual-overlay-col-right .fl-module {
    width: 100%;
    max-width: 490px;
}
.home .dual-overlay-row .dual-overlay-col-left .fl-module {
    margin-left: auto;
    padding-left: 60px;
}
.home .dual-overlay-row .dual-overlay-col-right .fl-module {
    margin-right: auto;
    padding-right: 60px;
}





/* Content Pages */

.dual-overlay-row .dual-overlay-col-left .fl-col-content {
    padding: 80px 60px 80px 0px;
}
.dual-overlay-row .dual-overlay-col-right .fl-col-content {
    padding: 80px 0px 80px 60px;
}

.dual-overlay-row .dual-overlay-col-left .fl-module,
.dual-overlay-row .dual-overlay-col-right .fl-module {
    width: 100%;
    max-width: 420px;
}
.dual-overlay-row .dual-overlay-col-left .fl-module {
    margin-left: auto;
    padding-left: 0px;
}
.dual-overlay-row .dual-overlay-col-right .fl-module {
    margin-right: auto;
    padding-right: 0px;
}

.dual-overlay-row .fl-col-content .fl-rich-text a {
    color: inherit;
    text-decoration: underline;
}
.dual-overlay-row .fl-col-content .fl-rich-text a:hover {
    color: #562b45;
}


@media (max-width: 1140px) {
    .dual-overlay-row .fl-row-content > .fl-col-group .dual-overlay-col-left > .fl-col-content .fl-module {
        padding-left: 20px;
    }
    
    .dual-overlay-row .fl-row-content > .fl-col-group .dual-overlay-col-right > .fl-col-content .fl-module {
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .dual-overlay-row .dual-overlay-col-left .fl-module,
    .dual-overlay-row .dual-overlay-col-right .fl-module {
        max-width: 100%;
    }
    .dual-overlay-row .dual-overlay-col-left .fl-col-content {
        padding: 80px 20px 80px 0px;
    }
    .dual-overlay-row .dual-overlay-col-right .fl-col-content {
        padding: 80px 0px 80px 20px;
    }
}

@media (max-width: 768px) {
    .pure-bg-img-col .fl-col-content {
        height: 0;
        padding-top: 75%;
    }
    
    .dual-overlay-row .dual-overlay-col-left .fl-col-content,
    .dual-overlay-row .dual-overlay-col-right .fl-col-content {
        padding: 80px 0px;
    }

    .dual-overlay-row .fl-row-content > .fl-col-group .dual-overlay-col-left > .fl-col-content .fl-module,
    .dual-overlay-row .fl-row-content > .fl-col-group .dual-overlay-col-right > .fl-col-content .fl-module {
        max-width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}

/*** Dual Overlay Colour Rows End ***/


/* SPECIFIC STYLING ELEMENTS END*/
/***************************************************/


/*** NEWS ***/

#post-meta-data {
    /*font-size: 14px;*/
}

#post-meta-data-wrap .fl-module-content {
    margin-top: 10px !important;
}

#post-meta-data .post-meta-date,
#post-meta-data .post-meta-divider,
#post-meta-data .post-meta-author,
#post-meta-data .post-meta-categories,
#post-meta-data .post-meta-tags {
    display: inline-block;
}

#post-meta-data .post-meta-divider {
    padding: 0 10px;
}

#post-meta-data-tax .post-meta-tags i{
    padding-right: 5px;
}

/*** NEWS END ***/

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

/*** POST MODULES ***/

/** BB Resets **/

body .fl-post-grid-text, body .fl-post-grid-content p {
    font-size: inherit;
    line-height: inherit;
}

.fl-post-feed-post,
.fl-post-grid-post {
    border: none !important;
}

.fl-button.facet-reset-button {
    width: 100%;
}

/** Post Module - Square Image with Title Overlay **/

.wm-square-post-tiles .fl-post-grid-post {
    position: relative;
    border: none;
}


.wm-square-post-tiles .fl-post-grid-image,
.wm-square-post-tiles .post-image-container,
.wm-square-post-tiles .post-image-container a,
.wm-square-post-tiles .post-image-container img {
    width: 100%;
    height: 100% !important;
}
.wm-square-post-tiles .post-image-container img {
    object-fit: cover;
}

.wm-square-post-tiles .fl-post-grid-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: linear-gradient(to top, rgba(51,63,72,0.75) 0px, rgba(51,63,72,0) 50%);
}

.wm-square-post-tiles .fl-post-grid-text:hover {
    background: rgba(51,63,72,0.75);
}


.wm-square-post-tiles .fl-post-grid-text .fl-post-grid-text-content,
.wm-square-post-tiles .fl-post-grid-text .fl-post-grid-title,
.wm-square-post-tiles .fl-post-grid-text .fl-post-grid-title a {
    height: 100%;
    width: 100%;
    margin: 0;
}


.wm-square-post-tiles .fl-post-grid-text .fl-post-grid-title a {
    font-size: 26px;
    color: #ffffff;
    display: inline-block;
    position: relative;
    line-height: 1.25;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .wm-square-post-tiles .fl-post-grid-text .fl-post-grid-title a {
        font-size: 22px;
    }
}

.wm-square-post-tiles .fl-post-grid-text .fl-post-grid-title a span {
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}








/** Post Carousel - Square Image with Title Overlay **/

.wm-square-post-carousel .fl-post-carousel-post {
    border: none;
}

.wm-square-post-carousel .fl-post-carousel-text {
    padding: 0px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(51,63,72,0.75) 0px, rgba(51,63,72,0) 50%);
}
.wm-square-post-carousel .fl-post-carousel-text:hover {
    background: rgba(51,63,72,0.75);
}

.wm-square-post-carousel .fl-post-carousel-text .fl-post-carousel-title,
.wm-square-post-carousel .fl-post-carousel-text .fl-post-carousel-title a {
    font-size: 26px;
    color: #ffffff;
    margin: 0;
    height: 100%;
    width: 100%;
    line-height: 1.25;
}

.wm-square-post-carousel .fl-post-carousel-text .fl-post-carousel-title a {
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}









/** Post Module - 2 Col - Image and Excerpt **/

.wm-2-col-content-tiles-with-excerpt .flex-post-grid-feed-content {
    background: #eee1ca;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.wm-2-col-content-tiles-with-excerpt .fl-post-grid-image {
    width: 35%;
}
.wm-2-col-content-tiles-with-excerpt .fl-post-grid-text {
    width: 65%;
    padding: 60px 40px 60px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 350px;
}
@media only screen and (max-width: 992px) {
    .wm-2-col-content-tiles-with-excerpt .fl-post-grid-image,
    .wm-2-col-content-tiles-with-excerpt .fl-post-grid-text {
        width: 50%;
    }
    
    .wm-2-col-content-tiles-with-excerpt .fl-post-grid-text {
        padding: 30px;
    }
}
@media only screen and (max-width: 768px) {
    .wm-2-col-content-tiles-with-excerpt .fl-post-feed-post {
        max-width: 100%;
    }
    
    .wm-2-col-content-tiles-with-excerpt .flex-post-grid-feed-content{
        display: block;
    }
    .wm-2-col-content-tiles-with-excerpt .fl-post-grid-image,
    .wm-2-col-content-tiles-with-excerpt .fl-post-grid-text {
        width: 100%;
    }
    
    .wm-2-col-content-tiles-with-excerpt .post-image-container {
        width: 100%;
        height: 0;
        padding-top: 75%;
    }
    
    .wm-2-col-content-tiles-with-excerpt .fl-post-grid-text {
        padding: 15px 30px 30px 30px;
        min-height: 100px;
    }
}



/** Image **/

.wm-2-col-content-tiles-with-excerpt .post-image-container {
    width: 100%;
    height: 100%;
    background-size: auto;
    background-position: center!important;
    background-size: cover !important;
}

.wm-2-col-content-tiles-with-excerpt .post-image-wrap {
    width: 100%;
    height: 100%;
}

.wm-2-col-content-tiles-with-excerpt .post-image-container a {
    display: block;
    width: 100%;
    height: 100%;
}


/* Caption */

.wm-2-col-content-tiles-with-excerpt .post-image-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(51,63,72,0.8);
    padding: 0 10px 2px 10px;
    color: #ffffff;
}



/** Text **/


.wm-2-col-content-tiles-with-excerpt .fl-post-grid-text .fl-post-grid-title {
    font-size: 24px;
    margin-bottom: 20px;
}





/** Post Module Button Style **/

.wm-button-post-tiles .fl-post-grid-post {
    border: none;
}

.wm-button-post-tiles .fl-post-grid-text,
.wm-button-post-tiles .fl-post-grid-text-content{
    padding: 0px;
    width: 100%;
    height: 100%;
}

.wm-button-post-tiles .fl-post-grid-post {
    
}

.wm-button-post-tiles a.wm-post-btn {
    background: #849888;
	border: 1px solid #ffffff;
    border-radius: 0;
    padding: 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    font-size: 18px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wm-button-post-tiles a.wm-post-btn:hover {
    background: #9d8d74;
    color: #ffffff;
	border: 1px solid #ffffff;
}


.wm-button-post-tiles a.wm-post-btn i {
    font-size: 1.3em;
    margin: 0 10px 0 5px;
}

.wm-button-post-tiles a.wm-post-btn span::after {
    content: "f054";
    font-weight: 400;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    padding-left: 10px;
    display: inline-block;
    position: relative;
}


/*** POST MODULES END ***/


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


/*** CONTENT GRID FEEDS ***/

/** General **/

.wm-content-tiles-feed .pp-post-tile-post:hover .pp-post-tile-image {
    transform: none;
}

.wm-content-tiles-feed .pp-post-tile-post .pp-post-tile-image a:last-child::before {
    background: -o-linear-gradient(bottom, rgba(51,63,72,0.75) 0px, rgba(51,63,72,0) 50%);
    background: linear-gradient(to top, rgba(51,63,72,0.75) 0px, rgba(51,63,72,0) 50%);
}

.wm-content-tiles-feed .pp-post-tile-post:hover .pp-post-tile-image a:last-child::before {
    background: rgba(51,63,72,0.75);
}

.wm-content-tiles-feed .pp-post-tile-post .pp-post-tile-info {
    width: 100%;
    margin: 0;
}

.wm-content-tiles-feed .pp-post-tile-post .pp-post-tile-title,
.wm-content-tiles-feed .pp-post-tile-small .pp-post-tile-title {
    font-size: 26px;
    color: #ffffff;
    padding: 10px 20px;
    line-height: 1.25;
}

.wm-content-tiles-feed .pp-post-tile-small .pp-post-tile-title a {
    font-size: 26px;
}

.wm-content-tiles-feed .pp-post-tile-post .pp-post-tile-title a::after {
    content: "f054";
    font-weight: 400;
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    padding-left: 10px;
    display: inline-block;
    position: relative;
    top: -0.05em;
}


/** Featured and Latest Stories **/

#wm-featured-stories .wm-featured-stories-intro-col .fl-col-content,
#wm-latest-stories .wm-latest-stories-intro-col .fl-col-content,
#wm-post-categories .wm-post-categories-intro-col .fl-col-content{
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

#wm-featured-stories .wm-featured-stories-intro-col .fl-col-content .fl-heading,
#wm-latest-stories .wm-latest-stories-intro-col .fl-col-content .fl-heading,
#wm-post-categories .wm-post-categories-intro-col .fl-col-content .fl-heading {
    font-size: 42px;
}


/*** CONTENT GRID FEEDS END ***/


/*** POST GATEGORY GRID ***/

.wm-category-grid .pp-category {
    width: calc(33% - 25px);
    margin-right: 40px;
    margin-bottom: 40px;
    height: auto;
}
@media only screen and (max-width: 992px) {
    .wm-category-grid .pp-category {
        width: calc(50% - 20px);
    }
    
    .wm-category-grid .pp-category:nth-of-type(3n) {
        margin-right: unset;
    }
    .wm-category-grid .pp-category:nth-of-type(n) {
        margin-right: 40px;
    }
    .wm-category-grid .pp-category:nth-of-type(2n) {
        margin-right: 0px;
    }
}
@media only screen and (max-width: 768px) {
    .wm-category-grid .pp-category {
        width: 100%;
    }
}

.wm-category-grid .pp-category,
.wm-category-grid .pp-category__img,
.wm-category-grid .pp-category__img img,
.wm-category-grid.wm-category-grid-slider .pp-category,
.wm-category-grid.wm-category-grid-slider .pp-category__img,
.wm-category-grid.wm-category-grid-slider .pp-category__img img{
    height: auto;
}

.wm-category-grid .pp-category__img::after {
    background: -o-linear-gradient(bottom, rgba(51,63,72,0.75) 0px, rgba(51,63,72,0) 50%);
    background: linear-gradient(to top, rgba(51,63,72,0.75) 0px, rgba(51,63,72,0) 50%);
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
}
.wm-category-grid a:hover .pp-category__img::after {
    background: rgba(51,63,72,0.75);
}

.wm-category-grid .pp-category .pp-category__content,
.wm-category-grid.wm-category-grid-slider .pp-category .pp-category__content {
    background: none;
}

.wm-category-grid .pp-category .pp-category__title {
    font-size: 26px;
    color: #ffffff;
    line-height: 1.25;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}


/** Slider Version **/

.wm-category-grid.wm-category-grid-slider .pp-categories-container.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 15px;
}


.wm-category-grid.wm-category-grid-slider .pp-categories-container.swiper-container-horizontal > .swiper-pagination-bullets {
    padding-top: 40px;
}



/*** POST GATEGORY GRID END***/








/* MODULE STYLING */
/***************************************************/

/*** TAGLINE TEXT - ALL CAPS ***/

.wm-text-all-caps-tagline {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}

/*** TAGLINE END ***/





/*** ICON ***/

.wm-styled-icon .fl-icon-wrap .fl-icon i,
.wm-styled-icon .fl-icon-wrap .fl-icon i::before {
    width: 20px;
    height: auto;
    font-size: 20px;
    padding-top: 3px;
    line-height: 1;
}

.wm-styled-icon .fl-icon {
    color: #b93d26;
}

/*** ICON END ***/


/*** ICON LIST ***/

.wm-styled-icon-list .pp-icon-list .pp-icon-list-item {
    margin-bottom: 10px;
}

.wm-styled-icon-list .pp-icon-list .pp-list-item-icon {
    margin-right: 15px;
}



.wm-styled-icon-list .pp-icon-list .pp-list-item-icon,
.wm-styled-icon-list .pp-icon-list .pp-list-item-icon::before {
    width: 20px;
    height: 20px;
    font-size: 20px;
    padding-top: 3px;
    line-height: 1;
}

.wm-styled-icon-list .pp-icon-list .pp-list-item-icon {
    color: #b93d26;
}



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


/*** INFO LIST ***/

/* Connector Line */

.wm-styled-info-list .pp-list-items .pp-list-connector {
    height: calc(100% - 23px);
    top: 25px;
}

/* Base */
.wm-styled-info-list .pp-infolist-wrap .pp-list-item {
    padding-bottom: 10px;
}

.wm-styled-info-list .pp-infolist-wrap .pp-list-item .pp-list-item-content {
    align-items: flex-start;
}

.wm-styled-info-list .pp-infolist-wrap .pp-icon-wrapper {
    margin-right: 15px;
}

.wm-styled-info-list .pp-infolist-wrap .pp-list-item .pp-infolist-icon-inner {
    width: 20px;
    height: 20px;
}

.wm-styled-info-list .pp-infolist-icon-inner .pp-icon {
    color: #b93d26;
}

.wm-styled-info-list .pp-infolist-icon-inner span.pp-icon,
.wm-styled-info-list .pp-infolist-icon-inner span.pp-icon::before {
    font-size: 20px;
    line-height: 1;
    padding-top: 3px;
}


/* Additions for Title Option */

.wm-styled-info-list-title .pp-infolist-title-text {
    font-weight: 600;
    text-transform: uppercase;
}

.wm-styled-info-list-title .pp-infolist-title .pp-infolist-title-text {
    display: inline-block;
    margin-bottom: 10px !important;
}







.fl-module-pp-infolist .pp-infolist-title a,
.fl-module-pp-infolist .pp-infolist-icon-inner .pp-icon {
    /*color: #b93d26;
    text-decoration: underline;*/
}

.fl-module-pp-infolist .pp-infolist-title a:hover {
    color: #562b45;
}



.pp-infolist-description ul {
    padding-left: 15px;
}

/*
.fl-module-pp-iconlist .pp-list-item-icon {
    width: 40px;
    line-height: 1.6!important;
}

.fl-module-pp-iconlist .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-icon,
.fl-module-pp-infolist .pp-infolist-wrap .pp-list-item .pp-list-connector,
.fl-module-pp-infolist .pp-list-item .pp-infolist-icon-inner .pp-icon {
    color: #00afb8;
    border-left-color: #00afb8;
}

.fl-module-pp-infolist .pp-infolist-title .pp-infolist-title-text {
    margin-bottom: 10px;
    font-weight: 700;
    color: #00afb8;
}

.fl-module-pp-infolist .pp-infolist-wrap .pp-list-item {
    margin-bottom: 20px;
}
*/

@media (max-width: 992px) {
    .fl-col.item-list-col-1,
    .fl-col.item-list-col-2 {
        width: 100%!important;
    }
    .item-list-col-1 .fl-module-pp-iconlist .fl-module-content {
        margin-bottom: 0;
    }
    .item-list-col-2 .fl-module-pp-iconlist .fl-module-content {
        margin-top: 0;
    }
}


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


/*** TABLES ***/

/** Global Required Overwrite **/
.fl-module-pp-table thead th {
    line-height: 1.4;
}

.fl-module-pp-table .tablesaw-cell-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    text-transform: none;
    color: #000000;
    font-weight: 600;
    padding-right: 20px;
}

/* width taken from tablesaw.css */
@media (max-width: 39.9375em) {
    table.tablesaw-stack tr td + td {
        padding-top: 15px;
    }
    
    .pp-table-wrap table.tablesaw-stack tbody tr td,
    .wm-styled-table .pp-table-wrap table.pp-table-content tbody tr td {
        border-left: none;
    }
    
    table.tablesaw-stack tr td:first-child {
        padding-top: 20px;
    }
    table.tablesaw-stack tr td:last-child {
        padding-bottom: 20px;
    }

    table.tablesaw-stack tr td .tablesaw-cell-content {
        padding-top: 10px;
        width: 100%;
        max-width: 100%;
        line-height: 1.6;
    }
    /*table.tablesaw-stack tr td:first-child .tablesaw-cell-content {
        padding-top: 0px;
        font-size: 16px;
        font-weight: 600;
    }
    table.tablesaw-stack tr td:first-child .tablesaw-cell-label {
        display: none;
    }*/
}


/** Styled Table **/

/* Head */
.wm-styled-table .pp-table-content thead th,
.wm-styled-table .pp-table-content.tablesaw thead th,
.wm-styled-table .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
    background: #849888;
    border: 1px solid #849888;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
}

.wm-styled-table .pp-table-content thead tr th:not(:last-child),
.wm-styled-table .pp-table-content.tablesaw thead tr th:not(:last-child),
.wm-styled-table .pp-table-content.tablesaw-sortable tr th.tablesaw-sortable-head button:not(:last-child) {
    border-right: 2px solid #ffffff;
}

/* Body */

.wm-styled-table .pp-table-content tbody {
    border: 1px solid #849888;
    /*border-top-width: 2px;*/
}
.wm-styled-table .pp-table-content tbody tr {
    border-bottom: 1px solid #849888;
}

.wm-styled-table tbody tr:nth-child(2n+1) {
    background: #ffffff;
}
.wm-styled-table tbody tr:nth-child(2n) {
    background: rgba(132,152,136,0.15)
}

.wm-styled-table tbody tr td {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px;
}

.wm-styled-table .pp-table-content tbody tr td:not(:first-child) {
    border-left: 1px solid #849888;
}



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


/*** TABS ***/

/* Remove extra padding from Content = Saved Row */

.fl-module-pp-advanced-tabs .pp-tabs-panel-content .fl-builder-content .fl-row,
.fl-module-pp-advanced-tabs .pp-tabs-panel-content .fl-builder-content .fl-row-content {
    padding: 0;
}

/* Overall */

.fl-module-pp-advanced-tabs .pp-tabs-horizontal.pp-tabs-default .pp-tabs-label,
.fl-module-pp-advanced-tabs .pp-tabs-horizontal.pp-tabs-default .pp-tabs-label.pp-tab-active {
    top: 0px;
}

.wm-styled-tabs .pp-tabs-style-3 .pp-tabs-label {
    margin: 0;
}


/* Labels */

.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-icon {
    margin-right: 6px;
}
.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-icon::before {
    font-size: 24px;
}

.wm-styled-tabs .pp-tabs .pp-tabs-label {
    background-color: #849888;
    color: #ffffff;
    border: none;
}

.wm-styled-tabs .pp-tabs-labels .pp-tabs-label:not(:last-child) {
    border-right: 2px solid #ffffff;
}

.wm-styled-tabs .pp-tabs .pp-tabs-label.pp-tab-active,
.wm-styled-tabs .pp-tabs .pp-tabs-label.pp-tab-active:hover,
.wm-styled-tabs .pp-tabs .pp-tabs-label:hover,
.wm-styled-tabs .pp-tabs .pp-tabs-label:focus{
    background-color: #9d8d74;
    color: #ffffff;
}

.wm-styled-tabs .pp-tabs-panel-label .pp-toggle-icon {
    color: #ffffff;
    opacity: 1;
    font-size: 14px;
}

.wm-styled-tabs .pp-tabs-horizontal .pp-tabs-labels .pp-tabs-label {
    padding: 10px 20px;
}

.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-title {
    font-weight: 600;
    text-transform: uppercase;
}

/* Content */

.wm-styled-tabs .pp-tabs-panels,
.wm-styled-tabs .pp-tabs-panel {
    border-color: #9d8d74 ;
}

.wm-styled-tabs .pp-tabs-panels .pp-tabs-panel-content {
    padding: 20px;
}


/* Stretched */

.wm-styled-tabs-stretched .pp-tabs-panels {
    border-width: 1px;
    border-style: solid;
}


/* Responsive */

@media only screen and (max-width: 960px) {
    .wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-icon {
        margin: 0 0 5px 0;
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .wm-styled-tabs .pp-tabs-panel {
        margin-bottom: 20px;
    }
    
    .wm-styled-tabs .pp-tabs-panel-label {
        padding: 10px 20px;
    }
    
    .wm-styled-tabs .pp-tabs-panels .pp-tabs-panel-content {
        border: 1px solid #9d8d74;
    }
    
    
    
    .wm-styled-tabs-stretched .pp-tabs-panels {
        border: none;
    }
}




/** ATDW Filter Tabs **/

#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs .pp-tabs-label {
    background-color: rgba(0,0,0,0.71);
    color: #ffffff;
    border: 1px solid #fff;
}

#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs .pp-tabs-label.pp-tab-active,
#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs .pp-tabs-label.pp-tab-active:hover,
#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs .pp-tabs-label:hover,
#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs .pp-tabs-label:focus{
    background-color: #849888;
    color: #ffffff;
}


/* Content */

#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs-panels,
#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs-panel {
    border-color: #ffffff;
    border-top: none;
}

#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs-panels .pp-tabs-panel-content {
    background-color: rgba(0,0,0,0.71);
    color: #ffffff;
}

/* Responsive */

@media only screen and (max-width: 768px) {
    /*#tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs-panel {
        margin-bottom: 0px;
    }*/
    
    #tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs-panels .pp-tabs-panel-content {
        border: 1px solid #ffffff;
        border-top: none;
    }
    
    #tabs-atdw-searches.wm-styled-tabs-stretched .pp-tabs .pp-tabs-label {
        background-color: #9d8d74;
    }
}



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


/*** ACCORDION ***/

/*.fl-module-pp-advanced-accordion .pp-accordion-button {
    align-items: center;
}*/

/** Solid **/

.wm-styled-accordion-solid .pp-accordion-item {
    margin-bottom: 20px;
}

/* Button */
.wm-styled-accordion-solid .pp-accordion-item .pp-accordion-button {
    padding: 10px 20px;
    border: none;
    background-color: #849888;
    color: #ffffff;
}

.wm-styled-accordion-solid .pp-accordion-item .pp-accordion-button:hover,
.wm-styled-accordion-solid .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
    background-color: #9d8d74;
    color: #ffffff;
}

.wm-styled-accordion-solid .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
    font-weight: 600;
    text-transform: uppercase;
}

.wm-styled-accordion-solid .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon.pp-accordion-icon-right {
    padding-left: 20px;
}

/* Content */
.wm-styled-accordion-solid .pp-accordion .pp-accordion-item .pp-accordion-content {
    border: 1px solid #9d8d74;
    padding: 20px;
}




/** Plain **/

.wm-styled-accordion-plain .pp-accordion-item {
    margin-bottom: 10px;
}

/* Button */
.wm-styled-accordion-plain .pp-accordion-item .pp-accordion-button {
    padding: 0px;
    border: none;
    background-color: transparent;
}

.wm-styled-accordion-plain .pp-accordion-item .pp-accordion-button:hover,
.wm-styled-accordion-plain .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
    background-color: transparent;
    color: #b93d26;
}

.wm-styled-accordion-plain .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
    font-weight: 600;
    text-transform: uppercase;
}

.wm-styled-accordion-plain .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon.pp-accordion-icon-left::before {
    width: 20px;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

/* Content */
.wm-styled-accordion-plain .pp-accordion-item .pp-accordion-content {
    border: none;
    padding: 15px 0 20px 30px;
}


/** Plain - FAQ **/

.wm-styled-accordion-plain.wm-styled-accordion-faq .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
    text-transform: none;
}


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


/**** FAQ ****/

.manual-faq .pp-faq-button-icon::before {
    width: 25px;
    display: block;
}

.manual-faq .pp-faq-content .pp-faq-content-text {
    padding-left: 25px;
    padding-top: 10px;
}


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

/*** CONTACT ICONS ***/

.contact-icons .fl-module-icon .fl-module-content {
    margin: 0 20px;
}

.contact-icons .fl-col-content .fl-module-icon:first-child .fl-module-content {
    margin-top: 20px;
}
.contact-icons .fl-col-content .fl-module-icon:last-child .fl-module-content {
    margin-bottom: 20px;
}

.contact-icons .fl-module-icon i {
    width: 25px;
    text-align: center;
    font-size: 20px !important;
}
.contact-icons .fl-module-icon i::before {
    font-size: 20px !important;
}

.contact-icons .fl-module-icon .fl-icon-text {
    height: auto;
}

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

/*** SHARE BUTTONS ***/

#social-sharing-btns .addtoany_list {
    line-height: 16px;
}

#social-sharing-btns .addtoany_list a {
    padding: 0 20px 0 0;
}

#social-sharing-btns .addtoany_list a span {
    border-radius: 3px !important;
}

#social-sharing-btns .addtoany_list a:hover span {
    opacity: 1;
}

#social-sharing-btns .addtoany_list a:hover span:hover {
    background-color: #562b45 !important;
    opacity: 1;
}




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


/*** INFO / ALERT BOXES ***/

/** General **/

.wm-alert-info-box .pp-infobox {
    padding: 40px;
}

.wm-alert-info-box-attention .pp-infobox {
    background: #eee1ca;
    border: 3px solid #b93d26 ;
}

.wm-alert-info-box-ok .pp-infobox {
    background: #ffffff;
    border: 3px solid #849888 ;
}


/** Icon **/

.wm-alert-info-box .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
    margin-right: 40px;
    line-height: 1;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.wm-alert-info-box .pp-icon-wrapper .pp-infobox-icon-inner {
    width: 60px;
    height: auto;
    text-align: center;
}

.wm-alert-info-box .pp-infobox-icon-inner span.pp-icon,
.wm-alert-info-box .pp-infobox-icon-inner span.pp-icon::before {
    font-size: 50px;
}

.wm-alert-info-box-attention .pp-infobox-icon-inner span.pp-icon {
    color: #b93d26;
}
.wm-alert-info-box-ok .pp-infobox-icon-inner span.pp-icon {
    color: #849888;
}


/** Text **/

.wm-alert-info-box .pp-heading-wrapper {
    text-align: left;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.wm-alert-info-box .pp-infobox-title-wrapper .pp-infobox-title {
    margin-top: 0;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 20px;
}

/*** Responsive ***/

@media only screen and (max-width: 768px) {
    .wm-alert-info-box .pp-infobox {
        padding: 40px 20px;
    }
    
    .wm-alert-info-box .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
        margin-bottom: 10px;
    }
    
    .wm-alert-info-box .pp-heading-wrapper {
        text-align: center;
    }
}



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

/*** VIDEOS ***/

.wm-styled-video .pp-video-play-icon {
    border: 2px solid #ffffff;
    background: #b93d26;
}
.wm-styled-video .pp-video-play-icon:hover {
    background: #562b45;
}

.wm-styled-video .pp-video-play-icon svg,
.wm-styled-video .pp-video-play-icon:hover svg {
    fill: #ffffff;
}






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


/*** MODULE STYLING END ***/
/************************************/


/*** TESTIMONIALS ***/
.testimonial {
	position: relative;
}

.testimonial .fl-row-content {
	padding-top: 110px;
	padding-bottom: 110px;
}

.testimonial .fl-row-content .testimonial-content-col .fl-col-content {
	max-width: 500px;
	margin: 0 auto;
	background: rgba(157,141,116,0.9);
	padding: 40px;
}

.testimonial .fl-module-icon .fl-module-content,
.testimonial .fl-heading,
.testimonial .fl-post-text {
    text-align: center;
	padding: 0px;
	color: #fff;
}

.testimonial .testimonial-content-col .fl-module-icon i,
.testimonial .testimonial-content-col .fl-module-icon i::before {
	font-size: 40px;
}

.testimonial .fl-module-icon .fl-module-content,
.testimonial .fl-module-heading .fl-module-content {
	margin-bottom: 0;
}

.testimonial .fl-module-heading .fl-module-content {
	margin-top: 10px;
}
.testimonial .fl-module-icon + .fl-module-heading .fl-module-content {
	margin-top: 20px;
}

.testimonial .fl-post-text q::before,
.testimonial .fl-post-text q::after {
    content: "";
}

.testimonial .fl-post-text footer,
.testimonial .fl-post-text cite{
    margin-top: 10px;
    text-transform: uppercase;
	font-style: normal;
	font-size: 14px;
	background: none;
}


/* Solid Colour Testimonial */
.testimonial-solid .fl-row-content {
	padding-top: 0;
	padding-bottom: 0;
	margin: 0 20px;
	background-color: #9d8d74;
}

.testimonial-solid .fl-row-content .testimonial-content-col .fl-col-content {
	max-width: 750px;
	padding: 80px 40px 80px 40px;
}

/*Responsive */

@media only screen and (max-width: 768px) {
	.testimonial .fl-row-content {
		padding: 110px 30px !important;
	}
	
	.testimonial-solid .fl-row-content {
		padding: 0 !important;
	}

	.testimonial .fl-row-content .testimonial-content-col .fl-col-content {
		padding: 20px;
	}
}

/**END Testimonial styles*/



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


/*** Video Lightbox ***/

.fl-button-lightbox-wrap .mfp-container .mfp-content {
    background: none;
}
.fl-button-lightbox-wrap .mfp-container .mfp-content iframe {
    border: none;
}

.mfp-wrap.fl-button-lightbox-wrap .mfp-container .mfp-close, 
.mfp-wrap.fl-button-lightbox-wrap .mfp-container .mfp-close:hover {
    color: #ffffff !important;
    top: -20px !important;
    right: -10px;
}




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


/**** SVG MAPS ****/

/** Hovers **/

#map-major-cities-towns .map-town-link text:hover,
#map-major-cities-towns .map-town-link text:hover tspan,
#map-minor-towns .map-town-link text:hover,
#map-minor-towns .map-town-link text:hover tspan,
#drive-times-page-link .page-link text:hover {
	fill: #ee7624;
	cursor: pointer;
}
#map-layer-national-parks .map-np-link:hover {
	cursor: pointer;
}
#map-layer-national-parks .map-np-link:hover path {
	fill: #ee7624;
}
/*#map-layer-national-parks .map-np-link:hover path.st6*/
#map-layer-national-parks .map-np-link:hover path.st7{
	fill: none;
	cursor: default;
}



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



/** No animation - Towns and NPs **/

#wm-map-towns-only #wm-svg-map {
    margin-left: 40px;
    position: relative;
}

#wm-map-towns-only #wm-region-map {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    max-width: 35%;
}





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


/*** INTERACTIVE MAP FULL - HOMEPAGE ***/


@media only screen and (min-width: 1140px){
    #wm-interactive-map-row .fl-row-content-wrap > .fl-row-content > .fl-col-group:nth-child(2){
        padding-left: 60px;
    }
}

@media only screen and (max-width: 768px){
    #wm-interactive-map-row .fl-col-group.fl-node-60d831fc21a55 {
        display:none !important;
    }
}


/** Map Navigation Buttons **/

/* Col */

#wm-interactive-map-row #map-link-buttons-col {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Buttons */

#wm-interactive-map-row #map-link-buttons-col .fl-module-button .fl-module-content {
    margin: 10px 20px;
}

#wm-interactive-map-row #map-link-buttons-col .fl-button {
    width: 250px;
    padding: 10px 20px;
}
#wm-interactive-map-row #map-link-buttons-col .fl-button i {
    width:30px;
    text-align: center;
}

#wm-interactive-map-row .map-button .fl-button,
#wm-interactive-map-row .map-button .fl-button {
     background: #9d8d74 !important;
     border: none;
}

#wm-interactive-map-row .map-button .fl-button:hover,
#wm-interactive-map-row .map-button .fl-button.focused {
     background: #849888 !important;
}

@media only screen and (max-width: 992px) {
    #wm-interactive-map-row #map-link-buttons-col .fl-button {
        width: 210px;
    }
}
@media only screen and (max-width: 870px) {
    #wm-interactive-map-row #map-link-buttons-col .fl-button {
        width: 190px;
        padding: 10px;
    }
}



/** Region Map **/

#wm-interactive-map-row #map-links-regions-col #region-map .fl-photo {
    text-align: left;
}

#wm-interactive-map-row #map-links-regions-col #region-map img {
    width: 250px;
    max-width: 250px;
}


/** Region Links **/

#wm-interactive-map-row #map-links-regions-col {
    padding-bottom: 20px;
}

#wm-interactive-map-row #map-links-regions-col .fl-module-button .fl-module-content,
#map-region-links-mobile .fl-module-button .fl-module-content {
    margin: 10px 20px;
}

#wm-interactive-map-row #map-links-regions-col .region-button a.fl-button,
#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button {
    background: none;
    /*font-family: 'Shadows Into Light', cursive;
    font-size: 36px;*/
    font-size: 30px;
    font-weight: 400;
    text-transform: none;
}

#wm-interactive-map-row #map-links-regions-col .region-button a.fl-button::after,
#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button::after {
    font-size: 16px;
    position: absolute;
    padding-left: 10px;
}

#wm-interactive-map-row #map-links-regions-col .region-button a.fl-button *,
#wm-interactive-map-row #map-links-regions-col .region-button a.fl-button::after,
#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button *,
#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button::after {
    color: #000 !important;
}
#wm-interactive-map-row #map-links-regions-col #region-button-outback a.fl-button:hover *,
#wm-interactive-map-row #map-links-regions-col #region-button-outback a.fl-button:hover::after,
#wm-interactive-map-row #map-region-links-mobile #region-button-outback-mobile a.fl-button:hover *,
#wm-interactive-map-row #map-region-links-mobile #region-button-outback-mobile a.fl-button:hover::after {
    color: #b93d26 !important;
}
#wm-interactive-map-row #map-links-regions-col #region-button-flinders a.fl-button:hover *,
#wm-interactive-map-row #map-links-regions-col #region-button-flinders a.fl-button:hover::after,
#wm-interactive-map-row #map-region-links-mobile #region-button-flinders-mobile a.fl-button:hover *,
#wm-interactive-map-row #map-region-links-mobile #region-button-flinders-mobile a.fl-button:hover::after {
    color: #562b45 !important;
}
#wm-interactive-map-row #map-links-regions-col #region-button-southern-flinders a.fl-button:hover *,
#wm-interactive-map-row #map-links-regions-col #region-button-southern-flinders a.fl-button:hover::after,
#wm-interactive-map-row #map-region-links-mobile #region-button-southern-flinders-mobile a.fl-button:hover *,
#wm-interactive-map-row #map-region-links-mobile #region-button-southern-flinders-mobile a.fl-button:hover::after {
    color: #abc37d !important;
}

#wm-interactive-map-row #map-links-regions-col .region-button a.fl-button,
#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button {
    position: relative;
    line-height: 18px;
}

#wm-interactive-map-row #map-links-regions-col .region-button a.fl-button::before,
#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button::before {
    position: absolute;
    top: 0;
}

#wm-interactive-map-row #map-links-regions-col .region-button a.fl-button span,
#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button span {
    padding-left: 55px;
    white-space: nowrap;
}

#wm-interactive-map-row #map-links-regions-col #region-button-outback a.fl-button::before,
#wm-interactive-map-row #map-region-links-mobile #region-button-outback-mobile a.fl-button::before {
    content: url(https://staging.flindersandoutback.com.au/wp-content/uploads/2021/05/small_OUTBACK-colour-markers-01.png);
}
#wm-interactive-map-row #map-links-regions-col #region-button-flinders a.fl-button::before,
#wm-interactive-map-row #map-region-links-mobile #region-button-flinders-mobile a.fl-button::before {
    content: url(https://staging.flindersandoutback.com.au/wp-content/uploads/2021/05/small_FLINDERS-colour-markers-02.png);
}
#wm-interactive-map-row #map-links-regions-col #region-button-southern-flinders a.fl-button::before,
#wm-interactive-map-row #map-region-links-mobile #region-button-southern-flinders-mobile a.fl-button::before {
    content: url(https://staging.flindersandoutback.com.au/wp-content/uploads/2021/05/small_SOUTHERN-FLINDERS-colour-markers-03.png);
}


/** Positioning Elements - Grid **/

#wm-interactive-map-row .fl-col-group.fl-node-60d831fc21a55 {
    /*position: relative;*/
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 0px 200px 0px auto;
    grid-template-columns: 50px 200px auto;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

#wm-interactive-map-row .fl-col-group.fl-node-60d831fc21a55 > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

#wm-interactive-map-row .fl-col-group.fl-node-60d831fc21a55 > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

#wm-interactive-map-row .fl-col-group.fl-node-60d831fc21a55 > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}



#wm-interactive-map-row #map-link-col {
    /*z-index: 10;
    position: relative;*/
    width: 100% !important;
    z-index: 10;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 2 / 3;
}

#wm-interactive-map-row #map-display-col {
    /*position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 50px);*/
    width: 100% !important;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: 1 / 2 / 2 / 4;
}

#wm-interactive-map-row #map-link-col .fl-col-content {
    height: 100%;
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}



/*** Map Animation ***/

#wm-interactive-map-row .map-layer {
    display: none;
}



/*** Map Replacement on Mobile - Accordion ***/

#wm-interactive-map-row #map-region-links-mobile {
    padding-top: 30px;
}

#wm-interactive-map-row #map-region-links-mobile .region-button a.fl-button {
    padding-left: 0px;
}

#wm-interactive-map-row #wm-mobile-map-replacement .fl-module-content {
    margin: 70px 20px 30px 20px;
}

#wm-interactive-map-row #wm-mobile-map-replacement .pp-accordion-item .pp-accordion-icon::before {
    width: 30px !important;
    display: inline-block;
}

#wm-interactive-map-row #wm-mobile-map-replacement #pp-accord-60ca0adae7c43-1 .pp-accordion-button {
    background-color: #b93d26;
}
#wm-interactive-map-row #wm-mobile-map-replacement #pp-accord-60ca0adae7c43-2 .pp-accordion-button {
    background-color: #562b45;
}
#wm-interactive-map-row #wm-mobile-map-replacement #pp-accord-60ca0adae7c43-3 .pp-accordion-button {
    background-color: #abc37d;
}

#wm-interactive-map-row #wm-mobile-map-replacement.wm-styled-accordion-solid .pp-accordion-item .pp-accordion-button:hover, 
#wm-interactive-map-row #wm-mobile-map-replacement.wm-styled-accordion-solid .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
    background-color: #9d8d74 !important;
}

/*** INTERACTIVE MAP END ***/



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


/*** TABLE OF CONTENTS ***/

.wm-table-of-content .pp-toc-container .pp-toc-body {
    background: none;
    padding: 0;
}

.wm-table-of-content .pp-toc-container .pp-toc-body ul.pp-toc-list-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    justify-content: flex-start;
}

.wm-table-of-content .pp-toc-container .pp-toc-list-wrapper li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: calc(33.3% - 20px);
    flex-basis: calc(33.3% - 20px);
    margin: 0 10px 20px 10px;
}

.wm-table-of-content .pp-toc-container .pp-toc-list-wrapper li a {
    padding: 15px 10px;
    line-height: 1.2;
    width: 100%;
    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;
    text-align: center;
}

.wm-table-of-content .pp-toc-container .pp-toc-list-wrapper li a::after {
    content: "f175";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    padding-left: 10px;
    font-size: 16px;
    top: 1px;
    position: relative;
}

@media only screen and (max-width: 820px) {
    .wm-table-of-content .pp-toc-container .pp-toc-list-wrapper li {
        -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    }
}
@media only screen and (max-width: 550px) {
    .wm-table-of-content .pp-toc-container .pp-toc-list-wrapper li {
        -ms-flex-preferred-size: calc(100% - 20px);
        flex-basis: calc(100% - 20px);
    }
}


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


/* ADJUST HEIGHT of full  width 50% images */

@media (min-width: 768px) {
    .image-half {
        max-height: 350px;
        overflow: hidden;
    }
}
@media (min-width: 992px) {
    .image-half {
        max-height: 400px;
        overflow: hidden;
    }
}
@media (min-width: 1200px) {
    .image-half {
        max-height: 450px;
        overflow: hidden;
    }
}



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

/*** Image and Gallery Captions ***/

/*** Captions ***/

/* General */

.fl-module-photo .fl-photo-caption,
.pp-photo-gallery .pp-caption,
.pp-photo-gallery .pp-photo-gallery-caption,
.wm-styled-image-slider .pp-image-overlay .pp-caption,
.wm-col-with-caption .caption {
    white-space: normal;
    font-size: 12px;
    line-height: 1;
    text-align: right;
}

.pp-photo-gallery-item.has-caption {
    position: relative;
}

.fl-module-photo .fl-photo-caption i,
.pp-photo-gallery .pp-caption i,
.pp-photo-gallery .pp-photo-gallery-caption i,
.wm-styled-image-slider .pp-image-overlay .pp-caption i,
.wm-col-with-caption .caption i {
    padding: 0 5px;
}



/* Caption on Hover */

.pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay {
    opacity: 1;
}

.fl-module-photo .fl-photo-caption-hover, 
.pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay .pp-overlay-inner,
.wm-styled-image-slider .pp-image-overlay,
.pp-photo-gallery .pp-photo-gallery-caption {
    /*background: rgba(51,63,72,0.8);*/
    background: none;
    bottom: 0;
    top: initial;
    color: #fff;
    font-size: 12px;
    left: 0;
    opacity: 100;
    /*filter: alpha(opacity = 100);*/
    padding: 2px 5px;
    position: absolute;
    right: 0;
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
    transform: none;
}
/*.fl-module-photo .fl-photo-content:hover .fl-photo-caption-hover, 
.pp-photo-gallery .pp-photo-gallery-item .pp-photo-gallery-content:hover .pp-gallery-overlay .pp-overlay-inner {
    opacity: 100;
    filter: alpha(opacity = 100);
}*/


/*.pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay .pp-overlay-inner,
.pp-photo-gallery .pp-photo-gallery-caption {
    background: rgba(51,63,72,0.8);
}*/
@media only screen and (min-width: 1140px) {
    .pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay .pp-overlay-inner {
        bottom: 1px;
    }
}

.pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay .pp-overlay-inner .pp-caption {
    margin-bottom: 0px;
}

/* Caption Below */

.fl-module-photo .fl-photo-caption-below {
    padding: 5px 0;
}


/* Col with Caption */

.wm-col-with-caption .fl-col-content {
    position: relative;
}
.wm-col-with-caption .caption,
.fl-module-photo.wm-caption-overlay .fl-photo-caption,
.pp-photo-gallery.wm-caption-overlay .pp-caption,
.pp-photo-gallery.wm-caption-overlay .pp-photo-gallery-caption {
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2px 10px;
}



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


/*** Parent Page Row ***/

.archive-page-panel .fl-row-content-wrap .fl-row-content {
    margin: 40px 20px 0 20px;
}

@media only screen and (min-width: 768px) {
    .archive-page-panel .pure-bg-img-col {
        min-height: 350px;
    }
}

.archive-page-panel .archive-page-content {
    background: #eee1ca;
    padding: 20px 20px 30px 20px;
}

.archive-page-panel .archive-page-content .fl-module-button .fl-module-content {
    margin-top: 0;
}




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

/*** Town Pages ***/

/* Distances */
.wm-town-page-distance i {
    color: #abc37d;
}

.wm-town-page-distance .fl-icon-wrap {
    border-bottom: 2px solid #abc37d;
}

.wm-town-page-distance .fl-module-content {
    margin-bottom: 10px;
}











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

/**** ATDW ****/

/*** On Page Listings ***/

.wm-atdw-product-pixel,
.wm-atdw-product-pixel *{
    margin:0!important;
    padding: 0!important;
    max-height: 1px;
}

@media only screen and (max-width: 992px) {
    .wm-on-page-listings .atdw-facet-product {
        flex-basis: 48%;
    }
}
@media only screen and (max-width: 768px) {
    .wm-on-page-listings .atdw-facet-product {
        flex-basis: 100%;
    }
}

.atdw-products-btns a:visited {
    color: #fff;
}

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



/**** ATDW Search ****/
.facetwp-bb-module .facetwp-facet.facetwp-facet-load_more{
    text-align: center;
}

.wm-search-heading h3{
    text-transform: uppercase;
    /*color: #fff;*/
}

.wm-atdw-search-row .wm-atdw-view-all-btn a:hover span,
.wm-atdw-search-row .wm-atdw-search-events .fl-post-title a:hover {
    text-decoration: underline;
}

.wm-atdw-search .fs-wrap{
    line-height: 22px;
}
.wm-atdw-search .fs-label-wrap,
.wm-atdw-search .fs-wrap{
    width: 100%;
}

.wm-atdw-search .fs-label{
    /*color: #849888;
    font-weight: 600;*/
    background-color: #fff;
}

.atdw-facet-filters{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.atdw-facet-filters > div{
    /*width: 37%;*/
    width: auto;
    margin: 0 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.wm-atdw-search button{
    /*width: auto;*/
    width: 200px;
    padding: 0 20px;
    margin-left: 20px;
    border: solid 1px #fff;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wm-atdw-search{
    color: initial;
}

.wm-atdw-search button i{
    margin-left: 5px;
}

.wm-atdw-search .fs-arrow{
    border: none;
    height: 100%;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wm-atdw-search .fs-arrow:after{
    border: none;
    content: "f078";
    font-family: "Font Awesome 6 Pro";
    position: relative;
    color: #849888;
}
.wm-atdw-search .fs-dropdown{
    width: 300px;
}

.wm-atdw-search .fs-wrap.multiple .fs-option.selected .fs-checkbox i {
    background-color: #b93d26;
}
.wm-atdw-search .fs-option-label{
    /*color: #849888;*/
}
.atdw-search-form{
    display: flex;
    justify-content: center;
}
.atdw-field-lock .fs-label,
.atdw-field-lock .fs-arrow:after{
    /*color:#84988866;*/
    color: #000;
    cursor: not-allowed;
}
.atdw-field-lock .fs-arrow {
    display: none;
}
 
 @media (max-width: 769px){
    .atdw-facet-filters{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .atdw-facet-filters > div {
        margin: 0;
    }
    .atdw-facet-filters .fs-wrap, .atdw-facet-filters button{
        margin: 10px 0;
    }
    .wm-atdw-search button{
        margin-left: 0;
        padding: 10px;
    }
}


.wm-atdw-search-row .wm-atdw-search-events .start-date {
    text-transform: uppercase;
    font-weight: 600;
    width: 80px;
    display: inline-block;
}

.wm-atdw-search-row .wm-atdw-search-events .start-date i {
    font-size: 10px;
    padding-right: 5px;
    margin-bottom: 4px;
    display: inline-block;
}


.wm-atdw-search-row .wm-atdw-search-events .fl-post-title {
    font-weight: 600;
    font-size: 18px;
}




/* fix atde modules view responsive spacing */
@media only screen and (max-width: 992px) {
    .fl-module-class-atdw-products .atdw-product-results .atdw-facet-product,
    .fl-module-class-atdw-products .atdw-product-results .atdw-deal-single {
        flex-basis: 48%;
    }
}
@media only screen and (max-width: 768px) {
    .fl-module-class-atdw-products .atdw-product-results .atdw-facet-product,
    .fl-module-class-atdw-products .atdw-product-results .atdw-deal-single {
        flex-basis: 100%;
    }
}


.update-trip-planner:active,
.update-trip-planner:focus{
    color: #eee1ca;
}

/* Bucket List Counter */
.trip-planner-desktop{
    position: absolute;
    top: 4px;
    right: -8px;
    padding: 2px 0;
    height: 14px;
    width: 14px;
    background: #fff;
    border-radius: 15px;
    font-size: 11px;
    text-align: center;
    vertical-align: middle;
    color: #849888!important;
}

#scroll-header .trip-planner-desktop{
    top: 8px;
    right: 2px;
}




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

/*** COL with BG IMG - Margins ***/

.wm-col-bg-img .fl-col-content {
    margin: 20px !important;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.wm-advanced-ordered-list .fl-module-content {
    margin-top: 0;
}

.wm-advanced-ordered-list .fl-rich-text ol {
    counter-reset: item;
    padding-left: 45px;
}
.wm-advanced-ordered-list .fl-rich-text ol ol {
    padding-left: 35px;
}

.wm-advanced-ordered-list .fl-rich-text ol li {
    display: block;
    position: relative;
    margin: 8px 0;
}

.wm-advanced-ordered-list .fl-rich-text ol li:before {
    content: counters(item, ".", decimal) ".";
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: 8px;
    width: 36px;
}

.wm-advanced-ordered-list .fl-rich-text ol ol li:before {
    content: counters(item, ".", decimal);
    width: 26px;
}

.wm-advanced-ordered-list .fl-rich-text ol ol ol {
    counter-reset: alphaitem;
}

.wm-advanced-ordered-list .fl-rich-text ol ol ol li:before {
    content: "(" counter(alphaitem, lower-alpha) ")";
    counter-increment: alphaitem;
}

.wm-advanced-ordered-list .fl-rich-text ol ol ol ol {
    counter-reset: romanitem;
}

.wm-advanced-ordered-list .fl-rich-text ol ol ol ol li:before {
    content: "(" counter(romanitem, lower-roman) ")";
    counter-increment: romanitem;
}





.wm-advanced-ordered-list .fl-rich-text ol li:before {
    font-size: 33px;
    line-height: 1.4;
    font-weight: 700;
}

.wm-advanced-ordered-list .fl-rich-text ol li ol li:before {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}


/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-e30k715cd9wf .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-wxez0qd5svr8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gacfq2o07ke5 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-rulv9ti1dab2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-utzd1jh43ayv .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-058mv67ix1lz .fl-row-content {
				min-width: 0px;
			}
		