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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}
@media (max-width: 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: 1500px;
}
.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;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }



















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



































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





 .fl-node-dy721i4lovg0 > .fl-row-content-wrap {
	margin-bottom:25px;
}
@media ( max-width: 992px ) {
 .fl-node-dy721i4lovg0.fl-row > .fl-row-content-wrap {
	margin-bottom:25px;
}
}
@media ( max-width: 768px ) {
 .fl-node-dy721i4lovg0.fl-row > .fl-row-content-wrap {
	margin-bottom:25px;
}
}





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









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




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




.fl-node-1a5hicdes3o8 {
	width: 50%;
}




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




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




.fl-node-60e2gah8wbyj {
	width: 50%;
}




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




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




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




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




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




.fl-node-1j60b293a4zk {
	width: 50%;
}




.fl-node-940wxmykgvzh {
	width: 50%;
}




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




.fl-node-5h36g9jfoesp {
	width: 50%;
}




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




.fl-node-60cae9339edb4 {
	width: 100%;
}




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




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




.fl-node-fsdn2tj41qog {
	width: 100%;
}
.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-wm-banner{
    position:relative;
}
.fl-module-wm-banner .fl-module-content{
    margin:0px!important;
}
.fl-module-wm-banner .fl-row{
    height: 100%;
    margin: 0;
    max-width: 100%;
    width:100%;
}
.fl-module-wm-banner .fl-row .fl-row-content-wrap{
    height:100%;
}
.fl-module-wm-banner .fl-row-bg-video .fl-bg-video iframe{
    min-height:unset;
    min-width:unset;
}
.fl-module-wm-banner .fl-banner-epnw6gut07a9{
    /*max-height:100vh;*/
}
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-image {
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;
    width:100%;
    height:100%;
    padding:0!important;
}
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-image,
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-content{
    position:absolute;
    /*left:0px;*/
}
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-slides {
    width:100%;
    position:relative;
}
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-slide{
    height:100%;
    display:none;
}
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-content-slide{
    z-index:1;
    bottom: 0;
    display:flex;
}
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-slide,
.fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-content-slide{
    position:absolute;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

/* Pagination */
.wm-banner-pagination{
    margin: 20px 0px;
}
.wm-banner-pagination span{
    background-color: #8e8e8e;
    height: 10px;
    width: 10px;
    border-radius: 10px;
    display: block;
    float: left;
    margin: 0 5px;
    transition-duration: 1s;
    cursor:pointer;
}
.wm-banner-pagination span.wm-pagination-active{
    background-color:#f16021;
    transition-duration: 1s;
    pointer-events:none;
}

/* Default Content Style */
.wm-banner-content{
    width: 100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.wm-banner-content-inner{
    display:flex;
    flex-flow: column wrap;
}
.wm-banner-title,
.wm-banner-tagline,
.wm-banner-content .fl-button{
    margin: 5px 0px;
}
.wm-banner-buttons-wrap{
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.wm-banner-tagline{
    margin-bottom:15px;
}
.wm-banner-nav{
    position:absolute;
    height:40px;
    width:100%;
    display:flex;
    justify-content:space-between;
    z-index:2;
    top:50%;
    padding:0 20px;
}
.wm-banner-nav span{
    color:#fff;
    font-size:30px;
    cursor:pointer;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 75%);
}
.wm-banner-caption{
    position: absolute;
    bottom: 0;
    right: calc((100% - 1100px) / 2);
    background-color: rgb(51 51 51 / 50%);
    color: #fff;
    padding: 0px 10px;
}
.wm-banner-caption i{
    margin-left:10px;
}

/*@media (max-width: 991px){
    .fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-image{
    height:75vw;
    }
}*/

@media (max-width: 991px){
    .fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-content,
    .fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-image{
        position:relative;
    }
    .fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-image{
        height:75vw;
    }
    .fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-slide{
        height:100%;
        z-index:1;
    }

    .fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-content-slide{
        position: relative;
        height: auto;
        bottom:unset;
    }
    .wm-banner-nav{
        top:35vw;
    }
    .fl-module-wm-banner .fl-banner-epnw6gut07a9 .wm-banner-slides {
        transition-duration:1s;
    }
    .wm-banner-content-inner{
        padding: 20px 30px;
        width:100%;
    }
    /* Order */
    .wm-banner-pagination{
        order:1;
    }
    .wm-banner-title{
        order:2;
    }
    .wm-banner-tagline{
        order:3;
    }
    .wm-banner-button,
    .wm-banner-buttons-wrap{
        order:4;
    }
}

@media (min-width: 769px){
    /* Custom positions */
    .wm-banner-content-custom-position .wm-banner-content{
        display:flex;
        height:100%;
    }
    .wm-banner-content-custom-position.wm_banner_content_top .wm-banner-content{
        align-items:flex-start;
    }
    .wm-banner-content-custom-position.wm_banner_content_center .wm-banner-content{
        align-items:center;
    }
    .wm-banner-content-custom-position.wm_banner_content_bottom .wm-banner-content{
        align-items:flex-end;
    }
    .wm-banner-content-custom-position.wm_banner_content_left .wm-banner-content{
        justify-content:flex-start;
    }
    .wm-banner-content-custom-position.wm_banner_content_middle .wm-banner-content{
        justify-content:center;
    }
    .wm-banner-content-custom-position.wm_banner_content_right .wm-banner-content{
        justify-content:flex-end;
    }
    .wm-banner-content-custom-position.wm_banner_content_light .wm-banner-content{
        color:var(--wm-text-light);
    }
    .wm-banner-content-custom-position.wm_banner_content_dark .wm-banner-content{
        color:var(--wm-text-dark);
    }
}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-xfc3mwqjuo65, .fl-node-xfc3mwqjuo65 .fl-photo {
	text-align: center;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-zn1ytpqojw5e.fl-module-heading .fl-heading {
	text-align: left;
}
.fl-node-4cxi6d79lbrh, .fl-node-4cxi6d79lbrh .fl-photo {
	text-align: center;
}
.fl-node-efu6k9lw5i2y.fl-module-heading, .fl-node-efu6k9lw5i2y.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
.fl-node-v2grfd7qjkc9, .fl-node-v2grfd7qjkc9 .fl-photo {
	text-align: center;
}
.fl-node-1vs7x3m5lna6.fl-module-heading .fl-heading {
	text-align: left;
}
.fl-node-0otckedu1gb2, .fl-node-0otckedu1gb2 .fl-photo {
	text-align: center;
}
.fl-node-7eli1u4f9wbz.fl-module-heading, .fl-node-7eli1u4f9wbz.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
.fl-node-4gv2aq8zwhpo, .fl-node-4gv2aq8zwhpo .fl-photo {
	text-align: center;
}
.fl-node-qey5p9vmgfx0.fl-module-heading .fl-heading {
	text-align: left;
}
.fl-node-0buxnrjgsfat, .fl-node-0buxnrjgsfat .fl-photo {
	text-align: center;
}
.fl-node-5vjtfadxk1qz.fl-module-heading, .fl-node-5vjtfadxk1qz.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
.fl-node-2ipczwfrgej5.fl-module-heading .fl-heading {
	text-align: left;
}
 .fl-node-5f0c67e736ab1 > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 992px ) {
 .fl-node-5f0c67e736ab1.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5f0c67e736ab1.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-module-fl-post-navigation .screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.fl-module-fl-post-navigation nav.post-navigation {
    overflow: hidden;
}
@media (max-width: 768px) { .fl-module-fl-post-navigation .nav-links {
	display: block;
}
.fl-module-fl-post-navigation .nav-links .nav-previous {
	margin-bottom: 15px;
	width: 100%;
}
.fl-module-fl-post-navigation .nav-links .nav-next {
	text-align: right;
	width: 100%;
}
 }.fl-node-5d005c30210ef .nav-links { 
	display: flex;
	flex-direction: row;
	width: 100%;
}
.fl-node-5d005c30210ef .nav-links .nav-previous,
.fl-node-5d005c30210ef .nav-links .nav-next { 
	display: block;
	width: 100%;
}
.fl-node-5d005c30210ef .nav-links a { 
	display: inline-block;
}
.fl-node-5d005c30210ef .nav-links .nav-previous { 
	text-align: left;
}
.fl-node-5d005c30210ef .nav-links .nav-next { 
	text-align: right;
}
@media(max-width: 768px) {
	.fl-node-5d005c30210ef .nav-links, .fl-node-5d005c30210ef .nav-links .nav-previous, .fl-node-5d005c30210ef .nav-links .nav-next {
		display: block;
		width: 100%;
	}
}
 .fl-node-5d005c30210ef > .fl-module-content {
	margin-top:0px;
}
.fl-module-box:before,
.fl-module-box:after {
	position: absolute;
}
a.fl-module-box {
	text-decoration: none;
}

/* Zero margins for top level boxes */
.fl-builder-content > .fl-module-box {
	margin: 0;
}

/* Zero margins for child modules */
.fl-module-box :where( .fl-module ),
.fl-module-box :where( .fl-module-content ),
.fl-module-box.fl-block > * {
	margin: 0;
}
.fl-builder-content-36886 .fl-node-nhzw6jy5a9g8 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px;
}














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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Post Grid */

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


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

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

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

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

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

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

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

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

/* Woocommerce Style */

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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


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

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

/* Fix for Box module */
.fl-node-oprase8123tj {
	min-width: 1px;
}


.fl-node-oprase8123tj .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-oprase8123tj .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-oprase8123tj .pp-content-grid-pagination li a.page-numbers,
.fl-node-oprase8123tj .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-oprase8123tj .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-oprase8123tj .pp-content-grid-pagination li span.current,
.fl-node-oprase8123tj .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-oprase8123tj .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-oprase8123tj .pp-content-grid-load-more a {
			background-color: #ffffff;
				color: #000000;
		text-align: center;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.fl-node-oprase8123tj .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

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

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


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

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

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

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

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

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

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


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

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


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

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

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

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


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

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

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

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

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


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

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



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

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

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

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


.fl-node-oprase8123tj .pp-content-post {
	position: relative;
			margin-left: 15px;
	margin-right: 15px;
		}
.fl-node-oprase8123tj.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 30px;
}

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


.fl-node-oprase8123tj .pp-grid-space {
	width: 30px;
}

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

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

/* Woocommerce Style */

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

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

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

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



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

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

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

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

	@media screen and (max-width: 1400px) {
		
		
		.fl-node-oprase8123tj .pp-content-post {
									margin-left: 15px;
			margin-right: 15px;
					}

		.fl-node-oprase8123tj .pp-grid-space {
			width: 30px;
		}
	}

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

	.fl-node-oprase8123tj .pp-grid-space {
		width: 30px;
	}

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

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

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

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

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

	.fl-node-oprase8123tj .pp-grid-space {
		width: 30px;
	}

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

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

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

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

	.fl-node-oprase8123tj .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-oprase8123tj .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-oprase8123tj .pp-content-grid-pagination li a.page-numbers, .fl-node-oprase8123tj .pp-content-grid-pagination li span.page-numbers, .fl-node-oprase8123tj .pp-content-grid-load-more a {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
}
.fl-node-oprase8123tj .pp-content-post .pp-more-link-button, .fl-node-oprase8123tj .pp-content-post .pp-add-to-cart a, .fl-node-oprase8123tj .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-oprase8123tj .pp-content-post .pp-content-body {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-oprase8123tj .pp-content-post.pp-grid-style-9 {
	height: 275px;
}

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





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

/*** BODY TEXT ***/

@media only screen and (min-width: 1200px) {
    .wm-full-width-row .fl-rich-text,
    .wm-full-width-row .fl-heading {
        max-width: 1000px;
    }
}

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

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

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

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


/** Large Body Copy **/

.wm-large-text {
    font-size: var(--wm-fsize-large);
}


/** Taglines // All Caps **/

.wm-text-all-caps-tagline {
    font-weight: 800;
    font-family: var(--wm-font-heading);
    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: 800;
    font-family: var(--wm-font-heading);
    font-size: var(--wm-fsize-small);
    text-transform: uppercase;
    border-bottom: 2px solid var(--wm-text-dark);
    display: inline-block;
    padding-bottom: 8px;
    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 ***/

/*.page-title .fl-module-heading {
    margin-bottom: 0px;
}*/

.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 {
    margin-top: 30px;
}


/** Box with heading and Button **/

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



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

/*** LISTS ***/

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

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


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

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


/** Page List / Site Index **/

.page-list 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-overlay-row .pure-bg-img-col .wm-col-caption .fl-html,
.fl-module-photo .fl-photo-caption-hover, 
.pp-photo-gallery .pp-photo-gallery-item .pp-gallery-overlay .pp-overlay-inner,
.wm-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-overlay-row .pure-bg-img-col .wm-col-caption .fl-html,
.fl-module-photo .fl-photo-caption,
.pp-photo-gallery .pp-caption,
.pp-photo-gallery .pp-photo-gallery-caption,
.wm-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-family: var(--wm-font-heading);*/
    font-size: 0.75rem;
    display: inline-block;
    padding: 2px 10px;
    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;
}*/

#wm-header-announcement .fl-col-content .fl-rich-text {
    padding-right: 2rem;
    text-transform: uppercase;
    font-size: var(--wm-fsize-small);
}

#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;
    }
}
@media only screen and (max-width: 580px) {
    #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: calc(75% + 80px);
    }
    
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-image,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-slides .wm-banner-slide,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides.wm-image-content-slides .wm-banner-slide{
        height: calc(75vw + 80px);
    }
    
    #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: calc(75% + 80px);
    }
}



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

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


/* gradient top and bottom */
#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(18,5,40,0.4) 30px, rgba(18,5,40,0) 180px, rgba(18,5,40,0) 60%, rgba(18,5,40,0.5) 95%);
}
#page-banner-new.flat-banner .fl-row-content-wrap::after {
    background-image: linear-gradient(180deg, rgba(18,5,40,0.4) 30px, rgba(18,5,40,0) 180px);
}
/*#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;
}*/


@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: linear-gradient(180deg, rgba(18,5,40,0.4) 30px, rgba(18,5,40,0) 180px);
    }
}



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

/*** BANNER CAPTIONS ***/

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

#page-banner-new #banner-caption .fl-module-content,
#page-banner-custom-module .wm-banner-caption-wrap {
    margin-bottom: 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: 1300px;
    margin: 0 auto;
    height: auto;
    float: none;
}
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content {
    max-width: 1300px;
}

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



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

/* default position as per the design: bottom centre */
/**/#page-banner-new #banner-content-col,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content,
#page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content {
    color: var(--wm-text-light);
    position: absolute;
    top: unset;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    -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: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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


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

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

    /* vertical: top */
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slide.wm_banner_content_top .wm-banner-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide.wm_banner_content_top .wm-banner-content {
        top: 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: 80px;
        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;
    }
    #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;
    }
    #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) {
    #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 {
        bottom: 40px;
    }
}

@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-alt);
    }
    #page-banner-new #banner-content-col .fl-col-content,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-slides .wm-banner-content-inner,
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-slide .wm-banner-content-inner {
        margin: 0;
        padding: 1.25rem 0px 1.875rem 0px;
        max-width: 100%;
        text-align: center;
    }
    #page-banner-custom-module .fl-module-wm-banner .wm-banner-content-inner .wm-banner-button {
        text-align: center;
    }
    #page-banner-new #banner-button-double .banner-button-wrap {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}



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

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

/** Spacing & Alignment **/

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

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

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

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

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

#page-banner-custom-module .wm-banner-content-inner .wm-banner-button a i {
    margin-bottom: 4px;
    display: inline-block;
}
#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);
    font-size: var(--wm-fsize-banner);
    font-weight: 800;
    line-height: 1.2;
    /*text-transform: uppercase;*/
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    color: var(--wm-text-light);
}




/** Tagline / Text **/

#page-banner-new #banner-content .banner-text,
#page-banner-custom-module .wm-banner-content-inner .wm-banner-tagline {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}



/** Text Colour Variations **/

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



/** Buttons **/

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


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

    /* 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-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-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-alt);
    width: 100%;
    max-width: 100%;
}
body.administrator.fl-builder-edit #page-banner-new #banner-content-col * {
    color: var(--wm-text-dark) !important;
    text-shadow: none !important;
    
}
body.administrator.fl-builder-edit #page-banner-new #banner-content-col .fl-col-content {
    max-width: 100%;
    background: none;
}





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

/*** POST META ***/

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

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

.post-meta-data .post-meta-date,
.post-meta-data .post-meta-divider,
.post-meta-data .post-meta-author,
.post-meta-data .post-meta-categories,
.post-meta-data .post-meta-tags {
    display: inline-block;
}
.post-meta-data .post-meta-categories {
    padding-right: 20px;
}

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

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

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



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

/*** POST NAVIGATION ***/

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



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

/*** POST SOCIAL SHARING ***/

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

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

#social-sharing-btns .addtoany_list a span {
    border-radius: 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        */
/*--------------------------------*/

.breadcrumbs-row .seo-breadcrumbs {
    font-size: 0.75rem;
    text-align: left;
}
.breadcrumbs-row .seo-breadcrumbs a {
    text-decoration: none;
}

ol.breadcrumb {
    padding: 0 !important;
}
/*ol.breadcrumb li.active span {
    font-weight: 600;
}*/

#breadcrumbs-top {
    margin-top: 20px !important;
}
#breadcrumbs-bottom {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    padding-right: 4px;
}
#breadcrumbs-bottom .seo-breadcrumbs {
    text-align: right;
}







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

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

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

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

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



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

/** Column Captions **/

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

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

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

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



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

/** Responsive **/

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

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

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

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

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






/*--------------------------------*/
/*     GRADIENT OVERLAY ROWS      */
/*--------------------------------*/

/*** HORIZONTAL GRADIENT - RIGHT TO LEFT ***/

/** Row, Gradient **/

.wm-half-panel .fl-row-content {
    max-width: 1200px !important;
}
.wm-half-panel > .fl-row-content-wrap::after {
    background-image: linear-gradient(to right, rgba(232,229,235, 0) 30%, rgba(232,229,235,1) 56%);
}

.wm-half-panel .panel-spacer-col {
    width: 58% !important;
}
.wm-half-panel .panel-content-col {
    padding-top: 160px;
    padding-bottom: 160px;
    width: 42% !important;
}


.wm-half-panel .panel-content-col .wm-tagline-with-border ~ .fl-module-heading {
    padding-top: 30px;
}



/** Responsive **/

@media only screen and (max-width: 1200px){
    .wm-half-panel .panel-content-col {
        width: 50% !important;
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .wm-half-panel .panel-spacer-col {
        width: 50% !important;
    }
    /*.wm-half-panel > .fl-row-content-wrap {
        background-position: -25vw center;
    }*/
    .wm-half-panel > .fl-row-content-wrap::after {
        background-image: linear-gradient(to right, rgba(232,229,235,0) 25%, rgba(232,229,235,1) 50%);
    }
}

@media only screen and (max-width: 768px){
    .wm-half-panel > .fl-row-content-wrap {
        /*margin: 20px 30px !important;*/
        margin: 0 !important;
    }
    
    .wm-half-panel .panel-content-col {
        width: 100% !important;
        padding-bottom: 80px;
        padding-top: 80px;
    }
    .wm-half-panel .panel-spacer-col {
        display: none;
    }
    
    .wm-half-panel .fl-row-content-wrap {
        padding-top: 76%;
        background-size: auto 76vw;
        background-position: top center !important;
    }
    .wm-half-panel > .fl-row-content-wrap::after {
        background-image: linear-gradient(to bottom, rgba(232,229,235,0) calc( 100vw * 0.45), rgb(232,229,235,1) calc( 100vw * 0.76));
    }
    
    .wm-half-panel.reverse .fl-row-content-wrap {
        padding-top: 0;
        padding-bottom: 76%;
        background-size: auto 76vw;
        background-position: bottom center !important;
    }
    .wm-half-panel.reverse > .fl-row-content-wrap::after {
        background-image: linear-gradient(to top, rgba(232,229,235,0) calc( 100vw * 0.45), rgb(232,229,235,1) calc( 100vw * 0.76));
    }
}







/*--------------------------------*/
/*          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 .testimonial-icon i {
    font-size: 30px;
    color: var(--wm-primary);
    padding-bottom: 10px;
}

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

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

.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: 2px;
}
.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 .testimonial-stars {
    padding-top: 20px;
}
.wm-testimonial .testimonial-stars i {
    padding-right: 4px;
    color: var(--wm-primary);
}

/* 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 {
    font-weight: 900;
}





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

/*** SOLID BG INLINE ***/

.wm-testimonial-solid-inline .fl-post-text-wrap {
    background: #fff;
    border-radius: var(--wm-border-radius);
    padding: 50px 80px;
}






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

/*** TESTIMONIAL ROW STYLES ***/

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

.wm-testimonial-row .wm-testimonial .pp-content-post {
    background-color: #fff;
    border-radius: var(--wm-border-radius);
}

.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: #fff;
    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 60px;
    }
}
@media only screen and (max-width: 1200px) {
    .wm-testimonial-row .wm-testimonial .fl-post-text-wrap,
    .wm-testimonial-solid-inline .fl-post-text-wrap {
        padding: 50px 40px;
    }
    .wm-testimonial-row .fl-row-content-wrap {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media only screen and (max-width: 992px) {
    .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) {
    .wm-testimonial-row .wm-testimonial .fl-post-text-wrap,
    .wm-testimonial-solid-inline .fl-post-text-wrap {
        padding: 40px 30px;
    }
}




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





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

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

/*** BASE STYLES ***/

.wm-styled-accordion .pp-accordion-item .pp-accordion-button {
    font-weight: 800;
    font-size: var(--wm-fsize-small);
    font-family: var(--wm-font-heading);
    text-transform: uppercase;
    border: none;
}

.wm-styled-accordion .pp-accordion-item .pp-accordion-content p {
    max-width: 1000px;
}

.wm-styled-accordion .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon::before {
    font-size: 1.2em;
}



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

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

.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-button:hover,
.wm-accordion-plain .pp-accordion-item.pp-accordion-item-active .pp-accordion-button,
.wm-accordion-plain .pp-accordion-item .pp-accordion-button:hover .pp-accordion-button-icon.pp-accordion-icon-left::before,
.wm-accordion-plain .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon.pp-accordion-icon-left::before {
    background-color: transparent;
    color: var(--wm-primary);
}


/** 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-size: 1rem;
}
.wm-accordion-plain.wm-accordion-faq .pp-accordion-item .pp-accordion-button .pp-accordion-button-icon {
    padding-top: 0.35em;
}



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

/*** SOLID BG STYLES ***/

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


/** Button **/

.wm-accordion-solid .pp-accordion-item .pp-accordion-button {
    padding: 14px 20px;
    border: none;
    background-color: var(--wm-bg-light-alt);
    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-primary);*/
    background: #fff;
    padding: 30px 20px 20px 20px;
    border: none;
}


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



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

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

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

.wm-styled-author-box .pp-authorbox-author-name {
    font-family: var(--wm-font-heading);
    color: var(--wm-text-heading);
    font-size: var(--wm-fsize-hfour);
    font-weight: 600;
}


/** Responsive **/

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





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

.fl-module-button .fl-button-wrap.fl-button-width-auto a.fl-button {
    text-align: center;
}


/** Button Col **/

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

.wm-btn-col-vertical .fl-module-button .fl-module-content,
.wm-btn-col-vertical .fl-module-html.btn .fl-module-content,
.wm-btn-col-vertical .fl-module-html.btn {
    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 {
    color: var(--wm-text-dark);
    /*border-radius: var(--wm-border-radius);
    background: white;*/
}

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

@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: 800;
    font-size: 1rem;
    font-family: var(--wm-font-heading);
    text-transform: none;
    border: none;
}

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

.wm-styled-faq .pp-faq-item .pp-faq-button .pp-faq-button-icon {
    color: var(--wm-primary);
    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-primary);
}


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



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

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


/** 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"] {
    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;
}
form.pp-search-form input[type="search"] {
    border: 1px solid #fff;
}

.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: 600;
    font-family: var(--wm-font-heading);
    font-size: 1rem;
    margin-bottom: 10px;
}

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

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



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

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


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

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

.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: 600;
    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.875rem;
    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.875rem;
    font-weight: 600;
    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: none !important;
    background: var(--wm-primary) !important;
    color: var(--wm-text-dark) !important;
}
.fl-module-pp-search-form button:hover {
    background: var(--wm-hover) !important;
}

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

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


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

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

.wm-button-outline-colour a.fl-button:hover,
#subscribe-row .pp-gf-content .gform_wrapper .gform_footer .gform_button.button:hover {
	background: #fff;
	border: 2px solid #fff;
	color: var(--wm-text-dark);
}





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

/*** GENERIC SINGLE ICONS ***/

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

.fl-module-icon .fl-module-content .fl-icon-text {
    height: auto !important;
    line-height: 1.6;
    padding-left: 1rem;
}

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

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

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



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

/*** CONTACT ICONS ***/

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

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

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



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

/*** SOCIAL ICONS ***/

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

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

.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: 1.25rem;
    font-size: 1.25rem;
    padding-top: 0.25rem;
    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);
    
}

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



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

/*** IMAGE COMPARISON ***/

.wm-styled-image-compare .twentytwenty-before-label::before,
.wm-styled-image-compare .twentytwenty-after-label::before {
    background: rgba(255,255,255,0.25);
    line-height: 1.6;
    padding: 8px 10px;
    border-radius: 0;
    color: var(--wm-text-light);
    font-family: var(--wm-font-heading);
    font-size: var(--wm-fsize-small);
    font-weight: 700;
    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 .layout-1 .pp-list-connector,
.wm-styled-info-list .pp-list-items .pp-list-connector {
    height: calc(100% - 1.5rem);
    top: 1.5rem;
    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-list-item .pp-list-item-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

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

.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,
.wm-styled-info-list .pp-infolist-icon-inner span.pp-icon::before {
    font-size: 1.25rem;
    line-height: 1;
    padding-top: 0.25rem;
}


/** Title Styles */

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

.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);
    color: var(--wm-text-heading);
    font-weight: 600;
    font-size: var(--wm-fsize-large);
}

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

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





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

/** Box **/

.wm-styled-info-box .pp-infobox {
    padding: 40px 30px;
    border-radius: var(--wm-border-radius);
}
.wm-styled-info-box .pp-infobox .layout-3-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.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: #fff;
    border: 3px solid var(--wm-primary);
    color: var(--wm-text-dark);
}


/** Icon **/

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

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

.wm-styled-info-box .pp-infobox-icon-inner span.pp-icon,
.wm-styled-info-box .pp-infobox-icon-inner span.pp-icon::before {
    font-size: 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-primary);
}


/** 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: 600;
    font-size: var(--wm-fsize-hthree);
    font-family: var(--wm-font-heading);
}

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


/** Responsive **/

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





/*--------------------------------*/
/*       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: var(--wm-text-dark) !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: #fff;
}

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


.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:active,
.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);
}





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

@media only screen and (max-width: 992px) {
    .pp-modal-wrap .pp-modal-container .pp-modal .pp-modal-body {
        padding: 30px 20px;
    }
}
@media only screen and (max-width: 768px) {
    .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-primary);
}



/*** Content ***/

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

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





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

/** Number **/

.wm-styled-number-counter .fl-number .fl-number-text .fl-number-string, 
.wm-styled-number-counter .fl-number .fl-number-text .fl-number-string span {
    font-size: 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);
}





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


/** 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(18,5,40,0.5) 10%, rgba(18,5,40,0) 100%);
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}
.wm-styled-posts .wm-colour-overlay:hover .wm-post-img a::after {
    opacity: 1;
}


/** Caption **/

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


/** Text Box **/

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


/** Title **/

.wm-styled-posts .wm-post-title {
    font-family: var(--wm-font-heading);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    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-primary);
}


/* 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);
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	font-size: 1rem;
	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: 0.75rem;
    padding-top: 6px;
    opacity: 0.6;
}

/* Separator */

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


/** 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: 0.75rem;
    margin-top: 1rem;
}
.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-heading) !important;
    font-size: var(--wm-fsize-small);
    background: none !important;
    border: none !important;
    text-decoration: none;
    display: inline-block;
    width: auto;
    font-weight: 900;
    text-transform: uppercase;
    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-primary);
}

.wm-styled-posts .wm-post-link a::after {
	font-family: var(--wm-font-icons);
	-webkit-font-smoothing: antialiased;
	font-size: 1rem;
	font-weight: 700;
	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;
}


/** Responsive **/

@media only screen and (min-width: 768px) {
    .wm-styled-posts.wm-post-slider .owl-dots {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .wm-styled-posts.wm-post-slider .owl-nav {
        display: none;
    }
    
    .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 {
    background: none;
}

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

.wm-posts-list .wm-post-title {
    font-family: var(--wm-font-heading);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 900;
    padding-bottom: 0px;
    display: inline-block;
    text-decoration: none;
}

@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: #fff;
    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%;
}
.wm-posts-2-col .wm-post-text-wrap {
    width: 50%;
    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: 40px 60px;
}



/** Caption **/

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


/** Title **/

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



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

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

/** Box **/

.wm-posts-text-below .wm-post-wrap {
    background: var(--wm-bg-light-alt);
    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-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: 30px;
}

.wm-posts-text-overlay .wm-post-img-wrap .wm-post-title,
.wm-posts-text-overlay .wm-post-img-wrap .wm-post-excerpt {
    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 {
    color: var(--wm-text-light);
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    width: 100%;
}
.wm-posts-text-overlay .wm-post-img-wrap .wm-post-title a span: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 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: 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 {
    margin-top: 0;
    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;
    font-size: var(--wm-fsize-small);
}
.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;
    top: 0px;
}


/** Title **/

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




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

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








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

.wm-styled-star-rating .pp-rating-content .pp-rating-title {
    font-size: var(--wm-fsize-large);
}

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

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





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

/*** LIST STYLE ***/


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

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

.wm-table-of-content-list .pp-toc-container .pp-toc-header {
    background-color: var(--wm-bg-light-alt);
    color: var(--wm-text-dark);
    padding: 14px 20px;
}
.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: 600;
    font-size: var(--wm-fsize-small);
    font-family: var(--wm-font-heading);
    text-transform: uppercase;
}

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

.wm-table-of-content-list .pp-toc-body {
    background-color: #fff;
    padding: 20px;
}

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


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






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

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

.fl-module-pp-table .tablesaw-cell-label {
    font-family: var(--wm-font-body);
    font-size: 1rem;
    text-transform: none;
    color: var(--wm-text-dark);
    font-weight: 400;
    padding-right: 20px;
}

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

    table.tablesaw-stack tr td .tablesaw-cell-content {
        padding-top: 10px;
        width: 100%;
        max-width: 100%;
        line-height: 1.6;
    }
}


/** Table Styles **/

/* Head */

.wm-styled-table .pp-table-content thead th,
.wm-styled-table .pp-table-content.tablesaw thead th,
.wm-styled-table .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
    background: var(--wm-bg-light-alt);
    border: 1px solid var(--wm-bg-light-alt);
    color: var(--wm-text-dark);
    font-family: var(--wm-font-heading);
    font-size: var(--wm-fsize-small);
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 10px;
}

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


/* Body */

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

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

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

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


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

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


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

.wm-styled-table table {
    border-radius: var(--wm-border-radius);
    box-shadow: 0px 0px 1px var(--wm-bg-light-alt);
}

.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;
}
@media (min-width: 39.9375em) {
    .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 !important;
    }
}
@media (max-width: 39.9375em) {
    .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:last-child {
        border-radius: 0 0 var(--wm-border-radius) var(--wm-border-radius) !important;
    }
}

.wm-styled-table .pp-table-content thead th,
.wm-styled-table .pp-table-content.tablesaw thead th,
.wm-styled-table .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button,
.wm-styled-table .pp-table-content thead tr th,
.wm-styled-table .pp-table-content tbody,
.wm-styled-table .pp-table-content tbody tr {
    border: none;
}
.wm-styled-table .pp-table-content tbody tr:not(:last-child){
    border-bottom: 1px solid var(--wm-bg-light-alt);
}





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

/* Labels */

.wm-styled-tabs .pp-tabs-horizontal .pp-tabs-labels .pp-tabs-label {
    padding: 10px 20px;
    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-bg-light-alt);
    color: var(--wm-text-dark);
    border: none;
}
.wm-styled-tabs .pp-tabs .pp-tabs-label.pp-tab-active {
    background-color: var(--wm-primary);
    /*color: var(--wm-text-light);*/
}
.wm-styled-tabs .pp-tabs .pp-tabs-label.pp-tab-active:hover,
.wm-styled-tabs .pp-tabs .pp-tabs-label:hover,
.wm-styled-tabs .pp-tabs .pp-tabs-label:focus{
    background-color: var(--wm-hover);
    /*color: var(--wm-text-light);*/
}

.wm-styled-tabs .pp-tabs-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,
.wm-styled-tabs .pp-tabs .pp-tabs-label .pp-tab-icon::before {
    font-size: var(--wm-fsize-large);
}

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

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


/* Content */

.wm-styled-tabs .pp-tabs-panels,
.wm-styled-tabs .pp-tabs-panel {
    /*border-color: var(--wm-hover);*/
    border: none;
    background: #fff;
}

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


/** Stretched Label Styles **/

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


/** Responsive **/

@media only screen and (max-width: 768px) {
    .wm-styled-tabs .pp-tabs-panels,
    .wm-styled-tabs .pp-tabs-panel {
        background: none;
    }
    
    .wm-styled-tabs .pp-tabs-panel {
        margin-bottom: 20px;
    }
    
    .wm-styled-tabs .pp-tabs-panel-label {
        padding: 10px 20px;
    }
    
    .wm-styled-tabs .pp-tabs-panels .pp-tabs-panel-content,
    .wm-tabs-stretched .pp-tabs-panels {
        border: none;
    }
    .wm-tabs-stretched .pp-tabs-panels .pp-tabs-panel-content {
        position: relative;
        left: 1px;
        background: #fff;
    }
}


/** 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: #fff;
    padding: 0px;
}

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

.wm-styled-team-member .pp-member-wrapper .pp-member-name {
    font-family: var(--wm-font-heading);
    color: var(--wm-text-heading);
    font-size: var(--wm-fsize-large);
    font-weight: 600;
    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-primary);
}

.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);
    font-size: var(--wm-fsize-small);
    color: var(--wm-text-dark);
    font-weight: 600;
    margin: 0 0 20px;
}

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

.wm-styled-team-member .pp-member-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-heading);
    font-size: var(--wm-fsize-small);
    font-weight: 600;
}







/**********************************/
/*******    SITE STYLES    ********/
/**********************************/

/*--------------------------------*/
/*   ADJUST PRODUCT POST MODULES  */
/*--------------------------------*/

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

.wm-products .wm-post-overlay-text-wrap .wm-price-overlay {
    position: relative;
    color: var(--wm-text-light);
    font-family: var(--wm-font-heading);
    font-weight: 800;
    font-size: var(--wm-fsize-small);
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,.5);
}
.wm-products .wm-post-overlay-text-wrap .wm-price-overlay span {
    padding-right: 4px;
}

.wm-posts-text-overlay .wm-products .wm-post-text-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wm-products .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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
}
.wm-products .wm-post-buttons div {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.wm-products .wm-post-buttons a.fl-button {
    padding: 14px 10px !important;
    height: 45px;
    font-size: 14px !important;
    width: 100%;
    text-align: center;
}
.wm-products .wm-post-buttons .wm-more-link a.fl-button {
    background: var(--wm-bg-light);
}
.wm-products .wm-post-buttons .wm-more-link a.fl-button:hover,
.wm-products .wm-post-buttons .wm-more-link a.fl-button:focus,
.wm-products .wm-post-buttons .wm-more-link a.fl-button:active{
    background: var(--wm-hover);
}



/*--------------------------------*/
/*          PRODUCT ROWS          */
/*--------------------------------*/

.product-row.cta .fl-row-content-wrap {
    padding-top: 60px;
    padding-bottom: 80px;
}

.product-row .fl-module-rich-text {
    margin-top: 10px;
    margin-bottom: 50px;;
}

.product-row .fl-rich-text {
    max-width: 800px;
}
.product-row.cta .fl-rich-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}



/*--------------------------------*/
/*    2 COL ROWS for PRODUCTS     */
/*--------------------------------*/

.product-two-col-row + .product-two-col-row {
    padding-top: 50px;
}

.product-two-col-row .fl-row-content {
    background: #fff;
    margin: 20px !important;
    border-radius: var(--wm-border-radius);
    overflow: hidden;
}

.product-two-col-row .img-col .fl-module {
    margin: 0 !important;
}
.product-two-col-row .img-col img {
    border-radius: 0;
    height: 100% !important;
    object-fit: cover;
}
.product-two-col-row .img-col .fl-module-photo,
.product-two-col-row .img-col .fl-photo-content {
    height: 100%;
}

.product-two-col-row .content-col .fl-col-content {
    padding: 40px 60px;
}

@media only screen and (max-width: 1200px) {
  .product-two-col-row .content-col .fl-col-content {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 992px) {
  .product-two-col-row .content-col .fl-col-content {
    padding: 20px 10px;
  }
}



/*--------------------------------*/
/*          PRODUCT PAGES         */
/*--------------------------------*/

.product-page-book .fl-row-content-wrap,
.product-page-intro-row .fl-row-content-wrap{ 
    padding-bottom: 60px;
}
.product-page-faq .fl-row-content-wrap{
    padding-top: 60px;
    padding-bottom: 60px;
}

.product-page-book iframe {
    border-radius: var(--wm-border-radius);
}


/** Buttons **/

.product-page-intro {
    width: 70% !important;
}
.product-page-buttons {
    width: 30% !important;
}

.product-page-buttons .wm-open-contact-modal {
    width: 240px;
}
.product-page-buttons .fl-html a.rezdy{
    width: 200px;
    text-align: center;
    line-height: 1.2 !important;
}

.product-page-buttons .btn-phone a.fl-button {
    background: var(--wm-tertiary);
}
.product-page-buttons .btn-phone a.fl-button:hover,
.product-page-buttons .btn-phone a.fl-button:focus,
.product-page-buttons .btn-phone a.fl-button:active {
    background: var(--wm-secondary);
}

@media only screen and (min-width: 768px) {
    .product-page-buttons .fl-button-wrap {
        text-align: right;
    }
    .product-page-buttons .fl-col-content {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    
}
@media only screen and (max-width: 992px) {
    .product-page-intro {
        width: 65% !important;
    }
    .product-page-buttons {
        width: 35% !important;
    }
}
@media only screen and (max-width: 768px) {
    .product-page-intro,
    .product-page-buttons {
        width: 100% !important;
    }
}


/** Hide Book Button in Header and  Slider **/

body.page-id-203 header .btn-book,
body.parent-pageid-203 header .btn-book,
body.parent-pageid-203 .product-row.cta .wm-box-heading-btn .fl-module-button,
body.parent-pageid-35117 header .btn-book,
body.parent-pageid-35117 .product-row.cta .wm-box-heading-btn .fl-module-button,
body.parent-pageid-31327 header .btn-book,
body.parent-pageid-31327 .product-row.cta .wm-box-heading-btn .fl-module-button {
    display: none !important;
}
/* End Global CSS */


/* Start Global Nodes CSS */
.fl-module-fl-post-navigation .nav-links a i {
    font-size: 12px;
}

.fl-module-fl-post-navigation .nav-links .nav-previous i {
    padding-right: 6px;
}

.fl-module-fl-post-navigation .nav-links .nav-next i {
    padding-left: 6px;
}
/* End Global Nodes CSS */


/* Start Layout CSS */
#category-linked-list{
    text-align: left;
    font-size: 14px;
}
/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-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-9bnpsgvuxolt .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gyc58fj7eivw .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ykf1u9r4h5tg .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-bqokv8gput7a .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-pah5bno3d1f0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-nq4sda1zc8uy .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-hozslrfyt1xi .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gctwkp2r54zs .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ydu9a1fms5xp .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ls2axjk89enu .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dy721i4lovg0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-p7sxl3g8tmoq .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u375bcekwx6q .fl-row-content {
				min-width: 0px;
			}
		