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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	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 {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

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

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	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;
}
.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;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1400px) { /**
 * 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: 1401px) {
	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: 1400px) {
	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-col-content {
	display: flex;
	flex-direction: column;
	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-row-fixed-width {
	max-width: 960px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.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-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
@media(max-width: 992px) {
	.fl-module[data-node] > .fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
		margin-top: 20px;
		margin-right: 20px;
		margin-bottom: 20px;
		margin-left: 20px;
	}
}
@media(max-width: 768px) {
	.fl-module[data-node] > .fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
		margin-top: 20px;
		margin-right: 20px;
		margin-bottom: 20px;
		margin-left: 20px;
	}
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }.fl-node-2hzbvq1xpil5 {
	color: #636466;
}
.fl-builder-content .fl-node-2hzbvq1xpil5 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-2hzbvq1xpil5 :where(.fl-row-content-wrap) a {
	color: #f9a61a;
}

.fl-builder-content .fl-node-2hzbvq1xpil5 :where(.fl-row-content-wrap) a:hover {
	color: #636466;
}

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



.fl-node-2hzbvq1xpil5 > .fl-row-content-wrap {
	background-color: #f2f2f2;
}
.fl-node-2hzbvq1xpil5 .fl-row-content {
	max-width: 1100px;
}






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






 .fl-node-n5sk9qaipjcm > .fl-row-content-wrap {
	padding-top:20px;
}












.fl-node-aedp71giw0y6 > .fl-row-content-wrap {
	background-color: #ededed;
}
 .fl-node-aedp71giw0y6 > .fl-row-content-wrap {
	margin-top:50px;
}
@media ( max-width: 768px ) {
 .fl-node-aedp71giw0y6.fl-row > .fl-row-content-wrap {
	margin-top:50px;
}
}
 .fl-node-aedp71giw0y6 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
.fl-node-p4t98q12h7b6 {
	color: #636466;
}
.fl-builder-content .fl-node-p4t98q12h7b6 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-p4t98q12h7b6 :where(.fl-row-content-wrap) a {
	color: #f9a61a;
}

.fl-builder-content .fl-node-p4t98q12h7b6 :where(.fl-row-content-wrap) a:hover {
	color: #636466;
}

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



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




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




.fl-node-ij36cpd4yswe {
	width: 50%;
}




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




.fl-node-z6f0ct2ypka7 {
	width: 35%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-z6f0ct2ypka7 {
		width: 40% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-z6f0ct2ypka7 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




.fl-node-xgubsh37r0at {
	width: 50%;
}




.fl-node-9kziyvq7hd4a {
	width: 65%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-9kziyvq7hd4a {
		width: 60% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-9kziyvq7hd4a {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-module-map .fl-map {
	line-height: 0;
}
.fl-map iframe {
	border:0;
	width:100%;
	pointer-events: none;
}
@media (max-width: 768px) { .fl-module-map .fl-map:not(.fl-map-auto-responsive-disabled) {
	height: 0;
	overflow: hidden;
	padding-bottom: 75%;
	position: relative;
}
.fl-module-map .fl-map:not(.fl-map-auto-responsive-disabled) iframe {
	height: 100% !important;
	left: 0;
	position: absolute;
	top: 0;
	width: 100% !important;
}
 }.fl-node-fg2bhkreiotv .fl-map iframe {
	height: 400px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-5d0060d131400.fl-module-heading .fl-heading {
	text-align: left;
}
 .fl-node-5d0060d131400 > .fl-module-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-5d0060d131400.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5d0060d131400.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-button:is(a, button) {
    cursor: pointer;
}








.fl-node-k9pur0l1wmb5 .fl-button:is(a, button) {
	width: 240px;
}
.fl-node-k9pur0l1wmb5.fl-button-wrap, .fl-node-k9pur0l1wmb5 .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-k9pur0l1wmb5 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-builder-content .fl-node-k9pur0l1wmb5 .fl-button:is(a, button), .fl-builder-content .fl-node-k9pur0l1wmb5 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-k9pur0l1wmb5 .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-k9pur0l1wmb5 a.fl-button:visited {
	font-size: 16px;
	line-height: 16px;
}
.fl-builder-content .fl-node-k9pur0l1wmb5 .fl-button:is(a, button), .fl-builder-content .fl-node-k9pur0l1wmb5 .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
div.fancybox-container {
	z-index: 999992;
}
.pp-photo-gallery {
    position: relative;
	text-align: center;
	text-decoration: none;
	opacity: 0;
}
.pp-photo-gallery:before,
.pp-photo-gallery:after {
	content: " ";
	display: table;
}
.pp-photo-gallery:after {
	clear: both;
}
.pp-photo-gallery .pp-photo-gallery-item {
    float: left;
    text-align: center;
}
.pp-photo-gallery .pp-photo-gallery-content {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pp-photo-gallery .pp-photo-gallery-content > a {
	display: block;
    padding: unset;
	isolation: isolate;
	overflow: hidden;
	transform: translateZ(0);
}

/* Overlay */
.pp-photo-gallery .pp-gallery-overlay {
	position: absolute;
	overflow: hidden;
	transition: .5s ease;
}

.pp-photo-gallery .pp-gallery-overlay .pp-caption {
	margin-bottom: 10px;
}

.pp-photo-gallery .pp-photo-gallery-content .pp-gallery-img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    will-change: transform;
    width: 100%;
}

.pp-photo-gallery.justified-gallery > a,
.pp-photo-gallery.justified-gallery > div {
	opacity: 0;
	visibility: hidden !important;
}
.pp-photo-gallery.justified-gallery > .entry-visible {
	opacity: 1;
	visibility: visible !important;
}

.pp-photo-gallery.justified-gallery .pp-photo-gallery-content {
	height: 100%;
}

.pp-gallery-pagination .pp-gallery-load-more {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.2s all ease-in-out;
	-moz-transition: 0.2s all ease-in-out;
	transition: 0.2s all ease-in-out;
}
.pp-gallery-pagination .pp-gallery-load-more.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.pp-gallery-pagination a,
.pp-gallery-pagination a:visited {
	text-decoration: none;
}

.pp-gallery-fancybox-axis-x.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}
.pp-gallery-fancybox-axis-x .fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right : 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.3);
}
.fancybox-ftkjog3zm701 button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}



.fl-node-ftkjog3zm701 .pp-photo-gallery {
	opacity: 1;
}
.fl-node-ftkjog3zm701 .pp-photo-gallery {
	}


.fl-node-ftkjog3zm701 .pp-photo-gallery-item {
	width: 23.4%;
			margin-right: 2%;
		margin-bottom: 2%;
	}


.fl-node-ftkjog3zm701 .pp-gallery-masonry-item {
	width: calc( 23.4% - 1px );
}

.fl-node-ftkjog3zm701 .pp-photo-gallery-item:hover {
	}
	.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+1){
		clear: left;
	}
	.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+0){
		clear: right;
	}
	.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n){
		margin-right: 0;
	}

.fl-node-ftkjog3zm701 .pp-photo-gallery-item img,
.fl-node-ftkjog3zm701 .pp-gallery-overlay,
.fl-node-ftkjog3zm701 .pp-photo-gallery-content,
.fl-node-ftkjog3zm701 .pp-photo-gallery-content > a {
				}


.fl-node-ftkjog3zm701 .pp-photo-space {
	width: 2%;
}





.fl-node-ftkjog3zm701 .pp-gallery-overlay .pp-overlay-icon span {
	width: auto;
	height: auto;
	color: ;
	font-size: 30px;
	background-color: ;
					}

.fl-node-ftkjog3zm701 .pp-gallery-overlay .pp-overlay-icon span:before {
	font-size: 30px;
	width: auto;
	height: auto;
}

.fl-node-ftkjog3zm701 .pp-photo-gallery-caption,
.fl-node-ftkjog3zm701 .pp-gallery-overlay .pp-caption {
	}















.fl-node-ftkjog3zm701 .pp-gallery-pagination.pagination-scroll {
	display: none;
}
.fl-node-ftkjog3zm701 .pp-gallery-pagination .pp-gallery-load-more {
		}
.fl-node-ftkjog3zm701 .pp-gallery-pagination .pp-gallery-load-more:hover {
			}

.fancybox-ftkjog3zm701-overlay {
	background-image: none;
			background-color: rgba(0,0,0,0.5);
	}
.fancybox-is-open .fancybox-ftkjog3zm701-overlay {
	opacity: 1;
}

@media only screen and ( max-width: 1400px ) {
	
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item {
			width: 23.4%;
		}

					.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+1){
				clear: none;
			}
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+0){
				clear: none;
			}
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n){
				margin-right: 2%;
			}
							.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+1){
					clear: left;
				}
				.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+0){
					clear: right;
				}
						.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 992px ) {
	
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item {
			width: 48.9%;
		}

					.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+1){
				clear: none;
			}
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n+0){
				clear: none;
			}
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(4n){
				margin-right: 2%;
			}
							.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 768px ) {
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item {
			width: 48.9%;
		}
					.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n){
				margin-right: 2%;
			}
							.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-ftkjog3zm701 .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}
.fl-node-ftkjog3zm701 .pp-photo-gallery-caption {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-ftkjog3zm701 .pp-gallery-pagination {
	text-align: left;
}
.fl-node-ftkjog3zm701 .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.pp-accordion-button {
	display: flex;
	align-items: center;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	padding: 10px;
}
.pp-accordion-button-label {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}
.pp-accordion-button-label p {
	margin-bottom: 0;
}
span.pp-accordion-button-icon {
	display: table-cell;
	vertical-align: middle;
}
.pp-accordion-content {
	display: none;
	padding: 15px;
}

.pp-accordion-item .pp-accordion-button,
.pp-accordion-item .pp-accordion-button:hover {
	transition: all 0.1s ease-in;
	-webkit-transition: all 0.1s ease-in;
	-moz-transition: all 0.1s ease-in;
	-ms-transition: all 0.1s ease-in;
	-o-transition: all 0.1s ease-in;
}

/* Small */
.pp-accordion-small .pp-accordion-button {
	padding: 10px 15px;
}
.pp-accordion-small .pp-accordion-content {
	padding: 0 30px 10px 15px;
}

/* Medium */
.pp-accordion-medium .pp-accordion-button {
	padding: 15px 20px;
}
.pp-accordion-medium .pp-accordion-button-label {
	font-size: 20px;
}
.pp-accordion-medium .pp-accordion-content {
	padding: 0 40px 15px 20px;
}

/* Large */
.pp-accordion-large .pp-accordion-button {
	padding: 20px 25px;
}
.pp-accordion-large .pp-accordion-button-label {
	font-size: 26px;
}
.pp-accordion-large .pp-accordion-content {
	padding: 0 50px 25px 25px;
}

.pp-accordion span.pp-accordion-icon {
    padding-right: 10px;
    width: 20px;
	height: auto;
	line-height: 1.4;
    display: table-cell;
	vertical-align: middle;
    text-align: center;
    font-size: 16px;
}

.pp-accordion-button-icon.pp-accordion-close {
	display: none;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-close {
	display: table-cell;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-open {
	display: none;
}
.fl-node-plarjm9h36x0 .pp-accordion-item {
		margin-bottom: 20px;
	}

 
.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-button {
			}

.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-button:hover,
.fl-node-plarjm9h36x0 .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
		}


.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-right {
	padding-left: 15px;
}
.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-left {
	padding-right: 15px;
}
 






.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-content {
								}


.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-button-icon,
.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 14px;
}

.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			}


.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-icon:before {
	font-size: 15px;
}

																														.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-button {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-plarjm9h36x0 .pp-accordion-item .pp-accordion-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
}
 .fl-node-5ba1e8b650a1b > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
@media ( max-width: 992px ) {
 .fl-node-5ba1e8b650a1b.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5ba1e8b650a1b.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}

/* Start Global CSS */
/**********************************/
/************ 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 ***/

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

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

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





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

/*** IMG BORDER ***/

/*img,
.fl-module-pp-image-comparison .pp-image-comp-inner {
    border-radius: var(--wm-border-radius);
}*/

.fl-photo-field .fl-photo-preview-img img,
.thumbnail,
.thumbnail img,
.no-border-radius img,
.no-border-radius .fl-module-pp-image-comparison .pp-image-comp-inner {
    border-radius: 0px;
}


/*** FULL WIDTH IMAGES ***/

@media only screen and (min-width: 1200px){
    .wm-large-img img {
        max-height: 80vh;
        object-fit: cover;
    }
}

.wm-large-img {
    padding-top: 20px;
    padding-bottom: 20px;
}




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

/*** BLOCK QUOTE ***/

.fl-rich-text blockquote {
    background: var(--wm-bg-light);
    padding: 2px 10px;
    border-width: 0 5px;
    border-style: solid;
    margin: 0;
}
.fl-rich-text blockquote p {
    font-size: 1rem;
    opacity: 0.7;
    margin: 0;
    font-weight: 400;
    text-transform: none;
    padding: 0;
    border: 0;
}


/*** BODY TEXT ***/

@media only screen and (min-width: 1200px) {
    .fl-page .fl-rich-text,
    .fl-page .fl-heading,
    .fl-page .pp-tabs-panel-content *,
    .fl-page .pp-accordion-content *,
    .fl-module-pp-search-form{
        max-width: 1000px;
    }
}

.fl-module-heading + .fl-module-rich-text .fl-module-content,
.fl-module-heading + .fl-module-rich-text,
.fl-module-rich-text + .fl-module-rich-text,
.fl-module-rich-text + .fl-module-rich-text .fl-module-content {
    margin-top: 0;
}

.fl-module-rich-text .fl-rich-text p strong {
    font-weight: var(--wm-fweight-bold);
}

/* 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: var(--wm-fsize-large);
}


/** Taglines // All Caps **/

.wm-text-all-caps-tagline {
    font-weight: var(--wm-fweight-bold);
    font-size: var(--wm-fsize-large);
    text-transform: uppercase;
}
.wm-text-all-caps-tagline p {
    margin: 0;
}


/** Tagline with Border **/

.wm-tagline-with-border p {
    font-weight: var(--wm-fweight-bold);
    font-size: var(--wm-fsize-large);
    text-transform: uppercase;
    border-top: 2px solid var(--wm-primary);
    border-bottom: 2px solid var(--wm-primary);
    display: inline-block;
    padding: 1rem 0;
    margin: 0;
}


/** Link Chevron **/

.wm-chevron i {
    font-family: var(--wm-font-icons);
    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 + .fl-module-heading .fl-module-content {
    margin-top: 10px;
}

.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,
.fl-module-rich-text ul + h2,
.fl-module-rich-text ul + h3,
.fl-module-rich-text ul + h4,
.fl-module-rich-text ul + h5,
.fl-module-rich-text ul + h6,
.fl-module-rich-text ol + h2,
.fl-module-rich-text ol + h3,
.fl-module-rich-text ol + h4,
.fl-module-rich-text ol + h5,
.fl-module-rich-text ol + h6 {
    margin-top: 30px;
}


/** Box with heading and Button **/

.fl-page .fl-module-box.wm-box-heading-btn {
    gap: 20px 40px;
}

.fl-module-box.wm-box-heading-btn .fl-icon-wrap .fl-icon i {
    font-size: var(--wm-fsize-htwo);
    width: var(--wm-fsize-htwo);
    margin-right: 24px;
}
.fl-module-box.wm-box-heading-btn .fl-icon-wrap .fl-icon i::before {
    font-size: 1.1em;
}
.fl-module-box.wm-box-heading-btn .fl-module-content .fl-icon-text {
    padding-left: 0;
}

@media only screen and (max-width: 950px) {
    .fl-module-box.wm-box-heading-btn .fl-icon-wrap .fl-icon {
        display: none;
    }
}



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

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


/** Page List / Site Index **/

.page-list li a,
.lcp_catlist li a {
    text-decoration: none !important;
}



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

/*** 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-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-styled-image-slider .pp-image-overlay,
.wm-styled-posts .wm-post-img-caption,
.wm-styled-posts .post-image-caption {
    /*background: var(--wm-overlay-captions);*/
    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-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-styled-image-slider .pp-image-overlay .pp-caption,
.wm-styled-posts .wm-post-img-caption,
.wm-styled-posts .post-image-caption,
.wm-styled-logo-slider .title-wrapper {
    color: var(--wm-text-light) !important;
    font-size: var(--wm-fsize-small);
    display: inline-block;
    padding: 2px 10px;
    margin: 0 !important;
    line-height: 1.2;
    white-space: normal;
    font-weight: 400;
}





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

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

#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;
    gap: 20px 14px;
    margin: 16px 20px;
}

#wm-header-announcement .fl-col-content .fl-module,
#wm-header-announcement .fl-col-content .fl-module-content {
    margin: 0 !important;
}

#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;
    padding-right: 2rem;
    text-transform: uppercase;
    font-size: 1rem;
}

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


/** 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-rich-text {
        padding-right: 0;
    }
    #wm-header-announcement .fl-col-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    #wm-header-announcement .fl-col-content .fl-rich-text p {
        text-align: center;
    }
    #wm-header-announcement .fl-col-content .fl-module-button .fl-module-content {
        margin-top: 0;
        margin-top: -5px;
    }
    #wm-header-announcement .fl-col-content .fl-button-wrap {
        text-align: center;
    }
}





/*--------------------------------*/
/*         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: 800px;
}
@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: 700px;
    }
}
@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: 650px;
    }
}
@media only screen and (max-width: 768px) {
    #page-banner-new #banner-image .fl-col-content {
        height: 0px;
        padding-top: 75%;
    }
    
    #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: 75vw;
    }
    
    #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: 500px;
}
@media only screen and (max-width: 992px) {
    #page-banner-new.flat-banner #banner-image .fl-col-content {
        height: 400px;
    }
}
@media only screen and (max-width: 768px) {
    #page-banner-new.flat-banner #banner-image .fl-col-content {
        height: 0px;
        padding-top: 75%;
    }
}



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

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


/* banner gradient overlay */
#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(0,0,0,0.7) 0%, rgba(0,0,0,0) 30%);
    /*background-image: linear-gradient(180deg, rgba(58,126,158,1) 120px, rgba(58,126,158,0) 220px, rgba(18,5,40,0) 50%, rgba(18,5,40,0.65) 95%);*/
}
#page-banner-new.flat-banner #banner-image > .fl-col-content::after {
    background: none;
}


/* 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: 1500px;
    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: 0;
    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: 1500px;
    margin: 0 auto;
    height: auto;
    float: none;
}

@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 left */
/**/#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: 40px;
    left: 0;
    right: 0;
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
#page-banner-new #banner-button-double .banner-button-wrap,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-buttons-wrap,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-pagination{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

#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: 800px;
    padding: 0;
    /*margin: 0 auto;*/
    margin-right: auto;
}


/** Box Overlay **/
/* comment out if using a plain text overlay */

/* default position as per the design: centre left */
/*#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: 1240px;
    padding-left: 20px;
    padding-right: 20px;
}

#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-dark);
    position: absolute;
    top: 50%;
    bottom: unset;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

#page-banner-new #banner-content-col .fl-col-content {
    display: inline-block;
}
#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 {
    background-color: var(--wm-bg-light);
    padding: 0.625rem 1.25rem 1.25rem;
    max-width: 600px;
    margin: 0 auto 0 20px;
}*/



/** 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;*/
        top: 140px;
        bottom: unset;
        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%;
        bottom: unset;
        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: 40px;
        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: 992px) {
    /* box overlay - comment out if using a plain text overlay */
    /*#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 {
        max-width: 450px;
    }*/
}

@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;
        bottom: unset;
        transform: none;
        padding: 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);
    }
    #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;*/
        text-align: left;
    }
    #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;*/
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}



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

/*** 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: 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-single .fl-module-content,
#page-banner-new #banner-button-double .fl-module-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
#page-banner-new #banner-content + #banner-button-single .fl-module-content,
#page-banner-new #banner-content + #banner-button-double .fl-module-content {
    margin-top: -5px !important;
}
#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: 0px;
    display: inline-block;
}
#page-banner-new .banner-button-wrap a.fl-button.after i {
    margin-right: 0;
    margin-left: 8px;
}

#page-banner-new .fl-button-wrap .fl-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;
}


/** 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);
    color: var(--wm-text-light);
    font-size: var(--wm-fsize-banner);
    font-weight: var(--wm-fweight-bold);
    line-height: 1.2;
    /*text-transform: uppercase;*/
    text-shadow: var(--wm-text-shadow);
}
/* bold - for mixed font weight headings */
/*#page-banner-new #banner-content .fl-module-content .banner-heading b,
#page-banner-new #banner-content-col .banner-heading b,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-title b {
    font-weight: var(--wm-fweight-bold);
}*/


/** 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: var(--wm-fsize-banner);
}*/


/** Tagline / Text **/

#page-banner-new #banner-content .banner-text,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline {
    /*font-family: var(--wm-font-heading);*/
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: var(--wm-text-shadow);
}



/** 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: var(--wm-text-shadow);
    }
    #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);
        text-shadow: none;
    }
}



/** Buttons **/

#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 {
    min-width: 200px;
    text-align: center;
    min-height: 42px;
}
#page-banner-custom-module .wm-banner-content-inner .wm-banner-button {
    text-align: center;
}

#page-banner-new #banner-button-double .banner-button-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#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: var(--wm-secondary);
    border-color: var(--wm-primary);
    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: var(--wm-hover);
    border-color: var(--wm-hover);
    color: var(--wm-text-light);
}*/



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

/* uncomment to overwrite default dot colours 
#page-banner-custom-module .wm-banner-pagination span {
    background-color: var(--wm-text-light);
}
#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);
}*/


/** 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: calc(32.5vw + 40px);
    }
}  


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

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

    /* 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;
        text-shadow: none !important;
    }
    
    /* Chevron */
    #page-banner-new #banner-content .fl-module-content .banner-chevron {
        padding-top: 10px;
    }

    /* 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;
    }
    
    /* Buttons */
    #page-banner-new #banner-button-double .fl-module-content,
    #page-banner-new #banner-button-single .fl-module-content {
        margin-bottom: 0;
    }
    /*#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: var(--wm-primary);
        border-color: var(--wm-primary);
        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: var(--wm-hover);
        border-color: var(--wm-hover);
        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-neutral);
    }
    #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);
    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 TITLE ***/

/*#page-title .fl-row-content-wrap {
    padding-top: 120px;
}

#page-title .fl-heading,
#page-title #breadcrumbs-top {
    margin-bottom: 0 !important;
}*/



/*** POST META ***/

.post-meta-data-wrap + .post-meta-data-wrap {
    padding-top: 4px;
}

.post-meta-data {
    font-size: var(--wm-fsize-small);
}

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

#wm-post-nav .fl-row-content-wrap {
    padding-bottom: 80px;
}

.fl-module-fl-post-navigation .nav-links a {
    font-size: var(--wm-fsize-small);
    font-weight: var(--wm-fweight-bold);
    text-decoration: none !important;
    color: var(--wm-primary);
}
.fl-module-fl-post-navigation .nav-links a:hover,
.fl-module-fl-post-navigation .nav-links a:focus {
    color: var(--wm-hover);
}
.fl-module-fl-post-navigation .nav-links i::before {
    font-size: var(--wm-fsize-small);
    margin: 0 5px;
    font-weight: 500;
}



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

/*** 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: var(--wm-border-radius) !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        */
/*--------------------------------*/

.seo-breadcrumbs {
    font-size: var(--wm-fsize-small);
}
.seo-breadcrumbs a {
    text-decoration: none;
}

ol.breadcrumb {
    padding: 0 !important;
}
/*ol.breadcrumb li.active span {
    font-weight: var(--wm-fweight-bold);
}*/

#breadcrumbs-top .fl-module-content,
#breadcrumbs-bottom .fl-module-content {
    margin: 14px 20px !important;
}

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




/*** TOP ***/

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

/* uncomment styles if colour overwrites are needed */
/*#breadcrumbs-top ol {
    color: var(--wm-text-dark);
}
#breadcrumbs-top a {
    color: var(--wm-text-dark);
}
#breadcrumbs-top a:hover,
#breadcrumbs-top a:focus {
    color: var(--wm-hover);
}*/




/*** BOTTOM ***/

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

/* uncomment styles if colour overwrites are needed */
/*#breadcrumbs-bottom ol {
    color: var(--wm-text-light);
}
#breadcrumbs-bottom a {
    color: var(--wm-text-light);
}
#breadcrumbs-bottom a:hover,
#breadcrumbs-bottom a:focus {
    color: var(--wm-primary);
}*/




/*** Responsive ***/

/*
@media only screen and (max-width: 768px) {
    #breadcrumbs-top.fl-row .fl-row-content-wrap {
        background: none;
    }
    #breadcrumbs-top.fl-row .fl-module-content {
        /*margin-top: -10px !important;
        z-index: 10;
        position: relative;
    }
}
*/




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

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

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

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





/*--------------------------------*/
/*      DUAL FULL WIDTH ROWS      */
/*--------------------------------*/
/*but content aligns with content width*/

.dual-row .fl-module-rich-text + .fl-module-button,
.dual-row .fl-module-heading + .fl-module-button{
    padding-top: 10px;
}



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

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

.dual-row .dual-col-left .fl-module,
.dual-row .dual-col-right .fl-module,
.dual-row .dual-col-left .fl-col-group,
.dual-row .dual-col-right .fl-col-group {
    width: 100%;
    max-width: 670px;
}

.dual-row .dual-col-left .fl-module-box {
    margin-left: auto;
}
.dual-row .dual-col-right .fl-module-box {
    margin-right: auto;
}




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

/** Column Captions **/

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

.dual-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-row .pure-bg-img-col.right .wm-col-caption {
        text-align: left;
    }
}

.dual-row .pure-bg-img-col .wm-col-caption .fl-module-content {
    margin: 0 !important;
    line-height: 1;
    display: inline-block;
    max-width: 730px;
}
.dual-row .pure-bg-img-col.left .wm-col-caption .fl-module-content {
    margin-left: 20px !important;
}
.dual-row .pure-bg-img-col.right .wm-col-caption .fl-module-content {
    margin-right: 20px !important;
}

body.fl-builder-edit .dual-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: 1540px) {
    /* add extra padding for content */
    .dual-row .dual-col-left .fl-module-box {
        padding-left: 40px;
    }
    .dual-row .dual-col-right .fl-module-box {
        padding-right: 40px;
    }
    
    /* add extra padding for caption */
    .dual-row .pure-bg-img-col.left .wm-col-caption .fl-module-content {
        margin-left: 40px !important;
    }
    .dual-row .pure-bg-img-col.right .wm-col-caption .fl-module-content {
        margin-right: 40px !important;
    }
}

@media only screen and (max-width: 1200px) {
    .dual-row .dual-col-left .fl-module,
    .dual-row .dual-col-right .fl-module {
        max-width: 100%;
    }
    .dual-row .dual-col-left .fl-col-content {
        padding-right: 50px;
    }
    .dual-row .dual-col-right .fl-col-content {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 992px) {
    .dual-row .dual-col-left .fl-col-content {
        padding-right: 20px;
    }
    .dual-row .dual-col-right .fl-col-content {
        padding-left: 20px;
    }
}

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

    /* adjust extra padding for content */
    .dual-row .dual-col-left .fl-module-box,
    .dual-row .dual-col-right .fl-module-box {
        padding-right: 30px;
        padding-left: 30px;
    }

    /* adjust extra padding for caption */
    .dual-row .pure-bg-img-col .wm-col-caption .fl-module-content {
        max-width: 100%;
    }
    .dual-row .pure-bg-img-col.left .wm-col-caption .fl-module-content,
    .dual-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: left;
    padding: 0px;
    font-size: var(--wm-fsize-large);
    max-width: 1000px;
    margin: 0 auto 0 0;
}

.wm-testimonial .testimonial-tagline {
    font-weight: var(--wm-fweight-bold);
    text-transform: uppercase;
    padding-bottom: 14px;
    font-family: var(--wm-font-heading);
    font-size: var(--wm-fsize-large);
}

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

.wm-testimonial .fl-post-text footer {
    display: block;
    margin-top: 10px;
}
.wm-testimonial .fl-post-text cite {
    text-transform: uppercase;
    font-style: normal;
    font-size: var(--wm-fsize-small);
    font-weight: 400;
    background: none;
}

.wm-testimonial .fl-post-text footer cite:not(:last-child):after {
    content: '|';
    padding: 0 0.5em;
}


.wm-testimonial .testimonial-stars {
    padding-bottom: 16px;
}
.wm-testimonial .testimonial-stars i {
    padding-right: 4px;
    font-weight: 900;
    color: #cbcbcb;
}

/* Star Fills */

.testimonial-stars[data-stars="1"] .star-one,
.testimonial-stars[data-stars="2"] .star-one,
.testimonial-stars[data-stars="2"] .star-two,
.testimonial-stars[data-stars="3"] .star-one,
.testimonial-stars[data-stars="3"] .star-two,
.testimonial-stars[data-stars="3"] .star-three,
.testimonial-stars[data-stars="4"] .star-one,
.testimonial-stars[data-stars="4"] .star-two,
.testimonial-stars[data-stars="4"] .star-three,
.testimonial-stars[data-stars="4"] .star-four,
.testimonial-stars[data-stars="5"] i {
    color: #e9c233;
}





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

/*** SOLID BG INLINE ***/

.wm-testimonial-solid-inline > .fl-module-content {
    background: var(--wm-bg-light);
    border-radius: var(--wm-border-radius);
    box-shadow: var(--wm-box-shadow);
}

.wm-testimonial-solid-inline .fl-post-text-wrap {
    padding: 50px 80px;
}

.wm-testimonial-solid-inline .fl-post-text {
    margin: 0 auto;
}





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

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

.wm-testimonial-row.wm-testimonial-img .fl-row-content-wrap {
    background: var(--wm-bg-dark);
}

.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: var(--wm-overlay);
    position: absolute;
}


/** 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: 12rem 20px 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text {
    text-align: left;
    max-width: 600px;
    margin-left: 0;
    font-size: 1.5rem;
}

@media only screen and (min-width: 768px) {
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text {
        font-size: 1.5rem;
    }
    .wm-testimonial-row.wm-testimonial-img .fl-post-text footer,
    .wm-testimonial-row.wm-testimonial-img .fl-post-text cite {
        font-size: 1.125rem;
    }
}*/



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

/*** TESTIMONIAL ROW STYLES ***/

.wm-testimonial-row .fl-row-content-wrap {
    padding-top: 140px;
    padding-bottom: 180px;
}
.wm-testimonial-row.plain .fl-row-content-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
}

.wm-testimonial-row.bg .fl-module-box.wm-box-heading-btn .fl-icon-wrap .fl-icon,
.wm-testimonial-row.bg .fl-module-box.wm-box-heading-btn .fl-icon-wrap p,
.wm-testimonial-row.bg .fl-module-box.wm-box-heading-btn .fl-icon-wrap h2,
.wm-testimonial-row.bg .fl-module-box.wm-box-heading-btn h2 {
    color: var(--wm-text-light);
}

.wm-testimonial-row .wm-testimonial .pp-content-post {
    background-color: var(--wm-bg-light);
    border-radius: var(--wm-border-radius);
    box-shadow: var(--wm-box-shadow);
    margin-bottom: 14px;
}

.wm-testimonial-row .wm-testimonial {
    padding-top: 20px;
}

.wm-testimonial-row .wm-testimonial .fl-post-text-wrap {
    padding: 50px 80px;
}

/*.wm-testimonial-row .fl-module-button a.fl-button:hover,
.wm-testimonial-row .fl-module-button a.fl-button:focus,
.wm-testimonial-row .fl-module-button a.fl-button:active {
    background: var(--wm-bg-light-alt);
    border-color: #fff;
}*/



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

/*** RESPONSIVE ***/

@media only screen and (max-width: 1400px) {
    .wm-testimonial-row .wm-testimonial .fl-post-text-wrap,
    .wm-testimonial-solid-inline .fl-post-text-wrap {
        padding: 50px;
    }
}
@media only screen and (max-width: 1200px) {
    /* img bg - same spacing as others */
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        padding-left: calc(3.75rem + 40px);
        padding-right: calc(3.75rem + 40px);
    }

    /* remove comment for img bg - left aligned */
    /*.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        padding: 12rem 40px 4rem;
    }*/
    
    .wm-testimonial-row .wm-testimonial .fl-post-text-wrap,
    .wm-testimonial-solid-inline .fl-post-text-wrap {
        padding: 40px 30px;
    }
    .wm-testimonial-row .fl-row-content-wrap {
        padding-top: 100px;
        padding-bottom: 140px;
    }
}

@media only screen and (max-width: 992px) {
    .wm-testimonial-row .fl-row-content-wrap {
        padding-bottom: 100px;
    }
    .wm-testimonial-row .wm-testimonial .pp-content-post {
        height: auto !important;
    }
    .wm-testimonial-row .wm-styled-posts.wm-post-slider .owl-dots {
        display: block;
    }
    .wm-testimonial-row  .wm-styled-posts.wm-post-slider .owl-nav {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    /* solid bg inline */
    .wm-testimonial-solid-inline > .fl-module-content {
        padding: 40px;
    }

    /* solid bg full width */
    .wm-testimonial-row.wm-testimonial-solid-full .wm-testimonial > .fl-module-content  {
        padding: 40px 0;
    }

    /* img bg - same spacing as others */
    .wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        padding: 60px 30px;
    }

    /* remove comment for img bg - left aligned */
    /*.wm-testimonial-row.wm-testimonial-img .wm-testimonial .fl-post-text-wrap {
        padding: 8rem 30px 4rem;
    }*/
}





/*--------------------------------*/
/*       WHERE TO FROM HERE       */
/*--------------------------------*/

@media only screen and (max-width: 768px) {
    #wm-where-to .panel-content-col,
    #wm-where-to .panel-content-col .fl-button-wrap {
        text-align: center;
    }
}

/* Row Version *
#wm-where-to .fl-row-content-wrap {
    padding-top: 80px;
    padding-bottom: 140px;
    overflow: hidden;
}

#wm-where-to .wm-styled-posts .wm-post-text-wrap {
    padding-left: 0 !important;
}
*/





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

/*--------------------------------*/
/*      ACCORDIONS (+ FAQS)       */
/*--------------------------------*/

/*** BASE STYLES ***/

.wm-styled-accordion .pp-accordion-item .pp-accordion-button {
    font-weight: var(--wm-fweight-bold);
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
}

.wm-styled-accordion .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon {
    /*padding-left: 0 !important;*/
    font-size: 1.2em;
}
.wm-styled-accordion .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon::before {
    /*font-weight: 500;*/
    font-size: inherit;
}


/** Icons **/

.wm-styled-accordion .pp-accordion-button .pp-accordion-icon {
    font-size: inherit;
    width: 30px;
    padding: 0;
    margin-right: 20px;
    line-height: 1;
}
.wm-styled-accordion .pp-accordion-button .pp-accordion-icon:before {
    font-size: 1.25em;
    text-align: center;
}


/** Custom Open/Close Text **/

/* closed */
.wm-styled-accordion .pp-accordion-button .pp-accordion-button-label span.wm-open,
.wm-styled-accordion .pp-accordion-button[aria-expanded="false"] .pp-accordion-button-label span.wm-open {
    display: none;
}
.wm-styled-accordion .pp-accordion-button .pp-accordion-button-label span.wm-closed,
.wm-styled-accordion .pp-accordion-button[aria-expanded="false"] .pp-accordion-button-label span.wm-closed {
    display: block;
}

/* open */
.wm-styled-accordion .pp-accordion-button[aria-expanded="true"] .pp-accordion-button-label span.wm-closed {
    display: none;
}
.wm-styled-accordion .pp-accordion-button[aria-expanded="true"] .pp-accordion-button-label span.wm-open {
    display: block;
}



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

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

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


/** 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: flex-start;
    text-transform: none;
    /*font-size: 18px;*/
}

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

.wm-accordion-plain .pp-accordion-item.pp-accordion-item-active .pp-accordion-button,
.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-primary);
}
.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:hover .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: 15px 0 20px 30px;
}


/** Plain - FAQ **/

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



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

/*** SOLID BG STYLES ***/

.wm-accordion-solid .pp-accordion-item {
    margin-bottom: 20px;
    box-shadow: var(--wm-box-shadow);
}


/** Button **/

.wm-accordion-solid .pp-accordion-item .pp-accordion-button {
    padding: 20px 30px;
    border: none;
    background-color: var(--wm-bg-light);
    color: var(--wm-text-dark);
}
.wm-accordion-solid .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
    background-color: var(--wm-primary);
    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: 1px solid var(--wm-bg-light);
    border-top: none;
    background: #fff;
    padding: 40px 30px;
}


/** Round Borders **/
/* uncomment to add rounded borders */
/*.wm-accordion-solid .pp-accordion-item {
    box-shadow: none;
}
.wm-accordion-solid .pp-accordion-item .pp-accordion-button,
.wm-accordion-solid .pp-accordion-item .pp-accordion-content {
    box-shadow: var(--wm-box-shadow);
}
.wm-accordion-solid .pp-accordion-item .pp-accordion-button {
    border-radius: var(--wm-border-radius);
}
.wm-accordion-solid .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
    border-radius: var(--wm-border-radius) var(--wm-border-radius) 0 0;
}
.wm-accordion-solid .pp-accordion .pp-accordion-item .pp-accordion-content {
    border-radius: 0 0 var(--wm-border-radius) var(--wm-border-radius);
}*/





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

/** Responsive **/

/* add extra padding on large devices */
@media only screen and (min-width: 1200px) {
    .wm-accordion-solid .pp-accordion-item .pp-accordion-button,
    .wm-accordion-solid .pp-accordion .pp-accordion-item .pp-accordion-content {
        padding-left: 50px;
        padding-right: 50px;
    }
}





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





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

.wm-styled-hours .pp-business-hours-content {
    background: var(--wm-bg-light);
    color: var(--wm-text-dark);
    border-radius: var(--wm-border-radius);
    box-shadow: var(--wm-box-shadow);
}
.wm-styled-hours .pp-business-hours-content .pp-bh-row.pp-highlight-row {
    background-color: var(--wm-primary);
    color: var(--wm-text-light);
}

.wm-styled-hours .pp-business-hours-content .pp-bh-row {
    padding: 14px 30px;
}
.wm-styled-hours .pp-business-hours-content .pp-bh-row:not(:last-child) {
    border-bottom: 5px solid var(--wm-bg-page-content);
}

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





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

/*** BASE STYLES ***/

.wm-styled-faq .pp-faq-item .pp-faq-button .pp-faq-button-label {
    font-weight: var(--wm-fweight-bold);
}

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



/** Button **/

.wm-styled-faq .pp-faq-item .pp-faq-button .pp-faq-button-icon.pp-faq-icon-left::before {
    width: 20px;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
    font-size: 1rem;
    /*color: var(--wm-primary);*/
}

.wm-styled-faq .pp-faq-item .pp-faq-button .pp-faq-button-icon {
    /*color: var(--wm-primary);
    font-weight: 400;*/
    padding-right: 0 !important;
}

.wm-styled-faq .pp-faq-item .pp-faq-button {
    padding: 0px !important;
    background-color: transparent;
    align-items: flex-start;
}

.wm-styled-faq .pp-faq-item .pp-faq-button:hover,
.wm-styled-faq .pp-faq-item.pp-faq-item-active .pp-faq-button,
.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 {
    border: none;
    padding: 15px 0 20px 30px !important;
    background: transparent;
}






/*--------------------------------*/
/*             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: 44px;
    padding: 6px 10px !important;
}


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

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


/** 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: var(--wm-border-radius) !important;
    background: #fff;
    padding: 10px 1rem !important;
    font-weight: 400 !important;
    font-size: 1rem !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-primary);
}


/** 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);
    opacity: 0.6;
    font-size: 1rem;
}



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

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

/** Labels **/

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gfield .gfield_label {
    font-weight: var(--wm-fweight-bold);
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: var(--wm-font-heading);
}

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper.gravity-theme .ginput_complex label {
    font-weight: 400;
    font-size: 0.75rem;
    font-family: var(--wm-font-body);
}

.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.75rem !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;
}

@media (max-width: 640px) {
    .wm-styled-form .pp-gf-content .pp-gf-inner .gform_wrapper .ginput_complex span {
        margin-bottom: 14px;
    }
    .wm-styled-form .pp-gf-content .pp-gf-inner .gform_wrapper .ginput_complex span:last-child {
        margin-bottom: 0px;
    }
}




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

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

.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: 1rem;
    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: var(--wm-fweight-bold);
}


/** 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: var(--wm-border-radius);
}

.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: var(--wm-font-icons);
    font-weight: 900;
    font-size: 1.25rem;
    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 {
    z-index: 99999 !important;
}

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

@media (max-width: 640px) {
    #ui-datepicker-div.gravity-theme.ui-datepicker {
        max-width: calc(90% - 80px);
        width: 350px;
    }
}

.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-primary);
    border-color: var(--wm-primary);
}
#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-primary);
    background: var(--wm-bg-light);
}



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

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

.fl-module-pp-gravity-form .pp-gf-content .gform_wrapper .gform_drop_area {
    border-style: dashed;
    padding: 30px 20px;
}

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



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

/*** 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: 600;
    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: 600;
    font-size: 0.85em;
    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: 600 !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-heading);
    font-size: var(--wm-fsize-hthree);
    border-bottom: 2px solid var(--wm-neutral);
    display: inline-block;
}


/** Progress Bar **/

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

.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: 2px 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: 2px 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.125rem;
    font-weight: var(--wm-fweight-bold);
    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.75rem;
    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.75rem;
    font-weight: var(--wm-fweight-bold);
    color: var(--wm-form-valid-msg-text) !important;
    border: none;
    background: none;
    margin-top: 10px;
}*/



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

/*** SEARCH FORM STYLES ***/

.pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__container:not(.pp-search-form--lightbox) {
    background: #fff !important;
}

.fl-module-pp-search-form button {
    border: 1px solid var(--wm-tertiary) !important;
    background: var(--wm-tertiary) !important;
    color: var(--wm-text-dark) !important;
}
.fl-module-pp-search-form button:hover {
    border: 1px solid var(--wm-hover) !important;
    background: var(--wm-hover) !important;
    color: var(--wm-text-light) !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;
}

form.pp-search-form input[type="search"] {
    border: 1px solid var(--wm-tertiary) !important;
}
form.pp-search-form input[type="search"]:focus {
    border: 1px solid var(--wm-hover) !important;
    /*border-right: 0px !important;*/
}


/** Round Borders **/
/* uncomment to add rounded borders */
/*.fl-module-pp-search-form .pp-search-form__container {
    border-radius: var(--wm-border-radius);
    background: none;
}
form.pp-search-form input[type="search"],
form.pp-search-form input[type="search"]:focus,
.fl-module-pp-search-form .pp-search-form__container input {
    border-radius: var(--wm-border-radius) 0 0 var(--wm-border-radius) !important;
}
.fl-module-pp-search-form .pp-search-form__container button {
    border-radius: 0 var(--wm-border-radius) var(--wm-border-radius) 0;
}*/



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

/*** SUBSCRIBE FORM STYLES ***/

#subscribe-row .fl-row-content-wrap {
    padding-top: 200px;
    padding-bottom: 200px;
}
@media only screen and (max-width: 1400px) {
    #subscribe-row .fl-row-content-wrap {
        padding-top: 160px;
        padding-bottom: 160px;
    }
}
@media only screen and (max-width: 768px) {
    #subscribe-row .fl-row-content-wrap {
        padding-top: 0px;
        padding-bottom: 0px;
        min-height: 100vh;
    }
}

#subscribe-row .gform_wrapper .gform_fields .gfield input {
    border: 1px solid var(--wm-text-light);
}
#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;
}

#subscribe-row .fl-module-heading {
    text-align: center;
}
#subscribe-row .fl-heading {
    max-width: 400px;
    display: inline-block;
}




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

/*** GENERIC SINGLE ICONS ***/

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

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

.fl-module-icon .fl-icon-wrap {
    font-size: var(--wm-fsize-large);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.fl-module-icon .fl-icon-wrap .fl-icon,
.fl-module-icon .fl-icon-wrap .fl-icon-text {
    display: block;
}

/*.fl-module-icon .fl-icon-wrap .fl-icon a,
.fl-module-icon .fl-icon-wrap a.fl-icon-text-link {
    color: var(--wm-primary);
}*/

.fl-module-icon .fl-icon-wrap:hover .fl-icon a,
.fl-module-icon .fl-icon-wrap:hover a.fl-icon-text-link,
.fl-module-icon .fl-icon-wrap .fl-icon a:hover,
.fl-module-icon .fl-icon-wrap .fl-icon a:focus,
.fl-module-icon .fl-icon-wrap a.fl-icon-text-link:hover,
.fl-module-icon .fl-icon-wrap a.fl-icon-text-link:focus {
    color: var(--wm-hover);
}

.fl-module-icon .fl-module-content .fl-icon-text {
    height: auto !important;
    line-height: 1.6;
    padding-left: 1rem;
    max-width: calc(100% - 25px);
}

.wm-styled-icon .fl-icon-wrap .fl-icon i,
.wm-styled-icon .fl-icon-wrap .fl-icon i::before {
    width: 1.25em;
    height: auto;
    line-height: 1;
    text-align: center;
    font-size: inherit;
}
.wm-styled-icon .fl-icon-wrap .fl-icon i::before {
    font-size: 1.2em;
}


/* Top align icons where text goes over multiple lines */
.wm-styled-icon.wm-top .fl-icon-wrap .fl-icon {
    align-self: flex-start;
    padding-top: 0.25rem;
}


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





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

/*** CONTACT ICONS ***/

.wm-contact-icon .fl-icon-wrap a {
    text-decoration: none;
}




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

/*** SOCIAL ICONS ***/

/*.wm-social-media-icons .fl-icon a {
    color: var(--wm-primary);
}*/





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

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

.wm-styled-icon-list .pp-icon-list .pp-icon-list-item {
    margin-bottom: 10px;
    font-size: var(--wm-fsize-large);
}

.wm-styled-icon-list .pp-icon-list .pp-list-item-icon {
    margin-right: 1rem;
    padding-top: 0;
}

.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.25rem;
    height: auto;
    font-size: inherit;
    line-height: 1.6;
}
.wm-styled-icon-list .pp-icon-list .pp-list-item-icon::before {
    font-size: 1.2em;
    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-styled-image-slider .pp-image-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    top: initial;
    left: initial;
    opacity: 1;
    transform: none;
    line-height: 1;
    border-radius: var(--wm-border-radius);
    align-items: flex-end;
    justify-content: flex-end;
    /*filter: alpha(opacity = 1);
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;*/
}
/*.fl-module-photo .fl-photo-content:hover .fl-photo-caption-hover, 
.pp-photo-gallery .pp-photo-gallery-item .pp-photo-gallery-content:hover .pp-gallery-overlay .pp-overlay-inner {
    opacity: 100;
    filter: alpha(opacity = 100);
}*/

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

.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: center;
    color: var(--wm-text-dark) !important;
}



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

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

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


/** Navigation **/

.wm-styled-image-slider-gallery button.pp-swiper-button {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}
.wm-styled-image-slider-gallery .pp-image-carousel-wrapper:hover button.pp-swiper-button {
    opacity: 1;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
}
@media only screen and (min-width: 768px) {
    .wm-styled-image-slider-gallery .swiper-pagination {
        display: none;
    }
}


/** Image Max Width **/

@media only screen and (max-width: 768px) {
    .wm-styled-image-slider-gallery .swiper-container {
        max-width: 450px;
    }
}




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

/*** 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.2;
    padding: 8px 10px;
    border-radius: 0;
    color: var(--wm-text-light);
    font-family: var(--wm-font-heading);
    font-size: var(--wm-fsize-small);
    font-weight: var(--wm-fweight-bold);
    text-transform: uppercase;
    width: 100px;
    text-align: center;
}

.wm-styled-image-compare .twentytwenty-handle {
    background: var(--wm-primary);
    border: 4px 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-infolist-wrap .pp-list-items .pp-list-connector {
    height: calc(100% - 1.4rem);
    top: 1.65rem;
    /*border-left-color: var(--wm-primary);*/
}


/** Base Styles **/

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

.wm-styled-info-list .pp-infolist-wrap .pp-icon-wrapper {
    margin-right: 1rem;
    padding-top: 0.2em;
}
.wm-styled-info-list .pp-infolist-wrap .pp-list-item .pp-infolist-icon-inner {
    width: 1.25rem;
    height: 1.25rem;
}

/* 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::before {
    font-size: 1.2em;
    line-height: 1;
}

.wm-styled-info-list .pp-infolist-title .pp-infolist-title-text {
    font-weight: var(--wm-fweight-bold);
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
}

.wm-styled-info-list .pp-infolist-wrap .pp-list-item .pp-list-item-content {
    font-size: var(--wm-fsize-large);
    line-height: 1.6;
    /* top align icons */
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}


/** Extra Title Styles */

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

.wm-info-list-title .pp-infolist-title .pp-infolist-title-text {
    font-family: var(--wm-font-heading);
    font-size: var(--wm-fsize-hthree);
    line-height: 1.2;
}

.wm-info-list-title .pp-list-item-content .pp-infolist-description {
    font-size: 1rem;
}


/** More Link Styles **/


.fl-module-pp-infolist .pp-more-link {
    color: inherit;
    text-decoration: none !important;
}

/* Whole Box */

.fl-module-pp-infolist li > a.pp-more-link:hover,
.fl-module-pp-infolist li > a.pp-more-link:focus {
    color: var(--wm-text-dark);
}

.fl-module-pp-infolist li > a.pp-more-link .pp-infolist-title-text {
    text-decoration: underline;
}
.fl-module-pp-infolist li > a.pp-more-link:hover .pp-infolist-title-text,
.fl-module-pp-infolist li > a.pp-more-link:focus .pp-infolist-title-text {
    color: var(--wm-hover);
}

/* Title */

.fl-module-pp-infolist .pp-infolist-title a.pp-more-link .pp-infolist-title-text {
    color: var(--wm-text-dark);
    text-decoration: underline;
}
.fl-module-pp-infolist .pp-infolist-title a.pp-more-link:hover .pp-infolist-title-text,
.fl-module-pp-infolist .pp-infolist-title a.pp-more-link:focus .pp-infolist-title-text {
    color: var(--wm-hover);
}

/* Read More */

.fl-module-pp-infolist .pp-infolist-description a.pp-more-link {
    text-decoration: underline !important;
    color: var(--wm-primary);
    font-size: 1rem;
}
.fl-module-pp-infolist .pp-infolist-description a.pp-more-link:hover,
.fl-module-pp-infolist .pp-infolist-description a.pp-more-link:focus {
    color: var(--wm-hover);
}







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

/** Box **/

.wm-styled-info-box .pp-infobox {
    padding: 50px 30px;
    border-radius: var(--wm-border-radius);
    margin: 0 auto;
    box-shadow: var(--wm-box-shadow);
}

.wm-alert-attention .pp-infobox {
    background: var(--wm-primary);
    border: 3px solid var(--wm-primary);
    color: var(--wm-text-light);
}

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


/** Icon **/

.wm-styled-info-box .pp-infobox-wrap .pp-icon-wrapper {
    line-height: 1;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.wm-styled-info-box .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
    margin-right: 40px;
}
.wm-styled-info-box .pp-infobox-wrap .layout-5 .pp-icon-wrapper {
    margin-bottom: 10px;
}

.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: 50px;
}

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


/** Text **/

.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: 10px;
    font-weight: var(--wm-fweight-bold);
    font-size: var(--wm-fsize-hthree);
    font-family: var(--wm-font-heading);
}

.wm-styled-info-box .pp-infobox-title-prefix {
    font-size: var(--wm-fsize-small);
}

.wm-styled-info-box .pp-infobox-description {
    font-size: var(--wm-fsize-large);
}


/** Responsive **/

@media only screen and (min-width: 1200px) {
    .wm-styled-info-box .pp-infobox {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media only screen and (min-width: 900px) {
    .wm-styled-info-box .pp-infobox-wrap .pp-infobox {
        max-width: 800px;
    }
}
@media only screen and (max-width: 768px) {
    .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;
    }
}





/*--------------------------------*/
/*       LOGO / IMAGE SLIDER      */
/*--------------------------------*/

.wm-styled-logo-slider .pp-logos-content .pp-logos-wrapper {
    align-items: flex-start;
}

.wm-styled-logo-slider .pp-logo .title-wrapper .logo-title {
    color: inherit !important;
    margin: 10px;
}

/* Dots */

.wm-styled-logo-slider .pp-logos-content .bx-pager {
    position: relative;
    bottom: 0;
    padding-top: 10px;
}

.wm-styled-logo-slider .pp-logos-content .bx-pager a {
    background-color: var(--wm-primary);
}

.wm-styled-logo-slider .pp-logos-content .bx-pager a.active,
.wm-styled-logo-slider .pp-logos-content .bx-pager a:hover {
    background-color: var(--wm-hover);
}

/* Arrows */

.wm-styled-logo-slider .pp-logos-content button.logo-slider-nav {
    height: 30px;
    width: 30px;
    color: var(--wm-text-dark);
    background: #fff;
	border: 1px solid var(--wm-text-dark);
	border-radius: 50%;
}
.wm-styled-logo-slider .pp-logos-content button.logo-slider-nav:hover,
.wm-styled-logo-slider .pp-logos-content button.logo-slider-nav:focus {
    background: var(--wm-hover);
    color: var(--wm-text-light);
    border: 2px solid #fff;
}

.wm-styled-logo-slider .pp-logos-content .logo-slider-next {
    right: -36px;
}
.wm-styled-logo-slider .pp-logos-content .logo-slider-prev {
    left: -36px;
}
.wm-styled-logo-slider .pp-logos-content .logo-slider-nav span {
    line-height: 1;
}
.wm-styled-logo-slider .pp-logos-content .logo-slider-nav svg {
    height: 30px;
}






/*--------------------------------*/
/*              MAP               */
/*--------------------------------*/

.fl-map {
    border: 2px solid #fff;
    border-radius: var(--wm-border-radius);
    box-shadow: var(--wm-box-shadow);
}





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

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


/*** 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);
    border-radius: var(--wm-border-radius);
}

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

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


/*** Modal Header ***/

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

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



/** Close **/

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

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



/*** Content ***/

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

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





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

/** Number **/

.wm-styled-number-counter .fl-number .fl-number-text {
    font-size: 1rem;
}

.wm-styled-number-counter .fl-number .fl-number-text .fl-number-string {
    font-size: var(--wm-fsize-large);
}
.wm-styled-number-counter .fl-number .fl-number-text .fl-number-string span {
    font-size: var(--wm-fsize-hthree);
}


/** 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);
    border-radius: var(--wm-border-radius);
}


/* Number Above */

.wm-styled-number-counter .fl-number-bars .fl-number-text.fl-number-position-above {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.wm-styled-number-counter .fl-number-bars .fl-number-position-above .fl-number-string {
    flex-grow: 1;
    margin-bottom: 10px;
}
.wm-styled-number-counter .fl-number-bars .fl-number-position-above .fl-number-bars-container {
    width: 100%;
}
.wm-styled-number-counter .fl-number .fl-number-position-above .fl-number-bar {
    margin-top: 0;
}


/* Number Below */

.wm-styled-number-counter .fl-number-bars .fl-number-text.fl-number-position-below {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.wm-styled-number-counter .fl-number-bars .fl-number-position-below .fl-number-string {
    flex-grow: 1;
    order: 1;
    margin-top: 10px;
}
.wm-styled-number-counter .fl-number-bars .fl-number-position-below .fl-number-bars-container {
    width: 100%;
}
.wm-styled-number-counter .fl-number .fl-number-position-below .fl-number-bar {
    margin-bottom: 0px;
}






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

.wm-styled-posts .fl-post-grid-empty {
    text-align: center;
}

.wm-styled-posts .fl-post-grid-post,
.wm-styled-posts .wm-post-wrap {
    background: none;
    border-radius: var(--wm-border-radius);
}

/** Aspect Ratios **/
/*@supports (aspect-ratio: auto) {
    .wm-styled-posts .wm-post-img-wrap {
        aspect-ratio: 1/1;
    }
}*/

/* Image Box */
/*.wm-styled-posts .wm-post-img-wrap {
    aspect-ratio: 1/1;
}*/
/* Text Box */
/*.wm-styled-posts .wm-post-text-wrap {
    aspect-ratio: 3/1;
}*/


/** Image Box **/

.wm-styled-posts .wm-post-img-wrap {
    position: relative;
}


/** Image **/

.wm-styled-posts .wm-post-img {
    height: 100%;
    overflow: hidden;
}

.wm-styled-posts .wm-post-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: none;
    -webkit-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    border-radius: 0;
}
.wm-styled-posts .wm-post-img-wrap:hover .wm-post-img img {
    transform: scale(1.05);
}


/** Colour Overlay **/

.wm-styled-posts .wm-colour-overlay .wm-post-img a::after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    position: absolute;
    /*background: var(--wm-overlay);*/
    background-image: linear-gradient(180deg, rgba(0,0,0,0.6) 10%, rgba(0,0,0,0) 50%);
    opacity: 1;
    -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-colour-overlay:hover .wm-post-img a::after {
    opacity: 1;
    background-image: linear-gradient(180deg, rgba(58,112,151,1) 65%, rgba(58,112,151,0) 100%);
}


/** Caption **/

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


/** Wishlist **/

.wm-styled-posts .wm-add {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--wm-text-light);
}

.wm-styled-posts .wm-add i {
    font-size: 24px;
    cursor: pointer;
}

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


/** Text Box **/

.wm-styled-posts .wm-post-text-wrap {
    padding: 30px;
    background: var(--wm-bg-light);
}

.wm-styled-posts .wm-hide-box,
.wm-styled-posts.wm-no-text-below .wm-post-text-wrap {
    display: none;
}


/** Title **/

.wm-styled-posts .wm-post-title {
    font-family: var(--wm-font-heading);
    font-size: var(--wm-fsize-large);
    line-height: 1.4;
    font-weight: var(--wm-fweight-bold);
    margin: 0;
    padding: 0;
}

.wm-styled-posts .wm-post-title a {
    color: var(--wm-text-heading);
    text-decoration: none !important;
}
.wm-styled-posts .wm-post-title a:hover {
    color: var(--wm-hover);
}


/* Chevron */

.wm-styled-posts .wm-post-title a::after,
.wm-posts-list a::after,
#search-feed h2.fl-post-feed-title a::after {
	font-family: var(--wm-font-icons);
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	text-decoration: none !important;
}
.wm-styled-posts .wm-post-title span,
#search-feed h2.fl-post-feed-title a {
    padding-right: 0.5em;
}


/** Meta **/

.wm-styled-posts .wm-post-meta {
    font-size: var(--wm-fsize-small);
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0.6;
}

/* Separator */

.wm-styled-posts .wm-post-meta span:not(:last-child)::after {
    content: '|';
    padding: 0 0.5em;
}


/** Excerpt **/

.wm-styled-posts .wm-post-excerpt {
    font-size: 1rem;
    margin-top: 1rem;
}
.wm-styled-posts .wm-post-excerpt p {
    margin: 0;
}


/** Taxonomies **/

.wm-styled-posts .wm-post-tax {
    font-size: var(--wm-fsize-small);
    margin-top: 1rem;
    opacity: 0.6;
}
.wm-styled-posts .wm-post-tax i {
    padding-right: 0.5rem;
    /*color: var(--wm-primary);*/
}


/** Read More **/

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

.fl-post-more-link a, .fl-post-grid-more a,
.wm-styled-posts .wm-post-link a {
    font-family: var(--wm-font-body) !important;
    font-size: 1rem;
    background: none !important;
    border: none !important;
    text-decoration: none;
    display: inline-block;
    width: auto;
    font-weight: var(--wm-fweight-bold);
    text-transform: none;
    padding: 0px !important;
    border-radius: 0px;
    color: var(--wm-text-dark);
}
.fl-post-more-link a:hover, .fl-post-grid-more a:hover,
.wm-styled-posts .wm-post-link a:hover {
    color: var(--wm-hover);
}

.wm-styled-posts .wm-post-link a::after {
	font-family: var(--wm-font-icons);
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	text-decoration: none !important;
	padding-left: 0.5rem;
}


/** 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: 20px 0 0 0;
}



/** Arrows **/

.wm-styled-posts.wm-post-slider .pp-carousel-nav button {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}
.wm-styled-posts.wm-post-slider .pp-content-post-carousel:hover .pp-carousel-nav button {
    opacity: 1;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
}



/** Responsive **/

@media only screen and (min-width: 768px) {
    .wm-styled-posts.wm-post-slider .owl-dots {
        display: none;
    }
}
/*@media only screen and (max-width: 992px) {
    .wm-styled-posts .wm-post-title {
        font-size: 18px;
    }
}*/
@media only screen and (max-width: 768px) {
    /*.wm-styled-posts.wm-post-slider .fl-module-content {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }*/
    
    /*.wm-styled-posts.wm-post-slider .owl-nav {
        display: none;
    }*/
    
    
    .wm-styled-posts.wm-posts-text-below .fl-post-column,
    .wm-styled-posts.wm-posts-text-overlay .fl-post-column {
        padding-bottom: 60px;
    }
    .wm-styled-posts.wm-posts-text-below .fl-post-grid .fl-post-column:last-child,
    .wm-styled-posts.wm-posts-text-overlay .fl-post-grid .fl-post-column:last-child {
        padding-bottom: 0px;
    }
    
    .wm-posts-2-col .fl-post-feed-post {
        margin-bottom: 60px !important;
    }
    
    .wm-styled-posts .fl-builder-pagination {
        padding-top: 60px;
    }
    
    .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;
    }*/
}




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

/*** POST LIST - TITLE ONLY ***/

.wm-posts-list .fl-post-feed .fl-post-feed-post {
    margin-bottom: 10px;
}

.wm-posts-list .wm-post-wrap,
.wm-posts-list .wm-post-text-wrap {
    background: none;
}

.wm-posts-list .wm-post-text-wrap {
    padding: 0;
    /*aspect-ratio: auto;*/
}

.wm-posts-list .wm-post-title {
    font-family: var(--wm-font-body);
    /*font-size: 1rem;*/
    line-height: 1.4;
    font-weight: var(--wm-fweight-bold);
    padding-bottom: 0px;
    display: inline-block;
    text-decoration: none;
    color: var(--wm-text-dark);
}
.wm-posts-list .wm-post-title:hover,
.wm-posts-list .wm-post-title:focus {
    color: var(--wm-hover);
}

@media only screen and (max-width: 768px) {
    .wm-posts-list .fl-post-grid-post, 
    .wm-posts-list .fl-post-feed-post {
        max-width: 100%;
    }
}



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

/*** POST LIST - 2 COLUMNS ***/

/** Box **/

.wm-posts-2-col .wm-post-wrap {
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: var(--wm-border-radius);
    overflow: hidden;
}
.wm-posts-2-col img {
    border-radius: 0px;
}

.wm-posts-2-col .wm-post-img-wrap {
    width: 50%;
    /* split design
    width: calc(50% + 15px);
    padding-right: 30px; */
}
.wm-posts-2-col .wm-post-text-wrap {
    width: 50%;
    /* split design
    width: calc(50% - 15px); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 50px;
}
/*@media only screen and (min-width: 1200px) {
    .wm-posts-2-col .wm-post-text-wrap {
        min-height: 350px;
    }
}*/


/** Caption **/

/* uncomment to hide captions for all */
/*.wm-posts-2-col .wm-post-img-caption {
    display: none;
}*/


/** Title **/
.wm-posts-2-col .wm-post-title {
    font-size: var(--wm-fsize-hthree);
}

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


/** Pagination **/

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


/** Responsive **/

@media only screen and (max-width: 992px) {
    .wm-posts-2-col .wm-post-text-wrap {
        padding: 30px;
    }
}
@media only screen and (max-width: 768px) {
    /*.wm-posts-2-col .fl-post-feed-post {
        max-width: 100%;
    }*/
    
    .wm-posts-2-col .wm-post-wrap {
        display: block;
    }
    .wm-posts-2-col .wm-post-img-wrap,
    .wm-posts-2-col .wm-post-text-wrap {
        width: 100%;
        /*padding-right: 0px;*/
    }
}



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

/*** POST GRID - TEXT BOX BELOW ***/

/** Box **/

.wm-posts-text-below .wm-post-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    border-radius: var(--wm-border-radius);
    overflow: hidden;
}


/** Image **/

/* uncomment to turn off colour overlay for all */
/*.wm-posts-text-below .wm-colour-overlay .wm-post-img a::after{
    display: none !important;
}*/


/** Caption **/

/* uncomment to hide captions for all */
/*.wm-posts-text-below .wm-post-img-caption {
    display: none;
}*/


/** Text Box **/

.wm-posts-text-below .wm-post-text-wrap {
    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%;
    position: relative;
}


/** Title **/

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


/** Read More **/

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



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

/*** POST GRID - TEXT BOX OVERLAY ***/

/** Box **/

.wm-posts-text-overlay .wm-post-wrap {
    position: relative;
    /*background: var(--wm-bg-light);*/
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: var(--wm-border-radius);
    overflow: hidden;
}
/*.wm-posts-text-overlay.wm-no-text-below .wm-post-wrap {
    height: auto;
}*/
.wm-posts-text-overlay .wm-post-wrap.wm-tours,
.wm-posts-text-overlay .wm-tours .wm-post-img-wrap,
.wm-posts-text-overlay .wm-post-wrap,
.wm-posts-text-overlay .wm-post-img-wrap{
    height: 100%;
}

.wm-posts-text-overlay .wm-post-img-wrap {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.wm-posts-text-overlay .wm-post-img,
.wm-posts-text-overlay .wm-post-overlay-text-wrap {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.wm-posts-text-overlay .wm-post-text-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.wm-posts-text-overlay.wm-no-text-below .wm-post-text-wrap {
    padding: 0;
}


/** Image **/

.wm-posts-text-overlay.wm-no-text-below .wm-post-img-wrap:hover .wm-post-img img {
    transform: none;
}
.wm-posts-text-overlay.wm-no-text-below .wm-post-wrap:hover .wm-post-img img {
    transform: scale(1.05);
}

/* uncomment to turn off colour overlay for all */
/*.wm-posts-text-overlay .wm-colour-overlay .wm-post-img a::after{
    display: none !important;
}*/


/** Caption **/

/* uncomment to hide captions for all */
/*.wm-posts-text-overlay .wm-post-img-caption {
    display: none;
}*/

/* uncomment to move caption to top */
/*.wm-posts-text-overlay .wm-post-img-caption {
    bottom: unset;
    top: 0;
    z-index: 1;
}*/


/** Overlay Content **/

.wm-posts-text-overlay .wm-post-overlay-text-wrap {
    padding: 60px 30px 30px;
}

.wm-posts-text-overlay .wm-post-img-wrap .wm-post-title,
.wm-posts-text-overlay .wm-post-img-wrap .wm-post-excerpt,
.wm-posts-text-overlay .wm-tours .wm-post-img-wrap .wm-post-summary,
.wm-posts-text-overlay .wm-tours .wm-post-img-wrap .wm-post-buttons  {
    position: relative;
}

.wm-posts-text-overlay .wm-post-img-wrap .wm-post-title a {
    display: inline-block;
}

.wm-posts-text-overlay .wm-post-img-wrap .wm-post-title a,
.wm-posts-text-overlay .wm-post-img-wrap .wm-post-excerpt,
.wm-posts-text-overlay .wm-tours .wm-post-img-wrap .wm-post-summary{
    color: var(--wm-text-light);
    text-shadow: var(--wm-text-shadow);
    width: 100%;
}
.wm-posts-text-overlay .wm-post-img-wrap .wm-post-title a:hover {
    color: var(--wm-primary);
}


/** Additional styling for overlay excerpts / remove as needed / check sizing to ensure excerpt doesn't get clipped **/

/*.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap {
    aspect-ratio: 3/4;
    max-height: 50vh;
}*/

.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img a {
    pointer-events: none;
}
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap .wm-post-title a {
    display: inline;
}

/* Hover Animations */

/* Excerpt slide in below title 
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap .wm-post-excerpt {
    opacity: 0;
    max-height: 1px;
    -webkit-transition: opacity 0.3s ease-in-out 0.1s, max-height 0.5s ease-out;
    -o-transition: opacity 0.3s ease-in-out 0.1s, max-height 0.5s ease-out;
    transition: opacity 0.3s ease-in-out 0.1s, max-height 0.5s ease-out;
}
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap:hover .wm-post-excerpt,
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap:focus .wm-post-excerpt {
    opacity: 1;
    max-height: 200px;
    -webkit-transition: opacity 0.5s ease-in-out, max-height 1.2s ease-out;
    -o-transition: opacity 0.5s ease-in-out, max-height 1.2s ease-out;
    transition: opacity 0.5s ease-in-out, max-height 1.2s ease-out;
}*/


/* Excerpt fades in above title */
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-overlay-text-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.wm-posts-text-overlay .wm-tours .wm-post-overlay-text-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap .wm-post-title {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 40px;
}*/

.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap .wm-post-excerpt,
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap .wm-post-summary{
    margin-top: 20px;
    opacity: 0;
    top: 20px;
    -webkit-transition: opacity 0.5s ease-in-out, top 0.3s ease-out;
    -o-transition: opacity 0.5s ease-in-out, top 0.3s ease-out;
    transition: opacity 0.5s ease-in-out, top 0.3s ease-out;
}
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap:hover .wm-post-excerpt,
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap:focus .wm-post-excerpt,
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap:hover .wm-post-summary,
.wm-posts-text-overlay.wm-overlay-excerpt .wm-post-img-wrap:focus .wm-post-summary {
    opacity: 1;
    top: 0px;
}


/** Tour Price and Booking **/

.wm-posts-text-overlay .wm-post-wrap.wm-tours,
.wm-posts-text-overlay .wm-tours .wm-post-img-wrap {
    height: 100%;
}

.wm-posts-text-overlay .wm-tours .wm-post-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;    
    -webkit-box-pack: start;    
    -ms-flex-pack: start;    
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
}

.wm-posts-text-overlay .wm-tours .wm-post-buttons .wm-post-price {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
}

.wm-posts-text-overlay .wm-tours .wm-post-img-wrap .wm-post-price {
    color: var(--wm-text-light);
    text-shadow: var(--wm-text-shadow);
    font-weight: var(--wm-fweight-bold);
    text-transform: uppercase;
    padding: 10px 20px 10px 0;
}


/** Title **/

.wm-posts-text-overlay .wm-post-title {
    font-size: var(--wm-fsize-hfour);
}

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


/** Read More **/

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


/** Responsive **/

@media only screen and (min-width: 550px) and (max-width: 768px) {
    .wm-posts-text-overlay.vertical .wm-post-img-wrap {
        aspect-ratio: 4/3;
    }
}



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

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

/** Box **/
/* for sliders that go from edge to edge */

/*.wm-styled-posts.wm-post-slider .fl-module-content {
    margin: 20px 0 !important;
}
.wm-testimonial.wm-post-slider .fl-module-content {
    margin: 20px !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-testimonial.wm-post-slider .pp-content-post-carousel {
    overflow: visible;
    margin: 0 40px;
}
.wm-testimonial.wm-post-slider .pp-content-post-carousel .owl-carousel {
    overflow: hidden;
}

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

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


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


/** 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 60px;
        width: calc(100% - 120px);
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-prev {
        left: 44px;
    }
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .owl-nav button.owl-next {
        right: 44px;
    }
}
@media only screen and (max-width: 450px) {
    .wm-styled-posts.wm-post-slider .pp-content-post-carousel .pp-content-posts-inner {
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    .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;
    }
}

/* Shift outside margin to one side only
@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;
    }
}*/





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

/** Power Pack Module **/

.wm-styled-star-rating .pp-rating-content .pp-rating-title {
    font-size: var(--wm-fsize-large);
    font-weight: var(--wm-fweight-bold);
}
.wm-styled-star-rating .pp-rating-content .pp-rating + .pp-rating-title {
    font-weight: 400;
    font-size: 1rem;
    padding-top: 10px;
}

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

.fl-module-pp-star-rating.wm-styled-star-rating .pp-rating i {
    color: #cbcbcb;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}
.fl-module-pp-star-rating.wm-styled-star-rating .pp-rating i.pp-star-full:before {
    /*color: #e9c233;*/
    color: var(--wm-primary);
}


/** Standard Module **/

.fl-module-star-rating.wm-styled-star-rating::after {
    font-size: var(--wm-fsize-large);
    background: linear-gradient(90deg, var(--wm-primary) 70px, #cbcbcb 70px);
    -webkit-text-stroke: 0px var(--wm-text-dark);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}





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

/*** LIST STYLE ***/

.wm-table-of-content-list .pp-toc-container {
    box-shadow: var(--wm-box-shadow);
}

.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: var(--wm-primary);
    color: var(--wm-text-light);
    padding: 14px 30px;
}
.wm-table-of-content-list .pp-toc-container .pp-toc-header:hover {
    background-color: var(--wm-hover);
    color: var(--wm-text-light);
}

.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: var(--wm-fweight-bold);
    font-size: 1rem;
    text-transform: uppercase;
}

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

.wm-table-of-content-list .pp-toc-body {
    background: none;
    border: 2px solid var(--wm-primary);
    border-top: 0px;
    padding: 40px 30px;
}

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

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

.wm-table-of-content-list .pp-toc-container li a {
    text-decoration: none !important;
    color: var(--wm-text-dark);
}
.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);
}


/** Round Borders **/
/* uncomment to add rounded borders */
/*.wm-table-of-content-list .pp-toc-container .pp-toc-header {
    border-radius: var(--wm-border-radius) var(--wm-border-radius) 0 0;
}
.wm-table-of-content-list .pp-toc-container .pp-toc-header.pp-toc-collapsed {
    border-radius: var(--wm-border-radius);
}
.wm-table-of-content-list .pp-toc-body {
    border-radius: 0 0 var(--wm-border-radius) var(--wm-border-radius);
}*/


/** Responsive **/

@media only screen and (min-width: 1200px) {
    .wm-table-of-content-list .pp-toc-container .pp-toc-header,
    .wm-table-of-content-list .pp-toc-body {
        padding-left: 50px;
        padding-right: 50px;
    }
}

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



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

/*** BUTTON STYLE ***/
/* don't use for hierarchical 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             */
/*--------------------------------*/

.wm-styled-table .pp-table-content {
    box-shadow: var(--wm-box-shadow);
}



/** Head **/

.fl-module-pp-table thead th {
    line-height: 1.4;
}

.wm-styled-table .pp-table-content thead {
    border: 1px solid var(--wm-primary);
}

.wm-styled-table .pp-table-content thead th {
    background: var(--wm-primary);
    /*border: 1px solid var(--wm-primary);*/
    color: var(--wm-text-light);
    font-size: 1rem;
    font-weight: var(--wm-fweight-bold);
    text-transform: uppercase;
    padding: 14px 20px;
}

.wm-styled-table .pp-table-content thead tr th:not(:last-child) {
    border-right: 1px solid var(--wm-text-light);
}



/** Body **/

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

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


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


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



/** Responsive **/

@media (max-width: 39.9375em) {
    .wm-styled-table .pp-table-content thead {
        border: none;
    }
    .wm-styled-table .pp-table-content tbody tr td {
        border-right: none;
    }
    
    
    /* Label */
    
    .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: var(--wm-fweight-bold);
        padding-right: 20px;
    }
    
    
    /* Item Spacing */
    
    table.tablesaw-stack tr td .tablesaw-cell-content {
        padding-top: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    table.tablesaw-stack tr td + td {
        padding-top: 15px;
    }
    .wm-styled-table tbody tr td,
    table.tablesaw-stack tr td {
        padding-left: 30px;
        padding-right: 30px;
    }
    table.tablesaw-stack tr td:first-child {
        padding-top: 30px;
    }
    table.tablesaw-stack tr td:last-child {
        padding-bottom: 30px;
    }
    
    
    /* Make Table Content Inline on Mobile */
    
    .wm-styled-table .pp-table-content td {
        text-align: left;
    }
    .wm-styled-table .pp-table-content td .pp-table-header-inner {
        display: inline-block;
    }
    .wm-styled-table .tablesaw-stack td .tablesaw-cell-label {
        display: inline-block;
        width: 150px;
    }
    .wm-styled-table table.tablesaw-stack tr td .tablesaw-cell-content {
        display: inline-block;
        width: calc(100% - 150px);
        padding-top: 0;
    }
    .wm-styled-table .pp-table-content td img {
        margin: 0;
        width: 100%;
        max-width: 150px;
    }
}
@media (max-width: 450px) {
    /* Remove Inlining on Small Mobiles */
    .wm-styled-table table.tablesaw-stack tr td .tablesaw-cell-content {
        padding-top: 2px;
        width: 100%;
        max-width: 100%;
    }
}



/** Round Borders **/
/* uncomment to add rounded borders */

/*.wm-styled-table table {
    border-collapse: separate;
    border-radius: 10px;
}

.wm-styled-table .pp-table-content thead tr th:first-child {
    border-radius: var(--wm-border-radius) 0 0 0;
}
.wm-styled-table .pp-table-content thead tr th:last-child {
    border-radius: 0 var(--wm-border-radius) 0 0;
}

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

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

.wm-styled-table .pp-table-content tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--wm-border-radius);
}
.wm-styled-table .pp-table-content tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--wm-border-radius) 0;
}

@media (max-width: 39.9375em) {
    .wm-styled-table .pp-table-content tbody tr td {
        border-left-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 0px;
        border-color: var(--wm-primary);
    }
    .wm-styled-table .pp-table-content tbody tr td:last-child {
        border-bottom-width: 1px;
    }
    .wm-styled-table .pp-table-content tbody tr:first-child td:first-child {
        border-top-width: 1px;
    }
    
    .wm-styled-table .pp-table-content tbody tr:first-child td:first-child {
        border-radius: var(--wm-border-radius) var(--wm-border-radius) 0 0;
    }
    .wm-styled-table .pp-table-content tbody tr:last-child td:first-child {
        border-radius: 0;
    }
    .wm-styled-table .pp-table-content tbody tr:last-child td:last-child {
        border-radius: 0 0 var(--wm-border-radius) var(--wm-border-radius);
    }
}*/





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


/** Base Styles **/

.wm-styled-tabs .pp-tabs {
    box-shadow: var(--wm-box-shadow);
}

/* Labels */

.wm-styled-tabs .pp-tabs-horizontal .pp-tabs-labels .pp-tabs-label {
    padding: 14px 30px;
    margin: 0;
}

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

.wm-styled-tabs .pp-tabs .pp-tabs-label {
    background-color: var(--wm-primary);
    color: var(--wm-text-light);
    border: none;
    font-size: 1rem;
}
.wm-styled-tabs .pp-tabs .pp-tabs-label.pp-tab-active {
    background-color: var(--wm-hover);
    /*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{
    background-color: var(--wm-hover);
    /*color: var(--wm-text-light);*/
}

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

.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::before {
    font-size: 1.2em;
}

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

.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-title {
    font-weight: var(--wm-fweight-bold);
    text-transform: uppercase;
    font-family: var(--wm-font-heading);
    font-size: inherit;
}


/* Content */

.wm-styled-tabs .pp-tabs-panels,
.wm-styled-tabs .pp-tabs-panel {
    border: none;
    background: none;
}
.wm-styled-tabs .pp-tabs-panels {
    border: 1px solid var(--wm-hover);
}

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


/** Stretched Label Styles **/

.wm-tabs-stretched .pp-tabs-panels {
    border-top: none !important;
}


/** Responsive **/

@media only screen and (max-width: 768px) {
    .wm-styled-tabs .pp-tabs {
        box-shadow: none;
    }
    
    .wm-styled-tabs .pp-tabs-panels,
    .wm-styled-tabs .pp-tabs-panel {
        background: none;
    }
    .wm-styled-tabs .pp-tabs-panels {
        border: none;
    }
    
    .wm-styled-tabs .pp-tabs-panel {
        margin-bottom: 30px;
        box-shadow: var(--wm-box-shadow);
    }
    
    .wm-styled-tabs .pp-tabs-panel-label {
        padding: 20px 30px;
    }
    
    .wm-styled-tabs .pp-tabs-panels .pp-tabs-panel-content {
        border: 1px solid var(--wm-hover);
        border-top: 0px;
    }

    .wm-tabs-stretched .pp-tabs-panels .pp-tabs-panel-content {
        position: relative;
        left: 1px;
    }
}


/** Round Borders **/
/* uncomment to add rounded borders */

/*.wm-styled-tabs .pp-tabs .pp-tabs-labels .pp-tabs-label:first-child {
    border-radius: var(--wm-border-radius) 0 0 0;
}
.wm-styled-tabs .pp-tabs .pp-tabs-labels .pp-tabs-label:last-child {
    border-radius: 0 var(--wm-border-radius) 0 0;
}

.wm-styled-tabs .pp-tabs-panels,
.wm-styled-tabs .pp-tabs-panel {
    border-radius: 0 0 var(--wm-border-radius) var(--wm-border-radius);
}

@media only screen and (max-width: 768px) {
    .wm-styled-tabs .pp-tabs-panel-label {
        border-radius: var(--wm-border-radius);
    }
    .wm-styled-tabs .pp-tabs-panel-label.pp-tab-active {
        border-radius: var(--wm-border-radius) var(--wm-border-radius) 0 0;
    }
    
    .wm-styled-tabs .pp-tabs-panels .pp-tabs-panel-content {
        border-radius: 0 0 var(--wm-border-radius) var(--wm-border-radius);
    }
}*/





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

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

.wm-styled-team-member .pp-member-wrapper .pp-member-content {
    padding: 20px 30px;
    text-align: center;
    /*border: 1px solid var(--wm-primary);
    border-top: 0px;*/
}

.wm-styled-team-member .pp-member-wrapper .pp-member-name {
    font-family: var(--wm-font-heading);
    color: var(--wm-text-heading);
    font-size: var(--wm-fsize-hthree);
    font-weight: var(--wm-fweight-bold);
    margin: 10px 0;
}
.wm-styled-team-member .pp-member-wrapper a .pp-member-name {
    color: var(--wm-text-dark);
}
.wm-styled-team-member .pp-member-wrapper a:hover .pp-member-name {
    color: var(--wm-hover);
}

.wm-styled-team-member .pp-member-content > a,
.wm-styled-team-member .pp-member-social-icons a {
    text-decoration: none !important;
}

.wm-styled-team-member .pp-member-content .pp-member-designation {
    font-family: var(--wm-font-body);
    color: var(--wm-text-dark);
    font-size: var(--wm-fsize-large);
    font-weight: 400;
    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-content .pp-member-social-icons li {
    margin: 5px;
}

.wm-styled-team-member .pp-member-social-profiles li a {
    font-size: var(--wm-fsize-large);
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
}


/** Round Borders **/
/* uncomment to add rounded borders */

/*.wm-styled-team-member .pp-member-wrapper {
    border-radius: 0 0 var(--wm-border-radius) var(--wm-border-radius);
}

.wm-styled-team-member .pp-member-wrapper .pp-member-image img {
    border-radius: var(--wm-border-radius) var(--wm-border-radius) 0 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;
    font-family: var(--wm-font-body);
    font-size: var(--wm-fsize-small);
    font-weight: 400;
}







/**********************************/
/*******    SITE STYLES    ********/
/**********************************/
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/*** EVENTS SINGLE ***/

/** Sumamry Col **/

.event-summary-col .fl-col-content {
    background: var(--wm-bg-light);
    margin: 20px !important;
    padding: 0 10px;
}

/* Summary Icons */

.event-summary {
    padding-top: 20px;
}

.event-summary .summary-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 20px;
}

.event-summary .summary-item i {
    font-size: 1.2rem;
    width: 30px;
    margin-right: 20px;
    text-align: center;
    font-weight: 300;
    color: var(--wm-primary);
}
.event-summary .summary-item div {
    line-height: 1.4;
}

.event-summary .summary-item .venue {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}

.event-summary abbr {
    text-decoration: none !important
}



/** Meta Col **/

.event-meta-wrap,
.event-meta-venue,
.event-meta-organiser {
    display: flex;
    flex-direction: column;
}
.event-meta-wrap {
    gap: 30px;
}
.event-meta-venue,
.event-meta-organiser {
    gap: 6px;
}


.event-meta-wrap .event-meta-title {
    text-transform: uppercase;
    font-weight: 600;
}
/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-2hzbvq1xpil5 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-x91jdeq5hlu0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-n5sk9qaipjcm .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-lj34z826s9aq .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-aedp71giw0y6 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-p4t98q12h7b6 .fl-row-content {
				min-width: 0px;
			}
		