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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-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: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }











.fl-node-lchm0ujz2g7y .fl-row-content {
	max-width: 1300px;
}
 .fl-node-lchm0ujz2g7y > .fl-row-content-wrap {
	padding-top:72px;
	padding-right:24px;
	padding-bottom:72px;
	padding-left:24px;
}
@media ( max-width: 992px ) {
 .fl-node-lchm0ujz2g7y.fl-row > .fl-row-content-wrap {
	padding-top:56px;
	padding-bottom:56px;
}
}
@media ( max-width: 768px ) {
 .fl-node-lchm0ujz2g7y.fl-row > .fl-row-content-wrap {
	padding-top:48px;
	padding-bottom:48px;
}
}


















.fl-node-vq82zp5hkc14.fl-row-fixed-width, .fl-node-vq82zp5hkc14 .fl-row-fixed-width {
	max-width: 880;
}








































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




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




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




.fl-node-4cqg0bo1tedv {
	width: 100%;
}




.fl-node-uogytdk0j1as {
	width: 60%;
}




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




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




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




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




.fl-node-81pvxf0wn2oj {
	width: 100%;
}




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




.fl-node-vd81ws3tryea {
	width: 40%;
}
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-module-box:before,
.fl-module-box:after {
	position: absolute;
}
a.fl-module-box {
	text-decoration: none;
}

/* Zero margins for child modules */
.fl-module-box :where( .fl-module ),
.fl-module-box :where( .fl-module-content ),
.fl-module-box.fl-block > * {
	margin: 0;
}

/* Ensure child modules size properly */
:where(.fl-module-box) { 
    min-width: 0;
    min-height: 0;
}.fl-builder-content-42396 .fl-node-e5qvibz132xg {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-42396 .fl-node-e5qvibz132xg {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
.fl-animated.fl-zoom-in {
	animation: fl-zoom-in 1s ease;
	-webkit-animation: fl-zoom-in 1s ease;
}
@-webkit-keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
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-vyqxta1z46m9, .fl-node-vyqxta1z46m9 .fl-photo {
	text-align: center;
}
 .fl-node-h7mjfqpozirg > .fl-module-content {
	margin-bottom:28px;
}
@media (max-width: 768px) { .fl-node-h7mjfqpozirg > .fl-module-content { margin-bottom:20px; } } .fl-node-nf82zr3hqv0a > .fl-module-content {
	margin-bottom:28px;
}
@media (max-width: 768px) { .fl-node-nf82zr3hqv0a > .fl-module-content { margin-bottom:20px; } }.fl-builder-content-42396 .fl-node-cyhatlpomq6z {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	flex-direction: column;
	row-gap: 20px;
	column-gap: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-42396 .fl-node-cyhatlpomq6z {
		row-gap: 10px;
		column-gap: 10px;
	}
}
@media ( max-width: 992px ) {
 .fl-node-cyhatlpomq6z.fl-module-box.fl-module {
	margin-top:0px;
}
}
body.fl-builder {
	overflow-x: hidden;
}

.fl-animated.fl-slide-in-right {
  	animation: fl-slide-in-right 1s ease;
  	-webkit-animation: fl-slide-in-right 1s ease;
}
@-webkit-keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-accordion-button {
	cursor: pointer;
	display: table;
}

.fl-accordion-button button,
.fl-accordion-button button:focus,
.fl-accordion-button button:hover {
	all: unset;
}

.fl-accordion-button:focus {
	outline: 0
}

.fl-accordion-button-label {
	display: table-cell;
	width: 100%;
	border: none;
	background: none;
	text-align: left;
	text-decoration: none;
}

.fl-accordion-button-label:not(a) {
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}

.fl-accordion-button .fl-accordion-button-icon:focus,
.fl-accordion-button .fl-accordion-button-icon:active {
	opacity: 1;
	background: none;
	text-decoration: none;
	outline: 1px auto -webkit-focus-ring-color;
}

.fl-accordion-button-label:is(a):hover,
.fl-accordion-button-icon:is(a):hover {
	text-decoration: none;
}

.fl-accordion-button .fl-accordion-button-icon {
	display: block;
	line-height: inherit;
}

.fl-accordion-button .fl-accordion-button-icon-left,
.fl-accordion-button .fl-accordion-button-icon-left:focus,
.fl-accordion-button .fl-accordion-button-icon-left:hover {
	margin-inline-end: 10px;
}

.fl-accordion-button .fl-accordion-button-icon-right,
.fl-accordion-button .fl-accordion-button-icon-right:focus,
.fl-accordion-button .fl-accordion-button-icon-right:hover {
	margin-inline-start: 10px;
}

.fl-accordion-button .fl-accordion-button-icon-left,
.fl-accordion-button .fl-accordion-button-icon-right {
	opacity: .5;
}

.fl-accordion-button .fl-accordion-button-icon-left:hover,
.fl-accordion-button .fl-accordion-button-icon-right:hover {
	opacity: 1;
}

.fl-accordion-content {
	display: none;
}
.fl-accordion-item {
	overflow: hidden;
}

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

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

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

.rtl .fl-accordion-item .fl-accordion-button-label,
.rtl .fl-accordion-item .fl-accordion-content * {
	text-align: right;
}

.fl-node-kg2faid3h4yw .fl-accordion-item {
	margin-bottom: 10px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #e5e5e5;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-builder-content-42396 .fl-node-cbnlairexk53 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	flex-direction: column;
	row-gap: 20px;
	column-gap: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-42396 .fl-node-cbnlairexk53 {
		row-gap: 10px;
		column-gap: 10px;
	}
}
@media ( max-width: 992px ) {
 .fl-node-cbnlairexk53.fl-module-box.fl-module {
	margin-top:0px;
}
}
.fl-node-pmhfxr0avcl7, .fl-node-pmhfxr0avcl7 .fl-photo {
	text-align: center;
}
.fl-builder-content-42396 .fl-node-lc792mdua8we {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	flex-direction: column;
	row-gap: 20px;
	column-gap: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-42396 .fl-node-lc792mdua8we {
		row-gap: 10px;
		column-gap: 10px;
	}
}
 .fl-node-lc792mdua8we.fl-module-box {
	margin-bottom:24px;
}
@media ( max-width: 992px ) {
 .fl-node-lc792mdua8we.fl-module-box.fl-module {
	margin-top:0px;
}
}
@media (max-width: 768px) { .fl-node-lc792mdua8we.fl-module-box { margin-bottom:20px; } }.fl-embed-video iframe {
	max-width: 100%;
}
.fl-wp-video {
	position: relative;
	height: 0;
	overflow: hidden;
	padding: 0 0 56.25%;
}
.fl-wp-video .wp-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


.mfp-container .fl-video-lightbox-content .wp-video {
    margin-left: auto;
    margin-right: auto;
}

.mfp-container .fl-video-lightbox-content .fluid-width-video-wrapper iframe {
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.fl-module-video .fl-video-poster {
	cursor: pointer;
}

.fl-wp-video .wp-video .mejs-container,
.fl-wp-video .wp-video .mejs-inner,
.fl-wp-video .wp-video .mejs-layers,
.fl-wp-video .wp-video .mejs-layer,
.fl-wp-video .wp-video-shortcode,
.fl-wp-video .me-plugin,
.fl-wp-video .me-plugin * {
	width: 100% !important;
	height: 100% !important;
}

.fl-video-sticky {
	position: fixed;
    top: 20px;
	z-index: 11;
}

.fl-wp-video img{
	width: 100%;
}
@media (max-width: 768px) {  }







.fl-node-9ca42867h3e5 .fl-video-poster {
	display: none;
}


.fl-builder-content-42396 .fl-node-rbzpyciwt3ms {
	display: grid;
	flex-direction: row;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	width: 100%;
	max-width: 1300px;
}
@media(max-width: 992px) {
	.fl-builder-content-42396 .fl-node-rbzpyciwt3ms {
		display: flex;
		flex-direction: column;
	}
}
@media(max-width: 768px) {
	.fl-builder-content-42396 .fl-node-rbzpyciwt3ms {
		display: flex;
		flex-direction: column;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}
}
.fl-node-vg60facynup7, .fl-node-vg60facynup7 .fl-photo {
	text-align: center;
}
.fl-node-4yki5pftw28x, .fl-node-4yki5pftw28x .fl-photo {
	text-align: center;
}
.fl-builder-content-42396 .fl-node-6p9uoq8h1iwm {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-42396 .fl-node-6p9uoq8h1iwm {
		gap: 10px;
	}
}
 .fl-node-6p9uoq8h1iwm.fl-module-box {
	margin-top:-20px;
}
@media ( max-width: 992px ) {
 .fl-node-6p9uoq8h1iwm.fl-module-box.fl-module {
	margin-top:0px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.ytplay-btn-img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-out;
  }

  .ytplay-btn-img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.2);
  }
  

/* End Layout CSS */

.fl-node-f3o2ch95lemw {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
}
.fl-node-vd81ws3tryea {
  align-self: start;
}
@charset "UTF-8";
.fl-node-b0x2f4gu9dsi {
  /* hero-ea-simple — module bb_css_code (&-scoped). HCPR-253.
   Content-led EA hero: plum gradient, white serif H1, local lead + figures, ONE copper CTA.
   No photo, no proof-pills, no sidebar card, no trust chips. Tokens via hcpr_ds_inline. */
  /* Eyebrow — copper, uppercase, letterspaced */
  /* H1 — serif, white, large */
  /* Lead — the local hook */
  /* CTA — copper button */
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple {
  font-family: var(--hcpr-sans, "Inter", system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  box-sizing: border-box;
  background: linear-gradient(165deg, var(--hcpr-plum, #3a2350), var(--hcpr-plum-deep, #2a1838));
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple *, .fl-node-b0x2f4gu9dsi .hero-ea-simple *::before, .fl-node-b0x2f4gu9dsi .hero-ea-simple *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .block-label {
  display: none !important;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .hero-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .hero-eyebrow {
  font-family: var(--hcpr-sans, "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hcpr-copper, #d4772a);
  margin-bottom: 1.1rem;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .hero-h1 {
  font-family: var(--hcpr-serif, "Libre Baskerville", Georgia, serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 2rem;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hcpr-copper, #d4772a);
  color: #fff;
  font-family: var(--hcpr-sans, "Inter", system-ui, sans-serif);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 40px;
  border-radius: var(--hcpr-radius-md, 10px);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.4);
}
.fl-node-b0x2f4gu9dsi .hero-ea-simple .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 119, 42, 0.5);
}
@media (max-width: 600px) {
  .fl-node-b0x2f4gu9dsi .hero-ea-simple {
    padding: clamp(3rem, 8vw, 4.5rem) 0;
  }
  .fl-node-b0x2f4gu9dsi .hero-ea-simple .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .fl-node-b0x2f4gu9dsi .hero-ea-simple .btn-primary {
    width: 100%;
  }
}
.fl-node-0zi2m17x6avy {
  display: block;
}
.fl-node-0zi2m17x6avy .eb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hcpr-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin: 0 0 4px;
}
.fl-node-0zi2m17x6avy .eb-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-h7mjfqpozirg {
  display: block;
}
.fl-node-nf82zr3hqv0a {
  display: block;
}
.fl-node-cyhatlpomq6z {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
}
.fl-node-cyhatlpomq6z .eb-dual {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.fl-node-cyhatlpomq6z .eb-dual__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line, #e0dde4);
  border-left: 3px solid var(--hcpr-copper);
  border-radius: var(--hcpr-radius-md, 12px);
}
.fl-node-cyhatlpomq6z .eb-dual__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--hcpr-plum);
  color: var(--hcpr-white);
  font-family: var(--hcpr-sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}
.fl-node-cyhatlpomq6z .eb-dual__txt {
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--hcpr-muted);
}
.fl-node-cyhatlpomq6z .eb-dual__txt strong {
  color: var(--hcpr-plum);
}
.fl-node-cyhatlpomq6z .eb-dual__txt em {
  color: var(--hcpr-plum-dark);
  font-style: italic;
}
@charset "UTF-8";
.fl-node-nrahsc71lf65 {
  /* value-snapshot-outcome — &-scoped (X10), var(--hcpr-*) tokens (X1). HCPR-90/203 */
  /* value-snapshot-outcome */
  /* Optional hero image slot — full feature/image card => --hcpr-radius-lg (22px) per BRANDBOOK §6.11. HCPR-90 */
  /* Grid: 3-up on desktop, stacks on mobile */
  /* Card: §6.6 surface gradient, radius 18 (ratified), shadow tokens, hover lift */
  /* Plum gradient icon container — RATIFIED (do NOT revert to copper) §6.9 */
  /* Card kicker — copper per BRANDBOOK §4.2 (eyebrow/kicker standard). HCPR-90 */
  /* Main stat/value */
  /* Description text */
  /* Active heading underline bar */
  /* Mobile */
  /* HCPR-253 city photo: image rail beside the cost cards; stacks above on mobile. &-scoped, var tokens. */
}
.fl-node-nrahsc71lf65 .hcp-tpl {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-nrahsc71lf65 .hcp-tpl *, .fl-node-nrahsc71lf65 .hcp-tpl *::before, .fl-node-nrahsc71lf65 .hcp-tpl *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-nrahsc71lf65 .hcp-tpl img {
  max-width: 100%;
  display: block;
}
.fl-node-nrahsc71lf65 .hcp-tpl a {
  color: inherit;
}
.fl-node-nrahsc71lf65 .hcp-tpl .wrap {
  width: 100%;
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-nrahsc71lf65 .hcp-tpl h1, .fl-node-nrahsc71lf65 .hcp-tpl h2, .fl-node-nrahsc71lf65 .hcp-tpl h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-nrahsc71lf65 .hcp-tpl .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-nrahsc71lf65 .hcp-tpl .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-nrahsc71lf65 .hcp-tpl .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-nrahsc71lf65 .hcp-tpl .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-nrahsc71lf65 .hcp-tpl .section-head {
  margin-bottom: 36px;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome {
  background: var(--hcpr-white);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .wrap {
  width: 100%;
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-hero-img {
  margin-bottom: 32px;
  border-radius: var(--hcpr-radius-lg);
  overflow: hidden;
  max-height: 320px;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-hero-img img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-card {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--hcpr-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-card:hover {
  box-shadow: var(--hcpr-shadow-lg);
  transform: translateY(-4px);
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hcpr-radius-md);
  background: linear-gradient(135deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hcpr-white);
  stroke-width: 1.75;
  fill: none;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  font-family: var(--hcpr-sans);
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-value {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--hcpr-plum);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-desc {
  font-family: var(--hcpr-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--hcpr-muted);
  margin-top: 4px;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--hcpr-copper);
  border-radius: 2px;
}
@media (max-width: 375px) {
  .fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-card {
    padding: 24px 20px 20px;
  }
  .fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-hero-img {
    max-height: 200px;
    border-radius: var(--hcpr-radius);
    margin-bottom: 24px;
  }
  .fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-hero-img img {
    max-height: 200px;
  }
}
.fl-node-nrahsc71lf65 .block-label {
  display: none !important;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-layout {
  display: grid;
  gap: 24px;
}
@media (min-width: 880px) {
  .fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-layout {
    grid-template-columns: minmax(260px, 0.92fr) 2.3fr;
    align-items: stretch;
  }
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
  border-radius: var(--hcpr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hcpr-line);
  box-shadow: var(--hcpr-shadow);
  background: linear-gradient(135deg, var(--hcpr-plum), var(--hcpr-plum-deep));
}
@media (min-width: 880px) {
  .fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-photo-frame {
    height: 100%;
    aspect-ratio: auto;
    min-height: 240px;
  }
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  /* crops SmartMLS watermark out of bottom of 4:3 listing photos */
  display: block;
}
.fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-photo-cap {
  font-family: var(--hcpr-sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--hcpr-muted);
  text-align: left;
  padding-left: 2px;
}
@media (max-width: 879px) {
  .fl-node-nrahsc71lf65 .hcp-tpl.value-snapshot-outcome .vs-photo-frame {
    aspect-ratio: 1.7777777778;
  }
}
.fl-node-0idgpmorskwy {
  /* ---- progress rail: all 4 labels persistent ---- */
  /* plum -> copper progression across the four stages */
  /* ---- panels: ONE at a time, no expansion ---- */
  /* ---- per-step CTA styles ---- */
  /* navigational = plum fill */
  /* conversion = copper fill (the one primary) */
  /* link = plum text link */
  /* ---- inline prev/next ---- */
  /* ---- no-JS :target fallback ---- */
  /* ---- mobile: vertical rail with connectors ---- */
  /* ---- RESTORED: per-step hero image (baked global) ---- */
  /* card no longer needs its own top border now that hero sits above */
  /* ---- RESTORED: pills ---- */
  /* ---- RESTORED: checklist (single-line text variant) ---- */
  /* CTA sits after the checklist now */
  /* ---- mobile tweaks for restored elements ---- */
}
.fl-node-0idgpmorskwy .block--ps-eajourney {
  --plum: hsl(268 40% 28%);
  --plum-dark: hsl(270 20% 15%);
  --plum-deep: hsl(268 42% 22%);
  --plum-tint: hsl(268 25% 95%);
  --copper: hsl(28 85% 52%);
  --copper-soft: hsl(28 85% 92%);
  --copper-tint: hsla(28 85% 52% / .1);
  --white: #ffffff;
  --muted: hsl(270 12% 42%);
  --line: hsla(268 25% 24% / 0.1);
  --line-strong: hsla(268 25% 24% / 0.18);
  --shadow-card: 0 10px 24px rgba(33,20,42,0.07);
  --shadow-active: 0 8px 20px rgba(212,119,42,0.18);
  --radius: 18px;
  --radius-lg: 22px;
  --radius-md: 12px;
  --max: 1100px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --ps-steps: 4;
}
.fl-node-0idgpmorskwy .block--ps-eajourney .block-label {
  display: none;
}
.fl-node-0idgpmorskwy .block--ps-eajourney {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.fl-node-0idgpmorskwy .block--ps-eajourney .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-0idgpmorskwy .block--ps-eajourney .section-intro {
  margin-bottom: 40px;
}
.fl-node-0idgpmorskwy .block--ps-eajourney .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
}
.fl-node-0idgpmorskwy .block--ps-eajourney .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
}
.fl-node-0idgpmorskwy .block--ps-eajourney h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--plum-dark);
  max-width: 760px;
}
.fl-node-0idgpmorskwy .ps-stepper {
  display: grid;
  grid-template-columns: repeat(var(--ps-steps), 1fr);
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}
.fl-node-0idgpmorskwy .ps-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 12px 14px;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(33, 20, 42, 0.04);
  --accent: var(--plum);
}
.fl-node-0idgpmorskwy .ps-step[data-step="1"] {
  --accent: hsl(268 40% 36%);
}
.fl-node-0idgpmorskwy .ps-step[data-step="2"] {
  --accent: hsl(300 32% 40%);
}
.fl-node-0idgpmorskwy .ps-step[data-step="3"] {
  --accent: hsl(20 70% 50%);
}
.fl-node-0idgpmorskwy .ps-step[data-step="4"] {
  --accent: var(--copper);
}
.fl-node-0idgpmorskwy .ps-step:focus-visible {
  outline: 3px solid var(--copper-soft);
  outline-offset: 2px;
}
.fl-node-0idgpmorskwy .ps-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  background: var(--white);
  color: var(--muted);
  border: 2px solid var(--line);
  transition: all 0.25s ease;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.fl-node-0idgpmorskwy .ps-step-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--plum-dark);
  text-align: center;
  line-height: 1.25;
  transition: color 0.2s;
}
.fl-node-0idgpmorskwy .ps-step-desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  opacity: 0.65;
  margin-top: 3px;
  transition: opacity 0.2s;
}
.fl-node-0idgpmorskwy .ps-step[data-visited] {
  border-color: var(--line-strong);
}
.fl-node-0idgpmorskwy .ps-step[data-visited] .ps-num {
  background: var(--copper-soft);
  border-color: var(--accent);
  color: var(--plum-dark);
}
.fl-node-0idgpmorskwy .ps-step[aria-selected="true"] {
  border-color: var(--accent);
  box-shadow: var(--shadow-active);
  transform: translateY(-2px);
}
.fl-node-0idgpmorskwy .ps-step[aria-selected="true"] .ps-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 119, 42, 0.25);
}
.fl-node-0idgpmorskwy .ps-step[aria-selected="true"] .ps-step-label {
  color: var(--plum-dark);
  font-weight: 800;
}
.fl-node-0idgpmorskwy .ps-step[aria-selected="true"] .ps-step-desc {
  opacity: 1;
  color: var(--plum-dark);
}
.fl-node-0idgpmorskwy .ps-step:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(212, 119, 42, 0.1);
}
.fl-node-0idgpmorskwy .ps-step:hover .ps-num {
  border-color: var(--accent);
  transform: scale(1.05);
}
.fl-node-0idgpmorskwy .ps-panel {
  display: none;
}
.fl-node-0idgpmorskwy .ps-panel[data-active] {
  display: block;
  animation: psFadeIn 0.3s ease-out;
}
.fl-node-0idgpmorskwy .ps-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  --accent: var(--plum);
}
.fl-node-0idgpmorskwy .ps-panel[data-step="1"] .ps-card {
  --accent: hsl(268 40% 36%);
}
.fl-node-0idgpmorskwy .ps-panel[data-step="2"] .ps-card {
  --accent: hsl(300 32% 40%);
}
.fl-node-0idgpmorskwy .ps-panel[data-step="3"] .ps-card {
  --accent: hsl(20 70% 50%);
}
.fl-node-0idgpmorskwy .ps-panel[data-step="4"] .ps-card {
  --accent: var(--copper);
}
.fl-node-0idgpmorskwy .ps-card {
  border-top: 4px solid var(--accent);
}
.fl-node-0idgpmorskwy .ps-card-body {
  padding: clamp(24px, 4vw, 40px);
}
.fl-node-0idgpmorskwy .ps-stagehead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.fl-node-0idgpmorskwy .ps-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-node-0idgpmorskwy .ps-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-0idgpmorskwy .ps-stagenum {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.fl-node-0idgpmorskwy .ps-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  color: var(--plum-dark);
  margin-bottom: 14px;
}
.fl-node-0idgpmorskwy .ps-body {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--plum-dark);
  margin-bottom: 24px;
  max-width: 680px;
}
.fl-node-0idgpmorskwy .ps-body strong {
  font-weight: 800;
}
.fl-node-0idgpmorskwy .ps-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  min-height: 50px;
  transition: transform 0.2s, box-shadow 0.2s, color 0.15s;
}
.fl-node-0idgpmorskwy .ps-action svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-0idgpmorskwy .ps-action--nav {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--plum);
  color: #fff;
  box-shadow: 0 8px 18px rgba(33, 20, 42, 0.18);
}
.fl-node-0idgpmorskwy .ps-action--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(33, 20, 42, 0.26);
}
.fl-node-0idgpmorskwy .ps-action--conversion {
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--copper);
  color: #fff;
  box-shadow: 0 8px 18px rgba(212, 119, 42, 0.22);
}
.fl-node-0idgpmorskwy .ps-action--conversion:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.3);
}
.fl-node-0idgpmorskwy .ps-action--link {
  padding: 8px 0;
  color: var(--plum);
  border-bottom: 2px solid transparent;
  border-radius: 0;
  min-height: 44px;
}
.fl-node-0idgpmorskwy .ps-action--link:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}
.fl-node-0idgpmorskwy .ps-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.fl-node-0idgpmorskwy .ps-nav a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--plum);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  min-height: 44px;
  transition: color 0.15s;
}
.fl-node-0idgpmorskwy .ps-nav a:hover {
  color: var(--copper);
}
.fl-node-0idgpmorskwy .ps-nav a[data-dir="prev"] svg {
  transform: rotate(180deg);
}
.fl-node-0idgpmorskwy .ps-nav a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-0idgpmorskwy .ps-nav .ps-counter {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.fl-node-0idgpmorskwy .ps-noscript .ps-panel, .fl-node-0idgpmorskwy .no-js .ps-panel {
  display: none;
}
.fl-node-0idgpmorskwy .ps-noscript .ps-panel:first-child, .fl-node-0idgpmorskwy .no-js .ps-panel:first-child {
  display: block;
}
.fl-node-0idgpmorskwy .ps-noscript .ps-panel:target, .fl-node-0idgpmorskwy .no-js .ps-panel:target {
  display: block;
}
.fl-node-0idgpmorskwy .ps-noscript .ps-panels:has(.ps-panel:target) > .ps-panel:first-child:not(:target), .fl-node-0idgpmorskwy .no-js .ps-panels:has(.ps-panel:target) > .ps-panel:first-child:not(:target) {
  display: none;
}
@keyframes psFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fl-node-0idgpmorskwy .ps-panel[data-active] {
    animation: none;
  }
  .fl-node-0idgpmorskwy .ps-step[aria-selected="true"], .fl-node-0idgpmorskwy .ps-step[aria-selected="true"] .ps-num, .fl-node-0idgpmorskwy .ps-step:hover, .fl-node-0idgpmorskwy .ps-step:hover .ps-num, .fl-node-0idgpmorskwy .ps-action {
    transition: none;
    transform: none;
  }
}
@media (max-width: 719px) {
  .fl-node-0idgpmorskwy {
    /* connector line between stacked rail steps */
  }
  .fl-node-0idgpmorskwy .ps-stepper {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 22px;
  }
  .fl-node-0idgpmorskwy .ps-step {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-bottom: 10px;
    position: relative;
  }
  .fl-node-0idgpmorskwy .ps-num {
    margin-bottom: 0;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .fl-node-0idgpmorskwy .ps-step-label {
    text-align: left;
    font-size: 14px;
  }
  .fl-node-0idgpmorskwy .ps-step-desc {
    text-align: left;
    margin-top: 1px;
  }
  .fl-node-0idgpmorskwy .ps-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 32px;
    top: 100%;
    width: 2px;
    height: 10px;
    background: var(--line-strong);
  }
  .fl-node-0idgpmorskwy .ps-step[data-visited]:not(:last-child)::after {
    background: var(--accent);
  }
  .fl-node-0idgpmorskwy .ps-card-body {
    padding: 22px 18px;
  }
  .fl-node-0idgpmorskwy .ps-action--nav, .fl-node-0idgpmorskwy .ps-action--conversion {
    width: 100%;
    justify-content: center;
  }
}
.fl-node-0idgpmorskwy .ps-card {
  overflow: hidden;
}
.fl-node-0idgpmorskwy .ps-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3.2;
  max-height: 220px;
}
.fl-node-0idgpmorskwy .ps-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.fl-node-0idgpmorskwy .ps-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 14, 35, 0.45), transparent 60%);
  pointer-events: none;
}
.fl-node-0idgpmorskwy .ps-hero-badge {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--sans);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fl-node-0idgpmorskwy .ps-hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(212, 119, 42, 0.16);
}
.fl-node-0idgpmorskwy .ps-panel[data-step="1"] .ps-card, .fl-node-0idgpmorskwy .ps-panel[data-step="2"] .ps-card, .fl-node-0idgpmorskwy .ps-panel[data-step="3"] .ps-card, .fl-node-0idgpmorskwy .ps-panel[data-step="4"] .ps-card {
  border-top-width: 1px;
}
.fl-node-0idgpmorskwy .ps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  list-style: none;
  padding: 0;
}
.fl-node-0idgpmorskwy .ps-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--plum-tint);
  color: var(--plum);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
}
.fl-node-0idgpmorskwy .ps-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  gap: 0;
}
@media (min-width: 600px) {
  .fl-node-0idgpmorskwy .ps-checks {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
}
.fl-node-0idgpmorskwy .ps-checks li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.fl-node-0idgpmorskwy .ps-check-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-md);
  background: rgba(212, 119, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-node-0idgpmorskwy .ps-check-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--copper);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-0idgpmorskwy .ps-check-text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--plum-dark);
  line-height: 1.4;
}
.fl-node-0idgpmorskwy .ps-action {
  margin-top: 8px;
}
@media (max-width: 719px) {
  .fl-node-0idgpmorskwy .ps-hero {
    aspect-ratio: 2.2857142857;
    max-height: 150px;
  }
  .fl-node-0idgpmorskwy .ps-checks {
    grid-template-columns: 1fr;
  }
}
.fl-node-w9h8t3cfo7bs .section-head {
  margin-bottom: 32px;
}
.fl-node-w9h8t3cfo7bs .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-w9h8t3cfo7bs .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-w9h8t3cfo7bs h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-kg2faid3h4yw .fl-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-kg2faid3h4yw .fl-accordion-item {
  border-radius: var(--hcpr-radius) !important;
  border: 1px solid var(--hcpr-line) !important;
  background: var(--hcpr-white);
  overflow: hidden;
  box-shadow: var(--hcpr-shadow);
  transition: border-color 0.2s, box-shadow 0.25s, background-color 0.2s;
}
.fl-node-kg2faid3h4yw .fl-accordion-item:hover {
  background: var(--hcpr-white);
}
.fl-node-kg2faid3h4yw .fl-accordion-item-active {
  border-color: var(--hcpr-line-strong) !important;
  box-shadow: var(--hcpr-shadow-lg);
}
.fl-node-kg2faid3h4yw .fl-accordion-button {
  padding: 20px 24px !important;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--hcpr-plum-dark);
}
.fl-node-kg2faid3h4yw .fl-accordion-button-label {
  font-family: var(--hcpr-sans) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  color: var(--hcpr-plum-dark) !important;
  margin: 0;
}
.fl-node-kg2faid3h4yw .fl-accordion-button-icon {
  color: var(--hcpr-copper) !important;
  background: rgba(237, 126, 29, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.2s;
}
.fl-node-kg2faid3h4yw .fl-accordion-item-active .fl-accordion-button-icon {
  transform: rotate(180deg);
  background: rgba(237, 126, 29, 0.16);
}
.fl-node-kg2faid3h4yw .fl-accordion-content {
  padding: 0 24px 20px !important;
}
.fl-node-kg2faid3h4yw .fl-accordion-content p {
  font-size: 1.05rem;
  color: var(--hcpr-muted);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--hcpr-line);
}
@media (max-width: 480px) {
  .fl-node-kg2faid3h4yw .fl-accordion-button {
    padding: 16px !important;
  }
  .fl-node-kg2faid3h4yw .fl-accordion-button-label {
    font-size: 1rem !important;
  }
  .fl-node-kg2faid3h4yw .fl-accordion-content {
    padding: 0 16px 16px !important;
  }
}
.fl-node-rhd32vsj6bct .faq-sidebar {
  position: sticky;
  top: 24px;
}
.fl-node-rhd32vsj6bct .faq-contact-card {
  border-radius: 24px;
  background: linear-gradient(165deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  color: var(--hcpr-white);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(33, 20, 42, 0.2);
}
.fl-node-rhd32vsj6bct .faq-contact-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
}
.fl-node-rhd32vsj6bct .faq-contact-body {
  padding: 28px 24px 32px;
}
.fl-node-rhd32vsj6bct .faq-contact-body h3 {
  font-family: var(--hcpr-serif);
  font-size: 1.3rem;
  color: var(--hcpr-white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.fl-node-rhd32vsj6bct .faq-contact-body p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
  border: none;
  padding: 0;
}
.fl-node-rhd32vsj6bct .faq-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-node-rhd32vsj6bct .faq-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: var(--hcpr-white);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}
.fl-node-rhd32vsj6bct .faq-contact-link:hover {
  background: rgba(255, 255, 255, 0.18);
}
.fl-node-rhd32vsj6bct .faq-contact-link--primary {
  background: var(--hcpr-copper);
  border-color: var(--hcpr-copper);
}
.fl-node-rhd32vsj6bct .faq-contact-link--primary:hover {
  background: #d96f12;
}
.fl-node-rhd32vsj6bct .faq-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(237, 126, 29, 0.9);
}
.fl-node-rhd32vsj6bct .faq-contact-link--primary .faq-contact-icon {
  background: rgba(255, 255, 255, 0.2);
}
.fl-node-rhd32vsj6bct .faq-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--hcpr-white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 768px) {
  .fl-node-rhd32vsj6bct .faq-sidebar {
    position: static;
    margin-top: 24px;
  }
  .fl-node-rhd32vsj6bct .faq-contact-card {
    border-radius: 18px;
  }
}
.fl-node-j1lh6kdxnr3q .sps {
  background: var(--hcpr-white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.fl-node-j1lh6kdxnr3q .sps .sps-wrap {
  max-width: var(--hcpr-content-max, 1300px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.fl-node-j1lh6kdxnr3q .sps * {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-j1lh6kdxnr3q .sps .sps-head {
  text-align: center;
  margin-bottom: 40px;
}
.fl-node-j1lh6kdxnr3q .sps .sps-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--hcpr-sans);
}
.fl-node-j1lh6kdxnr3q .sps .sps-eyebrow::before, .fl-node-j1lh6kdxnr3q .sps .sps-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-j1lh6kdxnr3q .sps .sps-head h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__aggregate {
  text-align: center;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--hcpr-white);
  border-radius: var(--hcpr-radius);
  border: 1px solid var(--hcpr-line);
  box-shadow: var(--hcpr-shadow-soft);
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__stars-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__rating-value {
  font-family: var(--hcpr-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--hcpr-plum);
  line-height: 1;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__stars {
  font-size: 24px;
  letter-spacing: 2px;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-star--full {
  color: #f59f0a;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-star--half {
  color: #f59f0a;
  opacity: 0.7;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-star--empty {
  color: #dbd0bd;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__count {
  font-size: 16px;
  color: var(--hcpr-muted);
  font-weight: 500;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__count a {
  color: var(--hcpr-plum);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(69, 43, 100, 0.2);
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__count a:hover {
  border-bottom-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__card {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius);
  padding: 28px 24px;
  box-shadow: var(--hcpr-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--hcpr-cream);
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__author-info {
  flex: 1;
  min-width: 0;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__author {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--hcpr-plum-dark);
  font-family: var(--hcpr-serif);
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__date {
  display: block;
  font-size: 14px;
  color: var(--hcpr-muted);
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__card-stars {
  margin-left: auto;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__card-stars .hcpr-star--full {
  color: #f59f0a;
  font-size: 16px;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__card-stars .hcpr-star--empty {
  color: #dbd0bd;
  font-size: 16px;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hcpr-muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__footer {
  display: none;
}
.fl-node-j1lh6kdxnr3q .sps .sps-footer {
  text-align: center;
  margin-top: 32px;
}
.fl-node-j1lh6kdxnr3q .sps .sps-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--hcpr-radius-md);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--hcpr-plum);
  border: 1px solid var(--hcpr-line-strong);
  background: transparent;
  font-family: var(--hcpr-sans);
  transition: border-color 0.15s, color 0.15s;
}
.fl-node-j1lh6kdxnr3q .sps .sps-footer a:hover {
  border-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
@media (max-width: 900px) {
  .fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__grid {
    grid-template-columns: 1fr;
  }
  .fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__aggregate {
    padding: 20px 16px;
  }
  .fl-node-j1lh6kdxnr3q .sps .hcpr-reviews__rating-value {
    font-size: 2.4rem;
  }
  .fl-node-j1lh6kdxnr3q .sps .sps-wrap {
    padding: 0 16px;
  }
  .fl-node-j1lh6kdxnr3q .sps .sps-head h2 {
    font-size: 1.4rem;
  }
}
@charset "UTF-8";
.fl-node-72j5sai9gtmu {
  /* ============================================================
   Mapplic-generated UI — ported to the brandbook (HCPR-169)
   Targets Mapplic's runtime DOM via &-scoped descendant rules.
   ============================================================ */
  /* --- Town regions: brand plum, copper on hover, plum on active --- */
  /* --- Sidebar shell: §6.6 card surface --- */
  /* --- Search input (sidebar) --- */
  /* --- Directory list (sidebar town list) --- */
  /* --- Tooltip / town-detail card on click: §6.6 white card --- */
  /* "More" link styled as §6.1 secondary/outline button */
  /* --- Zoom controls --- */
  /* --- Map caption (block-owned) --- */
}
.fl-node-72j5sai9gtmu {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
  padding: var(--hcpr-section) 0;
  background: var(--hcpr-white);
}
.fl-node-72j5sai9gtmu *, .fl-node-72j5sai9gtmu *::before, .fl-node-72j5sai9gtmu *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-72j5sai9gtmu img {
  max-width: 100%;
  display: block;
}
.fl-node-72j5sai9gtmu a {
  color: inherit;
}
.fl-node-72j5sai9gtmu .wrap {
  width: 100%;
  max-width: var(--hcpr-max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-72j5sai9gtmu h1, .fl-node-72j5sai9gtmu h2, .fl-node-72j5sai9gtmu h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-72j5sai9gtmu .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-72j5sai9gtmu .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-72j5sai9gtmu .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-72j5sai9gtmu .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-72j5sai9gtmu .section-head {
  margin-bottom: 32px;
}
.fl-node-72j5sai9gtmu .map-viewport {
  position: relative;
  width: 100%;
  min-height: 360px;
  border-radius: var(--hcpr-radius);
  overflow: hidden;
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line-strong);
  box-shadow: var(--hcpr-shadow);
}
.fl-node-72j5sai9gtmu .map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 0;
}
.fl-node-72j5sai9gtmu .map-loading-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hcpr-radius-md);
  background: var(--hcpr-plum-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-node-72j5sai9gtmu .map-loading-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.fl-node-72j5sai9gtmu .map-loading-text {
  font-size: 16px;
  color: var(--hcpr-muted);
  font-weight: 500;
}
.fl-node-72j5sai9gtmu .map-viewport > .map-widget, .fl-node-72j5sai9gtmu .map-viewport > iframe, .fl-node-72j5sai9gtmu .map-viewport > [class*="mapplic"] {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.fl-node-72j5sai9gtmu .map-fallback-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fl-node-72j5sai9gtmu .map-fallback-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fl-node-72j5sai9gtmu .mapplic-map svg polygon.mapplic-clickable, .fl-node-72j5sai9gtmu .mapplic-map svg path.mapplic-clickable {
  fill: var(--hcpr-plum) !important;
  stroke: #fff !important;
  stroke-width: 0.8px;
  stroke-opacity: 0.9;
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.fl-node-72j5sai9gtmu .mapplic-map svg polygon.mapplic-clickable:hover, .fl-node-72j5sai9gtmu .mapplic-map svg path.mapplic-clickable:hover {
  fill: color-mix(in srgb, var(--hcpr-plum) 55%, var(--hcpr-copper)) !important;
  stroke: #fff !important;
  stroke-opacity: 0.9;
}
.fl-node-72j5sai9gtmu .mapplic-map svg polygon.mapplic-active, .fl-node-72j5sai9gtmu .mapplic-map svg path.mapplic-active, .fl-node-72j5sai9gtmu .mapplic-map svg polygon.mapplic-clickable.mapplic-active, .fl-node-72j5sai9gtmu .mapplic-map svg path.mapplic-clickable.mapplic-active {
  fill: var(--hcpr-copper) !important;
  stroke: #fff !important;
  stroke-width: 1.2px;
  stroke-opacity: 1;
}
.fl-node-72j5sai9gtmu .mapplic-sidebar {
  background: var(--hcpr-white);
  border: 0;
  border-right: 1px solid var(--hcpr-line);
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  overflow-y: auto;
  overflow-x: hidden;
}
.fl-node-72j5sai9gtmu .mapplic-sidebar-header {
  border-bottom: 1px solid var(--hcpr-line);
  padding: 6px 8px;
}
.fl-node-72j5sai9gtmu .mapplic-sidebar-header .mapplic-icon-magnifier {
  color: var(--hcpr-muted);
}
.fl-node-72j5sai9gtmu .mapplic-search-input {
  font-family: var(--hcpr-sans) !important;
  font-size: 16px !important;
  color: var(--hcpr-plum-dark) !important;
  background: var(--hcpr-white);
  border: 1px solid transparent;
  border-radius: var(--hcpr-radius-sm);
  outline: none;
}
.fl-node-72j5sai9gtmu .mapplic-search-input::placeholder {
  color: var(--hcpr-muted);
  opacity: 0.8;
}
.fl-node-72j5sai9gtmu .mapplic-search-input:focus {
  box-shadow: var(--hcpr-focus-ring);
  border-color: var(--hcpr-copper);
}
.fl-node-72j5sai9gtmu .mapplic-search-toggle .mapplic-icon-filter, .fl-node-72j5sai9gtmu .mapplic-search-clear .mapplic-icon-cross {
  color: var(--hcpr-muted);
}
.fl-node-72j5sai9gtmu .mapplic-search-clear:hover .mapplic-icon-cross, .fl-node-72j5sai9gtmu .mapplic-search-toggle:hover .mapplic-icon-filter {
  color: var(--hcpr-copper);
}
.fl-node-72j5sai9gtmu .mapplic-list-container {
  font-family: var(--hcpr-sans);
}
.fl-node-72j5sai9gtmu .mapplic-dir-item {
  border-bottom: 1px solid var(--hcpr-line);
}
.fl-node-72j5sai9gtmu .mapplic-dir-item:last-child {
  border-bottom: 0;
}
.fl-node-72j5sai9gtmu .mapplic-dir-item a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--hcpr-plum-dark);
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.fl-node-72j5sai9gtmu .mapplic-dir-item a:hover {
  background: var(--hcpr-plum-tint);
  border-left-color: var(--hcpr-copper);
}
.fl-node-72j5sai9gtmu .mapplic-dir-item h4 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-72j5sai9gtmu .mapplic-dir-item .mapplic-about {
  font-family: var(--hcpr-sans);
  font-size: 14px;
  color: var(--hcpr-muted);
}
.fl-node-72j5sai9gtmu .mapplic-tooltip {
  font-family: var(--hcpr-sans);
}
.fl-node-72j5sai9gtmu .mapplic-tooltip-wrap {
  background: var(--hcpr-white) !important;
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius) !important;
  box-shadow: var(--hcpr-shadow-lg);
  overflow: hidden;
  color: var(--hcpr-plum-dark);
}
.fl-node-72j5sai9gtmu .mapplic-tooltip-triangle {
  background: var(--hcpr-white) !important;
  border: 1px solid var(--hcpr-line);
  border-top: 0;
  border-left: 0;
}
.fl-node-72j5sai9gtmu .mapplic-tooltip-body {
  padding: 20px;
}
.fl-node-72j5sai9gtmu .mapplic-tooltip-title {
  font-family: var(--hcpr-serif) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: var(--hcpr-plum-dark) !important;
  margin: 0 0 8px !important;
}
.fl-node-72j5sai9gtmu .mapplic-tooltip-description, .fl-node-72j5sai9gtmu .mapplic-tooltip-content {
  font-family: var(--hcpr-sans) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  color: var(--hcpr-plum-dark) !important;
}
.fl-node-72j5sai9gtmu .mapplic-tooltip-close .mapplic-icon-cross {
  color: var(--hcpr-muted);
}
.fl-node-72j5sai9gtmu .mapplic-tooltip-close:hover .mapplic-icon-cross {
  color: var(--hcpr-copper);
}
.fl-node-72j5sai9gtmu .mapplic-popup-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 10px 20px;
  border-radius: var(--hcpr-radius-md);
  border: 1px solid var(--hcpr-plum);
  background: transparent;
  color: var(--hcpr-plum) !important;
  font-family: var(--hcpr-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fl-node-72j5sai9gtmu .mapplic-popup-link:hover {
  transform: translateY(-2px);
  background: var(--hcpr-plum-tint);
  box-shadow: var(--hcpr-shadow);
}
.fl-node-72j5sai9gtmu .mapplic-zoom-buttons .mapplic-button {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  color: var(--hcpr-plum-dark);
  border-radius: var(--hcpr-radius-sm);
}
.fl-node-72j5sai9gtmu .mapplic-zoom-buttons .mapplic-button:hover {
  border-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
.fl-node-72j5sai9gtmu .map-caption {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--hcpr-white);
  border-radius: var(--hcpr-radius-md);
  border: 1px solid var(--hcpr-line);
  font-size: 16px;
  color: var(--hcpr-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fl-node-72j5sai9gtmu .map-caption svg {
  width: 18px;
  height: 18px;
  stroke: var(--hcpr-copper);
  flex-shrink: 0;
  margin-top: 2px;
}
.fl-node-72j5sai9gtmu.map-container--wide .wrap {
  max-width: 1280px;
}
.fl-node-72j5sai9gtmu.map-container--wide .map-viewport {
  min-height: 420px;
}
@media (max-width: 768px) {
  .fl-node-72j5sai9gtmu .map-viewport {
    min-height: 280px;
  }
}
@media (max-width: 375px) {
  .fl-node-72j5sai9gtmu {
    padding: 2.5rem 0;
  }
  .fl-node-72j5sai9gtmu .wrap {
    padding: 0 16px;
  }
}
.fl-node-72j5sai9gtmu .block-label {
  display: none !important;
}
@charset "UTF-8";
.fl-node-30cfu6zdnxwp {
  /* final-cta-band — module bb_css_code (&-scoped, X10 + X1). HCPR-89.
   Canonical: §6.2 plum-gradient band, centered, white copy, one copper CTA.
   Inline style block, webfont import, and dev-changelog comments removed (fonts load
   site-wide via hcpr_ds_fonts; tokens via hcpr_ds_inline). Brand literals → --hcpr-*. */
  /* Rating strip */
  /* Heading — white on plum */
  /* Subtext */
  /* CTA button row */
  /* Primary CTA — copper, §6.1 radius-md */
  /* Trust chip row — pills (§6.3) */
  /* Responsive */
  /* rating-only shortcode adoption (HCPR-173) — fit + light colors on dark band */
}
.fl-node-30cfu6zdnxwp .final-cta-band {
  --gap: clamp(4.5rem, 7vw, 6rem);
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.6;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  padding: var(--gap) 0;
  text-align: center;
}
.fl-node-30cfu6zdnxwp .final-cta-band *, .fl-node-30cfu6zdnxwp .final-cta-band *::before, .fl-node-30cfu6zdnxwp .final-cta-band *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-30cfu6zdnxwp .final-cta-band .block-label {
  display: none !important;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: var(--hcpr-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .stars {
  color: #ffc94d;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .rating-num {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .rating-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 243, 239, 0.8);
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-heading, .fl-node-30cfu6zdnxwp .final-cta-band h2.cta-heading, .fl-node-30cfu6zdnxwp .final-cta-band .cta-content .cta-heading, .fl-node-30cfu6zdnxwp .final-cta-band .cta-content h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-bottom: 12px;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-subtext {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(247, 243, 239, 0.88);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fl-node-30cfu6zdnxwp .final-cta-band .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hcpr-copper);
  color: #fff;
  font-family: var(--hcpr-sans);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 40px;
  border-radius: var(--hcpr-radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.4);
}
.fl-node-30cfu6zdnxwp .final-cta-band .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 119, 42, 0.5);
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.fl-node-30cfu6zdnxwp .final-cta-band .trust-chip {
  font-size: 13px;
  font-weight: 600;
  color: rgba(247, 243, 239, 0.75);
  padding: 5px 12px 5px 10px;
  border-radius: var(--hcpr-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fl-node-30cfu6zdnxwp .final-cta-band .trust-chip .glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  box-shadow: 0 0 0 3px rgba(212, 119, 42, 0.2);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .fl-node-30cfu6zdnxwp .final-cta-band {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .cta-heading, .fl-node-30cfu6zdnxwp .final-cta-band h2.cta-heading, .fl-node-30cfu6zdnxwp .final-cta-band .cta-content .cta-heading, .fl-node-30cfu6zdnxwp .final-cta-band .cta-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .btn-primary {
    width: 100%;
    max-width: 320px;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .cta-trust {
    gap: 6px;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .trust-chip {
    font-size: 12px;
    padding: 4px 10px 4px 8px;
  }
}
@media (max-width: 400px) {
  .fl-node-30cfu6zdnxwp .final-cta-band .cta-content {
    padding: 0 16px;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .cta-rating {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 16px;
    gap: 6px;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .rating-num {
    font-size: 1.125rem;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .rating-text {
    font-size: 0.8125rem;
  }
  .fl-node-30cfu6zdnxwp .final-cta-band .btn-primary {
    max-width: 100%;
  }
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .hcpr-reviews--rating-only, .fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .hcpr-reviews__aggregate, .fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .hcpr-reviews__stars-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .hcpr-reviews__rating-value {
  color: #fff;
  font-size: 1.375rem;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .hcpr-reviews__stars {
  color: #ffc94d;
  font-size: 1.25rem;
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .hcpr-reviews__count {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.fl-node-30cfu6zdnxwp .final-cta-band .cta-rating .hcpr-reviews__count a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
@charset "UTF-8";
.fl-node-mgh49od17s68 {
  /* ea-local-resource — Form-61 #67. White card, plum accents, copper conversion button. */
}
.fl-node-mgh49od17s68 .ea-lr {
  padding: 8px 0;
  font-family: var(--hcpr-sans);
}
.fl-node-mgh49od17s68 .ea-lr__card {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  background: var(--hcpr-white, #fff);
  border: 1px solid var(--hcpr-line, #e0dde4);
  border-top: 4px solid var(--hcpr-plum);
  border-radius: var(--hcpr-radius-lg, 18px);
  box-shadow: var(--hcpr-shadow-soft, 0 6px 20px rgba(0, 0, 0, 0.06));
  overflow: hidden;
}
.fl-node-mgh49od17s68 .ea-lr__main {
  display: flex;
  gap: 20px;
  padding: 34px 36px;
  align-items: flex-start;
}
.fl-node-mgh49od17s68 .ea-lr__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hcpr-plum-tint, #f6f2f8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-node-mgh49od17s68 .ea-lr__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--hcpr-plum);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-mgh49od17s68 .ea-lr__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin: 0 0 8px;
}
.fl-node-mgh49od17s68 .ea-lr__name {
  font-family: var(--hcpr-serif);
  font-size: clamp(1.45rem, 1.1rem + 1.4vw, 1.9rem);
  line-height: 1.2;
  color: var(--hcpr-plum);
  margin: 0 0 10px;
}
.fl-node-mgh49od17s68 .ea-lr__desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--hcpr-muted);
  margin: 0 0 20px;
}
.fl-node-mgh49od17s68 .ea-lr__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--hcpr-radius-md, 12px);
  min-height: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fl-node-mgh49od17s68 .ea-lr__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-mgh49od17s68 .ea-lr__btn--nav {
  background: var(--hcpr-plum);
  color: #fff;
  box-shadow: 0 8px 18px rgba(33, 20, 42, 0.18);
}
.fl-node-mgh49od17s68 .ea-lr__btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(33, 20, 42, 0.26);
  color: #fff;
}
.fl-node-mgh49od17s68 .ea-lr__btn--conv {
  background: var(--hcpr-copper);
  color: #fff;
  box-shadow: 0 8px 18px rgba(212, 119, 42, 0.22);
}
.fl-node-mgh49od17s68 .ea-lr__btn--conv:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.3);
  color: #fff;
}
.fl-node-mgh49od17s68 .ea-lr__aside {
  background: var(--hcpr-plum-tint, #f6f2f8);
  border-left: 1px solid var(--hcpr-line, #e0dde4);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fl-node-mgh49od17s68 .ea-lr__aside-h {
  font-family: var(--hcpr-serif);
  font-size: 1.18rem;
  color: var(--hcpr-plum);
  margin: 0 0 8px;
}
.fl-node-mgh49od17s68 .ea-lr__aside-p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--hcpr-muted);
  margin: 0 0 18px;
}
@media (max-width: 860px) {
  .fl-node-mgh49od17s68 .ea-lr__card {
    grid-template-columns: 1fr;
  }
  .fl-node-mgh49od17s68 .ea-lr__main {
    padding: 26px 22px;
  }
  .fl-node-mgh49od17s68 .ea-lr__aside {
    border-left: none;
    border-top: 1px solid var(--hcpr-line, #e0dde4);
    padding: 26px 22px;
  }
  .fl-node-mgh49od17s68 .ea-lr__btn {
    width: 100%;
    justify-content: center;
  }
}
@charset "UTF-8";
.fl-node-ylwtip8b59ea {
  /* ea-city-video header — Form-61 #68 */
}
.fl-node-ylwtip8b59ea .ea-vid__head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  font-family: var(--hcpr-sans);
}
.fl-node-ylwtip8b59ea .ea-vid__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin: 0 0 10px;
}
.fl-node-ylwtip8b59ea .ea-vid__h2 {
  font-family: var(--hcpr-serif);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem);
  color: var(--hcpr-plum);
  margin: 0 0 12px;
}
.fl-node-ylwtip8b59ea .ea-vid__lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--hcpr-muted);
  margin: 0;
}
.fl-node-a0v81w6zphxs .ea-inc {
  padding: 8px 0;
}
.fl-node-a0v81w6zphxs .ea-inc__head {
  max-width: 760px;
  margin: 0 0 24px;
}
.fl-node-a0v81w6zphxs .ea-inc__eyebrow {
  font-family: var(--hcpr-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin: 0 0 10px;
}
.fl-node-a0v81w6zphxs .ea-inc__h2 {
  font-family: var(--hcpr-serif);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem);
  color: var(--hcpr-plum);
  margin: 0 0 12px;
}
.fl-node-a0v81w6zphxs .ea-inc__lead {
  font-family: var(--hcpr-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--hcpr-muted);
  margin: 0;
}
.fl-node-a0v81w6zphxs .ea-inc__lead strong {
  color: var(--hcpr-plum);
}
.fl-node-a0v81w6zphxs .ea-inc__tablewrap {
  overflow-x: auto;
  border-radius: var(--hcpr-radius-md, 14px);
  border: 1px solid var(--hcpr-line, #e0dde4);
  box-shadow: var(--hcpr-shadow-soft, 0 6px 20px rgba(0, 0, 0, 0.06));
}
.fl-node-a0v81w6zphxs .ea-inc__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--hcpr-sans);
  background: var(--hcpr-white);
}
.fl-node-a0v81w6zphxs .ea-inc__table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--hcpr-plum);
  font-size: 0.95rem;
}
.fl-node-a0v81w6zphxs .ea-inc__table th[scope="row"] {
  text-align: left;
  background: var(--hcpr-plum);
  color: var(--hcpr-white);
  padding: 12px 16px;
  font-size: 0.92rem;
  white-space: nowrap;
}
.fl-node-a0v81w6zphxs .ea-inc__table thead th[scope="col"] {
  background: var(--hcpr-plum-tint, #f6f2f8);
  color: var(--hcpr-plum-dark);
  padding: 12px 16px;
  font-size: 0.95rem;
  text-align: center;
}
.fl-node-a0v81w6zphxs .ea-inc__table td {
  padding: 12px 16px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--hcpr-plum-dark);
  border-top: 1px solid var(--hcpr-line, #e0dde4);
}
.fl-node-a0v81w6zphxs .ea-inc__vintage {
  font-family: var(--hcpr-sans);
  font-size: 0.85rem;
  color: var(--hcpr-muted);
  margin: 12px 0 24px;
}
.fl-node-a0v81w6zphxs .ea-inc__docs {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line, #e0dde4);
  border-left: 3px solid var(--hcpr-copper);
  border-radius: var(--hcpr-radius-md, 12px);
  padding: 20px 24px;
}
.fl-node-a0v81w6zphxs .ea-inc__docs h3 {
  font-family: var(--hcpr-serif);
  font-size: 1.15rem;
  color: var(--hcpr-plum);
  margin: 0 0 10px;
}
.fl-node-a0v81w6zphxs .ea-inc__docs ul {
  margin: 0;
  padding-left: 20px;
  font-family: var(--hcpr-sans);
  color: var(--hcpr-muted);
  line-height: 1.6;
}
.fl-node-cbnlairexk53 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}
.fl-node-cbnlairexk53 .fl-photo-img {
  display: block;
  width: 100%;
  height: 84px;
  object-fit: contain;
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line, #e0dde4);
  border-radius: var(--hcpr-radius, 18px);
  box-shadow: var(--hcpr-shadow-soft, 0 6px 20px rgba(0, 0, 0, 0.08));
  padding: 14px 16px;
}
.fl-node-cbnlairexk53 .fl-photo, .fl-node-cbnlairexk53 .fl-photo-content {
  width: 100%;
}
@media (max-width: 768px) {
  .fl-node-cbnlairexk53 .fl-photo-img {
    height: 76px;
    padding: 12px 14px;
  }
}
.fl-node-lc792mdua8we {
  display: flex !important;
  flex-direction: column !important;
  gap: 0;
  min-width: 0;
}
.fl-node-lc792mdua8we .eb-frame__h {
  font-family: var(--hcpr-serif);
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 1.9rem);
  line-height: 1.22;
  color: var(--hcpr-plum);
  margin: 0 0 12px;
  max-width: 26ch;
}
.fl-node-lc792mdua8we .eb-frame__lead {
  font-family: var(--hcpr-serif);
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--hcpr-plum-dark);
  font-weight: 700;
  margin: 0 0 10px;
}
.fl-node-lc792mdua8we .eb-frame__body {
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--hcpr-muted);
  margin: 0;
}
.fl-node-lc792mdua8we .eb-frame__body strong {
  color: var(--hcpr-plum);
}
.fl-node-wy8e2iq9h4xv .faq-show-more {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--hcpr-line-strong);
  border-radius: var(--hcpr-radius-md);
  font-family: var(--hcpr-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--hcpr-plum);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.fl-node-wy8e2iq9h4xv .faq-show-more:hover {
  border-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
  background: rgba(237, 126, 29, 0.05);
}
.fl-node-rbzpyciwt3ms {
  display: grid !important;
  grid-template-columns: minmax(0, 65fr) minmax(0, 35fr) !important;
  grid-auto-columns: 0 !important;
  gap: 32px !important;
  align-items: start;
}
@media (max-width: 1024px) {
  .fl-node-rbzpyciwt3ms {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
.fl-node-mvpiht8z7al3 .hcpr-ect-disclosure {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--hcpr-muted, #857b8e);
  text-align: center;
  font-style: normal;
}
/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


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

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

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

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

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

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		font-family: inherit;
			font-weight: inherit;
	
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
		font-family: inherit;
			font-weight: inherit;
		
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																																																																																																										