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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 1024px) { /* 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: 767px) { /* 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: 1025px) 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: 768px) and (max-width: 1024px) {
	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: 767px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1440px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}







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






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





 .fl-node-5e8dbb9f64f62 > .fl-row-content-wrap {
	padding-top:43px;
	padding-right:20px;
	padding-bottom:72px;
	padding-left:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb9f64f62.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:15px;
	padding-bottom:20px;
	padding-left:15px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb9f64f62.fl-row > .fl-row-content-wrap {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
}

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





 .fl-node-5e8dbb33f00c9 > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:36px;
	padding-left:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f00c9.fl-row > .fl-row-content-wrap {
	padding-top:10px;
	padding-right:15px;
	padding-bottom:10px;
	padding-left:15px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f00c9.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}

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





.fl-node-5e8dbb33f0324.fl-row-fixed-width, .fl-node-5e8dbb33f0324 .fl-row-fixed-width {
	max-width: 1400px;
}
 .fl-node-5e8dbb33f0324 > .fl-row-content-wrap {
	margin-bottom:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f0324.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f0324.fl-row > .fl-row-content-wrap {
	margin-bottom:30px;
}
}
 .fl-node-5e8dbb33f0324 > .fl-row-content-wrap {
	padding-right:30px;
	padding-left:30px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f0324.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}

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





.fl-node-5e8dbb33f0450 > .fl-row-content-wrap {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #858585;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
 .fl-node-5e8dbb33f0450 > .fl-row-content-wrap {
	margin-right:20px;
	margin-bottom:100px;
	margin-left:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f0450.fl-row > .fl-row-content-wrap {
	margin-right:15px;
	margin-bottom:40px;
	margin-left:15px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f0450.fl-row > .fl-row-content-wrap {
	margin-right:10px;
	margin-bottom:20px;
	margin-left:10px;
}
}
 .fl-node-5e8dbb33f0450 > .fl-row-content-wrap {
	padding-top:57px;
	padding-right:50px;
	padding-bottom:77px;
	padding-left:50px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f0450.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f0450.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}

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



.fl-node-5e8dbb33f04c8 {
	width: 33.33%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb33f04c8 {
		width: 50% !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: 767px) {
	.fl-builder-content .fl-node-5e8dbb33f04c8 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-5e8dbb33f04c8 > .fl-col-content {
	padding-right:40px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f04c8.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f04c8.fl-col > .fl-col-content {
	padding-right:0px;
}
}




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




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




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




.fl-node-5e8dbb9f64cea {
	width: 50%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb9f64cea {
		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: 767px) {
	.fl-builder-content .fl-node-5e8dbb9f64cea {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




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




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




.fl-node-5e8dbb9f64d25 {
	width: 50%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb9f64d25 {
		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: 767px) {
	.fl-builder-content .fl-node-5e8dbb9f64d25 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-5e8dbb9f64d25 > .fl-col-content {
	padding-right:20%;
	padding-left:20%;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb9f64d25.fl-col > .fl-col-content {
	padding-top:0%;
	padding-right:5%;
	padding-bottom:0%;
	padding-left:5%;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb9f64d25.fl-col > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}
}




.fl-node-5e8dbb33f0504 {
	width: 41.66%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb33f0504 {
		width: 50% !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: 767px) {
	.fl-builder-content .fl-node-5e8dbb33f0504 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-5e8dbb33f0504 > .fl-col-content {
	margin-top:15px;
}
 .fl-node-5e8dbb33f0504 > .fl-col-content {
	padding-right:40px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f0504.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




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




.fl-node-5e8dbb33f0540 {
	width: 25.01%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb33f0540 {
		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-node-5e8dbb33f0540 > .fl-col-content {
	margin-top:15px;
}
 .fl-node-5e8dbb33f0540 > .fl-col-content {
	padding-left:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f0540.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-5e8c6c6e4334f {
	width: 33.33%;
}
 .fl-node-5e8c6c6e4334f > .fl-col-content {
	padding-right:40px;
	padding-left:40px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8c6c6e4334f.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
}




.fl-node-5e8c6c6e43392 {
	width: 33.34%;
}
.fl-node-5e8c6c6e43392 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #666666;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
}
@media(max-width: 767px) {
	.fl-node-5e8c6c6e43392 > .fl-col-content {
		border-top-width: 0px;
		border-right-width: 0px;
		border-bottom-width: 0px;
		border-left-width: 0px;
	}
}
 .fl-node-5e8c6c6e43392 > .fl-col-content {
	padding-right:40px;
	padding-left:40px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8c6c6e43392.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
}




.fl-node-5e8c6c6e433d4 {
	width: 33.33%;
}
 .fl-node-5e8c6c6e433d4 > .fl-col-content {
	padding-right:40px;
	padding-left:40px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8c6c6e433d4.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
}




.fl-node-5e8dbb33f0082 {
	width: 100%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb33f0082 {
		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-node-5e8dbb33f0082 > .fl-col-content {
	padding-top:6px;
}




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




.fl-node-5e8dbb33ef933 {
	width: 57%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb33ef933 {
		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-node-5e8dbb33ef933 > .fl-col-content {
	padding-top:50px;
	padding-bottom:50px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33ef933.fl-col > .fl-col-content {
	padding-right:10%;
	padding-left:10%;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33ef933.fl-col > .fl-col-content {
	padding-top:30px;
	padding-right:0px;
	padding-bottom:30px;
	padding-left:0px;
}
}




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




.fl-node-5e8dbb33ef9a7 {
	width: 10%;
}




.fl-node-5e8dbb33ef96d {
	width: 33%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-5e8dbb33ef96d {
		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-node-5e8dbb33ef96d > .fl-col-content {
	padding-left:30px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33ef96d.fl-col > .fl-col-content {
	padding-right:20%;
	padding-left:20%;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33ef96d.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
.woocommerce .fl-module-fl-woo-breadcrumb .woocommerce-breadcrumb {
	margin: 0;
}.fl-node-5e8dbb33f0414 .fl-module-content .woocommerce-breadcrumb {

	text-align: left;

		font-size: 12px;
	}

.fl-node-5e8dbb33f0414 .fl-module-content .woocommerce-breadcrumb {
	color: #666666;
}

.fl-node-5e8dbb33f0414 .fl-module-content .woocommerce-breadcrumb a {
	color: #666666;
}
 .fl-node-5e8dbb33f0414 > .fl-module-content {
	margin-bottom:20px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f0414.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */

/* Product Slider */

/* Wrappers */
body.rtl .fl-module-woocommerce-product-alt-colours .bx-viewport {
	direction: ltr;
}
.fl-module-woocommerce-product-alt-colours .bx-wrapper {
	max-width: 100%;
	margin: 0 auto 40px;
}
.fl-module-woocommerce-product-alt-colours .bx-controls {
	width: 100%;
	position: absolute;
	bottom: 0;
	margin-top: 20px;
}

.fl-woocommerce-product-alt-colours-navigation{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 20;
	margin-top: -16px;
}
.fl-woocommerce-product-alt-colours-navigation a{
	position: absolute;
	display: inline-block;
	opacity: .7;
}
.fl-woocommerce-product-alt-colours-navigation a:hover{ opacity: 1; }

.fl-woocommerce-product-alt-colours-navigation .carousel-prev{ left: 0; }
.fl-woocommerce-product-alt-colours-navigation .carousel-next{ right: 0; }

.fl-woocommerce-product-alt-colours-navigation .fl-woocommerce-product-alt-colours-svg-container{
	position: relative;
	width: 32px;
	height: 32px;
}
.fl-woocommerce-product-alt-colours-navigation svg{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.fl-woocommerce-product-alt-colours-navigation path{ fill: #fff; }

.fl-woocommerce-product-alt-colours-navigation a.disabled,
.bx-controls a.disabled {
	pointer-events: none;
}

/*Module styles =======================================*/

/* Product Carousel */
.fl-woocommerce-product-alt-colours {
	margin: 0 auto;
	position: relative;
}

.fl-woocommerce-product-alt-colours-wrapper:before,
.fl-woocommerce-product-alt-colours-wrapper:after {
	content: '';
	display: table;
}
.fl-woocommerce-product-alt-colours-wrapper:after {
	clear: both;
}

.fl-woocommerce-product-alt-colours-product {
	position: absolute;
	top: 0;
	float: left;
	visibility: hidden;
	background: #fff;
}

.fl-woocommerce-product-alt-colours-loaded .fl-woocommerce-product-alt-colours-product {
    position: relative;
    visibility: visible;
}

.fl-woocommerce-product-alt-colours-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-woocommerce-product-alt-colours-image .fl-photo-content {
	display: block;
}

/* Layout - product grid */
.fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-product {
	border: 1px solid #e6e6e6;
	border: 1px solid rgba(0,0,0,0.1);
}
.fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-text {
	padding: 20px;
}
.fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-title {
	padding-bottom: 7px;
}
body .fl-woocommerce-product-alt-colours-text,
body .fl-woocommerce-product-alt-colours-content p {
	font-size: 14px;
	line-height: 22px;
}
body .fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}

body .fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
body .fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-meta {
	font-size: 14px;
	padding-bottom: 10px;
}

/* Layout - product gallery */

.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-link {
	display: block;
	height: 100%;
	text-decoration: none;
}
.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-img {
	position: relative;
	z-index: 1;
}

.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-align: center;
	filter: alpha(opacity = 0);
	opacity: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}
.fl-woocommerce-product-alt-colours-gallery .fl-product-no-crop .fl-woocommerce-product-alt-colours-text-wrap,
.fl-woocommerce-product-alt-colours-gallery .fl-product-no-crop .fl-woocommerce-product-alt-colours-text{
	position: relative;
	padding: 20px;
	top: 0;
	left: 0;
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-link:hover .fl-woocommerce-product-alt-colours-text-wrap,
.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-product.fl-product-no-thumb .fl-woocommerce-product-alt-colours-text-wrap {
	filter: alpha(opacity = 100);
	opacity: 1;
}

.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-text {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-text h2.fl-woocommerce-product-alt-colours-title {
	font-size: 22px;
	margin: 0 0 5px 0;
}

/* slide ratio - for slides with no thumb */
.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-ratio{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-ratio{ padding-bottom: 70%; }

.fl-woocommerce-product-alt-colours-gallery .fl-carousel-icon{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.fl-woocommerce-product-alt-colours-gallery .fl-carousel-icon i,
.fl-woocommerce-product-alt-colours-gallery .fl-carousel-icon i:before{
	width: 24px;
	height: 24px;
	font-size: 24px;
}

/* Gallery Transitions */
.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-text,
.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-link:hover .fl-woocommerce-product-alt-colours-text,
.fl-woocommerce-product-alt-colours-gallery .fl-woocommerce-product-alt-colours-product.fl-product-no-thumb .fl-woocommerce-product-alt-colours-text{
	-webkit-transform: translate3d(-50%,-50%,0); 
	   -moz-transform: translate3d(-50%,-50%,0); 
	    -ms-transform: translate(-50%,-50%); 
			transform: translate3d(-50%,-50%,0); 
}

/* Common Styles */
body .fl-woocommerce-product-alt-colours-text a {
	text-decoration: none;
}
@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }/**
 * This file should contain frontend styles that 
 * will be applied to individual module instances.
 *
 * You have access to three variables in this file: 
 * 
 * $module An instance of your module class.
 * $id The module's ID.
 * $settings The module's settings.
 *
 */
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours h1,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours h2,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours h3,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours h4,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours h5,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours h6,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours p,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours span,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours label,
.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-module .fl-woocommerce-product-alt-colours div{
	text-align: center;
		font-size: 14px;
			line-height: 1.18;
		}
/* carousel css */


	.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-wrapper{
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours .fl-woocommerce-product-alt-colours-product {
	width: 33.33%;
}

.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours .fl-woocommerce-product-alt-colours-product:nth-child(-n+3) {
	position: relative;
}


		.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours{
		color: #000000;
	}
	
	.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-product{
		background-color: #ffffff;
		background-color: rgba(255,255,255,1);
	}

		.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-text a{
		color: #000000;
	}
	
		.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-text a:hover{
		color: #8d8d8d;
	}
	


		.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours {
		padding: 0 48px;
	}
	
	.fl-node-5e8dbb33f0270 .fl-woocommerce-product-alt-colours-navigation path{
			fill: #c2c2c2;
		}

	



        /* end carousel css */


.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-5e8dbb33f05f4 h2.fl-heading a,
.fl-row .fl-col .fl-node-5e8dbb33f05f4 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5e8dbb33f05f4 h2.fl-heading .fl-heading-text *,
.fl-node-5e8dbb33f05f4 h2.fl-heading .fl-heading-text {
	color: #333333;
}
.fl-node-5e8dbb33f05f4.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 24px;
	text-transform: uppercase;
}
 .fl-node-5e8dbb33f05f4 > .fl-module-content {
	margin-bottom:19px;
}
@media (max-width: 767px) { .fl-node-5e8dbb33f05f4 > .fl-module-content { margin-bottom:0px; } }.pp-photo-container .pp-photo-align-left {
    text-align: left;
}
.pp-photo-container .pp-photo-align-center {
    text-align: center;
}
.pp-photo-container .pp-photo-align-right {
    text-align: right;
}

.pp-photo {
	line-height: 0;
	position: relative;
}
.pp-photo-align-left {
	text-align: left;
}
.pp-photo-align-center {
	text-align: center;
}
.pp-photo-align-right {
	text-align: right;
}
.pp-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.pp-photo-content img {
	display: inline;
	max-width: 100%;
}
.fl-builder-content[data-shrink="1"] img.pp-photo-img:not([src$=".svg"]) {
    width: auto;
    height: auto;
}
.fl-builder-content[data-shrink="1"] .shrink-header-fix img.pp-photo-img:not([src$=".svg"]) {
	width: auto !important;
}
.pp-photo-crop-circle img {
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
}
.pp-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
    width: 100%;
}
.pp-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.pp-photo-align-center .pp-photo-caption-below {
	margin: 0 auto;
}
.pp-photo-caption-overlay {
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 10px 15px;
	position: absolute;
	right: 0;
	transition:opacity 0.3s ease-in;
}
.pp-overlay-wrap .pp-overlay-bg {
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s linear;
}
.pp-photo-caption-hover {
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s linear;
}
.pp-photo-container .pp-photo-content:hover .pp-overlay-bg,
.pp-photo-container .pp-photo-content:hover .pp-photo-caption-hover,
.pp-photo-container .pp-photo-content.on-hover .pp-overlay-bg,
.pp-photo-container .pp-photo-content.on-hover .pp-photo-caption-hover {
    opacity: 1;
    transition: opacity .3s linear;
}
.pp-photo-container a:focus {
    outline: none;
}
.pp-photo-container .pp-photo-content .pp-photo-content-inner {
    overflow: hidden;
    position: relative;
}
.pp-photo-content-inner img {
	transition-duration: 0.3s;
}

.pp-photo-rollover .pp-photo-content {
	display: inline-grid;
    grid-template-columns: 1fr;
}
.pp-photo-rollover .pp-photo-content-inner {
	grid-row-start: 1;
    grid-column-start: 1;
	opacity: 1;
	/* transition: none !important; */
}
.pp-photo-rollover .pp-photo-content.is-hover .pp-photo-content-inner:first-child,
.pp-photo-rollover .pp-photo-content:not(.is-hover) .pp-photo-content-inner:last-of-type {
	opacity: 0;
	visibility: hidden;
}

.pp-photo-rollover .pp-overlay-bg,
.pp-photo-rollover .pp-photo-caption-hover {
	display: none !important;
}.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content {
	}


.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }

.fl-node-5e8dbb33f066c .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-5e8dbb33f066c .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
	}

@media only screen and (max-width: 1024px) {
	    .fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 767px) {
	.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-5e8dbb33f066c .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5e8dbb33f066c .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f066c.fl-module > .fl-module-content {
	margin-top:20px;
	margin-bottom:20px;
}
}
.fl-row .fl-col .fl-node-5e8dbb33f0721 h2.fl-heading a,
.fl-row .fl-col .fl-node-5e8dbb33f0721 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5e8dbb33f0721 h2.fl-heading .fl-heading-text *,
.fl-node-5e8dbb33f0721 h2.fl-heading .fl-heading-text {
	color: #666666;
}
.fl-node-5e8dbb33f0721.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 18px;
}
 .fl-node-5e8dbb33f0721 > .fl-module-content {
	margin-bottom:30px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f0721.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-node-5e8dbe461eb05 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-5e8dbe461eb05 .fl-separator {
	border-top-color: #ececec;
	border-top-style: solid;
}
.bb-heading-input.input-small {
	width: 46px !important;
}

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

.pp-heading-content .pp-heading-link {
	text-decoration: none;
}
.pp-heading-content span.heading-title {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator-inline .heading-title {
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	position: relative;
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	border-width: 0;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
	right: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	left: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span {
	padding-left: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span {
	padding-right: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span:before {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span:after {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator--inline {
	display: flex;
	align-items: center;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator {
	flex: 1;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator span {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator--inline.pp-left > .pp-heading-separator:first-of-type,
.pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
	display: none;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
    display: block;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:first-of-type {
    display: none;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type span {
	margin: 0 0 0 auto;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type span {
	margin: 0 auto 0 0;
}

.pp-heading-content .pp-heading-separator {
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before {
	right: 50%;
	left: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:before {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:after {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon:after {
	left: 50%;
	right: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before,
.pp-heading-content .pp-heading-separator.line_with_icon:after {
	content: "";
	position: absolute;
	bottom: 50%;
	border-width: 0;
	top: 50%;
}

.pp-heading-content .pp-heading-separator .heading-icon-image {
	vertical-align: middle;
	box-shadow: none !important;
	max-width: 100%;
}

.pp-heading-content .pp-heading-separator .pp-separator-line {
	max-width: 100%;
	display: block;
}

.pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
}

.pp-heading-content .pp-heading-separator.icon_only span {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:before {
		right: 2%;
	}
}

@media only screen and (max-width: 480px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:before {
		right: 2%;
	}
}@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content {
	text-align: left;
}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading {
		}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
			display: block;
	}


div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #444444;
								text-transform: uppercase;
				}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					margin-left: 0px;
}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 0px;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-sub-heading,
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #000000;
			width: 100px;
			float: left;
	}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1024px) {
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb9f64e37 .pp-heading-content {
				text-align: center;
			}
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 767px) {
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb9f64e37 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
}
div.fl-node-5e8dbb9f64e37 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb9f64e37 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-5e8dbb9f64e37 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb9f64e37 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1024px) {
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
		line-height: 24px;
	}
}
@media(max-width: 767px) {
	div.fl-node-5e8dbb9f64e37 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
		line-height: 22px;
	}
}
.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;
}
.pp-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.pp-modal-wrap.pp-modal-active {
	z-index: 99999;
	visibility: visible;
	opacity: 1;
}
.pp-modal-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
}
.pp-modal-button .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
}

.pp-modal {
    display: block;
    position: relative;
    margin: auto auto;
    opacity: 1;
	outline: 0;
}
.pp-modal-container {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    opacity: 0;
	z-index: 1;
}
.pp-modal.layout-fullscreen {
    max-width: 100%;
    height: auto;
    min-height: 100%;
    margin: 0;
}
/* .pp-modal.layout-standard:not(.position-auto) {
	top: 50%;
	transform: translateY(-50%);
} */
.pp-modal .pp-modal-content {
	height: inherit;
	overflow-y: auto;
	position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}
/* .pp-modal.layout-standard .pp-modal-content {
	max-height: 90vh;
} */
.pp-modal .pp-modal-body {
    overflow: hidden;
	height: inherit;
}
.pp-modal .pp-modal-header {
    display: table;
    width: 100%;
}
.pp-modal .pp-modal-title {
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}

.pp-modal .pp-modal-frame iframe {
	width: 100%;
}

.pp-modal .pp-modal-video-embed {
	position: relative;
	padding-top: 56.25%;
	height: inherit;
}
.pp-modal .pp-modal-video-embed iframe,
.pp-modal .pp-modal-video-embed .wp-video,
.pp-modal .pp-modal-video-embed > video {
	height: 100%;
	width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pp-modal .pp-modal-content.pp-modal-frame:before {
	background-position: 50%;
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
}

.pp-modal .pp-modal-content-inner {
	position: relative;
    height: 100%;
}

.pp-modal-trigger {
    display: inline-block;
    text-decoration: none;
    text-shadow: none;
}
.pp-modal-trigger .pp-button-icon {
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    width: auto;
}
.pp-modal-trigger .pp-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.pp-modal-trigger .pp-modal-trigger-text {
    vertical-align: middle;
}
.pp-modal-close {
    position: relative;
    right: 10px;
    line-height: 0;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    top: 0;
    padding: 5px;
	-webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.pp-modal-close.box-top-right-out {
    position: absolute;
    right: -40px;
}
.pp-modal .pp-modal-close.box-top-left-out {
    position: absolute;
    left: -40px;
    right: 0;
}
.pp-modal-close.win-top-right {
    position: fixed;
}
.pp-modal-close.win-top-left {
    position: fixed;
    right: 0;
}
.pp-modal-close .bar-wrap {
    display: inline-block;
    position: relative;
}
.pp-modal-close .bar-wrap span {
    position: absolute;
    border-radius: 0;
    width: 100%;
    top: 49.5%;
    left: 0px;
}
.pp-modal-close .bar-wrap .bar-1 {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
}
.pp-modal-close .bar-wrap .bar-2 {
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
}
.pp-modal-wrap .modal-visible {
    opacity: 1;
}
.pp-modal .pp-modal-content .fl-row-content-wrap,
.pp-modal .pp-modal-content .fl-builder-module-template {
    padding: 0;
}
.fl-module-pp-modal-box {
    z-index: 2 !important;
}

.pp-modal-wrap .pp-flexbox {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.pp-modal-wrap .pp-flexbox.layout-vertical {
	flex-direction: column;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
	align-self: stretch;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item.object-fit-cover img {
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.pp-modal-wrap .pp-flexbox {
		flex-direction: column;
	}
	.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
		width: 100%;
	}
}@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }body:not(.fl-builder-edit) .fl-node-5e9054cfcfe27 > .fl-module-content {
	margin: 0;
}
	body.fl-builder-edit .fl-node-5e9054cfcfe27 .pp-modal-wrap {
		display: none;
	}

.fl-node-5e9054cfcfe27 .pp-modal-button {
	text-align: left;
}
.fl-node-5e9054cfcfe27 .pp-modal-trigger,
.fl-node-5e9054cfcfe27 .pp-modal-button .pp-modal-trigger,
.fl-node-5e9054cfcfe27 .pp-modal-button .pp-modal-trigger .pp-modal-trigger-icon {
		color: #ffffff;
			background-color: #428bca;
					text-align: center;
	text-decoration: none;
}


.fl-node-5e9054cfcfe27 .pp-modal-trigger .pp-button-icon {
	}

.fl-builder-content .fl-node-5e9054cfcfe27 .pp-modal-trigger:hover,
.fl-node-5e9054cfcfe27 .pp-modal-trigger:hover {
        color: #f7f7f7;
			background-color: #444444;
	        border-color: #222222;
}


.fl-node-5e9054cfcfe27 .pp-modal-height-auto,
#modal-5e9054cfcfe27.pp-modal-height-auto {
    display: block !important;
    position: absolute;
    top: -99999px;
    width: 550px;
    visibility: hidden;
}

.fl-node-5e9054cfcfe27 .pp-modal-height-auto .pp-modal-overlay,
#modal-5e9054cfcfe27.pp-modal-height-auto .pp-modal-overlay {
    display: none !important;
}

.fl-node-5e9054cfcfe27 .pp-modal,
#modal-5e9054cfcfe27 .pp-modal {
			background-color: #ffffff;
	}




.fl-node-5e9054cfcfe27 .pp-modal.layout-standard,
#modal-5e9054cfcfe27 .pp-modal.layout-standard {
    width: 550px;
        max-width: 90%;
}

.fl-node-5e9054cfcfe27 .pp-modal .pp-modal-header,
#modal-5e9054cfcfe27 .pp-modal .pp-modal-header {
			background-color: #ffffff;
	    border-bottom: 1px solid #eeeeee;
}

	.fl-node-5e9054cfcfe27 .pp-modal .pp-modal-header,
	#modal-5e9054cfcfe27 .pp-modal .pp-modal-header {
					border-top-left-radius: 0px;
						border-top-right-radius: 0px;
				}
	
.fl-node-5e9054cfcfe27 .pp-modal .pp-modal-title,
#modal-5e9054cfcfe27 .pp-modal .pp-modal-title {
    padding: 10px 15px;
    color: #444444;
}
.fl-node-5e9054cfcfe27 .pp-modal .pp-modal-content,
#modal-5e9054cfcfe27 .pp-modal .pp-modal-content {
        padding: 10px;
}
.fl-node-5e9054cfcfe27 .pp-modal .pp-modal-content.pp-modal-frame:before,
#modal-5e9054cfcfe27 .pp-modal .pp-modal-content.pp-modal-frame:before {
    background: url(https://daviseyecare.com/wp-content/plugins/bbpowerpack/modules/pp-modal-box/loader.gif) no-repeat;
}
.fl-node-5e9054cfcfe27 .pp-modal .pp-modal-content-inner,
#modal-5e9054cfcfe27 .pp-modal .pp-modal-content-inner {
        overflow: hidden;
        padding: 0px;
}

.fl-node-5e9054cfcfe27 .pp-modal-close,
#modal-5e9054cfcfe27 .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-5e9054cfcfe27 .pp-modal-close:hover,
#modal-5e9054cfcfe27 .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-5e9054cfcfe27 .pp-modal-close.box-top-right,
#modal-5e9054cfcfe27 .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-5e9054cfcfe27 .pp-modal-close.box-top-left,
#modal-5e9054cfcfe27 .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-5e9054cfcfe27 .pp-modal-close.win-top-right,
#modal-5e9054cfcfe27 .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-5e9054cfcfe27 .pp-modal-close.win-top-left,
#modal-5e9054cfcfe27 .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-5e9054cfcfe27 .pp-modal-close .bar-wrap,
#modal-5e9054cfcfe27 .pp-modal-close .bar-wrap {
    width: 100%;
    height: 100%;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-5e9054cfcfe27 .pp-modal-close .bar-wrap span,
#modal-5e9054cfcfe27 .pp-modal-close .bar-wrap span {
    background: #ffffff;
    height: 2px;
    margin-top: -1px;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-5e9054cfcfe27 .pp-modal-close:hover .bar-wrap span,
#modal-5e9054cfcfe27 .pp-modal-close:hover .bar-wrap span {
    background: #dddddd;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-5e9054cfcfe27 .pp-modal-container.fadeIn.animated,
#modal-5e9054cfcfe27 .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-5e9054cfcfe27 .pp-modal-container.fadeOut.animated,
#modal-5e9054cfcfe27 .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-5e9054cfcfe27 .has-overlay-animation .pp-modal-container,
#modal-5e9054cfcfe27.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.8);
	}

.fl-node-5e9054cfcfe27 .pp-modal-wrap:not(.has-overlay-animation) .pp-modal-overlay,
#modal-5e9054cfcfe27:not(.has-overlay-animation) .pp-modal-overlay {
    		background-color: rgba(0,0,0,0.8);
		}

@media only screen and (max-width: 0px) {
    .fl-node-5e9054cfcfe27 .pp-modal.layout-fullscreen,
    #modal-5e9054cfcfe27 .pp-modal.layout-fullscreen {
        top: 0 !important;
        margin: 10px !important;
    }
    .fl-node-5e9054cfcfe27 .pp-modal.layout-standard,
    #modal-5e9054cfcfe27 .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .fl-node-5e9054cfcfe27 .pp-modal.layout-standard,
    #modal-5e9054cfcfe27 .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-5e9054cfcfe27 .pp-modal-button {
	text-align: left;
}
.fl-node-5e9054cfcfe27 .pp-modal-trigger, .fl-node-5e9054cfcfe27 .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5e9054cfcfe27 .pp-modal, #modal-5e9054cfcfe27 .pp-modal {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-5e9054cfcfe27 .pp-modal.layout-standard, #modal-5e9054cfcfe27 .pp-modal.layout-standard {
	height: 500px;
}
.fl-node-5e9054cfcfe27 .pp-modal.layout-fullscreen, #modal-5e9054cfcfe27 .pp-modal.layout-fullscreen {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content {
	text-align: left;
}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading {
		}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
			display: block;
	}


div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #666666;
								}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					margin-left: 0px;
}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 0px;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-sub-heading,
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #000000;
			width: 100px;
			float: left;
	}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1024px) {
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content {
				text-align: center;
			}
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 767px) {
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 20px;
}
div.fl-node-5e8dbb9f64eb3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb9f64eb3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-5e8dbb9f64eb3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb9f64eb3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1024px) {
	div.fl-node-5e8dbb9f64eb3 .pp-heading-content .pp-heading .heading-title {
		font-size: 14px;
		line-height: 18px;
	}
}
 .fl-node-5e8dbb9f64eb3 > .fl-module-content {
	margin-bottom:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb9f64eb3.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb9f64eb3.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}
.fl-node-5e8dbb33f0630 .fl-separator {
	border-top-width: 5px;
	max-width: 47px;
	width: 47px;
	margin: 0 0 0 0;
}

			.fl-node-5e8dbb33f0630 .fl-separator {
	border-top-color: #f09c4f;
	border-top-style: solid;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f0630.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */

/* Product Slider */

/* Wrappers */
body.rtl .fl-module-woocommerce-product-image .bx-viewport {
	direction: ltr;
}
.fl-module-woocommerce-product-image .bx-wrapper {
	max-width: 100%;
	margin: 0 auto 40px;
}
.fl-module-woocommerce-product-image .bx-controls {
	width: 100%;
	position: absolute;
	bottom: 0;
	margin-top: 20px;
}

.fl-woocommerce-product-image-navigation{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 20;
	margin-top: -16px;
}
.fl-woocommerce-product-image-navigation a{
	position: absolute;
	display: inline-block;
	opacity: .7;
}
.fl-woocommerce-product-image-navigation a:hover{ opacity: 1; }

.fl-woocommerce-product-image-navigation .carousel-prev{ left: 0; }
.fl-woocommerce-product-image-navigation .carousel-next{ right: 0; }

.fl-woocommerce-product-image-navigation .fl-woocommerce-product-image-svg-container{
	position: relative;
	width: 32px;
	height: 32px;
}
.fl-woocommerce-product-image-navigation svg{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.fl-woocommerce-product-image-navigation path{ fill: #fff; }

.fl-woocommerce-product-image-navigation a.disabled,
.bx-controls a.disabled {
	pointer-events: none;
}

/*Module styles =======================================*/

/* Product Carousel */
.fl-woocommerce-product-image {
	margin: 0 auto;
	position: relative;
}

.fl-woocommerce-product-image-wrapper:before,
.fl-woocommerce-product-image-wrapper:after {
	content: '';
	display: table;
}
.fl-woocommerce-product-image-wrapper:after {
	clear: both;
}

.fl-woocommerce-product-image-product {
	position: absolute;
	top: 0;
	float: left;
	visibility: hidden;
	background: #fff;
}

.fl-woocommerce-product-image-loaded .fl-woocommerce-product-image-product {
    position: relative;
    visibility: visible;
}

.fl-woocommerce-product-image-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-woocommerce-product-image-image .fl-photo-content {
	display: block;
}

/* Layout - product grid */
.fl-woocommerce-product-image-grid .fl-woocommerce-product-image-product {
	border: 1px solid #e6e6e6;
	border: 1px solid rgba(0,0,0,0.1);
}
.fl-woocommerce-product-image-grid .fl-woocommerce-product-image-text {
	padding: 20px;
}
.fl-woocommerce-product-image-grid .fl-woocommerce-product-image-title {
	padding-bottom: 7px;
}
body .fl-woocommerce-product-image-text,
body .fl-woocommerce-product-image-content p {
	font-size: 14px;
	line-height: 22px;
}
body .fl-woocommerce-product-image-grid .fl-woocommerce-product-image-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}

body .fl-woocommerce-product-image-grid .fl-woocommerce-product-image-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
body .fl-woocommerce-product-image-grid .fl-woocommerce-product-image-meta {
	font-size: 14px;
	padding-bottom: 10px;
}

/* Layout - product gallery */

.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-link {
	display: block;
	height: 100%;
	text-decoration: none;
}
.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-img {
	position: relative;
	z-index: 1;
}

.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-align: center;
	filter: alpha(opacity = 0);
	opacity: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}
.fl-woocommerce-product-image-gallery .fl-product-no-crop .fl-woocommerce-product-image-text-wrap,
.fl-woocommerce-product-image-gallery .fl-product-no-crop .fl-woocommerce-product-image-text{
	position: relative;
	padding: 20px;
	top: 0;
	left: 0;
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-link:hover .fl-woocommerce-product-image-text-wrap,
.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-product.fl-product-no-thumb .fl-woocommerce-product-image-text-wrap {
	filter: alpha(opacity = 100);
	opacity: 1;
}

.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-text {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-text h2.fl-woocommerce-product-image-title {
	font-size: 22px;
	margin: 0 0 5px 0;
}

/* slide ratio - for slides with no thumb */
.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-ratio{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-ratio{ padding-bottom: 70%; }

.fl-woocommerce-product-image-gallery .fl-carousel-icon{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.fl-woocommerce-product-image-gallery .fl-carousel-icon i,
.fl-woocommerce-product-image-gallery .fl-carousel-icon i:before{
	width: 24px;
	height: 24px;
	font-size: 24px;
}

/* Gallery Transitions */
.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-text,
.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-link:hover .fl-woocommerce-product-image-text,
.fl-woocommerce-product-image-gallery .fl-woocommerce-product-image-product.fl-product-no-thumb .fl-woocommerce-product-image-text{
	-webkit-transform: translate3d(-50%,-50%,0); 
	   -moz-transform: translate3d(-50%,-50%,0); 
	    -ms-transform: translate(-50%,-50%); 
			transform: translate3d(-50%,-50%,0); 
}

/* Common Styles */
body .fl-woocommerce-product-image-text a {
	text-decoration: none;
}
@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }/**
 * This file should contain frontend styles that 
 * will be applied to individual module instances.
 *
 * You have access to three variables in this file: 
 * 
 * $module An instance of your module class.
 * $id The module's ID.
 * $settings The module's settings.
 *
 */
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image h1,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image h2,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image h3,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image h4,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image h5,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image h6,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image p,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image span,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image label,
.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-module .fl-woocommerce-product-image div{
	text-align: left;
			}
/* carousel css */



.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image .fl-woocommerce-product-image-product {
	width: 33.33%;
}

.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image .fl-woocommerce-product-image-product:nth-child(-n+3) {
	position: relative;
}


	
	.fl-node-5ebc1206b65b8 .fl-woocommerce-product-image-product{
		background-color: #ffffff;
		background-color: rgba(255,255,255,1);
	}

	
	




        /* end carousel css */


.fl-row .fl-col .fl-node-5e8dbf793ca7d h2.fl-heading a,
.fl-row .fl-col .fl-node-5e8dbf793ca7d h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5e8dbf793ca7d h2.fl-heading .fl-heading-text *,
.fl-node-5e8dbf793ca7d h2.fl-heading .fl-heading-text {
	color: #666666;
}
.fl-node-5e8dbf793ca7d.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	text-align: left;
}
@media(max-width: 1024px) {
	.fl-node-5e8dbf793ca7d.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-5e8dbf793ca7d > .fl-module-content {
	margin-bottom:5px;
}
@media (max-width: 767px) { .fl-node-5e8dbf793ca7d > .fl-module-content { margin-bottom:0px; } }.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content {
	}


.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }

.fl-node-5e8dbb33f057c .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-5e8dbb33f057c .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
	}

@media only screen and (max-width: 1024px) {
	    .fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 767px) {
	.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-5e8dbb33f057c .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5e8dbb33f057c .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-5e8dbb33f057c > .fl-module-content {
	margin-top:45px;
	margin-bottom:15px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f057c.fl-module > .fl-module-content {
	margin-top:20px;
	margin-bottom:20px;
}
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }/**
 * This file should contain frontend styles that 
 * will be applied to individual module instances.
 *
 * You have access to three variables in this file: 
 * 
 * $module An instance of your module class.
 * $id The module's ID.
 * $settings The module's settings.
 *
 */
 .fl-node-5e8dbb9f64e0e .fl-woocommerce-vto-detail-module .fl-woocommerce-vto-detail .js-cart {
        }
.fl-node-5e8dbb9f64e0e .fl-woocommerce-vto-detail-module .fl-woocommerce-vto-detail .js-cart span {
    vertical-align: middle;
    left: 10px;
    bottom: -8px;
    width: px;
    height: px;
        border-radius: %;
                text-align: center;
                }@media ( max-width: 1024px ) {
 .fl-node-5e8dbb9f64e0e.fl-module > .fl-module-content {
	margin-bottom:30px;
}
}
@media (max-width: 767px) { .fl-node-5e8dbb9f64e0e > .fl-module-content { margin-bottom:0px; } }.fl-node-5e8dbfc95eb8e .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	width: 100%;
	margin: 0 0 0 0;
}

			.fl-node-5e8dbfc95eb8e .fl-separator {
	border-top-color: #d7d7d7;
	border-top-style: solid;
}
.fl-node-5e8dbb33f017e .fl-module-content .woocommerce-breadcrumb {

	text-align: left;

		font-size: 13px;
	}

.fl-node-5e8dbb33f017e .fl-module-content .woocommerce-breadcrumb {
	color: #000000;
}

.fl-node-5e8dbb33f017e .fl-module-content .woocommerce-breadcrumb a {
	color: #666666;
}
 .fl-node-5e8dbb33f017e > .fl-module-content {
	margin-bottom:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f017e.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f017e.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}
.fl-row .fl-col .fl-node-5e8dbb33f06a8 h2.fl-heading a,
.fl-row .fl-col .fl-node-5e8dbb33f06a8 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5e8dbb33f06a8 h2.fl-heading .fl-heading-text *,
.fl-node-5e8dbb33f06a8 h2.fl-heading .fl-heading-text {
	color: #717171;
}
.fl-node-5e8dbb33f06a8.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	text-align: left;
	font-style: italic;
}
 .fl-node-5e8dbb33f06a8 > .fl-module-content {
	margin-bottom:40px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33f06a8.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}
.fl-row .fl-col .fl-node-5e8dc0246c2bc h2.fl-heading a,
.fl-row .fl-col .fl-node-5e8dc0246c2bc h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5e8dc0246c2bc h2.fl-heading .fl-heading-text *,
.fl-node-5e8dc0246c2bc h2.fl-heading .fl-heading-text {
	color: #14819c;
}
.fl-node-5e8dc0246c2bc.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
}
@media(max-width: 1024px) {
	.fl-node-5e8dc0246c2bc.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-5e8dc0246c2bc > .fl-module-content {
	margin-top:20px;
	margin-bottom:10px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dc0246c2bc.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
	.fl-builder-content .fl-node-5e8dbb33f06e4 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-5e8dbb33f06e4 .fl-module-content .fl-rich-text * {
		color: #717171;
	}
	.fl-builder-content .fl-node-5e8dbb33f06e4 .fl-rich-text, .fl-builder-content .fl-node-5e8dbb33f06e4 .fl-rich-text *:not(b, strong) {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 18px;
	text-align: left;
}
/**
 * This file should contain frontend styles that
 * will be applied to all module instances.
 */

.bb-gf-input.input-small {
    width: 46px !important;
}

.pp-gf-content {
	position: relative;
}

.pp-gf-content:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.pp-gf-content .pp-gf-inner {
	position: relative;
}

.pp-gf-content .form-title,
.pp-gf-content .form-description {
	position: relative;
}

.pp-gf-content .gform_wrapper form {
	position: relative;
}

.pp-gf-content legend {
    border: 0;
}

.pp-gf-content .gform_wrapper .gform_body {
	width: 100% !important;
}

.pp-gf-content .gform_wrapper ul.gform_fields {
    padding: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield {
	padding-right: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
	padding-right: 16px;
}

.pp-gf-content .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
	max-width: 100% !important;
}

.pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:focus, .pp-gf-content .gform_wrapper .gfield input[type="radio"]:focus {
    width: auto;
    text-align: left !important;
}

.gform_wrapper .top_label li.gfield.gf_left_half input.medium,
.gform_wrapper .top_label li.gfield.gf_right_half input.medium,
.gform_wrapper .top_label li.gfield.gf_left_half select.medium,
.gform_wrapper .top_label li.gfield.gf_right_half select.medium {
    width: 100% !important;
}

/* .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.gform_wrapper .gfield input:focus,
.gform_wrapper .gfield select,
.gform_wrapper .gfield textarea {
    height: auto;
} */

.gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]) {
    width: 100% !important;
}

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
.gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
    margin-top: 0 !important;
}

div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
    margin-bottom: 0;
}

.pp-gf-content .gform_wrapper ul li.gfield {
    margin-top: 0;
}

.pp-gf-content .gform_wrapper ul.gfield_radio li input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
    width: auto !important;
    display: inline-block;
}

.pp-gf-content .gform_wrapper .ginput_complex span.ginput_full:not(.ginput_cardextras) {
    display: block;
}

.pp-gf-content .gform_wrapper .gfield .gfield_description {
    padding-top: 5px;
}

.pp-gf-content .gform_wrapper h2.gsection_title {
	margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
	.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
		padding-right: 0;
	}
}
@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper {
	max-width: 100%;
}

.fl-node-5e8f160b411de .pp-gf-content {
	background-color: transparent;
			background-size: cover;
			background-repeat: no-repeat;
	}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper ul li.gfield {
	list-style-type: none !important;
		margin-bottom: 14px;
	}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_title,
.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .form-title {
		color: #231f20;
		display: none;
}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .form-title {
	display: none;
}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_title {
	}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper span.gform_description,
.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .form-description {
		color: #333333;
		display: none;
}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .form-description {
	display: none;
}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper span.gform_description {
	}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield .gfield_label {
			display: none;
	}


.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield_required {
	}

.fl-builder-content .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield .ginput_complex.ginput_container label {
		display: none;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_container label,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper table.gfield_list thead th,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper span.ginput_product_price,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper span.ginput_product_price_label,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper span.ginput_quantity_label,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield_html {
		font-weight: 300;}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper span.ginput_product_price {
		color: #900900 !important;
	}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield .gfield_description {
		color: #666666;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gsection {
		border-bottom-width: 0px;
					margin-bottom: 0px;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper h2.gsection_title,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper h3.gsection_title {
		color: #333333;
	}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield select,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea {
		color: #666666;
		background-color: #ffffff;
	width: 100% !important;	outline: none;
}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield select {
			height: 40px;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex select {
		margin-bottom: 4.2px;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex span {
		margin-bottom: 5.6px;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input::-webkit-input-placeholder {
	color: #404651;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input:-moz-placeholder {
	color: #404651;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input::-moz-placeholder {
	color: #404651;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input:-ms-input-placeholder {
	color: #404651;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea::-webkit-input-placeholder {
	color: #404651;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea:-moz-placeholder {
	color: #404651;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea::-moz-placeholder {
	color: #404651;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea:-ms-input-placeholder {
	color: #404651;
}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']):focus,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield select:focus,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea:focus {
	border-color: #496889;
}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .top_label input.medium,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .top_label select.medium {
	width: 100% !important;
}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper textarea.medium {
	width: 100% !important;}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex .ginput_full input[type="text"],
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex  input[type="text"] {
	width: 100% !important;
}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex .ginput_right {
	margin-left: 0 !important;
}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex .ginput_right input,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .ginput_complex .ginput_right select {
	width: 100% !important;}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_footer {
		text-align: center;
						justify-content: center;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform-button,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_footer .gform_button,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_page_footer .button,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
		width: 100%;
			color: #ffffff;
		background-color: #18273a;
		padding-top: 15px;
	padding-bottom: 15px;
			padding-left: 10px;
	padding-right: 10px;
		white-space: normal;
}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_page_footer .button {
			margin-bottom: 5px !important;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform-button:hover,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_footer .gform_button:hover,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_page_footer .button:hover {
		color: #ffffff;
		background: #5caec2;
}


.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input[type=file] {
	background-color: transparent;
			border-width: px;
				border-style: none;
					}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .validation_error,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_validation_errors > h2,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper li.gfield.gfield_error,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
		color: #790000 !important;
		border-color: transparent !important;
			border: none;
		padding-top: 0;
		padding-bottom: 0;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .validation_error,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_validation_errors > h2 {
			display: none !important;
	}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield.gfield_error {
	background-color: transparent;
	width: 100%;
}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield.gfield_error .gfield_label {
		color: #790000;
		margin-left: 0;
}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield_error .validation_message {
		display: block;
			color: #790000;
		}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-top: 8px;
}

.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield_error .ginput_container select,
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield_error .ginput_container textarea {
	border-color: #790000;
		border-width: 1px !important;
	}


@media only screen and (max-width: 1024px) {
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
				padding-top: px;
		padding-bottom: px;
						padding-left: px;
		padding-right: px;
			}
}

@media only screen and (max-width: 767px) {
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
				padding-top: px;
		padding-bottom: px;
						padding-left: px;
		padding-right: px;
			}
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform-button, .fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_footer .gform_button,
							.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_page_footer .button {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_title,
							.fl-node-5e8f160b411de .form-title {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper span.gform_description,
							.fl-node-5e8f160b411de .form-description {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	text-align: center;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gform_page_footer .button {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield .gfield_label {
	font-weight: 300;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield .gfield_description {
	font-weight: 300;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
						.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield select,
						.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea {
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 16px;
	text-align: center;
}
.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
							.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield select,
							.fl-node-5e8f160b411de .pp-gf-content .gform_wrapper .gfield textarea {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d9d9d9;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding: 12px;
}
/* Clearfix */
.pp-infobox:before,
.pp-infobox:after {
	content: " ";
	display: table;
}

.pp-infobox:after {
	clear: both;
}
.pp-infobox-wrap .pp-infobox-link {
	text-decoration: none;
	display: block;
}

.pp-infobox-title-prefix {
	display: block;
}
.pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 5px;
	margin-top: 0;
}
.pp-infobox-description p {
	margin-bottom: 15px;
}
.pp-infobox-description p:last-of-type {
	margin-bottom: 0 !important;
}
.pp-more-link {
	color: inherit;
	display: block;
	text-decoration: none;
	box-shadow: none;
}
.pp-infobox .pp-more-link {
	display: inline-block;
}
.pp-more-link:hover {
	text-decoration: none;
}
.pp-infobox-icon-inner .dashicons,
.pp-infobox-icon-inner .dashicons-before:before {
	height: auto;
	width: auto;
}

/* Default layout */
.pp-infobox {
	border-width: 0;
	padding: 20px;
	text-align: center;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-infobox-icon {
	border-width: 0;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}
.pp-infobox-icon-inner {
	display: table;
}
.pp-infobox-icon span {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-image {
	margin: 0 auto 10px;
	text-align: center;
}
.pp-infobox-image img {
	border-width: 0;
	height: 2em;
	width: 2em;
}
.pp-infobox-image a {
	text-decoration: none !important;
	box-shadow: none !important;
	border: none !important;
	outline: none !important;
}

/* Layouts */

/* Layout 1 */
.pp-infobox-wrap .layout-1 {
	text-align: left;
}
.pp-infobox-wrap .layout-1 .pp-heading-wrapper {
	display: table;
	margin-bottom: 5px;
}
.pp-infobox-wrap .layout-1 .pp-icon-wrapper,
.pp-infobox-wrap .layout-1 .pp-infobox-title-wrapper {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-1 .pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 0;
	margin-left: 10px;
}
.pp-infobox-wrap .layout-1 .pp-infobox-title-prefix {
	margin-bottom: 0;
	margin-left: 10px;
}
.pp-infobox-wrap .layout-1 .pp-heading-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-1 .pp-more-link.pp-title-link .pp-infobox-title-wrapper {
	display: block;
}

/* Layout 2 */
.pp-infobox-wrap .layout-2 {
	text-align: right;
}
.pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: table;
	float: right;
	margin-bottom: 5px;
}
.pp-infobox-wrap .layout-2 .pp-icon-wrapper {
	float: right;
}
.pp-infobox-wrap .layout-2 .pp-infobox-title-wrapper,
.pp-infobox-wrap .layout-2 .pp-icon-wrapper {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-2 .pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 0;
	margin-right: 10px;
}
.pp-infobox-wrap .layout-2 .pp-infobox-description {
	clear: both;
}
.pp-infobox-wrap .layout-2 .pp-header-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-2 .pp-more-link.pp-title-link .pp-infobox-title-wrapper {
	display: block;
}

.pp-infobox-wrap .layout-2 .pp-infobox-title-prefix {
	margin-bottom: 0;
	margin-right: 10px;
}

/* Layout 3 */
.pp-infobox-wrap .layout-3 {
	text-align: left;
}
.pp-infobox-wrap .layout-3-wrapper {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-shrink: 1;
}
.pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.pp-infobox-wrap .layout-3 .pp-heading-wrapper {
	flex: 1;
}

/* Layout 4 */
.pp-infobox-wrap .layout-4 {
	text-align: right;
}
.pp-infobox-wrap .layout-4-wrapper {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-shrink: 1;
}
.pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.pp-infobox-wrap .layout-4 .pp-heading-wrapper {
	flex: 1;
}
@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }.fl-col-group-equal-height .fl-node-5e8c6c6e43411,
.fl-col-group-equal-height .fl-node-5e8c6c6e43411 .fl-module-content,
.fl-col-group-equal-height .fl-node-5e8c6c6e43411 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-5e8c6c6e43411 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-5e8c6c6e43411 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-5e8c6c6e43411 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-large,
.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-medium,
.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-5e8c6c6e43411 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-5e8c6c6e43411 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-5e8c6c6e43411 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 1024px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 767px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43411.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-5e8c6c6e43411 .pp-infobox .pp-infobox-title-prefix {
			color: #666666;
			margin-top: 7px;
		}
.fl-node-5e8c6c6e43411 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 0px;
			margin-bottom: 0px;
	}
.fl-node-5e8c6c6e43411 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-5e8c6c6e43411 .pp-infobox-description {
			}
	.fl-node-5e8c6c6e43411 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-5e8c6c6e43411 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-5e8c6c6e43411 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-5e8c6c6e43411 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-5e8c6c6e43411 .pp-infobox-image {
					margin-bottom: 0;
					}
	.fl-builder-content .fl-node-5e8c6c6e43411 .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-5e8c6c6e43411 .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-5e8c6c6e43411 .pp-infobox-icon-inner span.pp-icon,
.fl-node-5e8c6c6e43411 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-5e8c6c6e43411 .pp-infobox-wrap .pp-infobox {
				text-align: left;
	}


.fl-node-5e8c6c6e43411 .pp-infobox:hover {
	}


.fl-node-5e8c6c6e43411 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 1024px) {
	.fl-node-5e8c6c6e43411 .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 767px) {
	.fl-node-5e8c6c6e43411 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-5e8c6c6e43411 .pp-infobox-title-prefix {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-5e8c6c6e43411 .pp-infobox {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-5e8c6c6e43411 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-node-5e8c6c6e434c5 .fl-separator {
	border-top-width: 1px;
	max-width: 80px;
	width: 80px;
	margin: auto;
}

			.fl-node-5e8c6c6e434c5 .fl-separator {
	border-top-color: #666666;
	border-top-style: solid;
}
@media ( max-width: 767px ) {
 .fl-node-5e8c6c6e434c5.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d,
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d .fl-module-content,
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-large,
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-medium,
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-5e8c6c6e4344d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-5e8c6c6e4344d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-5e8c6c6e4344d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 1024px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 767px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e4344d.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-5e8c6c6e4344d .pp-infobox .pp-infobox-title-prefix {
			color: #666666;
			margin-top: 7px;
		}
.fl-node-5e8c6c6e4344d .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 0px;
			margin-bottom: 0px;
	}
.fl-node-5e8c6c6e4344d .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-5e8c6c6e4344d .pp-infobox-description {
			}
	.fl-node-5e8c6c6e4344d .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-5e8c6c6e4344d .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-5e8c6c6e4344d .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-5e8c6c6e4344d .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-5e8c6c6e4344d .pp-infobox-image {
					margin-bottom: 0;
					}
	.fl-builder-content .fl-node-5e8c6c6e4344d .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-5e8c6c6e4344d .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-5e8c6c6e4344d .pp-infobox-icon-inner span.pp-icon,
.fl-node-5e8c6c6e4344d .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-5e8c6c6e4344d .pp-infobox-wrap .pp-infobox {
				text-align: left;
	}


.fl-node-5e8c6c6e4344d .pp-infobox:hover {
	}


.fl-node-5e8c6c6e4344d .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-3-wrapper,
.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 1024px) {
	.fl-node-5e8c6c6e4344d .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 767px) {
	.fl-node-5e8c6c6e4344d .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-5e8c6c6e4344d .pp-infobox-title-prefix {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-5e8c6c6e4344d .pp-infobox {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 19px;
}
.fl-node-5e8c6c6e4344d .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 19px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8c6c6e4344d.fl-module > .fl-module-content {
	margin-top:5px;
}
}
.fl-node-5e8c6c6e43489 .fl-separator {
	border-top-width: 1px;
	max-width: 80px;
	width: 80px;
	margin: auto;
}

			.fl-node-5e8c6c6e43489 .fl-separator {
	border-top-color: #666666;
	border-top-style: solid;
}
@media ( max-width: 767px ) {
 .fl-node-5e8c6c6e43489.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
}
.fl-col-group-equal-height .fl-node-5e8c6c6e43502,
.fl-col-group-equal-height .fl-node-5e8c6c6e43502 .fl-module-content,
.fl-col-group-equal-height .fl-node-5e8c6c6e43502 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-5e8c6c6e43502 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-5e8c6c6e43502 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-5e8c6c6e43502 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-large,
.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-medium,
.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-5e8c6c6e43502 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-5e8c6c6e43502 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-5e8c6c6e43502 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 1024px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 767px) {
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-5e8c6c6e43502.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-5e8c6c6e43502 .pp-infobox .pp-infobox-title-prefix {
			color: #666666;
			}
.fl-node-5e8c6c6e43502 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 0px;
			margin-bottom: 0px;
	}
.fl-node-5e8c6c6e43502 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-5e8c6c6e43502 .pp-infobox-description {
			}
	.fl-node-5e8c6c6e43502 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-5e8c6c6e43502 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-5e8c6c6e43502 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-5e8c6c6e43502 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-5e8c6c6e43502 .pp-infobox-image {
					margin-bottom: 0;
					}
	.fl-builder-content .fl-node-5e8c6c6e43502 .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-5e8c6c6e43502 .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-5e8c6c6e43502 .pp-infobox-icon-inner span.pp-icon,
.fl-node-5e8c6c6e43502 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-5e8c6c6e43502 .pp-infobox-wrap .pp-infobox {
				text-align: left;
	}


.fl-node-5e8c6c6e43502 .pp-infobox:hover {
	}


.fl-node-5e8c6c6e43502 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 1024px) {
	.fl-node-5e8c6c6e43502 .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 767px) {
	.fl-node-5e8c6c6e43502 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-5e8c6c6e43502 .pp-infobox-title-prefix {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-5e8c6c6e43502 .pp-infobox {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 17px;
}
.fl-node-5e8c6c6e43502 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 17px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8c6c6e43502.fl-module > .fl-module-content {
	margin-top:5px;
}
}
.fl-node-5e8dbb33efca1 .fl-module-content .woocommerce-breadcrumb {

	text-align: left;

		font-size: 13px;
	}

.fl-node-5e8dbb33efca1 .fl-module-content .woocommerce-breadcrumb {
	color: #000000;
}

.fl-node-5e8dbb33efca1 .fl-module-content .woocommerce-breadcrumb a {
	color: #666666;
}
 .fl-node-5e8dbb33efca1 > .fl-module-content {
	margin-bottom:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33efca1.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33efca1.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content {
	text-align: center;
}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading {
		}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #333333;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 0px;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 2000px;
			border-style: solid;
			border-color: #a9a9a9;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 2000px;
			border-style: solid;
			border-color: #a9a9a9;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 2000px;
			border-bottom-style: solid;
			border-bottom-color: #a9a9a9;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-sub-heading,
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 2000px;
			border-style: solid;
			border-color: #a9a9a9;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #a9a9a9;
			width: 2000px;
			margin: 0 auto;
	}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1024px) {
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33f00bc .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 767px) {
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33f00bc .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 28px;
}
div.fl-node-5e8dbb33f00bc div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb33f00bc div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 40px;
}
div.fl-node-5e8dbb33f00bc div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb33f00bc div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 40px;
}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1024px) {
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
		line-height: 24px;
	}
}
@media(max-width: 767px) {
	div.fl-node-5e8dbb33f00bc .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
		line-height: 24px;
	}
}
 .fl-node-5e8dbb33f00bc > .fl-module-content {
	margin-bottom:32px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33f00bc.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-node-5e8dbb33ef8d8 .fl-module-content .woocommerce-breadcrumb {

	text-align: left;

		font-size: 13px;
	}

.fl-node-5e8dbb33ef8d8 .fl-module-content .woocommerce-breadcrumb {
	color: #000000;
}

.fl-node-5e8dbb33ef8d8 .fl-module-content .woocommerce-breadcrumb a {
	color: #666666;
}
 .fl-node-5e8dbb33ef8d8 > .fl-module-content {
	margin-bottom:20px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33ef8d8.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33ef8d8.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content {
	text-align: left;
}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading {
		}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #333333;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 0px;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-sub-heading,
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #000000;
			width: 100px;
			float: left;
	}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1024px) {
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33efb43 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 767px) {
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33efb43 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 30px;
}
div.fl-node-5e8dbb33efb43 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb33efb43 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-5e8dbb33efb43 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb33efb43 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1024px) {
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title {
		font-size: 26px;
		line-height: 30px;
	}
}
@media(max-width: 767px) {
	div.fl-node-5e8dbb33efb43 .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
		line-height: 24px;
	}
}
 .fl-node-5e8dbb33efb43 > .fl-module-content {
	margin-bottom:12px;
}
@media (max-width: 767px) { .fl-node-5e8dbb33efb43 > .fl-module-content { margin-bottom:0px; } }.fl-module-fl-woo-product-images .fl-module-content {
	position: relative;
}
.woocommerce div.product .fl-module-fl-woo-product-images div.images,
.woocommerce #content div.product .fl-module-fl-woo-product-images div.images {
	float: none;
	margin: 0;
	width: auto;
}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content {
	text-align: left;
}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading {
		}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #000000;
								text-transform: capitalize;
					display: inline;
	}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 3px;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-sub-heading,
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-sub-heading p {
		color: #333333;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #000000;
			width: 100px;
			float: left;
	}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1024px) {
	div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33efa1c .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 767px) {
	div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33efa1c .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
}
div.fl-node-5e8dbb33efa1c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb33efa1c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-5e8dbb33efa1c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5e8dbb33efa1c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-sub-heading, div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-sub-heading p {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.6;
}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 767px) {
	div.fl-node-5e8dbb33efa1c .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
		line-height: 18px;
	}
}
 .fl-node-5e8dbb33efa1c > .fl-module-content {
	margin-bottom:8px;
}
@media (max-width: 767px) { .fl-node-5e8dbb33efa1c > .fl-module-content { margin-bottom:0px; } }.fl-node-5e8dbb33efa57 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-5e8dbb33efa57 .fl-separator {
	border-top-color: #000000;
	border-top-style: solid;
}
 .fl-node-5e8dbb33efa57 > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 1024px ) {
 .fl-node-5e8dbb33efa57.fl-module > .fl-module-content {
	margin-bottom:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33efa57.fl-module > .fl-module-content {
	margin-top:16px;
	margin-bottom:16px;
}
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.fl-module .pp-notification-wrapper .pp-notification-icon {
	float: left;
	display: table;
	margin-right: 10px;
}
.fl-module .pp-notification-wrapper .pp-notification-icon .pp-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-module .pp-notification-wrapper .pp-notification-icon .dashicons,
.fl-module .pp-notification-wrapper .pp-notification-icon .dashicons-before:before {
	font-size: inherit;
	height: auto;
	width: auto;
}
.fl-module .pp-notification-wrapper .pp-notification-content {
	overflow: hidden;
}
.fl-module .pp-notification-wrapper .pp-notification-inner .pp-notification-content p:last-of-type {
	margin-bottom: 0;
}
@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }.fl-node-5e8dbb33efacc .pp-notification-wrapper {
			background-color: #ffbaba;
	}

.fl-node-5e8dbb33efacc .pp-notification-wrapper .pp-notification-inner .pp-notification-icon {
	margin-right: 10px;
}
.fl-node-5e8dbb33efacc .pp-notification-wrapper .pp-notification-inner .pp-notification-icon span.pp-icon {
	color: #d31100;	font-size: 16px;}
.fl-node-5e8dbb33efacc .pp-notification-wrapper .pp-notification-inner .pp-notification-content p {
	color: #d31100;}

.fl-node-5e8dbb33efacc .pp-notification-wrapper {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */
.bb-gf-input.input-small {
    width: 46px !important;
}
.fl-module  .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input.wpcf7-submit {
    clear: both;
}

@media only screen and (min-width: 769px) {
     .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .pp-cf7-col-1 {
        width: 100%;
        padding: 0 5px;
        clear: left;
    }
     .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .pp-cf7-col-2 {
    	width: 50%;
    	float: left;
        padding: 0 5px;
    }
     .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .pp-cf7-col-3 {
    	width: 33.33%;
    	float: left;
        padding: 0 5px;
    }
     .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .pp-cf7-col-4 {
    	width: 25%;
    	float: left;
        padding: 0 5px;
    }
     .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .pp-cf7-col-5 {
    	width: 20%;
    	float: left;
        padding: 0 5px;
    }
     .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .pp-cf7-col-6 {
    	width: 16.66%;
    	float: left;
        padding: 0 5px;
    }
}

@media only screen and (max-width: 768px) {
	 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-text,
	 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-email,
	 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-textarea,
	 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-quiz,
	 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-number {
		width: 100% !important;
	}
}
@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }/**
 * This file should contain frontend styles that 
 * will be applied to individual module instances.
 *
 * You have access to three variables in this file: 
 * 
 * $module An instance of your module class.
 * $id The module's ID.
 * $settings The module's settings.
 *
 */
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button {
                        background-color: rgba(255, 255, 255, 1);
                            }
.fl-node-5e8dbb33efa91 .pp-cf7-form-title {
                text-align: left;}

.fl-node-5e8dbb33efa91 .pp-cf7-form-description {
                text-align: left;}

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button form p {
            }

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-text,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-email,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-textarea,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-quiz,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-number,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input.qty,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button select {
         background-color: transparent;     border-color: #a7a7a7;                    border-radius: 0px;
            -moz-border-radius: 0px;
            -webkit-border-radius: 0px;
            -ms-border-radius: 0px;
            -o-border-radius: 0px;
                    border-width: 0px;
        border-width: 1px;
        height: 42px;    width: 100%;    padding: 10px;        margin-top: 0px;    margin-bottom: 0px;        }

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-text:focus,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-email:focus,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-textarea:focus,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-quiz:focus,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-number:focus,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input.qty:focus,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button select:focus{
    border-color: #000000;
}

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-textarea {
    height: 200px;}
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-file {
    height: 42px;}

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-text,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-email,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-textarea,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-quiz,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-number,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input.qty,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button select{
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button form p:before,
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button form p:after {
    content: "";
    display: table;
}
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button form p:after {
    clear: both;
}
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button button.button {
    color: #ffffff;    	background: #000000;    	border: 0px solid #333333;
        font-size: 16px;            -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -o-border-radius: 0px;
        -ms-border-radius: 0px;
        border-radius: 0px;
        font-family: "Muli", sans-serif;font-weight: 700;            padding-top: 10px;
        padding-bottom: 10px;
                padding-left: 10px;
        padding-right: 10px;
        float: none;            display: block;
        margin: 0 auto;
        width: 100%;
}

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button button.button:hover {
    color: #ffffff;    background: #5c5555;
    border-color: #333333;}


.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-response-output {
    background-color: #ffffff;    border-color: #ffffff;    border-style: none;    border-width: 1px;    color: #000000;        }

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button .wpcf7-not-valid-tip {
    display: true;    color: #ff0000;}


.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=text]::-webkit-input-placeholder {
        color: #999999;
    }

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=text]:-moz-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=text]::-moz-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=text]:-ms-input-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=tel]::-webkit-input-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=tel]:-moz-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=tel]::-moz-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=tel]:-ms-input-placeholder {
        color: #999999;
	}
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=email]::-webkit-input-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=email]:-moz-placeholder {
        color: #999999;
	}
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=email]::-moz-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button input[type=email]:-ms-input-placeholder {
        color: #999999;
    }

.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button textarea::-webkit-input-placeholder {
        color: #999999;
    }
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button textarea:-moz-placeholder {
        color: #999999;
	}
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button textarea::-moz-placeholder {
        color: #999999;
	}
.fl-node-5e8dbb33efa91 .fl-woocommerce-product-glasses-cart-button-module .fl-woocommerce-product-glasses-cart-button textarea:-ms-input-placeholder {
        color: #999999;
	} .fl-node-5e8dbb33efa91 > .fl-module-content {
	margin-bottom:10px;
}
@media (max-width: 767px) { .fl-node-5e8dbb33efa91 > .fl-module-content { margin-bottom:0px; } }.entry-content .pp-infolist-title h3,
.pp-infolist-title h3 {
	margin-bottom: 5px;
	margin-top: 0;
}
.pp-infolist-description p {
	margin-bottom: 15px;
}
.pp-infolist-description p:last-of-type {
	margin-bottom: 0 !important;
}
.entry-content .pp-more-link,
.pp-more-link {
	box-shadow: none;
	display: inline-block;
	text-decoration: none;
}
.pp-list-item > .pp-more-link {
	display: table;
	margin-top: 0;
}
.pp-more-link {
	color: #000;
}
.pp-more-link:hover {
	text-decoration: none;
}
.pp-infolist-icon-inner .dashicons,
.pp-infolist-icon-inner .dashicons-before:before {
	height: auto;
	width: auto;
}

/* Connector */
.pp-list-connector {
	height: 100%;
	position: absolute;
	top: 33px;
	z-index: 2;
}

/* Default layout */
.pp-infolist-wrap .pp-list-item {
	overflow: visible;
	list-style: none;
	padding-bottom: 25px;
	position: relative;
	margin: 0;
}
.pp-infolist-wrap .pp-list-item-content {
	position: relative;
	z-index: 3;
}
.pp-infolist-wrap .pp-list-item-content {
	display: flex;
	align-items: center;
}
.pp-list-item:last-of-type .pp-list-connector {
	display: none;
}
.pp-icon-wrapper {
	position: relative;
	z-index: 3;
}
.pp-infolist {
	text-align: center;
}
.pp-infolist ul.pp-list-items {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.pp-infolist-icon {
	border-width : 0;
	/* display: inline-block; */
	margin: 0 auto;
	text-align: center;
}
.pp-infolist-icon-inner {
	display: table;
	height: 3em;
	line-height: 0;
	width: 3em;
}
.pp-infolist-icon span {
	display: table-cell;
	vertical-align: middle;
}
.pp-infolist-icon-inner img {
	border: none;
}

/* Layouts */

/* Layout 1 */
.pp-infolist-wrap .layout-1 {
	text-align: left;
}
.pp-infolist-wrap .layout-1 .pp-icon-wrapper {
	margin-right: 20px;
}

/* Layout 2 */
.pp-infolist-wrap .layout-2 {
	text-align: right;
}
.pp-infolist-wrap .layout-2 .pp-list-item-content {
	flex-direction: row-reverse;
}
.pp-infolist-wrap .layout-2 .pp-icon-wrapper {
	float: right;
	margin-left: 20px;
}
.pp-infolist-wrap .layout-2 .pp-heading-wrapper {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

/* Layout 3 */
.pp-infolist-wrap .layout-3 .pp-list-items {
	flex-direction: row;
}
.pp-infolist-wrap .layout-3 .pp-list-item-content {
	padding: 0 20px;
	flex-direction: column;
}
.pp-infolist-wrap .layout-3 .pp-icon-wrapper {
	margin-bottom: 10px;
}
.pp-infolist-wrap .layout-3 .pp-list-connector {
	height: 0;
	left: 120px;
	width: 100%;
}
.pp-infolist-wrap .layout-3 .pp-more-link {
	width: 100%;
}
@media (max-width: 767px) { .layout-3 .pp-list-item {
    width: 100%;
}
.layout-3 .pp-list-connector {
    display: none;
}
.layout-3 .pp-list-items {
    margin-left: 0;
    padding-left: 0;
}
.pp-infolist-wrap .layout-3 .pp-list-items {
	flex-wrap: wrap;
} }
.fl-node-5e8dbb33efb09 .pp-infolist-wrap .pp-list-item-content {
		transition: all 0.3s ease-in-out;
}
.fl-node-5e8dbb33efb09 .pp-infolist-wrap .pp-list-item-content:hover {
		}

.fl-node-5e8dbb33efb09 .pp-infolist-wrap .pp-list-item {
	padding-bottom: 0;
}



.fl-builder-content .fl-node-5e8dbb33efb09 .pp-infolist-title .pp-infolist-title-text {
			color: #444444;
			margin-top: 0px;
			margin-bottom: 0px;
		transition: color 0.2s ease-in-out;
}
.fl-builder-content .fl-node-5e8dbb33efb09 .pp-infolist-title .pp-infolist-title-text:hover {
	}


.fl-builder-content .fl-node-5e8dbb33efb09 .pp-infolist-description {
	}


.fl-node-5e8dbb33efb09 .pp-infolist-icon {
		}

.fl-node-5e8dbb33efb09 .pp-infolist-icon-inner img {
	}


.fl-node-5e8dbb33efb09 .pp-infolist-icon:hover {
	}


.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-1 .pp-list-connector {
	border-left-color: #000000;	border-left-style: none;	border-left-width: 1px;}
.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-2 .pp-list-connector {
	border-right-color: #000000;	border-right-style: none;	border-right-width: 1px;}
.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-3 .pp-list-connector {
	border-top-color: #000000;	border-top-style: none;	border-top-width: 1px;}

/* Icon common styles */
.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item .pp-infolist-icon .pp-icon {
			}
.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item .pp-infolist-icon:hover .pp-icon {
		}



	.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item-0 .pp-infolist-icon .pp-icon {
					}
	.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item-0 .pp-infolist-icon:hover .pp-icon {
					}

	
	.fl-node-5e8dbb33efb09 .pp-list-item-0 .animated {
		-webkit-animation-duration: 1000ms;		-moz-animation-duration: 1000ms;		-o-animation-duration: 1000ms;		-ms-animation-duration: 1000ms;		animation-duration: 1000ms;	}

	.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item-1 .pp-infolist-icon .pp-icon {
					}
	.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item-1 .pp-infolist-icon:hover .pp-icon {
					}

	
	.fl-node-5e8dbb33efb09 .pp-list-item-1 .animated {
		-webkit-animation-duration: 1000ms;		-moz-animation-duration: 1000ms;		-o-animation-duration: 1000ms;		-ms-animation-duration: 1000ms;		animation-duration: 1000ms;	}

	.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item-2 .pp-infolist-icon .pp-icon {
					}
	.fl-builder-content .fl-node-5e8dbb33efb09 .pp-list-item-2 .pp-infolist-icon:hover .pp-icon {
					}

	
	.fl-node-5e8dbb33efb09 .pp-list-item-2 .animated {
		-webkit-animation-duration: 1000ms;		-moz-animation-duration: 1000ms;		-o-animation-duration: 1000ms;		-ms-animation-duration: 1000ms;		animation-duration: 1000ms;	}

.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-3 .pp-list-item {
	width: 33.333333333333%;
}


@media only screen and (max-width: 768px) {
	.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-3 .pp-list-item {
		width: 100%;
		float: none;
	}
}
.fl-node-5e8dbb33efb09 .pp-infolist ul.pp-list-items {
	gap: 0px;
}
.fl-node-5e8dbb33efb09 .pp-infolist-title .pp-infolist-title-text {
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
}
.fl-node-5e8dbb33efb09 .pp-infolist-icon {
	padding: 0px;
}
.fl-node-5e8dbb33efb09 .pp-infolist-icon-inner img {
	width: 25px;
	height: 25px;
}
.fl-node-5e8dbb33efb09 .pp-infolist-icon-inner span.pp-icon, .fl-node-5e8dbb33efb09 .pp-infolist-icon-inner span.pp-icon:before {
	font-size: 25px;
}
.fl-node-5e8dbb33efb09 .pp-infolist-icon-inner {
	width: 30px;
	height: 30px;
}
.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-1 .pp-icon-wrapper {
	margin-right: 0px;
}
.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-2 .pp-icon-wrapper {
	margin-left: 0px;
}
.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-3 .pp-icon-wrapper {
	margin-bottom: 0px;
}
@media(max-width: 767px) {
	.fl-node-5e8dbb33efb09 .pp-infolist ul.pp-list-items {
		gap: 0px;
	}
	.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-1 .pp-icon-wrapper {
		margin-right: 0px;
	}
	.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-2 .pp-icon-wrapper {
		margin-left: 0px;
	}
	.fl-node-5e8dbb33efb09 .pp-infolist-wrap .layout-3 .pp-icon-wrapper {
		margin-bottom: 0px;
	}
}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content {
	text-align: center;
}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading {
		}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #454545;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #787878;
					display: inline;
		margin-left: 0px;
}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 0px;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-sub-heading,
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #000000;
			border-bottom-width: 1px;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #000000;
			width: 100px;
			margin: 0 auto;
	}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1024px) {
	div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33efbf2 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 767px) {
	div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5e8dbb33efbf2 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.2px;
	text-transform: uppercase;
}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.2px;
}
div.fl-node-5e8dbb33efbf2 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-5e8dbb33efbf2 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-5e8dbb33efbf2 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-5e8dbb33efbf2 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-5e8dbb33efbf2 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-5e8dbb33efbf2 > .fl-module-content {
	margin-top:10px;
}
@media ( max-width: 767px ) {
 .fl-node-5e8dbb33efbf2.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
}

/* Start Global CSS */
.prod-list .fl-post-grid-empty{
        border: 1px solid #ccc;
    text-align: center;
    padding: 10px;
}
.prod-list .fl-post-grid-empty p{
    margin-bottom: 0px !important;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
#gform_confirmation_wrapper_2{
    margin-top: 30px;
}
/* Breadcrumb */
.woocommerce-breadcrumb {font-weight: 600 !important;font-size: 13px !important;}
.woocommerce-breadcrumb a {font-weight: 400 !important;}

/* Size Guide */
.size-guide-text p {margin-bottom: 15px;}
.meta-info td {border: none;padding: 0;color: #18273a;font-size: 16px;font-weight: 400;padding: 5px 0px;}
.meta-info tr td:first-child {padding-right: 20px;}

/* VtO btn */
.btn-vto{text-align: center;}
.btn-vto .fl-woocommerce-vto-detail .img-vto strong a{border-radius:5px;border: 1px solid #000;width: 230px;text-align: center;padding: 12px 10px; color:#18273a; display: block;}
.btn-vto .fl-woocommerce-vto-detail .img-vto strong a:hover{border: 1px solid #f88e2e;}

.aleternavie-colour-vto strong a{margin: 0 auto;margin-top: 14px; border-radius:5px;border: 1px solid #000;width: 230px;text-align: center;padding: 12px 10px; color:#18273a; display: block;}
.aleternavie-colour-vto strong a:hover{border: 1px solid #f88e2e;}
.aleternavie-colour-vto strong a img{display:inline-block;}

/* alt color */
.product-detail-alt-images .fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-product { border:none !important; }
.product-detail-alt-images .fl-icon-wrap { display:block !important; }
.product-detail-alt-images .fl-woocommerce-product-alt-colours-title{font-size:18px !important; color:#333333; font-weight:500;}
.product-detail-alt-images .fl-woocommerce-product-alt-colours-text span{color: #666;}
.product-detail-alt-images .fl-woocommerce-product-alt-colours-grid .fl-woocommerce-product-alt-colours-text {padding: 0;text-transform: uppercase;}
.product-detail-alt-images .fl-woocommerce-product-alt-colours-image {margin-bottom: 20px;min-height: 150px;}


.contact-form .gform_wrapper textarea.medium{height:88px !important; padding-left:26px;}
.gform_footer{position: relative;}
.gform_footer img{position:absolute;top:50%;transform:translateY(-50%); left:20px;}
/*Confirmation message*/
.gform_confirmation_message{background: #44856d;color: #fff;padding: 20px;font-size: 16px;font-weight: normal;}
/*Error Message*/
.contact-form .gform_wrapper .instruction.validation_message{display: none !important;}
.contact-form .gform_wrapper .validation_message{font-size:12px;}
.contact-form .gform_confirmation_message{text-align:center !important;}
.contact-form .gform_wrapper h3.gform_title{margin:0px !important;}
.contact-form .gform_wrapper .gform_footer input.button,
.contact-form .gform_wrapper .gform_footer input[type="submit"],
.contact-form .gform_wrapper .gform_page_footer input.button,
.contact-form .gform_wrapper .gform_page_footer input[type="submit"]{margin-bottom:0px !important;}
.contact-form .gform_wrapper .gform_footer{padding:0px !important;}
#my-fitmix-container iframe{position:absolute; height:100%;}
@media only screen and (max-width: 767px) {
    .product-main-img img{margin-bottom:0px !important;}
    .product-detail-alt-images .fl-woocommerce-product-alt-colours-image {min-height: auto !important;}
}
/* End Layout CSS */

.fl-theme-builder-woo-notices {
	margin: 0 auto;
	padding: 40px;
}
.fl-theme-builder-woo-notices .woocommerce-message {
	margin: 0 !important;
}

.woocommerce .fl-module-fl-woo-cart-button form.cart div.quantity {
	display: -webkit-box;
}

@media (min-width: 768px) {
	.woocommerce .fl-module-fl-woo-related-products .related ul.products,
	.woocommerce .fl-module-fl-woo-product-upsells .up-sells ul.products {
	  display: block;
	}

	.woocommerce .fl-module-fl-woo-related-products .related ul.products li.product{
		width: 22.05% !important;
	  margin-left: 10px;
	  margin-right: 10px;
	}

	.woocommerce .fl-module-fl-woo-product-upsells .up-sells ul.products li.product {
		width: 22.05% !important;
		margin-left: 10px;
		margin-right: 10px;
	}
}

        			.fl-node-5e905f6465314 .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-5e8dbb9f64f62 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5e8dbb33f00c9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5e8dbb33f0324 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5e8dbb33f0450 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5e8dbb33f075d .fl-row-content {
				min-width: 0px;
			}
		