/* 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:before,
.fl-module: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:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* 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;
}

/* 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%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.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 {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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 {
	align-items: flex-end;
	justify-content: flex-end;
	-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;
}

/* 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 {
	align-items: center;
	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-module,
.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;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

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

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

/* 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-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;
}
.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;
}

/* 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;
	}
}
@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: 1300px;
}
.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, :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, :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, :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-zt4swedn6gkx .fl-row-content {
	max-width: 1300px;
}






.fl-node-eh7qlsz8g94j .fl-row-content {
	max-width: 1300px;
}
 .fl-node-eh7qlsz8g94j > .fl-row-content-wrap {
	padding-top:60px;
}






.fl-node-2ly5619es3po .fl-row-content {
	max-width: 1300px;
}
 .fl-node-2ly5619es3po > .fl-row-content-wrap {
	padding-top:60px;
}






 .fl-node-4iznd0fvamt2 > .fl-row-content-wrap {
	padding-top:100px;
}






 .fl-node-tphka5oy1wij > .fl-row-content-wrap {
	padding-top:60px;
}












 .fl-node-46qg7c3eubxd > .fl-row-content-wrap {
	padding-top:40px;
}












.fl-node-bal4znwd3uv9 .fl-row-content {
	max-width: 1300px;
}




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




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




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




.fl-node-9aun5sm6fekp {
	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-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-module-box:before,
.fl-module-box:after {
	display: none !important;
	content: '';
}
a.fl-module-box {
	text-decoration: none;
}

/* Zero margins for child modules */
.fl-module-box :where( .fl-module ),
.fl-module-box :where( .fl-module-content ) {
	margin: 0;
}
.fl-builder-content-41636 .fl-node-p3cyf85x9nwl {
	display: flex;
	flex-direction: row;
	gap: 40px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
:where( .fl-node-p3cyf85x9nwl > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 33.33%;
}
@media(max-width: 992px) {
	.fl-builder-content-41636 .fl-node-p3cyf85x9nwl {
		flex-wrap: wrap;
	}
	:where( .fl-node-p3cyf85x9nwl > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 47%;
	}
}
 .fl-node-p3cyf85x9nwl.fl-module-box {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
.fl-builder-content-41636 .fl-node-9zo4astkjw12 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-builder-content-41636 .fl-node-ja2gkp0lus1t img.fl-photo-img {
	object-position: center;
}
.fl-node-ja2gkp0lus1t .fl-photo {
	text-align: center;
}
.fl-builder-content-41636 .fl-node-pa9j562niw0f img.fl-photo-img {
	object-position: center;
}
.fl-node-pa9j562niw0f .fl-photo {
	text-align: center;
}
.fl-builder-content-41636 .fl-node-ghfto85em2dr img.fl-photo-img {
	object-position: center;
}
.fl-node-ghfto85em2dr .fl-photo {
	text-align: center;
}
.fl-builder-content-41636 .fl-node-q1a3nfvbc4yz {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 40px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
:where( .fl-node-q1a3nfvbc4yz > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 33.33%;
}
@media(max-width: 992px) {
	.fl-builder-content-41636 .fl-node-q1a3nfvbc4yz {
		flex-wrap: wrap;
	}
	:where( .fl-node-q1a3nfvbc4yz > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 47%;
	}
}
 .fl-node-q1a3nfvbc4yz.fl-module-box {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
.fl-builder-content-41636 .fl-node-y097uo3rvidf {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-41636 .fl-node-fcvimo9dxjeh img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-builder-content-41636 .fl-node-42t539ikoa1w {
	display: flex;
	flex-direction: row;
	gap: 40px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
:where( .fl-node-42t539ikoa1w > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 33.33%;
}
@media(max-width: 992px) {
	.fl-builder-content-41636 .fl-node-42t539ikoa1w {
		flex-wrap: wrap;
	}
	:where( .fl-node-42t539ikoa1w > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 47%;
	}
}
 .fl-node-42t539ikoa1w.fl-module-box {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
.fl-builder-content-41636 .fl-node-4nr3sj6tuh7l {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-41636 .fl-node-weyfbukrpsi2 img.fl-photo-img {
	object-position: center;
}
.fl-node-weyfbukrpsi2 .fl-photo {
	text-align: center;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
 .fl-node-i9lgpo5eurbk > .fl-module-content {
	margin-top:20px;
}
.fl-builder-content-41636 .fl-node-y540xzvfpal3 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
 .fl-node-ve3n1whx7925 > .fl-module-content {
	margin-top:20px;
}
.fl-builder-content-41636 .fl-node-ortvznygk8x1 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-41636 .fl-node-fdocjtaku5ze {
	display: flex;
	flex-direction: column;
	gap: 10px;
}














.fl-node-7c2pek860tvb .fl-button-wrap {
	text-align: left;
}
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.fl-row-fixed-width,
.fl-module-box :where( .fl-module ),
.fl-module-box :where( .fl-module-content ) {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}
.pp-posts-wrapper .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
	border: 0 !important;
	box-shadow: none !important;
}
.pp-posts-loader {
	display: none;
	text-align: center;
}
.pp-posts-wrapper {
	position: relative;
}
.pp-content-post-grid #infscr-loading {
	position: absolute;
	bottom: -10px;
}
/*
.pp-content-post-grid.pp-is-filtering:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 20;
}
.pp-content-post-grid.pp-is-filtering:after {
    content: "";
    position: relative;
    z-index: 21;
    opacity: 1;
    visibility: visible;
    text-align: center;
    left: 50%;
	top: 50px;
	width: 50px;
    height: 50px;
	background-size: 50px;
	background-repeat: no-repeat;
}
*/
.rtl .pp-content-post-grid.pp-is-filtering:after {
	left: auto;
	right: 50%;
}
.pp-content-post-grid.pp-is-filtering .pp-content-post {
	opacity: 0.5;
}
.pp-post-filters-wrapper {
	position: relative;
}
.pp-post-filters-toggle {
    display: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-bottom: 10px;
}
.pp-post-filters-toggle:after {
    content: "+";
    float: right;
	font-size: 18px;
	font-weight: bold;
    line-height: 1;
}
.pp-post-filters-toggle.pp-post-filters-open:after {
	content: "-";
}
.pp-post-filters-wrapper.pp-filter-mobile {
	display: none;
}
.pp-post-filters-wrapper .pp-close-icon {
	background: #ddd;
    padding: 3px 8px;
    position: absolute;
    top: -35px;
    right: 0;
	cursor: pointer;
    display: none;
}
.pp-post-filters-wrapper.pp-filter-mobile .pp-close-icon {
	display: block;
}
.pp-filter-title-mobile {
	display: none;
	font-size: 18px;
	padding: 5px 20px;
	border: 2px solid #222;
    margin-bottom: 20px;
    color: #333;
	cursor: pointer;
}

.pp-post-filters {
	padding-left: 0;
	margin-left: 0;
	text-align: left;
	margin-bottom: 30px;
}
.pp-post-filters li {
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
	padding: 8px 10px;
	color: #000;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-post-filters li:hover {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-content-post a {
	border: none;
}
.pp-content-post a,
.pp-content-post .pp-post-content,
.pp-content-post .pp-post-meta {
	transition: color 0.3s ease-in-out;
}

.pp-content-post-carousel .owl-carousel {
	overflow: hidden;
}
.pp-content-post-carousel:not(.pp-auto-height) .owl-carousel .owl-stage-outer {
	overflow: initial;
}
.pp-content-post-carousel .owl-carousel.owl-loaded:focus {
	outline: none;
}

.pp-content-grid-post .pp-content-category-list,
.pp-content-carousel-post .pp-content-category-list {
	margin-top: 15px;
	padding-top: 10px;
	border-top: 1px solid #eee;
	position: relative;
	z-index: 2;
}

.pp-content-grid-post .pp-content-grid-more,
.pp-content-carousel-post .pp-content-carousel-more {
	display: inline-block;
}

.pp-content-post .pp-post-title a,
.pp-content-post .pp-more-link-button {
	text-decoration: none;
}

.pp-content-post .pp-post-title-divider {
	display: inline-block;
    height: 2px;
    width: 50px;
    margin-bottom: 7px;
}

.pp-content-grid-image > a,
.pp-content-carousel-image > a {
	display: block;
}

.pp-content-post-grid:not(.pp-css-grid) .pp-content-post .pp-post-image,
.pp-content-post-carousel .pp-content-post .pp-post-image {
	position: relative;
}

.pp-content-post .pp-post-image .pp-post-featured-img a {
	display: block;
}
.pp-content-post.pp-grid-style-9 .pp-post-image a {
	width: 100%;
	height: 100%;
}

.pp-content-post .pp-post-image .fl-photo-content {
	display: block;
}

.pp-content-post .pp-post-image .pp-content-category-list {
    position: absolute;
    top: 0;
    margin-top: 0;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-top: 0;
    padding: 10px;
	z-index: 1;
}

.pp-content-post .pp-post-image .pp-content-category-list a {
	color: #fff;
}

.pp-content-post .pp-post-image .pp-post-title {
	position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
}

.pp-content-post.pp-grid-style-4 .pp-post-image {
	overflow: hidden;
	position: relative;
}
.pp-content-post.pp-grid-style-4 .pp-post-image img {
	-moz-transition: all 0.3s;
  	-webkit-transition: all 0.3s;
  	transition: all 0.3s;
}

.pp-content-post.pp-grid-style-4:hover .pp-post-image img {
	-moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.pp-content-post.pp-grid-style-5 .pp-content-post-date {
	float: left;
	text-align: center;
	width: 38px;
}
.pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-day {
	display: block;
	padding: 5px 0px;
    font-size: 15px;
}
.pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-month {
	display: block;
	padding: 5px 0;
    font-size: 13px;
}

.pp-content-post.pp-grid-style-5 .pp-content-post-data {
	margin-left: 20px;
	float: left;
	width: 70%;
	text-align: left;
}

.pp-content-post.pp-grid-style-6 .pp-post-image {
	text-align: center;
}

.pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	display: block;
    margin: 0 auto;
    padding: 10px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    text-transform: uppercase;
    font-size: 14px;
	line-height: 1.5;
	position: relative;
}
.pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date span {
	display: block;
}

.pp-content-post.pp-grid-style-7 .pp-content-body {
	max-width: 90%;
    margin: 0 auto;
    margin-top: -10%;
    position: relative;
	-webkit-transition: background-color 0.3s ease-in;
	-moz-transition: background-color 0.3s ease-in;
	-ms-transition: background-color 0.3s ease-in;
	-o-transition: background-color 0.3s ease-in;
	transition: background-color 0.3s ease-in;
}

.pp-content-post.pp-grid-style-7:hover .pp-content-body {
	-webkit-transition: background-color 0.3s ease-in;
	-moz-transition: background-color 0.3s ease-in;
	-ms-transition: background-color 0.3s ease-in;
	-o-transition: background-color 0.3s ease-in;
	transition: background-color 0.3s ease-in;
}

.pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap {
	display: flex;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post.pp-post-2n .pp-content-alternate-wrap {
	flex-direction: row-reverse;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image,
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-inner { 
	width: 50%;
	overflow: hidden;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image *:not(.pp-post-meta) {
	height: 100% !important;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image img {
	object-fit: cover;
}

/* Post Grid */

.pp-content-post {
	overflow: hidden;
}

.pp-content-post,
.pp-content-post:hover {
	-webkit-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
	-ms-transition: background-color 0.3s ease-in-out;
	-o-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}

.pp-content-post-grid {
	margin: 0 auto;
	position: relative;
}
.pp-content-grid-image img {
	height: auto !important;
	width: 100%;
}

.pp-post-featured-img img {
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.pp-content-grid-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}

.pp-content-grid-title,
.pp-content-carousel-title {
	margin: 0;
	padding: 0;
}
.pp-content-post-meta {
	font-size: 14px;
	padding-bottom: 10px;
	position: relative;
    z-index: 2;
}
.pp-content-grid #infscr-loading {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

.pp-content-post .pp-more-link-button,
.pp-content-post .pp-add-to-cart a {
	display: inline-table;
	text-align: center;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.pp-content-grid-pagination ul.page-numbers {
	display: inline-block;
}
.pp-content-grid-pagination li {
	text-align: center;
}
.pp-content-post .pp-more-link-button:hover,
.pp-content-grid-pagination li a.page-numbers:hover,
.pp-content-post .pp-add-to-cart a {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-content-grid-pagination li a.page-numbers {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-content-grid-pagination li .page-numbers {
	min-width: 35px !important;
	display: block !important;
}

.pp-content-grid-pagination li .page-numbers:last-child {
	margin-right: 0;
}

.pp-content-grid-load-more a {
	display: inline-block;
}
.pp-content-grid-load-more a.disabled {
	opacity: 0.8;
	pointer-events: none;
}
.pp-content-grid-load-more a .pp-grid-loader-icon {
	display: none;
}
.pp-content-grid-load-more a .pp-grid-loader-icon img {
	height: 18px;
	margin-left: 3px;
	width: auto;
}
.pp-content-grid-load-more a.loading .pp-grid-loader-icon {
	display: inline;
}

.pp-content-grid-loader {
	margin-top: 10px;
}
.pp-content-grid-loader .pp-grid-loader-text {
	color: #999999;
}
.pp-content-grid-loader .pp-grid-loader-icon img {
	height: 18px;
}

.pp-content-post a.pp-post-link {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


/* Post Feed */
.pp-post-feed-post {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
.pp-post-feed-post:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.pp-post-feed-header {
	margin-bottom: 25px;
}
.pp-post-feed-header a {
	text-decoration: none;
}
body h2.pp-post-feed-title {
	margin: 0 0 10px;
	padding: 0;
}
body .pp-post-feed-meta {
	font-size: 14px;
}
.pp-post-feed-meta .fl-sep {
	margin: 0 3px;
}
.pp-post-feed-image {
	margin-bottom: 25px;
}
.pp-post-feed-image img {
	height: auto !important;
	width: 100% !important;
}
.pp-post-feed-image-beside .pp-post-feed-image {
	float: left;
	width: 33%;
}
.pp-post-feed-image-beside.pp-post-feed-has-image .pp-post-feed-content {
	margin-left: 37%;
}
.pp-post-feed-content a {
	text-decoration: none;
}
.pp-post-feed-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.pp-post-feed-more {
	margin-top: 15px;
	display: inline-block;
}
.pp-post-feed #infscr-loading {
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* No posts message */
.pp-content-grid-empty {
	border: 1px dashed #ccc;
	font-size: 16px;
	padding: 20px;
	text-align: center;
}

/* Wrappers */
.pp-post-carousel-navigation{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 20;
	margin-top: -16px;
}
.pp-post-carousel-navigation a{
	position: absolute;
	display: inline-block;
}
.pp-post-carousel-navigation a a {
	display: none;
}
.pp-post-carousel-navigation a:hover{ opacity: 1; }

.pp-post-carousel-navigation .carousel-prev{ left: 0; }
.pp-post-carousel-navigation .carousel-next{ right: 0; }

.pp-post-carousel-navigation .fl-post-carousel-svg-container{
	position: relative;
	width: 32px;
	height: 32px;
}

.pp-content-carousel-image img {
	height: auto;
}


/* Post Carousel */
.pp-content-post-carousel .owl-theme .owl-dots {
	margin-top: 10px;
}
.pp-content-post-carousel .owl-theme .owl-controls .owl-page span {
	margin: 5px;
}

.pp-content-post-carousel {
	position: relative;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div,
.pp-content-post-carousel .owl-nav button {
	position: absolute;
	top: 40%;
	line-height: 0;
    margin: 0;
	padding: 0;
	font-size: 20px;
	background-image: none !important;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pp-content-post-carousel .owl-nav button {
	border: none;
}

.pp-content-post-carousel .owl-nav button svg {
	height: 1em;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-prev,
.pp-content-post-carousel .owl-nav button.owl-prev {
    left: -15px;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-next,
.pp-content-post-carousel .owl-nav button.owl-next {
    right: -15px;
}

.pp-content-post-carousel .owl-theme .owl-dots .owl-dot {
	top: 0;
	/* set background none to override BB's Global button style */
	background: none !important;
}

/* Woocommerce Style */

.pp-content-post .star-rating {
	margin-left: auto;
    margin-right: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	float: right;
	overflow: hidden;
	position: relative;
	height: 15px;
	line-height: 1;
	font-size: 15px;
	width: 80px;
	font-family: star;
	display: block;
    float: none;
}

.pp-content-post .star-rating:before {
	content: "\73\73\73\73\73";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.pp-content-post .star-rating span {
	overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 15px;
}

.pp-content-post .star-rating span:before {
	content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
	color: #000;
}

.pp-content-post .pp-product-price ins {
	text-decoration: none;
}

.pp-content-post.pp-grid-style-6 .star-rating {
	margin: 0 auto !important;
}

/* Style - 9 */
.pp-content-post.pp-grid-style-9 {
	position: relative;
	overflow: hidden;
	height: 270px;
}
.pp-content-post.pp-grid-style-9 .pp-content-grid-image {
	height: 100%;
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 100%;
	position: relative;
	overflow: hidden;
	margin: 0;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.pp-content-post.pp-grid-style-9:hover .pp-post-featured-img {
	-webkit-transform: scale(1.1);
  	-moz-transform: scale(1.1);
  	-o-transform: scale(1.1);
  	-ms-transform: scale(1.1); /* IE 9 */
  	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')"; /* IE8 */
   	filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand'); /* IE6 and 7 */
	transform: scale(1.1);
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img a:last-child:before {
    content: "";
    display: block;
    height: 70%;
    width: 100%;
    position: absolute;
	bottom: 0;
    z-index: 1;
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(40%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,.7)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: -o-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: -ms-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img a:last-child:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
	bottom: 0;
    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
}
.pp-content-post.pp-grid-style-9:hover .pp-post-featured-img a:last-child:before {
	background-color: rgba(0,0,0,.1);
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img img {
	display: block;
	height: auto;
	opacity: 1;
	transition: transform 0.3s ease, opacity 0.3s;
    -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s;
	transition-timing-function: ease !important;
}
.pp-content-post.pp-grid-style-9:hover .pp-post-featured-img img {
	transform: scale3d(1.1,1.1,1);
    -webkit-transform: scale3d(1.1,1.1,1);
    -moz-transform: scale3d(1.1,1.1,1) rotate(.02deg);
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-text {
	position: absolute;
	bottom: 0;
    pointer-events: none;
    z-index: 1;
    width: 100%;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category.pp-content-category-list {
	border-top: 0;
	margin: 0;
	padding: 0;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category span {
	display: inline-block;
    background-color: #333333;
    margin-bottom: 10px;
    padding: 2px 8px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-info,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta {
	width: 80%;
    margin: 0 0 0 20px;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta {
	margin-bottom: 20px;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta {
	font-size: 12px;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category a,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta span {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

/* The Events Calendar */
.pp-post-event-calendar-date {
	margin-bottom: 5px;
}
.pp-post-event-calendar-date,
.pp-post-event-calendar-date span {
	font-weight: bold;
}
.pp-post-event-calendar-venue {
	font-style: italic;
}
.pp-post-event-calendar-cost {
	margin-top: 12px;
    margin-bottom: 12px;
}

.pp-posts-not-found-text {
	width: 100% !important;
}


.cg-equal-align-button .pp-content-post,
.cg-equal-align-button .pp-content-post .pp-content-body,
.cg-equal-align-button .pp-content-post-data {
	display: flex;
  	flex-direction: column;
}
.cg-equal-align-button .pp-content-post .pp-content-body,
.cg-equal-align-button .pp-content-post-data,
.cg-equal-align-button .pp-content-post .pp-post-content {
  	height: 100%;
}
.cg-equal-align-button .pp-content-post .pp-post-link {
	margin-top: auto;
}

.cg-center-align .pp-content-posts {
	margin: 0 auto;
}

.cg-static-grid .pp-content-post.pp-content-grid-post {
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin-right: 2%;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

@media only screen and (min-width: 768px) {
	.cg-css-grid .pp-content-post-grid.pp-equal-height {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: min-content;
		grid-column-gap: 2%;
		grid-row-gap: 2ch;
		height: auto !important;
	}
	.cg-css-grid .pp-content-post-grid.pp-equal-height:before,
	.cg-css-grid .pp-content-post-grid.pp-equal-height:after {
		content: none;
		display: none;
	}
	.cg-css-grid .pp-content-post-grid.pp-equal-height .pp-content-post {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		position: static !important;
		overflow: visible;
		width: auto;
		height: auto !important;
		margin-bottom: 0 !important;
		transform: none !important;
	}
	.cg-css-grid .pp-content-post-grid.pp-equal-height .pp-grid-space {
		display: none;
	}
}@media (max-width: 768px) { /* Post Feed */
.pp-post-feed-post.pp-post-feed-image-beside {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.pp-post-feed-image-beside .pp-post-feed-image,
.pp-post-feed-image-beside .pp-post-feed-image img {
	float: none;
	width: 100% !important;
}
.pp-post-feed-image-beside.pp-post-feed-has-image .pp-post-feed-content {
	margin-left: 0;
}

.pp-content-post-carousel .pp-content-post .pp-post-img {
    width: auto;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-prev {
	left: 0;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-next {
	right: 0;
}
.pp-content-post-carousel .owl-theme .owl-controls {
	margin-top: 20px;
}


.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap,
.pp-content-post-grid.pp-content-alternate .pp-content-post.pp-post-2n .pp-content-alternate-wrap {
	flex-direction: column;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image,
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-inner { 
	width: 100%;
}

.cg-equal-align-button .pp-content-post.pp-content-alternate .pp-content-body,
.cg-equal-align-button .pp-content-post.pp-content-alternate .pp-content-post-data,
.cg-equal-align-button .pp-content-post.pp-content-alternate .pp-content-post .pp-post-content {
	height: auto;
} }


.fl-node-pcfny0o7sbaj .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-pcfny0o7sbaj .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: px;
    padding-bottom: px;
}
.fl-node-pcfny0o7sbaj .pp-content-grid-pagination li a.page-numbers,
.fl-node-pcfny0o7sbaj .pp-content-grid-pagination li span.page-numbers {
			margin-right: px;
}

.fl-node-pcfny0o7sbaj .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-pcfny0o7sbaj .pp-content-grid-pagination li span.current,
.fl-node-pcfny0o7sbaj .pp-content-grid-pagination li span[aria-current] {
		}

.fl-node-pcfny0o7sbaj .pp-content-grid-load-more {
	margin-top: px;
			text-align: center;
	}
.fl-node-pcfny0o7sbaj .pp-content-grid-load-more a {
			text-align: center;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.fl-node-pcfny0o7sbaj .pp-content-grid-load-more a:hover {
		}

.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-title {
				margin-top: 5px;
				margin-bottom: 5px;
	}

.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-title,
.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-title a {
	}
.fl-node-pcfny0o7sbaj .pp-content-post:hover .pp-post-title,
.fl-node-pcfny0o7sbaj .pp-content-post:hover .pp-post-title a {
	}


.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-pcfny0o7sbaj .pp-content-post:hover .pp-post-content {
	}

.fl-node-pcfny0o7sbaj .pp-post-event-calendar-date,
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-date span {
		}
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-venue,
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-cost,
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-pcfny0o7sbaj .pp-content-post .pp-more-link-button,
.fl-node-pcfny0o7sbaj .pp-content-post .pp-more-link-button:visited,
.fl-node-pcfny0o7sbaj .pp-content-post .pp-add-to-cart a,
.fl-node-pcfny0o7sbaj .pp-content-post .pp-add-to-cart a:visited,
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-cost form .tribe-button,
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}

.fl-node-pcfny0o7sbaj .pp-content-post-data.pp-content-relative {
	position: relative;
}

.fl-node-pcfny0o7sbaj .pp-content-post-data.pp-content-relative .pp-more-link-button {
	position: absolute;
	bottom: 0;
		left: 0;
	}

.fl-node-pcfny0o7sbaj .pp-grid-style-5 .pp-content-post-data.pp-content-relative .pp-more-link-button {
	left: 0;
	transform: none;
}

.fl-node-pcfny0o7sbaj .pp-grid-style-6 .pp-content-post-data.pp-content-relative .pp-more-link-button {
	left: 50%;
    transform: translateX(-50%);
}


.fl-node-pcfny0o7sbaj .pp-content-post .pp-content-grid-more:hover,
.fl-node-pcfny0o7sbaj .pp-content-post .pp-add-to-cart a:hover,
.fl-node-pcfny0o7sbaj .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-day {
	background-color: #f9f9f9;
	color: #888888;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}
.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-month {
	background-color: #000000;
	color: #ffffff;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-pcfny0o7sbaj .pp-content-post:hover .pp-post-meta {
	}
.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-meta span {
	}
.fl-node-pcfny0o7sbaj .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-pcfny0o7sbaj .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-pcfny0o7sbaj .pp-content-grid-post .pp-content-category-list,
.fl-node-pcfny0o7sbaj .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-theme .owl-dots .owl-dot span {
	opacity: 1;
            width: 10px;
            height: 10px;
            border-radius: 100px;
        box-shadow: none;
}

.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	opacity: 1;
    box-shadow: none;
}


.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button svg path {
	}

.fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-pcfny0o7sbaj .pp-content-post-carousel .owl-nav button:hover svg path {
	}



.fl-node-pcfny0o7sbaj .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-pcfny0o7sbaj .pp-content-post:hover {
	}

.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-pcfny0o7sbaj .pp-content-post {
	}


.fl-node-pcfny0o7sbaj .pp-content-post {
	position: relative;
			margin-left: 10px;
	margin-right: 10px;
		}
.fl-node-pcfny0o7sbaj.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 20px;
}

@media only screen and (min-width: 768px) {
	.fl-node-pcfny0o7sbaj.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 20px;
		grid-row-gap: 20ch;
	}
}


.fl-node-pcfny0o7sbaj .pp-grid-space {
	width: 20px;
}

.fl-node-pcfny0o7sbaj .pp-content-post .pp-content-grid-more-link,
.fl-node-pcfny0o7sbaj .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(4n) {
    margin-right: 0;
}
.fl-node-pcfny0o7sbaj .pp-content-post-grid.pp-filters-active .pp-content-grid-post {
	margin-right: 0;
}
	
.fl-node-pcfny0o7sbaj .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-pcfny0o7sbaj .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-pcfny0o7sbaj .pp-content-post .star-rating:before,
.fl-node-pcfny0o7sbaj .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-pcfny0o7sbaj .pp-content-post .pp-product-price,
.fl-node-pcfny0o7sbaj .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-pcfny0o7sbaj.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-pcfny0o7sbaj.cg-square-layout .pp-content-post-grid.pp-filters-active .pp-content-grid-post .pp-post-image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.fl-node-pcfny0o7sbaj.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-pcfny0o7sbaj .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-pcfny0o7sbaj .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-pcfny0o7sbaj .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-pcfny0o7sbaj .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-pcfny0o7sbaj .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-pcfny0o7sbaj .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-pcfny0o7sbaj .pp-content-post {
									margin-left: 10px;
			margin-right: 10px;
					}

		.fl-node-pcfny0o7sbaj .pp-grid-space {
			width: 20px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-pcfny0o7sbaj .pp-content-post {
						margin-left: 10px;
		margin-right: 10px;
			}

	.fl-node-pcfny0o7sbaj .pp-grid-space {
		width: 20px;
	}

	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(4n+1) {
	    clear: none;
	}

	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(2n+1) {
	    clear: left;
	}

	/*
	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(4n) {
	    margin-right: 20px;
	}
	*/

	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(2n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	
	
	.fl-node-pcfny0o7sbaj .pp-content-post {
						margin-left: 10px;
		margin-right: 10px;
			}

	.fl-node-pcfny0o7sbaj .pp-grid-space {
		width: 20px;
	}

	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(2n+1) {
	    clear: none;
	}

	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(2n) {
	    margin-right: 20px;
	}
	*/

	.fl-node-pcfny0o7sbaj .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-pcfny0o7sbaj .pp-content-grid-pagination li a.page-numbers, .fl-node-pcfny0o7sbaj .pp-content-grid-pagination li span.page-numbers, .fl-node-pcfny0o7sbaj .pp-content-grid-load-more a {
	font-size: 14px;
}
.fl-node-pcfny0o7sbaj .pp-content-post .pp-more-link-button, .fl-node-pcfny0o7sbaj .pp-content-post .pp-add-to-cart a, .fl-node-pcfny0o7sbaj .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-pcfny0o7sbaj .pp-content-post .pp-content-body {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-pcfny0o7sbaj .pp-content-post.pp-grid-style-9 {
	height: 275px;
}
.fl-builder-content-41636 .fl-node-56dt4igfc9kw {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
/**
 * 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: 15px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-5d005e877f8c7 .pp-spacer-module {
        height: 15px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-5d005e877f8c7 .pp-spacer-module {
        height: 15px;
    }
}

/* Start Global CSS */
/**********************************/
/******** Header *****************/
/********************************/
/** #site-header, #fl-post-28815 {background: #999;} **/


/*** General ***/
 
 
html.pp-offcanvas-content-widget {
    margin-top: 0;
} 

header,
header ul li {
    font-weight: 500;
    font-size: 1rem;
    /*text-transform: uppercase;*/
}
@media only screen and (min-width: 1200px) {
    header,
    header ul li {
        font-size: 1.125rem;
    }
}

/*header ul.sub-menu li {
    text-transform: none;
}*/



/*** Mega Menu ***/


.mega-menu .sub-menu{width: auto !important;}

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

.mega-menu > .sub-menu {
    max-width: 1260px;
    padding: 20px !important;
    margin: 0 auto;
}

.mega-menu .menu-heading {
    padding-left: 20px !important;
}
.mega-menu .menu-heading.extra-padding div,
.mega-menu .menu-heading.extra-padding ul {
    padding-left: 20px !important;
}
header .fl-row li.mega-menu > ul.sub-menu li a,
header .pp-advanced-menu .sub-menu > li > a{
    font-size: 16px;
    font-weight: 500;
    text-transform: unset;
}
header .fl-row li.mega-menu > ul.sub-menu li a i{
    font-size: 20px;
}
header ul.pp-advanced-menu-horizontal li.mega-menu > ul.sub-menu > li > .pp-has-submenu-container a{
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}
header .fl-row li.mega-menu > ul.sub-menu{
    padding:10px 0;
}

header .pp-advanced-menu li.mega-menu .hide-heading > .pp-has-submenu-container{
    display: block;
    visibility: hidden;
}

header .menu-heading .pp-has-submenu-container > a > span {
    font-family: var(--wm-font-heading);
    font-size: 1.2em;
    font-weight: 400;
    border-bottom: 2px solid var(--wm-text-dark) !important;
    padding: 0 2px !important;
    margin-right: 10px !important;
    display: inline-block;
    /*text-transform: uppercase;*/
}
header .menu-heading .pp-has-submenu-container > a:hover > span {
    border-bottom: 2px solid var(--wm-hover) !important;
}

header li.no-link > .pp-has-submenu-container > a:hover {
    color: var(--wm-text-dark) !important;
}
header li.no-link > .pp-has-submenu-container > a:hover > span {
    border-color: var(--wm-text-dark) !important;
}


#off-canvas-menu .mega-menu .sub-menu{
    padding:0;
    width: 100%!important;
}
#off-canvas-menu .wm-button-text-link a.fl-button i{
    font-size: 20px;
}
#off-canvas-menu img.wm-menu-image{
    display: none!important;
}
/*****************************************************/


/*** Logo ***/

header .header-logo img {
    width: 100% !important;
    max-width: 240px;
}
@media (max-width: 769px){
    header .header-logo img{
        max-width: 180px;
    }
}

header #scroll-header .header-logo img {
    height: 100%;
    max-height: 50px;
}


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


/*** Navigation Items ***/


/** Flex and Spacing **/

/********/#top-header .fl-col-content,
#navigation-items #header-button-col .fl-col-content,
#navigation-items #header-nav-col .fl-col-content,
#scroll-header #scroll-header-nav-col .fl-col-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#top-header .fl-module,
#navigation-items #header-button-col .fl-module,
#navigation-items #header-nav-col .fl-module,
#scroll-header #scroll-header-nav-col .fl-module {
    width: auto;
}
#top-header .fl-module-content,
#navigation-items #header-button-col .fl-module .fl-module-content,
#navigation-items #header-nav-col .fl-module .fl-module-content,
#scroll-header #scroll-header-nav-col .fl-module-content {
    margin-left: 0;
}

#top-header .fl-module-pp-advanced-menu,
#navigation-items .fl-module-pp-advanced-menu,
#scroll-header .fl-module-pp-advanced-menu {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
}

/*#navigation-items .fl-module-button .fl-module-content,
#scroll-header #scroll-header-nav-col .fl-module-button .fl-module-content {
    margin-left: 20px;
}*/

/** Buttons **/

/*header a.fl-button {
    color: var(--wm-text-light) !important;
}*/


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


/*** Off Canvas ***/

/*header .fl-module-pp-offcanvas-content .fl-module-content {
    margin-left: 10px !important;
}*/

.pp-offcanvas-content {
    width: 100% !important;
    max-width: 400px !important;
    background: var(--wm-bg-light-alt);
}

.pp-offcanvas-content form.pp-search-form .pp-search-form__container {
    border: none !important;
}
/*.pp-offcanvas-content form.pp-search-form .pp-search-form__container input {
    border-radius: 5px 0 0 5px !important;
}
.pp-offcanvas-content form.pp-search-form .pp-search-form__container button {
    border-radius: 0 5px 5px 0 !important;
}*/

#off-canvas-menu {
    padding: 40px 0 0 0;
    /*text-transform: uppercase;*/
    font-weight: 500;
}

#off-canvas-menu li a {
    color: var(--wm-primary);
}
#off-canvas-menu li a:hover {
    color: var(--wm-hover);
}

#off-canvas-menu .pp-has-submenu ul.sub-menu {
    border: 1px solid var(--wm-hover);
    background-color: var(--wm-bg-light);
    /*border-radius: 5px;*/
}
/*#off-canvas-menu .pp-has-submenu.pp-active > div a {
    background: rgba(142, 142, 142, 0.3);
}*/

#off-canvas-menu ul.menu,
#off-canvas-menu ul.menu ul {
    width: 100%;
}

#off-canvas-menu ul.menu ul li a {
    text-transform: none;
}


#off-canvas-menu .mobile-home-link {
    padding-top: 30px;
}

#off-canvas-menu #prim-nav-off-canvas li a i {
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
    width: 26px;
    text-align: center;
    color: var(--wm-primary);
    font-size: 1.4em;
    margin-top: -3px;
}
#off-canvas-menu #prim-nav-off-canvas li:hover a i {
    color: var(--wm-hover);
}


#off-canvas-menu .pp-advanced-menu .pp-toggle-arrows .pp-menu-toggle::before,
#off-canvas-menu .pp-advanced-menu .pp-toggle-none .pp-menu-toggle::before{
    border-color: var(--wm-primary);
    border-width: 1px;
    width: 14px;
    height: 14px;
    transform: translateX( -3px ) translateY( -2px ) rotate( 45deg );
}
#off-canvas-menu .pp-advanced-menu .pp-toggle-arrows li:hover .pp-menu-toggle::before,
#off-canvas-menu .pp-advanced-menu .pp-toggle-none li:hover .pp-menu-toggle::before {
    border-color: var(--wm-hover);
}


.pp-offcanvas-content .pp-offcanvas-header .pp-offcanvas-close .pp-offcanvas-close-icon::before, 
.pp-offcanvas-content .pp-offcanvas-header .pp-offcanvas-close .pp-offcanvas-close-icon::after {
    background-color: var(--wm-primary) !important;
}
.pp-offcanvas-content .pp-offcanvas-header .pp-offcanvas-close:hover .pp-offcanvas-close-icon::before, 
.pp-offcanvas-content .pp-offcanvas-header .pp-offcanvas-close:hover .pp-offcanvas-close-icon::after {
    background-color: var(--wm-hover) !important;
}


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

/*** Main Header ***/

/** Drop Down Arrows **/
/* comment out if you don't want to set a specific colour */
header .pp-advanced-menu .pp-toggle-arrows .pp-menu-toggle::before,
header .pp-advanced-menu .pp-toggle-none .pp-menu-toggle::before{
    border-color: var(--wm-primary);
    border-width: 1px;
    width: 12px;
    height: 12px;
    transform: translateX( 4px ) translateY( -9px ) rotate( -45deg )
}
header .pp-advanced-menu .pp-toggle-arrows li:hover .pp-menu-toggle::before,
header .pp-advanced-menu .pp-toggle-none li:hover .pp-menu-toggle::before {
    border-color: var(--wm-hover);
}
/*header .pp-advanced-menu .pp-advanced-menu-horizontal.pp-toggle-arrows .pp-has-submenu-container > a > span {
    padding-right: 26px;
}*/


@media only screen and (min-width: 992px) {
    header #site-header #navigation-items #prim-nav .fl-module-content {
        margin-right: 5px;
    }
    
    header #site-header #navigation-items a:hover,
    header #site-header #navigation-items .current-menu-item a {
        color: var(--wm-hover);
    }

    header #site-header #navigation-items .current-menu-item ul.sub-menu a,
    header #site-header #navigation-items .current-menu-item ul.sub-menu a span {
        color: var(--wm-text-dark);
    }
    header #site-header #navigation-items ul.sub-menu a:hover,
    header #site-header #navigation-items .current-menu-item ul.sub-menu a:hover,
    header #site-header #navigation-items .current-menu-item ul.sub-menu a:hover span,
    header #site-header #navigation-items ul.sub-menu .current-menu-item a,
    header #site-header #navigation-items ul.sub-menu .current-menu-item a span {
        color: var(--wm-hover);
    }
}

header #site-header.fl-row .sub-menu{
        color: var(--wm-secondary);
    background-color: var(--wm-bg-light-alt);
    padding: 10px 0;
}

header #site-header.fl-row .mega-menu > .sub-menu{
    
}

#site-header #navigation-items #prim-nav ul.sub-menu,
#scroll-header #scroll-header-nav-col ul.sub-menu{
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    background: var(--wm-bg-light-alt);
    /*border-radius: 5px;*/
} 
#site-header #navigation-items #prim-nav ul.sub-menu ul.sub-menu,
#scroll-header #scroll-header-nav-col ul.sub-menu ul.sub-menu{
    box-shadow: none;
} 



/** Utility Icons **/

@media only screen and (min-width: 768px) {
    header #navigation-items li i {
        padding-right: 8px;
    }
}


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


/*** Top Header ***/

#top-header .fl-module-content {
    margin: 0 20px;
}

header #top-header-nav li a {
    padding-top: 5px;
    padding-bottom: 5px;
}

/*header #top-header-nav li.search-btn {
    margin-left: 20px;
}*/


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


/** Utility **/

header li.search-btn .menu-link-text {
    display: none;
}

header li i,
header li i {
    padding-right: 8px;
}

header li.search-btn i {
    padding-right: 0px;
}


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


/*** Scroll Header ***/

#scroll-header {
  /********/display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0px 5px 5px rgba(0,0,0,0.2);
}

#scroll-header li.search-btn {
    display: none;
}

#scroll-header .header-logo .fl-module-content {
    margin-left: 20px;
}
@media(max-width:769px){
    #scroll-header .header-logo .fl-module-content {
        margin-left: 10px;
    }
}
.pp-offcanvas-toggle-wrap .pp-offcanvas-toggle a{
    outline: none!important;
}
#site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner,
#site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::before,
#site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::after,
#scroll-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner,
#scroll-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::before,
#scroll-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::after {
    background-color: var(--wm-primary) !important;
}
#site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle:hover .pp-hamburger-inner,
#site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle:hover .pp-hamburger-inner::before,
#site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle:hover .pp-hamburger-inner::after,
#scroll-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle:hover .pp-hamburger-inner,
#scroll-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle:hover .pp-hamburger-inner::before,
#scroll-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle:hover .pp-hamburger-inner::after {
    background-color: var(--wm-hover) !important;
}

.admin-bar #scroll-header {margin-top: 32px;}


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



/*** Responsive ***/


@media only screen and (max-width: 992px) {
    #top-header {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    /*#scroll-header {
        display: none !important;
    }*/
    
    header #site-header #navigation-items ul {
        text-align: right;
    }
    header #site-header #navigation-items ul li {
        display: inline-block;
    }

    /* assess styling needs */
    /*#site-header #navigation-items #header-button-col #utility-nav ul {
        text-align: right;
    }
    #site-header #navigation-items #header-button-col #utility-nav li {
        display: inline-block;
    }
    #site-header #navigation-items #header-button-col #utility-nav li a {
        padding: 10px 15px;
        line-height: 1;
    }
    
    #site-header #navigation-items #header-button-col #utility-nav li i {
        font-size: 24px;
    }
    
    #site-header #navigation-items #header-button-col #utility-nav li .menu-link-text {
        display: none;
    }
    #site-header #navigation-items #header-button-col #utility-nav li:hover .menu-link-text {
        display: block;
        position: absolute;
        top: 38px;
        font-size: 12px;
        left: 0;
        right: 0;
        text-align: center;
        line-height: 1;
        color: var(--wm-hover);
    }*/

    
    /* shrink hamburger menu */
    /*#site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-box {
        width: 30px;
    }
    #site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner, 
    #site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::before, 
    #site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::after {
        width: 30px;
        height: 0.125em !important;
    }
    #site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::before {
        top: -0.5em;
    }
    #site-header .pp-offcanvas-toggle-wrap .pp-offcanvas-toggle .pp-hamburger-inner::after {
        bottom: -0.5em;
    }*/
    /*.wm-header-items-box{
        display: contents!important;
    }*/
}

/* Default header colors + logo */
header .header-logo-light{
    display: none;
}
header .fl-row{
    color:var(--wm-secondary);
}
header .fl-row *,
header .fl-row *,
header .fl-row .wm-menu-icon *{
    color: inherit;
}
header .fl-row .menu-item a{
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 18px;
    font-family: var(--wm-font-body);
}

@media(max-width:769px){
    header .wm-no-text-mobile .fl-button{
        background-color: transparent!important;
        color:var(--wm-secondary)!important;
        width: auto!important;
    }
    header .wm-no-text-mobile .fl-button:hover{
        color:var(--wm-hover);
    }
    header .wm-no-text-mobile .fl-button i{
        margin:0!important;
    }
    header .wm-no-text-mobile .fl-button-text{
        display: none;
    }
}
header .fl-row .pp-menu-toggle:before{
    transform:translateX( 0px ) translateY( -8px ) rotate( -45deg );
    color: inherit;
    width: 12px;
    height: 12px;
}
header .fl-row .wm-menu-icon a,
header .fl-row .wm-menu-icon a.fl-button,
header .fl-row .wm-menu-icon i,
header .fl-row .wm-menu-icon i:before,
header .fl-row .wm-menu-icon .shopping-cart.BE,
header .fl-row .wm-menu-icon .fl-icon-wrap{
    display: flex;
    color: inherit;
    font-size: 20px;
    background: unset;
    font-weight: 300;
    margin:0;
    border: none!important;
}
header .fl-row .wm-menu-icon a:hover,
header .fl-row .menu-item a:hover{
    color: var(--wm-hover);
}

header .fl-row .wm-menu-icon a,
header .fl-row .wm-menu-icon .shopping-cart.BE{
    padding: 10px;
    justify-content: center;
}

/* ATDW wishlist counter */
header .fl-row .wm-menu-wish-list{
    position: relative;
}
header .fl-row .wm-menu-wish-list .trip-planner-counter,
header .fl-row .wm-bookeasy-menu-cart .cartItems a span{
	background-color: var(--wm-hover);
	font-family:var(--wm-font-body)!important;
    width: 18px!important;
    height: 18px!important;
    font-size: 10px;
    border-radius: 100%;
    display: flex!important;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px!important;
    right: 0px!important;
    left: unset!important;
    bottom:unset!important;
    color: var(--wm-text-light) !important;
}

/* BookEasy cart */
header .fl-row .wm-bookeasy-menu-cart{
    /*height: 36px!important;
    width: 42px!important;*/
}
header .fl-row .wm-menu-icon .noItems{
    display: none;
}
header .fl-row .wm-bookeasy-menu-cart *{
	padding:0!important;
	height: unset!important;
	width: unset!important;
	outline: none!important;
}
header .fl-row .wm-bookeasy-menu-cart .cartItems,
header .fl-row .wm-bookeasy-menu-cart .totalDisplay{
	border:none!important;
	background:unset!important;
	margin:0!important;
}
header .fl-row .wm-bookeasy-menu-cart .cartItems a{
	background:none!important;	
	color:inherit!important;
	font-size:20px!important;
	text-decoration:none;
	padding: 0 10px!important;
}
header .fl-row .wm-bookeasy-menu-cart .cartItems a:hover{
    color: var(--wm-hover)!important;
}




/**********************************/
/************ GENERIC *************/
/**********************************/

/*--------------------------------*/
/*            BB FIXES            */
/*--------------------------------*/

/* Fix WP Link Target Not Showing */
#wp-link-target,
.fl-link-field-target-cb,
.fl-builder-settings input[type='checkbox'] {
    -webkit-appearance: checkbox;
}

/* BB Edit Buttons */
.fl-builder-edit .fl-builder-settings-lightbox button {
    font-size: 12px !important;
    line-height: 14px !important;
    padding: 3px 8px 4px !important;
}
.fl-builder-edit .mce-toolbar .mce-btn button, .qt-dfw {
    padding: 2px 3px !important;
}


/*** BOX MODULE ***/
.no-box-padding.fl-module.fl-module-box {
    padding: 20px 0;
}
.fl-module.fl-module-box {
    /*margin: 0;
    padding: 20px;*/
}

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

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





/*--------------------------------*/
/*      IMAGE UTILITY STYLES       */
/*--------------------------------*/

/*** IMG BORDER ***/

/*img,
.fl-module-pp-image-comparison .pp-image-comp-inner {
    border-radius: 5px;
}*/

.fl-photo-field .fl-photo-preview-img img,
.thumbnail,
.thumbnail img,
.no-radius img {
    border-radius: 0px;
}

.no-border-radius img,
.no-border-radius .fl-module-pp-image-comparison .pp-image-comp-inner {
    border-radius: 0;
}





/*--------------------------------*/
/*      TEXT UTILITY STYLES       */
/*--------------------------------*/

/*** BODY TEXT ***/

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

/* force margin for text module after heading module */

.fl-module-rich-text.wm-text-top-margin .fl-module-content {
    margin-top: 20px !important;
}


/** Large Body Copy **/

.wm-large-text {
    font-size: 1.33rem;
}


/** Taglines // All Caps **/

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


/** Link Chevron **/

.wm-chevron i {
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
}


/** Text in 2 Columns for Larger Devices **/
/* add class wm-text-two-col */

@media only screen and (min-width: 992px) {
    .wm-text-two-col .fl-rich-text {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
}



/*--------------------------------*/

/*** HEADINGS ***/

.fl-module-heading + .fl-module-heading .fl-module-content {
    margin-top: -5px;
}

.fl-module-rich-text h2,
.fl-module-rich-text h3,
.fl-module-rich-text h4,
.fl-module-rich-text h5,
.fl-module-rich-text h6 {
    margin-bottom: 20px;
}

.fl-module-rich-text p + h2,
.fl-module-rich-text p + h3,
.fl-module-rich-text p + h4,
.fl-module-rich-text p + h5,
.fl-module-rich-text p + h6 {
    margin-top: 50px;
}



/*--------------------------------*/

/*** LISTS ***/

.fl-rich-text ul,
.pp-accordion-content > div > ul,
.pp-infolist-description ul {
    padding-left: 1rem;
    /*padding-left: 1.375rem;*/
}

.fl-rich-text ol,
.pp-accordion-content > div > ol,
.pp-infolist-description ol {
    padding-left: 1.375rem;
}


/** List in 2 Columns for Tablets & Up **/
/* add class wm-list-two-col */

@media only screen and (min-width: 768px) {
    .wm-list-two-col ul,
    .wm-list-two-col ol {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
}



/*--------------------------------*/

/*** CAPTIONS ***/

/* basic text styles for banners, images, galleries,... // for specific overwrites, if needed, see relevant module styles */

#page-banner-new #banner-caption .fl-module-content .banner-caption-text,
#page-banner-custom-module .wm-banner-caption-wrap .wm-banner-caption,
.dual-overlay-row .pure-bg-img-col .wm-col-caption .fl-html,
.fl-module-photo .fl-photo-caption-hover, 
.pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay .pp-overlay-inner,
.wm-gallery-slider .pp-image-overlay,
.wm-styled-posts .post-image-caption {
    background: none;
}

#page-banner-new #banner-caption .fl-module-content .banner-caption-text,
#page-banner-custom-module .wm-banner-caption-wrap .wm-banner-caption,
.dual-overlay-row .pure-bg-img-col .wm-col-caption .fl-html,
.fl-module-photo .fl-photo-caption,
.pp-photo-gallery .pp-caption,
.pp-photo-gallery .pp-photo-gallery-caption,
.wm-gallery-slider .pp-image-overlay .pp-caption,
.wm-styled-posts .post-image-caption,
.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-bg-img .testimonial-caption,
.wm-listing-image-slider .pp-image-overlay .pp-caption,
.wm-itinerary-img-caption,
.wm-facet-listings .atdw-product-info .atdw-product-location{
    color: var(--wm-text-light) !important;
    font-size: 13px;
    display: inline-block;
    padding: 2px 0px;
    line-height: 1.2;
    white-space: normal;
    text-align: right;
    text-shadow: rgba(0,0,0,0.5) 1px 1px 1px;
}

.fl-module-content .banner-caption-text i:before{
    margin-right: 5px;
}

@media (max-width:769px){
    #page-banner-new #banner-caption .fl-module-content .banner-caption-text,
    #page-banner-custom-module .wm-banner-caption-wrap .wm-banner-caption,
    .dual-overlay-row .pure-bg-img-col .wm-col-caption .fl-html,
    .fl-module-photo .fl-photo-caption,
    .pp-photo-gallery .pp-caption,
    .pp-photo-gallery .pp-photo-gallery-caption,
    .wm-gallery-slider .pp-image-overlay .pp-caption,
    .wm-styled-posts .post-image-caption,
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-bg-img .testimonial-caption,
    .wm-listing-image-slider .pp-image-overlay .pp-caption,
    .wm-itinerary-img-caption{
        font-size: 14px;
    }
}

/* NO RESULTS MESSAGE */
.pp-content-grid-empty{
    border: none;
    text-align: start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px;
    font-size: 18px;
}


/**********************************/
/****** LAYOUT ELEMENTS A-Z *******/
/**********************************/

/*--------------------------------*/
/*    ANNOUNCEMENT BAR STYLES     */
/*--------------------------------*/

@media only screen and (min-width: 580px) {
    #wm-header-announcement .fl-col-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #wm-header-announcement .fl-col-content .fl-module + .fl-module .fl-module-content {
        margin-left: 0px;
    }
}

#wm-header-announcement .fl-col-content .fl-module-icon {
    line-height: 1;
}

/*#wm-header-announcement .fl-col-content .fl-module-rich-text {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
}*/
#wm-header-announcement .fl-col-content .fl-module-button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#wm-header-announcement .fl-col-content .fl-rich-text p:last-child {
    margin-bottom: 0;
}

#wm-header-announcement .fl-col-content .fl-rich-text p {
    line-height: 1.25em;
    font-weight: 400;
    text-transform: uppercase;
}


/** Responsive **/

@media only screen and (max-width: 660px) {
    /*#wm-header-announcement .fl-col-content .fl-module-icon {
        display: none;
    }*/
    #wm-header-announcement .fl-col-content .fl-module-button a {
        width: auto;
        padding: 6px 20px !important;
    }
}
@media only screen and (max-width: 580px) {
    #wm-header-announcement .fl-col-content .fl-module-icon .fl-module-content,
    #wm-header-announcement .fl-col-content .fl-rich-text p,
    #wm-header-announcement .fl-col-content .fl-button-wrap {
        text-align: center;
    }
    #wm-header-announcement .fl-col-content .fl-module-icon .fl-module-content {
        margin-bottom: 0;
    }
    #wm-header-announcement .fl-col-content .fl-module-button .fl-module-content {
        margin-top: 0;
    }
    #wm-header-announcement .fl-col-content .fl-module-button a {
        min-width: auto;
    }
}





/*--------------------------------*/
/*         BANNER STYLES          */
/*--------------------------------*/

/*** ACF BANNER IMAGE POSITIONING ***/

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



/*--------------------------------*/

/*** BANNER ROW HEIGHTS ***/

#page-banner-new #banner-image .fl-col-content,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-image,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-slides,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-content-slides {
    height: 750px;
    max-height: 70vh;
}
@media only screen and (max-width: 1920px) {
    #page-banner-new #banner-image .fl-col-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-image,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-slides,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-content-slides {
        height: 650px;
    }
}
@media only screen and (max-width: 992px) {
    #page-banner-new #banner-image .fl-col-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-image,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-slides,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-content-slides {
        height: 550px;
    }
}
@media only screen and (max-width: 768px) {
    #page-banner-new #banner-image .fl-col-content {
        height: 0px;
        padding-top: 67%;
        max-height: unset;
    }
    
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-image,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-slides .wm-banner-slide,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-content-slides .wm-banner-slide{
        height: calc(100vh - 100px);
        max-height: unset;
    }
    
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-slide {
        height: auto;
    }
}


/** Flat Banner Row Heights **/

#page-banner-new.flat-banner #banner-image .fl-col-content {
    height: 450px;
}
@media only screen and (max-width: 992px) {
    #page-banner-new.flat-banner #banner-image .fl-col-content {
        height: 350px;
    }
}
@media only screen and (max-width: 768px) {
    #page-banner-new.flat-banner #banner-image .fl-col-content {
        height: 0px;
        padding-top: 67%;
    }
}



/*--------------------------------*/

/*** VIDEO BANNER ***/

.fl-row-bg-video .fl-bg-video video {
    max-height: 100%;
}



/*--------------------------------*/

/*** BANNER OVERLAY ***/

#page-banner-custom-module .wm-banner-slide .wm-banner-image::after {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}
#page-banner-custom-module .wm-banner-slide .wm-banner-image .wm-banner-caption-wrap {
    z-index: 10;
    display: none;
}


#page-banner-new #banner-image > .fl-col-content::after,
#page-banner-custom-module .wm-banner-slide .wm-banner-image::after {
    background-image: linear-gradient(180deg, rgba(8,79,115,0.6) 0%, rgba(8,79,115,0) 20%, rgba(8,79,115,0) 80%, rgba(8,79,115,0.6) 100%)
}


/* uncomment to disable the overlay 
#page-banner-new #banner-image > .fl-col-content::after,
#page-banner-custom-module .wm-banner-slide .wm-banner-image::after {
    background-image: none;
}*/


/* remove overlay on mobile as the navigation should no longer be overlaid on banner */

/*@media only screen and (max-width: 768px) {
    #page-banner-new #banner-image > .fl-col-content::after,
    #page-banner-custom-module .wm-banner-slide .wm-banner-image::after {
        background-image: none;
    }
}*/



/*--------------------------------*/

/*** BANNER CAPTIONS ***/

#page-banner-new #banner-caption,
#page-banner-custom-module .wm-banner-caption-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

#page-banner-new #banner-caption .fl-module-content,
#page-banner-custom-module .wm-banner-caption-wrap {
    margin-bottom: 10px;
    text-align: right;
}

#page-banner-custom-module .wm-banner-caption-wrap .wm-banner-caption {
    margin: 0 20px;
}

#page-banner-new #banner-caption .fl-module-content .banner-caption-text-wrap,
#page-banner-custom-module .wm-banner-caption-wrap {
    line-height: 1;
}

#page-banner-custom-module .wm-banner-caption-wrap .wm-banner-caption {
    position: relative;
    right: unset;
}



/*--------------------------------*/

/*** BANNER CONTENT BLOCK - BOX & POSITIONING ***/

/** Base Styles **/

#page-banner-new .fl-row-content {
    position: relative;
}

#page-banner-new #banner-content-col,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: auto;
    float: none;
}
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
}

@media only screen and (min-width: 768px) {
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide {
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}



/** Plain Text Overlay - No Box **/
/* comment out if using a box overlay */

/* default position as per the design: bottom centre */
/**/#page-banner-new #banner-content-col,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content {
    color: var(--wm-text-light);
    position: absolute;
    top: unset;
    bottom: 0px;
    left: 0;
    right: 0;
    text-align: center;
}
#page-banner-new #banner-button-double .banner-button-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#page-banner-new #banner-content-col .fl-col-content,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content-inner,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content-inner {
    width: 100%;
    max-width: 1300px;
    padding: 0;
    margin: 0 auto;
}


/** Custom Positions for WM Banner Module **/

@media only screen and (min-width: 768px){

    /* vertical: top */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slide.wm_banner_content_top .wm-banner-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide.wm_banner_content_top .wm-banner-content {
        top: 20px;
        transform: none;
    }
    
    /* vertical: center */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slide.wm_banner_content_center .wm-banner-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide.wm_banner_content_center .wm-banner-content {
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* vertical: bottom */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slide.wm_banner_content_bottom .wm-banner-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide.wm_banner_content_bottom .wm-banner-content {
        top: unset;
        bottom: 20px;
        transform: none;
    }
    
    
    /* horizontal: left */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slide.wm_banner_content_left .wm-banner-content-inner, 
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide.wm_banner_content_left .wm-banner-content-inner {
        margin: 0 auto 0 0px;
        /* with overlay box use:
        margin: 0 auto 0 20px; */
    }
    #page-banner-custom-module .wm_banner_content_left .wm-banner-content-inner .wm-banner-title,
    #page-banner-custom-module .wm_banner_content_left .wm-banner-content-inner .wm-banner-tagline {
        text-align: left;
    }
    #page-banner-custom-module .fl-module-wm-banner .wm_banner_content_left .wm-banner-buttons-wrap,
    #page-banner-custom-module .fl-module-wm-banner .wm_banner_content_left .wm-banner-pagination {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    
    /* horizontal: middle */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slide.wm_banner_content_middle .wm-banner-content-inner, 
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide.wm_banner_content_middle .wm-banner-content-inner {
        margin: 0 auto;
    }
    #page-banner-custom-module .wm_banner_content_middle .wm-banner-content-inner .wm-banner-title,
    #page-banner-custom-module .wm_banner_content_middle .wm-banner-content-inner .wm-banner-tagline {
        text-align: center;
    }
    
    #page-banner-custom-module .fl-module-wm-banner .wm_banner_content_middle .wm-banner-buttons-wrap,
    #page-banner-custom-module .fl-module-wm-banner .wm_banner_content_middle .wm-banner-pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    /* horizontal: right */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slide.wm_banner_content_right .wm-banner-content-inner, 
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide.wm_banner_content_right .wm-banner-content-inner {
        margin: 0 0px 0 auto;
        /* with overlay box use:
        margin: 0 20px 0 auto; */
    }
    #page-banner-custom-module .wm_banner_content_right .wm-banner-content-inner .wm-banner-title,
    #page-banner-custom-module .wm_banner_content_right .wm-banner-content-inner .wm-banner-tagline {
        text-align: right;
    }
    #page-banner-custom-module .fl-module-wm-banner .wm_banner_content_right .wm-banner-buttons-wrap,
    #page-banner-custom-module .fl-module-wm-banner .wm_banner_content_right .wm-banner-pagination {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}





/** Responsive Adjustments **/

@media only screen and (max-width: 768px) {
    /* move banner content below image */
    #page-banner-new #banner-content-col,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content {
        /*position: relative;
        top: unset;
        transform: none;
        padding: 0;*/
        bottom: 0;
    }

    /* add background colour & center content */
    #page-banner-new #banner-content-col,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content {
        /*background-color: var(--wm-bg-light-alt);*/
    }
    #page-banner-new #banner-content-col .fl-col-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content-inner,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content-inner {
        margin: 0;
        padding: 1.25rem 0px 1.875rem 0px;
        max-width: 100%;
        text-align: center;
    }
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-inner .wm-banner-button {
        text-align: center;
    }
    #page-banner-new #banner-button-double .banner-button-wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}



/*--------------------------------*/

/*** BANNER CONTENT BLOCK - TEXT STYLES ***/

/** Spacing & Alignment **/

#page-banner-custom-module .wm-banner-content-inner .wm-banner-title,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-button {
    margin: 20px;
}
#page-banner-custom-module .wm-banner-content-inner .wm-banner-title,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-pagination {
    max-width: calc(100% - 40px);
}
#page-banner-custom-module .wm-banner-content-inner .wm-banner-buttons-wrap {
    max-width: calc(100% - 20px);
}

#page-banner-new #banner-content .banner-heading-wrap + .banner-text-wrap {
    margin-top: 20px;
}
#page-banner-custom-module .wm-banner-content-inner .wm-banner-title + .wm-banner-tagline {
    margin-top: 0;
}

#page-banner-new .banner-button-wrap,
#page-banner-custom-module .wm-banner-buttons-wrap {
    margin: 0 10px;
}
#page-banner-new .banner-button-wrap .fl-module-button,
#page-banner-custom-module .wm-banner-buttons-wrap .wm-banner-button {
    margin: 10px !important;
}
/*#page-banner-new #banner-button-double .fl-module-button {
    margin: 10px;
}*/

#page-banner-custom-module .wm-banner-content-inner .wm-banner-title + .wm-banner-button,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline + .wm-banner-button {
    margin-top: 10px;
}

#page-banner-custom-module .wm-banner-content-inner .wm-banner-button a {
    margin: 0px;
}

#page-banner-custom-module .wm-banner-content-inner .wm-banner-button a i {
    margin-bottom: 4px;
    display: inline-block;
}


/** Heading **/

#page-banner-new #banner-content .fl-module-content .banner-heading,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-title {
    font-family: var(--wm-font-heading);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    /*text-shadow: 1px 1px 4px rgba(0,0,0,0.3);*/
}


/** Chevron - default banner only - remove if not supported on site **/

#page-banner-new #banner-content .fl-module-content .banner-chevron a {
    text-decoration: none;
}
#page-banner-new #banner-content .fl-module-content .banner-chevron i {
    font-size: 30px;
}


/** Tagline / Text **/

#page-banner-new #banner-content .banner-text,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.6;
    /**text-shadow: 1px 1px 4px rgba(0,0,0,0.3);*/
    text-align: start;
}



/** Text Colour Variations **/

@media only screen and (min-width: 768px) {
    #page-banner-new #banner-content .fl-module-content .banner-heading.light,
    #page-banner-new #banner-content .fl-module-content .banner-text.light,
    #page-banner-custom-module .wm_banner_content_light .wm-banner-content-inner .wm-banner-title,
    #page-banner-custom-module .wm_banner_content_light .wm-banner-content-inner .wm-banner-tagline {
        color: var(--wm-text-light);
        /*text-shadow: 1px 1px 1px rgba(0,0,0,.3);*/
    }
    #page-banner-new #banner-content .fl-module-content .banner-heading.dark,
    #page-banner-new #banner-content .fl-module-content .banner-text.dark,
    #page-banner-custom-module .wm_banner_content_dark .wm-banner-content-inner .wm-banner-title,
    #page-banner-custom-module .wm_banner_content_dark .wm-banner-content-inner .wm-banner-tagline {
        /*color: var(--wm-text-dark);*/
    }
}



/** Buttons **/

#page-banner-custom-module .wm-banner-content-inner .wm-banner-button a {
    min-width: 200px;
    text-align: center;
    min-height: 42px;
    height: 44px;
}
#page-banner-custom-module .wm-banner-content-inner .wm-banner-button {
    text-align: center;
}

#page-banner-custom-module .wm-banner-content-inner .wm-banner-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Overwrite button colours */
#page-banner-new #banner-button-single a.fl-button,
#page-banner-new #banner-button-double a.fl-button,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-button a {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
    color: var(--wm-text-light);
}
#page-banner-new #banner-button-single a.fl-button:hover,
#page-banner-new #banner-button-double a.fl-button:hover,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-button a:hover {
    background: #fff;
    border-color: #fff;
    color: var(--wm-text-dark);
}



/** Pagination Dots **/

#page-banner-custom-module .fl-module-wm-banner .wm-banner-pagination {
    margin: 20px auto;
    padding: 0 20px;
    margin: 20px;
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* uncomment to overwrite default dot colours */
#page-banner-custom-module .wm-banner-pagination span {
    background-color: rgba(255,255,255,0.5);
}
#page-banner-custom-module .wm-banner-pagination span.wm-pagination-active {
    background-color: #fff;
}
#page-banner-custom-module .wm-banner-pagination span.wm-pagination-active:hover,
#page-banner-custom-module .wm-banner-pagination span:hover {
    background-color: var(--wm-hover);
}


/** Nav Arrows **/

#page-banner-custom-module .fl-module-wm-banner .wm-banner-nav {
    top: calc(50% - 20px);
}
@media only screen and (max-width: 768px) {
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-nav {
        top: 32.5vw;
    }
}  


/** Responsive - Adjust Font Sizes & Colours as Needed **/

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

    /* Heading */
    #page-banner-new #banner-content .fl-module-content .banner-heading,
    #page-banner-new #banner-content-col .banner-heading,
    #page-banner-custom-module .wm-banner-content-inner .wm-banner-title {
        font-size: 40px;
    }
    
    /* Chevron */
    #page-banner-new #banner-content .fl-module-content .banner-chevron i {
        font-size: 30px;
    }

    /* Tagline / Text */
    /*#page-banner-new #banner-content .banner-text,
    #page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline {
        font-size: 22px;
    }*/
    
    /* Buttons */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-buttons-wrap {
        order: 3 !important;
    }

    /* Pagination Dots */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-pagination {
        order: 4 !important;
    }
}

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

    /* Heading */
    #page-banner-new #banner-content .fl-module-content .banner-heading,
    #page-banner-new #banner-content-col .banner-heading,
    #page-banner-custom-module .wm-banner-content-inner .wm-banner-title {
        /*color: var(--wm-text-heading) !important;*/
        font-size: 32px;
        text-shadow: none !important;
    }
    
    /* Chevron */
    #page-banner-new #banner-content .fl-module-content .banner-chevron {
        padding-top: 10px;
    }
    
    #page-banner-new #banner-content .fl-module-content .banner-chevron i {
        font-size: 24px;
    }

    /* Tagline / Text */
    #page-banner-new #banner-content .banner-text,
    #page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline {
        color: var(--wm-text-dark) !important;
        text-shadow: none !important;
        font-size: 18px;
    }
    
    /* Buttons */
    #page-banner-custom-module .wm-banner-content-inner .wm-banner-button a {
        background: var(--wm-primary);
        border-color: #fff;
        color: var(--wm-text-light);
    }
    #page-banner-custom-module .wm-banner-content-inner .wm-banner-button a:hover{
        background: var(--wm-hover);
        border-color: #fff;
        color: var(--wm-text-light);
    }

    /* Pagination Dots */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-pagination {
        order: 1 !important;
        margin: 20px auto 5px auto;
    }
    #page-banner-custom-module .wm-banner-pagination span {
        background-color: var(--wm-bg-cta);
    }
    #page-banner-custom-module .wm-banner-pagination span.wm-pagination-active {
        background-color: var(--wm-primary);
    }
    #page-banner-custom-module .wm-banner-pagination span.wm-pagination-active:hover,
    #page-banner-custom-module .wm-banner-pagination span:hover {
        background-color: var(--wm-hover);
    }
}



/*--------------------------------*/

/*** BB ADMIN ADJUSTMENTS ***/
/* adjust banner styles for admins only to make editing easier */

body.administrator.fl-builder-edit #page-banner-new #banner-caption {
    top: 0;
    bottom: unset;
    height: 100px;
}

body.administrator.fl-builder-edit #page-banner-new #banner-content .banner-content-wrap { 
    min-height: 40px;
}

body.administrator.fl-builder-edit #page-banner-new #banner-content-col {
    position: relative;
    top: unset;
    bottom: unset;
    transform: none;
    background: var(--wm-bg-light-alt);
    width: 100%;
    max-width: 100%;
}
body.administrator.fl-builder-edit #page-banner-new #banner-content-col * {
    color: var(--wm-text-dark) !important;
    text-shadow: none !important;
    
}
body.administrator.fl-builder-edit #page-banner-new #banner-content-col .fl-col-content {
    max-width: 100%;
    background: none;
}





/*--------------------------------*/
/*     BLOG / NEWS / STORIES      */
/*--------------------------------*/

/*** POST META ***/

.post-meta-data {
    font-size: 0.89rem;
}

.post-meta-data .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-categories {
    padding-right: 20px;
}

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

.post-meta-data a {
    color: var(--wm-text-dark);
}
.post-meta-data a:hover,
.post-meta-data a:focus {
    color: var(--wm-hover);
}

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



/*--------------------------------*/

/*** POST NAVIGATION ***/

.fl-module-fl-post-navigation .nav-links {
    font-size: 0.875rem;
}
.fl-module-fl-post-navigation .nav-links i::before {
    font-size: 0.75rem;
    margin: 0 5px;
}



/*--------------------------------*/

/*** POST SOCIAL SHARING ***/

#social-sharing-btns .addtoany_list {
    line-height: 1rem;
}

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

#social-sharing-btns .addtoany_list a span {
    border-radius: 5px !important;
    background-color: var(--wm-primary) !important;
    opacity: 1;
}
#social-sharing-btns .addtoany_list a:hover span {
    background-color: var(--wm-hover) !important;
    opacity: 1;
}





/*--------------------------------*/
/*       BREADCRUMB STYLES        */
/*--------------------------------*/

.breadcrumbs-row .seo-breadcrumbs {
    font-size: 0.89rem;
    color: var(--wm-text-dark-tint);
    text-align: left;
}

ol.breadcrumb {
    padding: 0 !important;
}

.breadcrumbs-row .fl-module-html .fl-module-content {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
}



/*--------------------------------*/

/*** TOP ***/

#breadcrumbs-top .fl-row-content-wrap {
    background: var(--wm-bg-light);
}

/* uncomment styles if colour overwrites are needed */
#breadcrumbs-top ol.breadcrumb .active{
    text-decoration: underline;
}
#breadcrumbs-top ol.breadcrumb a {
    color: var(--wm-text-dark-tint);
    text-decoration: none;
}
#breadcrumbs-top ol.breadcrumb a:hover {
    color: var(--wm-hover);
}



/*--------------------------------*/

/*** BOTTOM ***/

#breadcrumbs-bottom.breadcrumbs-row .seo-breadcrumbs {
    text-align: right;
}

#breadcrumbs-bottom .fl-row-content-wrap {
    background: none;
}

/* uncomment styles if colour overwrites are needed */
#breadcrumbs-bottom ol.breadcrumb .active{
    text-decoration: none;
}
#breadcrumbs-bottom ol.breadcrumb a {
    color: var(--wm-text-dark-tint);
    text-decoration: underline;
}
#breadcrumbs-bottom ol.breadcrumb a:hover {
    color: var(--wm-hover);
}





/**********************************/
/****** COL + ROW STYLES A-Z ******/
/**********************************/

/*--------------------------------*/
/*        BACKGROUND COLOUR       */
/*--------------------------------*/

/** Add background colour and padding to rows **/
/* add classes listed below */

.wm-row-bg-light .fl-row-content-wrap {
    background: var(--wm-bg-light);
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}





/*--------------------------------*/
/*      BACKGROUND IMAGE COL      */
/*--------------------------------*/

/** Make Pure Image Col 3/2 on Mobile **/

@media only screen and (max-width: 768px) {
    .pure-bg-img-col .fl-col-content {
        height: 0;
        padding-top: 67%;
    }
}





/*--------------------------------*/
/*       DUAL OVERLAY ROWS        */
/*--------------------------------*/

/** Dual Row Content Col **/
/* content capped at 1200px wide */

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

.dual-overlay-row .dual-overlay-col-left .fl-module,
.dual-overlay-row .dual-overlay-col-right .fl-module,
.dual-overlay-row .dual-overlay-col-left .fl-col-group,
.dual-overlay-row .dual-overlay-col-right .fl-col-group {
    width: 100%;
    max-width: 590px;
    /* for 1100px wide: max-width: 490px; */
}
.dual-overlay-row .dual-overlay-col-left .fl-module,
.dual-overlay-row .dual-overlay-col-left .fl-col-group {
    margin-left: auto;
    padding-left: 0px;
}
.dual-overlay-row .dual-overlay-col-right .fl-module,
.dual-overlay-row .dual-overlay-col-right .fl-col-group {
    margin-right: auto;
    padding-right: 0px;
}

.dual-overlay-row .dual-overlay-col-right .fl-col-group .fl-col-content,
.dual-overlay-row .dual-overlay-col-left .fl-col-group .fl-col-content {
    padding: 0;
}



/*--------------------------------*/

/** Column Captions **/

.dual-overlay-row .pure-bg-img-col .fl-col-content {
    position: relative;
}

.dual-overlay-row .pure-bg-img-col .wm-col-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 1;
    text-align: right;
}
@media only screen and (min-width: 768px) {
    .dual-overlay-row .pure-bg-img-col.right .wm-col-caption {
        text-align: left;
    }
}

.dual-overlay-row .pure-bg-img-col .wm-col-caption .fl-module-content {
    margin: 0 !important;
    line-height: 1;
    display: inline-block;
    max-width: 580px;
    /* for 1100px wide: max-width: 530px; */
}
.dual-overlay-row .pure-bg-img-col.left .wm-col-caption .fl-module-content {
    margin-left: 20px !important;
}
.dual-overlay-row .pure-bg-img-col.right .wm-col-caption .fl-module-content {
    margin-right: 20px !important;
}

body.fl-builder-edit .dual-overlay-row .pure-bg-img-col .wm-col-caption .fl-html::before {
    content: 'Enter caption for column background image here or delete this module if not needed:';
    font-style: italic;
    font-weight: bold;
    display: block;
}



/*--------------------------------*/

/** Responsive **/

@media only screen and (max-width: 1200px) {
    /* add extra padding for content */
    .dual-overlay-row .fl-row-content > .fl-col-group .dual-overlay-col-left > .fl-col-content .fl-module,
    .dual-overlay-row .dual-overlay-col-left .fl-col-group {
        padding-left: 20px;
    }
    .dual-overlay-row .dual-overlay-col-left .fl-col-group .fl-module {
        padding-left: 0px !important;
    }
    
    .dual-overlay-row .fl-row-content > .fl-col-group .dual-overlay-col-right > .fl-col-content .fl-module,
    .dual-overlay-row .dual-overlay-col-right .fl-col-group {
        padding-right: 20px;
    }
    .dual-overlay-row .dual-overlay-col-right .fl-col-group .fl-module {
        padding-right: 0px !important;
    }
    
    /* add extra padding for caption */
    .dual-overlay-row .pure-bg-img-col.left .wm-col-caption .fl-module-content {
        margin-left: 40px !important;
    }
    .dual-overlay-row .pure-bg-img-col.right .wm-col-caption .fl-module-content {
        margin-right: 40px !important;
    }
}

@media only screen and (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: 3.75rem 20px 3.75rem 0px;
    }
    .dual-overlay-row .dual-overlay-col-right .fl-col-content {
        padding: 3.75rem 0px 3.75rem 20px;
    }
}

@media only screen and (max-width: 768px) {
    .dual-overlay-row .dual-overlay-col-left .fl-col-content,
    .dual-overlay-row .dual-overlay-col-right .fl-col-content {
        padding: 3.75rem 0px;
    }

    /* adjust extra padding for content */
    .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;
    }

    /* adjust extra padding for caption */
    .dual-overlay-row .pure-bg-img-col .wm-col-caption .fl-module-content {
        max-width: 100%;
    }
    .dual-overlay-row .pure-bg-img-col.left .wm-col-caption .fl-module-content,
    .dual-overlay-row .pure-bg-img-col.right .wm-col-caption .fl-module-content {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }
}





/*--------------------------------*/
/*          TESTIMONIALS          */
/*--------------------------------*/

/*** BASE FONT STYLES ***/

/* fix template spacing */
.wm-testimonial .fl-builder-module-template {
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.wm-testimonial .fl-builder-module-template .fl-module-content {
    margin: 0 !important;
}

.wm-testimonial {
    position: relative;
}

.wm-testimonial .fl-post-text {
    text-align: center;
    padding: 0px;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.wm-testimonial .town-icon {
    padding-bottom: 15px;
}

.wm-testimonial .town-icon img {
    width: 80px;
    height: 80px;
}

.wm-testimonial .testimonial-tagline {
    font-weight: 400;
    padding-bottom: 10px;
    font-family: var(--wm-font-heading);
    font-size: 40px;
}

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

.wm-testimonial .fl-post-text footer {
    border: 1px solid var(--wm-bg-light);
    border-left: 0;
    border-right: 0;
    padding: 25px 0;
    margin-top: 30px;
}

.wm-testimonial .fl-post-text footer span {
    margin-top: 10px;
    text-transform: none;
    font-style: normal;
    font-size: 0.89rem;
    font-weight: 600;
    background: none;
}
.wm-testimonial .fl-post-text footer span:not(:last-child)::after {
    content: "|";
    font-weight: 400;
    padding: 0 4px;
}



/*--------------------------------*/

/*** INLINE FOR DARK BACKGROUNDS ***/

.wm-testimonial.dark-bg .fl-post-text {
    color: var(--wm-text-light);
}

.wm-testimonial.dark-bg .fl-post-text footer {
    border-color: #fff;
}




/*--------------------------------*/

/*** IMG BG FULL WIDTH ***/
/* using the featured image */

.wm-testimonial-row.wm-testimonial-img .fl-row-content-wrap {
    /*background: var(--wm-bg-dark);*/
    margin: 0 20px;
}

.wm-testimonial-row.wm-testimonial-img .wm-testimonial > .fl-module-content  {
    margin: 0 !important;
}

.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
    position: relative;
    color: var(--wm-text-light);
}

.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-bg-img {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
}
.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-bg-img::after {
    content:'';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(8,79,115,1) 20%, rgba(8,79,115,0) 90%);
    position: absolute;
}

.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-bg-img .testimonial-caption {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    padding: 2px 6px;
    z-index: 1;
}

.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text footer {
    border-color: #fff;
}


/** Padding and Spacing **/

/* centered like other testimonials
.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
    padding: calc(3.75rem + 20px);
} */

/* remove comment for left aligned */
.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
    padding: 5rem 8rem;
    margin: 0 auto;
}

.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text {
    text-align: left;
    max-width: 400px;
    margin-left: 0;
}




/*--------------------------------*/

/*** RESPONSIVE ***/

@media only screen and (max-width: 1200px) {
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        padding: 4rem 6rem;
    }
}
@media only screen and (max-width: 992px) {
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        padding: 4rem;
    }
    .wm-testimonial .testimonial-tagline {
        font-size: 32px;
    }
}
@media only screen and (max-width: 768px) {
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-bg-img {
        padding-top: 67%;
        position: relative;
    }
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-bg-img::after {
        background: linear-gradient(0deg, rgb(8, 79, 115) 0%, rgba(8,79,115,0) 40%);
    }
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        background: var(--wm-secondary);
    }
    .wm-testimonial .testimonial-tagline {
        font-size: 26px;
    }
}
@media only screen and (max-width: 550px) {
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        padding: 4rem 30px;
    }
}





/**********************************/
/******* MODULE STYLES A-Z ********/
/**********************************/

/*--------------------------------*/
/*           ACCORDIONS           */
/*--------------------------------*/

/*** BASE STYLES ***/

.wm-styled-accordion .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
    font-weight: 500;
}

.wm-styled-accordion .pp-accordion-item .pp-accordion-button {
    border: none;
}


/* Icon */

.wm-styled-accordion span.pp-accordion-icon {
    width: auto;
    font-size: 1.2em;
    color: var(--wm-primary);
    margin-right: 6px;
}
.wm-styled-accordion .pp-accordion-item .pp-accordion-button:hover .pp-accordion-icon {
    color: var(--wm-hover);
}
.wm-styled-accordion span.pp-accordion-icon::before {
    width: 40px;
    display: inline-block;
}


/*--------------------------------*/

/*** PLAIN STYLES - NO BG ***/

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


/** Button **/

.wm-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;
    /*color: var(--wm-primary);*/
}

.wm-accordion-plain .pp-accordion-item .pp-accordion-button {
    padding: 0px;
    background-color: transparent;
    align-items: center;
    font-size: 1.66rem;
    cursor: pointer;
}

.wm-accordion-plain .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon {
    /*color: var(--wm-primary);
    font-weight: 400;*/
    padding-top: 0;
    font-size: 0.8em;
}

.wm-accordion-plain .pp-accordion-item .pp-accordion-button:hover,
.wm-accordion-plain .pp-accordion-item .pp-accordion-button:hover .pp-accordion-button-icon.pp-accordion-icon-left::before,
.wm-accordion-plain .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon.pp-accordion-icon-left::before {
    background-color: transparent;
    color: var(--wm-hover);
}


/** Content **/

.wm-accordion-plain .pp-accordion-item .pp-accordion-content {
    border: none;
    padding: 20px 0 25px 0;
}




/*--------------------------------*/

/*** PLAIN STYLES - WITH SEPARATORS ***/

.wm-accordion-lines .pp-accordion-item {
    margin-bottom: 0px;
}

/** Button **/

.wm-accordion-lines .pp-accordion-item .pp-accordion-button {
    padding: 20px 40px;
    border-bottom: 1px solid var(--wm-border);
}

.wm-accordion-plain .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon {
    /*color: var(--wm-primary);
    font-weight: 400;*/
    padding-top: 0;
    font-size: 0.8em;
}



/** Content **/

.wm-accordion-lines .pp-accordion-item .pp-accordion-content {
    background: var(--wm-bg-light-alt);
    border-bottom: 1px solid var(--wm-border);
    padding: 30px 40px 25px;
}


/** Responsive **/

@media only screen and (max-width: 550px) {
    .wm-accordion-lines .pp-accordion-item .pp-accordion-button {
        padding: 20px 30px;
    }
    .wm-accordion-lines .pp-accordion-item .pp-accordion-content {
        padding: 30px 30px 25px;
    }
}






/*--------------------------------*/

/*** SOLID BG STYLES ***/

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


/** Button **/

.wm-accordion-solid .pp-accordion-item .pp-accordion-button {
    padding: 20px 40px;
    border: none;
    background-color: var(--wm-primary);
    color: var(--wm-text-light);
    font-size: 1.66rem;
}
.wm-accordion-solid .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
    background-color: var(--wm-hover);
    /*color: var(--wm-text-light);*/
}
.wm-accordion-solid .pp-accordion-item .pp-accordion-button:hover,
.wm-accordion-solid .pp-accordion-item.pp-accordion-item-active .pp-accordion-button:hover {
    background-color: var(--wm-hover);
    /*color: var(--wm-text-light);*/
}

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


/** Content **/

.wm-accordion-solid .pp-accordion .pp-accordion-item .pp-accordion-content {
    border-bottom: 1px solid var(--wm-hover);
    /*background: var(--wm-bg-light-alt);*/
    padding: 30px 40px 20px 40px;
}


/** Responsive **/

@media only screen and (max-width: 550px) {
    .wm-accordion-solid .pp-accordion-item .pp-accordion-button {
        padding: 20px 30px;
    }
    .wm-accordion-solid .pp-accordion .pp-accordion-item .pp-accordion-content {
        padding: 30px 30px 20px 30px;
    }
}





/*--------------------------------*/
/*           AUTHOR BOX           */
/*--------------------------------*/

.wm-styled-author-box .pp-authorbox-content {
    background-color: var(--wm-bg-light);
    border: none;
}

.wm-styled-author-box .pp-authorbox-image,
.wm-styled-author-box .pp-authorbox-author-wrapper {
    padding: 20px;
}

.wm-styled-author-box .pp-authorbox-image .pp-authorbox--wrap {
    border-radius: 50%;
    overflow: hidden;
}

.wm-styled-author-box .pp-authorbox-author-name {
    font-family: var(--wm-font-body);
    font-size: 1.22rem;
    font-weight: 600;
}


/** Responsive **/

@media only screen and (max-width: 768px) {
    .wm-styled-author-box .pp-authorbox-wrapper {
        padding: 20px 0;
    }
    .wm-styled-author-box .pp-authorbox-image {
        padding-bottom: 0;
    }
}





/*--------------------------------*/
/*            BUTTONS             */
/*--------------------------------*/

.fl-module-button .fl-button-wrap.fl-button-width-auto 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 .wm-button-text-link + .wm-button-text-link .fl-module-content {
    margin-top: 10px !important;
}

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

/** Text + Text Button **/

.wm-btn-col-vertical .fl-module-rich-text + .wm-button-text-link .fl-module-content {
    margin-top: 0px !important;
}



/** Text Button **/

.wm-button-text-link .fl-button i.fl-button-icon-after {
    margin-left: 4px;
}
.wm-button-text-link a.fl-button{
    width: auto;
}




/*--------------------------------*/
/*         BUSINESS HOURS         */
/*--------------------------------*/

.wm-styled-hours .pp-business-hours-content {
    background: #fff;
    color: var(--wm-text-dark);
    font-size: 0.89rem;
}

.wm-styled-hours .pp-business-hours-content .pp-bh-row {
    padding: 20px 40px;
    border-bottom: 1px solid var(--wm-primary);
}
.wm-styled-hours .pp-business-hours-content .pp-bh-row:hover {
    background: var(--wm-bg-light-alt);
}

@media only screen and (max-width: 550px) {
    .wm-styled-hours .pp-business-hours-content .pp-bh-row {
        padding: 20px 30px;
    }
}
@media only screen and (max-width: 450px) {
    .wm-styled-hours .pp-business-hours-content .pp-bh-title,
    .wm-styled-hours .pp-business-hours-content .pp-bh-row .pp-bh-timing {
        width: 100%;
        float: none;
        text-align: left;
    }
}


/** Solid Colours **/

.wm-hours-alt .pp-business-hours-content .pp-bh-row {
    background-color: var(--wm-bg-light-alt);
    border: none;
}
/*.wm-hours-alt .pp-business-hours-content .pp-bh-row:nth-of-type(2n) {
    background-color: var(--wm-bg-light-alt);
}*/

.wm-styled-hours.wm-hours-alt .pp-business-hours-content .pp-bh-row:not(:last-child) {
    border-bottom: 5px solid #fff;
}





/*--------------------------------*/
/*              FAQS              */
/*--------------------------------*/

/*** BASE STYLES ***/

.wm-styled-faq .pp-faq-item .pp-faq-button {
    font-weight: 500;
    font-size: 1.66rem;
}

.wm-styled-faq .pp-faq-item:not(:last-child) {
    margin-bottom: 0px;
}



/** Button **/

.wm-styled-faq .pp-faq-item .pp-faq-button .pp-faq-button-icon::before {
    width: 20px;
    display: inline-block;
    text-align: center;
    /*color: var(--wm-primary);*/
}

.wm-styled-faq .pp-faq-item .pp-faq-button .pp-faq-button-icon {
    /*color: var(--wm-primary);
    font-weight: 400;*/
    font-size: 0.8em;
}

.wm-styled-faq .pp-faq-item .pp-faq-button {
    background-color: transparent;
    align-items: flex-start;
    padding: 20px 40px;
    border-bottom: 1px solid var(--wm-border);
}

.wm-styled-faq .pp-faq-item .pp-faq-button:hover,
.wm-styled-faq .pp-faq-item .pp-faq-button:hover .pp-faq-button-icon.pp-faq-icon-left::before,
.wm-styled-faq .pp-faq-item.pp-faq-item-active .pp-faq-button-icon.pp-faq-icon-left::before {
    background-color: transparent;
    color: var(--wm-hover);
}


/** Content **/

.wm-styled-faq .pp-faq-item .pp-faq-content {
    background: var(--wm-bg-light-alt);
    border-bottom: 1px solid var(--wm-border);
    padding: 25px 40px;
}


/* Responsive */
@media only screen and (max-width: 550px) {
    .wm-styled-faq .pp-faq-item .pp-faq-button {
        padding: 20px 40px;
    }
    .wm-styled-faq .pp-faq-item .pp-faq-content {
        padding: 25px 30px;
    }
}





/*--------------------------------*/
/*             FORMS              */
/*--------------------------------*/

/* Use class .show-label / .hide-label to (un)hide labels and legends for a field */

/*--------------------------------*/

/*** FORM BOX ***/

.fl-module-pp-gravity-form .pp-gf-content {
    background-color: transparent;
    background: none;
    padding: 0;
    border: none;
}



/*--------------------------------*/

/*** FORM BUTTONS ***/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_footer {
    margin-top: 20px;
}

.fl-module-pp-gravity-form.pp-gf-content .gform_wrapper .gform-button, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_page_footer .button, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
    min-width: 200px;
    margin-bottom: 0px !important;
}

/* Inline Forms */

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper #gform_9 .gform-button.button {
    height: 42px;
    padding: 6px 10px !important;
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper #gform_9 .ginput_container_address span{
    flex-basis: 100%;
}
.gform_wrapper.gravity-theme #field_submit input, .gform_wrapper.gravity-theme .gform_footer input{
    align-self: flex-start;
}

/*--------------------------------*/

/*** FORM INPUTS ***/

/** Input Widths **/

/* force full width for date fields */
.gform_wrapper.gravity-theme form .ginput_container_date input {
    width: 100%;
}

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

/* manually adjust width for inputs in a row - large devices only */
/* 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)
*/
@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;
    }
}


/** Input Height **/

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


/** Input Background + Border **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield select, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield textarea,
form.post-password-form input[type="password"],
.gform_wrapper .gform_drop_area,
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_drop_area,
form.pp-search-form input[type="search"],
form.pp-search-form input[type="search"]:focus {
    border: 1px solid var(--wm-border);
    border-radius: 0px !important;
    background: #fff;
    padding: 10px !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

.gform_wrapper table.gsurvey-likert,
.gform_wrapper table.gsurvey-likert th.gsurvey-likert-choice-label,
.gform_wrapper table.gsurvey-likert .gsurvey-likert-choice, 
.gform_wrapper table.gsurvey-likert .gsurvey-likert-row-label,
.gform_wrapper table.gsurvey-likert tr td {
    border-color: var(--wm-border);
}

/* Focus State */

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield select:focus, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield textarea:focus,
form.post-password-form input[type="password"]:focus,
form.pp-search-form input[type="search"]:focus {
    border: 1px solid var(--wm-hover);
}


/** Input Placeholders **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield input::placeholder,
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield textarea::placeholder,
input[type="search"].pp-search-form__input::placeholder {
    color: var(--wm-text-dark-tint);
    opacity: 0.6;
    font-size: 16px;
}



/*--------------------------------*/

/*** FORM LABELS + DESCRIPTIONS ***/

/** Labels **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_label {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 10px;
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper.gravity-theme .ginput_complex label {
    font-weight: 400;
    font-size: 0.89rem;
}

.pp-gf-content fieldset legend {
    border: none;
}

/* Sub-Labels */

.gfield.field_sublabel_below .ginput_complex span input {
    margin-bottom: 0;
}
.gfield.field_sublabel_below .ginput_complex span label {
    padding-bottom: 15px;
}

/* show /hide labels if class is applied */
.gform_wrapper .show-label.gfield .gfield_label {
    display: inline-block !important;
}
.gform_wrapper .hide-label.gfield .gfield_label {
    display: none !important;
}

/* Required Marker */

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield_required {
    color: var(--wm-form-valid-border);
}


/** Descriptions + Instructions **/

.gform_wrapper.gravity-theme .description, 
.gform_wrapper.gravity-theme .gfield_description, 
.gform_wrapper.gravity-theme .gsection_description, 
.gform_wrapper.gravity-theme .instruction,
.gform_wrapper .gfield .gform_fileupload_rules,
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_description {
    font-size: 0.89rem !important;
    font-weight: 300;
}

.gform_wrapper .gfield.field_description_above .gfield_description {
    margin-top: -5px;
    padding-bottom: 14px;
}
.gform_wrapper .gfield.field_description_below .gfield_description {
    padding-top: 10px;
}



/*--------------------------------*/

/*** FORM FIELDS - CHECKBOXES + RADIO BUTTONS  ***/

/** Input Style **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_radio div input[type="radio"], 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_radio div input[type="radio"]:focus, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_checkbox div input[type="checkbox"], 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_checkbox div input[type="checkbox"]:focus, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .ginput_container_consent input[type="checkbox"], 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .ginput_container_consent input[type="checkbox"]:focus, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:focus, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield input[type="radio"]:focus {
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    width: 1rem !important;
    height: 1rem !important;
    border: 1px solid var(--wm-border);
    background: #fff;
    padding: 2px;
    margin-right: 10px;
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_radio div input[type="radio"]:checked, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_checkbox div input[type="checkbox"]:checked, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .ginput_container_consent input[type="checkbox"]:checked, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:checked, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield input[type="radio"]:checked {
    background: var(--wm-hover);
    border-color: var(--wm-hover);
}

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


/** Labels **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_radio input + label,
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_checkbox input + label {
    font-size: 0.89rem;
    font-weight: 400;
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_radio input[type="radio"]:checked + label,
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_checkbox input[type="checkbox"]:checked + label {
    font-weight: 500;
}


/** Image Choices **/

.image-choices-field.ic-theme--simple .image-choices-choice-image-wrap, 
.image-choices-field.ic-theme--simple .image-choices-choice-image-wrap::after,
.image-choices-field.ic-theme--polaroid .image-choices-choice-image, 
.image-choices-field.ic-theme--polaroid .image-choices-choice-image-wrap,
.image-choices-field.ic-theme--polaroid .image-choices-choice .gform-field-label,
.image-choices-field.ic-theme--float-card .image-choices-choice-image, 
.image-choices-field.ic-theme--float-card .image-choices-choice-image-wrap,
.image-choices-field.ic-theme--float-card .image-choices-choice .gform-field-label,
.image-choices-field.ic-theme--cover-tile .image-choices-choice-image, 
.image-choices-field.ic-theme--cover-tile .image-choices-choice-image-wrap, 
.image-choices-field.ic-theme--cover-tile .image-choices-choice .gform-field-label, 
.image-choices-field.ic-theme--cover-tile .image-choices-choice .gform-field-label::after,
.image-choices-field.ic-theme--porthole .image-choices-choice .gform-field-label::before {
    border-radius: 0;
}

.gfield.image-choices-field[class*="ic-theme--"] .image-choices-choice-selected .image-choices-choice-text {
    color: var(--wm-hover);
}
.gfield.image-choices-field.ic-theme--cover-tile .image-choices-choice-selected .image-choices-choice-text {
    color: var(--wm-text-light);
}

.image-choices-field.ic-theme--simple .image-choices-choice-image-wrap::after {
    box-shadow: inset 0 0 0 0px var(--wm-hover);
}
.image-choices-field.ic-theme--simple .image-choices-choice-selected .image-choices-choice-image-wrap::after {
    box-shadow: inset 0 0 0 6px var(--wm-hover);
}

.image-choices-field.ic-theme--polaroid .image-choices-choice .gform-field-label,
.image-choices-field.ic-theme--float-card .image-choices-choice-selected .gform-field-label,
.image-choices-field.ic-theme--cover-tile .image-choices-choice-image-wrap,
.image-choices-field.ic-theme--porthole .image-choices-choice .gform-field-label::before,
.image-choices-field.ic-theme--circle .image-choices-choice-image-wrap {
    box-shadow: 1px 2px 10px rgba(0,0,0,0.1);
}

.image-choices-field.ic-theme--polaroid .image-choices-choice .gform-field-label::after,
.image-choices-field.ic-theme--float-card .image-choices-choice .gform-field-label::after,
.image-choices-field.ic-theme--cover-tile .image-choices-choice::after,
.image-choices-field.ic-theme--porthole .image-choices-choice .gform-field-label::after,
.image-choices-field.ic-theme--circle .image-choices-choice .gform-field-label::after {
    background-color: var(--wm-hover);
    width: 50px;
    height: 50px;
    background-size: 15px;
}



/*--------------------------------*/

/*** FORM FIELDS - DATES  ***/

.ginput_container_date {
    position: relative;
}
.ginput_container_date:after{
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 1.2em;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 6px;
    right: 10px;
    position: absolute;
    color: var(--wm-primary);
}

/* larger fonts for the date picker */

#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;	
}

#ui-datepicker-div.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
    opacity: 0.5;
    border: none;
}


/* Colours */

#ui-datepicker-div.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
    background: var(--wm-hover);
    border-color: var(--wm-hover);
}
#ui-datepicker-div.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:focus, 
#ui-datepicker-div.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:hover {
    border-color: var(--wm-hover);
}



/*--------------------------------*/

/*** FORM FIELDS - FILE UPLOAD  ***/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_drop_area {
    border-style: dashed;
    padding: 30px 20px !important;
    background: var(--wm-bg-light-alt);
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_drop_area button {
    width: 200px;
    background: #fff;
    border: 1px solid var(--wm-primary);
    color: var(--wm-text-dark);
    padding: 10px;
}
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_drop_area button:hover {
    background: var(--wm-hover) !important;
    color: var(--wm-text-light);
    border-color: #fff;
}



/*--------------------------------*/

/*** FORM FIELDS - LISTS  ***/

.gform_wrapper.gravity-theme .gfield_list_icons button {
    font-size: 0 !important;
    padding: 0 !important;
}



/*--------------------------------*/

/*** FORM FIELDS - LIKERT SCALES  ***/

.gform_wrapper table.gsurvey-likert th.gsurvey-likert-choice-label {
    background-color: var(--wm-neutral);
}

.gform_wrapper table.gsurvey-likert tbody {
    background: #fff;
}

.gform_wrapper table.gsurvey-likert td.gsurvey-likert-choice.gsurvey-likert-hover,
.gform_wrapper table.gsurvey-likert td.gsurvey-likert-choice.gsurvey-likert-selected{
    background-color: rgba(255,255,255,0.01) !important;
}

@media only screen and (max-width: 1024px) {
    .gform_wrapper .gform_body .gform_fields table.gsurvey-likert td::after {
        margin-left: 30px;
    }
}



/*--------------------------------*/

/*** FORM FIELDS - POST PASSWORDS  ***/

form.post-password-form p + p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

form.post-password-form p label {
    width: 100%;
    margin-bottom: 0;
    -ms-flex-negative: 2;
    flex-shrink: 2;
}

form.post-password-form p label input[type="password"] {
    height: 45.4px;
    margin-top: 8px;
    padding: 10px;
}

form.post-password-form input[type="submit"] {
    margin-left: 20px;
    width: 200px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
    form.post-password-form p + p {
        display: block;
    }
    form.post-password-form input[type="submit"] {
        margin-left: 0px;
        margin-top: 20px;
    }
}



/*--------------------------------*/

/*** FORM FIELDS - SHOPPING  ***/

/** Price and Quantity Labels **/

.pp-gf-content .gfield--input-type-singleproduct .ginput_product_price_wrapper .ginput_product_price_label,
.pp-gf-content .gfield--input-type-singleproduct .ginput_quantity_label {
    display: none;
}
.pp-gf-content .gfield--input-type-singleproduct .ginput_product_price_wrapper span.ginput_product_price {
    font-weight: 500;
    margin-right: 20px;
}

.pp-gf-content .gfield--input-type-singleproduct .ginput_container_singleproduct input.ginput_quantity {
    width: 90px;
    padding: 5px 10px !important;
    height: auto !important;
}


/** Shipping **/

.pp-gf-content .gfield--type-shipping .gchoice label .ginput_price {
    font-weight: 500;
    font-size: 0.89rem;
    padding-left: 10px;
    color: #900900;
}


/** Totals **/

.pp-gf-content .gfield--type-total {
    margin-top: 40px;
    margin-bottom: 20px;
}
.pp-gf-content .gfield--type-total label {
    margin-right: 30px;
}
.pp-gf-content .gfield--type-total label,
.pp-gf-content .gfield--type-total .ginput_container {
    display: inline-block !important;
    width: auto;
}
.pp-gf-content .gfield--type-total .ginput_container_total input {
    border: none !important;
    font-weight: 500 !important;
    text-decoration-line: underline;
    text-decoration-style: double;
    background: #0066001c !important;
    width: 120px;
    height: auto !important;
    text-align: center !important;
    padding: 5px 10px !important;
}



/*--------------------------------*/

/*** FORM SECTIONS + PAGINATION ***/

/** Section Headings **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gsection {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom-color: var(--wm-neutral);
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper h2.gsection_title, 
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper h3.gsection_title {
    color: var(--wm-text-dark);
    font-family: var(--wm-font-body);
    font-size: 1.66rem;
}


/** Progress Bar **/

.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_progressbar_title {
    color: var(--wm-text-dark);
    font-size: 0.89rem;
}

.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_progressbar {
    background: var(--wm-neutral);
}

.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_progressbar .gf_progressbar_percentage {
    color: var(--wm-text-light) !important;
    background-color: var(--wm-primary) !important;
}


/** Steps **/

.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_page_steps {
    border-bottom: none;
}

.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_step_number,
.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_step_active .gf_step_number,
.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_step_completed .gf_step_number::before {
    border: 1px solid var(--wm-primary);
    color: var(--wm-text-dark);
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
}
.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
    background: var(--wm-primary);
    color: var(--wm-text-light);
}
.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_step_completed .gf_step_number::before {
    background: var(--wm-hover);
    border: 1px solid var(--wm-hover);
    color: var(--wm-text-light);
}

.fl-module-pp-gravity-form .gform_wrapper.gravity-theme .gf_step_label {
    font-size: 1rem;
    font-weight: 500;
    padding-left: 10px !important;
}



/*--------------------------------*/

/*** FORM VALIDATION STYLES ***/

/** Submission Error Message (Top) **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper.gravity-theme .gform_validation_errors {
    outline: none;
    color: var(--wm-form-valid-msg-text) !important;
    font-size: 1.22rem;
    font-weight: 500;
    background: var(--wm-form-valid-msg-bg);
    border: 2px solid var(--wm-form-valid-border) !important;
    border-radius: 0px;
    box-shadow: none;
    margin: 20px 0 40px;
    padding: 20px;
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error {
    padding-left: 30px;
    font-size: 1rem;
    font-family: var(--wm-font-body);
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_validation_errors span.gform-icon {
    color: var(--wm-form-valid-msg-text) !important;
}


/** Field Error Messages **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield.gfield_error {
    background: none;
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield.gfield_error .gfield_label {
    color: var(--wm-form-valid-input-text) !important;
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), 
.fl-page-content .pp-gf-content .gform_wrapper .gfield_error .ginput_container select, 
.fl-page-content .pp-gf-content .gform_wrapper .gfield_error .ginput_container textarea {
    border-color: var(--wm-form-valid-border);
}

/* have field error within a box - comment out other display option */
.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield_error .validation_message {
    padding: 10px 20px;
    font-size: 0.89rem;
    color: var(--wm-form-valid-input-text) !important;
    border: 1px solid var(--wm-form-valid-border);
    background: var(--wm-form-valid-input-bg);
    margin-top: 10px;
}

/* have field error as plain text - comment out other display option */
/*.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield_error .validation_message {
    padding: 0px;
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--wm-form-valid-msg-text) !important;
    border: none;
    background: none;
    margin-top: 10px;
}*/



/*--------------------------------*/

/*** SEARCH FORM STYLES ***/

.fl-module-pp-search-form button {
    border: none !important;
    background: var(--wm-primary) !important;
}
.fl-module-pp-search-form button:hover {
    background: var(--wm-hover) !important;
}

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

.fl-module-pp-search-form .pp-search-form__container input {
    border-right: none !important;
}



/*--------------------------------*/

/*** SUBSCRIBE FORM STYLES ***/

#subscribe-row .wm-styled-form .fl-module-content {
    margin: 0 60px 20px !important;
}

#subscribe-row .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 20px;
}

#subscribe-row .gform_wrapper .gform_fields .gfield input {
    border: 1px solid #fff;
}
#subscribe-row .gform_wrapper .gform_fields .gfield input:focus {
    border: 1px solid var(--wm-hover);
}

#subscribe-row .pp-gf-content .gform_wrapper .gform_footer {
    justify-content: center;
    padding: 0;
    margin: 0;
}


@media only screen and (min-width: 640px) {
    /*#subscribe-row .gform_wrapper #field_9_4 {
        grid-column: span 3;
    }*/
    #subscribe-row .gform_wrapper #field_9_2 {
        grid-column: span 5;
    }
    #subscribe-row .gform_wrapper #field_submit {
        grid-column: span 3;
    }
}
@media only screen and (max-width: 992px) {
    #subscribe-row .wm-styled-form .fl-module-content {
        margin: 0 40px 20px !important;
    }
}
@media only screen and (max-width: 768px) {
    #subscribe-row .wm-styled-form .fl-module-content {
        margin: 0 20px 20px !important;
    }
}




/*--------------------------------*/
/*             ICONS              */
/*--------------------------------*/

/*** GENERIC SINGLE ICONS ***/

.fl-module-icon .fl-module-content {
    line-height: 1;
}

.fl-module-icon .fl-module-content .fl-icon-text {
    height: auto;
    line-height: 1.6;
    padding-left: 15px;
}

.wm-styled-icon .fl-icon-wrap .fl-icon i,
.wm-styled-icon .fl-icon-wrap .fl-icon i::before {
    font-size: 1.22rem;
    width: 1.22rem;
    height: auto;
    line-height: 1;
}

.wm-styled-icon .fl-icon {
    /* uncomment if you want to force an icon colour */
    color: var(--wm-primary);

    /* uncomment if you want to align icons at the top where the icon text goes over multiple lines */
    vertical-align: top;
    padding-top: 0.15rem
}



/*--------------------------------*/

/*** CONTACT ICONS ***/

.wm-contact-icon .fl-module-content {
    margin-bottom: 0 !important;
}

.wm-contact-icon + .wm-contact-icon .fl-module-content {
    margin-top: 10px !important;
}





/*--------------------------------*/
/*           ICON LISTS           */
/*--------------------------------*/

/* named 'simple list' in the saved tab */

.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: 1.2rem;
    height: 1.2rem;
    font-size: 1.2rem;
    padding-top: 0.15rem;
    line-height: 1;
}

/* uncomment if you want to force an icon colour */
.wm-styled-icon-list .pp-icon-list .pp-list-item-icon {
    color: var(--wm-primary);
}



/*--------------------------------*/

/** Split List into 2 Columns for Larger Devices **/
/* add class wm-2-col-list */

@media only screen and (min-width: 992px) {
    .wm-styled-icon-list.wm-2-col-list ul.pp-icon-list-items {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
}





/*--------------------------------*/
/*  IMAGES + GALLERIES + COMPARE  */
/*--------------------------------*/

/*** CAPTIONS ***/

/** Caption on Hover **/
/* permanently overlaid */

.pp-photo-gallery .pp-photo-gallery-item .pp-photo-gallery-content .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-gallery-slider .pp-image-overlay {
    position: absolute;
    right: initial;
    bottom: 10px;
    top: initial;
    left: 10px;
    padding: 0 6px;
    opacity: 1 !important;
    transform: none;
    line-height: 1;
    height: auto;
    width: auto;
}

@media (min-width:1100px){
    .wm-gallery-slider .pp-image-overlay{
        bottom: 30px;
    }
}

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

.pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay .pp-overlay-inner .pp-caption * {
    padding: 2px 0;
    line-height: 1.6;
}


/** Caption Below **/

.fl-module-photo .fl-photo-caption-below,
.pp-photo-gallery .pp-photo-gallery-caption {
    padding: 10px 0;
    text-align: start;
    color: var(--wm-text-dark) !important;
    width: 100%;
}



/*--------------------------------*/

/*** GALLERIES ***/

.fl-module-pp-gallery .pp-gallery-load-more {
    margin-top: 20px;
}

/** Filterable **/

.fl-module-pp-filterable-gallery .pp-gallery-filters .pp-gallery-filter-label {
    padding: 8px 20px !important;
}



/*--------------------------------*/

/*** IMAGE CAROUSEL ***/

.fl-module-pp-image-carousel.wm-styled-image-slider .pp-image-carousel {
    height: auto;
    padding-bottom: 22px;
}

.wm-styled-image-slider .pp-image-carousel-item .pp-carousel-image-container {
    height: 0;
    padding-top: 67%;
}

.wm-styled-image-slider .pp-image-overlay {
    height: auto;
}



/*--------------------------------*/

/*** IMAGE COMPARISON ***/

.wm-styled-image-compare .twentytwenty-before-label::before,
.wm-styled-image-compare .twentytwenty-after-label::before {
    background: rgba(255,255,255,0.25);
    line-height: 1.6;
    padding: 8px 16px;
    border-radius: 0;
    color: var(--wm-text-light);
    font-family: var(--wm-font-body);
    font-size: 0.89rem;
    font-weight: 500;
    text-transform: uppercase;
    width: 100px;
    text-align: center;
}

.wm-styled-image-compare .twentytwenty-handle {
    background: var(--wm-primary);
    border: 3px solid var(--wm-text-light) !important;
}
.wm-styled-image-compare .pp-image-comp-inner:hover .twentytwenty-handle {
    background: var(--wm-hover);
}

.wm-styled-image-compare .pp-image-comp-inner:hover .twentytwenty-handle .twentytwenty-left-arrow {
    border-right-color: var(--wm-text-light) !important;
}
.wm-styled-image-compare .pp-image-comp-inner:hover .twentytwenty-handle .twentytwenty-right-arrow {
    border-left-color: var(--wm-text-light) !important;
}

.wm-styled-image-compare .twentytwenty-horizontal .twentytwenty-handle::before, 
.wm-styled-image-compare .twentytwenty-horizontal .twentytwenty-handle::after {
    background-color: var(--wm-text-light) !important;
}





/*--------------------------------*/
/*           INFO LISTS           */
/*--------------------------------*/

/*lists with title + description in the saved tab */

/** Connector Line **/

.wm-styled-info-list .pp-list-items .pp-list-connector {
    height: calc(100% - 1.5rem);
    top: 1.6rem;
    /* uncomment if you want to force a line colour */
    border-left-color: var(--wm-primary) !important;
}


/** Base Styles **/

.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 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    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: 1.22rem;
    height: 1.22rem;
}

/* uncomment if you want to force an icon colour */
.wm-styled-info-list .pp-infolist-icon-inner .pp-icon {
    color: var(--wm-primary);
}

.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: 1.22rem;
    line-height: 1;
    padding-top: 0.15rem;
}


/** Title Styles */

.wm-info-list-title .pp-infolist-icon-inner span.pp-icon {
    padding-top: 6px;
}
.wm-info-list-title .pp-list-items .pp-list-connector {
    margin-top: 3px;
}

.wm-info-list-title .pp-infolist-wrap .pp-list-item {
    padding-bottom: 25px;
}

.wm-info-list-title .pp-infolist-icon-inner span.pp-icon,
.wm-info-list-title .pp-infolist-icon-inner span.pp-icon::before {
    font-size: 1.2em;
}

.wm-info-list-title .pp-infolist-title .pp-infolist-title-text {
    font-family: var(--wm-font-body);
    font-weight: 500;
    font-size: 1.22rem;
}

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

.fl-module-pp-infolist .pp-infolist-title a,
.fl-module-pp-infolist .pp-list-item .pp-infolist-title a span {
    color: var(--wm-primary);
    text-decoration: underline;
}
.fl-module-pp-infolist .pp-infolist-title a:hover,
.fl-module-pp-infolist .pp-list-item .pp-infolist-title a:hover span{
    color: var(--wm-hover);
}





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

/** Box **/

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

.wm-alert-attention .pp-infobox {
    background: var(--wm-secondary);
    border: none;
    color: var(--wm-text-light);
}

.wm-alert-ok .pp-infobox {
    background: var(--wm-bg-light);
    border: none;
    color: var(--wm-text-dark);
}


/** Icon **/

.wm-styled-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-styled-info-box .pp-icon-wrapper .pp-infobox-icon-inner {
    width: 60px;
    height: auto;
    text-align: center;
}

.wm-styled-info-box .pp-infobox-icon-inner span.pp-icon,
.wm-styled-info-box .pp-infobox-icon-inner span.pp-icon::before {
    font-size: 2.88rem;
}

/*uncomment if icon has different colour than text */
/*.wm-alert-attention .pp-infobox-icon-inner span.pp-icon {
    color: var(--wm-text-light);
}*/
.wm-alert-ok .pp-infobox-icon-inner span.pp-icon {
    color: var(--wm-primary);
}


/** Text **/

.wm-styled-info-box .pp-infobox-title-prefix {
    font-size: 14px;
}

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

.wm-styled-info-box .pp-infobox-title-wrapper .pp-infobox-title {
    margin-top: 0;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 1.22rem;
}


/** Responsive **/

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





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

/*** Modal Body ***/

.pp-modal-wrap .pp-modal-container {
    background-color: var(--wm-overlay);
}

.pp-modal-wrap .pp-modal-container .pp-modal {
    background-color: var(--wm-bg-light-alt);
}

.pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-body {
    margin: 40px 0;
}


/*** 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-primary);
}
.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;
}





/*--------------------------------*/
/*        NUMBER COUNTERS         */
/*--------------------------------*/

/** Number **/

.wm-styled-number-counter .fl-number .fl-number-text .fl-number-string, 
.wm-styled-number-counter .fl-number .fl-number-text .fl-number-string span {
    font-size: 1.66rem;
}


/** Circle **/

.wm-styled-number-counter .svg-container .svg circle.fl-bar-bg {
    stroke: var(--wm-neutral);
}

.wm-styled-number-counter .svg-container .svg circle.fl-bar {
    stroke: var(--wm-primary);
}


/** Bar **/

.wm-styled-number-counter .fl-number .fl-number-text .fl-number-bar .fl-number-string {
    padding-right: 10px;
}

.wm-styled-number-counter .fl-number-bars-container {
    background-color: var(--wm-neutral);
}
.wm-styled-number-counter .fl-number-bar {
    background-color: var(--wm-primary);
    color: var(--wm-text-light);
}





/*--------------------------------*/
/*          POST MODULES          */
/*--------------------------------*/

/*** BB RESETS ***/

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

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



/*** BASE STYLES ***/

/** Caption **/

.wm-styled-posts .post-image-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
}

/** Generic Links **/
.wm-styled-posts a{
    text-decoration: none!important;
}
.wm-styled-posts a:active,
.wm-styled-posts a:visited{
    color:var(--wm-text-light);
}

/** Text Box **/

.wm-styled-posts .fl-post-grid-text {
    padding: 20px;
}

/** Title **/

.wm-styled-posts .fl-post-grid-title {
    font-family: var(--wm-font-body);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.wm-styled-posts .fl-post-grid-title a {
    color: var(--wm-text-dark);
}
.wm-styled-posts .fl-post-grid-title a:hover {
    color: var(--wm-hover);
}


/** Date **/

.wm-styled-posts .fl-post-grid-date {
    font-size: 0.89rem;
    margin-top: 5px;
}


/** Excerpt **/

.wm-styled-posts .fl-post-grid-excerpt {
    font-size: 1rem;
    margin-top: 15px;
}


/** Read More **/

.wm-styled-posts .fl-post-more-link {
    width: auto;
    text-align: left;
    margin-top: 0;
}

.wm-styled-posts .fl-post-more-link a {
    background: none !important;
    border: none !important;
    text-decoration: underline;
    display: inline;
    width: auto;
    font-weight: 400;
    text-transform: none;
    padding: 0px !important;
    border-radius: 0px;
    color: var(--wm-text-dark);
}
.wm-styled-posts .fl-post-more-link a:hover {
    color: var(--wm-hover);
}


/** Load More Button + Pagination **/

.wm-styled-posts .fl-builder-pagination-load-more {
    padding-top: 0;
    padding-bottom: 30px;
}

.wm-styled-posts .fl-builder-pagination {
    padding: 0;
}


/** Responsive **/
@media only screen and (max-width: 1400px) {
    .wm-styled-posts .fl-post-grid-title {
        font-size: 22px;
    }
}
@media only screen and (max-width: 991px){
    .wm-styled-posts .fl-post-grid-title {
        font-size: 20px
    }
}
@media only screen and (max-width: 768px) {
    .wm-styled-posts .fl-post-grid-post {
        height: auto !important;
    }
    
    /* Limit width of post columns */
    .wm-styled-posts .fl-post-grid-post,
    .wm-styled-posts .fl-post-feed-post,
    .wm-post-slider .pp-content-post-carousel {
        width: 100%;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    .wm-post-slider .pp-content-posts {
        display: flex;
        justify-content: center;
    }
    
    .wm-styled-posts .fl-post-grid-title {
        font-size: 22px;
    }
}



/*--------------------------------*/





/*--------------------------------*/

/*** POSTS - PLAIN LIST ***/

.wm-posts-list .fl-post-grid-text {
    padding: 0;
}

.wm-posts-list .fl-post-grid-title {
    font-family: var(--wm-font-body);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    padding-bottom: 0px;
    display: inline-block;
    text-decoration: underline;
}





/*--------------------------------*/
/*          STAR RATINGS          */
/*--------------------------------*/

.wm-styled-star-rating .pp-rating {
    text-align: inherit;
}

.fl-module-pp-star-rating.wm-styled-star-rating .pp-rating i {
    color: var(--wm-neutral);
    font-size: 2rem;
}
.fl-module-pp-star-rating.wm-styled-star-rating .pp-rating i.pp-star-full::before {
    color: var(--wm-tertiary);
}





/*--------------------------------*/
/*       TABLE OF CONTENTS        */
/*--------------------------------*/

/*** LIST STYLE ***/


.wm-table-of-content-list .pp-toc-container .pp-toc-header .pp-toc-header-title {
    color: inherit;
}

/*.wm-table-of-content-list .pp-toc-container .pp-toc-header.pp-toc-collapsed {
    background-color: #fff;
    color: var(--wm-text-dark);
}*/

.wm-table-of-content-list .pp-toc-container .pp-toc-header {
    background-color: #fff;
    color: var(--wm-text-dark);
    padding: 20px 40px;
}
.wm-table-of-content-list .pp-toc-container .pp-toc-header:hover {
    color: var(--wm-hover);
}

.wm-table-of-content-list .pp-toc-container .pp-toc-header-title,
.wm-table-of-content-list .pp-toc-container .header-icon-collapse,
.wm-table-of-content-list .pp-toc-container .header-icon-expand {
    font-weight: 500;
    font-size: 1.66rem;
}

.wm-table-of-content-list .pp-toc-separator {
    display: none;
}

.wm-table-of-content-list .pp-toc-body {
    background-color: var(--wm-bg-light-alt);
    padding: 30px 40px;
    border: 1px solid var(--wm-primary);
    border-left: 0;
    border-right: 0;
}

.wm-table-of-content-list .pp-toc-body li ul {
    padding-left: 1.375rem;
}

.wm-table-of-content-list .pp-toc-body li .pp-toc-listicon-wrapper span {
    padding-right: 10px;
}

.wm-table-of-content-list .pp-toc-body li .pp-toc-listicon-wrapper span,
.wm-table-of-content-list .pp-toc-body li .pp-toc-listicon-wrapper span::before {
    font-size: 0.89rem;
    color: var(--wm-primary);
}

.wm-table-of-content-list .pp-toc-container li a {
    text-decoration: none !important;
    color: var(--wm-text-dark);
    font-weight: 400;
}
.wm-table-of-content-list .pp-toc-container li a:hover,
.wm-table-of-content-list .pp-toc-body li .pp-toc-listicon-wrapper:hover span,
.wm-table-of-content-list .pp-toc-body li .pp-toc-listicon-wrapper:hover span::before {
    color: var(--wm-hover);
}


/** Responsive **/

@media only screen and (max-width: 550px) {
    .wm-table-of-content-list .pp-toc-container .pp-toc-header {
        padding: 20px 30px;
    }
    .wm-table-of-content-list .pp-toc-body {
        padding: 30px 40px;
    }
}




/*--------------------------------*/

/*** BUTTON STYLE ***/
/* don't use for hierachical displays */

.wm-table-of-content-buttons .fl-module-content {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

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

.wm-table-of-content-buttons .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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.wm-table-of-content-buttons .pp-toc-container .pp-toc-list-wrapper li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    margin: 0 10px 20px;
}

.wm-table-of-content-buttons .pp-toc-container .pp-toc-list-wrapper li .pp-toc-listicon-wrapper {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wm-table-of-content-buttons .pp-toc-body li .pp-toc-listicon-wrapper span {
    padding-right: 8px;
}

.wm-table-of-content-buttons .pp-toc-container .pp-toc-list-wrapper li a {
    color: inherit;
    white-space: nowrap;
    text-decoration: none;
}





/*--------------------------------*/
/*             TABLES             */
/*--------------------------------*/

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

.fl-module-pp-table .tablesaw-cell-label {
    font-family: var(--wm-font-body);
    font-size: 1rem;
    text-transform: none;
    color: var(--wm-text-dark);
    font-weight: 500;
    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 Styles **/

/* 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: #fff;
    border-bottom: 1px solid var(--wm-primary);
    color: var(--wm-text-dark);
    font-size: 1.22rem;
    font-weight: 500;
    padding: 20px;
    text-transform: none;
}

.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: 1px solid var(--wm-bg-light);
}


/* Body */

.wm-styled-table .pp-table-content tbody {
    border: 1px solid var(--wm-primary);
    border: none;
}
.wm-styled-table .pp-table-content tbody tr {
    border-bottom: 1px solid var(--wm-primary);
}

.wm-styled-table tbody tr:nth-child(2n+1) td {
    background: #fff;
}
.wm-styled-table tbody tr:nth-child(2n) td {
    background: #fff;
}
.wm-styled-table tbody tr:hover td {
    background: var(--wm-bg-light-alt);
}

.wm-styled-table tbody tr td {
    font-size: 1rem;
    line-height: 1.6;
    padding: 20px;
}

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


/** Make Table Content Inline on Mobile **/
/* uncomment for inline aligment - may need to adjust the width settings on a per table basis */

@media (max-width: 39.9375em) {
    .wm-styled-table tbody tr td {
        padding: 10px 40px;
    }
    .wm-styled-table .pp-table-content td {
        text-align: left;
    }
    .wm-styled-table .tablesaw-stack td .tablesaw-cell-label {
        display: inline-block;
        width: 120px;
    }
    .wm-styled-table table.tablesaw-stack tr td .tablesaw-cell-content {
        display: inline-block;
        width: calc(100% - 120px);
        padding-top: 0;
    }
    .wm-styled-table .pp-table-content td img {
        margin: 0;
        width: 100%;
        max-width: 150px;
    }
}
@media (max-width: 550px) {
    .wm-styled-table tbody tr td {
        padding: 10px 30px;
    }
}





/*--------------------------------*/
/*              TABS              */
/*--------------------------------*/

/** Site Overwrites **/

.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;
}

/* Fix Where Tab Content Comes from a 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;
}

.wm-styled-tabs .pp-tabs-label:focus > .pp-tab-label-inner {
    outline: none;
}


/** Base Styles **/

/* Labels */

.wm-styled-tabs .pp-tabs-horizontal .pp-tabs-labels .pp-tabs-label {
    padding: 20px;
    margin: 0;
    text-align: center;
}

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

.wm-styled-tabs .pp-tabs .pp-tabs-label {
    background-color: var(--wm-bg-light-alt);
    color: var(--wm-text-dark);
    border: none;
}
.wm-styled-tabs .pp-tabs .pp-tabs-label.pp-tab-active {
    background-color: #fff;
    /*color: var(--wm-text-light);*/
}
.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: var(--wm-hover);
    color: var(--wm-text-light);
}

.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-icon {
    margin-right: 10px;
}
.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-icon,
.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-icon::before {
    width: auto;
    font-size: 1.2em;
    color: var(--wm-primary);
    margin-right: 6px;
}
.wm-styled-tabs .pp-tabs .pp-tabs-label:hover .pp-tab-icon,
.wm-styled-tabs .pp-tabs .pp-tabs-label:hover .pp-tab-icon::before {
    color: var(--wm-text-light);
}

.wm-styled-tabs .pp-tabs-panel-label .pp-toggle-icon {
    color: inherit;
    opacity: 1;
    font-size: 1rem;
}

.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-title {
    font-weight: 500;
    text-transform: none;
    font-size: 1.22rem;
}


/* Content */

.wm-styled-tabs .pp-tabs-panels,
.wm-styled-tabs .pp-tabs-panel {
    border-color: var(--wm-primary);
    border-left: 0;
    border-right: 0;

}

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


/** Stretched Label Styles **/

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

@media only screen and (min-width: 768px) {
    .wm-tabs-stretched .pp-tabs-label .pp-tab-label-flex {
        justify-content: center;
    }
}


/** Responsive **/

@media only screen and (max-width: 768px) {
    .wm-styled-tabs .pp-tabs-panel {
        margin-bottom: 20px;
    }
    
    .wm-styled-tabs .pp-tabs .pp-tabs-label,
    .wm-styled-tabs .pp-tabs-panel-label {
        padding: 0;
        background: none !important;
    }
    
    .pp-tabs-panel .pp-tabs-label .pp-tab-label-inner,
    .wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-title {
        font-size: 1.66rem;
    }
    .wm-styled-tabs .pp-tabs-panel-label .pp-toggle-icon {
        font-size: 0.8em;
    }
    
    .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,
    .wm-styled-tabs .pp-tabs .pp-tabs-label:hover .pp-tab-icon,
    .wm-styled-tabs .pp-tabs .pp-tabs-label:hover .pp-tab-icon::before{
        color: var(--wm-hover);
    }
    
    .wm-styled-tabs .pp-tabs-panels .pp-tabs-panel-content {
        border: none;
        padding: 20px 0 25px 0;
    }
    
    .wm-tabs-stretched .pp-tabs-panels {
        border: none;
    }
    .wm-tabs-stretched .pp-tabs-panels .pp-tabs-panel-content {
        position: relative;
        left: 1px;
    }
}






/*--------------------------------*/
/*          TEAM MEMBERS          */
/*--------------------------------*/

.wm-styled-team-member .pp-member-wrapper {
    background: var(--wm-bg-light);
    padding: 0px;
}

.wm-styled-team-member .pp-member-wrapper .pp-member-content {
    padding: 20px 30px;
    text-align: center;
}

.wm-styled-team-member .pp-member-wrapper .pp-member-name {
    font-family: var(--wm-font-body);
    font-size: 1.22rem;
    font-weight: 500;
    margin: 10px 0;
}
.wm-styled-team-member .pp-member-wrapper a .pp-member-name {
    color: var(--wm-primary);
}
.wm-styled-team-member .pp-member-wrapper a:hover .pp-member-name {
    color: var(--wm-hover);
}

.wm-styled-team-member .pp-member-content .pp-member-designation {
    color: var(--wm-text-dark);
    font-weight: 600;
    margin: 0 0 20px;
}

.wm-styled-team-member .pp-member-wrapper .pp-member-description {
    color: var(--wm-text-dark);
    font-weight: 400;
    margin: 0 0 20px;
}

.wm-styled-team-member .pp-member-wrapper .pp-member-description a {
    text-decoration: underline;
}

.wm-styled-team-member .pp-member-content .pp-member-social-icons li {
    margin: 5px;
}

.wm-styled-team-member .pp-member-content .pp-member-social-icons li a {
    font-size: 1.22rem;
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
}






/*--------------------------------*/
/*    VIDEOS + VIDEO GALLERIES    */
/*--------------------------------*/

/** Play Icon **/

.wm-styled-video .pp-video-play-icon {
    border: 2px solid var(--wm-text-light);
    background: var(--wm-primary);
}
.wm-styled-video .pp-video-play-icon:hover {
    background: var(--wm-hover);
}
.wm-styled-video .pp-video-play-icon svg,
.wm-styled-video .pp-video-play-icon:hover svg {
    fill: var(--wm-text-light);
}


/** Video Lightbox **/

.fl-button-lightbox-wrap .mfp-container .mfp-content {
    background: none;
}
.fl-button-lightbox-wrap .mfp-container .mfp-content iframe {
    border: none;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}

.mfp-wrap.fl-button-lightbox-wrap .mfp-container .mfp-close, 
.mfp-wrap.fl-button-lightbox-wrap .mfp-container .mfp-close:hover {
    color: var(--wm-text-light) !important;
    top: -20px !important;
    right: -10px;
}
.mfp-wrap.fl-button-lightbox-wrap .mfp-container .mfp-close:hover {
    color: var(--wm-primary) !important;
}

.fancybox-inner .fancybox-close-small {
    opacity: 1;
}
.fancybox-inner .fancybox-close-small svg path {
    fill: #fff;
}
.fancybox-inner .fancybox-close-small:hover svg path {
    fill: var(--wm-hover);
}


/** Gallery Descriptions **/

.wm-styled-video .pp-video-gallery .pp-video-info {
    text-align: center;
    padding-top: 5px;
}

/*** POSTS - GRID WITH CONTENT BELOW IMAGE ***/

/** Box Wrap **/

.wm-styled-posts.wm-post-grid-below .fl-post-grid-text {
    position: relative;
    padding: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
}


/** Image Box **/

.wm-styled-posts.wm-post-grid-below .fl-post-grid-top {
    position: relative;
    aspect-ratio: 5/6;
    overflow: hidden;
    color: var(--wm-text-light);
}


/* Image */

.wm-styled-posts.wm-post-grid-below .fl-post-grid-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transform: scale(1.001);
    -webkit-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
}

.wm-styled-posts.wm-post-grid-below .pp-content-post:hover .fl-post-grid-image {
    transform: scale(1.05);
}

/* Link Overlay */

.wm-styled-posts.wm-post-grid-below .overlay-link {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: relative;
    display: inline-block;
}

/* Colour Overlay 

.wm-styled-posts.wm-post-grid-below .fl-post-grid-text .fl-post-grid-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background-image: linear-gradient(180deg, rgba(8,79,115,1) 5%, rgba(8,79,115,0) 100%);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}
.wm-styled-posts.wm-post-grid-below .fl-post-grid-text:hover .fl-post-grid-overlay {
    opacity: 1;
}*/


/* Wishlist Icon */

.wm-styled-posts.wm-post-grid-below .wm-add {
    position: absolute;
    top: 10px;
    right: 10px;
}

.wm-styled-posts.wm-post-grid-below .wm-add i {
    font-size: 1.66rem;
    cursor: pointer;
}

.wm-styled-posts.wm-post-grid-below .wm-add i:hover,
.wm-styled-posts.wm-post-grid-below .wm-add i:focus {
    font-weight: 900;
}


/** Title Box **/

.wm-styled-posts.wm-post-grid-below .fl-post-grid-title-box {
    position: relative;
    margin-top: -1px;
    background: none;
    flex-grow: 1;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* Excerpt */

.wm-styled-posts.wm-post-grid-below .fl-post-grid-excerpt {
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 10px;
    flex-grow: 1;
}


/* Meta Data */

.wm-styled-posts.wm-post-grid-below .fl-post-grid-meta {
    display: none;
}

.wm-styled-posts.wm-post-grid-below .fl-post-grid-meta span:not(:last-child)::after {
    content: '|';
    padding: 0 5px;
}

.wm-styled-posts.wm-post-grid-below .fl-post-grid-meta {
    font-size: 0.89rem;
    padding-top: 10px;
    font-weight: 500;
}

.wm-styled-posts.wm-post-grid-below .fl-post-grid-meta .location i {
    color: var(--wm-primary);
    padding-right: 8px;
    font-size: 1.2em;
}


/** Responsive **/

@media only screen and (max-width: 768px) {
    .wm-styled-posts.wm-post-grid-below .fl-post-grid-title-box {
        padding: 30px;
    }
}

@media only screen and (max-width: 620px) {
    .wm-styled-posts.wm-post-grid-below .pp-content-post-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
        grid-gap: 60;
    }
}

/*--------------------------------*/

/*** POSTS - GRID TOWN PAGES - VARIATION OF GRID WITH CONTENT BELOW IMAGE ***/

/** Image Box **/

.wm-styled-posts.wm-post-grid-below.towns .fl-post-grid-top {
    position: relative;
    aspect-ratio: 1/1;
}


/** Icon Box **/

.wm-styled-posts.wm-post-grid-below.towns .fl-post-grid-icon-box {
    margin-top: 15%;
  position: absolute;
  padding-bottom: 100%;
  width: 100%;
}

.wm-styled-posts.wm-post-grid-below.towns .town-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
}

.wm-styled-posts.wm-post-grid-below.towns .town-icon img {
    z-index: 1;
    max-width: 120px;
}


/** Title Box **/

.wm-styled-posts.wm-post-grid-below.towns .fl-post-grid-title-box {
    padding: 30px;
    padding-top: 25%;
}

.towns .fl-post-grid-title {
    font-size: 22px;
    text-align: center;
}


/** Responsive **/

 @media only screen and (max-width: 1200px) and (min-width: 992px) {
    .wm-styled-posts.wm-post-grid-below.towns .town-icon {
        padding: 0 40px;
    }
 }




/*--------------------------------*/


/*** POSTS - GRID WITH CONTENT OVERLAY & BOXED TITLE ***/

/** Box Wrap **/

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text {
    position: relative;
    padding: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
}


/** Image Box **/

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-top {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    color: var(--wm-text-light);
}


/* Image */

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transform: scale(1.001);
    -webkit-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
}

.wm-styled-posts.wm-post-grid-overlay .pp-content-post:hover .fl-post-grid-image {
    transform: scale(1.05);
}


/* Colour Overlay */

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text .fl-post-grid-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background-image: linear-gradient(180deg, rgba(8,79,115,1) 5%, rgba(8,79,115,0) 100%);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}
.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text:hover .fl-post-grid-overlay {
    opacity: 1;
}


/* Excerpt Overlay */

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-excerpt {
    color: var(--wm-text-light);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4em;
    opacity: 0;
    top: 0px;
    position: relative;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, top 0.3s ease-out;
    margin: 0;
    padding: 4rem 40px 40px;
}
.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text:hover .fl-post-grid-excerpt {
    opacity: 1;
}


/* Wishlist Icon */

.wm-styled-posts.wm-post-grid-overlay .wm-add {
    position: absolute;
    top: 10px;
    right: 10px;
}
.wm-styled-posts .wm-add a{
    position: static;
    transform: unset!important;
    outline: none!important;
    padding:10px;
}

.wm-styled-posts.wm-post-grid-overlay .wm-add i {
    font-size: 1.66rem;
    cursor: pointer;
}

.wm-styled-posts.wm-post-grid-overlay .wm-add i:hover,
.wm-styled-posts.wm-post-grid-overlay .wm-add i:focus {
    font-weight: 900;
}


/** Title Box **/
.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text > a{
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}
.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text > a *:not(i),
.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text > a *:not(i):hover{
    color:var(--wm-text-dark);
}
.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text h3 span{
    transition-duration: 300ms;
}
.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-text:hover h3 span{
    color: var(--wm-hover);
}

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-title-box {
    position: relative;
    margin-top: -1px;
    background: var(--wm-bg-light);
    aspect-ratio: 3/1;
    flex-grow: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Meta Data */

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-meta {
    font-size: 0.89rem;
    padding: 20px 0 0;
    font-weight: 500;
}

.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-meta .location i,
.wm-styled-events .fl-post-grid-event-date i{
    color: var(--wm-primary);
    padding-right: 8px;
    font-size: 1.2em;
}


/** Responsive **/

@media only screen and (max-width: 768px) {
    .wm-styled-posts.wm-post-grid-overlay .fl-post-grid-excerpt {
        padding: 4rem 30px 20px 30px;
    }
    .wm-styled-posts.wm-post-grid-overlay .fl-post-grid-title-box {
        padding: 30px;
        aspect-ratio: unset;
    }
}

@media only screen and (max-width: 620px) {
    .wm-styled-posts.wm-post-grid-overlay .pp-content-post-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
        grid-gap: 60px;
    }
}





/*--------------------------------*/

/*** POSTS - SLIDER ADJUSTMENTS GENERIC ***/
/*** Spacing and Overflow Areas ***/

/** Box **/

.wm-styled-posts.wm-post-slider .fl-module-content {
    margin: 20px 0 !important;
}

.wm-styled-posts.wm-post-slider .pp-content-post-carousel {
    overflow: hidden;
    margin: 0;
}
.wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-carousel {
    overflow: visible;
}

.wm-styled-posts.wm-post-slider .owl-item {
    pointer-events: none;
}
.wm-styled-posts.wm-post-slider .owl-item.active {
    pointer-events: auto;
}

/** Arrow Nav **/

.wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button {
    padding:0 !important;
    width: 32px;
    height: 32px;
}

.wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-prev {
    left: 84px;
}
.wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-next {
    right: 84px;
}

/*.wm-post-slider.wm-post-grid-overlay .pp-content-post-carousel .owl-nav button svg {
    height: 40px;
    width: 40px;
}
.wm-post-slider.wm-post-grid-overlay .pp-content-post-carousel .owl-nav button:hover svg {
    background: var(--wm-tertiary);
}*/

/*.wm-post-slider.wm-post-grid-overlay .pp-content-post-carousel .owl-nav.pp-carousel-nav button svg path {
    font-size: 32px;
    height: 100%;
    width: 100%;
    stroke-width: 0px;
    stroke: var(--wm-text-light);
    color: var(--wm-text-light);
    line-height: 1;
}*/

.wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
    margin: 0 100px;
    width: calc(100% - 200px);
}



/** Responsive **/

@media only screen and (max-width: 1400px) {
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 80px;
        width: calc(100% - 160px);
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-prev {
        left: 64px;
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-next {
        right: 64px;
    }
}

@media only screen and (max-width: 768px) {
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel {
        max-width: 100%;
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 140px;
        width: calc(100% - 280px);
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-prev {
        left: 124px;
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-next {
        right: 124px;
    }
    .wm-styled-posts.wm-post-slider .pp-content-carousel-post{
        /*margin-left: 30px;
        margin-right: 30px;*/
    }
}
@media only screen and (max-width: 620px) {
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 100px 0 -10px;
        width: calc(100% - 90px);
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-prev {
        left: 16px;
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-next {
        right: 16px;
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-theme .owl-dots {
        margin-left: 110px;
    }
}
@media only screen and (max-width: 450px) {
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 30px 0 -10px;
        width: calc(100% - 30px);
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-theme .owl-dots {
        margin-left: 0px;
    }
}


/*--------------------------------*/

/*** POSTS - SLIDER ADJUSTMENTS for GRID WITH CONTENT BELOW IMAGE ***/

/** Arrow Nav **/

.wm-post-slider.wm-post-grid-below .pp-content-post-carousel .owl-nav button {
    top: 33%;
}


/** Responsive **/

@media only screen and (max-width: 1400px) {
    .wm-post-slider.wm-post-grid-below .pp-content-post-carousel .owl-nav button {
        top: 30%;
    }
}
 @media only screen and (max-width: 1200px) and (min-width: 992px) {   
    .wm-styled-posts.wm-post-grid-below .fl-post-grid-title-box {
        padding: 30px;
    }
    .wm-styled-posts.wm-post-grid-below .fl-post-grid-excerpt {
        font-size: 0.89rem;
    }
    .wm-post-slider.wm-post-grid-below .pp-content-post-carousel .owl-nav button {
        top: 25%;
    }
}
 @media only screen and (max-width: 820px) and (min-width: 768px) {   
    .wm-styled-posts.wm-post-grid-below .fl-post-grid-title-box {
        padding: 30px;
    }
    .wm-styled-posts.wm-post-grid-below .fl-post-grid-excerpt {
        font-size: 0.89rem;
    }
    .wm-post-slider.wm-post-grid-below .pp-content-post-carousel .owl-nav button {
        top: 25%;
    }
}



/*--------------------------------*/

/*** POSTS - SLIDER ADJUSTMENTS for GRID TOWN PAGES - VARIATION OF GRID WITH CONTENT BELOW IMAGE ***/

/** Responsive **/

@media only screen and (max-width: 620px) {
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel {
        max-width: 100%;
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 140px;
        width: calc(100% - 280px);
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .owl-nav button.owl-prev {
        left: 124px;
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .owl-nav button.owl-next {
        right: 124px;
    }
}
@media only screen and (max-width: 520px) {
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel {
        max-width: 100%;
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 100px;
        width: calc(100% - 200px);
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .owl-nav button.owl-prev {
        left: 84px;
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .owl-nav button.owl-next {
        right: 84px;
    }
}
@media only screen and (max-width: 450px) {
    .wm-styled-posts.wm-post-slider.towns .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    .wm-styled-posts.wm-post-slider.towns .pp-content-post-carousel .owl-theme .owl-dots {
        margin-left: 0px;
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .owl-nav button.owl-prev {
        left: 16px;
    }
    .wm-styled-posts.wm-post-grid-below.towns .pp-content-post-carousel .owl-nav button.owl-next {
        right: 16px;
    }
}











/*--------------------------------*/

/*** POSTS - SLIDER ADJUSTMENTS for GRID WITH CONTENT OVERLAY & BOXED TITLE ***/

/** Arrow Nav **/

.wm-post-slider.wm-post-grid-overlay .pp-content-post-carousel .owl-nav button {
    top: 38%;
}


/** Responsive **/

@media only screen and (max-width: 1500px) and (min-width: 1400px) {
    .wm-post-slider.wm-post-grid-overlay .fl-post-grid-excerpt {
        padding-top: 3.5rem;
    }
    .wm-post-slider.wm-post-grid-overlay .fl-post-grid-excerpt {
        font-size: 0.89rem;
    }
}
 @media only screen and (max-width: 1150px) and (min-width: 992px) {   
    .wm-styled-posts.wm-post-grid-overlay .fl-post-grid-excerpt {
        font-size: 0.89rem;
        padding: 3.5rem 30px 20px;
    }
}


















/*--------------------------------*/
/*--------------------------------*/
/*--------------------------------*/


/*** xxxxx POSTS - 2 COLUMNS ***/

/** Box **/

.wm-posts-2-col .flex-post-grid-feed-content {
    background: var(--wm-bg-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    /*border-radius: 5px;
    overflow: hidden;*/
}

.wm-posts-2-col .fl-post-grid-image {
    width: 35%;
}
.wm-posts-2-col .fl-post-grid-text {
    width: 65%;
    padding: 20px 20px 30px;
}
@media only screen and (min-width: 1200px) {
    .wm-posts-2-col .fl-post-grid-text {
        padding: 3.75rem;
        /* uncomment to enable min-height */
        /*min-height: 350px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;*/ 
    }
}
@media only screen and (max-width: 992px) {
    .wm-posts-2-col .fl-post-grid-image,
    .wm-posts-2-col .fl-post-grid-text {
        width: 50%;
    }
}
@media only screen and (max-width: 768px) {
    /*.wm-posts-2-col .fl-post-feed-post {
        max-width: 100%;
    }*/
    
    .wm-posts-2-col .flex-post-grid-feed-content{
        display: block;
    }
    .wm-posts-2-col .fl-post-grid-image,
    .wm-posts-2-col .fl-post-grid-text {
        width: 100%;
    }
    
    .wm-posts-2-col .post-image-container {
        width: 100%;
        height: 0;
        padding-top: 75%;
    }
    
    .wm-posts-2-col .post-image-container a {
        position: absolute;
        top: 0;
        left: 0;
    }
}


/** Image **/

.wm-posts-2-col .post-image-container {
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
}

.wm-posts-2-col .post-image-wrap {
    width: 100%;
    height: 100%;
}

.wm-posts-2-col .post-image-container a {
    display: block;
    width: 100%;
    height: 100%;
}


/** Title **/

/*@media only screen and (min-width: 768px) {
    .wm-posts-2-col .fl-post-grid-title {
        font-size: 2rem;
    }
}*/

/* uncomment to overwrite link colours */
/*.wm-posts-2-col.fl-post-grid-title a {
    color: var(--wm-text-heading);
}
.wm-posts-2-col .fl-post-grid-title a:hover {
    color: var(--wm-primary);
}*/


/** Read More **/

.wm-posts-2-col .fl-post-more-link {
    text-align: left;
}


/** Pagination **/

.wm-styled-posts.wm-posts-2-col .fl-builder-pagination {
    padding-top: 60px;
}



/*--------------------------------*/

/*** xxxxx POSTS - CONTENT BOX BELOW ***/

/** Box **/

.wm-posts-box-below .fl-post-grid-post {
    background: var(--wm-bg-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*border-radius: 5px;*/
}


/** Image **/

.wm-posts-box-below .fl-post-grid-image {
    position: relative;
}

/* uncomment to add overlay to image on hover */
/*.wm-posts-box-below .fl-post-grid-image:hover a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background: var(--wm-overlay) !important;
}*/


/** Text Box **/

.wm-posts-box-below .fl-post-grid-text-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.wm-posts-box-below .fl-post-grid-text {
    position: relative;
    padding: 30px 20px;
    height: 100%;
}


/** Title **/

/* uncomment to overwrite link colours */
/*.wm-posts-box-below .fl-post-grid-title a {
    color: var(--wm-text-heading);
}
.wm-posts-box-below .fl-post-grid-title a:hover {
    color: var(--wm-primary);
}*/

.wm-posts-box-below .fl-post-grid-excerpt {
    margin-top: 10px;
}


/** Read More **/

/* comment out if you don't want to bottom align the link */
.wm-posts-box-below .fl-post-more-link {
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-box-flex: 4;
    -ms-flex-positive: 4;
    flex-grow: 4;
}



/*--------------------------------*/

/*** xxxxxx POSTS - SLIDER WITH CONTENT BOX BELOW ***/

/** Box 

.wm-post-slider .pp-content-post {
    background: var(--wm-bg-light);
}**/


/** Image 

.wm-post-slider .fl-post-grid-image {
    position: relative;
}**/


/** Text Box 

.wm-post-slider .fl-post-grid-text {
    position: relative;
    padding: 30px 20px;
}**/


/** Title **/

/* uncomment to overwrite link colours */
/*.wm-post-slider .fl-post-grid-title a {
    color: var(--wm-text-heading);
}
.wm-post-slider .fl-post-grid-title a:hover {
    color: var(--wm-primary);
}*/


/** Arrow Nav 

.wm-post-slider .pp-content-post-carousel .owl-nav button {
    padding:0 !important;
    width: 32px;
    height: 32px;
}

.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-prev {
    left:0;
}
.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-next {
    right:0;
}

.wm-post-slider .pp-content-post-carousel .owl-nav button svg {
    height: 50px;
    width: 32px;
}

.wm-post-slider .pp-content-post-carousel .owl-nav button path {
    font-size: 32px;
    height: 100%;
    width: 100%;
    stroke-width: 20;
    line-height: 1;
}

.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
    margin: 0 -20px;
    width: calc(100% + 40px);
}**/



/*--------------------------------*/

/*** xxxxxx POSTS - TITLE BELOW ***/

/** Box **/

.wm-posts-title-below .fl-post-grid-post {
    background: var(--wm-bg-light);
    color: var(--wm-text-dark);
    transition: all 0.1s ease-in;
    /*border-radius: 5px;*/
}

.wm-posts-title-below .fl-post-grid-post:hover {
    background: var(--wm-hover);
    color: var(--wm-text-light);
}

.wm-posts-title-below .fl-post-grid-text,
.wm-posts-title-below .fl-post-grid-text-content,
.wm-posts-title-below.fl-post-grid-title,
.wm-posts-title-below .fl-post-grid-title a {
    width: 100%;
    height: 100%;
    padding: 0;
}


/** Image **/

.wm-posts-title-below .fl-post-grid-image {
    position: relative;
}

/* uncomment to add overlay to image on hover */
/*.wm-posts-title-below .fl-post-grid-image:hover a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    background: var(--wm-overlay) !important;
}*/


/** Title **/

/*.wm-posts-title-below .fl-post-grid-title {
    text-align: center;
}*/

/* uncomment to overwrite link colours */
.wm-posts-title-below .fl-post-grid-title a {
    color: var(--wm-text-dark);
}
.wm-posts-title-below .fl-post-grid-title a:hover,
.wm-posts-title-below .fl-post-grid-post:hover .fl-post-grid-title a {
    color: var(--wm-text-light);
}

.wm-posts-title-below .fl-post-grid-title a {
    display: inline-block;
    padding: 10px 20px;
}



/*--------------------------------*/

/*** xxxxx POSTS - TITLE OVERLAID ***/

/** Caption **/

.wm-posts-title-overlay .post-image-caption {
    bottom: unset;
    top: 0;
    z-index: 1;
}


/** Box **/

.wm-posts-title-overlay .fl-post-grid-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    transition: all 0.1s ease-in;
    /*border-radius: 5px;*/
}

.wm-posts-title-overlay .fl-post-grid-text:hover {
    background: var(--wm-overlay);
}

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


/** Title **/

.wm-posts-title-overlay .fl-post-grid-text .fl-post-grid-title a,
.wm-posts-title-overlay .fl-post-grid-text .fl-post-grid-title a:hover {
    color: var(--wm-text-light);
    display: inline-block;
    position: relative;
}

.wm-posts-title-overlay .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);
}

/* large h2 + feature headings */
.wm-large-heading h2,
.wm-feature-heading,
.wm-feature-heading h3,
.wm-feature-heading h2{
    font-family: var(--wm-font-heading);
}
.wm-post-page-title h1{
    font-family: var(--wm-font-body);
    font-weight: 500;
}

@media only screen and (min-width: 991px) {
    .wm-large-heading h2{
        font-size: 2.9rem;
    }
}


/* banner slider */
/* Listing Gallery Slider */
.wm-banner-image-slider-row{
    overflow: hidden;
}
.wm-banner-image-slider .pp-image-carousel{
    overflow: visible;
}
.wm-banner-image-slider .pp-image-carousel .pp-carousel-image-container,
.wm-banner-image-slider .pp-image-carousel{
    /*height: unset;*/
}
.wm-banner-image-slider .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image{
    object-fit: cover!important;
    height: unset;
    aspect-ratio: 4 / 3;
}

.wm-listing-image-slider .pp-image-overlay{
    transform:none!important;
    background: transparent;
    justify-content: flex-end;
    align-items: flex-end;
    bottom:10px;
    top: unset;
} 

@media only screen and (min-width:1100px){
    .wm-banner-image-slider .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image{
        aspect-ratio: 4 / 3;
    }
    .wm-banner-image-slider .pp-image-carousel .pp-carousel-image-container, .wm-banner-image-slider .fl-module-content .pp-image-carousel{
        height: 600px;
    }
}

@media (max-width: 769px){
    .wm-post-slider .owl-nav.pp-carousel-nav button, .wm-banner-image-slider .pp-image-carousel-wrapper .pp-swiper-button{
        display: none!important;
    }
}

/* map */
.wm-map-row{
    overflow: hidden;
}
.wm-map-row .fl-row-content > .fl-module-box{
    padding: 0;
}
/* drive times */
.wm-map-row .wm-map-drive-times-box{
    pointer-events: none;
    padding-top: 40px;
}
.wm-map-drive-times{
    pointer-events: all;
}
.wm-map-drive-times div{
    font-size: 14px;
    margin-top: 10px;
}
.wm-map-drive-times div strong{
    font-weight: 600;
    margin-right:5px;
}
.wm-map-drive-times .title{
    font-weight: 600;
    font-size: 16px;
}
/* map */
.wm-map-row .fl-module-box:nth-child(1){
    padding: 0;
}
.wm-map svg{
    height: 100vh;
    width: auto;
    margin-bottom: -100px;
    margin-top: -108px;
    margin-left: -60px;
    max-height: 960px;
}
.wm-map svg g:not(#LAND_MASS):not(#INSET_MAP):not(#ROADS):not(#BYRON_BAY){
    cursor: pointer;
}
.wm-map svg text{
    font-family: var(--wm-font-body);
    font-weight: 600;
    font-size: 20px;
}
.wm-map svg g polygon,
.wm-map svg g text:last-child{
    transition-duration: 300ms;
    opacity: 0;
    pointer-events: none;
}
.wm-map svg g:hover polygon,
.wm-map svg g:hover text,
.wm-map svg g.active polygon,
.wm-map svg g.active text{
    opacity: 1;
    pointer-events: all;
}
.wm-map svg g:hover text:nth-of-type(1),
.wm-map svg g.active text:nth-of-type(1){
    display: none;
}

/* town details */
.wm-map-towns .fl-html{
    display: grid;
    grid-template: 1fr / 1fr;
}
.wm-map-town-details{
    grid-column: 1;
    grid-row: 1;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition-duration: 300ms;
}
.wm-map-town-details.active{
    visibility: visible;
    opacity: 1;
    z-index: 0;
}
.wm-map-town-details img{
    aspect-ratio: 3 / 2 ;
    object-fit: cover;
    object-position: center;
}
.wm-map-town-details .wm-icon{
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: 20px;
}
.wm-map-town-details-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
}
.wm-map-town-details-content p{
    font-size: 16px;
}
.wm-back-to-map{
    display: none!important;
}

@media only screen and (max-width:769px){
    .wm-back-to-map{
        display: inline-block!important;
    }
}

/* map intro text */
.wm-map-town-details.wm-map-intro-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.wm-map-intro-text p{
    font-size: 1.25rem;
}
.wm-map-intro-text .wm-map-intro-tagline{
    font-style: italic;
    font-size: 1rem;
}
.wm-map-intro-tagline i{
    font-size: 1.3rem;
}

/*@media (max-width: 1400px){
    .fl-node-tka19uflqgph{
        width: 30%;
    }
}*/
@media (max-width: 1400px){
    .wm-map-drive-times-box img{
        display: none;
    }
    .wm-map .fl-html svg{
        margin-left: -200px;
    }
}
@media (max-width: 991px){
    .wm-map .fl-html svg{
        margin-left: -340px;
        margin-top: 0px;
    }
}
@media only screen and (max-width: 769px){
    div.fl-row-full-width.wm-map-row .fl-row-content.fl-row-fixed-width{
        padding: 0;
    }
    .wm-map .fl-html{
       overflow: hidden;
    }
    .wm-map .fl-html svg{
        margin-left: -270px;
    }
    #wm-map-towns{
        padding: 40px 0;
    }
    #wm-map-towns .fl-module-content{
        margin: 20px 0px;
    }
    .wm-map-intro-text{
        padding: 0 20px;
    }
    .wm-map-town-details{
        display: none;
    }
    .wm-map-town-details.active{
        display: block;
    }
}

@media (max-width: 769px){
    /*.fl-builder-content .wm-mobile-full a.fl-button{
        width: 100%;
    }*/
}

/* Half Row Filters + Slider */
.wm-half-row-slider-row.fl-module,
.wm-half-row-slider-row > .fl-module{
    padding: 15px 0;
}
.wm-half-row-slider-filters .fl-module{
    padding: 10px;
}
.wm-half-row-slider-filters .facetwp-facet{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
}
.wm-half-row-slider-filters .facetwp-facet div:nth-child(1){
    display: none;
}
.wm-half-row-slider-filters .facetwp-facet div{
    display: flex;
    background-image: none;
    background-color: var(--wm-primary);
    padding: 10px 14px;
    color: var(--wm-text-light);
    font-size: 18px;
    font-weight: 600;
    flex-direction: row;
    align-items: center;
    line-height: 28px;
}
.wm-half-row-slider-filters .facetwp-facet .facetwp-display-value{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.wm-half-row-slider-filters .facetwp-facet div:hover,
.wm-half-row-slider-filters .facetwp-facet div.checked{
    background-color: var(--wm-hover);
}
.wm-half-row-slider-filters .facetwp-facet div i{
    font-size: 26px;
}
.wm-half-row-slider-filters .facetwp-facet .facetwp-counter{
    display: none;
}
@media only screen and (min-width: 769px) {
    .wm-half-row-slider-row .wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 0px;
    }
}

@media only screen and (min-width: 991px) {
    .wm-half-row-slider-filters .facetwp-facet{
        grid-template-columns: 1fr 1fr;
        
    }
}

@media only screen and (min-width: 440px) and (max-width: 769px) {
    .wm-half-row-slider-filters .facetwp-facet{
        grid-template-columns: 1fr 1fr;
        
    }
}

/* banner  */
@media only screen and (min-width: 769px){
    .wm-banner-home-row .fl-col-content{
        display: grid;
        height: 100vh;
        grid-template-rows: 1fr auto;
    }
    .wm-banner-home-row#page-banner-custom-module .fl-col-content .fl-module-wm-banner .wm-banner-slides .wm-banner-image,
    .wm-banner-home-row .fl-module-content,
    .wm-banner-home-row .fl-module-content > div,
    .wm-banner-home-row#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides{
        height: 100%;
        max-height: unset;
    }
}

/* Homepage banner jump link */
.wm-banner-home .wm-banner-title{
    display: flex;
    flex-direction: column;
}
.wm-banner-title a i{
    color: var(--wm-text-light);
    font-weight: 300;
}

/* Link under banner */
.wm-under-banner-link a,
.wm-under-banner-link a i{
    color: var(--wm-text-dark);
}
.wm-under-banner-link .fl-module-icon .fl-module-content .fl-icon-text{
    padding-left: 20px;
}
.wm-under-banner-link .wm-styled-icon .fl-icon-wrap .fl-icon i::before{
    font-size: 1.75rem;
}
.wm-under-banner-link .fl-icon-wrap:hover *{
    color:var(--wm-hover);
    text-decoration: none;
}

/* CTA slider */
.wm-cta-full-width.wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner{
    width: 100%;
    margin: 0;
}
.wm-cta-full-width .pp-content-post{
    padding: 0!important;
    margin: 0!important;
}
.wm-cta-full-width .wm-cta{
    height: 100%;
    width: 100%;
    min-height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 1300px 1fr;
}
.wm-cta-full-width .wm-cta:before{
    grid-column: 1 / span all;
    grid-row: 1 / span all;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--wm-bg-dark) 15%, transparent 75%);
}
.wm-cta-full-width .wm-cta-content{
    grid-column: 2;
    grid-row: 1;
    color: var(--wm-text-light);
    width: 600px;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 80px 20px;
}
.wm-cta-full-width .wm-cta-tagline{
    font-weight: 600;
    margin-bottom: 100px;
    text-transform: uppercase;
}
.wm-cta-full-width .wm-cta-content h3,
.wm-cta-full-width .wm-cta-content h2{
    color: var(--wm-text-light);
    font-size: 52px;
}
.wm-cta-full-width .wm-cta-content p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;

}
.wm-cta-full-width .wm-cta a{
    align-self: flex-start;
    min-width: 200px;
    text-align: center;
}
.wm-cta-full-width .wm-cta img{
    max-width: 150px;
}

/* cta nav */
.wm-cta-full-width.wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-prev{
    top: unset;
    bottom: 50px;
    left: unset;
    right: 160px;
}
.wm-cta-full-width.wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-next{
    top: unset;
    bottom: 50px;
    left: unset;
    right: 80px;
}

@media (max-width:1200px){
    .wm-cta-full-width .wm-cta-content{
        padding: 80px 40px;
    }
}

@media (max-width:769px){
    .wm-cta-full-width .wm-cta{
        min-height: unset;
    }
    .wm-cta-full-width .wm-cta-content{
        padding: 60px 30px;
    }
    .wm-cta-full-width .wm-cta-content h3,
    .wm-cta-full-width .wm-cta-content h2{
        font-size: 32px;
    }
    .wm-cta-full-width .wm-cta-content p{
        font-size: 16px;
    }
    .wm-cta-full-width .wm-cta-tagline{
        margin-bottom: 60px;
    }
    .wm-cta-full-width .wm-cta-content a{
        width: 100%;
    }
}

.wm-text-content{
    
}
.wm-text-content-padded{
    padding: 60px 0;
}

/* Town page content */
/* CTA Acc */
.wm-cta-acc{
    width: 100%!important;
}

/* Events slider */
.wm-styled-events .fl-post-grid-event-date{
    display: flex;
    align-items: baseline;
    font-weight: 500;
    font-size: 16px;
    padding-top: 20px;
}
.wm-styled-events .fl-post-grid-event-date i{
    font-weight: 300;
}

/* banner */

#page-banner-new.wm-banner-town #banner-content-col .banner-heading{
    text-align: left;
}
#page-banner-new.wm-banner-town #banner-image .fl-col-content{
    max-height: 100vh;
    height: 750px;
}

@media( max-width: 769px){
    #page-banner-new.wm-banner-town #banner-content-col{
        position: relative;
        color:var(--wm-text-dark);
    }
    #page-banner-new.wm-banner-town #banner-content-col .banner-heading{
        /*text-align: center;*/
    }
    #page-banner-new.wm-banner-town #banner-content-col {
        background-color: var(--wm-bg-light-alt);
    }
    #page-banner-new.wm-banner-town #banner-content-col .fl-col-content{
        padding: 10px 0;
    }
    #page-banner-new.wm-banner-town #banner-image .fl-col-content{
        aspect-ratio: 4 / 4;
        width: 100%;
        height: auto;
    }
    #page-banner-new.wm-banner-town #banner-image > .fl-col-content::after{
        background-image:linear-gradient(180deg, rgba(8,79,115,0.6) 0%, rgba(8,79,115,0) 40%, rgba(8,79,115,0) 80%, rgba(8,79,115,0.6) 100%);
    }
}

/* breadcrumbs */
.seo-breadcrumbs .breadcrumb{
    text-align: end;
}

.wm-town-title .fl-heading{
    font-size: 42px;
}
@media(max-width: 769px){
    .wm-town-title .fl-heading{
        font-size: 32px;
    }
    .seo-breadcrumbs .breadcrumb{
        text-align: start;
        font-size: 12px;
    }
}
@media(max-width:400px){
    .wm-town-icon{
        display: none;
    }
}

/* map */
.wm-map-row{
    overflow: hidden;
}
.wm-map-row .fl-row-content > .fl-module-box{
    padding: 0;
}
/* drive times */
.wm-map-row .wm-map-drive-times-box{
    pointer-events: none;
    padding-top: 40px;
}
.wm-map-drive-times{
    pointer-events: all;
    padding: 20px;
}
.wm-map-drive-times div{
    font-size: 16px;
    margin-top: 10px;
}
.wm-map-drive-times div strong{
    font-weight: 600;
    margin-right:5px;
}
.wm-map-drive-times .title{
    font-weight: 600;
    font-size: 22px;
}
/* map */
.wm-map-row .fl-module-box:nth-child(1){
    padding: 0;
}
.wm-map svg{
    height: 100vh;
    width: auto;
    margin-bottom: -100px;
    margin-top: -108px;
    margin-left: -40px;
}
.wm-map svg g:not(#LAND_MASS):not(#INSET_MAP):not(#ROADS):not(#BYRON_BAY){
    cursor: pointer;
}
.wm-map svg text{
    font-family: var(--wm-font-body);
    font-weight: 600;
}
.wm-map svg g polygon,
.wm-map svg g text:last-child{
    transition-duration: 300ms;
    opacity: 0;
    pointer-events: none;
}
.wm-map svg g:hover polygon,
.wm-map svg g:hover text,
.wm-map svg g.active polygon,
.wm-map svg g.active text{
    opacity: 1;
    pointer-events: all;
}
.wm-map svg g:hover text:nth-of-type(1),
.wm-map svg g.active text:nth-of-type(1){
    display: none;
}

/* town details */
.wm-map-towns .fl-html{
    display: grid;
    grid-template: 1fr / 1fr;
}
.wm-map-town-details{
    grid-column: 1;
    grid-row: 1;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition-duration: 300ms;
}
.wm-map-town-details.active{
    visibility: visible;
    opacity: 1;
    z-index: 0;
}
.wm-map-town-details img{
    aspect-ratio: 3 / 2 ;
    object-fit: cover;
    object-position: center;
}
.wm-map-town-details .wm-icon{
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: 30px;
}
.wm-map-town-details-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 30px;
    gap: 20px;
}
.wm-map-town-details-content p{
    font-size: 16px;
}
.wm-back-to-map{
    display: none!important;
    text-decoration: none!important;
}

@media only screen and (max-width:769px){
    .wm-back-to-map{
        display: inline-block!important;
    }
    .wm-map-town-details-content{
        width: 100%;
        text-align: center;
    }
}

/* map intro text */
.wm-map-intro-text h1{
    font-size: 42px;
    font-family: var(--wm-font-body);
    font-weight: 500;
}
.wm-map-town-details.wm-map-intro-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.wm-map-intro-text p{
    font-size: 1rem;
}
.wm-map-intro-text .wm-map-intro-tagline{
    font-style: italic;
    font-size: 1rem;
    display: flex;
    gap: 5px;
}
.wm-map-intro-tagline i{
    font-size: 1.3rem;
}

/*@media (max-width: 1400px){
    .fl-node-tka19uflqgph{
        width: 30%;
    }
}*/
@media (max-width: 1400px){
    .wm-map-drive-times-box img{
        display: none;
    }
    .wm-map .fl-html svg{
        margin-left: -200px;
    }
}
@media (max-width: 991px){
    .wm-map .fl-html svg{
        margin-left: -340px;
        margin-top: 0px;
    }
}
@media only screen and (max-width: 769px){
    div.fl-row-full-width.wm-map-row .fl-row-content.fl-row-fixed-width{
        padding: 0;
    }
    .wm-map .fl-html{
       overflow: hidden;
    }
    .wm-map .fl-html svg{
        margin-left: -240px;
        margin-top: -100px;
    }
    #wm-map-towns{
        padding: 40px 0;
    }
    #wm-map-towns .fl-module-content{
        margin: 20px 0px;
    }
    .wm-map-intro-text{
        padding: 0 20px;
    }
    .wm-map-town-details{
        display: none;
    }
    .wm-map-town-details.active{
        display: flex;
    }
}

/* map */
.wm-map-row-town .wm-map svg{
    margin-left: -240px!important;
    margin-top: -240px;
}

.wm-map-row-town .wm-town-map-col{
    overflow: visible;
}
.wm-map-row-town .wm-map svg,
.wm-map-row-town .wm-map svg g{
    pointer-events: none!important;
}

/* Town image + text columns */
.wm-town-image-text img{
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}
.wm-town-image-text h3{
    /*font-family: var(--wm-font-body);
    font-weight: 600;*/
}

@media (max-width: 991px) {
    .wm-town-image-text > .fl-module-box:nth-child(3) img{
        aspect-ratio: 2 / 2;
    }
    .wm-map-row-town .wm-town-map-col{
        overflow:hidden;
    }
}
@media (max-width: 769px) {
    .wm-map-row-town .wm-town-icon-title{
        padding: 40px 20px 0px 20px!important;
    }
     .wm-map-row-town .wm-town-image-text img{
         aspect-ratio: 2 / 2;
     }
     .wm-map-row-town .wm-map .fl-html svg{
         margin-top: -160px;
     }
}

.wm-max-width-box.fl-module-box{
    max-width: 1300px;
    margin: 20px auto;
    padding: 0 20px;
}
@media (max-width: 1200px) {
    .wm-max-width-box.fl-module-box{
        padding: 0 40px;
    }
}
@media (max-width: 769px) {
    .wm-max-width-box.fl-module-box{
        padding: 0 30px;
    }
}

/* smaller post slider content */
.wm-style-post-small.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-excerpt{
    display: none!important;
}
.wm-style-post-small.wm-styled-posts.wm-post-grid-overlay .fl-post-grid-title-box{
    padding: 15px 20px;
}

/* footer*/
.fl-module.fl-module-box .fl-module.header-logo, .fl-module#footer-logo{
    width: 100%;
}




























/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/* CTA Acc */
.wm-cta-acc{
    width: 100%!important;
}

/* Events slider */
.wm-styled-events .fl-post-grid-event-date{
    display: flex;
    align-items: baseline;
    font-weight: 500;
    font-size: 16px;
    padding-top: 20px;
}
.wm-styled-events .fl-post-grid-event-date i{
    font-weight: 300;
}

/* banner */

#page-banner-new.wm-banner-town #banner-content-col .banner-heading{
    text-align: left;
}
#page-banner-new.wm-banner-town #banner-image .fl-col-content{
    max-height: 100vh;
    height: 750px;
}

@media( max-width: 769px){
    #page-banner-new.wm-banner-town #banner-content-col{
        position: relative;
        color:var(--wm-text-dark);
    }
    #page-banner-new.wm-banner-town #banner-content-col .banner-heading{
        /*text-align: center;*/
    }
    #page-banner-new.wm-banner-town #banner-content-col {
        background-color: var(--wm-bg-light-alt);
    }
    #page-banner-new.wm-banner-town #banner-content-col .fl-col-content{
        padding: 10px 0;
    }
    #page-banner-new.wm-banner-town #banner-image .fl-col-content{
        aspect-ratio: 4 / 4;
        width: 100%;
        height: auto;
    }
    #page-banner-new.wm-banner-town #banner-image > .fl-col-content::after{
        background-image:linear-gradient(180deg, rgba(8,79,115,0.5) 0%, rgba(8,79,115,0) 20%, rgba(8,79,115,0) 80%, rgba(8,79,115,0.5) 100%);
    }
}

/* breadcrumbs */
.seo-breadcrumbs .breadcrumb{
    text-align: end;
}

.wm-town-title .fl-heading{
    font-size: 42px;
}
@media(max-width: 769px){
    .wm-town-title .fl-heading{
        font-size: 32px;
    }
}
@media(max-width:400px){
    .wm-town-icon{
        display: none;
    }
}

/* map */
.wm-map svg g#NEWRYBAR polygon, .wm-map svg g#NEWRYBAR text{
    opacity: 1;
    pointer-events: all;
}
.wm-map svg g#NEWRYBAR text:nth-of-type(1){
    display: none;
}
.wm-map svg{
    margin-left: -240px!important;
    margin-top: -240px;
}
.wm-town-map-col{
    overflow:hidden;
}
.wm-map svg,
.wm-map svg g{
    pointer-events: none!important;
}

/* Town image + text columns */
.wm-town-image-text img{
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    margin-bottom:20px;
}
.wm-town-image-text h3{
    /*font-family: var(--wm-font-body);
    font-weight: 600;*/
}

@media (max-width: 991px) {
    .wm-town-image-text > .fl-module-box:nth-child(3) img{
        aspect-ratio: 2 / 2;
    }
}
@media (max-width: 769px) {
    .wm-map-row .wm-town-icon-title{
        padding: 40px 20px 0px 20px!important;
    }
     .wm-town-image-text img{
         aspect-ratio: 2 / 2;
     }
     .wm-map .fl-html svg{
         margin-top: -160px;
     }
}
/* 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-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-zt4swedn6gkx .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-eh7qlsz8g94j .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-2ly5619es3po .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-4iznd0fvamt2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-tphka5oy1wij .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-46qg7c3eubxd .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9abuzrwhj0mc .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-bal4znwd3uv9 .fl-row-content {
				min-width: 0px;
			}
		