/**
 * 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], .fl-ds-block):before,
.fl-module:not([data-accepts], .fl-ds-block):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], .fl-ds-block):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;
	cursor: pointer;
}
.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;
}
.fl-row-fixed-width {
	max-width: 1200px;
}
.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;
}
:root {
	--fl-global-red: #E51934;
	--fl-global-blue: #262E55;
	--fl-global-white: #FFFFFF;
	--fl-global-orange: #E51934;
	--fl-global-text-font-family: Montserrat, sans-serif;
	--fl-global-text-font-weight: 400;
	--fl-global-text-font-size: 16px;
	--fl-global-h1-font-family: Poppins, sans-serif;
	--fl-global-h1-font-weight: 700;
	--fl-global-h1-font-size: 80px;
	--fl-global-h1-font-size-responsive: 40px;
	--fl-global-h2-color: var(--fl-global-blue);
	--fl-global-h2-font-family: Poppins, sans-serif;
	--fl-global-h2-font-weight: 700;
	--fl-global-h2-font-size: 45px;
	--fl-global-h2-font-size-medium: 35px;
	--fl-global-h2-font-size-responsive: 25px;
	--fl-global-h3-font-family: Poppins, sans-serif;
	--fl-global-h3-font-weight: 700;
	--fl-global-h3-font-size: 30px;
	--fl-global-h3-font-size-medium: 30px;
	--fl-global-h4-color: var(--fl-global-white);
	--fl-global-h4-font-family: Poppins, sans-serif;
	--fl-global-h4-font-weight: 700;
	--fl-global-h4-font-size: 25px;
	--fl-global-h4-font-size-medium: 25px;
	--fl-global-h4-font-size-responsive: 18px;
	--fl-global-h5-color: var(--fl-global-orange);
	--fl-global-h5-font-family: Poppins, sans-serif;
	--fl-global-h5-font-weight: 700;
	--fl-global-h5-font-size: 20px;
	--fl-global-h5-font-size-medium: 25px;
	--fl-global-h5-font-size-responsive: 20px;
	--fl-global-h6-color: var(--fl-global-red);
	--fl-global-h6-font-family: Poppins, sans-serif;
	--fl-global-h6-font-weight: 700;
	--fl-global-h6-font-size: 15px;
	--fl-global-link-color: var(--fl-global-blue);
	--fl-global-link-hover-color: var(--fl-global-orange);
	--fl-global-link-font-family: Montserrat, sans-serif;
	--fl-global-link-font-weight: 500;
	--fl-global-button-color: var(--fl-global-blue);
	--fl-global-button-hover-color: var(--fl-global-white);
	--fl-global-button-background: #ffffff;
	--fl-global-button-hover-background: var(--fl-global-blue);
	--fl-global-button-font-family: Montserrat, sans-serif;
	--fl-global-button-font-weight: 700;
	--fl-global-button-font-size: 15px;
	--fl-global-button-border-style: solid;
	--fl-global-button-background-clip: border-box;
	--fl-global-button-border-color: #efefef;
	--fl-global-button-border-top-width: 1px;
	--fl-global-button-border-right-width: 1px;
	--fl-global-button-border-bottom-width: 1px;
	--fl-global-button-border-left-width: 1px;
	--fl-global-button-border-top-left-radius: 5px;
	--fl-global-button-border-top-right-radius: 5px;
	--fl-global-button-border-bottom-left-radius: 5px;
	--fl-global-button-border-bottom-right-radius: 5px;
}
.fl-builder-content:not(.fl-builder-empty) {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}
.fl-builder-content h1 {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 80px;
}
.fl-builder-content h2, .fl-builder-content h2 a, .fl-builder-content h2 span {
	color: var(--fl-global-blue);
}
.fl-builder-content h2 {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 45px;
}
.fl-builder-content h3 {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 30px;
}
.fl-builder-content h4, .fl-builder-content h4 a, .fl-builder-content h4 span {
	color: var(--fl-global-white);
}
.fl-builder-content h4 {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 25px;
}
.fl-builder-content h5, .fl-builder-content h5 a, .fl-builder-content h5 span {
	color: var(--fl-global-orange);
}
.fl-builder-content h5 {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 20px;
}
.fl-builder-content h6, .fl-builder-content h6 a, .fl-builder-content h6 span {
	color: var(--fl-global-red);
}
.fl-builder-content h6 {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 15px;
}
.fl-builder-content a:not(.fl-builder-submenu-link) {
	color: var(--fl-global-blue);
	font-family: Montserrat, sans-serif;
	font-weight: 500;
}
.fl-builder-content a:not(.fl-builder-submenu-link):hover {
	color: var(--fl-global-orange);
}
.fl-builder-content button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:not(.fl-content-ui-button) *, .fl-builder-content input[type=button] *, .fl-builder-content input[type=submit] *, .fl-builder-content .fl-button:is(a, button) *, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-builder-content button:visited *, .fl-builder-content input[type=button]:visited *, .fl-builder-content input[type=submit]:visited *, .fl-builder-content a.fl-button:visited *, .fl-page .fl-builder-content button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:not(.fl-content-ui-button) *, .fl-page .fl-builder-content input[type=button] *, .fl-page .fl-builder-content input[type=submit] *, .fl-page .fl-builder-content .fl-button:is(a, button) *, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:visited *, .fl-page .fl-builder-content input[type=button]:visited *, .fl-page .fl-builder-content input[type=submit]:visited *, .fl-page .fl-builder-content a.fl-button:visited * {
	color: var(--fl-global-blue);
}
.fl-builder-content button:not(.fl-content-ui-button):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content .fl-button:is(a, button):hover, .fl-builder-content button:not(.fl-content-ui-button):hover *, .fl-builder-content input[type=button]:hover *, .fl-builder-content input[type=submit]:hover *, .fl-builder-content .fl-button:is(a, button):hover *, .fl-page .fl-builder-content button:not(.fl-content-ui-button):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content .fl-button:is(a, button):hover, .fl-page .fl-builder-content button:not(.fl-content-ui-button):hover *, .fl-page .fl-builder-content input[type=button]:hover *, .fl-page .fl-builder-content input[type=submit]:hover *, .fl-page .fl-builder-content .fl-button:is(a, button):hover * {
	color: var(--fl-global-white);
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	background-color: #ffffff;
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content .fl-button:is(a, button):hover {
	background-color: var(--fl-global-blue);
}
.fl-builder-content button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 15px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #efefef;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-builder-content button:not(.fl-content-ui-button):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content .fl-button:is(a, button):hover, .fl-page .fl-builder-content button:not(.fl-content-ui-button):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content .fl-button:is(a, button):hover {
	border-color: #ffffff;
}
:where(.fl-builder-content, .fl-page) :is(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus {
	outline-width: px;
	outline-offset: px;
}
@media(max-width: 992px) {
	.fl-builder-content h2 {
		font-size: 35px;
	}
	.fl-builder-content h3 {
		font-size: 30px;
	}
	.fl-builder-content h4 {
		font-size: 25px;
	}
	.fl-builder-content h5 {
		font-size: 25px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content h1 {
		font-size: 40px;
	}
	.fl-builder-content h2 {
		font-size: 25px;
	}
	.fl-builder-content h4 {
		font-size: 18px;
	}
	.fl-builder-content h5 {
		font-size: 20px;
	}
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

	.fl-builder-edit .fl-node-qegpfbdam49l.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-qegpfbdam49l.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-qegpfbdam49l.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-qegpfbdam49l.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-qegpfbdam49l > .fl-row-content-wrap {
	background-color: #f7f9fb;
	background-image: url(https://popesnz.co.nz/wp-content/uploads/2025/05/pope-scoial-preview-800.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-qegpfbdam49l > .fl-row-content-wrap:after {
	background-image: linear-gradient(97deg, rgba(12,28,71,0.83) 50%, rgba(255,255,255,0.35) 100%);
}
.fl-node-qegpfbdam49l.fl-row-default-height > .fl-row-content-wrap, .fl-node-qegpfbdam49l.fl-row-full-height > .fl-row-content-wrap, .fl-node-qegpfbdam49l.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
.fl-node-qegpfbdam49l .fl-row-content {
	max-width: 1400px;
}
@media(max-width: 1200px) {
	.fl-node-qegpfbdam49l > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-qegpfbdam49l > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-qegpfbdam49l > .fl-row-content-wrap {
		background-position: center center;
	}
	.fl-node-qegpfbdam49l.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 0px;
	}
}
 .fl-node-qegpfbdam49l > .fl-row-content-wrap {
	padding-top:80px;
	padding-right:20px;
	padding-bottom:80px;
	padding-left:20px;
}
@media ( max-width: 992px ) {
 .fl-node-qegpfbdam49l.fl-row > .fl-row-content-wrap {
	padding-top:50px;
	padding-bottom:50px;
}
}
@media ( max-width: 768px ) {
 .fl-node-qegpfbdam49l.fl-row > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:20px;
	padding-bottom:50px;
	padding-left:20px;
}
}






.fl-node-ynx4m7l9s3q8.fl-row-default-height > .fl-row-content-wrap, .fl-node-ynx4m7l9s3q8.fl-row-full-height > .fl-row-content-wrap, .fl-node-ynx4m7l9s3q8.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-ynx4m7l9s3q8 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-ynx4m7l9s3q8.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ynx4m7l9s3q8.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:020px;
}
}






.fl-node-mup1n5wr9ysg.fl-row-default-height > .fl-row-content-wrap, .fl-node-mup1n5wr9ysg.fl-row-full-height > .fl-row-content-wrap, .fl-node-mup1n5wr9ysg.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
@media ( max-width: 768px ) {
 .fl-node-mup1n5wr9ysg.fl-row > .fl-row-content-wrap {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-mup1n5wr9ysg > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-mup1n5wr9ysg.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-mup1n5wr9ysg.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:20px;
	padding-bottom:40px;
	padding-left:20px;
}
}






.fl-node-jbr9nh2lezw1.fl-row-default-height > .fl-row-content-wrap, .fl-node-jbr9nh2lezw1.fl-row-full-height > .fl-row-content-wrap, .fl-node-jbr9nh2lezw1.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
@media ( max-width: 768px ) {
 .fl-node-jbr9nh2lezw1.fl-row > .fl-row-content-wrap {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-jbr9nh2lezw1 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-jbr9nh2lezw1.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-jbr9nh2lezw1.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:20px;
}
}






.fl-node-lf6s3e8cv2ry.fl-row-default-height > .fl-row-content-wrap, .fl-node-lf6s3e8cv2ry.fl-row-full-height > .fl-row-content-wrap, .fl-node-lf6s3e8cv2ry.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-lf6s3e8cv2ry > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:20px;
	padding-bottom:50px;
	padding-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-lf6s3e8cv2ry.fl-row > .fl-row-content-wrap {
	padding-right:20px;
	padding-left:0px;
}
}






.fl-node-ivkfwy7q9j2p {
	color: var(--fl-global-white);
}
:where(.fl-builder-content .fl-node-ivkfwy7q9j2p *:not(input):not(textarea):not(select):not(a):not(.fl-menu-mobile-toggle)) {
	color: inherit;
}
.fl-builder-content .fl-node-ivkfwy7q9j2p a {
	color: var(--fl-global-white);
}
.fl-builder-content .fl-node-ivkfwy7q9j2p :where(.fl-row-content-wrap) a:hover {
	color: var(--fl-global-white);
}
.fl-builder-content .fl-node-ivkfwy7q9j2p h1, .fl-builder-content .fl-node-ivkfwy7q9j2p h2, .fl-builder-content .fl-node-ivkfwy7q9j2p h3, .fl-builder-content .fl-node-ivkfwy7q9j2p h4, .fl-builder-content .fl-node-ivkfwy7q9j2p h5, .fl-builder-content .fl-node-ivkfwy7q9j2p h6, .fl-builder-content .fl-node-ivkfwy7q9j2p h1 a, .fl-builder-content .fl-node-ivkfwy7q9j2p h2 a, .fl-builder-content .fl-node-ivkfwy7q9j2p h3 a, .fl-builder-content .fl-node-ivkfwy7q9j2p h4 a, .fl-builder-content .fl-node-ivkfwy7q9j2p h5 a, .fl-builder-content .fl-node-ivkfwy7q9j2p h6 a {
	color: var(--fl-global-white);
	color: var(--fl-global-orange);
}
.fl-node-ivkfwy7q9j2p > .fl-row-content-wrap {
	background-color: var(--fl-global-blue);
}
.fl-node-ivkfwy7q9j2p.fl-row-default-height > .fl-row-content-wrap, .fl-node-ivkfwy7q9j2p.fl-row-full-height > .fl-row-content-wrap, .fl-node-ivkfwy7q9j2p.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-ivkfwy7q9j2p > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-ivkfwy7q9j2p.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ivkfwy7q9j2p.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:20px;
	padding-bottom:40px;
	padding-left:20px;
}
}






.fl-node-8nd6xsozhqba.fl-row-default-height > .fl-row-content-wrap, .fl-node-8nd6xsozhqba.fl-row-full-height > .fl-row-content-wrap, .fl-node-8nd6xsozhqba.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-8nd6xsozhqba > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-8nd6xsozhqba.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-8nd6xsozhqba.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}






.fl-node-eirmkuo48c9d {
	color: #ffffff;
}
:where(.fl-builder-content .fl-node-eirmkuo48c9d *:not(input):not(textarea):not(select):not(a):not(.fl-menu-mobile-toggle)) {
	color: inherit;
}
.fl-builder-content .fl-node-eirmkuo48c9d a {
	color: #ffffff;
}
.fl-builder-content .fl-node-eirmkuo48c9d :where(.fl-row-content-wrap) a:hover {
	color: #ffffff;
}
.fl-builder-content .fl-node-eirmkuo48c9d h1, .fl-builder-content .fl-node-eirmkuo48c9d h2, .fl-builder-content .fl-node-eirmkuo48c9d h3, .fl-builder-content .fl-node-eirmkuo48c9d h4, .fl-builder-content .fl-node-eirmkuo48c9d h5, .fl-builder-content .fl-node-eirmkuo48c9d h6, .fl-builder-content .fl-node-eirmkuo48c9d h1 a, .fl-builder-content .fl-node-eirmkuo48c9d h2 a, .fl-builder-content .fl-node-eirmkuo48c9d h3 a, .fl-builder-content .fl-node-eirmkuo48c9d h4 a, .fl-builder-content .fl-node-eirmkuo48c9d h5 a, .fl-builder-content .fl-node-eirmkuo48c9d h6 a {
	color: #ffffff;
}
.fl-node-eirmkuo48c9d > .fl-row-content-wrap {
	background-color: var(--fl-global-blue);
}
.fl-node-eirmkuo48c9d.fl-row-default-height > .fl-row-content-wrap, .fl-node-eirmkuo48c9d.fl-row-full-height > .fl-row-content-wrap, .fl-node-eirmkuo48c9d.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-eirmkuo48c9d > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-eirmkuo48c9d.fl-row > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-eirmkuo48c9d.fl-row > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
 .fl-node-eirmkuo48c9d > .fl-row-content-wrap {
	padding-top:30px;
	padding-right:60px;
	padding-bottom:30px;
	padding-left:60px;
}
@media ( max-width: 992px ) {
 .fl-node-eirmkuo48c9d.fl-row > .fl-row-content-wrap {
	padding-top:30px;
	padding-right:30px;
	padding-bottom:30px;
	padding-left:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-eirmkuo48c9d.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}




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




.fl-node-dvigo4k1x0sb {
	width: 60%;
}
.fl-node-dvigo4k1x0sb > .fl-col-content {
	background-image: linear-gradient(270deg, #f6f7f8 0%, rgba(255,255,255,0) 15%);
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-dvigo4k1x0sb {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-dvigo4k1x0sb {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-dvigo4k1x0sb > .fl-col-content {
	margin-top:8%;
	margin-bottom:8%;
}
@media ( max-width: 992px ) {
 .fl-node-dvigo4k1x0sb.fl-col > .fl-col-content {
	margin-top:0px;
}
}
 .fl-node-dvigo4k1x0sb > .fl-col-content {
	padding-top:7%;
	padding-right:7%;
	padding-bottom:7%;
	padding-left:7%;
}
@media ( max-width: 992px ) {
 .fl-node-dvigo4k1x0sb.fl-col > .fl-col-content {
	padding-top:30px;
	padding-right:20px;
	padding-bottom:30px;
	padding-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-dvigo4k1x0sb.fl-col > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}




.fl-node-57piud94vynq {
	width: 50%;
}
.fl-node-57piud94vynq > .fl-col-content {
	background-image: url(https://popesnz.co.nz/wp-content/uploads/2024/12/Des-Pope-2.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-57piud94vynq {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-builder-content .fl-node-57piud94vynq > .fl-col-content {
		min-height: 600px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-57piud94vynq > .fl-col-content {
		min-height: 330px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-57piud94vynq.fl-col > .fl-col-content {
	padding-top:0%;
	padding-right:0%;
	padding-bottom:0%;
	padding-left:0%;
}
}




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




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




.fl-node-a5sm2uypfc4h {
	width: 40%;
}
.fl-node-a5sm2uypfc4h > .fl-col-content {
	background-image: url(https://popesnz.co.nz/wp-content/uploads/2025/01/Papersacks-Equipment-49-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-a5sm2uypfc4h {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-builder-content .fl-node-a5sm2uypfc4h > .fl-col-content {
		min-height: 600px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-a5sm2uypfc4h {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-a5sm2uypfc4h > .fl-col-content {
		min-height: 330px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-a5sm2uypfc4h.fl-col > .fl-col-content {
	padding-top:32%;
	padding-right:32%;
	padding-bottom:32%;
	padding-left:32%;
}
}




.fl-node-s9uqi2gwkb7a {
	width: 50%;
}
.fl-node-s9uqi2gwkb7a > .fl-col-content {
	background-image: linear-gradient(90deg, #f6f7f8 0%, rgba(255,255,255,0) 15%);
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-s9uqi2gwkb7a {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-s9uqi2gwkb7a {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-s9uqi2gwkb7a > .fl-col-content {
	margin-top:8%;
	margin-bottom:8%;
}
@media ( max-width: 992px ) {
 .fl-node-s9uqi2gwkb7a.fl-col > .fl-col-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
 .fl-node-s9uqi2gwkb7a > .fl-col-content {
	padding-top:7%;
	padding-right:7%;
	padding-bottom:7%;
	padding-left:7%;
}
@media ( max-width: 992px ) {
 .fl-node-s9uqi2gwkb7a.fl-col > .fl-col-content {
	padding-top:30px;
	padding-right:20px;
	padding-bottom:30px;
	padding-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-s9uqi2gwkb7a.fl-col > .fl-col-content {
	padding-top:20px;
	padding-right:15px;
	padding-bottom:20px;
	padding-left:15px;
}
}




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




.fl-node-pms6whnfaj9t {
	width: 100%;
}
.fl-node-pms6whnfaj9t > .fl-col-content {
	border-color: rgba(255,255,255,0.5);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-a8jx9kbhfoms {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-a8jx9kbhfoms {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-ghwde8m0qyv5 {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ghwde8m0qyv5 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-ghwde8m0qyv5.fl-col > .fl-col-content {
	padding-top:0px;
	padding-bottom:0px;
}
}




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




.fl-node-iqp7mnfh541y {
	width: 100%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-7lahurwnytvg h1.fl-heading a,
.fl-row .fl-col .fl-node-7lahurwnytvg h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-7lahurwnytvg h1.fl-heading .fl-heading-text *,
.fl-node-7lahurwnytvg h1.fl-heading .fl-heading-text {
	color: var(--fl-global-white);
}
.fl-node-7lahurwnytvg.fl-module-heading .fl-heading {
	line-height: 1.2em;
	text-align: left;
}
 .fl-node-7lahurwnytvg > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-7lahurwnytvg.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-row .fl-col .fl-node-gw5pnhtmzkrc h2.fl-heading a,
.fl-row .fl-col .fl-node-gw5pnhtmzkrc h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-gw5pnhtmzkrc h2.fl-heading .fl-heading-text *,
.fl-node-gw5pnhtmzkrc h2.fl-heading .fl-heading-text {
	color: var(--fl-global-blue);
}
.fl-node-gw5pnhtmzkrc.fl-module-heading .fl-heading {
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-gw5pnhtmzkrc.fl-module-heading .fl-heading {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-node-gw5pnhtmzkrc.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-gw5pnhtmzkrc > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-gw5pnhtmzkrc.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-row .fl-col .fl-node-yuxzvt1oh6cr h2.fl-heading a,
.fl-row .fl-col .fl-node-yuxzvt1oh6cr h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-yuxzvt1oh6cr h2.fl-heading .fl-heading-text *,
.fl-node-yuxzvt1oh6cr h2.fl-heading .fl-heading-text {
	color: var(--fl-global-blue);
}
.fl-node-yuxzvt1oh6cr.fl-module-heading .fl-heading {
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-yuxzvt1oh6cr.fl-module-heading .fl-heading {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-node-yuxzvt1oh6cr.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-yuxzvt1oh6cr > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-yuxzvt1oh6cr.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-module-box:before,
.fl-module-box:after {
	position: absolute;
}
a.fl-module-box {
	text-decoration: none;
}

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

/* Prevent sliders and carousels from blowing out flex layouts */
:where(.fl-module-box:has(
    [class*="slide"],
    [class*="carousel"],
    [class*="swiper"]
)) {
    min-width: 0;
}
.fl-builder-content-3033 .fl-node-90nbmoj2vgkf {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
}
:where( .fl-builder-content-3033 .fl-node-90nbmoj2vgkf > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	width: 100%;
	max-width: 33.33%;
}
 .fl-node-90nbmoj2vgkf.fl-module-box {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-3033 .fl-node-xj2pldv4hza3 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	max-width: 100%;
}
:where( .fl-builder-content-3033 .fl-node-xj2pldv4hza3 > :not( .fl-block-overlay, .fl-drop-target ) ) {
	width: 100%;
	max-width: 32.33%;
}
@media(max-width: 992px) {
	.fl-builder-content-3033 .fl-node-xj2pldv4hza3 {
		flex-wrap: wrap;
		gap: 24px;
	}
	:where( .fl-builder-content-3033 .fl-node-xj2pldv4hza3 > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
		max-width: 48%;
	}
}
@media(max-width: 768px) {
	:where( .fl-builder-content-3033 .fl-node-xj2pldv4hza3 > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
		max-width: 100%;
	}
}
.fl-builder-edit .uabb-flip-box-wrap {
	pointer-events: none;
}

.uabb-active-live-preview .uabb-flip-box-wrap {
	pointer-events: auto;
}

.uabb-face {
	opacity: 0;
}
.uabb-hover .uabb-front {
    opacity: 0 !important;
}

.uabb-flip-box-wrap {
	display: block;
	text-align: center;
	position: relative;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-o-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
}

.uabb-flip-box-wrap .uabb-flip-box {
	cursor: pointer;
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	height: 100%;
	position: relative;
	display: block;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.uabb-flip-box-wrap .uabb-back,
.uabb-flip-box-wrap .uabb-front {
	padding: 0;
	height: 100%;
	margin-bottom: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-duration: 800ms;
	-moz-transition-duration: 800ms;
	-o-transition-duration: 800ms;
	-ms-transition-duration: 800ms;
	transition-duration: 800ms;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.uabb-flip-box-wrap .uabb-front {
	z-index: 9;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.uabb-flip-box-wrap .uabb-front * {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.uabb-flip-box-wrap .uabb-back {
	position: absolute;
	top: 0;
	z-index: -1;
}

.uabb-flip-box-wrap .uabb-flip-box .uabb-face-text-title,
.uabb-flip-box-wrap .uabb-flip-box .uabb-back-text-title {
	display: block;
}

.uabb-flip-box-wrap .uabb-flip-box .uabb-icon i {
	display: inline-block;
}

.uabb-flip-box-wrap .flip_link {
	display: block;
	position: relative;
}

.uabb-flip-box-wrap .flip_link a {
	display: inline-block;
	margin: 10px auto 0;
	padding: .3em .6em;
	text-decoration: none;
	cursor: pointer;
}

.uabb-flip-box-wrap .flip_link a:active,
.uabb-flip-box-wrap .flip_link a:hover,
.uabb-flip-box-wrap .flip_link a:visited {
	text-decoration: none;
}

.uabb-custom-height .uabb-face {
	height: 100%;
}

.uabb-flip-box-wrap .ifb-auto-height .uabb-face .ifb-desc-back,
.uabb-flip-box-wrap .uabb-custom-height .uabb-face .ifb-desc-back {
	max-height: 45%;
	max-height: -webkit-calc(100% - 55px);
	max-height: -moz-calc(100% - 55px);
	max-height: calc(100% - 55px);
	position: relative;
	overflow: hidden;
}

.uabb-flip-box-wrap .uabb-jq-height .uabb-back p {
	max-height: 100%;
	overflow: visible;
	display: block;
}

.uabb-flip-box-wrap .uabb-jq-height .uabb-back {
	display: block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	bottom: 0;
}

.uabb-flip-box-wrap .vertical_flip_bottom .uabb-hover .uabb-back,
.uabb-flip-box-wrap .vertical_flip_top .uabb-hover .uabb-back {
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	-o-transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.uabb-flip-box-wrap .vertical_flip_bottom .uabb-back,
.uabb-flip-box-wrap .vertical_flip_top .uabb-hover .uabb-front {
	-webkit-transform: rotateX(-180deg);
	-moz-transform: rotateX(-180deg);
	-ms-transform: rotateX(-180deg);
	-o-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.uabb-flip-box-wrap .flip_bottom .uabb-back,
.uabb-flip-box-wrap .flip_bottom .uabb-front,
.uabb-flip-box-wrap .flip_left .uabb-back,
.uabb-flip-box-wrap .flip_left .uabb-front,
.uabb-flip-box-wrap .flip_right .uabb-back,
.uabb-flip-box-wrap .flip_right .uabb-front,
.uabb-flip-box-wrap .flip_top .uabb-back,
.uabb-flip-box-wrap .flip_top .uabb-front {
	-webkit-transition: 1000ms;
	-moz-transition: 1000ms;
	-o-transition: 1000ms;
	-ms-transition: 1000ms;
	transition: 1000ms;
}

.uabb-flip-box-wrap .flip_bottom .uabb-hover .uabb-back,
.uabb-flip-box-wrap .flip_left .uabb-hover .uabb-back,
.uabb-flip-box-wrap .flip_right .uabb-hover .uabb-back,
.uabb-flip-box-wrap .flip_top .uabb-hover .uabb-back {
	opacity: 1;
	z-index: 1;
}

.flip_left .uabb-back {
	-moz-transform-origin: 0;
	-ms-transform-origin: 0;
	-o-transform-origin: 0;
	-webkit-transform-origin: 0;
	transform-origin: 0;
	-webkit-transform: rotatey(-270deg);
	-moz-transform: rotatey(-270deg);
	-ms-transform: rotatey(-270deg);
	-o-transform: rotatey(-270deg);
	transform: rotatey(-270deg);
	-webkit-backface-visibility: visible;
	-moz-backface-visibility: visible;
	-o-backface-visibility: visible;
	backface-visibility: visible;
}

.flip_right .uabb-back {
	-webkit-transform-origin: 100%;
	-moz-transform-origin: 100%;
	-ms-transform-origin: 100%;
	-o-transform-origin: 100%;
	transform-origin: 100%;
	-webkit-transform: rotatey(270deg);
	-moz-transform: rotatey(270deg);
	-ms-transform: rotatey(270deg);
	-o-transform: rotatey(270deg);
	transform: rotatey(270deg);
	-webkit-backface-visibility: visible;
	-moz-backface-visibility: visible;
	-o-backface-visibility: visible;
	backface-visibility: visible;
}

.flip_top .uabb-back {
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: rotatex(270deg);
	-moz-transform: rotatex(270deg);
	-ms-transform: rotatex(270deg);
	-o-transform: rotatex(270deg);
	transform: rotatex(270deg);
	-webkit-backface-visibility: visible;
	-moz-backface-visibility: visible;
	-o-backface-visibility: visible;
	backface-visibility: visible;
}

.flip_top .uabb-hover .uabb-back {
	-moz-transform: rotatex(0deg);
	-ms-transform: rotatex(0deg);
	-o-transform: rotatex(0deg);
	-webkit-transform: rotatex(0deg);
	transform: rotatex(0deg);
}

.flip_bottom .uabb-back {
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-transform: rotatex(-270deg);
	-moz-transform: rotatex(-270deg);
	-ms-transform: rotatex(-270deg);
	-o-transform: rotatex(-270deg);
	transform: rotatex(-270deg);
	-webkit-backface-visibility: visible;
	-moz-backface-visibility: visible;
	-o-backface-visibility: visible;
	backface-visibility: visible;
}

.flip_bottom .uabb-hover .uabb-back {
	-webkit-transform: rotatex(0deg);
	-moz-transform: rotatex(0deg);
	-ms-transform: rotatex(0deg);
	-o-transform: rotatex(0deg);
	transform: rotatex(0deg);
}

.horizontal_door_flip .h_door.ifb-multiple-front,
.reverse_horizontal_door_flip .rh_door.ifb-multiple-back,
.reverse_vertical_door_flip .rv_door.ifb-multiple-back,
.vertical_door_flip .v_door.ifb-multiple-front {
	-webkit-transition: 1000ms;
	-moz-transition: 1000ms;
	-o-transition: 1000ms;
	transition: 1000ms;
}

.vertical_door_flip .v_door.ifb-multiple-front {
	position: absolute;
	width: 50%;
	top: 0;
	bottom: 0;
	overflow: hidden;
	opacity: 1;
	z-index: 1;
}

.vertical_door_flip .v_door.ifb-multiple-front .uabb-front {
	width: 200%;
	position: relative;
}

.vertical_door_flip .v_door.ifb-multiple-front.uabb-front-2 .uabb-front {
	right: 100%;
}

.vertical_door_flip .uabb-hover .v_door.uabb-front-1 {
	-webkit-transform: rotatey(-270deg);
	-moz-transform: rotatey(-270deg);
	-ms-transform: rotatey(-270deg);
	-o-transform: rotatey(-270deg);
	transform: rotatey(-270deg);
}

.vertical_door_flip .v_door.uabb-front-1 {
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.vertical_door_flip .uabb-hover .v_door.uabb-front-2 {
	-webkit-transform: rotatey(270deg);
	-moz-transform: rotatey(270deg);
	-ms-transform: rotatey(270deg);
	-o-transform: rotatey(270deg);
	transform: rotatey(270deg);
}

.vertical_door_flip .v_door.ifb-multiple-front.uabb-front-2 {
	right: 0;
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	-o-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.uabb-flip-box-wrap:hover .uabb-back,
.uabb-flip-box-wrap .flip_bottom .uabb-front,
.uabb-flip-box-wrap .flip_left .uabb-front,
.uabb-flip-box-wrap .flip_right .uabb-front,
.uabb-flip-box-wrap .flip_top .uabb-front,
.uabb-flip-box-wrap .vertical_door_flip .uabb-hover .uabb-back {
	z-index: 1;
}

.uabb-flip-box-wrap .uabb-back .uabb-back-flip-box-section-content,
.uabb-flip-box-wrap .ifb-auto-height .uabb-face {
	overflow: hidden;
}

.uabb-flip-box-wrap .uabb-flip-box-section-content *,
.uabb-flip-box-wrap .uabb-back .uabb-back-flip-box-section-content * {
	margin: 0;
}

.uabb-flip-box-wrap .horizontal_flip_left .uabb-front,
.uabb-flip-box-wrap .horizontal_flip_left .uabb-hover .uabb-back,
.uabb-flip-box-wrap .horizontal_flip_right .uabb-front,
.uabb-flip-box-wrap .horizontal_flip_right .uabb-hover .uabb-back {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.uabb-flip-box-wrap .horizontal_flip_left .uabb-back,
.uabb-flip-box-wrap .horizontal_flip_right .uabb-hover .uabb-front {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.uabb-flip-box-wrap .horizontal_flip_left .uabb-hover .uabb-front,
.uabb-flip-box-wrap .horizontal_flip_right .uabb-back {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.uabb-flip-box-wrap .vertical_flip_top .uabb-back,
.uabb-flip-box-wrap .vertical_flip_bottom .uabb-hover .uabb-front {
	-webkit-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	-o-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.uabb-flip-box-wrap .vertical_flip_top .uabb-front,
.uabb-flip-box-wrap .vertical_flip_bottom .uabb-front {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	-o-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.uabb-flip-box-wrap .flip_bottom .uabb-back,
.uabb-flip-box-wrap .flip_left .uabb-back,
.uabb-flip-box-wrap .flip_right .uabb-back,
.uabb-flip-box-wrap .flip_top .uabb-back,
.vertical_door_flip .uabb-hover .v_door.ifb-multiple-front {
	opacity: .5;
	z-index: -9;
}

.uabb-flip-box-wrap .flip_bottom .uabb-hover .uabb-front,
.uabb-flip-box-wrap .flip_left .uabb-hover .uabb-front,
.uabb-flip-box-wrap .flip_right .uabb-hover .uabb-front,
.uabb-flip-box-wrap .flip_top .uabb-hover .uabb-front,
.uabb-flip-box-wrap .vertical_door_flip .uabb-back {
	z-index: -9;
}

.flip_left .uabb-hover .uabb-back,
.flip_right .uabb-hover .uabb-back {
	-webkit-transform: rotatey(0deg);
	-moz-transform: rotatey(0deg);
	-ms-transform: rotatey(0deg);
	-o-transform: rotatey(0deg);
	transform: rotatey(0deg);
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.vertical_door_flip .ifb-multiple-front.v_door {
		width: 50.2%;
	}
}

.reverse_vertical_door_flip .rv_door.ifb-multiple-back {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	overflow: hidden;
	opacity: .5;
	z-index: -9;
}

.uabb-flip-box-wrap .reverse_vertical_door_flip .uabb-front {
	z-index: 1;
}

.reverse_vertical_door_flip .uabb-hover .rv_door.ifb-multiple-back {
	z-index: 1;
	opacity: 1;
}

.uabb-flip-box-wrap .reverse_vertical_door_flip .uabb-hover .uabb-front {
	z-index: -9;
}

.reverse_vertical_door_flip .rv_door.ifb-multiple-back .uabb-back {
	width: 200%;
}

.reverse_vertical_door_flip .rv_door.ifb-multiple-back.uabb-back-2 .uabb-back {
	right: 0;
	left: -100%;
}

.reverse_vertical_door_flip .rv_door.ifb-multiple-back.uabb-back-1 {
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-transform: rotatey(-270deg);
	-moz-transform: rotatey(-270deg);
	-ms-transform: rotatey(-270deg);
	-o-transform: rotatey(-270deg);
	transform: rotatey(-270deg);
}

.reverse_vertical_door_flip .rv_door.ifb-multiple-back.uabb-back-2 {
	right: 0;
	left: 50%;
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	-o-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transform: rotatey(270deg);
	-moz-transform: rotatey(270deg);
	-ms-transform: rotatey(270deg);
	-o-transform: rotatey(270deg);
	transform: rotatey(270deg);
}

.reverse_vertical_door_flip .uabb-hover .rv_door.ifb-multiple-back.uabb-back-1,
.reverse_vertical_door_flip .uabb-hover .rv_door.ifb-multiple-back.uabb-back-2 {
	-webkit-transform: rotatey(0deg);
	-moz-transform: rotatey(0deg);
	-ms-transform: rotatey(0deg);
	-o-transform: rotatey(0deg);
	transform: rotatey(0deg);
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.reverse_vertical_door_flip .uabb-hover .rv_door.ifb-multiple-back {
		visibility: visible;
	}
	.reverse_vertical_door_flip .rv_door.ifb-multiple-back {
		visibility: hidden;
	}
}

.horizontal_door_flip .h_door.ifb-multiple-front {
	position: absolute;
	height: 50%;
	width: 100%;
	z-index: 1;
	opacity: 1;
	overflow: hidden;
}

.horizontal_door_flip .uabb-hover .h_door.ifb-multiple-front {
	z-index: -9;
	opacity: .5;
}

.horizontal_door_flip .h_door.ifb-multiple-front.uabb-front-2 .uabb-front {
	bottom: 100%;
}

.horizontal_door_flip .uabb-hover .h_door.uabb-front-1 {
	-webkit-transform: rotatex(270deg);
	-moz-transform: rotatex(270deg);
	-ms-transform: rotatex(270deg);
	-o-transform: rotatex(270deg);
	transform: rotatex(270deg);
}

.horizontal_door_flip .h_door.uabb-front-1 {
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	-o-transform-origin: 100% 0;
	transform-origin: 100% 0;
	top: 0;
}

.horizontal_door_flip .uabb-hover .h_door.uabb-front-2 {
	-webkit-transform: rotatex(-270deg);
	-moz-transform: rotatex(-270deg);
	-ms-transform: rotatex(-270deg);
	-o-transform: rotatex(-270deg);
	transform: rotatex(-270deg);
}

.horizontal_door_flip .h_door.ifb-multiple-front.uabb-front-2 {
	bottom: 0;
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	transform-origin: 0 100%;
	top: 50%;
}

.reverse_horizontal_door_flip .rh_door.ifb-multiple-back {
	position: absolute;
	height: 50%;
	width: 100%;
	overflow: hidden;
	z-index: -9;
	opacity: .5;
}

.reverse_horizontal_door_flip .uabb-hover .rh_door.ifb-multiple-back {
	z-index: 1;
	opacity: 1;
}

.reverse_horizontal_door_flip .rh_door.ifb-multiple-back.uabb-back-1 .uabb-back {
	border-bottom: none!important;
}

.reverse_horizontal_door_flip .rh_door.ifb-multiple-back.uabb-back-2 .uabb-back {
	top: -100%;
}

.reverse_horizontal_door_flip .rh_door.ifb-multiple-back.uabb-back-1 {
	top: 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	-o-transform-origin: 100% 0;
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transform: rotatex(270deg);
	-moz-transform: rotatex(270deg);
	-ms-transform: rotatex(270deg);
	-o-transform: rotatex(270deg);
	transform: rotatex(270deg);
}

.reverse_horizontal_door_flip .rh_door.ifb-multiple-back.uabb-back-2 {
	top: 50%;
	-moz-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-transform: rotatex(-270deg);
	-moz-transform: rotatex(-270deg);
	-ms-transform: rotatex(-270deg);
	-o-transform: rotatex(-270deg);
	transform: rotatex(-270deg);
}

.reverse_horizontal_door_flip .uabb-hover .rh_door.ifb-multiple-back.uabb-back-1,
.reverse_horizontal_door_flip .uabb-hover .rh_door.ifb-multiple-back.uabb-back-2,
.reverse_horizontal_door_flip .uabb-hover .rh_door.ifb-multiple-back.uabb-back-2 .flip_link {
	-webkit-transform: rotatex(0deg);
	-moz-transform: rotatex(0deg);
	-ms-transform: rotatex(0deg);
	-o-transform: rotatex(0deg);
	transform: rotatex(0deg);
}

.reverse_horizontal_door_flip .rh_door.ifb-multiple-back.uabb-back-2 .flip_link {
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-transform: rotatex(270deg);
	-moz-transform: rotatex(270deg);
	-ms-transform: rotatex(270deg);
	-o-transform: rotatex(270deg);
	transform: rotatex(270deg);
}

.uabb-flip-box-wrap .horizontal_door_flip .uabb-back,
.uabb-flip-box-wrap .reverse_horizontal_door_flip .uabb-hover .uabb-front {
	z-index: -9;
}

.uabb-flip-box-wrap .horizontal_door_flip .uabb-hover .uabb-back,
.uabb-flip-box-wrap .reverse_horizontal_door_flip .uabb-front {
	z-index: 1;
}

.horizontal_door_flip .h_door.ifb-multiple-front .uabb-front,
.reverse_horizontal_door_flip .rh_door.ifb-multiple-back .uabb-back {
	position: relative;
	height: 200%;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.reverse_horizontal_door_flip .uabb-hover .rh_door.ifb-multiple-back {
		visibility: visible;
	}
	.reverse_horizontal_door_flip .rh_door.ifb-multiple-back {
		visibility: hidden;
	}
}

.style_9 .new_style_9 {
	position: absolute;
	width: 50%;
	height: 100%;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: 800ms;
	-moz-transition: 800ms;
	-o-transition: 800ms;
	-ms-transition: 800ms;
	transition: 800ms;
}

.style_9 .new_style_9.ifb-multiple-back .uabb-back,
.style_9 .new_style_9.ifb-multiple-front .uabb-front {
	width: 200%;
	position: relative;
}

.style_9 .new_style_9.ifb-multiple-back,
.style_9 .new_style_9.ifb-multiple-front {
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

.style_9 .ifb-door-right-open .new_style_9.ifb-multiple-back,
.style_9 .new_style_9.ifb-multiple-front {
	z-index: 20;
}

.style_9 .ifb-door-right-open .new_style_9.ifb-multiple-front,
.style_9 .new_style_9.ifb-multiple-back {
	z-index: 10;
}

.style_9 .new_style_9.ifb-multiple-front.uabb-front-2 {
	right: 0;
	-webkit-transform: rotatey(0deg);
	-o-transform: rotatey(0deg);
	-moz-transform: rotatey(0deg);
	-ms-transform: rotatey(0deg);
	transform: rotatey(0deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	-o-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.style_9 .new_style_9.ifb-multiple-back.uabb-back-1 {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-o-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.style_9 .new_style_9.ifb-multiple-back.uabb-back-2 {
	right: 0;
}

.style_9 .ifb-door-hover .new_style_9.ifb-multiple-front.uabb-front-2 {
	-webkit-transform: rotateY(-40deg);
	-moz-transform: rotateY(-40deg);
	-o-transform: rotateY(-40deg);
	-ms-transform: rotateY(-40deg);
	transform: rotateY(-40deg);
}

.style_9 .ifb-door-hover .new_style_9.ifb-multiple-back.uabb-back-1 {
	-webkit-transform: rotateY(140deg);
	-moz-transform: rotateY(140deg);
	-o-transform: rotateY(140deg);
	-ms-transform: rotateY(140deg);
	transform: rotateY(140deg);
}

.style_9 .ifb-door-right-open .new_style_9.ifb-multiple-front.uabb-front-2 {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.style_9 .ifb-door-right-open.ifb-door-hover .new_style_9.ifb-multiple-front.uabb-front-2 {
	-webkit-transform: rotateY(-140deg);
	-moz-transform: rotateY(-140deg);
	-o-transform: rotateY(-140deg);
	-ms-transform: rotateY(-140deg);
	transform: rotateY(-140deg);
}

.style_9 .ifb-door-right-open .new_style_9.ifb-multiple-back.uabb-back-1 {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
}

.style_9 .ifb-door-right-open.ifb-door-hover .new_style_9.ifb-multiple-back.uabb-back-1 {
	-webkit-transform: rotateY(40deg);
	-moz-transform: rotateY(40deg);
	-o-transform: rotateY(40deg);
	-ms-transform: rotateY(40deg);
	transform: rotateY(40deg);
}

.uabb-flip-box-wrap .uabb-back,
.uabb-flip-box-wrap .uabb-front {
	display: block;
	width: 100%;
}

.uabb-flip-box-section {
	display: block;
	position: relative;
	top: 0;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.flip-ifb-auto-height .uabb-flip-box-section,
.uabb-flip-custom-height .uabb-flip-box-section {
	top: 0;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.uabb-flip-box-section.uabb-flip-box-section-vertical-middle {
	vertical-align: middle!important;
	top: 50%;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

.flip-ifb-auto-height .uabb-front .uabb-flip-box-section.uabb-flip-box-section-vertical-middle {
	top: 0!important;
	-webkit-transform: none!important;
	-moz-transform: none!important;
	transform: none!important;
}

.uabb-flip-box-section.ifb_disable_middle {
	top: 0!important;
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
}

.uabb-flip-box-wrap .flip_bottom .uabb-back,
.uabb-flip-box-wrap .flip_left .uabb-back,
.uabb-flip-box-wrap .flip_right .uabb-back,
.uabb-flip-box-wrap .flip_top .uabb-back,
.reverse_horizontal_door_flip .rh_door.ifb-multiple-back {
	z-index: -4;
}

.flip-ifb-auto-height .uabb-flip-box .h_door .uabb-front,
.flip-ifb-auto-height .uabb-flip-box .v_door .uabb-front,
.flip-ifb-auto-height .uabb-flip-box .new_style_9.uabb-front-1,
.flip-ifb-auto-height .uabb-flip-box .new_style_9.uabb-front-2 {
	height: auto;
}

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

.internet-explorer11 .uabb-module-content > .uabb-flip-box {
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	perspective: 1000px;
	-ms-transform: perspective(1000px);
	-moz-transform: perspective(1000px);
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
}

.internet-explorer11 .uabb-module-content .uabb-flip-box-outter {
	-webkit-transition: 750ms;
	-webkit-transform-style: preserve-3d;
	-ms-transition: 750ms;
	-moz-transition: 750ms;
	-moz-transform: perspective(1000px);
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transition: 750ms;
	transform-style: preserve-3d;
}

.internet-explorer11 .uabb-flip-box-wrap .uabb-front {
	z-index: 0;
}

.style_9 .new_style_9.ifb-multiple-front.uabb-front-2 .uabb-front,
.style_9 .new_style_9.ifb-multiple-back.uabb-back-2 .uabb-back {
	right: 100%;
}
	.fl-node-1wnzlj82yu7o .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-1wnzlj82yu7o .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/01/Edmond_Pope-1.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-1wnzlj82yu7o .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-1wnzlj82yu7o .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-1wnzlj82yu7o .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-1wnzlj82yu7o .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-1wnzlj82yu7o .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-1wnzlj82yu7o .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-1wnzlj82yu7o .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-1wnzlj82yu7o .uabb-back .uabb-back-text-title {
	color: var(--fl-global-white);margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-1wnzlj82yu7o .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-1wnzlj82yu7o .uabb-flip-box-section {
					}

		
			}
	.fl-node-1wnzlj82yu7o .uabb-front {
	border-style: none;
	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;
	box-shadow: 0px 0px 100px 0px rgba(12, 5, 0, 0.11);;
}
.fl-node-1wnzlj82yu7o .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-1wnzlj82yu7o .uabb-front .uabb-text-editor {
	font-weight: 700;
}
.fl-node-uzbgw3m89trn.fl-module-heading .fl-heading {
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-uzbgw3m89trn.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-uzbgw3m89trn.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-uzbgw3m89trn > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-uzbgw3m89trn.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-row .fl-col .fl-node-rwim1z5ubp3x h2.fl-heading a,
.fl-row .fl-col .fl-node-rwim1z5ubp3x h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-rwim1z5ubp3x h2.fl-heading .fl-heading-text *,
.fl-node-rwim1z5ubp3x h2.fl-heading .fl-heading-text {
	color: var(--fl-global-blue);
}
.fl-node-rwim1z5ubp3x.fl-module-heading .fl-heading {
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-rwim1z5ubp3x.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-rwim1z5ubp3x.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-rwim1z5ubp3x > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
.fl-node-ib6tj7p3yrvn.fl-module-heading .fl-heading {
	text-align: center;
}
@media ( max-width: 768px ) {
 .fl-node-ib6tj7p3yrvn.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
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-hpzle0w24n71 {
	width: 100%;
}
.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-hpzle0w24n71 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-hpzle0w24n71 .uabb-image .uabb-photo-img {
							width: 130px;
								}

		.fl-node-hpzle0w24n71 .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-hpzle0w24n71 h5.uabb-infobox-title,
.fl-node-hpzle0w24n71 h5.uabb-infobox-title span a,
.fl-node-hpzle0w24n71 h5.uabb-infobox-title * {
	color: var(--fl-global-red)}


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

/* Description Color */


/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-hpzle0w24n71 .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-hpzle0w24n71 .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-hpzle0w24n71 .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}

.fl-node-gsod0kzixrlm {
	width: 100%;
}
.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-gsod0kzixrlm .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-gsod0kzixrlm .uabb-image .uabb-photo-img {
							width: 130px;
								}

		.fl-node-gsod0kzixrlm .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-gsod0kzixrlm h5.uabb-infobox-title,
.fl-node-gsod0kzixrlm h5.uabb-infobox-title span a,
.fl-node-gsod0kzixrlm h5.uabb-infobox-title * {
	color: var(--fl-global-red)}


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

/* Description Color */


/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-gsod0kzixrlm .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-gsod0kzixrlm .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-gsod0kzixrlm .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}

.fl-node-e2qd5j1t4zna {
	width: 100%;
}
.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-e2qd5j1t4zna .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-e2qd5j1t4zna .uabb-image .uabb-photo-img {
							width: 130px;
								}

		.fl-node-e2qd5j1t4zna .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-e2qd5j1t4zna h5.uabb-infobox-title,
.fl-node-e2qd5j1t4zna h5.uabb-infobox-title span a,
.fl-node-e2qd5j1t4zna h5.uabb-infobox-title * {
	color: var(--fl-global-red)}


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

/* Description Color */


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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-e2qd5j1t4zna .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-e2qd5j1t4zna .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-builder-content-3033 .fl-node-g0fiuyj6k8np {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-wcd65ji10hzy .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-wcd65ji10hzy .fl-module-content .fl-rich-text * {
		color: var(--fl-global-white);
	}
	.fl-builder-content .fl-node-wcd65ji10hzy .fl-rich-text, .fl-builder-content .fl-node-wcd65ji10hzy .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-align: left;
}
 .fl-node-wcd65ji10hzy > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ex61jorcn8ga .fl-rich-text, .fl-builder-content .fl-node-ex61jorcn8ga .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-ex61jorcn8ga > .fl-module-content {
	margin-bottom:5px;
}
@media ( max-width: 768px ) {
 .fl-node-ex61jorcn8ga.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-builder-content .fl-node-0t6h1kfimqxe .fl-rich-text, .fl-builder-content .fl-node-0t6h1kfimqxe .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-0t6h1kfimqxe .fl-rich-text, .fl-builder-content .fl-node-0t6h1kfimqxe .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
@media ( max-width: 768px ) {
 .fl-node-0t6h1kfimqxe.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

	.fl-node-ftqj8p3lygiu .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-ftqj8p3lygiu .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/01/Craig_Elkington_2018-scaled-2.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-ftqj8p3lygiu .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-ftqj8p3lygiu .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-ftqj8p3lygiu .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-ftqj8p3lygiu .uabb-front .uabb-face-text-title {
	color: var(--fl-global-white);margin-top: 0;margin-bottom: 12px;}


.fl-node-ftqj8p3lygiu .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-ftqj8p3lygiu .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-ftqj8p3lygiu .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-ftqj8p3lygiu .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-ftqj8p3lygiu .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-ftqj8p3lygiu .uabb-flip-box-section {
					}

		
			}
	.fl-node-ftqj8p3lygiu .uabb-front {
	border-style: none;
	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;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-ftqj8p3lygiu .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-ftqj8p3lygiu .uabb-front .uabb-text-editor {
	font-weight: 700;
}
.fl-node-ftqj8p3lygiu .uabb-front .uabb-face-text-title {
	font-weight: 700;
}
.fl-builder-content .fl-node-dlzybh5oi3je .fl-rich-text, .fl-builder-content .fl-node-dlzybh5oi3je .fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-dlzybh5oi3je .fl-rich-text, .fl-builder-content .fl-node-dlzybh5oi3je .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-dlzybh5oi3je > .fl-module-content {
	margin-bottom:5px;
}
@media ( max-width: 768px ) {
 .fl-node-dlzybh5oi3je.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}
.uabb-timeline-wrapper,
.uabb-timeline-connector {
    position: relative;
}
.uabb-timeline-wrapper .uabb-timeline-module a {
    text-decoration: none;
}
.uabb-timeline-module {
    position: relative;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.uabb-timeline-main #infscr-loading {
    left: 0;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
    height: 150px;
}
.rtl .uabb-timeline-main #infscr-loading,
.rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-left .uabb-timeline-arrow,
.rtl .uabb-timeline-vertical .uabb-day-left .uabb-timeline-arrow:after
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-left .uabb-timeline-arrow:after {
    right: 0;
}
.uabb-timeline-node .page-numbers,
#infscr-loading div,
.uabb-timeline--center .uabb-timeline-date-hide {
    display: none;
}
.uabb-timeline-main #infscr-loading img {
    margin-top: 10px;
    width: 100%;
    max-width: 150px;
}
.uabb-timeline-heading {
    margin-bottom: 10px;
}
.inner-date-new p,
.uabb-date-inner .inner-date-new p {
    margin-bottom: 0;
}
.uabb-timeline__line {
    background-color: #eee;
}
.uabb-timeline__line__inner {
    width: 100%;
}
.uabb-timeline-connector .uabb-timeline-marker i {
    background: #eee;
    border-radius: 50%;
}
.uabb-timeline-vertical .uabb-timeline-main .timeline-icon-new {
    line-height: 1em;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.uabb-timeline-vertical .uabb-timeline-field:not(:last-child) {
    margin-bottom: 20px;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-module.uabb-timeline-right,
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-module {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-left .uabb-events-inner-new,
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-right .uabb-events-inner-new,
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-day-left .uabb-events-inner-new,
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-day-right .uabb-events-inner-new,
.rtl .uabb-timeline-vertical .uabb-day-right .uabb-events-inner-new,
.uabb-timeline-vertical .uabb-day-left .uabb-events-inner-new,
.rtl .uabb-timeline-vertical .uabb-day-right .uabb-events-inner,
.uabb-timeline-vertical .uabb-day-left .uabb-events-inner,
.uabb-timeline-vertical.uabb-timeline--left .uabb-days,
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-days {
    text-align: left;
}
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-day-left .uabb-events-inner-new,
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-day-right .uabb-events-inner-new,
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-left .uabb-events-inner-new,
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-right .uabb-events-inner-new,
.uabb-timeline-vertical .uabb-day-right .uabb-events-inner-new,
.rtl .uabb-timeline-vertical .uabb-day-left .uabb-events-inner-new,
.uabb-timeline-vertical .uabb-day-right .uabb-events-inner,
.rtl .uabb-timeline-vertical .uabb-day-left .uabb-events-inner,
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-days,
.uabb-timeline-vertical.uabb-timeline--right .uabb-days {
    text-align: right;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-date-new {
    display: block;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline__line {
    right: 16px;
    left: auto;
}
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-timeline__line {
    left: 16px;
    right: auto;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-left .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-left .uabb-timeline-arrow:after {
    top: 0;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-right .uabb-timeline-arrow,
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-left .uabb-timeline-arrow {
    top: 0;
    right: 0;
    width: 10px;
    height: 40px;
    position: absolute;
}
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-left .uabb-timeline-arrow,
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-right .uabb-timeline-arrow {
    left: 0;
    right: auto;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-right .uabb-timeline-arrow,
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-left .uabb-timeline-arrow {
    right: -12px;
}
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-right .uabb-timeline-arrow,
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-left .uabb-timeline-arrow,
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-right .uabb-timeline-arrow {
    left: -10px;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-left .uabb-timeline-arrow,
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-right .uabb-timeline-arrow {
    right: -10px;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-marker-wrapper,
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-new,
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-marker-wrapper,
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-new {
    max-width: 100%;
    position: relative;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-new,
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-day-new {
    margin-right: 14px;
}
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-day-new,
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-new {
    margin-left: 14px;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-marker-wrapper {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-new {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline__line {
    left: 20px;
    right: auto;
}
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-timeline__line {
    right: 20px;
    left: auto;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-marker-wrapper {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-new {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-right .uabb-timeline-arrow,
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-left .uabb-timeline-arrow {
    top: 0;
    width: 10px;
    height: 40px;
    position: absolute;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-left .uabb-timeline-arrow {
    left: -12px;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-right .uabb-timeline-arrow {
    right: 0;
    top: 0;
    width: 10px;
    height: 40px;
    position: absolute;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-left .uabb-timeline-arrow {
    left: 0;
    top: 0;
    width: 10px;
    height: 40px;
    position: absolute;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--left .uabb-timeline-left .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline-left .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-left .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline-arrow-center .uabb-timeline-left .uabb-timeline-arrow,
.uabb-timeline-vertical.uabb-timeline-arrow-center .uabb-timeline-right .uabb-timeline-arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.uabb-timeline-vertical .uabb-timeline-marker-wrapper {
    background-color: #eee;
    -webkit-border-radius: 999px;
    border-radius: 999px;
    position: relative;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.uabb-timeline-vertical .uabb-timeline-main .uabb-days .animate-border:hover .uabb-timeline-marker-wrapper {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-marker-wrapper {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-day-new,
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-date-new {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 100%;
    position: relative;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-right .uabb-day-new {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 0;
    padding-right: 12px;
}
.rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-right .uabb-day-new {
    padding-right: 0;
    padding-left: 12px;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-left .uabb-day-new {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-right: 0;
    padding-left: 12px;
}
.rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-left .uabb-day-new {
    padding-left: 0;
    padding-right: 12px;
}
.uabb-events-inner-new {
    padding: 40px;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-left .uabb-timeline-date-new {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-right .uabb-timeline-date-new {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.uabb-timeline-vertical .uabb-timeline-left .uabb-date-new,
.rtl .uabb-timeline-vertical .uabb-timeline-right .uabb-date-new {
    margin-right: 10px;
}
.rtl .uabb-timeline-vertical .uabb-timeline-left .uabb-date-new,
.uabb-timeline-vertical .uabb-timeline-right .uabb-date-new {
    margin-left: 10px;
}
.uabb-timeline-vertical .uabb-timeline-right .uabb-timeline-date-new {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}
.uabb-timeline-arrow-center .uabb-timeline-module {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.uabb-timeline-arrow-bottom .uabb-timeline-module {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.uabb-timeline-vertical.uabb-timeline-arrow-bottom .uabb-timeline-left .uabb-timeline-arrow,
.uabb-timeline-vertical.uabb-timeline-arrow-bottom .uabb-timeline-right .uabb-timeline-arrow {
    top: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.uabb-heading-bottom {
    margin: 0;
}
/* By default content alignment - alternate */
.uabb-timeline-vertical.uabb-timeline-arrow-top .uabb-timeline-date-new .uabb-date-new,
.uabb-timeline-vertical.uabb-timeline-arrow-bottom .uabb-timeline-date-new .uabb-date-new {
    padding-top: 8px;
    padding-bottom: 8px;
}
/* Card animation css */
.uabb-events-inner-new,
.uabb-timeline-arrow {
    -webkit-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
}
.uabb-timeline-arrow:after {
    -webkit-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out;
}
.uabb-date-new {
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}
.uabb-timeline-vertical .uabb-timeline-module.uabb-timeline-left.hide-events .uabb-events-inner-new,
.uabb-timeline-vertical .uabb-timeline-module.uabb-timeline-left.hide-events .uabb-date-new,
.uabb-timeline-vertical .uabb-timeline-module.uabb-timeline-right.hide-events .uabb-events-inner-new,
.uabb-timeline-vertical .uabb-timeline-module.uabb-timeline-right.hide-events .uabb-date-new {
    visibility: hidden;
}
.uabb-timeline-vertical .uabb-day-left .uabb-timeline-arrow:after {
    content: '';
    left: 0;
    position: absolute;
    display: inline;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-day-left .uabb-timeline-arrow:after,
.rtl .uabb-timeline-vertical .uabb-day-right .uabb-timeline-arrow:after {
    left: 0;
}
.uabb-timeline-vertical .uabb-day-right .uabb-timeline-arrow:after {
    content: '';
    right: 0;
    position: absolute;
    display: inline;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.uabb-timeline-vertical .uabb-timeline-main .uabb-date .inner-date-new {
    white-space: nowrap;
    margin: 0;
}
.uabb-timeline-vertical .uabb-timeline-main .uabb-timeline__line {
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.rtl .uabb-timeline-vertical .uabb-timeline-main .uabb-timeline__line {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}
.uabb-timeline-vertical.uabb-timeline--right .uabb-timeline__line {
    position: absolute;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-timeline__line {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
/* RESPONSIVE ALIGNMENT OF VERTICAL SEPARATOR. */
/* DESKTOP */
.uabb-timeline-vertical.uabb-timeline--center .uabb-timeline__line {
    left: 50%;
    right: auto;
}
.rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline__line {
    right: 50%;
    left: auto;
}
/* Icon transition animation */
.uabb-timeline-vertical .uabb-timeline-main .in-view i.in-view-timeline-icon {
    -webkit-transition: background .25s ease-out 0.25s,width .25s ease-in-out,height .25s ease-in-out,color .25s ease-in-out,font-size .25s ease-in-out;
    -webkit-transition: background .25s ease-out 0.25s,width .25s ease-in-out,height .25s ease-in-out,color .25s ease-in-out,font-size .25s ease-out;
    transition: background .25s ease-out 0.25s,width .25s ease-in-out,height .25s ease-in-out,color .25s ease-in-out,font-size .25s ease-out;
}
/* LEFT CSS STARTS */
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-right .uabb-timeline-arrow:after {
    content: '';
    position: absolute;
    display: inline;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
/* LEFT CSS ENDS */
/* CENTER CSS STARTS */
.uabb-timeline-vertical.uabb-timeline--center .uabb-days {
    text-align: center;
}
.uabb-timeline-vertical.uabb-timeline--center .uabb-day-right .uabb-timeline-arrow:after {
    content: '';
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    display: inline;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
/* CENTER CSS ENDS */
/* Border CSS */
.uabb-timeline-vertical.uabb-timeline--center .uabb-day-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--right .uabb-day-left .uabb-timeline-arrow:after {
    border-left-style: solid;
    border-left-width: 13px;
    border-left-color: transparent;
}
.rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-day-right .uabb-timeline-arrow:after,
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-day-left .uabb-timeline-arrow:after,
.rtl .uabb-timeline-vertical.uabb-timeline--right .uabb-day-right .uabb-timeline-arrow:after {
    border-right-style: solid;
    border-right-width: 13px;
    border-right-color: transparent;
    border-left-style: none;
}
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-right .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--center .uabb-day-left .uabb-timeline-arrow:after,
.uabb-timeline-vertical.uabb-timeline--left .uabb-day-left .uabb-timeline-arrow:after {
    border-right-style: solid;
    border-right-width: 13px;
    border-right-color: transparent;
}
.rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-day-left .uabb-timeline-arrow:after,
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-day-left .uabb-timeline-arrow:after,
.rtl .uabb-timeline-vertical.uabb-timeline--left .uabb-day-right .uabb-timeline-arrow:after {
    border-left-style:solid;
    border-left-width:13px;
    border-left-color:transparent;
    border-right-style: none;
}
/* Border CSS Ends */
@media screen and (max-width: 1024px) {
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline__line {
        position:absolute;
        -webkit-transform:translateX(50%);
        -ms-transform:translateX(50%);
        transform:translateX(50%);
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline__line {
        -webkit-transform:translateX(-50%);
        -ms-transform:translateX(-50%);
        transform:translateX(-50%);
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-date-hide {
        display:block;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-left .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-right .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-days,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-right .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-days {
        text-align:left;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-left .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-right .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-days,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-left .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-right .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-days {
        text-align:right;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline__line,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline__line {
        right:20px;
        left:auto;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline__line,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline__line {
        left:20px;
        right:auto;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-marker-wrapper,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-marker-wrapper,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-new {
        max-width:100%;
        position:relative;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-new {
        margin-left:16px;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-new {
        margin-right:16px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-marker-wrapper {
        -webkit-box-ordinal-group:1;
        -webkit-order:0;
        -moz-box-ordinal-group:1;
        -ms-flex-order:0;
        order:0;
        -webkit-flex-shrink:0;
        -ms-flex-negative:0;
        flex-shrink:0;
        -webkit-box-flex:0;
        -webkit-flex-grow:0;
        -moz-box-flex:0;
        -ms-flex-positive:0;
        flex-grow:0;
        margin-left:0;
        margin-right:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-new {
        -webkit-box-flex:1;
        -webkit-flex-grow:1;
        -moz-box-flex:1;
        -ms-flex-positive:1;
        flex-grow:1;
        -webkit-box-ordinal-group:2;
        -webkit-order:1;
        -moz-box-ordinal-group:2;
        -ms-flex-order:1;
        order:1;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow:after {
        top:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-timeline-arrow {
        width:10px;
        height:40px;
        position:absolute;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-timeline-arrow,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow {
        left:-10px;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow {
        right:-10px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-timeline-arrow,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow {
        left:-12px;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow {
        right:-12px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow:after {
        top:50%;
        -webkit-transform:translateY(-50%);
        -ms-transform:translateY(-50%);
        transform:translateY(-50%);
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-right .uabb-timeline-arrow:after {
        content:'';
        position:absolute;
        display:inline;
        width:0;
        height:0;
        border-top:12px solid transparent;
        border-bottom:12px solid transparent;
    }
    /* Center align CSS start */
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-module.uabb-timeline-right {
        -webkit-box-orient:unset;
        -webkit-box-direction:unset;
        -webkit-flex-direction:unset;
        -moz-box-orient:unset;
        -moz-box-direction:unset;
        -ms-flex-direction:unset;
        flex-direction:unset;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-date-new {
        display:none;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-date-new {
        -webkit-box-flex:unset;
        -webkit-flex-grow:unset;
        -moz-box-flex:unset;
        -ms-flex-positive:unset;
        flex-grow:unset;
        -webkit-flex-basis:unset;
        -ms-flex-preferred-size:unset;
        flex-basis:unset;
        max-width:100%;
        width:100%;
        position:relative;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-day-new {
        -webkit-box-ordinal-group:unset;
        -webkit-order:unset;
        -moz-box-ordinal-group:unset;
        -ms-flex-order:unset;
        order:unset;
        padding-left:0;
        padding-right:0;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-right .uabb-day-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-day-new {
        padding-right:0;
        padding-left:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-day-new {
        -webkit-box-ordinal-group:unset;
        -webkit-order:unset;
        -moz-box-ordinal-group:unset;
        -ms-flex-order:unset;
        order:unset;
        padding-right:0;
        padding-left:0;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-left .uabb-day-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-day-new {
        padding-left:0;
        padding-right:0;
    }
    /* CSS for right alignment */
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-module {
        -webkit-box-orient:horizontal;
        -webkit-box-direction:reverse;
        -webkit-flex-direction:row-reverse;
        -moz-box-orient:horizontal;
        -moz-box-direction:reverse;
        -ms-flex-direction:row-reverse;
        flex-direction:row-reverse;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline__line {
        right:16px;
        left:auto;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline__line {
        left:16px;
        right:auto;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow {
        left:auto;
        right:0;
        width:10px;
        height:40px;
        position:absolute;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow {
        right:auto;
        left:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-marker-wrapper {
        -webkit-flex-shrink:0;
        -ms-flex-negative:0;
        flex-shrink:0;
        -webkit-box-flex:0;
        -webkit-flex-grow:0;
        -moz-box-flex:0;
        -ms-flex-positive:0;
        flex-grow:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-new {
        -webkit-box-flex:1;
        -webkit-flex-grow:1;
        -moz-box-flex:1;
        -ms-flex-positive:1;
        flex-grow:1;
    }
    /* Center align CSS start */
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-date-new {
        -webkit-box-flex:unset;
        -webkit-flex-grow:unset;
        -moz-box-flex:unset;
        -ms-flex-positive:unset;
        flex-grow:unset;
        -webkit-flex-basis:unset;
        -ms-flex-preferred-size:unset;
        flex-basis:unset;
        max-width:100%;
        position:relative;
    }
    /*Border CSS*/
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-left .uabb-timeline-arrow:after {
        border-right-style:solid;
        border-right-width:13px;
        border-left:none;
        border-right-color:transparent;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-left .uabb-timeline-arrow:after,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-right .uabb-timeline-arrow:after {
        border-left-style:solid;
        border-left-width:13px;
        border-right:none;
        border-left-color:transparent;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after {
        border-left-style:solid;
        border-left-width:13px;
        border-right:none;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after {
        border-right-style:solid;
        border-right-width:13px;
        border-left:none;
    }
    /*Border CSS Ends */
}
@media screen and (max-width: 767px) {
    .uabb-timeline-vertical .uabb-timeline-responsive-none .uabb-events-inner-new {
        padding:15px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-date-hide {
        display:block;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-left .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-right .uabb-events-inner-new,
    .uabb-timeline-vertical .uabb-day-left .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-days,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-left .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-right .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-days {
        text-align:left;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-left .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-right .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical .uabb-day-left .uabb-events-inner-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-days,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-left .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-right .uabb-events-inner-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-days {
        text-align:right;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline__line,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline__line {
        right:20px;
        left:auto;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline__line,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline__line {
        left:20px;
        right:auto;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-marker-wrapper,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-marker-wrapper,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-new {
        max-width:100%;
        position:relative;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-new {
        margin-left:16px;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-new {
        margin-right:16px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-marker-wrapper {
        -webkit-box-ordinal-group:1;
        -webkit-order:0;
        -moz-box-ordinal-group:1;
        -ms-flex-order:0;
        order:0;
        -webkit-flex-shrink:0;
        -ms-flex-negative:0;
        flex-shrink:0;
        -webkit-box-flex:0;
        -webkit-flex-grow:0;
        -moz-box-flex:0;
        -ms-flex-positive:0;
        flex-grow:0;
        margin-left:0;
        margin-right:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-new {
        -webkit-box-flex:1;
        -webkit-flex-grow:1;
        -moz-box-flex:1;
        -ms-flex-positive:1;
        flex-grow:1;
        -webkit-box-ordinal-group:2;
        -webkit-order:1;
        -moz-box-ordinal-group:2;
        -ms-flex-order:1;
        order:1;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow:after {
        top:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-timeline-arrow {
        width:10px;
        height:40px;
        position:absolute;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-timeline-arrow,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow {
        left:-10px;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow {
        right:-10px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-timeline-arrow,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow {
        left:-12px;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow {
        right:-12px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow:after {
        top:50%;
        -webkit-transform:translateY(-50%);
        -ms-transform:translateY(-50%);
        transform:translateY(-50%);
    }
    .uabb-timeline-vertical .uabb-timeline-left .uabb-date-new {
        margin-right:10px;
    }
    .rtl .uabb-timeline-vertical .uabb-timeline-left .uabb-date-new {
        margin-left:10px;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-right .uabb-timeline-arrow:after {
        content:'';
        position:absolute;
        display:inline;
        width:0;
        height:0;
        border-top:12px solid transparent;
        border-bottom:12px solid transparent;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-module.uabb-timeline-right {
        -webkit-box-orient:unset;
        -webkit-box-direction:unset;
        -webkit-flex-direction:unset;
        -moz-box-orient:unset;
        -moz-box-direction:unset;
        -ms-flex-direction:unset;
        flex-direction:unset;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-date-new {
        display:none;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-date-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-date-new {
        -webkit-box-flex:unset;
        -webkit-flex-grow:unset;
        -moz-box-flex:unset;
        -ms-flex-positive:unset;
        flex-grow:unset;
        -webkit-flex-basis:unset;
        -ms-flex-preferred-size:unset;
        flex-basis:unset;
        max-width:100%;
        position:relative;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-day-new {
        -webkit-box-ordinal-group:unset;
        -webkit-order:unset;
        -moz-box-ordinal-group:unset;
        -ms-flex-order:unset;
        order:unset;
        padding-left:0;
        padding-right:0;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-right .uabb-day-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-day-new {
        padding-right:0;
        padding-left:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-day-new,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-day-new {
        -webkit-box-ordinal-group:unset;
        -webkit-order:unset;
        -moz-box-ordinal-group:unset;
        -ms-flex-order:unset;
        order:unset;
        padding-right:0;
        padding-left:0;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-left .uabb-day-new,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-day-new {
        padding-left:0;
        padding-right:0;
    }
    /* CSS for right alignment */
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-module {
        -webkit-box-orient:horizontal;
        -webkit-box-direction:reverse;
        -webkit-flex-direction:row-reverse;
        -moz-box-orient:horizontal;
        -moz-box-direction:reverse;
        -ms-flex-direction:row-reverse;
        flex-direction:row-reverse;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline__line {
        right:16px;
        left:auto;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline__line {
        left:16px;
        right:auto;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow {
        left:auto;
        right:0;
        width:10px;
        height:40px;
        position:absolute;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-left .uabb-timeline-arrow,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-right .uabb-timeline-arrow {
        right:auto;
        left:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-marker-wrapper {
        -webkit-flex-shrink:0;
        -ms-flex-negative:0;
        flex-shrink:0;
        -webkit-box-flex:0;
        -webkit-flex-grow:0;
        -moz-box-flex:0;
        -ms-flex-positive:0;
        flex-grow:0;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-new {
        -webkit-box-flex:1;
        -webkit-flex-grow:1;
        -moz-box-flex:1;
        -ms-flex-positive:1;
        flex-grow:1;
    }
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline__line {
        position:absolute;
        -webkit-transform:translateX(50%);
        -ms-transform:translateX(50%);
        transform:translateX(50%);
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline__line {
        -webkit-transform:translateX(-50%);
        -ms-transform:translateX(-50%);
        transform:translateX(-50%);
    }
    /* Center align CSS start */
    /* Border CSS*/
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-left .uabb-timeline-arrow:after {
        border-right-style:solid;
        border-right-width:13px;
        border-left:none;
        border-right-color:transparent;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-left .uabb-timeline-arrow:after,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after,
    .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after {
        border-left-style:solid;
        border-left-width:13px;
        border-right:none;
    }
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after,
    .rtl .uabb-timeline-vertical.uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after {
        border-right-style:solid;
        border-right-width:13px;
        border-left:none;
    }
    /* Border CSS Ends */
}
/* Horizontal layout CSS*/
.uabb-timeline-horizontal .uabb-day-new {
    flex-grow:1;
    -webkit-flex-grow:1;
}
.uabb-timeline-horizontal .uabb-timeline-field {
    padding:20px;
}
.uabb-timeline-wrapper .slick-slider {
    position:relative;
    display:block;
    box-sizing:border-box;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-touch-callout:none;
    -khtml-user-select:none;
    -ms-touch-action:pan-y;
    touch-action:pan-y;
    -webkit-tap-highlight-color:transparent;
}
.uabb-timeline-wrapper .slick-list {
    position:relative;
    display:block;
    overflow:hidden;
    margin:0;
    padding:0;
}
.uabb-timeline-wrapper .slick-list:focus,
.uabb-timeline-marker-wrapper:focus {
    outline:none;
}
.uabb-timeline-wrapper .slick-list.dragging {
    cursor:pointer;
    cursor:hand;
}
.uabb-timeline-wrapper .slick-slider .slick-track,
.uabb-timeline-wrapper .slick-slider .slick-list {
    -webkit-transform:translate3d(0,0,0);
    -moz-transform:translate3d(0,0,0);
    -ms-transform:translate3d(0,0,0);
    -o-transform:translate3d(0,0,0);
    transform:translate3d(0,0,0);
}
.uabb-timeline-wrapper .slick-track {
    position:relative;
    top:0;
    left:0;
    display:block;
}
.uabb-timeline-wrapper .slick-track:before,
.uabb-timeline-wrapper .slick-track:after {
    display:table;
    content:'';
}
.uabb-timeline-wrapper .slick-track:after {
    clear:both;
}
.uabb-timeline-wrapper .slick-loading .slick-track,
.uabb-timeline-wrapper .slick-loading .slick-slide {
    visibility:hidden;
}
.uabb-timeline-wrapper .slick-slide {
    display:none;
    float:left;
    height:100%;
    min-height:1px;
}
.uabb-timeline-wrapper .slick-slide img,
.uabb-timeline-wrapper .slick-initialized .slick-slide {
    display:block;
}
.uabb-timeline-wrapper .slick-slide.slick-loading img,
.uabb-timeline-connector .slick-arrow.slick-hidden {
    display:none;
}
.uabb-timeline-wrapper .slick-slide.dragging img {
    pointer-events:none;
}
.uabb-timeline-wrapper .slick-vertical .slick-slide {
    display:block;
    height:auto;
    border:1px solid transparent;
}
.uabb-timeline-wrapper ul.slick-dots,
.uabb-timeline-wrapper ul.slick-dots {
    display:block;
    position:relative;
    margin:0;
    left:0;
    width:100%;
    text-align:center;
}
.uabb-timeline-wrapper ul.slick-dots li,
.uabb-timeline-wrapper ul.slick-dots li {
    position:relative;
    display:inline-block;
    width:20px;
    height:20px;
    margin:0;
    padding:0;
    cursor:pointer;
}
.uabb-timeline-wrapper ul.slick-dots li button,
.uabb-timeline-wrapper ul.slick-dots li button {
    font-size:0;
    line-height:0;
    display:block;
    width:20px;
    height:20px;
    padding:5px;
    cursor:pointer;
    color:transparent;
    border:0;
    outline:none;
    background:transparent;
}
.uabb-timeline-wrapper ul.slick-dots li button:before {
    font-family:'Font Awesome 5 Free';
    font-weight:900;
    font-size:6px;
    line-height:20px;
    position:absolute;
    top:0;
    left:0;
    width:20px;
    height:20px;
    content:'\f111';
    text-align:center;
    opacity:.25;
    color:#000;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
.uabb-timeline-connector .slick-prev i,
.uabb-timeline-connector .slick-next i,
.uabb-timeline-connector .slick-prev i:hover,
.uabb-timeline-connector .slick-next i:hover,
.uabb-timeline-connector .slick-prev i:focus,
.uabb-timeline-connector .slick-next i:focus {
    font-size:20px;
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    box-sizing:content-box;
}
.uabb-timeline-connector .slick-prev,
.uabb-timeline-connector .slick-next,
.uabb-timeline-connector .slick-prev:hover,
.uabb-timeline-connector .slick-prev:focus,
.uabb-timeline-connector .slick-next:hover,
.uabb-timeline-connector .slick-next:focus {
    font-size:0;
    line-height:0;
    position:absolute;
    top:50%;
    display:block;
    width:auto;
    height:auto;
    padding:0;
    -webkit-transform:translate(0,-50%);
    -ms-transform:translate(0,-50%);
    transform:translate(0,-50%);
    cursor:pointer;
    color:transparent;
    border:none;
    outline:none;
    background:transparent;
}
.uabb-timeline-connector .slick-prev:hover:before,
.uabb-timeline-connector .slick-prev:focus:before,
.uabb-timeline-connector .slick-next:hover:before,
.uabb-timeline-connector .slick-next:focus:before {
    opacity:1;
}
.uabb-timeline-connector .slick-prev.slick-disabled:before,
.uabb-timeline-connector .slick-next.slick-disabled:before {
    opacity:.25;
}
.uabb-timeline-connector .slick-prev:before,
.uabb-timeline-connector .slick-next:before {
    content:'';
    font-size:0;
    line-height:0;
}
.uabb-timeline-connector .slick-prev:before,
.uabb-timeline-connector .slick-next:before {
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
.uabb-timeline-connector .slick-prev {
    left:-45px;
    z-index:1;
}
.uabb-timeline-connector .slick-next {
    right:-45px;
    z-index:1;
}
.uabb-timeline-connector .slick-arrow,
.uabb-timeline-connector .slick-arrow:active,
.uabb-timeline-connector .slick-arrow:hover,
.uabb-timeline-connector .slick-arrow:focus {
    box-shadow:none;
}
.uabb-timeline-connector:before {
    position:absolute;
    content:'';
    height:4px;
    width:100%;
    background:#ccc;
    display:block;
    bottom:20px;
    top:auto;
    -webkit-transform:translateY(2px);
    transform:translateY(2px);
}
.uabb-timeline-connector .slick-list {
    padding-left:0!important;
    padding-right:0!important;
}
.uabb-timeline-connector .slick-arrow,
.uabb-timeline-connector .slick-arrow:hover,
.uabb-timeline-connector .slick-arrow:focus {
    -webkit-transform:none;
    transform:none;
    top:auto;
    bottom:0;
    padding:0;
    height:40px;
    width:40px;
}
.uabb-timeline-connector .slick-prev {
    left:-20px;
}
.uabb-timeline-connector .slick-next {
    right:-20px;
}
.uabb-timeline-connector .uabb-timeline-marker-wrapper {
    cursor:pointer;
    text-align:center;
}
.uabb-timeline-horizontal .uabb-timeline-arrow {
    position:absolute;
}
.uabb-timeline-card-date {
    display:inline-block;
}
.uabb-timeline-horizontal .slick-active .uabb-timeline-arrow {
    position:absolute;
    width:20px;
    height:20px;
    top:-20px;
    left:50%;
    -webkit-transform:translateX(-50%);
    transform:translateX(-50%);
    border-bottom:10px solid #eee;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
}
body.rtl .uabb-timeline-horizontal .slick-list {
	direction: ltr;
}
body.rtl .uabb-timeline-horizontal .slick-slide {
	direction: rtl;
}
		.fl-node-9vhby2umalg1 .uabb-timeline-field:last-child {
			margin-bottom: 0px;
		}
				.fl-node-9vhby2umalg1 .uabb-timeline__line {
			width: 2px;
		}
		.fl-node-9vhby2umalg1 .uabb-timeline-connector:before {
			height: 2px;
		}
				.fl-node-9vhby2umalg1 .uabb-timeline-connector:before {
			bottom: 20px;
		}
				.fl-node-9vhby2umalg1 .uabb-timeline-connector .slick-arrow {
			bottom: 0px;
		}
				.fl-node-9vhby2umalg1 .uabb-timeline-marker,
		.fl-node-9vhby2umalg1 .uabb-timeline-connector .uabb-timeline-marker i {
			min-height: 40px;
			min-width: 40px;
			line-height: 40px;
		}
		.fl-node-9vhby2umalg1 .uabb-timeline-arrow {
			height: 40px;
		}
		.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline__line {
			left: 20px;
		}
		.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline__line {
			right: 20px;
		}
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline__line {
			right: 20px;
		}
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline__line {
			left: 20px;
		}
		
.fl-node-9vhby2umalg1 .slick-prev i,
.fl-node-9vhby2umalg1 .slick-next i,
.fl-node-9vhby2umalg1 .slick-prev i:hover,
.fl-node-9vhby2umalg1 .slick-next i:hover,
.fl-node-9vhby2umalg1 .slick-prev i:focus,
.fl-node-9vhby2umalg1 .slick-next i:focus {
	outline: none;
	color: #ffffff;
			border-radius: 50%;
	background: #cccccc;
				}

.fl-node-9vhby2umalg1 .uabb-timeline-horizontal .uabb-timeline-field {
		padding-left: 10px;padding-right: 10px;}

.fl-node-9vhby2umalg1 .uabb-timeline-horizontal .slick-list {
			margin: 0 -10px;
			}
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-marker-wrapper {
	margin-left: 10px;
	margin-right: 10px;
}
.fl-node-9vhby2umalg1 .uabb-timeline-field:not(:last-child) {
	margin-bottom: 20px;
}
.fl-node-9vhby2umalg1 .uabb-timeline-heading {
	margin-bottom: 10px;
}
.fl-node-9vhby2umalg1 .uabb-events-inner-new {
	background-color: #f5f5f5;
}
.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-day-right .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-day-right .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-day-left .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-day-right .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-day-left .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-day-left .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-right .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-left .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-right .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-left .uabb-timeline-arrow:after {
	border-left-color: #f5f5f5;
}
.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-day-right .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-day-right .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-day-left .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-day-right .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-day-left .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-day-left .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-right .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-day-left .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-right .uabb-timeline-arrow:after,
		.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-day-left .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-right .uabb-timeline-arrow:after,
		.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-day-left .uabb-timeline-arrow:after {
	border-right-color: #f5f5f5;
}
.fl-node-9vhby2umalg1 .uabb-timeline-horizontal .slick-active .uabb-timeline-arrow {
	border-bottom-color: #f5f5f5;
}
.fl-node-9vhby2umalg1 .uabb-day-right .uabb-events-inner-new, .fl-node-9vhby2umalg1 .uabb-day-left .uabb-events-inner-new {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #dadada;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 12px 1px  rgba(12,5,0,0.11);
}
.fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-day-right .uabb-events-inner-new, .fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-day-left .uabb-events-inner-new {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-9vhby2umalg1 .uabb-timeline-main .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-connector .uabb-timeline-marker i {
	font-size: 18px;
}
.fl-node-9vhby2umalg1 .uabb-timeline__line__inner {
	background-color: #1e88e5;
}
.fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .in-view .in-view-timeline-icon .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-connector .slick-current .uabb-timeline-marker .timeline-icon-new {
	color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .uabb-timeline-field.in-view .uabb-timeline-marker-wrapper.in-view-timeline-icon, .fl-node-9vhby2umalg1 .uabb-timeline-connector .slick-current .uabb-timeline-marker i {
	background-color: #1e88e5;
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-0 .uabb-timeline-content .uabb-timeline-heading {
	color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-0 .uabb-timeline-desc-content, .fl-node-9vhby2umalg1 .uabb-timeline-item-0 .inner-date-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-0 .uabb-timeline-card-date {
	color: #000000;
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-0 .uabb-events-inner-new {
	background-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after {
	border-left-color: #ffffff;
}
.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-0 .uabb-day-left .uabb-timeline-arrow:after {
	border-right-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-days .uabb-timeline-item-0.animate-border .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-0.slick-active .timeline-icon-new {
	color: var(--fl-global-white);
}
.fl-node-9vhby2umalg1 .uabb-timeline-vertical .uabb-timeline-item-0 .uabb-timeline-marker-wrapper, .fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .uabb-timeline-item-0.in-view .in-view-timeline-icon, .fl-node-9vhby2umalg1 .uabb-timeline-item-0.slick-active .uabb-timeline-marker i {
	background-color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-1 .uabb-timeline-content .uabb-timeline-heading {
	color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-1 .uabb-timeline-desc-content, .fl-node-9vhby2umalg1 .uabb-timeline-item-1 .inner-date-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-1 .uabb-timeline-card-date {
	color: #000000;
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-1 .uabb-events-inner-new {
	background-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after {
	border-left-color: #ffffff;
}
.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-1 .uabb-day-left .uabb-timeline-arrow:after {
	border-right-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-days .uabb-timeline-item-1.animate-border .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-1.slick-active .timeline-icon-new {
	color: var(--fl-global-white);
}
.fl-node-9vhby2umalg1 .uabb-timeline-vertical .uabb-timeline-item-1 .uabb-timeline-marker-wrapper, .fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .uabb-timeline-item-1.in-view .in-view-timeline-icon, .fl-node-9vhby2umalg1 .uabb-timeline-item-1.slick-active .uabb-timeline-marker i {
	background-color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-2 .uabb-timeline-content .uabb-timeline-heading {
	color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-2 .uabb-timeline-desc-content, .fl-node-9vhby2umalg1 .uabb-timeline-item-2 .inner-date-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-2 .uabb-timeline-card-date {
	color: #000000;
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-2 .uabb-events-inner-new {
	background-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after {
	border-left-color: #ffffff;
}
.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-2 .uabb-day-left .uabb-timeline-arrow:after {
	border-right-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-days .uabb-timeline-item-2.animate-border .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-2.slick-active .timeline-icon-new {
	color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline-vertical .uabb-timeline-item-2 .uabb-timeline-marker-wrapper, .fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .uabb-timeline-item-2.in-view .in-view-timeline-icon, .fl-node-9vhby2umalg1 .uabb-timeline-item-2.slick-active .uabb-timeline-marker i {
	background-color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-3 .uabb-timeline-content .uabb-timeline-heading {
	color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-3 .uabb-timeline-desc-content, .fl-node-9vhby2umalg1 .uabb-timeline-item-3 .inner-date-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-3 .uabb-timeline-card-date {
	color: #000000;
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-3 .uabb-events-inner-new {
	background-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after {
	border-left-color: #ffffff;
}
.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-3 .uabb-day-left .uabb-timeline-arrow:after {
	border-right-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-days .uabb-timeline-item-3.animate-border .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-3.slick-active .timeline-icon-new {
	color: var(--fl-global-white);
}
.fl-node-9vhby2umalg1 .uabb-timeline-vertical .uabb-timeline-item-3 .uabb-timeline-marker-wrapper, .fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .uabb-timeline-item-3.in-view .in-view-timeline-icon, .fl-node-9vhby2umalg1 .uabb-timeline-item-3.slick-active .uabb-timeline-marker i {
	background-color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-4 .uabb-timeline-content .uabb-timeline-heading {
	color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-4 .uabb-timeline-desc-content, .fl-node-9vhby2umalg1 .uabb-timeline-item-4 .inner-date-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-4 .uabb-timeline-card-date {
	color: #000000;
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-4 .uabb-events-inner-new {
	background-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after {
	border-left-color: #ffffff;
}
.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-4 .uabb-day-left .uabb-timeline-arrow:after {
	border-right-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-days .uabb-timeline-item-4.animate-border .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-4.slick-active .timeline-icon-new {
	color: var(--fl-global-white);
}
.fl-node-9vhby2umalg1 .uabb-timeline-vertical .uabb-timeline-item-4 .uabb-timeline-marker-wrapper, .fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .uabb-timeline-item-4.in-view .in-view-timeline-icon, .fl-node-9vhby2umalg1 .uabb-timeline-item-4.slick-active .uabb-timeline-marker i {
	background-color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-5 .uabb-timeline-content .uabb-timeline-heading {
	color: var(--fl-global-blue);
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-5 .uabb-timeline-desc-content, .fl-node-9vhby2umalg1 .uabb-timeline-item-5 .inner-date-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-5 .uabb-timeline-card-date {
	color: #000000;
}
.fl-node-9vhby2umalg1 .uabb-timeline-item-5 .uabb-events-inner-new {
	background-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after {
	border-left-color: #ffffff;
}
.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--right .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--left .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-tablet.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-right .uabb-timeline-arrow:after,
				.rtl .fl-node-9vhby2umalg1 .uabb-timeline--center .uabb-timeline-responsive-mobile.uabb-timeline-res-right .uabb-timeline-item-5 .uabb-day-left .uabb-timeline-arrow:after {
	border-right-color: #ffffff;
}
.fl-node-9vhby2umalg1 .uabb-days .uabb-timeline-item-5.animate-border .timeline-icon-new, .fl-node-9vhby2umalg1 .uabb-timeline-item-5.slick-active .timeline-icon-new {
	color: var(--fl-global-white);
}
.fl-node-9vhby2umalg1 .uabb-timeline-vertical .uabb-timeline-item-5 .uabb-timeline-marker-wrapper, .fl-node-9vhby2umalg1 .uabb-timeline-main .uabb-days .uabb-timeline-item-5.in-view .in-view-timeline-icon, .fl-node-9vhby2umalg1 .uabb-timeline-item-5.slick-active .uabb-timeline-marker i {
	background-color: var(--fl-global-blue);
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-h2rtbjz7xkwd .fl-rich-text, .fl-builder-content .fl-node-h2rtbjz7xkwd .fl-rich-text *:not(b, strong) {
		font-size: 1.05em;
	}
}
@media ( max-width: 768px ) {
 .fl-node-h2rtbjz7xkwd.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-3033 .fl-node-9en7xskt2upz {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.fl-builder-content-3033 .fl-node-e8cv52g4n9ik {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}
:where( .fl-builder-content-3033 .fl-node-e8cv52g4n9ik > :not( .fl-block-overlay, .fl-drop-target ) ) {
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	width: 100%;
	max-width: 32%;
	background-color: #ffffff;
	box-shadow: 0px 0px 20px 0px rgba(12,5,0,0.11);
}
@media(max-width: 992px) {
	:where( .fl-builder-content-3033 .fl-node-e8cv52g4n9ik > :not( .fl-block-overlay, .fl-drop-target ) ) {
		max-width: 48%;
	}
}
@media(max-width: 768px) {
	:where( .fl-builder-content-3033 .fl-node-e8cv52g4n9ik > :not( .fl-block-overlay, .fl-drop-target ) ) {
		max-width: 100%;
	}
}
 .fl-node-e8cv52g4n9ik.fl-module-box {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-e8cv52g4n9ik.fl-module-box.fl-module {
	margin-top: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-ci1b4l6h08dw, .fl-node-ci1b4l6h08dw .fl-photo {
	text-align: center;
}

	.fl-node-csjxnb9y37go .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-csjxnb9y37go .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/02/Neil-Ford-Head-Shot-crop-scaled-1.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-csjxnb9y37go .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-csjxnb9y37go .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-csjxnb9y37go .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-csjxnb9y37go .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-csjxnb9y37go .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-csjxnb9y37go .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-csjxnb9y37go .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-csjxnb9y37go .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-csjxnb9y37go .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-csjxnb9y37go .uabb-flip-box-section {
					}

		
			}
	.fl-node-csjxnb9y37go .uabb-front {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-csjxnb9y37go .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-csjxnb9y37go .uabb-front .uabb-text-editor {
	font-weight: 700;
}
.fl-builder-content-3033 .fl-node-1ed0yxtkwbpi {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

	.fl-node-4zi768fqhkld .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-4zi768fqhkld .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/01/Karen_Hartman_2018-1-scaled-2.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-4zi768fqhkld .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-4zi768fqhkld .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-4zi768fqhkld .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-4zi768fqhkld .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-4zi768fqhkld .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-4zi768fqhkld .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-4zi768fqhkld .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-4zi768fqhkld .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-4zi768fqhkld .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-4zi768fqhkld .uabb-flip-box-section {
					}

		
			}
	.fl-node-4zi768fqhkld .uabb-front {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-4zi768fqhkld .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-4zi768fqhkld .uabb-front .uabb-text-editor {
	font-weight: 700;
}

	.fl-node-7p2vlbju9ts5 .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-7p2vlbju9ts5 .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/01/Matt_Sullivan_2018-scaled-2.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-7p2vlbju9ts5 .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-7p2vlbju9ts5 .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-7p2vlbju9ts5 .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-7p2vlbju9ts5 .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-7p2vlbju9ts5 .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-7p2vlbju9ts5 .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-7p2vlbju9ts5 .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-7p2vlbju9ts5 .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-7p2vlbju9ts5 .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-7p2vlbju9ts5 .uabb-flip-box-section {
					}

		
			}
	.fl-node-7p2vlbju9ts5 .uabb-front {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-7p2vlbju9ts5 .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-7p2vlbju9ts5 .uabb-front .uabb-text-editor {
	font-weight: 700;
}

	.fl-node-yg5j90zl2crv .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-yg5j90zl2crv .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/01/casson.015-scaled-1.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-yg5j90zl2crv .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-yg5j90zl2crv .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-yg5j90zl2crv .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-yg5j90zl2crv .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-yg5j90zl2crv .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-yg5j90zl2crv .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-yg5j90zl2crv .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-yg5j90zl2crv .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-yg5j90zl2crv .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-yg5j90zl2crv .uabb-flip-box-section {
					}

		
			}
	.fl-node-yg5j90zl2crv .uabb-front {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-yg5j90zl2crv .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-yg5j90zl2crv .uabb-front .uabb-text-editor {
	font-weight: 700;
}
 .fl-node-yg5j90zl2crv > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col h2.fl-node-1dgerzxfs8no,
		.fl-row .fl-col h2.fl-node-1dgerzxfs8no a,
		h2.fl-node-1dgerzxfs8no,
		h2.fl-node-1dgerzxfs8no a {
	color: var(--fl-global-white);
}
.fl-node-1dgerzxfs8no.fl-module-heading, .fl-node-1dgerzxfs8no.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-1dgerzxfs8no.fl-module-heading, .fl-node-1dgerzxfs8no.fl-module-heading :where(a, q, p, span) {
		font-size: 30px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-1dgerzxfs8no.fl-module-heading.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}
.uabb-hotspot-hover {
	z-index: 9;
}

.uabb-hotspot-container,
.uabb-hotspot-container * {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.uabb-hotspot-container img {
	border: none;
	box-shadow: none;
	height: auto;
	width: 100%;
	max-width: 100%;
}

.uabb-hotspot-container {
	position: relative;
	clear: both;
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.uabb-hotspot-container .uabb-hotspot-items {
	overflow: hidden;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item {
	position: absolute;
	text-align: center;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-hotspot-tooltip {
	text-decoration: none;
	border: none;
	border-radius: 0;
	background: 0 0;
	text-align: center;
	cursor: pointer;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item.uabb-hotspot-hover .uabb-hotspot-tooltip {
	-webkit-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
	-webkit-animation: none;
	animation: none;
	cursor: pointer;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-hotspot-tooltip:focus:not(:focus-visible) {
	outline: none;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-hotspot-tooltip:focus-visible {
	outline: 2px solid #005fcc;
	outline-offset: 2px;
	border-radius: 3px;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-hotspot-text span {
	display: inline-block;
	border-radius: 0;
}

.uabb-hotspot-items .uabb-hotspot-text,
.uabb-hotspot-items .uabb-hotspot-tooltip {
	-wekit-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.uabb-hotspot-tooltip-content {
	position: absolute;
	z-index: 9;
	width: 200px;
	text-align: center;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	cursor: default;
	pointer-events: none;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, transform .3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform .3s;
}

.uabb-hotspot-container .uabb-hotspot-tooltip-content p:last-of-type,
.uabb-hotspot-container .uabb-hotspot-text p:last-of-type {
	margin: 0;
}

.uabb-tooltip-style-curved .uabb-hotspot-tooltip-content.uabb-text-editor,
.uabb-tooltip-style-round .uabb-hotspot-tooltip-content.uabb-text-editor {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.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-tooltip-style-curved .uabb-hotspot-tooltip-content {
	bottom: 50%;
	border-radius: 20px;
	min-height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.uabb-tooltip-style-curved .uabb-hotspot-svg {
	position: absolute;
	top: 54%;
}

.uabb-tooltip-style-classic .uabb-hotspot-tooltip-content {
	-webkit-transition: opacity 0.2s, -webkit-transform .2s;
	transition: opacity 0.2s, -webkit-transform .2s;
	transition: opacity 0.2s, transform .2s;
	transition: opacity 0.2s, transform 0.2s, -webkit-transform .2s;
}

.uabb-tooltip-style-classic .uabb-hotspot-tooltip-content:after {
	content: '';
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-width: 10px;
}

.uabb-hotspot-hover .uabb-tooltip-style-classic .uabb-hotspot-tooltip-content {
	-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
	transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
	pointer-events: auto;
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
	transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

.uabb-tooltip-style-round .uabb-hotspot-tooltip-content,
.uabb-tooltip-style-round .uabb-hotspot-svg {
	-webkit-transform: translate3d(0, 10px, 0);
	transform: translate3d(0, 10px, 0);
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, transform .3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform .3s;
}

.uabb-tooltip-style-round .uabb-hotspot-tooltip-content {
	height: 100px;
	width: 100px;
	padding-top: 25px;
	left: 50%;
	margin-left: -50px;
	margin-bottom: 20px;
	bottom: 100%;
	border-radius: 50%;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.uabb-tooltip-style-round .uabb-hotspot-svg {
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-top: -7px;
}

.uabb-tooltip-style-round .uabb-hotspot-tooltip-content p {
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0);
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, transform .3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform .3s;
}

.uabb-hotspot-hover .uabb-tooltip-style-round .uabb-hotspot-tooltip-content,
.uabb-hotspot-hover .uabb-tooltip-style-round .uabb-hotspot-tooltip-content p {
	pointer-events: auto;
	-webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.uabb-hotspot-wrap .uabb-imgicon-wrap .uabb-icon-wrap {
	display: block;
}

.uabb-hspot-sonar {
	width: 150px;
	left: 50%;
	height: 150px;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity .25s cubic-bezier(1, 0, 0, 1);
	transition: opacity .25s cubic-bezier(1, 0, 0, 1);
	z-index: 1;
	pointer-events: none;
}

.uabb-hspot-sonar g {
	-webkit-transform: scale(0);
	transform: scale(0);
}

.uabb-hotspot-hover .uabb-hspot-sonar g {
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-webkit-animation-name: hotspot-sonar;
	animation-name: hotspot-sonar;
	-webkit-animation-duration: 1.8s;
	animation-duration: 1.8s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.uabb-hotspot-hover .uabb-hspot-sonar g:nth-child(2) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.uabb-hotspot-hover .uabb-hspot-sonar g:nth-child(3) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.uabb-hotspot-hover .uabb-hspot-sonar g:nth-child(4) {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}

.internet-explorer11 .uabb-tooltip-style-round .uabb-hotspot-tooltip-content p,
.internet-explorer11 .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content p {
	max-width: 100px;
}

.internet-explorer11 .uabb-tooltip-style-classic .uabb-hotspot-tooltip-content {
	transform: translateY(-50%) translateX(-100%)!important;
}

.internet-explorer11 .uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item.uabb-hotspot-hover .uabb-hotspot-tooltip,
.internet-explorer .uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item.uabb-hotspot-hover .uabb-hotspot-tooltip {
	-webkit-transform: none;
	transform: none;
}

@-webkit-keyframes hotspot-sonar {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 1;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	}
	100% {
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
}

@keyframes hotspot-sonar {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 1;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	}
	100% {
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
}

@media only screen and (max-device-width: 1024px) {
	.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item a.uabb-hotspot-tooltip {
		cursor: default;
	}
}

@media only screen and (max-device-width: 768px) {
	.uabb-hotspot-tooltip-content {
		width: 120px;
	}
}

@media only screen and (max-device-width: 320px) {
	.uabb-hotspot-tooltip-content {
		width: auto;
	}
}

.uabb-hotspot-hover .uabb-tour {
	display: none;
}

.uabb-hotspot-item .uabb-tour {
	display: block;
	margin-top: 1em;
}

.uabb-hotspot-item .uabb-tour .uabb-hotspot-tour-tooltip-list-group {
	list-style: none;
	float: right;
	margin-bottom: 0;
	margin-left: .8em;
}

.uabb-actual-step {
	margin-right: .5em;
}

.uabb-hotspot-item .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item {
	display: inline-block;
	float: left;
}

.uabb-hotspot-hover .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item:first-of-type {
	margin-right: .8em;
}

.uabb-hotspot-item .uabb-tour .inactive {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	opacity: .5;
	cursor: pointer;
}

.uabb-hotspot-end {
	display: block;
	text-align: right;
	padding-top: 4px;
	margin-bottom: -5px;
}

.uabb-hotspot-hover .uabb-hotspot-end .uabb-tour-end {
	cursor: pointer;
	display: block;
	margin-top: .5em;
}

.uabb-hotspot-hover .uabb-hotspot-tooltip-content .uabb-tour .uabb-actual-step,
.uabb-hotspot-hover .uabb-hotspot-tooltip-content .uabb-tour .uabb-hotspot-tour-tooltip-list-group,
.uabb-hotspot-hover .uabb-hotspot-tooltip-content .uabb-hotspot-end .uabb-tour-end {
	font-size: .85em;
}

.uabb-hotspot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.57);
}

.uabb-overlay-button {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%)translateY(-50%);
	-ms-transform: translateX(-50%)translateY(-50%);
	transform: translateX(-50%)translateY(-50%);
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-icon-wrap .uabb-icon i,
.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-icon-wrap .uabb-icon i:before {
	height: auto;
	width: auto;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-marker-nonactive {
	visibility: hidden;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-marker-nonactive.uabb-hotspot-hover {
	visibility: visible;
}

.uabb-button-wrap .uabb-creative-flat-btn .uabb-button-text {
	-webkit-backface-visibility: visible;
	-moz-backface-visibility: visible;
	backface-visibility: visible;
}

.uabb-overlay-button .uabb-button,
.uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
.uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next {
	cursor: pointer;
}.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
	padding: 12px 24px;
}
a.uabb-button.uabb-creative-button.uabb-creative-gradient-btn {
    border: none;
}.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:visited {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:;background: ;}
		.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:hover {
		background:;background: ;	}
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a *,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:visited,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:visited * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:focus *,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:hover * {
		color: #ffffff;
	}
				




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


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

	
	@media ( max-width: 768px ) {
			.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a,
			.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a,.fl-builder-content .fl-node-h6m3owgcr9fk .uabb-creative-button-wrap a:visited {
	text-transform: none;
}
.fl-builder-content .fl-node-h6m3owgcr9fk .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;
}
.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 {
				top:calc( 77.85292377028658% - 10px);
				left: calc( 46.20474365807882% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-icon-wrap .uabb-icon i:before {

			color: var(--fl-global-white)			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-0 .uabb-hotspot-tooltip-content {
	font-size: 14px;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 {
				top:calc( 77.48202620223653% - 10px);
				left: calc( 42.300996234172324% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-1 .uabb-hotspot-tooltip-content {
	font-size: 14px;
	text-align: left;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 {
				top:calc( 81.50092998754597% - 10px);
				left: calc( 44.02363668878012% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-2 .uabb-hotspot-tooltip-content {
	font-size: 14px;
	text-align: left;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 {
				top:calc( 73.23956771837635% - 10px);
				left: calc( 45.401749052466364% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-3 .uabb-hotspot-tooltip-content {
	font-size: 14px;
	text-align: left;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 {
				top:calc( 77.36008727575431% - 10px);
				left: calc( 37.55356191045004% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-4 .uabb-hotspot-tooltip-content {
	font-size: 14px;
	text-align: left;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 {
				top:calc( 80.90139693234177% - 10px);
				left: calc( 52.509336439982015% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-5 .uabb-hotspot-tooltip-content {
	font-size: 14px;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 {
				top:calc( 83.90414299696616% - 10px);
				left: calc( 50.282111537252874% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-6 .uabb-hotspot-tooltip-content {
	font-size: 14px;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 {
				top:calc( 55.1875258104061% - 10px);
				left: calc( 28.137365031798584% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-7 .uabb-hotspot-tooltip-content {
	font-size: 14px;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 {
				top:calc( 39.51233508248315% - 10px);
				left: calc( 73.52554998619716% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-tooltip-content {
					background: #050505;

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: #050505;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: #050505;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: #050505;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: #050505;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-8 .uabb-hotspot-tooltip-content {
	font-size: 14px;
	text-align: left;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 {
				top:calc( 38.03405152514159% - 10px);
				left: calc( 72.21254529323626% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-9 .uabb-hotspot-tooltip-content {
	font-size: 14px;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 {
				top:calc( 37.94261130509985% - 10px);
				left: calc( 69.8523922294429% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-tooltip-content {
						
					}
				}
				.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 {
	border-radius: 0;
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
	overflow: hidden;
}

.uabb-imgicon-wrap .uabb-image-content img {
	display: inline;
	height: auto !important;
	max-width: 100%;
	width: auto;
	border-radius: inherit;
}

.fl-builder-content .uabb-imgicon-wrap .uabb-image-content img {
	box-sizing: border-box;
	display: block;
}

.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;
}
	/* Global Alignment Css */
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		/* Icon Css */
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-icon-wrap .uabb-icon i:before {

			color: #050505			;
			font-size: 20px;
			height: auto;
			width: auto;
			
				line-height: 20px;
				height: 20px;
				width: 20px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-h6m3owgcr9fk .uabb-hotspot-item-10 .uabb-hotspot-tooltip-content {
	font-size: 14px;
}

						.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 {
				top:calc( 58.027686639720876% - 10px);
				left: calc( 34.908562787233336% - 10px);
				width: 20px;			}

															.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-tooltip-content,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-end .uabb-tour-end {
					color: #ffffff;
				}
								.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-tooltip-content {
					background: var(--fl-global-white);

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


				/* Curved Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 30px;
					-webkit-transform-origin: -2em 50%;
					transform-origin: -2em 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 30px;
					-webkit-transform-origin: calc(100% + 2em) 50%;
					transform-origin: calc(100% + 2em) 50%;
					-webkit-transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
					transform: translate3d(0,50%,0) rotate3d(1,1,1,-30deg);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-curved.uabb-tooltip-left .uabb-hotspot-svg {
					transform: scale3d(-1,1,1) translateY(-50%);
					left: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-curved.uabb-tooltip-right .uabb-hotspot-svg {
					transform: translateY(-50%);
					right: calc( 100% - 2px );
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11.uabb-hotspot-hover .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content {
					opacity: 1;
					-webkit-transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					transform: translate3d(0,50%,0) rotate3d(0,0,0,0);
					pointer-events: auto;
				}

				/* Classic Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					border-left-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					border-right-color: var(--fl-global-white);
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					border-top-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					border-bottom-color: var(--fl-global-white);
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content {
					right: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-right: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content {
					bottom: 100%;
					margin-bottom: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content {
					left: 100%;
					top: 50%;
					transform: translateY(-50%) !important;
					margin-left: 10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content {
					top: 100%;
					margin-top: 10px;
					left: 50%;
					transform: translateX(-50%)!important;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-top .uabb-hotspot-tooltip-content::after {
					top: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-bottom .uabb-hotspot-tooltip-content::after {
					bottom: 100%;
					left: 50%;
					margin-left: -10px;
				}

				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-left .uabb-hotspot-tooltip-content::after {
					top: 50%;
					left: 100%;
					margin-top: -10px;
				}


				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-tooltip-style-classic.uabb-tooltip-right .uabb-hotspot-tooltip-content::after {
					top: 50%;
					right: 100%;
					margin-top: -10px;
				}

				/* Sharp Tooltip Style */

				.fl-node-h6m3owgcr9fk .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-text {

											}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-text {

					}
					.fl-node-h6m3owgcr9fk .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 768px ) {
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-text {
						
					}
										.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-tooltip-content {
						
					}
				}
				.fl-node-h6m3owgcr9fk .uabb-hotspot-item-11 .uabb-hotspot-tooltip-content {
	font-size: 14px;
}
.fl-node-h6m3owgcr9fk .uabb-hotspot-container {
	width: 800px;
}
@media ( max-width: 768px ) {
 .fl-node-h6m3owgcr9fk.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-3033 .fl-node-0t2aiqs5hl4j {
	display: flex;
	flex-direction: row;
	justify-content: end;
	gap: 10px;
}
 .fl-node-0t2aiqs5hl4j.fl-module-box {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-0t2aiqs5hl4j.fl-module-box.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-builder-content-3033 .fl-node-fzutliq13w6o {
	display: flex;
	flex-direction: row;
	justify-content: end;
	gap: 10px;
}
@media(max-width: 768px) {
	.fl-builder-content-3033 .fl-node-fzutliq13w6o {
		flex-direction: column;
		gap: 5px;
	}
	.fl-builder-content-3033 .fl-node-fzutliq13w6o > :not( .fl-block-overlay, .fl-drop-target ) {
		min-width: 161px;
	}
	:where( .fl-builder-content-3033 .fl-node-fzutliq13w6o > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
	}
}
@media ( max-width: 768px ) {
 .fl-node-fzutliq13w6o.fl-module-box.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-builder-content-3033 .fl-node-k61wf2bs3y5l {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
@media(max-width: 768px) {
	.fl-builder-content-3033 .fl-node-k61wf2bs3y5l {
		justify-content: space-between;
		align-items: center;
		gap: 0px;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-k61wf2bs3y5l.fl-module-box.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-row .fl-col h5.fl-node-0ji98tgfqump,
		.fl-row .fl-col h5.fl-node-0ji98tgfqump a,
		h5.fl-node-0ji98tgfqump,
		h5.fl-node-0ji98tgfqump a {
	color: var(--fl-global-white);
}
.fl-node-0ji98tgfqump.fl-module-heading, .fl-node-0ji98tgfqump.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
}
@media(max-width: 992px) {
	.fl-node-0ji98tgfqump.fl-module-heading, .fl-node-0ji98tgfqump.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	.fl-node-0ji98tgfqump.fl-module-heading, .fl-node-0ji98tgfqump.fl-module-heading :where(a, q, p, span) {
		font-size: 16px;
	}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }


.fl-node-sbtgawyh5kqm .fl-icon i, .fl-node-sbtgawyh5kqm .fl-icon i:before {
	font-size: 30px;
}
.fl-node-sbtgawyh5kqm .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-sbtgawyh5kqm.fl-module-icon {
	text-align: left;
}
.fl-node-sbtgawyh5kqm .fl-icon i:hover, .fl-node-sbtgawyh5kqm .fl-icon i:hover:before, .fl-node-sbtgawyh5kqm .fl-icon a:hover i, .fl-node-sbtgawyh5kqm .fl-icon a:hover i:before {
	color: var(--fl-global-red);
}
@media(max-width: 1200px) {
	.fl-node-sbtgawyh5kqm .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-sbtgawyh5kqm .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-sbtgawyh5kqm .fl-icon i, .fl-node-sbtgawyh5kqm .fl-icon i:before {
		font-size: 16px;
	}
	.fl-node-sbtgawyh5kqm .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
	.fl-node-sbtgawyh5kqm.fl-module-icon {
		text-align: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-sbtgawyh5kqm.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:3px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-builder-content-3033 .fl-node-fuberdoz9vwj {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
@media(max-width: 768px) {
	.fl-builder-content-3033 .fl-node-fuberdoz9vwj {
		justify-content: space-between;
		align-items: center;
		gap: 3px;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-fuberdoz9vwj.fl-module-box.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-row .fl-col h5.fl-node-9vlqbjicm1we,
		.fl-row .fl-col h5.fl-node-9vlqbjicm1we a,
		h5.fl-node-9vlqbjicm1we,
		h5.fl-node-9vlqbjicm1we a {
	color: var(--fl-global-white);
}
.fl-node-9vlqbjicm1we.fl-module-heading, .fl-node-9vlqbjicm1we.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
}
@media(max-width: 992px) {
	.fl-node-9vlqbjicm1we.fl-module-heading, .fl-node-9vlqbjicm1we.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	.fl-node-9vlqbjicm1we.fl-module-heading, .fl-node-9vlqbjicm1we.fl-module-heading :where(a, q, p, span) {
		font-size: 16px;
	}
}



.fl-node-5hxflk0csa1b .fl-icon i, .fl-node-5hxflk0csa1b .fl-icon i:before {
	font-size: 30px;
	color: #f77e01;
}
.fl-node-5hxflk0csa1b .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-5hxflk0csa1b.fl-module-icon {
	text-align: left;
}
.fl-node-5hxflk0csa1b .fl-icon i:hover, .fl-node-5hxflk0csa1b .fl-icon i:hover:before, .fl-node-5hxflk0csa1b .fl-icon a:hover i, .fl-node-5hxflk0csa1b .fl-icon a:hover i:before {
	color: #804D35;
}
@media(max-width: 1200px) {
	.fl-node-5hxflk0csa1b .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-5hxflk0csa1b .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-5hxflk0csa1b .fl-icon i, .fl-node-5hxflk0csa1b .fl-icon i:before {
		font-size: 18px;
	}
	.fl-node-5hxflk0csa1b .fl-icon-wrap .fl-icon-text {
		height: 31.5px;
	}
	.fl-node-5hxflk0csa1b.fl-module-icon {
		text-align: right;
	}
}
@media ( max-width: 768px ) {
 .fl-node-5hxflk0csa1b.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

	.fl-node-gv9j8ml53rp6 .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-gv9j8ml53rp6 .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/02/Andrew-Huhn-Head-Shot-crop-scaled-1.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-gv9j8ml53rp6 .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-gv9j8ml53rp6 .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-gv9j8ml53rp6 .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-gv9j8ml53rp6 .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-gv9j8ml53rp6 .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-gv9j8ml53rp6 .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-gv9j8ml53rp6 .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-gv9j8ml53rp6 .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-gv9j8ml53rp6 .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-gv9j8ml53rp6 .uabb-flip-box-section {
					}

		
			}
	.fl-node-gv9j8ml53rp6 .uabb-front {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-gv9j8ml53rp6 .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-gv9j8ml53rp6 .uabb-front .uabb-text-editor {
	font-weight: 700;
}

	.fl-node-orja4wu16dhx .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-orja4wu16dhx .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/01/Scott-Cozens-2-1.png");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-orja4wu16dhx .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-orja4wu16dhx .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-orja4wu16dhx .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-orja4wu16dhx .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-orja4wu16dhx .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-orja4wu16dhx .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-orja4wu16dhx .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-orja4wu16dhx .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-orja4wu16dhx .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-orja4wu16dhx .uabb-flip-box-section {
					}

		
			}
	.fl-node-orja4wu16dhx .uabb-front {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-orja4wu16dhx .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-orja4wu16dhx .uabb-front .uabb-text-editor {
	font-weight: 700;
}
.fl-node-lzscg7r698x3.fl-module-heading, .fl-node-lzscg7r698x3.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-lzscg7r698x3.fl-module-heading, .fl-node-lzscg7r698x3.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
:where(.fl-builder-content .fl-node-bs3ia4uf7mjr.fl-module-rich-text.fl-rich-text *) {
	color: inherit;
}
.fl-builder-content .fl-node-bs3ia4uf7mjr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-bs3ia4uf7mjr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-bs3ia4uf7mjr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-bs3ia4uf7mjr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-bs3ia4uf7mjr.fl-module-rich-text {
	margin-top:0px;
}
@media ( max-width: 992px ) {
 .fl-node-bs3ia4uf7mjr.fl-module-rich-text.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-bs3ia4uf7mjr.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.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],
.uabb-gf-style button[type=submit],
.uabb-gf-style button[type=button] {
	-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 .gform_wrapper .gfield .ginput_container_select select {
	background-image: none;
}

.uabb-gf-style .gform_wrapper .gfield .ginput_container_select .chosen-container-single .chosen-single {
	background-image: 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 Awesome 5 Pro', 'Font Awesome 6 Free', 'Font Awesome 6 Pro', FontAwesome;
    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-y32eo1u7405w {
	width: 100%;
}

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

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

}

/* Input Fields CSS */

.fl-node-y32eo1u7405w .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-y32eo1u7405w .gform_wrapper form .gform_body textarea,
.fl-node-y32eo1u7405w .gform_wrapper .gfield .ginput_container select,
.fl-node-y32eo1u7405w .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {

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


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

	outline: none;

	line-height: 1.3;

	text-align: left;

	color: ;

	
	background: ;
}

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

.fl-node-y32eo1u7405w .gform_wrapper .gfield .gfield_description {

			color: #000000;
	}


.fl-node-y32eo1u7405w .gform_wrapper .gfield .ginput_container span label {
	}
.fl-node-y32eo1u7405w .uabb-gf-style form .gform_body .gfield_label,
.fl-node-y32eo1u7405w .uabb-gf-style form .gf_progressbar_title,
.fl-node-y32eo1u7405w .uabb-gf-style form .gf_page_steps {

	margin-bottom: px;

}
	.fl-node-y32eo1u7405w .gform_wrapper .gfield .ginput_container span label {

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

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

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

			}







/* Button CSS */
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit],
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button],
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button],
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button],
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit],
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit],
		.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
		.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
		.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
		.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
		.fl-node-y32eo1u7405w .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-y32eo1u7405w .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 *)) {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:#ffffff;	}
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit]:hover,
	.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style [type="button"]:hover,
	.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:hover,
	.fl-node-y32eo1u7405w .uabb-gf-style [type="button"]:hover,
	.fl-node-y32eo1u7405w .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-y32eo1u7405w .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 {
		border-color:var(--fl-global-white);		color:var(--fl-global-white);		background:var(--fl-global-blue);	}
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer {
	text-align: left;
	justify-content: flex-start;
			margin: 0;
	}

.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit],
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
.fl-node-y32eo1u7405w .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-y32eo1u7405w .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 *)) {

	
	
	color: var(--fl-global-blue);
	
}

.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit]:hover,
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"]:hover,
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:hover,
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"]:hover,
.fl-node-y32eo1u7405w .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-y32eo1u7405w .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 {
	}


.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit]:active,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit]:active,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button]:active,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button]:active,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button]:active,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit]:active,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit]:active,
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:active,
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"]:active,
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"]:active,
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"]:active,
.fl-node-y32eo1u7405w .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-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style input[type=tel],
.fl-node-y32eo1u7405w .uabb-gf-style input[type=email],
.fl-node-y32eo1u7405w .uabb-gf-style input[type=text],
.fl-node-y32eo1u7405w .uabb-gf-style input[type=url],
.fl-node-y32eo1u7405w .uabb-gf-style input[type=number],
.fl-node-y32eo1u7405w .uabb-gf-style input[type=date],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gfield select,
.fl-node-y32eo1u7405w .uabb-gf-style textarea,
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gfield .ginput_container_checkbox,
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .ginput_container_textarea textarea {
	}

/* Typography CSS */

.fl-node-y32eo1u7405w .uabb-gf-style .uabb-gf-form-title {

	display: none;

	}

.fl-node-y32eo1u7405w .uabb-gf-style p.uabb-gf-form-desc {

	display: none;

	}

	
	

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

.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit],
.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit],
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
.fl-node-y32eo1u7405w .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-y32eo1u7405w .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;
	
	}


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

	}


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

.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .validation_message {

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

			text-transform: ;
	
	}

.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper div.validation_error {

	color: ;

	background: ;

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



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

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

.fl-node-y32eo1u7405w .gform_wrapper .gfield.gfield_error {
	}

.fl-node-y32eo1u7405w .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-y32eo1u7405w .gform_wrapper .gfield_error .ginput_container select,
.fl-node-y32eo1u7405w .gform_wrapper .gfield_error .ginput_container textarea,
.fl-node-y32eo1u7405w .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
		}

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

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

		
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper div.validation_error {

					}

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

		.fl-node-y32eo1u7405w .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-y32eo1u7405w .gform_wrapper textarea,
		.fl-node-y32eo1u7405w .gform_wrapper .gfield .ginput_container select,
		.fl-node-y32eo1u7405w .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
					}

		.fl-node-y32eo1u7405w .uabb-gf-style {
					}
					.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit],
			.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
			.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
			.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
			.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
			.fl-node-y32eo1u7405w .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-y32eo1u7405w .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 *)) {
				padding-top:;padding-bottom:;padding-left:;padding-right:;			}
			}
	@media ( max-width: 768px ) {

		
		.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper div.validation_error {

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

		.fl-node-y32eo1u7405w .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-y32eo1u7405w .gform_wrapper textarea,
		.fl-node-y32eo1u7405w .gform_wrapper .gfield .ginput_container select,
		.fl-node-y32eo1u7405w .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single {
					}

		.fl-node-y32eo1u7405w .uabb-gf-style {
					}
					.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit],
			.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit],
			.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
			.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
			.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"],
			.fl-node-y32eo1u7405w .uabb-gf-style [type="button"],
			.fl-node-y32eo1u7405w .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-y32eo1u7405w .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 *)) {
				padding-top:;padding-bottom:;padding-left:;			}
			}
	.fl-node-y32eo1u7405w .uabb-gf-style input[type=tel], .fl-node-y32eo1u7405w .uabb-gf-style input[type=email], .fl-node-y32eo1u7405w .uabb-gf-style input[type=text], .fl-node-y32eo1u7405w .uabb-gf-style input[type=url], .fl-node-y32eo1u7405w .uabb-gf-style input[type=number], .fl-node-y32eo1u7405w .uabb-gf-style input[type=date],
    .fl-node-y32eo1u7405w .uabb-gf-style select, .fl-node-y32eo1u7405w .uabb-gf-style textarea, .fl-node-y32eo1u7405w .gform_wrapper .ginput_container_select .chosen-container-single .chosen-single, .fl-node-y32eo1u7405w .chosen-container .chosen-container-single .chosen-container-active .chosen-with-drop, .fl-node-y32eo1u7405w .gform_wrapper .ginput_container_select .chosen-container-active.chosen-with-drop .chosen-single, .fl-node-y32eo1u7405w .gform_wrapper .chosen-container .chosen-drop {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #cccccc;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit],.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button], .fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button], .fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button],.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit],.fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit],.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type='submit'],.fl-node-y32eo1u7405w .uabb-gf-style [type='button'],.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type='submit'],.fl-node-y32eo1u7405w .uabb-gf-style [type='button'],.fl-node-y32eo1u7405w .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-y32eo1u7405w .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-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: var(--fl-global-blue);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer input[type=submit],.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=submit],.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper .gform_footer button[type=button], .fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=button], .fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=button], .fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer input[type=submit], .fl-node-y32eo1u7405w .uabb-gf-style .gform_page .gform_page_footer button[type=submit],.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type='submit'],.fl-node-y32eo1u7405w .uabb-gf-style [type='button'],.fl-node-y32eo1u7405w .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-y32eo1u7405w .uabb-gf-style .gform-theme--framework.gform-theme.gform_wrapper input:is([type='submit'],.fl-node-y32eo1u7405w .uabb-gf-style [type='button'],.fl-node-y32eo1u7405w .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-y32eo1u7405w .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-weight: 700;
	font-size: 16px;
}
.fl-node-y32eo1u7405w .uabb-gf-style .gform_wrapper div.validation_error {
	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-y32eo1u7405w > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-y32eo1u7405w.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

	.fl-node-qk8vw2nms3dy .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-qk8vw2nms3dy .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2024/12/Dilip-Liyanage-Head-Shot-V2.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-qk8vw2nms3dy .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-qk8vw2nms3dy .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-qk8vw2nms3dy .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-qk8vw2nms3dy .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-qk8vw2nms3dy .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-qk8vw2nms3dy .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-qk8vw2nms3dy .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-qk8vw2nms3dy .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-qk8vw2nms3dy .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-qk8vw2nms3dy .uabb-flip-box-section {
					}

		
			}
	.fl-node-qk8vw2nms3dy .uabb-front {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-qk8vw2nms3dy .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-qk8vw2nms3dy .uabb-front .uabb-text-editor {
	font-weight: 700;
}

	.fl-node-9xc75pf4rnyd .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-9xc75pf4rnyd .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/01/Artboard-84x-2-removebg-preview.png");background-repeat: no-repeat;background-size: cover;background-position: center center;}


.fl-node-9xc75pf4rnyd .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-9xc75pf4rnyd .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-9xc75pf4rnyd .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-9xc75pf4rnyd .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-9xc75pf4rnyd .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-9xc75pf4rnyd .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-9xc75pf4rnyd .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-9xc75pf4rnyd .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-9xc75pf4rnyd .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-9xc75pf4rnyd .uabb-flip-box-section {
					}

		
			}
	.fl-node-9xc75pf4rnyd .uabb-front {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-9xc75pf4rnyd .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-9xc75pf4rnyd .uabb-front .uabb-text-editor {
	font-weight: 700;
}

	.fl-node-nsxdgc7bzp0w .uabb-flip-box {
		height: 370px;
	}
	

.fl-node-nsxdgc7bzp0w .uabb-front {
	background: url( "https://popesnz.co.nz/wp-content/uploads/2025/02/Dave-Miller-Head-Shot-crop-scaled-1-1.jpg");background-repeat: no-repeat;background-size: cover;background-position: center top;}


.fl-node-nsxdgc7bzp0w .uabb-back {
	background-color: var(--fl-global-blue);}

.fl-node-nsxdgc7bzp0w .uabb-front .uabb-text-editor {

			color :
		var(--fl-global-orange);
	
	margin-top: 0;margin-bottom: 25px;}


.fl-node-nsxdgc7bzp0w .uabb-flip-box-section {
	padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
}

.fl-node-nsxdgc7bzp0w .uabb-front .uabb-face-text-title {
	margin-top: 0;margin-bottom: 12px;}


.fl-node-nsxdgc7bzp0w .uabb-back .uabb-text-editor {

			color :
		var(--fl-global-white);
	
	margin-top: 0;margin-bottom: 0;}


.fl-node-nsxdgc7bzp0w .uabb-button-wrap {
	margin-top: 15px;margin-bottom: 0;}

.fl-node-nsxdgc7bzp0w .uabb-imgicon-wrap {
	margin-top: 25px;margin-bottom: 15px;}

.fl-node-nsxdgc7bzp0w .uabb-back .uabb-back-text-title {
	margin-top: 25px;margin-bottom: 12px;}


	@media ( max-width: 992px ) {

		.fl-node-nsxdgc7bzp0w .uabb-flip-box-section {
					}

		
			}

	@media ( max-width: 768px ) {

		.fl-node-nsxdgc7bzp0w .uabb-flip-box-section {
					}

		
			}
	.fl-node-nsxdgc7bzp0w .uabb-front {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #dbdbdb;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
}
.fl-node-nsxdgc7bzp0w .uabb-back {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.2);
}
.fl-node-nsxdgc7bzp0w .uabb-front .uabb-text-editor {
	font-weight: 700;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.MeetheTeam .uabb-face.uabb-front::after
{
        content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
/* End Layout CSS */

.fl-node-9vlqbjicm1we {
  display: flex;
}
.fl-node-y32eo1u7405w {
  /* Reduce space between Gravity Form rows */
}
.fl-node-y32eo1u7405w .gform_fields {
  row-gap: 0px !important;
}
/* 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";
	}
}


																				
					
					
					
																																																										
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																										