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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 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: 1280px;
}
.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-gf1ry0knpasj {
	color: #23107b;
}
.fl-builder-content .fl-node-gf1ry0knpasj *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-gf1ry0knpasj a {
	color: #23107b;
}

.fl-builder-content .fl-node-gf1ry0knpasj a:hover {
	color: #23107b;
}

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



.fl-node-gf1ry0knpasj > .fl-row-content-wrap {
	background-image: url(https://limonadeinc.com/wp-content/uploads/WordPress-MainTopImage.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
@media(max-width: 1200px) {
	.fl-node-gf1ry0knpasj > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-gf1ry0knpasj > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-gf1ry0knpasj > .fl-row-content-wrap {
		background-position: center center;
	}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    






                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    






                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    






                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    






                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





	/* Full Height Rows */
	.fl-node-gf3dakl9qv8p.fl-row-full-height > .fl-row-content-wrap,
	.fl-node-gf3dakl9qv8p.fl-row-custom-height > .fl-row-content-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.fl-node-gf3dakl9qv8p.fl-row-full-height > .fl-row-content-wrap {
		min-height: 100vh;
	}
	.fl-node-gf3dakl9qv8p.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 0;
	}

	.fl-builder-edit .fl-node-gf3dakl9qv8p.fl-row-full-height > .fl-row-content-wrap {
		min-height: calc( 100vh - 48px );
	}

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-gf3dakl9qv8p.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-gf3dakl9qv8p.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-gf3dakl9qv8p.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-gf3dakl9qv8p > .fl-row-content-wrap {
	background-color: #762ca9;
}
.fl-node-gf3dakl9qv8p.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 700px;
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    






                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    






                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    



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




.fl-node-aqwsrtpf16de {
	width: 54.98%;
}




.fl-node-84qxmdhfp65e {
	width: 100%;
}




.fl-node-4j0dkr1lpxmb {
	width: 50%;
}




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




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




.fl-node-qvtoxlmzp2u4 {
	width: 25%;
}




.fl-node-ky2lm7zojr0v {
	width: 55.06%;
}




.fl-node-7sjn98r3id4p {
	width: 100%;
}




.fl-node-yml4k1ez7uq3 {
	width: 33.33%;
}




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




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




.fl-node-9sx7nv30oqyl {
	width: 45.02%;
}




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




.fl-node-pa65znl9x4sm {
	width: 25%;
}




.fl-node-ishv4qocz2a8 {
	width: 33.33%;
}




.fl-node-9iyb4z2vcflg {
	width: 44.94%;
}




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




.fl-node-7af3vkogmdt2 {
	width: 25%;
}




.fl-node-5rqyktmcuoxa {
	width: 33.33%;
}




.fl-node-jcyni0bg2sfd {
	width: 25%;
}




.fl-node-61856220c1309 {
	width: 25%;
}




.fl-node-61856220c130a {
	width: 50%;
}




.fl-node-61856220c130b {
	width: 25%;
}

.fl-node-bac2zwslmyp5.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-bac2zwslmyp5 {
	width: 100%;
}

.fl-node-bac2zwslmyp5 .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 50px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 992px ) {
			.fl-node-bac2zwslmyp5.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-bac2zwslmyp5 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 40px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 768px ) {
			.fl-node-bac2zwslmyp5.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-bac2zwslmyp5 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-bac2zwslmyp5 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}

.fl-node-cgm1q9vrxnoj.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-cgm1q9vrxnoj {
	width: 100%;
}

.fl-node-cgm1q9vrxnoj .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 40px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 992px ) {
			.fl-node-cgm1q9vrxnoj.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-cgm1q9vrxnoj .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 20px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 768px ) {
			.fl-node-cgm1q9vrxnoj.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-cgm1q9vrxnoj .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
		body a.infobox-title-link {
	text-decoration: none;
}

body h1.uabb-infobox-title,
body h2.uabb-infobox-title,
body h3.uabb-infobox-title,
body h4.uabb-infobox-title,
body h5.uabb-infobox-title,
body h6.uabb-infobox-title,
.uabb-infobox-content .uabb-infobox-title-prefix {
	margin: 0;
	padding: 0;
}

.uabb-module-content .uabb-text-editor :not(a) {
	color: inherit;
}

.uabb-module-content .uabb-text-editor :not(i) {
	font-family: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	font-size: inherit;
	line-height: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
	font-weight: inherit;
}

.uabb-infobox-content .uabb-infobox-text p:last-of-type {
	margin-bottom: 0;
}

.uabb-infobox-content .uabb-infobox-text p {
	padding: 0 0 10px;
}

.fl-builder-content .uabb-infobox-text h1,
.fl-builder-content .uabb-infobox-text h2,
.fl-builder-content .uabb-infobox-text h3,
.fl-builder-content .uabb-infobox-text h4,
.fl-builder-content .uabb-infobox-text h5,
.fl-builder-content .uabb-infobox-text h6 {
	margin: 0;
}

.infobox-icon-above-title .uabb-infobox-left-right-wrap,
.infobox-icon-below-title .uabb-infobox-left-right-wrap,
.infobox-photo-above-title .uabb-infobox-left-right-wrap,
.infobox-photo-below-title .uabb-infobox-left-right-wrap {
	display: block;
	min-width: 100%;
	width: 100%;
}

.infobox-icon-above-title .uabb-icon,
.infobox-icon-below-title .uabb-icon,
.infobox-photo-above-title .uabb-imgicon-wrap {
	display: block;
}

.infobox-icon-left-title .uabb-infobox-title,
.infobox-icon-right-title .uabb-infobox-title,
.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-infobox-title,
.infobox-photo-right-title .uabb-infobox-title,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap {
	display: inline-block;
	vertical-align: middle;
}

.infobox-icon-left-title .left-title-image,
.infobox-icon-right-title .right-title-image,
.infobox-icon-left .uabb-infobox-left-right-wrap,
.infobox-icon-right .uabb-infobox-left-right-wrap,
.infobox-photo-left .uabb-infobox-left-right-wrap,
.infobox-photo-right .uabb-infobox-left-right-wrap {
	display: inline-block;
	width: 100%;
}

.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-left .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-left .uabb-imgicon-wrap {
	margin-right: 20px;
}

.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap {
	margin-left: 20px;
}

.infobox-icon-left .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-icon-left .uabb-infobox-content,
.infobox-icon-right .uabb-infobox-content,
.infobox-photo-left .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap,
.infobox-photo-left .uabb-infobox-content,
.infobox-photo-right .uabb-infobox-content {
	display: inline-block;
	vertical-align: top;
}

.infobox-photo-below-title .uabb-imgicon-wrap {
	display: block;
	margin: 10px 0 15px;
}

.infobox-photo-left-title .uabb-infobox-title-wrap,
.infobox-icon-left-title .uabb-infobox-title-wrap,
.infobox-photo-right-title .uabb-infobox-title-wrap,
.infobox-icon-right-title .uabb-infobox-title-wrap {
	vertical-align: middle;
}

.fl-module-info-box .fl-module-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
}

.fl-module-info-box .uabb-separator-parent {
	line-height: 0;
}

.fl-module-info-box .uabb-infobox-module-link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 4;
}
@media (max-width: 768px) { .infobox-photo-left,
.infobox-photo-right {
	display: block;
}

.infobox-photo-left .infobox-photo,
.infobox-photo-left-text .infobox-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-right .infobox-photo,
.infobox-photo-right-text .infobox-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-left .infobox-content,
.infobox-photo-left-text .infobox-content,
.infobox-photo-right .infobox-content,
.infobox-photo-right-text .infobox-content {
	display: block;
	width: auto;
} }
.fl-node-2he0ygbk6dj5 {
	width: 100%;
}

	.fl-node-2he0ygbk6dj5 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-2he0ygbk6dj5 .uabb-infobox {
		}
	/* Align */
.fl-node-2he0ygbk6dj5 .infobox-left,
.fl-node-2he0ygbk6dj5 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-2he0ygbk6dj5 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-2he0ygbk6dj5 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-2he0ygbk6dj5 .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-2he0ygbk6dj5 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-2he0ygbk6dj5 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-2he0ygbk6dj5 .uabb-infobox {
		;	}

	

	.fl-node-2he0ygbk6dj5 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-2he0ygbk6dj5 .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-2he0ygbk6dj5 .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-2he0ygbk6dj5 .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

.fl-node-8eal3udmkirg {
	width: 100%;
}
.fl-builder-content .fl-node-8eal3udmkirg .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:visited {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:#b20776;background: rgba(178, 7, 118, 1);}
		.fl-builder-content .fl-node-8eal3udmkirg .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:hover {
		background:#000000;background: rgba(0, 0, 0, 1);	}
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a *,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:visited,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:visited * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:focus *,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:hover * {
		color: #ffffff;
	}
				


.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:focus,
.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:hover {
			}


@media ( max-width: 768px ) {
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
		text-align: ;
	}
}


	@media ( max-width: 992px ) {
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap.uabb-creative-button-tablet- {
		text-align: ;
	}
			.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a,
		.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}

	
	@media ( max-width: 768px ) {
			.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a,
			.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a,.fl-builder-content .fl-node-8eal3udmkirg .uabb-creative-button-wrap a:visited {
	font-family: , sans-serif;
	text-transform: none;
}
.fl-builder-content .fl-node-8eal3udmkirg .uabb-module-content.uabb-creative-button-wrap a {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

	.fl-node-8eal3udmkirg .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-8eal3udmkirg .uabb-infobox {
		}
	/* Align */
.fl-node-8eal3udmkirg .infobox-left,
.fl-node-8eal3udmkirg .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-8eal3udmkirg .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-8eal3udmkirg .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-8eal3udmkirg .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */


/* Button Margin */
.fl-builder-content .fl-node-8eal3udmkirg .uabb-infobox-button {
	margin-top: 10px;
	margin-bottom: 0px;
}


/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-8eal3udmkirg .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-8eal3udmkirg .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-8eal3udmkirg .uabb-infobox {
		;	}

	

	.fl-node-8eal3udmkirg .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-yz8dtxobe07c .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-yz8dtxobe07c .uabb-infobox {
		}
	/* Align */
.fl-node-yz8dtxobe07c .infobox-left,
.fl-node-yz8dtxobe07c .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-yz8dtxobe07c .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-yz8dtxobe07c .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-yz8dtxobe07c .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-yz8dtxobe07c .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-yz8dtxobe07c .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-yz8dtxobe07c .uabb-infobox {
		;	}

	

	.fl-node-yz8dtxobe07c .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-yz8dtxobe07c .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-yz8dtxobe07c .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-yz8dtxobe07c .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}
 .fl-node-yz8dtxobe07c > .fl-module-content {
	margin-bottom:-20px;
}
@media (max-width: 768px) { .fl-node-yz8dtxobe07c > .fl-module-content { margin-bottom:20px; } }
.fl-node-hfej4lw2yci8 {
	width: 100%;
}

	.fl-node-hfej4lw2yci8 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-hfej4lw2yci8 .uabb-infobox {
		}
	/* Align */
.fl-node-hfej4lw2yci8 .infobox-left,
.fl-node-hfej4lw2yci8 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-hfej4lw2yci8 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-hfej4lw2yci8 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-hfej4lw2yci8 .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-hfej4lw2yci8 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-hfej4lw2yci8 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-hfej4lw2yci8 .uabb-infobox {
		;	}

	

	.fl-node-hfej4lw2yci8 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-hfej4lw2yci8 .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-hfej4lw2yci8 .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-hfej4lw2yci8 .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-ug8nhtr9mfip .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ug8nhtr9mfip .uabb-infobox {
		}
	/* Align */
.fl-node-ug8nhtr9mfip .infobox-center,
.fl-node-ug8nhtr9mfip .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ug8nhtr9mfip .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ug8nhtr9mfip .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ug8nhtr9mfip .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ug8nhtr9mfip .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ug8nhtr9mfip .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ug8nhtr9mfip .uabb-infobox {
		;	}

	

	.fl-node-ug8nhtr9mfip .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-ug8nhtr9mfip .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-ug8nhtr9mfip .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-ug8nhtr9mfip .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-swl0zok1ephf .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-swl0zok1ephf .uabb-infobox {
		}
	/* Align */
.fl-node-swl0zok1ephf .infobox-left,
.fl-node-swl0zok1ephf .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-swl0zok1ephf .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-swl0zok1ephf .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-swl0zok1ephf .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-swl0zok1ephf .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-swl0zok1ephf .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-swl0zok1ephf .uabb-infobox {
		;	}

	

	.fl-node-swl0zok1ephf .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-swl0zok1ephf .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-swl0zok1ephf .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-swl0zok1ephf .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

.fl-node-8u12xoznr3sh {
	width: 100%;
}

	.fl-node-8u12xoznr3sh .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-8u12xoznr3sh .uabb-infobox {
		}
	/* Align */
.fl-node-8u12xoznr3sh .infobox-left,
.fl-node-8u12xoznr3sh .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-8u12xoznr3sh .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-8u12xoznr3sh .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-8u12xoznr3sh .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-8u12xoznr3sh .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-8u12xoznr3sh .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-8u12xoznr3sh .uabb-infobox {
		;	}

	

	.fl-node-8u12xoznr3sh .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

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

	.fl-node-cuoke3wdln6t .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-cuoke3wdln6t .uabb-infobox {
		}
	/* Align */
.fl-node-cuoke3wdln6t .infobox-left,
.fl-node-cuoke3wdln6t .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-cuoke3wdln6t .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-cuoke3wdln6t .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-cuoke3wdln6t .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-cuoke3wdln6t .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-cuoke3wdln6t .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-cuoke3wdln6t .uabb-infobox {
		;	}

	

	.fl-node-cuoke3wdln6t .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-8ztlp4i2uyn7 {
	width: 100%;
}

	.fl-node-8ztlp4i2uyn7 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-8ztlp4i2uyn7 .uabb-infobox {
		}
	/* Align */
.fl-node-8ztlp4i2uyn7 .infobox-left,
.fl-node-8ztlp4i2uyn7 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-8ztlp4i2uyn7 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-8ztlp4i2uyn7 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-8ztlp4i2uyn7 .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-8ztlp4i2uyn7 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-8ztlp4i2uyn7 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-8ztlp4i2uyn7 .uabb-infobox {
		;	}

	

	.fl-node-8ztlp4i2uyn7 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-2c3mstuxf4n7 {
	width: 100%;
}

	.fl-node-2c3mstuxf4n7 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-2c3mstuxf4n7 .uabb-infobox {
		}
	/* Align */
.fl-node-2c3mstuxf4n7 .infobox-left,
.fl-node-2c3mstuxf4n7 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-2c3mstuxf4n7 .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-2c3mstuxf4n7 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-2c3mstuxf4n7 .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-2c3mstuxf4n7 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-2c3mstuxf4n7 .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-2c3mstuxf4n7 .uabb-infobox {
		;	}

	

	.fl-node-2c3mstuxf4n7 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-87cydh6jfz0r {
	width: 100%;
}

	.fl-node-87cydh6jfz0r .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-87cydh6jfz0r .uabb-infobox {
		}
	/* Align */
.fl-node-87cydh6jfz0r .infobox-left,
.fl-node-87cydh6jfz0r .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-87cydh6jfz0r .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-87cydh6jfz0r .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-87cydh6jfz0r .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-87cydh6jfz0r .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-87cydh6jfz0r .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-87cydh6jfz0r .uabb-infobox {
		;	}

	

	.fl-node-87cydh6jfz0r .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-87cydh6jfz0r .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-87cydh6jfz0r .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-87cydh6jfz0r .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-ty1m06xurc3n .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ty1m06xurc3n .uabb-infobox {
		}
	/* Align */
.fl-node-ty1m06xurc3n .infobox-left,
.fl-node-ty1m06xurc3n .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ty1m06xurc3n .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ty1m06xurc3n .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ty1m06xurc3n .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ty1m06xurc3n .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ty1m06xurc3n .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ty1m06xurc3n .uabb-infobox {
		;	}

	

	.fl-node-ty1m06xurc3n .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-ty1m06xurc3n .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-ty1m06xurc3n .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-ty1m06xurc3n .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-kd7fs6ripw5m .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-kd7fs6ripw5m .uabb-infobox {
		}
	/* Align */
.fl-node-kd7fs6ripw5m .infobox-left,
.fl-node-kd7fs6ripw5m .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-kd7fs6ripw5m .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-kd7fs6ripw5m .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-kd7fs6ripw5m .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-kd7fs6ripw5m .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-kd7fs6ripw5m .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-kd7fs6ripw5m .uabb-infobox {
		;	}

	

	.fl-node-kd7fs6ripw5m .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-kd7fs6ripw5m .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-kd7fs6ripw5m .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-kd7fs6ripw5m .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-gvkiajsec7qm .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-gvkiajsec7qm .uabb-infobox {
		}
	/* Align */
.fl-node-gvkiajsec7qm .infobox-left,
.fl-node-gvkiajsec7qm .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-gvkiajsec7qm .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-gvkiajsec7qm .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-gvkiajsec7qm .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-gvkiajsec7qm .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-gvkiajsec7qm .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-gvkiajsec7qm .uabb-infobox {
		;	}

	

	.fl-node-gvkiajsec7qm .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-gvkiajsec7qm .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-gvkiajsec7qm .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-gvkiajsec7qm .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-rg9ntzjpo52f .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-rg9ntzjpo52f .uabb-infobox {
		}
	/* Align */
.fl-node-rg9ntzjpo52f .infobox-left,
.fl-node-rg9ntzjpo52f .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-rg9ntzjpo52f .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-rg9ntzjpo52f .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-rg9ntzjpo52f .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-rg9ntzjpo52f .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-rg9ntzjpo52f .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-rg9ntzjpo52f .uabb-infobox {
		;	}

	

	.fl-node-rg9ntzjpo52f .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-rg9ntzjpo52f .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-rg9ntzjpo52f .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-rg9ntzjpo52f .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-q8zs12ho4yxp .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-q8zs12ho4yxp .uabb-infobox {
		}
	/* Align */
.fl-node-q8zs12ho4yxp .infobox-left,
.fl-node-q8zs12ho4yxp .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-q8zs12ho4yxp .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-q8zs12ho4yxp .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-q8zs12ho4yxp .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-q8zs12ho4yxp .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-q8zs12ho4yxp .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-q8zs12ho4yxp .uabb-infobox {
		;	}

	

	.fl-node-q8zs12ho4yxp .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-q8zs12ho4yxp .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-q8zs12ho4yxp .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-q8zs12ho4yxp .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-ck81qi0mva6x .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ck81qi0mva6x .uabb-infobox {
		}
	/* Align */
.fl-node-ck81qi0mva6x .infobox-left,
.fl-node-ck81qi0mva6x .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-ck81qi0mva6x .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-ck81qi0mva6x .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-ck81qi0mva6x .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ck81qi0mva6x .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-ck81qi0mva6x .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-ck81qi0mva6x .uabb-infobox {
		;	}

	

	.fl-node-ck81qi0mva6x .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-ck81qi0mva6x .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-ck81qi0mva6x .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-ck81qi0mva6x .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}

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

	.fl-node-s3ze6imyvwla .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-s3ze6imyvwla .uabb-infobox {
		}
	/* Align */
.fl-node-s3ze6imyvwla .infobox-center,
.fl-node-s3ze6imyvwla .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-s3ze6imyvwla .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-s3ze6imyvwla .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-s3ze6imyvwla .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-s3ze6imyvwla .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-s3ze6imyvwla .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-s3ze6imyvwla .uabb-infobox {
		;	}

	

	.fl-node-s3ze6imyvwla .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-s3ze6imyvwla .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-s3ze6imyvwla .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-s3ze6imyvwla .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}
 .fl-node-s3ze6imyvwla > .fl-module-content {
	margin-bottom:0px;
}

.fl-node-xmtg5kiarunh {
	width: 100%;
}
.fl-builder-content .fl-node-xmtg5kiarunh .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:visited {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:#b20776;background: rgba(178, 7, 118, 1);}
		.fl-builder-content .fl-node-xmtg5kiarunh .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:hover {
		background:#000000;background: rgba(0, 0, 0, 1);	}
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a *,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:visited,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:visited * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:focus *,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:hover * {
		color: #ffffff;
	}
				


.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:focus,
.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:hover {
			}


@media ( max-width: 768px ) {
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
		text-align: ;
	}
}


	@media ( max-width: 992px ) {
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap.uabb-creative-button-tablet- {
		text-align: ;
	}
			.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a,
		.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}

	
	@media ( max-width: 768px ) {
			.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a,
			.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a,.fl-builder-content .fl-node-xmtg5kiarunh .uabb-creative-button-wrap a:visited {
	font-family: , sans-serif;
	text-transform: none;
}
.fl-builder-content .fl-node-xmtg5kiarunh .uabb-module-content.uabb-creative-button-wrap a {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

	.fl-node-xmtg5kiarunh .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-xmtg5kiarunh .uabb-infobox {
		}
	/* Align */
.fl-node-xmtg5kiarunh .infobox-center,
.fl-node-xmtg5kiarunh .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-xmtg5kiarunh .uabb-infobox-title {
	margin-top: px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */


.fl-builder-content .fl-node-xmtg5kiarunh .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-xmtg5kiarunh .uabb-infobox-text {
	color:
	#808285;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */


/* Button Margin */
.fl-builder-content .fl-node-xmtg5kiarunh .uabb-infobox-button {
	margin-top: 10px;
	margin-bottom: 0px;
}


/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-xmtg5kiarunh .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-xmtg5kiarunh .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-xmtg5kiarunh .uabb-infobox {
		;	}

	

	.fl-node-xmtg5kiarunh .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-xmtg5kiarunh .uabb-infobox-title {
	font-weight: 800;
	font-size: 25px;
}
.fl-node-xmtg5kiarunh .uabb-infobox-text {
	font-weight: 300;
	font-size: 18px;
}
.fl-node-xmtg5kiarunh .uabb-infobox-title-prefix {
	font-weight: 800;
	font-size: 25px;
}
 .fl-node-xmtg5kiarunh > .fl-module-content {
	margin-bottom:60px;
}
@media (max-width: 768px) { .fl-node-xmtg5kiarunh > .fl-module-content { margin-bottom:20px; } }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-fp52jeqahkx4, .fl-node-fp52jeqahkx4 .fl-photo {
	text-align: center;
}
.uabb-gf-style .gform_body .ginput_container_radio .gfield_radio li label,
.uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox li label,
.uabb-gf-style .gform_body .ginput_container_radio .gfield_radio div label,
.uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox div label {
	padding-right: 16px;
}

.uabb-gf-style input[type=submit] {
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.uabb-gf-style .gform_body ul,
.uabb-gf-style .gform_body div {
	list-style: none;
	margin-left: 0;
}

.gform_wrapper .gfield_required {
	color: #790000;
	margin-left: 4px;
}

.gform_wrapper .gfield_radio li label,
.gform_wrapper .gfield_radio div label {
	vertical-align: bottom;
	margin-left: 4px;
}

.gform_wrapper .gfield_checkbox li label,
.gform_wrapper .gfield_checkbox div label {
	vertical-align: bottom;
	margin-left: 2px;
}

.uabb-gf-style .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half),
.uabb-gf-style .gform_wrapper.gform_validation_error .gform_body div div.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
	max-width: 100%;
}

.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
.gform_wrapper div.gfield.gfield_error,
.gform_wrapper div.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	margin-top: 16px;
	padding-bottom: 6px;
	padding-top: 8px;
	background-color: rgba(255, 223, 224, .25);
	border-top: 1px solid #C89797;
	border-bottom: 1px solid #C89797;
}

.gform_wrapper .field_description_below .gfield_description {
	padding-top: 16px;
}

.uabb-gf-style form .gform_body .gfield_label {
	display: block;
	text-align: left;
}

.gform_wrapper .top_label .gfield_label {
	line-height: 3;
}

.gform_wrapper .ginput_container.ginput_container_checkbox input,
.gform_wrapper .ginput_container.ginput_container_radio input {
	vertical-align: baseline;
}

.uabb-gf-style .gform_wrapper .gfield select {
	-webkit-appearance: none;
}

.uabb-gf-style .ginput_container_select {
	position: relative;
}

.uabb-gf-style .ginput_container_select:after {
	content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    font-size: 0.7em;
    line-height: 1;
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
    right: 0.5em;
    pointer-events: none;
    z-index: 5;
}

.gform_wrapper label.gfield_label {
	font-weight: 700;
}

.gform_wrapper li.gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.gform_wrapper li.gfield_error textarea,
.gform_wrapper div.gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.gform_wrapper div.gfield_error textarea {
	border: 1px solid #790000;
}

.gform_wrapper .gfield_error .gfield_label {
	color: #790000;
}

.gform_wrapper.gform_validation_error form .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half),
.gform_wrapper.gf_browser_chrome .gform_body,
.gform_wrapper.gform_validation_error form .gform_body div div.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half),
.gform_wrapper.gf_browser_chrome .gform_body {
	max-width: 100%!important;
}

.uabb-gf-style .gform_wrapper ul.gform_fields li.gfield:not( .gf_left_half):not(.gf_left_third):not(.gf_middle_third),
.uabb-gf-style .gform_wrapper div.gform_fields div.gfield:not( .gf_left_half):not(.gf_left_third):not(.gf_middle_third) {
	padding-right: 0;
}

.gfield_checkbox li,
.gfield_checkbox div {
	position: relative;
	padding-left: 40px;
}

input[type="radio"]+label,
input[type="checkbox"]+label {
	cursor: pointer;
}

.uabb-gf-style .gform_wrapper ul.gfield_radio li,
.uabb-gf-style .gform_wrapper ul.gfield_checkbox li,
.uabb-gf-style .gform_wrapper div.gfield_radio div,
.uabb-gf-style .gform_wrapper div.gfield_checkbox div {
	margin-bottom: 10px;
	padding-left: 0;
}

.uabb-gf-style .gform_wrapper ul.gfield_radio li label,
.uabb-gf-style .gform_wrapper ul.gfield_checkbox li label,
.uabb-gf-style .gform_wrapper div.gfield_radio div label,
.uabb-gf-style .gform_wrapper div.gfield_checkbox div label {
	display: inline-block;
	line-height: 1.2;
}

.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li,
.gform_wrapper .gfield_checkbox div,
.gform_wrapper .gfield_radio div {
	line-height: 1.2;
}

.gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
	position: inherit;
	overflow: hidden;
	padding: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
	background: none;
	box-shadow: none;
	color: #444;
}

.gform_wrapper .ginput_container_select .chosen-container-active.chosen-with-drop .chosen-single {
	box-shadow: none;
	border: inherit;
	background: inherit;
	box-shadow: none;
	border-color: inherit;
	border: inherit;
}

.gform_wrapper .chosen-container.chosen-container-single .chosen-single div {
	position: absolute;
	top: 50%;
	transform: translateY(calc(-50% - 2px));
	right: 0;
	display: block;
	width: 18px;
	height: 18px;
}

.uabb-gf-style .gform_body .ginput_container_radio div.gfield_radio div {
	display: block;
}

.gform_wrapper .description,
.gform_wrapper .gfield_description,
.gform_wrapper .gsection_description,
.gform_wrapper .instruction,
.gform_wrapper .ginput_complex.ginput_container span label {
	font-size: .813em;
}
@media (max-width: 768px) { .uabb-contact-form .uabb-inline-group {
	width: 100%;
	padding: 0;
} }.fl-node-34b8e0sxvzdg {
	width: 100%;
}

/* Form Style */
.fl-node-34b8e0sxvzdg .uabb-gf-style {

	
	padding-top: 20px;padding-bottom: 20px;padding-left: 20px;padding-right: 20px;
	

}

/* Input Fields CSS */

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper form .gform_body input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-34b8e0sxvzdg .gform_wrapper form .gform_body textarea,
.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .ginput_container select,
.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {

	padding-top: 15px;padding-bottom: 15px;padding-left: 15px;padding-right: 15px;}


.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date],
.fl-node-34b8e0sxvzdg .uabb-gf-style select,
.fl-node-34b8e0sxvzdg .uabb-gf-style textarea,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style select:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style textarea:focus,
.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single,
.fl-node-34b8e0sxvzdg .chosen-container .chosen-container-single .chosen-container-active .chosen-with-drop,
.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-active.chosen-with-drop .chosen-single,
.fl-node-34b8e0sxvzdg .gform_wrapper .chosen-container .chosen-drop {

	outline: none;

	line-height: 1.3;

	text-align: left;

	color: #000000;

	
	background: ;
}

.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style select:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style select:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date]:focus,
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style textarea:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style textarea:focus,
.fl-node-34b8e0sxvzdg .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single,
.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-active.chosen-with-drop .chosen-single {
	border-color: #bbbbbb;
}

.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .gfield_description {

			color: #000000;
	}


.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .ginput_container span label {
			color: #000000;
	}
.fl-node-34b8e0sxvzdg .uabb-gf-style form .gform_body .gfield_label,
.fl-node-34b8e0sxvzdg .uabb-gf-style form .gf_progressbar_title,
.fl-node-34b8e0sxvzdg .uabb-gf-style form .gf_page_steps {

	margin-bottom: px;

}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .ginput_container span label {

					font-family: Default;
			font-weight: default;
			}

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox li,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio li,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox div,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio div {
			text-align: left;
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gfield_radio li label,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gfield_checkbox li label,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gfield_radio div label,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gfield_checkbox div label {

			}


	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],
	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio input[type='radio'] {
		display: none;
	}

	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'] + label:before,
	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio input[type='radio'] + label:before,
	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio .gchoice_label label:before {
		content: '';
		background: #DEDEDE;
		border: 1px solid #CCCCCC;
		display: inline-block;
		vertical-align: middle;
		width: 20px;
		height: 20px;
		padding: 2px;
		margin-right: 10px;
		text-align: center;
	}

	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked + label:before {
		content: "\2714";
		font-weight: bold;
		font-size: calc(15.3846153846px - 1px );
		padding-top: 0;
		color: #3A3A3A;
	}

	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'] + label:before {
		border-radius: 0px;
	}

	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio input[type='radio']:checked + label:before,
	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio .gchoice_button.uabb-radio-active + .gchoice_label label:before {
		background: #3A3A3A;
		box-shadow: inset 0px 0px 0px 4px #DEDEDE;
	}

	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio input[type='radio'] + label:before,
	.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_body .ginput_container_radio .gfield_radio .gchoice_label label:before {
		border-radius: 50px;
	}

	

	.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single,
	.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select select {
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .uabb-gf-style .ginput_container_select:after {
		font-family: 'Font Awesome 5 Pro';
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield input::-webkit-input-placeholder{
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield input:-moz-placeholder {
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield input::-moz-placeholder {
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield input:-ms-input-placeholder {
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield textarea::-webkit-input-placeholder {
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield textarea:-moz-placeholder {
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield textarea::-moz-placeholder {
		color: #000000;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield textarea:-ms-input-placeholder {
		color: #000000;
	}



/* Button CSS */
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gform_footer {
	text-align: center;
	justify-content: center;
			margin: 0;
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=button],
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=submit],
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input[type="submit"].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {

			border-radius: 10px;
	
			background: #b20776;
		border-color: #b20776;
	
	color: #ffffff;
	
		padding-top: 15px;
		padding-bottom: 15px;
					width: 300px;
		
					min-height: 45px;
		
	
}

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gform_footer input[type=submit]:hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=button]:hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=submit]:hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"]:hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"]:hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input[type="submit"].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
					color: #ffffff;
		
				background: #000000;
		border-color: #000000;
			}


.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gform_footer input[type=submit]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=button]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=submit]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):active,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):active,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"]:active,
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):active,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input[type="submit"].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):active {
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number],
.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date],
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gfield select,
.fl-node-34b8e0sxvzdg .uabb-gf-style textarea,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gfield .ginput_container_checkbox,
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gfield .ginput_container_radio,
.gform_wrapper .ginput_container_select .chosen-container-single {
			margin-top:10px !important;
				margin-bottom:15px !important;
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style .ginput_container_textarea textarea {
	}

/* Typography CSS */

.fl-node-34b8e0sxvzdg .uabb-gf-style .uabb-gf-form-title {

	display: block;

			
		text-align: left;

		margin: 0 0 0px;
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style p.uabb-gf-form-desc {

	display: block;

			text-align: left;

		
		margin: 0 0 20px;
	}

	
	

.fl-node-34b8e0sxvzdg .uabb-gf-style input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-34b8e0sxvzdg .uabb-gf-style select,
.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
			height: auto;
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=button],
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=submit],
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="button"],
.fl-node-34b8e0sxvzdg .uabb-gf-style [type="reset"]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input[type="submit"].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	margin-right : 0;
			margin-top: 50px;
	
			margin-bottom: 15px;
	}


.fl-node-34b8e0sxvzdg .uabb-gf-style form .gform_body .gfield_label {
	display: none;

	}


	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .gfield_description {
		margin-bottom: 20px;
	}
	.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .ginput_container span label {
		display: none;
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .validation_message {

	color: #ce0000;
	font-size: 12px;

			text-transform: ;
	
	}

.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper div.validation_error {

	color: ;

	background: ;

	padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;}



	.fl-node-34b8e0sxvzdg .gform_wrapper .validation_error,
	.fl-node-34b8e0sxvzdg .gform_wrapper li.gfield.gfield_error,
	.fl-node-34b8e0sxvzdg .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
							border-top: 1										border-bottom: 1						}

.fl-node-34b8e0sxvzdg .gform_wrapper .gfield.gfield_error .gfield_label {
		margin-left: 0;
}

.fl-node-34b8e0sxvzdg .gform_wrapper .gfield.gfield_error {
	}

.fl-node-34b8e0sxvzdg .gform_wrapper .gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-34b8e0sxvzdg .gform_wrapper .gfield_error .ginput_container select,
.fl-node-34b8e0sxvzdg .gform_wrapper .gfield_error .ginput_container textarea,
.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
		}

.fl-node-34b8e0sxvzdg #gform_confirmation_message_61 {
	font-family: inherit;
	margin-top: 10px;
			color: #3c763d;
				font-size: 15px;
				text-transform: ;
	
	}

/* Typography responsive css */
	@media ( max-width: 992px ) {

		
		.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper div.validation_error {

					}

			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date],
			.fl-node-34b8e0sxvzdg .uabb-gf-style select,
			.fl-node-34b8e0sxvzdg .uabb-gf-style textarea,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style select:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style textarea:focus,
			.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
							}

		.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper form .gform_body input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
		.fl-node-34b8e0sxvzdg .gform_wrapper textarea,
		.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .ginput_container select,
		.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
					}

		.fl-node-34b8e0sxvzdg .uabb-gf-style {
					}
			}
	@media ( max-width: 768px ) {

		
		.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper div.validation_error {

					}
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number],
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date],
			.fl-node-34b8e0sxvzdg .uabb-gf-style select,
			.fl-node-34b8e0sxvzdg .uabb-gf-style textarea,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date]:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style select:focus,
			.fl-node-34b8e0sxvzdg .uabb-gf-style textarea:focus,
			.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
							}

		.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper form .gform_body input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
		.fl-node-34b8e0sxvzdg .gform_wrapper textarea,
		.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .ginput_container select,
		.fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
					}

		.fl-node-34b8e0sxvzdg .uabb-gf-style {
					}
			}
	.fl-node-34b8e0sxvzdg .uabb-gf-style input[type=tel], .fl-node-34b8e0sxvzdg .uabb-gf-style input[type=email], .fl-node-34b8e0sxvzdg .uabb-gf-style input[type=text], .fl-node-34b8e0sxvzdg .uabb-gf-style input[type=url], .fl-node-34b8e0sxvzdg .uabb-gf-style input[type=number], .fl-node-34b8e0sxvzdg .uabb-gf-style input[type=date],
    .fl-node-34b8e0sxvzdg .uabb-gf-style select, .fl-node-34b8e0sxvzdg .uabb-gf-style textarea, .fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single, .fl-node-34b8e0sxvzdg .chosen-container .chosen-container-single .chosen-container-active .chosen-with-drop, .fl-node-34b8e0sxvzdg .gform_wrapper .ginput_container_select .chosen-container-active.chosen-with-drop .chosen-single, .fl-node-34b8e0sxvzdg .gform_wrapper .chosen-container .chosen-drop {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #b20776;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-34b8e0sxvzdg .gform_wrapper .gfield .gfield_description {
	font-size: 12px;
}
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper .gform_footer input[type=submit], .fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=button], .fl-node-34b8e0sxvzdg .uabb-gf-style .gform_page .gform_page_footer input[type=submit],.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type='submit'],.fl-node-34b8e0sxvzdg .uabb-gf-style [type='button'],.fl-node-34b8e0sxvzdg .uabb-gf-style [type='reset']):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type='submit'],.fl-node-34b8e0sxvzdg .uabb-gf-style [type='button'],.fl-node-34b8e0sxvzdg .uabb-gf-style [type='reset']).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),.fl-node-34b8e0sxvzdg .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input[type='submit'].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
	font-size: 16px;
	line-height: 1.7em;
}
.fl-node-34b8e0sxvzdg .uabb-gf-style .gform_wrapper div.validation_error {
	font-size: 15px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #790000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-zv6si9gyw83l, .fl-node-zv6si9gyw83l .fl-photo {
	text-align: center;
}

.fl-node-61856220c130c {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-61856220c130c .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-61856220c130c .uabb-image .uabb-photo-img {
							width: 150px;
								}

		.fl-node-61856220c130c .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-61856220c130c .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-61856220c130c .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-61856220c130c .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
/* Align */
.fl-node-61856220c130c .infobox-center,
.fl-node-61856220c130c .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-61856220c130c .uabb-infobox-title {
	margin-top: 18px;
	margin-bottom: 100px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-61856220c130c .uabb-infobox-title-prefix {
	margin-top: 0px;
}

/* Heading Color */
.fl-node-61856220c130c h4.uabb-infobox-title,
.fl-node-61856220c130c h4.uabb-infobox-title span a,
.fl-node-61856220c130c h4.uabb-infobox-title * {
	color: #fcf835}


.fl-builder-content .fl-node-61856220c130c .uabb-infobox-text {
	margin-top: -100px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-61856220c130c .uabb-infobox-text {
	color:
	#ffffff;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-61856220c130c .uabb-imgicon-wrap {
		margin-top: 10px;
		margin-bottom: 20px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-61856220c130c .uabb-infobox-title-prefix {
			color: #ffffff;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-61856220c130c .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-61856220c130c .uabb-infobox {
		;	}

	

	.fl-node-61856220c130c .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-61856220c130c .uabb-infobox-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0px;
}
.fl-node-61856220c130c .uabb-infobox-text {
	font-weight: 100;
	font-size: 16px;
}
.fl-node-61856220c130c .uabb-infobox-title-prefix {
	font-weight: 100;
	font-size: 18px;
}

/* Start Global CSS */
/* =========================================================
   Limonade Water Tool - Consolidated Styles
   Palette: Purple #6c36a3 | Pink #b63b88 | Green #8AB514
   Yellow #FCF835 | Lemon #fefdcc | Charcoal #4c4c4c
========================================================= */

/* =========================================================
   Minimal Article Header
   Custom module class: limonade-water-header
========================================================= */

.limonade-water-header {
  max-width: 920px;
  margin: 0 auto 42px;
  padding: 50px 32px 38px;
  border-bottom: 2px solid #f4f4f4;
  background: #ffffff;
  text-align: center;
}

.limonade-water-header .uabb-infobox-title-prefix {
  margin: 0 0 14px;
  color: #6c36a3;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.limonade-water-header .uabb-infobox-title {
  max-width: 860px;
  margin: 0 auto 20px;
  color: #333333;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.limonade-water-header .uabb-infobox-text,
.limonade-water-header .uabb-infobox-text p {
  max-width: 720px;
  margin: 0 auto;
  color: #4c4c4c;
  font-size: 22px;
  line-height: 1.5;
}

.limonade-water-header .swp_social_panel {
  margin-top: 28px;
}

.limonade-water-header .swp_social_panel .swp_share_button {
  margin: 4px;
}

.limonade-water-header .swp_social_panel .swp_share_link {
  min-height: 44px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

/* =========================================================
   Featured Water-Service Tool
========================================================= */

.limonade-water-tool-feature {
  padding: 42px;
  border: 2px solid #FCF835;
  border-radius: 24px;
  background: #fefdcc;
  box-shadow: 0 18px 38px rgba(108, 54, 163, 0.14);
}

.limonade-water-tool-intro {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  max-width: 780px;
  margin: 0 auto 30px;
}

.limonade-water-tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: #ffffff;
  background: #6c36a3;
  font-size: 30px;
}

.limonade-water-tool-intro h2 {
  margin: 0 0 12px;
  color: #333333;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
}

.limonade-water-tool-intro p {
  margin: 0;
  color: #555555;
  font-size: 18px;
  line-height: 1.55;
}

.limonade-water-tool-panel {
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #dddddd;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(108, 54, 163, 0.10);
}

.limonade-water-tool-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  color: #ffffff;
  background: #6c36a3;
  font-size: 16px;
  font-weight: 800;
}

.limonade-water-tool-content {
  padding: 28px;
}

.limonade-water-tool-content .tool-title {
  margin: 0 0 6px;
  color: #333333;
  font-size: 28px;
  font-weight: 800;
}

.limonade-water-tool-content .tool-subtitle {
  margin: 0 0 20px;
  color: #555555;
  font-size: 18px;
  line-height: 1.5;
}

.limonade-water-tool-content .tool-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.limonade-water-tool-content label {
  display: grid;
  gap: 7px;
  color: #6c36a3;
  font-size: 16px;
  font-weight: 800;
}

.limonade-water-tool-content input,
.limonade-water-tool-content select {
  min-height: 46px;
  padding: 10px;
  border: 1px solid #aa72d0;
  border-radius: 6px;
  color: #333333;
  background: #ffffff;
  font: inherit;
  font-size: 16px;
}

.limonade-water-tool-content output {
  display: block;
  margin-top: 22px;
  padding: 18px;
  border-left: 6px solid #8AB514;
  border-radius: 6px;
  color: #333333;
  background: rgba(138, 181, 20, 0.12);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.limonade-water-tool-content output.no-service {
  border-color: #b63b88;
  background: rgba(182, 59, 136, 0.10);
}

/* =========================================================
   Water-Service Calendar
========================================================= */

.limonade-calendar-card {
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  background: #ffffff;
}

.limonade-calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid #eeeeee;
}

.limonade-calendar-month {
  margin: 0;
  color: #333333;
  font-size: 28px;
  font-weight: 800;
}

.limonade-calendar-detail {
  margin: 3px 0 0;
  color: #6c36a3;
  font-size: 16px;
  font-weight: 700;
}

.limonade-calendar-toggle {
  display: flex;
  gap: 8px;
}

.limonade-calendar-toggle button {
  padding: 11px 16px;
  border: 1px solid #aa72d0;
  border-radius: 999px;
  color: #6c36a3;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
}

.limonade-calendar-toggle button[aria-pressed="true"] {
  border-color: #6c36a3;
  color: #ffffff;
  background: #6c36a3;
}

.limonade-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}

.limonade-calendar-weekday,
.limonade-calendar-day {
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.limonade-calendar-weekday {
  padding: 13px 8px;
  color: #6c36a3;
  background: #fefdcc;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.limonade-calendar-day {
  min-height: 108px;
  padding: 12px;
  background: #ffffff;
}

.limonade-calendar-day.is-empty {
  background: #f9f9f9;
}

.limonade-calendar-date {
  display: block;
  color: #4c4c4c;
  font-size: 18px;
  font-weight: 800;
}

.limonade-calendar-status {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 800;
}

.limonade-calendar-status.has-service {
  color: #5e8102;
  background: rgba(138, 181, 20, 0.15);
}

.limonade-calendar-status.no-service {
  color: #a92774;
  background: rgba(182, 59, 136, 0.12);
}

.limonade-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 15px 20px;
  color: #555555;
  background: #f9f9f9;
  font-size: 16px;
}

.limonade-calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-service-dot,
.calendar-interruption-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.calendar-service-dot {
  background: #8AB514;
}

.calendar-interruption-dot {
  background: #b63b88;
}

/* =========================================================
   Concept Note / Disclaimer
========================================================= */

.disclaimer {
  max-width: 680px;
  margin: 36px auto 0;
  padding: 18px 22px;
  border: 1px solid #eeeeee;
  border-left: 5px solid #6c36a3;
  border-radius: 12px;
  color: #4c4c4c;
  background: #f9f9f9;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.disclaimer strong {
  color: #6c36a3;
  font-size: 16px;
  font-weight: 800;
}

/* =========================================================
   Responsive Adjustments
========================================================= */

@media screen and (max-width: 700px) {
  .limonade-water-header {
    margin-bottom: 30px;
    padding: 38px 20px 30px;
  }

  .limonade-water-header .uabb-infobox-title {
    font-size: 38px;
  }

  .limonade-water-header .uabb-infobox-text,
  .limonade-water-header .uabb-infobox-text p {
    font-size: 18px;
  }

  .limonade-water-tool-feature {
    padding: 28px 20px;
  }

  .limonade-water-tool-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .limonade-water-tool-content .tool-fields {
    grid-template-columns: 1fr;
  }

  .limonade-water-tool-panel-top,
  .limonade-calendar-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .limonade-calendar-day {
    min-height: 90px;
  }
}

@media screen and (max-width: 600px) {
  .disclaimer {
    margin-top: 28px;
    padding: 16px 18px;
  }
}

@media screen and (max-width: 450px) {
  .limonade-water-header .uabb-infobox-title {
    font-size: 30px;
    letter-spacing: 0;
  }

  .limonade-water-header .uabb-infobox-title-prefix,
  .limonade-water-header .uabb-infobox-text,
  .limonade-water-header .uabb-infobox-text p,
  .limonade-water-header .swp_social_panel .swp_share_link,
  .limonade-water-tool-intro p,
  .limonade-water-tool-content .tool-subtitle,
  .limonade-water-tool-content output {
    font-size: 16px;
  }

  .limonade-water-tool-intro h2 {
    font-size: 28px;
  }

  .limonade-calendar-weekday {
    padding: 8px 2px;
  }

  .limonade-calendar-day {
    min-height: 84px;
    padding: 7px;
  }

  .limonade-calendar-status {
    margin-top: 10px;
    padding: 4px 5px;
  }

  .limonade-calendar-legend {
    gap: 9px;
    padding: 12px;
  }
}


/* =========================================================
   Limonade Community Water Tool — Article Sections
========================================================= */

.limonade-ai-intro-card,
.limonade-ai-section,
.limonade-ai-compare,
.limonade-ai-cta {
  box-sizing: border-box;
}

.limonade-eyebrow {
  margin: 0 0 12px;
  color: #6c36a3;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
   Section 1 — Community Intro Card
========================================================= */

.limonade-ai-intro-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid #e7d8f3;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(108, 54, 163, 0.10);
  text-align: center;
}

.limonade-ai-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #f2eafa;
  font-size: 34px;
  line-height: 1;
}

.limonade-ai-intro-card h2 {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #242424;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.limonade-ai-intro-card > p:not(.limonade-eyebrow) {
  max-width: 710px;
  margin: 0 auto;
  color: #59636d;
  font-size: 19px;
  line-height: 1.65;
}

.limonade-ai-signal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.limonade-ai-signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #dceac4;
  border-radius: 999px;
  background: #f8fcef;
  color: #4d6904;
  font-size: 16px;
  font-weight: 700;
}

.limonade-ai-signal-row i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #8ab514;
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

/* =========================================================
   Standard Content Sections
========================================================= */

.limonade-ai-section {
  max-width: 960px;
  margin: 48px auto;
  padding: 42px;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  background: #ffffff;
}

.limonade-ai-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.limonade-ai-section-header + .limonade-ai-section-header {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid #eeeeee;
}

.limonade-ai-section-header h2,
.limonade-ai-compare h2,
.limonade-ai-cta h2 {
  margin: 0 0 12px;
  color: #242424;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
}

.limonade-ai-section-header p:not(.limonade-eyebrow),
.limonade-ai-compare-header p:not(.limonade-eyebrow) {
  max-width: 700px;
  margin: 0;
  color: #59636d;
  font-size: 18px;
  line-height: 1.6;
}

.limonade-ai-section-icon {
  display: flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 24px;
  font-weight: 800;
}

.limonade-ai-section-icon.purple {
  background: #f2eafa;
  color: #6c36a3;
}

.limonade-ai-section-icon.green {
  background: #f1f8df;
  color: #5e8102;
}

.limonade-ai-section-icon.pink {
  background: #fbeaf4;
  color: #b63b88;
}

/* =========================================================
   Service Checker
========================================================= */

.limonade-water-tool-feature {
  border-color: #e0d1ec;
  background: linear-gradient(135deg, #ffffff 0%, #fcf9ff 100%);
  box-shadow: 0 14px 36px rgba(108, 54, 163, 0.08);
}

.limonade-water-tool-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.limonade-water-tool-intro h2 {
  margin: 0 0 8px;
  color: #242424;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
}

.limonade-water-tool-intro p:not(.limonade-eyebrow) {
  margin: 0;
  color: #59636d;
  font-size: 18px;
  line-height: 1.55;
}

.limonade-water-tool-icon {
  display: flex;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #6c36a3;
  box-shadow: 0 10px 20px rgba(108, 54, 163, 0.20);
  font-size: 32px;
}

.limonade-water-tool-panel {
  overflow: hidden;
  border: 1px solid #ded2e8;
  border-radius: 14px;
  background: #ffffff;
}

.limonade-water-tool-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: #6c36a3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.limonade-water-tool-content {
  padding: 32px;
}

.tool-title {
  margin: 0 0 8px;
  color: #242424;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.tool-subtitle {
  margin: 0 0 26px;
  color: #59636d;
  font-size: 18px;
  line-height: 1.5;
}

.tool-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tool-fields label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #333333;
  font-size: 16px;
  font-weight: 800;
}

.tool-fields input,
.tool-fields select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cfc2db;
  border-radius: 8px;
  background: #ffffff;
  color: #333333;
  font-family: inherit;
  font-size: 16px;
}

.tool-fields input:focus,
.tool-fields select:focus {
  outline: 3px solid rgba(108, 54, 163, 0.18);
  border-color: #6c36a3;
}

#limo-answer {
  display: block;
  margin-top: 24px;
  padding: 18px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

/* =========================================================
   Before / After Comparison
========================================================= */

.limonade-ai-compare {
  max-width: 960px;
  margin: 48px auto;
  padding: 42px;
  border-radius: 18px;
  background: #f8f8f8;
}

.limonade-ai-compare-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.limonade-ai-compare-icon {
  display: flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f2eafa;
  color: #6c36a3;
  font-size: 28px;
  font-weight: 800;
}

.limonade-ai-example {
  padding: 28px;
  border-radius: 14px;
}

.limonade-not-clear {
  border: 1px solid #f2c8dc;
  background: #fff7fb;
}

.limonade-ai-ready {
  border: 1px solid #d5e9ad;
  background: #f8fcef;
}

.limonade-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 800;
}

.limonade-not-clear .limonade-label {
  color: #b63b88;
}

.limonade-ai-ready .limonade-label {
  color: #5e8102;
}

.limonade-ai-example p {
  margin: 0;
  color: #4c4c4c;
  font-size: 18px;
  line-height: 1.6;
}

.limonade-result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.limonade-result-list li {
  color: #4c4c4c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.limonade-ai-arrow {
  margin: 20px 0;
  color: #6c36a3;
  font-size: 34px;
  font-weight: 800;
  text-align: center;
}

/* =========================================================
   Call to Action
========================================================= */

.limonade-ai-cta {
  max-width: 960px;
  margin: 48px auto;
  padding: 54px 42px;
  border-radius: 18px;
  background: #6c36a3;
  color: #ffffff;
  text-align: center;
}

.limonade-ai-cta-eyebrow {
  margin: 0 0 12px;
  color: #d4f781;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.limonade-ai-cta h2 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
  font-size: 42px;
}

.limonade-ai-cta > p:not(.limonade-ai-cta-eyebrow) {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #f4ebfb;
  font-size: 19px;
  line-height: 1.65;
}

.limonade-ai-cta .cta-link {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid #d4f781;
  border-radius: 8px;
  background: #d4f781;
  color: #3f235f;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.limonade-ai-cta .cta-link:hover,
.limonade-ai-cta .cta-link:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: #6c36a3;
}

/* =========================================================
   Disclaimer
========================================================= */

.disclaimer {
  max-width: 860px;
  margin: 36px auto 0;
  padding: 18px 22px;
  border: 1px solid #eeeeee;
  border-left: 5px solid #6c36a3;
  border-radius: 12px;
  background: #f9f9f9;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.disclaimer strong {
  color: #6c36a3;
  font-weight: 800;
}

/* =========================================================
   Responsive
========================================================= */

@media screen and (max-width: 700px) {
  .limonade-ai-intro-card,
  .limonade-ai-section,
  .limonade-ai-compare,
  .limonade-ai-cta {
    padding: 32px 24px;
  }

  .limonade-ai-intro-card h2,
  .limonade-ai-cta h2 {
    font-size: 34px;
  }

  .limonade-ai-section-header h2,
  .limonade-ai-compare h2,
  .limonade-water-tool-intro h2 {
    font-size: 32px;
  }

  .tool-fields {
    grid-template-columns: 1fr;
  }

  .limonade-result-list {
    grid-template-columns: 1fr;
  }

  .limonade-water-tool-panel-top {
    flex-direction: column;
  }
}

@media screen and (max-width: 450px) {
  .limonade-ai-intro-card,
  .limonade-ai-section,
  .limonade-ai-compare,
  .limonade-ai-cta {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .limonade-ai-section-header,
  .limonade-ai-compare-header,
  .limonade-water-tool-intro {
    flex-direction: column;
  }

  .limonade-ai-intro-card h2,
  .limonade-ai-cta h2 {
    font-size: 30px;
  }

  .limonade-ai-section-header h2,
  .limonade-ai-compare h2,
  .limonade-water-tool-intro h2,
  .tool-title {
    font-size: 28px;
  }

  .limonade-water-tool-content {
    padding: 24px 20px;
  }

  .limonade-ai-signal-row {
    justify-content: flex-start;
  }
}

/* =========================================================
   Limonade Water Rationing Article — Blog Hero
   Image left / Content right
========================================================= */

.blog-post-hero-image,
.blog-post-hero-copy {
  box-sizing: border-box;
}


/* ---------------------------------------------------------
   Hero Image
--------------------------------------------------------- */

.blog-post-hero-image {
  width: 100%;
}

.blog-post-hero-image .fl-module-content {
  margin: 0;
}

.blog-post-hero-image .pp-photo-container,
.blog-post-hero-image .pp-photo,
.blog-post-hero-image .pp-photo-content,
.blog-post-hero-image .pp-photo-content-inner {
  width: 100%;
  height: 100%;
}

.blog-post-hero-image .pp-photo-content-inner {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(108, 54, 163, 0.12);
}

.blog-post-hero-image a {
  display: block;
  width: 100%;
}

.blog-post-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
}


/* ---------------------------------------------------------
   Hero Copy
--------------------------------------------------------- */

.blog-post-hero-copy {
  max-width: 680px;
  margin: 0 auto;
}

.blog-post-hero-copy .fl-module-content {
  margin: 0;
}

.blog-post-hero-copy .uabb-heading-wrapper {
  text-align: left;
}

.blog-post-hero-copy .uabb-heading {
  margin: 0 0 20px;
}

.blog-post-hero-copy .uabb-heading-text {
  color: #242424;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1px;
}

.blog-post-hero-copy .uabb-subheading {
  max-width: 620px;
  margin: 0;
}

.blog-post-hero-copy .uabb-subheading p {
  margin: 0;
  color: #59636d;
  font-size: 20px;
  line-height: 1.6;
}


/* ---------------------------------------------------------
   Hero Row Columns
   Uses your existing Beaver Builder row structure
--------------------------------------------------------- */

.fl-node-ym6il5b0d8po {
  display: flex;
  align-items: center;
  gap: 56px;
}

.fl-node-ym6il5b0d8po > .fl-col {
  flex: 1 1 0;
}

.fl-node-f2uylxeiam6b {
  width: 48%;
}

.fl-node-qydwkbcjme9i {
  width: 52%;
}


/* ---------------------------------------------------------
   Social Share Panel Under Hero Copy
--------------------------------------------------------- */

.fl-node-qydwkbcjme9i .swp_social_panel {
  margin-top: 28px;
}

.fl-node-qydwkbcjme9i .swp_share_button {
  margin-right: 8px;
  margin-bottom: 8px;
}


/* =========================================================
   Tablet
========================================================= */

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

  .fl-node-ym6il5b0d8po {
    gap: 36px;
  }

  .blog-post-hero-copy .uabb-heading-text {
    font-size: 42px;
  }

  .blog-post-hero-copy .uabb-subheading p {
    font-size: 18px;
  }
}


/* =========================================================
   Mobile
========================================================= */

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

  .fl-node-ym6il5b0d8po {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .fl-node-f2uylxeiam6b,
  .fl-node-qydwkbcjme9i {
    width: 100%;
  }

  .blog-post-hero-image,
  .blog-post-hero-copy {
    max-width: 100%;
  }

  .blog-post-hero-copy .uabb-heading-wrapper {
    text-align: left;
  }

  .blog-post-hero-copy .uabb-heading-text {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.5px;
  }

  .blog-post-hero-copy .uabb-subheading p {
    font-size: 18px;
    line-height: 1.55;
  }
}


/* =========================================================
   Small Mobile
========================================================= */

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

  .fl-node-ym6il5b0d8po {
    gap: 24px;
  }

  .blog-post-hero-image .pp-photo-content-inner,
  .blog-post-hero-image img {
    border-radius: 14px;
  }

  .blog-post-hero-copy .uabb-heading-text {
    font-size: 32px;
  }

  .blog-post-hero-copy .uabb-subheading p {
    font-size: 17px;
  }
}

.blog-post-hero-copy,
.blog-post-hero-copy .uabb-heading,
.blog-post-hero-copy .uabb-heading-text,
.blog-post-hero-copy .uabb-subheading,
.blog-post-hero-copy .uabb-subheading p {
  color: #ffffff;
}


/* Limonade Managed Website Design — Beaver Builder Page CSS
   Add the named classes noted in each section to the relevant BB row, column, or module.
   Do not use Beaver Builder's generated fl-node IDs in this stylesheet. */

:root {
  --lim-purple: #762ca9;
  --lim-pink: #b20776;
  --lim-yellow: #fff82b;
  --lim-lime: #99d609;
  --lim-ink: #25202b;
  --lim-muted: #625d68;
  --lim-cream: #fffef1;
}

/* HERO — row: managed-site-hero
   Choose the original photo in Row Settings > Style > Background. */
.managed-site-hero .fl-row-content-wrap {
  background-color: var(--lim-purple) !important;
  color: #fff;
  overflow: hidden;
  padding: 60px 20px !important;
  position: relative;
}
.managed-site-hero .fl-row-content-wrap::before {
  border: 56px solid rgba(180, 104, 220, .18);
  border-radius: 50%;
  content: "";
  height: 650px;
  pointer-events: none;
  position: absolute;
  right: -120px;
  top: -290px;
  width: 650px;
  z-index: 0;
}
.managed-site-hero .fl-row-content-wrap::after {
  background: linear-gradient(135deg, rgba(117, 44, 169, .68), rgba(82, 7, 130, .72));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.managed-site-hero .fl-col-group { align-items: center !important; }
.managed-site-hero .fl-col { align-self: center !important; }
.managed-site-hero .fl-row-content,
.managed-site-hero .fl-col-content,
.managed-site-hero .fl-module-content { position: relative; z-index: 1; }
.managed-site-hero .uabb-infobox-title-prefix {
  color: var(--lim-yellow) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.managed-site-hero .uabb-infobox-title {
  color: #fff !important;
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: clamp(43px, 5.5vw, 66px) !important;
  font-weight: 700 !important;
  letter-spacing: -.04em;
  line-height: 1.08 !important;
}
.managed-site-hero .uabb-infobox-text,
.managed-site-hero .uabb-infobox-text p {
  color: #fff !important;
  font-size: 19px;
  line-height: 1.55;
}
.managed-site-hero .price {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 18px 0 24px;
}
.managed-site-hero .price strong {
  color: var(--lim-yellow);
  font-size: 42px;
  letter-spacing: -.05em;
  margin-left: 8px;
}

/* Buttons */
.managed-site-hero .uabb-button,
.investment-card .uabb-button {
  background: var(--lim-pink) !important;
  border: 0 !important;
  border-radius: 6px !important;
  box-shadow: 0 3px 0 #820352;
  color: #fff !important;
  font-weight: 800 !important;
  padding: 13px 21px !important;
}
.managed-site-hero .uabb-button:hover,
.investment-card .uabb-button:hover {
  background: #8e035e !important;
  color: #fff !important;
}

/* BENEFITS — row: managed-site-benefits; heading module: strong-impression
   Benefit Info Box modules: managed-site-card */
.managed-site-benefits .fl-row-content-wrap,
.managed-site-faq .fl-row-content-wrap { background: var(--lim-cream) !important; }
.strong-impression {
  margin: 0 0 34px !important;
  max-width: 860px;
  text-align: left !important;
}
.strong-impression .uabb-infobox-title-prefix,
.managed-site-included-heading .uabb-infobox-title-prefix,
.managed-site-faq-heading .uabb-infobox-title-prefix,
.managed-site-investment-heading .uabb-infobox-title-prefix {
  color: var(--lim-pink) !important;
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .1em;
  line-height: 1.2 !important;
  margin: 0 0 13px !important;
  text-transform: uppercase;
}
.strong-impression .uabb-infobox-title,
.managed-site-included-heading .uabb-infobox-title,
.managed-site-faq-heading .uabb-infobox-title,
.managed-site-investment-heading .uabb-infobox-title {
  color: var(--lim-ink) !important;
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px) !important;
  font-weight: 700 !important;
  letter-spacing: -.04em;
  line-height: 1.08 !important;
  margin: 0 0 17px !important;
}
.strong-impression .uabb-infobox-text,
.strong-impression .uabb-infobox-text p,
.managed-site-included-heading .uabb-infobox-text,
.managed-site-included-heading .uabb-infobox-text p,
.managed-site-investment-heading .uabb-infobox-text,
.managed-site-investment-heading .uabb-infobox-text p {
  color: var(--lim-muted) !important;
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: 19px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 730px;
}
.strong-impression .uabb-infobox-title-wrap,
.strong-impression .uabb-infobox-text-wrap { text-align: left !important; }
.managed-site-card > .fl-module-content {
  background: #fff;
  border-radius: 12px;
  border-top: 5px solid var(--lim-pink);
  box-shadow: 0 8px 24px rgba(69, 26, 85, .08);
  height: 100%;
  padding: 27px;
}
.managed-site-card .uabb-infobox-title {
  color: var(--lim-ink) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
}
.managed-site-card .uabb-infobox-text,
.managed-site-card .uabb-infobox-text p { color: var(--lim-muted) !important; }

@media (min-width: 769px) {
  .managed-site-benefits .fl-col-group-nested { align-items: stretch !important; }
  .managed-site-benefits .fl-col-group-nested > .fl-col,
  .managed-site-benefits .fl-col-group-nested > .fl-col > .fl-col-content,
  .managed-site-benefits .managed-site-card,
  .managed-site-benefits .managed-site-card > .fl-module-content {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
  }
}

/* WHAT'S INCLUDED — row: managed-site-included; heading: managed-site-included-heading
   Apply checklist to the UL in the text field. */
.managed-site-included .fl-col-group { align-items: center !important; }
.managed-site-included-heading {
  margin: 0 auto 34px !important;
  max-width: 700px;
}
.checklist {
  list-style: none !important;
  margin: 27px 0 0 !important;
  padding: 0 !important;
}
.checklist li {
  border-bottom: 1px solid #eadced;
  color: var(--lim-muted);
  font-size: 17px;
  font-weight: 600;
  padding: 13px 0 13px 38px;
  position: relative;
}
.checklist li::before {
  background: var(--lim-lime);
  border-radius: 50%;
  color: #fff;
  content: "✓";
  font-size: 15px;
  font-weight: 900;
  height: 24px;
  left: 0;
  line-height: 24px;
  position: absolute;
  text-align: center;
  top: 12px;
  width: 24px;
}

/* Browser illustration in the What's Included right column.
   The HTML module does NOT need lim-browser-message. */
.lim-browser-mockup {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(42, 0, 70, .35);
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 450px;
  min-height: 342px;
  padding: 16px;
  position: relative;
  transform: rotate(2deg);
}
.lim-browser-mockup * { box-sizing: border-box; }
.lim-browser-dots {
  align-items: center;
  display: flex;
  gap: 6px;
  height: 27px;
  padding-left: 7px;
}
.lim-browser-dots span {
  background: var(--lim-pink);
  border-radius: 50%;
  display: block;
  height: 8px;
  width: 8px;
}
.lim-browser-dots span:nth-child(2) { background: var(--lim-yellow); }
.lim-browser-dots span:nth-child(3) { background: var(--lim-lime); }
.lim-browser-page {
  background: #fdf9ff;
  border: 1px solid #ead7f2;
  border-radius: 11px;
  min-height: 282px;
  padding: 33px 26px;
}
.lim-browser-label {
  color: var(--lim-purple);
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  margin-bottom: 36px;
}
.lim-browser-headline {
  color: var(--lim-ink);
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: clamp(29px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.lim-browser-lines { margin-top: 18px; }
.lim-browser-lines span {
  background: #d8c7e3;
  border-radius: 5px;
  display: block;
  height: 10px;
  margin-bottom: 9px;
  width: 88%;
}
.lim-browser-lines span:nth-child(2) { width: 58%; }
.lim-browser-lines span:nth-child(3) { display: none; }
.lim-browser-button {
  background: var(--lim-pink);
  border-radius: 4px;
  display: block;
  height: 33px;
  margin-top: 21px;
  width: 115px;
}

/* PROCESS — row: managed-site-process; heading: dark-purple-heading
   Add managed-site-steps-grid to the INNER row holding the four cards.
   Add managed-site-step to each of its four columns; Info Boxes: limonade-process-step. */
.managed-site-process .fl-row-content-wrap {
  background: var(--lim-purple) !important;
  color: #fff;
}
.dark-purple-heading { margin-bottom: 34px !important; }
.dark-purple-heading .uabb-infobox-title-prefix {
  color: var(--lim-yellow) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .1em;
  line-height: 1.2 !important;
  margin: 0 0 13px !important;
  text-transform: uppercase;
}
.dark-purple-heading .uabb-infobox-title {
  color: #fff !important;
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px) !important;
  font-weight: 700 !important;
  letter-spacing: -.04em;
  line-height: 1.08 !important;
  margin: 0 0 17px !important;
}
.dark-purple-heading .uabb-infobox-text,
.dark-purple-heading .uabb-infobox-text p {
  color: #eee2f6 !important;
  font-size: 19px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}
.fl-col-group.managed-site-steps-grid {
  align-items: stretch !important;
  display: grid !important;
  gap: 18px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  margin: 0 !important;
  width: 100% !important;
}
.fl-col-group.managed-site-steps-grid > .managed-site-step {
  display: flex !important;
  float: none !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 !important;
  width: auto !important;
}
.fl-col-group.managed-site-steps-grid > .managed-site-step > .fl-col-content,
.fl-col-group.managed-site-steps-grid .limonade-process-step,
.fl-col-group.managed-site-steps-grid .limonade-process-step > .fl-module-content,
.fl-col-group.managed-site-steps-grid .uabb-module-content,
.fl-col-group.managed-site-steps-grid .uabb-infobox,
.fl-col-group.managed-site-steps-grid .uabb-infobox-left-right-wrap,
.fl-col-group.managed-site-steps-grid .uabb-infobox-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
}
.fl-col-group.managed-site-steps-grid > .managed-site-step > .fl-col-content {
  border: 1px solid rgba(255, 255, 255, .30) !important;
  border-radius: 10px;
  padding: 25px 20px;
}
.fl-col-group.managed-site-steps-grid .limonade-process-step > .fl-module-content { padding: 0 !important; }
.fl-col-group.managed-site-steps-grid .uabb-infobox-title-prefix {
  color: var(--lim-yellow) !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin: 0 0 6px !important;
}
.fl-col-group.managed-site-steps-grid .uabb-infobox-title {
  color: #fff !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin: 0 0 15px !important;
}
.fl-col-group.managed-site-steps-grid .uabb-infobox-text,
.fl-col-group.managed-site-steps-grid .uabb-infobox-text p {
  color: #eee2f6 !important;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Beaver Builder compatibility: when the custom class can only be applied to
   the outer column, this reaches its nested four-column row. */
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group {
  align-items: stretch !important;
  display: grid !important;
  gap: 18px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  margin: 0 !important;
  width: 100% !important;
}
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col {
  display: flex !important;
  float: none !important;
  grid-row: 1 !important;
  margin: 0 !important;
  max-width: none !important;
  min-width: 0 !important;
  padding: 0 !important;
  width: auto !important;
}
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col:nth-child(1) { grid-column: 1 !important; }
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col:nth-child(2) { grid-column: 2 !important; }
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col:nth-child(3) { grid-column: 3 !important; }
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col:nth-child(4) { grid-column: 4 !important; }
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col > .fl-col-content,
.fl-col.managed-site-steps-grid .fl-module-info-box,
.fl-col.managed-site-steps-grid .fl-module-info-box > .fl-module-content,
.fl-col.managed-site-steps-grid .uabb-module-content,
.fl-col.managed-site-steps-grid .uabb-infobox,
.fl-col.managed-site-steps-grid .uabb-infobox-left-right-wrap,
.fl-col.managed-site-steps-grid .uabb-infobox-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
}
.fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col > .fl-col-content {
  border: 1px solid rgba(255, 255, 255, .30) !important;
  border-radius: 10px;
  padding: 25px 20px;
}
.fl-col.managed-site-steps-grid .fl-module-info-box > .fl-module-content { padding: 0 !important; }
.fl-col.managed-site-steps-grid .uabb-infobox-title-prefix {
  color: var(--lim-yellow) !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  margin: 0 0 6px !important;
}
.fl-col.managed-site-steps-grid .uabb-infobox-title {
  color: #fff !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin: 0 0 15px !important;
}
.fl-col.managed-site-steps-grid .uabb-infobox-text,
.fl-col.managed-site-steps-grid .uabb-infobox-text p,
.fl-col.managed-site-steps-grid .uabb-infobox-text article {
  color: #eee2f6 !important;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* INVESTMENT — heading Info Box: managed-site-investment-heading
   Pricing Info Box: investment-card */
.managed-site-investment-heading {
  margin: 0 auto 40px !important;
  max-width: 840px;
  text-align: center;
}
.managed-site-investment-heading .uabb-infobox-title {
  font-size: clamp(38px, 4.8vw, 56px) !important;
  font-weight: 800 !important;
  letter-spacing: -.05em;
  margin-bottom: 17px !important;
}
.managed-site-investment-heading .uabb-infobox-text,
.managed-site-investment-heading .uabb-infobox-text p {
  margin-left: auto !important;
  margin-right: auto !important;
}
.investment-card {
  margin: 0 auto !important;
  max-width: 810px;
}
.investment-card > .fl-module-content {
  background: #fff;
  border: 2px solid #e5bffd;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(86, 13, 122, .12);
  padding: 38px 34px 34px !important;
  text-align: center;
}
.investment-card .uabb-infobox-title-prefix {
  color: var(--lim-ink) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
}
.investment-card .uabb-infobox-title {
  color: var(--lim-purple) !important;
  font-size: clamp(48px, 5vw, 62px) !important;
  font-weight: 800 !important;
  letter-spacing: -.06em;
  line-height: 1 !important;
  margin: 0 0 20px !important;
}
.investment-card .uabb-infobox-text,
.investment-card .uabb-infobox-text p {
  color: var(--lim-muted) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  margin: 0 auto !important;
  max-width: 575px;
}
.investment-card .uabb-infobox-button { margin-top: 25px; }

/* FAQ — row: managed-site-faq; heading: managed-site-faq-heading
   FAQ Info Box modules: managed-site-faq-item */
.managed-site-faq-heading { margin-bottom: 34px !important; }
.managed-site-faq-item > .fl-module-content {
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  height: 100% !important;
  padding: 28px 24px !important;
}
.managed-site-faq-item .uabb-infobox-title {
  color: var(--lim-ink) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  margin: 0 0 12px !important;
}
.managed-site-faq-item .uabb-infobox-text,
.managed-site-faq-item .uabb-infobox-text p {
  color: var(--lim-muted) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* FINAL CTA — row: managed-site-final-cta */
.managed-site-final-cta .fl-row-content-wrap {
  background: linear-gradient(135deg, #7e25b0, #520782) !important;
  color: #fff;
  text-align: center;
}
.managed-site-final-cta h2,
.managed-site-final-cta h3,
.managed-site-final-cta p { color: #fff !important; }
.managed-site-final-cta .uabb-button {
  background: var(--lim-yellow) !important;
  border: 0 !important;
  border-radius: 6px !important;
  box-shadow: 0 3px 0 #beb600;
  color: var(--lim-ink) !important;
  font-weight: 800 !important;
  padding: 13px 21px !important;
}

/* Final conversion area — heading Info Box: call-to-action-bottom
   Form module: dark-purple-form-cta (Gravity Form 61). */
.call-to-action-bottom {
  margin: 0 auto 22px !important;
  max-width: 760px;
  text-align: center;
}
.call-to-action-bottom .uabb-infobox-title {
  color: #fff !important;
  font-family: "azo-sans-web", Arial, sans-serif;
  font-size: clamp(32px, 3.6vw, 46px) !important;
  font-weight: 800 !important;
  letter-spacing: -.04em;
  line-height: 1.1 !important;
  margin: 0 !important;
}
.call-to-action-bottom .uabb-infobox-text,
.call-to-action-bottom .uabb-infobox-text p {
  color: #f1e4f8 !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  margin: 14px auto 0 !important;
  max-width: 580px;
}
.dark-purple-form-cta #gform_submit_button_61,
.dark-purple-form-cta .gform_button,
.dark-purple-form-cta input[type="submit"] {
  appearance: none !important;
  background: var(--lim-yellow) !important;
  border: 0 !important;
  border-radius: 7px !important;
  box-shadow: 0 4px 0 #c6b900, 0 10px 22px rgba(0, 0, 0, .22) !important;
  color: var(--lim-ink) !important;
  cursor: pointer;
  display: inline-block !important;
  font-family: "azo-sans-web", Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
  line-height: 1.2 !important;
  min-width: 230px;
  padding: 16px 28px !important;
  text-align: center !important;
  text-decoration: none !important;
  text-shadow: none !important;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.dark-purple-form-cta #gform_submit_button_61:hover,
.dark-purple-form-cta .gform_button:hover,
.dark-purple-form-cta input[type="submit"]:hover {
  background: #fff !important;
  box-shadow: 0 4px 0 #d8cc00, 0 14px 28px rgba(0, 0, 0, .28) !important;
  color: var(--lim-ink) !important;
  transform: translateY(-2px);
}
.dark-purple-form-cta #gform_submit_button_61:active,
.dark-purple-form-cta .gform_button:active,
.dark-purple-form-cta input[type="submit"]:active {
  box-shadow: 0 1px 0 #c6b900 !important;
  transform: translateY(2px);
}
.dark-purple-form-cta #gform_submit_button_61:focus-visible,
.dark-purple-form-cta .gform_button:focus-visible,
.dark-purple-form-cta input[type="submit"]:focus-visible {
  outline: 3px solid #fff !important;
  outline-offset: 4px;
}

/* CLIENT WEBSITE SHOWCASE — HTML module */
.lim-client-showcase {
  background: rgba(255, 255, 255, .97);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(42, 0, 70, .35);
  color: var(--lim-ink);
  margin: 0 auto;
  max-width: 460px;
  overflow: hidden;
  transform: rotate(2deg);
}
.lim-browser-bar { align-items: center; display: flex; gap: 6px; height: 43px; padding: 0 18px; }
.lim-browser-bar i { background: var(--lim-pink); border-radius: 50%; display: block; height: 8px; width: 8px; }
.lim-browser-bar i:nth-child(2) { background: var(--lim-yellow); }
.lim-browser-bar i:nth-child(3) { background: var(--lim-lime); }
.lim-browser-bar span { color: var(--lim-purple); font-size: 11px; font-weight: 800; letter-spacing: .04em; margin-left: 7px; text-transform: uppercase; }
.lim-showcase-stage { aspect-ratio: var(--lim-image-ratio, 16 / 10); background: #f7effb; border: 1px solid #ead7f2; border-radius: 11px; margin: 0 16px; overflow: hidden; position: relative; }
.lim-work { animation: lim-work-cycle 40s infinite ease-in-out; inset: 0; margin: 0; opacity: 0; position: absolute; transform: scale(1.04); }
.lim-work img { display: block; height: 100%; object-fit: contain; object-position: center; width: 100%; }
.lim-work-1 { animation-delay: 0s; }
.lim-work-2 { animation-delay: 5s; }
.lim-work-3 { animation-delay: 10s; }
.lim-work-4 { animation-delay: 15s; }
.lim-work-5 { animation-delay: 20s; }
.lim-work-6 { animation-delay: 25s; }
.lim-work-7 { animation-delay: 30s; }
.lim-work-8 { animation-delay: 35s; }
.lim-showcase-caption { align-items: center; color: var(--lim-purple); display: flex; font-size: 13px; font-weight: 800; gap: 8px; padding: 15px 18px 17px; }
.lim-pulse { animation: lim-pulse 2s infinite; background: var(--lim-lime); border-radius: 50%; height: 9px; width: 9px; }
@keyframes lim-work-cycle {
  0%, 3% { opacity: 0; transform: scale(1.04); }
  6%, 15% { opacity: 1; transform: scale(1); }
  18%, 100% { opacity: 0; transform: scale(.98); }
}
@keyframes lim-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(153, 214, 9, .55); }
  50% { box-shadow: 0 0 0 7px rgba(153, 214, 9, 0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .managed-site-hero .fl-row-content-wrap { padding: 45px 20px !important; }
  .managed-site-hero .uabb-infobox-title { font-size: 43px !important; }
  .managed-site-included-heading,
  .managed-site-faq-heading { text-align: center; }
  .fl-col-group.managed-site-steps-grid { gap: 16px !important; grid-template-columns: 1fr !important; }
  .fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group {
    gap: 16px !important;
    grid-template-columns: 1fr !important;
  }
  .fl-col.managed-site-steps-grid > .fl-col-content > .fl-col-group > .fl-col {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .lim-browser-mockup { max-width: 400px; min-height: 292px; transform: none; }
  .lim-browser-page { min-height: 232px; padding: 29px 23px; }
  .lim-browser-label { font-size: 14px; margin-bottom: 29px; }
  .lim-browser-headline { font-size: 30px; }
  .investment-card > .fl-module-content { padding: 28px 20px !important; }
  .dark-purple-form-cta #gform_submit_button_61,
  .dark-purple-form-cta .gform_button,
  .dark-purple-form-cta input[type="submit"] {
    min-width: 100%;
    width: 100% !important;
  }
  .managed-site-card > .fl-module-content,
  .managed-site-faq-item > .fl-module-content { margin-bottom: 16px; }
  .lim-client-showcase { max-width: 400px; transform: none; }
  #gform_wrapper_61 { padding: 23px 18px; }
  #gform_wrapper_61 .gform_button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .lim-work,
  .lim-pulse { animation: none; }
  .lim-work-1 { opacity: 1; transform: none; }
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

/* 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 {
		
	
	
	
		text-transform: none;
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
			
	
	
		text-transform: none;
	}


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


																											
					
					
					
																																					
					
					
					
																
					
					
					
																																																			
					
					
					
																							
					
					
					
																							
					
					
					
																							
					
					
					
																							
					
					
					
																
					
					
					
																							
					
					
					
												
        
        			.fl-node-fmj6c84gn5yu .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-l1svq756ucyg .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-v9sij5dzgbl1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-02adj48tn5s9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gf3dakl9qv8p .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-rlib6x1yzvdn .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-39lxo0d5fe7i .fl-row-content {
				min-width: 0px;
			}
		