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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





 .fl-node-u70r1w32gvmq > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-y1owdsncfkg3 > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
	background-image: url(https://bloomshell.co/wp-content/uploads/2026/01/fondo-5.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-y1owdsncfkg3 .fl-row-content {
	max-width: 1400px;
}
 .fl-node-y1owdsncfkg3 > .fl-row-content-wrap {
	padding-bottom:0px;
}






 .fl-node-7xoc1eb6wg59 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-kz7mljg913pf .fl-row-content {
	max-width: 1400px;
}
 .fl-node-kz7mljg913pf > .fl-row-content-wrap {
	margin-top:35px;
}
 .fl-node-kz7mljg913pf > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-kz7mljg913pf.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-kz7mljg913pf.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
}






.fl-node-84v3btnqzgmo .fl-row-content {
	max-width: 1400px;
}
 .fl-node-84v3btnqzgmo > .fl-row-content-wrap {
	padding-bottom:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-84v3btnqzgmo.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}






.fl-node-6ovhrantzk2m .fl-row-content {
	max-width: 1400px;
}
 .fl-node-6ovhrantzk2m > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-6ovhrantzk2m > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-6ovhrantzk2m.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
}






 .fl-node-s4xb1r0f3o6h > .fl-row-content-wrap {
	margin-top:40px;
}
 .fl-node-s4xb1r0f3o6h > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-hgm5zl1k7uvn > .fl-row-content-wrap {
	background-color: #ffbbec;
}
@media ( max-width: 768px ) {
 .fl-node-hgm5zl1k7uvn.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:11px;
}
}




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




.fl-node-hmbzuv8ja1ko {
	width: 47.74%;
}
.fl-node-hmbzuv8ja1ko > .fl-col-content {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.fl-builder-content .fl-node-hmbzuv8ja1ko > .fl-col-content {
	min-height: 620px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-hmbzuv8ja1ko {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-node-hmbzuv8ja1ko > .fl-col-content {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
	.fl-builder-content .fl-node-hmbzuv8ja1ko > .fl-col-content {
		min-height: 0px;
	}
}
 .fl-node-hmbzuv8ja1ko > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
 .fl-node-hmbzuv8ja1ko > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-hmbzuv8ja1ko.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
}




.fl-node-9i0adp15zb3o {
	width: 100%;
}




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




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




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




.fl-node-406eosipzdx7 {
	width: 100%;
}




.fl-node-oky1ng6pe5a9 {
	width: 100%;
}
.fl-node-oky1ng6pe5a9 > .fl-col-content {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
 .fl-node-oky1ng6pe5a9 > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-oky1ng6pe5a9.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:2px;
	margin-bottom:2px;
	margin-left:2px;
}
}
 .fl-node-oky1ng6pe5a9 > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-52itrys0k9nu {
	width: 50%;
}
.fl-node-52itrys0k9nu > .fl-col-content {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.fl-builder-content .fl-node-52itrys0k9nu > .fl-col-content {
	min-height: 620px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-52itrys0k9nu > .fl-col-content {
		min-height: 0px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-52itrys0k9nu {
		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: 768px) {
	.fl-builder-content .fl-node-52itrys0k9nu {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-52itrys0k9nu > .fl-col-content {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}
 .fl-node-52itrys0k9nu > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
 .fl-node-52itrys0k9nu > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-52itrys0k9nu.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
}




.fl-node-1jrfm2e9o0s7 {
	width: 100%;
}




.fl-node-tjf8d6r93hyg {
	width: 100%;
}
.fl-node-tjf8d6r93hyg > .fl-col-content {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
 .fl-node-tjf8d6r93hyg > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-tjf8d6r93hyg.fl-col > .fl-col-content {
	margin-top:6px;
	margin-right:2px;
	margin-bottom:2px;
	margin-left:2px;
}
}
 .fl-node-tjf8d6r93hyg > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-10s6lcu2yteg {
	width: 100%;
}




.fl-node-wxbnyg05pero {
	width: 23.73%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-wxbnyg05pero {
		width: 45.5% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-wxbnyg05pero {
		width: 45.5% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-2bz93dloqn8a {
	width: 50%;
}
.fl-node-2bz93dloqn8a > .fl-col-content:after {
	background-color: rgba(253, 237, 245, 0.77);
}
.fl-node-2bz93dloqn8a > .fl-col-content {
	background-image: url(https://bloomshell.co/wp-content/uploads/2026/01/fondo8.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.fl-builder-content .fl-node-2bz93dloqn8a > .fl-col-content {
	min-height: 401px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-2bz93dloqn8a > .fl-col-content {
		min-height: 0px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-2bz93dloqn8a {
		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: 768px) {
	.fl-builder-content .fl-node-2bz93dloqn8a {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-2bz93dloqn8a > .fl-col-content {
		border-top-left-radius: 20px;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 20px;
		border-bottom-right-radius: 20px;
	}
}
 .fl-node-2bz93dloqn8a > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-2bz93dloqn8a.fl-col > .fl-col-content {
	margin-right:10px;
	margin-left:10px;
}
}
 .fl-node-2bz93dloqn8a > .fl-col-content {
	padding-top:0px;
	padding-right:159px;
	padding-bottom:0px;
	padding-left:159px;
}
@media ( max-width: 1200px ) {
 .fl-node-2bz93dloqn8a.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:100px;
	padding-bottom:0px;
	padding-left:100px;
}
}
@media ( max-width: 992px ) {
 .fl-node-2bz93dloqn8a.fl-col > .fl-col-content {
	padding-top:20px;
	padding-right:10px;
	padding-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-2bz93dloqn8a.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
}




.fl-node-8b6jfmzlcxs7 {
	width: 28.53%;
}
.fl-node-8b6jfmzlcxs7 > .fl-col-content {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-8b6jfmzlcxs7 {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-8b6jfmzlcxs7 > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-8b6jfmzlcxs7.fl-col > .fl-col-content {
	margin-top:2px;
	margin-right:2px;
	margin-bottom:2px;
	margin-left:2px;
}
}
/* Wrappers */
body.rtl .fl-module-content-slider .bx-viewport {
	direction: ltr;
}
.fl-module-content-slider .bx-wrapper {
	margin: 0 auto 40px;
}
.fl-content-slider {
	position: relative;
}
.fl-content-slider .fl-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-content-slider-wrapper .fl-slide:first-child,
.fl-content-slider-loaded .fl-slide {
	position: relative;
	visibility: visible;
}

.fl-content-slider-navigation button,
.fl-content-slider-navigation button:focus,
.fl-content-slider-navigation button:hover {
	all: unset;
	cursor: pointer;
	position: absolute;
}

/* Controls */
.bx-wrapper .bx-controls-direction a,
.bx-wrapper .bx-controls-direction button {
	z-index: 99;
}

/* Background Photo */
.fl-content-slider .fl-slide-bg-photo {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.fl-content-slider .fl-slide-bg-photo-img {
	display: none;
}

/* Background Link */
.fl-content-slider .fl-slide-bg-link {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

/* Foreground Photo/Video */
.fl-slide-photo {
	position: relative;
	text-align: center;
	z-index: 2;
}
.fl-slide-text-left .fl-slide-photo-wrap {
	float: right;
}
.fl-slide-text-center .fl-slide-photo-wrap {
	text-align: center;
}
.fl-slide-text-center .fl-slide-photo-wrap img {
	margin: 0 auto;
}
.fl-slide-text-right .fl-slide-photo-wrap {
	float: left;
}

/* Mobile Photo/Video */
.fl-slide-mobile-photo {
	display: none;
}
.fl-slide-mobile-photo-img {
	width: 100%;
}

/* Title and Text Position */
.fl-slide-content {
	position: relative;
	z-index: 2;
}
.fl-slide-text-left .fl-slide-content-wrap {
	float: left;
	text-align: left;
}
.fl-slide-text-center .fl-slide-content-wrap {
	margin: 0 auto;
	text-align: center;
}
.fl-slide-text-right .fl-slide-content-wrap {
	float: right;
	text-align: left;
}

/* Title and Text Style */
.fl-slide-title,
.fl-slide-text > * {
	line-height: 1.4;
	margin: 0 0 20px !important;
	padding: 0 !important;
}
.fl-slide-text > *:last-child {
	margin: 0 !important;
}

/* Buttons */
.fl-slide-cta-button {
	padding-top: 24px;
}

.fl-content-slider-navigation {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 1;
	margin-top: -16px;
}
.fl-content-slider-navigation .slider-prev,
.fl-content-slider-navigation .slider-next {
	position: absolute;
	display: inline-block;
	opacity: .7;
}
.fl-content-slider-navigation .slider-prev:hover,
.fl-content-slider-navigation .slider-next:hover {
	opacity: 1;
}

.fl-module-content-slider .fl-content-slider-navigation .slider-prev { left: 5px; }
.fl-module-content-slider .fl-content-slider-navigation .slider-next { right: 5px; }

.fl-content-slider-navigation .fl-content-slider-svg-container {
	position: relative;
	width: 32px;
	height: 32px;
}
.fl-content-slider-navigation svg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.fl-content-slider-navigation path { 
	fill: #fff;
}
.fl-content-slider-navigation a.disabled,
.fl-content-slider-navigation button.disabled,
.bx-controls a.disabled,
.bx-controls button.disabled {
	cursor: not-allowed;
	pointer-events: none;
}

.fl-content-slider-navigation button:focus {
	outline: 1px auto -webkit-focus-ring-color;
}
@media (max-width: 768px) { /* Wrapper */
.fl-content-slider,
.fl-content-slider .fl-slide {
	min-height: 0 !important;
}

/* Background Photo */
.fl-content-slider .fl-slide-bg-photo {
	background-image: none;
	position: static;
}
.fl-content-slider .fl-slide-bg-photo a {
	position: static;
}
.fl-content-slider .fl-slide-bg-photo-img {
	border: none;
	display: block;
	padding: 0;
}

/* Foreground Photo/Video */
.fl-slide-photo-wrap {
	display: none;
}

/* Mobile Photo/Video */
.fl-slide-mobile-photo {
	display: block;
}

/* Title and Text Position */
.fl-slide-text-left .fl-slide-content-wrap,
.fl-slide-text-right .fl-slide-content-wrap {
	float: none;
	text-align: center;
}
.fl-module-content-slider .fl-slide .fl-slide-content-wrap,
.fl-module-content-slider .fl-slide .fl-slide-content {
	min-height: 0;
	width: auto;
}
.fl-module-content-slider .fl-slide .fl-slide-content {
	margin: 0 !important;
	padding: 30px;
}

/* Title and Text Style */
.fl-module-content-slider .fl-slide .fl-slide-title {
	font-size: 26px;
	line-height: 38px;
}
.fl-module-content-slider .fl-slide .fl-slide-text,
.fl-module-content-slider .fl-slide .fl-slide-text * {
	font-size: 14px;
	line-height: 22px;
}

/* Buttons */
.fl-module-content-slider .fl-slide .fl-button:is(a, button) {
	padding: 10px 20px;
}
 }.fl-node-gevw4pf6shjb .fl-content-slider-wrapper {
	opacity: 0;
}
.fl-node-gevw4pf6shjb .fl-content-slider,
.fl-node-gevw4pf6shjb .fl-slide {
	min-height: 600px;
}
.fl-node-gevw4pf6shjb .fl-slide-foreground {
	margin: 0 auto;
	max-width: 1100px;
}
	.fl-node-gevw4pf6shjb .fl-content-slider-navigation path {
		fill: #000000;
	}
		.fl-node-gevw4pf6shjb .fl-slide-0 .fl-slide-bg-photo{   background-image: url("https://bloomshell.co/wp-content/uploads/2026/01/slider-87.jpg");}.fl-node-gevw4pf6shjb .fl-slide-0 .fl-slide-content-wrap { float: none;}.fl-node-gevw4pf6shjb .fl-slide-1 .fl-slide-bg-photo{   background-image: url("https://bloomshell.co/wp-content/uploads/2026/01/slider-2.jpg");}.fl-node-gevw4pf6shjb .fl-slide-1 .fl-slide-content-wrap { float: none;}.fl-node-gevw4pf6shjb .fl-slide-2 .fl-slide-bg-photo{   background-image: url("https://bloomshell.co/wp-content/uploads/2026/01/slider-5.jpg");}.fl-node-gevw4pf6shjb .fl-slide-2 .fl-slide-content-wrap { float: none;}.fl-node-gevw4pf6shjb .fl-slide .fl-slide-title, .fl-node-gevw4pf6shjb .fl-slide .fl-slide-text, .fl-node-gevw4pf6shjb .fl-slide .fl-slide-text * {
	color: #ffffff;
}
.fl-node-gevw4pf6shjb .fl-slide-0 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-node-gevw4pf6shjb .fl-slide-1 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-node-gevw4pf6shjb .fl-slide-2 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
 .fl-node-gevw4pf6shjb > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}
.fl-module-box > .fl-module-pp-image-carousel {
    width: 100%;
    overflow: hidden;
}

.fl-module-box .pp-image-carousel.swiper-fade .swiper-slide {
    width: 100% !important;
}

.compat-field-pp-custom-link .alignleft {
    margin: 0;
}

.pp-image-carousel-wrapper {
	position: relative;
}

.pp-image-carousel,
.pp-image-carousel.swiper-cube {
    position: relative;
    text-align: center;
	overflow: hidden;
	height: 250px;
}

.pp-slides-auto .pp-image-carousel-item {
    width: auto;
}
.pp-slides-auto .pp-image-carousel-item figure.use-as-background .swiper-slide-image {
    width: auto !important;
}
.pp-slides-overflow .pp-image-carousel {
    overflow: visible;
}

.pp-image-carousel-item {
    float: left;
	text-align: center;
	overflow: hidden;
}

.pp-image-carousel-content {
    position: relative;
    text-align: center;
	overflow: hidden;
}

.pp-image-carousel.slider-type-slideshow {
	height: 450px;
}
.pp-image-carousel.slider-type-slideshow .swiper-wrapper {
	align-items: center;
}

.pp-image-carousel.swiper,
.pp-image-carousel.swiper-container {
	width: 100%;
}

/* Overlay */
.pp-image-overlay {
	position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #fff;
    background-color: hsla(206,7%,54%,.8);
    -webkit-transition: opacity .5s,-webkit-transform .5s;
    transition: opacity .5s,-webkit-transform .5s;
    -o-transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s,-webkit-transform .5s;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.framed {
    opacity: 0;
}

.pp-image-carousel-item .pp-image-overlay.fade {
    opacity: 0;
}

.pp-image-carousel-item:hover .pp-image-overlay.fade,
.pp-image-carousel-item:focus .pp-image-overlay.fade {
    opacity: 1;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.zoom-in {
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
}

.pp-image-carousel .pp-carousel-image-container,
.pp-image-carousel-thumbs .pp-image-carousel-thumb {
	background: no-repeat 50%;
    background-size: cover;
    height: 100%;
    position: relative;
}

.pp-carousel-image-container figure.use-as-background {
	display: inline-flex;
	height: 100%;
	justify-content: center;
    align-items: center;
	position: relative;
}
.pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: cover;
}
/* some image optimization plugins wrap image in <picture> tag */
.pp-carousel-image-container figure.use-as-background picture.swiper-slide-image {
	width: 100%;
}

/* Pagination **/
.pp-image-carousel-wrapper .swiper-pagination-bullets {
    cursor: default;
}
.pp-image-carousel-wrapper .swiper-pagination-bullet {
	top: 0;
	border: none;
}
.pp-image-carousel-wrapper.pp-nav-outside .swiper-pagination {
    bottom: 0;
}

.pp-image-carousel-wrapper .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.25);
    position: absolute;
}

.pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.pp-image-carousel-wrapper .pp-swiper-button {
	background-image: none;
	width: auto;
	height: auto;
	line-height: 1;
	position: absolute;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
	justify-content: center;
    z-index: 1;
    cursor: pointer;
    font-size: 25px;
    top: 50%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pp-image-carousel-wrapper .pp-swiper-button:after {
    content: none;
    display: none;
}
.pp-image-carousel-wrapper .pp-swiper-button span {
	display: inline-flex;
}
.pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 25px;
}

.pp-image-carousel-wrapper.pp-nav-outside .pp-swiper-button {
	top: calc(50% - 30px / 2);
}
.pp-image-carousel-wrapper .swiper-button-prev {
	left: 10px;
}
.pp-image-carousel-wrapper .swiper-button-next {
	right: 10px;
}

.pp-thumbnails-swiper .pp-image-carousel-thumb {
	background: no-repeat center;
    background-size: cover;
    height: 100%;
	position: relative;
	cursor: pointer;
}

.pp-thumbs-ratio-11 .pp-image-carousel-thumb {
	padding-bottom: 100%;
}

.pp-thumbs-ratio-43 .pp-image-carousel-thumb {
    padding-bottom: 75%;
}

.pp-thumbs-ratio-169 .pp-image-carousel-thumb {
    padding-bottom: 56.35%;
}

.pp-thumbs-ratio-219 .pp-image-carousel-thumb {
    padding-bottom: 42.8571%
}

.pp-image-overlay .pp-overlay-icon {
    display: inline-block;
}

.pp-image-overlay .pp-overlay-icon span {
    display: block;
    line-height: 1;
}

.pp-image-carousel .swiper-lazy-preloader {
    display: none;
}

.pp-image-carousel .pp-slides-count {
    display: none;
}

.caption-bottom .pp-carousel-image-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    background-color: var(--fl-global-body, #fff);
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner {
    overflow: hidden;
    margin-bottom: 10px;
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner img {
    overflow: hidden;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-caption {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
    text-align: left;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-slides-count {
    display: inline;
    min-width: 50px;
    text-align: right;
}
.caption-bottom.with-slide-count .pp-image-carousel .swiper-pagination-fraction {
    display: none;
}
.caption-bottom.with-slide-count .pp-image-carousel-wrapper.pp-nav-outside .pp-image-carousel {
    padding-bottom: 0;
}	.fl-node-kivjmweaxt1h .pp-image-carousel,
	.fl-node-kivjmweaxt1h .pp-image-carousel.slider-type-slideshow {
		height: auto;
	}
	.fl-node-kivjmweaxt1h .swiper-slide-inner {
		display: inline-flex;
		flex-direction: column;
		height: 100%;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	.fl-node-kivjmweaxt1h .swiper-slide-image {
		object-fit: contain;
		height: 100%;
	}


.fl-node-kivjmweaxt1h .pp-image-carousel.slider-type-slideshow {
			margin-bottom: 0px;
		}

@media only screen and (max-width: 1200px) {
	}
@media only screen and (max-width: 992px) {
	}
@media only screen and (max-width: 768px) {
	}

.fl-node-kivjmweaxt1h .pp-image-carousel .pp-carousel-image-container {
	background-size: auto;
}
.fl-node-kivjmweaxt1h .pp-image-carousel .pp-carousel-image-container figure.use-as-background {
	}
.fl-node-kivjmweaxt1h .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: none;
		}
.fl-node-kivjmweaxt1h .pp-carousel-image-container figure.use-as-background picture.swiper-slide-image img {
	}

.fl-node-kivjmweaxt1h .pp-image-carousel .swiper-pagination-bullet {
	opacity: 1;
			background-color: #ede5dc !important;
	        width: 6px;
            height: 6px;
            border-radius: 100px !important;
    	box-shadow: none !important;
	}

.fl-node-kivjmweaxt1h .pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.fl-node-kivjmweaxt1h .pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
			background-color: #ede5dc !important;
	}

.fl-node-kivjmweaxt1h .pp-image-carousel .swiper-pagination-bullet:hover,
.fl-node-kivjmweaxt1h .pp-image-carousel .swiper-pagination-bullet:focus,
.fl-node-kivjmweaxt1h .pp-image-carousel .swiper-pagination-bullet-active,
.fl-node-kivjmweaxt1h .pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
			background-color: #cead9b !important;
		opacity: 1;
    box-shadow: none !important;
}


.fl-node-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button {
		height: 34px;
	width: 34px;
			color: rgb(255, 255, 255) !important;
    			background-color: #f09fc5 !important;
	        padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 13px;
            padding-right: 13px;
    }
.fl-node-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 24px;
}
.fl-node-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button svg path {
		fill: rgb(255, 255, 255) !important;
    }

.fl-node-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button:hover,
.fl-node-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button:focus {
        color: rgb(255, 255, 255) !important;
    			background-color: #f0d3bc !important;
	    }

.fl-node-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button:hover svg path,
.fl-node-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button:focus svg path {
	    fill: rgb(255, 255, 255) !important;
    }




.fl-node-kivjmweaxt1h .pp-image-overlay {
			background: rgba(240, 159, 197, 0.6);
	
		-webkit-transition: opacity 0.3s,-webkit-transform 0.3s;
    transition: opacity 0.3s,-webkit-transform 0.3s;
    -o-transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s,-webkit-transform 0.3s;
}

.fl-node-kivjmweaxt1h .pp-image-overlay .pp-overlay-icon {
			width: 36px;
	height: 36px;
}

.fl-node-kivjmweaxt1h .pp-image-overlay .pp-overlay-icon span {
	color: #f09fc5;
	font-size: 16px;
			background-color: #ffffff;
		border-radius: 100px;	padding: 10px;}



.fl-node-kivjmweaxt1h .pp-image-carousel-item {
	padding: 0px;
}
.fl-node-kivjmweaxt1h:not(.caption-bottom) .pp-image-carousel-item {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	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-kivjmweaxt1h.caption-bottom .pp-image-carousel-item img {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	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-kivjmweaxt1h .pp-image-carousel-wrapper .pp-swiper-button {
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 768px) {
	.fl-node-kivjmweaxt1h .pp-image-carousel-item {
		padding: 0px;
	}
}
 .fl-node-kivjmweaxt1h > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-kivjmweaxt1h.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-kivjmweaxt1h.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:8px;
	margin-left:8px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-ap1zybomvuwt h1.fl-heading a,
.fl-row .fl-col .fl-node-ap1zybomvuwt h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ap1zybomvuwt h1.fl-heading .fl-heading-text *,
.fl-node-ap1zybomvuwt h1.fl-heading .fl-heading-text {
	color: #F09FC5;
}
.fl-node-ap1zybomvuwt.fl-module-heading .fl-heading {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 1;
	letter-spacing: 1.3px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-node-ap1zybomvuwt.fl-module-heading .fl-heading {
		font-size: 25px;
	}
}
 .fl-node-ap1zybomvuwt > .fl-module-content {
	margin-top:10px;
	margin-bottom:12px;
}
@media ( max-width: 992px ) {
 .fl-node-ap1zybomvuwt.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ap1zybomvuwt.fl-module > .fl-module-content {
	margin-top:5px;
}
}
.fl-row .fl-col .fl-node-fu3p7xwvar9d h1.fl-heading a,
.fl-row .fl-col .fl-node-fu3p7xwvar9d h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-fu3p7xwvar9d h1.fl-heading .fl-heading-text *,
.fl-node-fu3p7xwvar9d h1.fl-heading .fl-heading-text {
	color: #F09FC5;
}
.fl-node-fu3p7xwvar9d.fl-module-heading .fl-heading {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 1;
	letter-spacing: 1.3px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-node-fu3p7xwvar9d.fl-module-heading .fl-heading {
		font-size: 25px;
	}
}
 .fl-node-fu3p7xwvar9d > .fl-module-content {
	margin-top:10px;
	margin-bottom:12px;
}
@media ( max-width: 992px ) {
 .fl-node-fu3p7xwvar9d.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-fu3p7xwvar9d.fl-module > .fl-module-content {
	margin-top:5px;
}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-hvdg3xac6moj .fl-icon i,
.fl-node-hvdg3xac6moj .fl-icon i:before {
	color: rgb(255, 255, 255);
}




.fl-node-hvdg3xac6moj .fl-icon i, .fl-node-hvdg3xac6moj .fl-icon i:before {
	font-size: 35px;
}
.fl-node-hvdg3xac6moj .fl-icon-wrap .fl-icon-text {
	height: 61.25px;
}
.fl-node-hvdg3xac6moj.fl-module-icon {
	text-align: right;
}
@media(max-width: 1200px) {
	.fl-node-hvdg3xac6moj .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 992px) {
	.fl-node-hvdg3xac6moj .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 768px) {
	.fl-node-hvdg3xac6moj .fl-icon i, .fl-node-hvdg3xac6moj .fl-icon i:before {
		font-size: 20px;
	}
	.fl-node-hvdg3xac6moj .fl-icon-wrap .fl-icon-text {
		height: 35px;
	}
}
 .fl-node-hvdg3xac6moj > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:-105px;
}
@media ( max-width: 768px ) {
 .fl-node-hvdg3xac6moj.fl-module > .fl-module-content {
	margin-bottom:-61px;
}
}
.fl-row .fl-col .fl-node-ca8r7y2vf0zg h1.fl-heading a,
.fl-row .fl-col .fl-node-ca8r7y2vf0zg h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ca8r7y2vf0zg h1.fl-heading .fl-heading-text *,
.fl-node-ca8r7y2vf0zg h1.fl-heading .fl-heading-text {
	color: #F09FC5;
}
.fl-node-ca8r7y2vf0zg.fl-module-heading .fl-heading {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 1;
	letter-spacing: 1.3px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-node-ca8r7y2vf0zg.fl-module-heading .fl-heading {
		font-size: 25px;
	}
}
 .fl-node-ca8r7y2vf0zg > .fl-module-content {
	margin-top:10px;
	margin-bottom:12px;
}
@media ( max-width: 992px ) {
 .fl-node-ca8r7y2vf0zg.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ca8r7y2vf0zg.fl-module > .fl-module-content {
	margin-top:20px;
}
}
.woopack-single-product .single-product-image {
	position: relative;
	display: inline-block;
}

.single-product-layout-3,
.single-product-layout-4 {
	text-align: center;
}

.single-product-layout-3 .woocommerce-product-rating,
.single-product-layout-4 .woocommerce-product-rating {
	text-align: -webkit-center;
	text-align: -moz-center;
	text-align: -ms-center;
	text-align: -o-center;
}

.woopack-single-product.woocommerce .woocommerce-product-rating .star-rating {
	margin-top: 0;
}

.woopack-single-product .onsale {
	padding: 5px 10px;
}

.product-content {
	padding: 0 10px;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .woocommerce #content input.button, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button, .woocommerce-page #respond input#submit, .woocommerce-page #content input.button {
    transition: 0.3s ease-in-out;
}

.woopack-single-product .woocommerce-product-add-to-cart .quantity {
	float: left;
    margin-right: 5px;
}
.woopack-single-product .summary.entry-summary.clearfix {
	width: 100% !important;
	float: none !important;
}@media (max-width: 768px) {  }
.fl-node-4y9egvas1nzk .woopack-single-product {
	position: relative;
		}
.fl-node-4y9egvas1nzk .woopack-single-product:hover {
	}
.fl-node-4y9egvas1nzk .woopack-single-product a:not(.ui-corner-all) {
	text-decoration: none;
	position: relative;
}
.fl-node-4y9egvas1nzk .woopack-single-product .product-img-wrapper {
	vertical-align: top;
}

.fl-node-4y9egvas1nzk .woopack-single-product .woopack-sale-badge {
	position: absolute;
			top: 0 !important;
		left: 0 !important;
		bottom: auto !important;
		right: auto !important;
	
	background-color: #1e8cbe;

				
				
	color: #ffffff;
}
.fl-node-4y9egvas1nzk .woopack-single-product .product-content {
	}
.fl-node-4y9egvas1nzk .woopack-single-product .woopack-product-title {
	color: #f09fc5;
	margin-top: 0;
	margin-bottom: 0px;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-rating {
			}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-rating .star-rating {
	float: none;
		}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-rating .star-rating::before {
	}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-rating .star-rating span::before {
	}

.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-rating .woocommerce-rating-count {
	}
.fl-node-4y9egvas1nzk .woopack-single-product .price {
	margin-bottom: 0px;
}
.fl-node-4y9egvas1nzk .woopack-single-product .price .amount {
	color: rgb(102, 102, 102);
}
.fl-node-4y9egvas1nzk .woopack-single-product .price ins {
	text-decoration: none;
}
.fl-node-4y9egvas1nzk .woopack-single-product .price ins .amount {
	text-decoration: none;
		}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-details__short-description {
	}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-details__short-description,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-details__short-description p {
	}

/**************************
 * Variations
 **************************/
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .variations_form.cart,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart label {
	}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .variations {
	margin-top: 30px;
	margin-bottom: 15px;
			}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .variations td label {
	margin: 0;
	margin-right: 30px;
	vertical-align: middle;
	font-size: 15px;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .variations tr select {
	margin-right: 10px;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart form.cart,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
	width: 100%;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .variations_form.cart {
		text-align: -moz-;
	display: block;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .variations_form.cart .single_variation_wrap {
	margin-top: 5px;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .quantity {
	vertical-align: top;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .variations_form.cart .variations_button {
		}

.fl-node-4y9egvas1nzk .woocommerce .woopack-product-action .variations_form .label {
	color: inherit;
}
.fl-node-4y9egvas1nzk .woocommerce .woopack-product-action .variations_form .label label {
	font-size: 12px;
}

.fl-node-4y9egvas1nzk .woocommerce .woopack-product-action .variations_form .reset_variations {
	margin-left: 5px;
}

.fl-node-4y9egvas1nzk .woocommerce .woopack-product-action .variations_form .woocommerce-variation-price {
	margin-top: 5px;
}
.fl-node-4y9egvas1nzk .woocommerce .woopack-product-action .variations_form .woocommerce-variation-price .price {
	font-size: 14px;
}


/**************************
 * Button
 **************************/
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .woocommerce-variation {
	margin-bottom: 10px;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart {
	margin-top: 5px;
	margin-bottom: 15px;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart a:not(.reset_variations):not(.ui-corner-all),
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .button,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .button.disabled,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .button.alt.disabled,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .button.single_add_to_cart_button.alt {
				
	transition: 0.2s ease-in-out;
}
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart a:not(.reset_variations):not(.ui-corner-all):hover,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .button:hover,
.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart .button.single_add_to_cart_button.alt:hover {
			}
.fl-node-4y9egvas1nzk .woopack-single-product .product_meta {
		border-color: #eeeeee;
	}
.fl-node-4y9egvas1nzk .woopack-single-product .product_meta .posted_in a {
	}


@media only screen and (max-width: 992px) {
	.fl-node-4y9egvas1nzk .woopack-single-product .woopack-sale-badge {
									}
	.fl-node-4y9egvas1nzk .woopack-single-product .woopack-product-title {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-rating {
					}
	.fl-node-4y9egvas1nzk .woopack-single-product .price {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .price ins .amount {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-details__short-description {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart {
					}
	.fl-node-4y9egvas1nzk .woopack-single-product .product_meta {
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-4y9egvas1nzk .woopack-single-product .single-product-image {
		float: none;
		display: block;
	}
	.fl-node-4y9egvas1nzk .woopack-single-product .single-product-image img {
		width: 100%;
	}
	.fl-node-4y9egvas1nzk .woopack-single-product .woopack-sale-badge {
									}
	.fl-node-4y9egvas1nzk .woopack-single-product .product-content {
		width: 100% !important;
		float: none;
	}
	.fl-node-4y9egvas1nzk .woopack-single-product .woopack-product-title {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-rating {
					}
	.fl-node-4y9egvas1nzk .woopack-single-product .price {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .price ins .amount {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-details__short-description {
			}
	.fl-node-4y9egvas1nzk .woopack-single-product .woocommerce-product-add-to-cart {
					}
	.fl-node-4y9egvas1nzk .woopack-single-product .product_meta {
			}
}
.fl-node-4y9egvas1nzk .woopack-single-product .woopack-product-title {
	font-family: "Cormorant Garamond", serif;
	font-weight: 700;
	font-size: 26px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-node-4y9egvas1nzk .woopack-single-product .woopack-product-title {
		font-size: 22px;
		line-height: 2.6;
	}
}
 .fl-node-4y9egvas1nzk > .fl-module-content {
	margin-bottom:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-4y9egvas1nzk.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-4y9egvas1nzk.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-row .fl-col .fl-node-eci7wpagfb6l h1.fl-heading a,
.fl-row .fl-col .fl-node-eci7wpagfb6l h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-eci7wpagfb6l h1.fl-heading .fl-heading-text *,
.fl-node-eci7wpagfb6l h1.fl-heading .fl-heading-text {
	color: #F09FC5;
}
.fl-node-eci7wpagfb6l.fl-module-heading .fl-heading {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 1;
	letter-spacing: 1.3px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-node-eci7wpagfb6l.fl-module-heading .fl-heading {
		font-size: 25px;
	}
}
 .fl-node-eci7wpagfb6l > .fl-module-content {
	margin-top:10px;
	margin-bottom:12px;
}
@media ( max-width: 992px ) {
 .fl-node-eci7wpagfb6l.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-eci7wpagfb6l.fl-module > .fl-module-content {
	margin-top:40px;
}
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}

.pp-logo-grid-input.input-small {
	width: 46px !important;
}

.pp-logos-content {
	position: relative;
}
.pp-logos-wrapper {
	display: flex;
    flex-wrap: wrap;
}
.pp-logos-content .pp-logo img {
	width: auto;
}

.pp-logos-content .logo-slider-prev,
.pp-logos-content .logo-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -6px;
}

.pp-logos-content .logo-slider-next {
    right: -6px;
    left: auto;
}

.pp-logos-content .logo-slider-nav {
    text-decoration: none;
    box-shadow: none;
    border: none;
	border-radius: 0;
	background: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	height: 30px;
	width: 30px;
	padding: 0;
	color: #333;
	transition: all 0.3s ease-in-out;
}
.pp-logos-content .disabled {
	pointer-events: none;
}
.pp-logos-content .logo-slider-nav svg {
	height: 20px;
	fill: currentColor;
}

.pp-logos-content .pp-logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: background-color 0.3s ease-in-out;
}

.pp-logos-content .slide-group .pp-logo {
	float: left;
}

.pp-logos-content .pp-logo > a,
.pp-logos-content .pp-logo .pp-logo-inner {
    flex: 1 1 auto;
}

.pp-logos-content .pp-logo .pp-logo-inner .pp-logo-inner-wrap {
    text-align: center;
}

.pp-logos-content .pp-logo a {
    display: block;
    text-decoration: none;
    box-shadow: none;
    border: none;
}

.pp-logos-content .pp-logo div.title-wrapper p.logo-title {
	text-align: center;
}

.pp-logos-content .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
	border: 0 !important;
	box-shadow: none !important;
}

.pp-logos-content .bx-wrapper {
	margin-bottom: 0;
	direction: ltr;
}
.pp-logos-carousel:not(.pp-logos-wrapper-loaded) {
	opacity: 0;
}

.pp-logos-content.is-ticker {
	display: flex;
	overflow: hidden;
}
.pp-logos-ticker {
	user-select: none;
	display: flex;
	flex-shrink: 0;
	position: relative;	
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	will-change: transform;
	animation: var(--ticker-animation) var(--ticker-speed) linear infinite;
}

@keyframes pp-ticker {
	0% {
		transform: translateX(-0%);
	}
	100% {
		transform: translateX(-50%);
	}
}
@keyframes pp-ticker-reverse {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(-0%);
	}
}.fl-node-b1wc96apu4dj .pp-logos-wrapper.pp-logos-grid {
    gap: 5px;
}
.fl-node-b1wc96apu4dj .pp-logos-wrapper.pp-logos-ticker {
    gap: 5px;
}
.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo {
        	}



.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo:hover {
	}


.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo div.title-wrapper {
    display: block}

.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo div.title-wrapper p.logo-title {
        color: rgb(255, 255, 255);
            margin-top: 10px;
            margin-bottom: 10px;
    }


.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo:hover div.title-wrapper p.logo-title {
    }

.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo img {
            -webkit-filter: inherit;
        filter: inherit;
            border-style: none;
            border-width: 1px;
                border-radius: 0px;
        margin: 0 auto;
        opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    }

.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo:hover img {
            -webkit-filter: inherit;
        filter: inherit;
                opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    }
.fl-node-b1wc96apu4dj .pp-logos-content .bx-pager a {
	opacity: 1;
		background-color: #f5f5f5;
	        width: 14px;
            height: 14px;
            border-radius: 100px;
        box-shadow: none;
}

.fl-node-b1wc96apu4dj .pp-logos-content .bx-pager a.active,
.fl-node-b1wc96apu4dj .pp-logos-content .bx-pager a:hover {
		background-color: #999999;
		opacity: 1;
    box-shadow: none;
}


.fl-node-b1wc96apu4dj .pp-logos-content button.logo-slider-nav {
			display: none;
	    				height: 26px;
		width: 26px;
	}
.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav svg {
			height: 16px;
	}
.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav svg path {
	}

.fl-node-b1wc96apu4dj .pp-logos-content button.logo-slider-nav:hover {
    	    }

.fl-node-b1wc96apu4dj .pp-logos-content button.logo-slider-nav:hover svg path {
	}

@media only screen and (max-width: 1200px) {
    .fl-node-b1wc96apu4dj .pp-logos-content .pp-logo {
            }
	.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav svg {
			}
}

@media only screen and (max-width: 992px) {
    .fl-node-b1wc96apu4dj .pp-logos-content .pp-logo {
            }
	.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav svg {
			}
}

@media only screen and (max-width: 768px) {
    .fl-node-b1wc96apu4dj .pp-logos-content .pp-logo {
            }
	.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-b1wc96apu4dj .pp-logos-content .logo-slider-nav svg {
			}
}.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo div.title-wrapper p.logo-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 900;
	font-size: 31px;
	line-height: 0.3;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo div.title-wrapper p.logo-title {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-b1wc96apu4dj .pp-logos-content .pp-logo div.title-wrapper p.logo-title {
		font-size: 17px;
	}
}
 .fl-node-b1wc96apu4dj > .fl-module-content {
	margin-top:-8px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-b1wc96apu4dj.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:2px;
	margin-bottom:0px;
	margin-left:2px;
}
}
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.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-hxkjay6o781n .pp-photo-container .pp-photo-content {
	}


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

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

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

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


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

@media only screen and (max-width: 992px) {
	    .fl-node-hxkjay6o781n .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: 768px) {
	.fl-node-hxkjay6o781n .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-hxkjay6o781n .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-hxkjay6o781n .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-hxkjay6o781n .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-hxkjay6o781n .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-hxkjay6o781n .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-hxkjay6o781n > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-3m1r5ybevshf .fl-icon i,
.fl-node-3m1r5ybevshf .fl-icon i:before {
	color: rgb(255, 255, 255);
}




.fl-node-3m1r5ybevshf .fl-icon i, .fl-node-3m1r5ybevshf .fl-icon i:before {
	font-size: 35px;
}
.fl-node-3m1r5ybevshf .fl-icon-wrap .fl-icon-text {
	height: 61.25px;
}
.fl-node-3m1r5ybevshf.fl-module-icon {
	text-align: right;
}
@media(max-width: 1200px) {
	.fl-node-3m1r5ybevshf .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 992px) {
	.fl-node-3m1r5ybevshf .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 768px) {
	.fl-node-3m1r5ybevshf .fl-icon i, .fl-node-3m1r5ybevshf .fl-icon i:before {
		font-size: 20px;
	}
	.fl-node-3m1r5ybevshf .fl-icon-wrap .fl-icon-text {
		height: 35px;
	}
}
 .fl-node-3m1r5ybevshf > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:-105px;
}
@media ( max-width: 768px ) {
 .fl-node-3m1r5ybevshf.fl-module > .fl-module-content {
	margin-bottom:-63px;
}
}
.fl-row .fl-col .fl-node-8y6vdjzmfhqx h1.fl-heading a,
.fl-row .fl-col .fl-node-8y6vdjzmfhqx h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-8y6vdjzmfhqx h1.fl-heading .fl-heading-text *,
.fl-node-8y6vdjzmfhqx h1.fl-heading .fl-heading-text {
	color: #F09FC5;
}
.fl-node-8y6vdjzmfhqx.fl-module-heading .fl-heading {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-size: 34px;
	line-height: 1;
	letter-spacing: 1.3px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-node-8y6vdjzmfhqx.fl-module-heading .fl-heading {
		font-size: 25px;
	}
}
 .fl-node-8y6vdjzmfhqx > .fl-module-content {
	margin-top:10px;
	margin-bottom:12px;
}
@media ( max-width: 992px ) {
 .fl-node-8y6vdjzmfhqx.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-8y6vdjzmfhqx.fl-module > .fl-module-content {
	margin-top:5px;
}
}
/* .fl-module-pp-video .fl-module-content {
	overflow: hidden;
} */
.fancybox-container .pp-video-container {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.pp-video-lightbox .fancybox-content {
	background: none;
    width: 100%;
    height: 100%;
}

.pp-fit-aspect-ratio {
	position: relative;
	background: none;
}

.pp-aspect-ratio-219 .pp-fit-aspect-ratio {
	aspect-ratio: 21/9;
}
  
.pp-aspect-ratio-169 .pp-fit-aspect-ratio {
	aspect-ratio: 16/9;
}
.pp-aspect-ratio-916 .pp-fit-aspect-ratio {
	aspect-ratio: 9/16;
}
  
.pp-aspect-ratio-43 .pp-fit-aspect-ratio {
	aspect-ratio: 4/3;
}

.pp-aspect-ratio-45 .pp-fit-aspect-ratio {
	aspect-ratio: 4/5;
}
  
.pp-aspect-ratio-32 .pp-fit-aspect-ratio {
	aspect-ratio: 3/2;
}
  
.pp-aspect-ratio-11 .pp-fit-aspect-ratio {
	aspect-ratio: 1/1;
}

.pp-aspect-ratio-auto .pp-fit-aspect-ratio {
	height: auto;
}
  
.pp-fit-aspect-ratio iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: 0;
	background-color: #000;
}
.pp-fit-aspect-ratio video {
	width: 100%;
}
.pp-video-wrapper {
	background-color: transparent;
	overflow: hidden;
}
.pp-video-wrapper video,
.pp-video-wrapper iframe {
    max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    border: none;
}
.pp-video-wrapper .pp-video-player {
	-o-object-fit: cover;
    object-fit: cover;
}

.pp-aspect-ratio-219 .pp-video-player {
	aspect-ratio: 21/9;
}
  
.pp-aspect-ratio-169 .pp-video-player {
	aspect-ratio: 16/9;
}

.pp-aspect-ratio-916 .pp-video-player {
	aspect-ratio: 9/16;
}
  
.pp-aspect-ratio-43 .pp-video-player {
	aspect-ratio: 4/3;
}

.pp-aspect-ratio-45 .pp-video-player {
	aspect-ratio: 4/5;
}
  
.pp-aspect-ratio-32 .pp-video-player {
	aspect-ratio: 3/2;
}
  
.pp-aspect-ratio-11 .pp-video-player {
	aspect-ratio: 1/1;
}

.pp-video-image-overlay {
	text-align: center;
	position: relative;
}
.pp-video-wrapper:not(.pp-video-has-lightbox) .pp-video-image-overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50%;
	display: flex;
}
.pp-video-wrapper:not(.pp-video-has-lightbox) .pp-video-image-overlay img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: auto;
}

.pp-video-play-icon {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: inline-block;
    line-height: 0;
    padding: 20px;
    border-radius: 100%;
	background: #fff;
	cursor: pointer;
}
.pp-video-play-icon svg {
	width: 30px;
    height: 30px;
    transform: translateX(3px);
}

.pp-video-play-icon i {
	font-size: 100px;
    color: #fff;
    opacity: 0.8;
    text-shadow: 1px 0 6px rgba(0, 0, 0, 0.3);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.pp-video-play-icon.play-icon-default {
	background: rgba(0, 0, 0, 0.33);
}
.pp-video-play-icon.play-icon-default svg {
	fill: #f1f1f1;
	width: 20px;
	height: 20px;
}

/*
.pp-video-source-youtube .pp-video-play-icon.play-icon-default {
	background: #f00;
	width: 68px;
    height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
}
.pp-video-source-youtube .pp-video-play-icon.play-icon-default svg {
	fill: #fff;
	width: 22px;
    height: 22px;
}
*/

.pp-video-wrapper .pp-screen-only {
	position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media only screen and (min-width: 1025px) {
	.fancybox-container .pp-video-container {
		width: 75%;
	}
}
@media only screen and (max-width: 1024px) {
	.fancybox-container .pp-video-container {
		width: 100%;
	}
}.fl-node-jxa5qi41z0wv .pp-video-play-icon {
		}
.fl-node-jxa5qi41z0wv .pp-video-play-icon:hover {
		}
.fl-node-jxa5qi41z0wv .pp-video-image-overlay {
	cursor: pointer;
}
.fl-node-jxa5qi41z0wv .pp-video-play-icon svg {
	}
.fl-node-jxa5qi41z0wv .pp-video-play-icon:hover svg {
	}


.fancybox-jxa5qi41z0wv button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}
.fancybox-jxa5qi41z0wv .pp-aspect-ratio-11 {
	background: none;
	width: 100%;
	height: 100%;
}
.fancybox-jxa5qi41z0wv .pp-video-container {
	}
.fancybox-jxa5qi41z0wv .fancybox-close-small {
	color: #fff;
	height: 60px;
	width: 60px;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	padding: 5px !important;
}
.fancybox-jxa5qi41z0wv .fancybox-close-small:hover,
.fancybox-jxa5qi41z0wv .fancybox-close-small:focus {
	color: #fff;
}
.fancybox-jxa5qi41z0wv .fancybox-close-small,
.fancybox-jxa5qi41z0wv .fancybox-close-small:focus {
	position: absolute;
	top: 0;
	right: 0;
}
.admin-bar .fancybox-jxa5qi41z0wv .fancybox-close-small {
	top: 32px;
}
.fancybox-jxa5qi41z0wv-overlay {
	}

@media only screen and (min-width: 1025px) {
	.fancybox-jxa5qi41z0wv .pp-video-container {
			}
}

@media only screen and (max-width: 992px) {
	.fl-node-jxa5qi41z0wv .pp-video-play-icon {
			}
}
@media only screen and (max-width: 768px) {
	.fl-node-jxa5qi41z0wv .pp-video-play-icon {
			}
} .fl-node-jxa5qi41z0wv > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-jxa5qi41z0wv.fl-module > .fl-module-content {
	margin-bottom:-11px;
}
}
.pp-hotspot span.pp-marker-title {
	position: absolute;
    bottom: -30px;
    left: -50px;
    right: -50px;
    width: auto;
	background: #ef4f4f;
    color: #fff;
}
.pp-tooltip-close {
	cursor: pointer;
}
.pp-marker-title.sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
	border: 0 !important;
	box-shadow: none !important;
}
.tooltipster-sidetip .tooltipster-arrow {
    overflow: visible;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-uncropped {
    bottom: -2px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -12px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-uncropped {
    right: -2px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -12px;
}
.tooltipster-sidetip .tooltipster-arrow-background {
    display: none !important;
}.fl-node-gn7fbhdzec84 .pp-hotspot-container {
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translate(-50%);
}
.fl-node-gn7fbhdzec84 .pp-hotspot-image-container .pp-hotspot-image {
	width: px;
	opacity: 1;
}
.fl-builder-edit .fl-node-gn7fbhdzec84 span.pp-marker-title {
	display: block}
.fl-node-gn7fbhdzec84 .pp-hotspot-marker {
	position: absolute;
	background: rgb(255, 255, 255);
	min-width: 40px;
	min-height: 40px;
	text-align: center;
	border-radius: 100px;
	border-style: solid;
	border-width: 2px;
	border-color: #000;
	cursor: pointer;
}
.fl-node-gn7fbhdzec84 .pp-hotspot-marker.pp-non-active-marker {
	visibility: hidden;
}
.fl-node-gn7fbhdzec84 .pp-hotspot-marker.pp-non-active-marker.open {
	visibility: visible;
}

.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon,
.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-text {
	font-size: 20px;
	color: #f09fc5;
	margin-bottom: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon.dashicons, 
.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon.dashicons-before:before {
	font-size: 20px;
	width: 20px;
	height: 20px;
}
.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-image {
	min-width: 20px;
	min-height: 20px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	border-radius: 100px;
				}
	.fl-node-gn7fbhdzec84 .pp-hotspot-marker:before {
		content: "";
		display: block;
		pointer-events: none;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		-webkit-animation: shadow-pulse 2s infinite;
		animation: shadow-pulse 2s infinite;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		border-radius: 100px;
									background: rgb(255, 255, 255);
		z-index: 0;
	}
@keyframes shadow-pulse
{
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(2);
		transform: scale(2);
		opacity: 0;
	}
}


	.fl-node-gn7fbhdzec84 .pp-hotspot-marker.pp-marker-1 {
		top: 26%;
		left: 21%;
		transform: translate(0, -26%);
					}
	
		
.fl-node-gn7fbhdzec84 .pp-hotspot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
		border-top-left-radius: 20px;
	border-top-right-radius:  20px;
	border-bottom-left-radius:  20px;
	border-bottom-right-radius:  20px;
	}
.fl-node-gn7fbhdzec84 .pp-hotspot-overlay-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
	color: #ffffff;
	background: #428bca;
	transition: all 0.4s ease-in-out;
}
.fl-node-gn7fbhdzec84 .pp-hotspot-overlay-button:hover {
	color: #000000;
	background: #ffffff;
	border-color: ;
}
.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-tooltip-container {
	display: none;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box {
	background: #f09fc5;
	border-radius: 20px;
	border: none;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content {
	color: #fff;
}
.pp-tooltip-wrap-gn7fbhdzec84 .pp-tooltip-content-gn7fbhdzec84 .pp-tour ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
	padding: 0;
}
.pp-tooltip-wrap-gn7fbhdzec84 .pp-tooltip-content-gn7fbhdzec84 .pp-tour ul a.pp-prev.inactive,
.pp-tooltip-wrap-gn7fbhdzec84 .pp-tooltip-content-gn7fbhdzec84 .pp-tour ul a.pp-next.inactive {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	opacity: 0.5;
}
.pp-tooltip-wrap-gn7fbhdzec84 .pp-tooltip-content-gn7fbhdzec84 .pp-tour ul a.pp-prev {
	color: #fff;
	cursor: pointer;
}
.pp-tooltip-wrap-gn7fbhdzec84 .pp-tooltip-content-gn7fbhdzec84 .pp-tour ul a.pp-next {
	color: #fff;
	cursor: pointer;
}
.pp-tooltip-wrap-gn7fbhdzec84 .pp-tooltip-content-gn7fbhdzec84 .pp-hotspot-end .pp-tour-end {
	color: #fff;
	cursor: pointer;
}

.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border,
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #f09fc5;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border,
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #f09fc5;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border,
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #f09fc5;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border,
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #f09fc5;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content .pp-hotspot-tour .pp-hotspot-end {
	text-align: center;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content .pp-tooltip-close {
	position: absolute;
	right: 0;
	top: 0;
	margin: 5px;
	font-size: px;
	color: ;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content .pp-tooltip-close:hover {
	color: ;
}

@media only screen and (max-width: 992px) {
	.fl-node-gn7fbhdzec84 .pp-hotspot-image-container .pp-hotspot-image {
		width: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon,
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-text {
		font-size: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon.dashicons, 
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon.dashicons-before:before {
		font-size: px;
		width: px;
		height: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-marker {
		min-width: px;
		min-height: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-image {
		min-width: px;
		min-height: px;
		width: px;
		height: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-hotspot-marker:before,
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-image {
				border-top-left-radius: px;
		border-top-right-radius:  px;
		border-bottom-left-radius:  px;
		border-bottom-right-radius:  px;
			}
	.fl-node-gn7fbhdzec84 .pp-hotspot-overlay {
				border-top-left-radius: px;
		border-top-right-radius:  px;
		border-bottom-left-radius:  px;
		border-bottom-right-radius:  px;
			}
	.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content .pp-tooltip-close {
		font-size: px;
	}
}
@media only screen and (max-width: 768px) {
	.fl-node-gn7fbhdzec84 .pp-hotspot-image-container .pp-hotspot-image {
		width: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon,
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-text {
		font-size: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon.dashicons, 
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-icon.dashicons-before:before {
		font-size: px;
		width: px;
		height: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-marker {
		min-width: px;
		min-height: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-image {
		min-width: px;
		min-height: px;
		width: px;
		height: px;
	}
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-hotspot-marker:before,
	.fl-node-gn7fbhdzec84 .pp-hotspot-content .pp-marker-image {
				border-top-left-radius: px;
		border-top-right-radius:  px;
		border-bottom-left-radius:  px;
		border-bottom-right-radius:  px;
			}
	.fl-node-gn7fbhdzec84 .pp-hotspot-overlay {
				border-top-left-radius: px;
		border-top-right-radius:  px;
		border-bottom-left-radius:  px;
		border-bottom-right-radius:  px;
			}
	.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content .pp-tooltip-close {
		font-size: px;
	}
}
.fl-node-gn7fbhdzec84 .pp-hotspot-image-container .pp-hotspot-image {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.fl-node-gn7fbhdzec84 .pp-hotspot-marker {
	border-color: rgb(255, 255, 255);
}
.fl-node-gn7fbhdzec84 .pp-hotspot-overlay-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.pp-tooltip-wrap-gn7fbhdzec84.tooltipster-sidetip .tooltipster-box .tooltipster-content .pp-tooltip-close {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
 .fl-node-gn7fbhdzec84 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-vh028k3rbesp .fl-content-slider-wrapper {
	opacity: 0;
}
.fl-node-vh028k3rbesp .fl-content-slider,
.fl-node-vh028k3rbesp .fl-slide {
	min-height: 350px;
}
.fl-node-vh028k3rbesp .fl-slide-foreground {
	margin: 0 auto;
	max-width: 1100px;
}
	.fl-node-vh028k3rbesp .fl-content-slider-navigation path {
		fill: #000000;
	}
		.fl-node-vh028k3rbesp .fl-slide-0 .fl-slide-bg-photo{   background-image: url("https://bloomshell.co/wp-content/uploads/2026/01/slider-87.jpg");}.fl-node-vh028k3rbesp .fl-slide-0 .fl-slide-content-wrap { float: none;}.fl-node-vh028k3rbesp .fl-slide-1 .fl-slide-bg-photo{   background-image: url("https://bloomshell.co/wp-content/uploads/2026/01/slider-2.jpg");}.fl-node-vh028k3rbesp .fl-slide-1 .fl-slide-content-wrap { float: none;}.fl-node-vh028k3rbesp .fl-slide-2 .fl-slide-bg-photo{   background-image: url("https://bloomshell.co/wp-content/uploads/2026/01/slider-5.jpg");}.fl-node-vh028k3rbesp .fl-slide-2 .fl-slide-content-wrap { float: none;}.fl-node-vh028k3rbesp .fl-slide .fl-slide-title, .fl-node-vh028k3rbesp .fl-slide .fl-slide-text, .fl-node-vh028k3rbesp .fl-slide .fl-slide-text * {
	color: #ffffff;
}
.fl-node-vh028k3rbesp .fl-slide-0 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-node-vh028k3rbesp .fl-slide-1 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-node-vh028k3rbesp .fl-slide-2 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
 .fl-node-vh028k3rbesp > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-49f2d0xmpyvz .fl-separator {
	border-top-width: 2px;
	max-width: 20%;
	margin: auto;
}

			.fl-node-49f2d0xmpyvz .fl-separator {
	border-top-color: #f09fc5;
	border-top-style: solid;
}
 .fl-node-49f2d0xmpyvz.fl-module-separator {
	margin-top:5px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-49f2d0xmpyvz.fl-module-separator.fl-module {
	margin-top:20px;
}
}
.fl-node-o3yqbv4lu10c .fl-separator {
	border-top-width: 2px;
	max-width: 20%;
	margin: auto;
}

			.fl-node-o3yqbv4lu10c .fl-separator {
	border-top-color: #f09fc5;
	border-top-style: solid;
}
 .fl-node-o3yqbv4lu10c.fl-module-separator {
	margin-top:5px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-o3yqbv4lu10c.fl-module-separator.fl-module {
	margin-top:20px;
}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-xap81qgs62tm .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-xap81qgs62tm .fl-module-content .fl-rich-text * {
		color: rgb(102, 102, 102);
	}
	.fl-builder-content .fl-node-xap81qgs62tm .fl-rich-text, .fl-builder-content .fl-node-xap81qgs62tm .fl-rich-text *:not(b, strong) {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 4px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-xap81qgs62tm .fl-rich-text, .fl-builder-content .fl-node-xap81qgs62tm .fl-rich-text *:not(b, strong) {
		letter-spacing: 1.6px;
	}
}
 .fl-node-xap81qgs62tm > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-xap81qgs62tm.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:0px;
}
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.pp-image-panels-wrap .pp-image-panels-inner {
	display: flex;
	flex: 1 1 auto;
}
.pp-image-panels-wrap .pp-panel-title .pp-panel-link {
	display: block;
	float: none;
}
.pp-image-panels-wrap .pp-panel:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
    background-size: cover;
	transition: all 0.3s ease-in-out;
}
.pp-image-panels-wrap .pp-panel {
	background-position: center;
	background-size: cover;
	display: inline-block;
	overflow: hidden;
	position: relative;
	-webkit-transition: width .3s cubic-bezier(0.39, 0.58, 0.57, 1);
	-moz-transition: width .3s cubic-bezier(0.39, 0.58, 0.57, 1);
	-o-transition: width .3s cubic-bezier(0.39, 0.58, 0.57, 1);
	-ms-transition: width .3s cubic-bezier(0.39, 0.58, 0.57, 1);
	transition: width .3s cubic-bezier(0.39, 0.58, 0.57, 1);
	will-change: width;
}
.pp-image-panels-wrap .pp-panel .pp-panel-title {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	z-index: 1;
	width: 100%;
}
.pp-image-panels-wrap .pp-panel .pp-panel-title-text {
	margin-top: 0;
	margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
	.pp-image-panels-wrap .pp-panel {
		width: 100% !important;
		text-align: center;
	}
}
.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel .pp-panel-title {
		}


	.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel {
		transition-duration: 400ms;
	}

	.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-0:after {
		background-image: url(https://bloomshell.co/wp-content/uploads/2026/01/666-1.jpg);
			}

			.fl-builder-content .fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel.pp-panel-0 .pp-panel-title-text {
		color: rgb(255, 255, 255);
	}
			.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-1:after {
		background-image: url(https://bloomshell.co/wp-content/uploads/2026/01/1.jpg);
			}

			.fl-builder-content .fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel.pp-panel-1 .pp-panel-title-text {
		color: rgb(255, 255, 255);
	}
			.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-2:after {
		background-image: url(https://bloomshell.co/wp-content/uploads/2026/01/3.jpg);
			}

			.fl-builder-content .fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel.pp-panel-2 .pp-panel-title-text {
		color: rgb(255, 255, 255);
	}
			.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-3:after {
		background-image: url(https://bloomshell.co/wp-content/uploads/2026/01/4-1.jpg);
			}

			.fl-builder-content .fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel.pp-panel-3 .pp-panel-title-text {
		color: rgb(255, 255, 255);
	}
		
 .fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel.pp-panel-active:after {

}
 .fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel.pp-panel-inactive:after {

	-webkit-filter: grayscale(1%);
	filter: grayscale(1%);
}@media only screen and ( max-width: 768px ) {
				.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-0 {
			width: 100% !important;
		}
			.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-1 {
			width: 100% !important;
		}
			.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-2 {
			width: 100% !important;
		}
			.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel-3 {
			width: 100% !important;
		}
	}
.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel {
	height: 500px;
}
.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel .pp-panel-title-text {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0px 0px 8px rgba(51, 51, 51, 0.69);
}
.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel .pp-panel-title {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media(max-width: 992px) {
	.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel {
		height: 300px;
	}
	.fl-node-hxp47utj20rn .pp-image-panels-wrap .pp-panel .pp-panel-title-text {
		font-size: 17px;
	}
}
 .fl-node-hxp47utj20rn > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
	.fl-builder-content .fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text * {
		color: rgb(255, 255, 255);
	}
	.fl-node-g0surd1wnc35 .fl-icon i,
.fl-node-g0surd1wnc35 .fl-icon i:before {
	color: rgb(255, 255, 255);
}




.fl-node-g0surd1wnc35 .fl-icon i, .fl-node-g0surd1wnc35 .fl-icon i:before {
	font-size: 35px;
}
.fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text {
	height: 61.25px;
}
.fl-node-g0surd1wnc35.fl-module-icon {
	text-align: right;
}
.fl-builder-content .fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text-link * {
	color: rgb(255, 255, 255);
}
.fl-node-g0surd1wnc35 .fl-icon-text, .fl-node-g0surd1wnc35 .fl-icon-text-link {
	letter-spacing: 2px;
	text-transform: uppercase;
}
@media(max-width: 1200px) {
	.fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 992px) {
	.fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 768px) {
	.fl-node-g0surd1wnc35 .fl-icon i, .fl-node-g0surd1wnc35 .fl-icon i:before {
		font-size: 20px;
	}
	.fl-node-g0surd1wnc35 .fl-icon-wrap .fl-icon-text {
		height: 35px;
	}
}
 .fl-node-g0surd1wnc35 > .fl-module-content {
	margin-top:-80px;
	margin-right:30px;
}
@media ( max-width: 992px ) {
 .fl-node-g0surd1wnc35.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-g0surd1wnc35.fl-module > .fl-module-content {
	margin-top:-70px;
}
}
@media (max-width: 768px) { .fl-node-g0surd1wnc35 > .fl-module-content { margin-right:20px; } }.fl-node-2djzrobenx9y .fl-icon i,
.fl-node-2djzrobenx9y .fl-icon i:before {
	color: rgb(255, 255, 255);
}




.fl-node-2djzrobenx9y .fl-icon i, .fl-node-2djzrobenx9y .fl-icon i:before {
	font-size: 50px;
}
.fl-node-2djzrobenx9y .fl-icon-wrap .fl-icon-text {
	height: 87.5px;
}
.fl-node-2djzrobenx9y.fl-module-icon {
	text-align: right;
}
@media(max-width: 1200px) {
	.fl-node-2djzrobenx9y .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-2djzrobenx9y .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-2djzrobenx9y .fl-icon i, .fl-node-2djzrobenx9y .fl-icon i:before {
		font-size: 20px;
	}
	.fl-node-2djzrobenx9y .fl-icon-wrap .fl-icon-text {
		height: 35px;
	}
}
 .fl-node-2djzrobenx9y > .fl-module-content {
	margin-top:-106px;
	margin-right:30px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-2djzrobenx9y.fl-module > .fl-module-content {
	margin-top:-57px;
}
}
@media (max-width: 768px) { .fl-node-2djzrobenx9y > .fl-module-content { margin-right:20px; } }.fl-node-b8pkf2ljmw6g .fl-icon i,
.fl-node-b8pkf2ljmw6g .fl-icon i:before {
	color: rgb(255, 255, 255);
}




.fl-node-b8pkf2ljmw6g .fl-icon i, .fl-node-b8pkf2ljmw6g .fl-icon i:before {
	font-size: 35px;
}
.fl-node-b8pkf2ljmw6g .fl-icon-wrap .fl-icon-text {
	height: 61.25px;
}
.fl-node-b8pkf2ljmw6g.fl-module-icon {
	text-align: right;
}
@media(max-width: 1200px) {
	.fl-node-b8pkf2ljmw6g .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 992px) {
	.fl-node-b8pkf2ljmw6g .fl-icon-wrap .fl-icon-text {
		height: 61.25px;
	}
}
@media(max-width: 768px) {
	.fl-node-b8pkf2ljmw6g .fl-icon i, .fl-node-b8pkf2ljmw6g .fl-icon i:before {
		font-size: 20px;
	}
	.fl-node-b8pkf2ljmw6g .fl-icon-wrap .fl-icon-text {
		height: 35px;
	}
}
 .fl-node-b8pkf2ljmw6g > .fl-module-content {
	margin-top:-60px;
	margin-right:30px;
}
@media ( max-width: 768px ) {
 .fl-node-b8pkf2ljmw6g.fl-module > .fl-module-content {
	margin-top:-44px;
	margin-bottom:0px;
}
}
@media (max-width: 768px) { .fl-node-b8pkf2ljmw6g > .fl-module-content { margin-right:20px; } }.fl-node-v65wpns1qre3 .pp-photo-container .pp-photo-content {
	}


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

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

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

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


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

@media only screen and (max-width: 992px) {
	    .fl-node-v65wpns1qre3 .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: 768px) {
	.fl-node-v65wpns1qre3 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-v65wpns1qre3 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-v65wpns1qre3 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-v65wpns1qre3 .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-v65wpns1qre3 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-v65wpns1qre3 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-v65wpns1qre3 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-3ok5qe2yg7lj .pp-photo-container .pp-photo-content {
	}


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

.fl-node-3ok5qe2yg7lj .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

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

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


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

@media only screen and (max-width: 992px) {
	    .fl-node-3ok5qe2yg7lj .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: 768px) {
	.fl-node-3ok5qe2yg7lj .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-3ok5qe2yg7lj .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-3ok5qe2yg7lj .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-3ok5qe2yg7lj .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-3ok5qe2yg7lj .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-3ok5qe2yg7lj .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-3ok5qe2yg7lj > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-jqgdv8tbpayr .fl-separator {
	border-top-width: 2px;
	max-width: 20%;
	margin: auto;
}

			.fl-node-jqgdv8tbpayr .fl-separator {
	border-top-color: #f09fc5;
	border-top-style: solid;
}
 .fl-node-jqgdv8tbpayr.fl-module-separator {
	margin-top:5px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-jqgdv8tbpayr.fl-module-separator.fl-module {
	margin-top:20px;
}
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-p1snqr98gevt, .fl-node-p1snqr98gevt .fl-photo {
	text-align: center;
}
.fl-node-p1snqr98gevt .fl-photo-content, .fl-node-p1snqr98gevt .fl-photo-img {
	width: 30px;
}
 .fl-node-p1snqr98gevt.fl-module-photo {
	margin-top:-17px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-p1snqr98gevt.fl-module-photo.fl-module {
	margin-top:-17px;
}
}
.fl-node-kcu8bfyd57rv, .fl-node-kcu8bfyd57rv .fl-photo {
	text-align: center;
}
.fl-node-kcu8bfyd57rv .fl-photo-content, .fl-node-kcu8bfyd57rv .fl-photo-img {
	width: 30px;
}
 .fl-node-kcu8bfyd57rv.fl-module-photo {
	margin-top:-17px;
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-kcu8bfyd57rv.fl-module-photo.fl-module {
	margin-top:-17px;
	margin-bottom:0px;
}
}
	.fl-node-awrb9v5jc6dm .pp-image-carousel,
	.fl-node-awrb9v5jc6dm .pp-image-carousel.slider-type-slideshow {
		height: auto;
	}
	.fl-node-awrb9v5jc6dm .swiper-slide-inner {
		display: inline-flex;
		flex-direction: column;
		height: 100%;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	.fl-node-awrb9v5jc6dm .swiper-slide-image {
		object-fit: contain;
		height: 100%;
	}


.fl-node-awrb9v5jc6dm .pp-image-carousel.slider-type-slideshow {
			margin-bottom: 0px;
		}

@media only screen and (max-width: 1200px) {
	}
@media only screen and (max-width: 992px) {
	}
@media only screen and (max-width: 768px) {
	}

.fl-node-awrb9v5jc6dm .pp-image-carousel .pp-carousel-image-container {
	background-size: auto;
}
.fl-node-awrb9v5jc6dm .pp-image-carousel .pp-carousel-image-container figure.use-as-background {
	}
.fl-node-awrb9v5jc6dm .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: none;
		}
.fl-node-awrb9v5jc6dm .pp-carousel-image-container figure.use-as-background picture.swiper-slide-image img {
	}

.fl-node-awrb9v5jc6dm .pp-image-carousel .swiper-pagination-bullet {
	opacity: 1;
			background-color: #fdecf5 !important;
	        width: 6px;
            height: 6px;
            border-radius: 100px !important;
    	box-shadow: none !important;
	}

.fl-node-awrb9v5jc6dm .pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.fl-node-awrb9v5jc6dm .pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
			background-color: #fdecf5 !important;
	}

.fl-node-awrb9v5jc6dm .pp-image-carousel .swiper-pagination-bullet:hover,
.fl-node-awrb9v5jc6dm .pp-image-carousel .swiper-pagination-bullet:focus,
.fl-node-awrb9v5jc6dm .pp-image-carousel .swiper-pagination-bullet-active,
.fl-node-awrb9v5jc6dm .pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
			background-color: #f09fc5 !important;
		opacity: 1;
    box-shadow: none !important;
}


.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button {
		height: 34px;
	width: 34px;
			color: rgb(255, 255, 255) !important;
    			background-color: #f09fc5 !important;
	        padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 13px;
            padding-right: 13px;
    }
.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 24px;
}
.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button svg path {
		fill: rgb(255, 255, 255) !important;
    }

.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button:hover,
.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button:focus {
        color: rgb(255, 255, 255) !important;
    			background-color: #f0d3bc !important;
	    }

.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button:hover svg path,
.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button:focus svg path {
	    fill: rgb(255, 255, 255) !important;
    }

	.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper.pp-nav-outside .pp-image-carousel {
		padding-bottom: 30px;
	}



.fl-node-awrb9v5jc6dm .pp-image-overlay {
			background: rgba(255, 187, 236, 0.6);
	
		-webkit-transition: opacity 0.3s,-webkit-transform 0.3s;
    transition: opacity 0.3s,-webkit-transform 0.3s;
    -o-transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s,-webkit-transform 0.3s;
}

.fl-node-awrb9v5jc6dm .pp-image-overlay .pp-overlay-icon {
			width: 36px;
	height: 36px;
}

.fl-node-awrb9v5jc6dm .pp-image-overlay .pp-overlay-icon span {
	color: #cead9b;
	font-size: 16px;
			background-color: #ffffff;
		border-radius: 100px;	padding: 10px;}



.fl-node-awrb9v5jc6dm .pp-image-carousel-item {
	padding: 1px;
}
.fl-node-awrb9v5jc6dm:not(.caption-bottom) .pp-image-carousel-item {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	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-awrb9v5jc6dm.caption-bottom .pp-image-carousel-item img {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	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;
}
@media(max-width: 1200px) {
	.fl-node-awrb9v5jc6dm .pp-image-carousel-wrapper .pp-swiper-button {
		border-top-left-radius: 50px;
		border-top-right-radius: 50px;
		border-bottom-left-radius: 50px;
		border-bottom-right-radius: 50px;
	}
}
@media(max-width: 768px) {
	.fl-node-awrb9v5jc6dm .pp-image-carousel-item {
		padding: 5px;
	}
}
 .fl-node-awrb9v5jc6dm > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:20px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-awrb9v5jc6dm.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-awrb9v5jc6dm.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-cz7fliyqp5rx, .fl-node-cz7fliyqp5rx .fl-photo {
	text-align: center;
}
.fl-node-cz7fliyqp5rx .fl-photo-content, .fl-node-cz7fliyqp5rx .fl-photo-img {
	width: 30px;
}
 .fl-node-cz7fliyqp5rx.fl-module-photo {
	margin-top:-17px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-cz7fliyqp5rx.fl-module-photo.fl-module {
	margin-top:-17px;
}
}
	.fl-builder-content .fl-node-2jlhixd5nyvw .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-2jlhixd5nyvw .fl-module-content .fl-rich-text * {
		color: rgb(102, 102, 102);
	}
	.fl-builder-content .fl-node-2jlhixd5nyvw .fl-rich-text, .fl-builder-content .fl-node-2jlhixd5nyvw .fl-rich-text *:not(b, strong) {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 4px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-2jlhixd5nyvw .fl-rich-text, .fl-builder-content .fl-node-2jlhixd5nyvw .fl-rich-text *:not(b, strong) {
		letter-spacing: 1.6px;
	}
}
 .fl-node-2jlhixd5nyvw > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-2jlhixd5nyvw.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:0px;
}
}
	.fl-builder-content .fl-node-g198mn2brz4q .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-g198mn2brz4q .fl-module-content .fl-rich-text * {
		color: rgb(102, 102, 102);
	}
	.fl-builder-content .fl-node-g198mn2brz4q .fl-rich-text, .fl-builder-content .fl-node-g198mn2brz4q .fl-rich-text *:not(b, strong) {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 4px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-g198mn2brz4q .fl-rich-text, .fl-builder-content .fl-node-g198mn2brz4q .fl-rich-text *:not(b, strong) {
		letter-spacing: 1.6px;
	}
}
 .fl-node-g198mn2brz4q > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-g198mn2brz4q.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:0px;
}
}
.woopack-products-carousel div.products div.product,
.woopack-products-carousel div.products div.product:hover {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-ms-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}
.woopack-products-carousel div.products {
    clear: both;
	padding-top: 0;
}
.woopack-products-carousel div.products::after,
.woopack-products-carousel div.products::before {
    content: ' ';
    display: table;
}

.woopack-products-carousel div.products::after {
    clear: both;
}

.woopack-products-carousel div.products div.first {
    clear: both;
}

.woopack-products-carousel div.products div.last {
    margin-right: 0;
}

.woopack-products-carousel span.onsale {
    min-height: 0;
    min-width: 0;
}

.woopack-products-carousel .products ul,
.woopack-products-carousel div.products {
    margin: 0 0 1em;
    padding: 0;
    list-style: none outside;
    clear: both;
}

.woopack-products-carousel .products ul::after,
.woopack-products-carousel .products ul::before,
.woopack-products-carousel div.products::after,
.woopack-products-carousel div.products::before {
    content: ' ';
    display: table;
}

.woopack-products-carousel .products ul::after,
.woopack-products-carousel div.products::after {
    clear: both;
}

.woopack-products-carousel .products ul li,
.woopack-products-carousel div.products {
    list-style: none outside;
}

.woopack-products-carousel .woopack-category-title,
.woopack-products-carousel .woopack-product-title,
.woopack-products-carousel h3 {
    margin: 0;
    font-size: 20px;
}

.woopack-products-carousel a {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.woopack-products-carousel div.products div.product a img {
    height: auto;
    display: block;
    box-shadow: none;
}
.woopack-products-carousel div.products div.product .woopack-product-image a {
    position: relative;
    display: block;
}

.woopack-products-carousel div.products div.product .star-rating {
    font-size: .857em;
}

.woopack-products-carousel div.products  .woopack-product-action a,
.woopack-products-carousel div.products   .woopack-product-action a.add_to_cart_button,
.woopack-products-carousel div.products  .woopack-product-action a.added_to_cart {
	display: inline-block !important;
    transition: 0.3s ease-in-out;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce a.added_to_cart,
.woocommerce button.button,
.woocommerce input.button {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: .618em 1em;
    font-weight: 700;
    border-radius: 3px;
    left: auto;
    color: #515151;
    background-color: #ebe9eb;
    border: 0;
    white-space: nowrap;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none
}

.woopack-products-carousel div.products div.product .price {
    color: #77a464;
    display: block;
    font-weight: 400;
    margin-bottom: 0;
    font-size: .857em;
}

.woopack-products-carousel div.products div.product .price del {
    color: inherit;
    opacity: .5;
    display: inline-block!important;
}

.woopack-products-carousel div.products div.product .price ins {
    background: 0 0;
    font-weight: 700;
}

.woopack-products-carousel div.products div.product .price .from {
    font-size: .67em;
    margin: -2px 0 0 0;
    text-transform: uppercase;
    color: rgba(132,132,132,.5);
}

/* Image Slider */
.woopack-product-images .woopack-product-image-slide {
	display: none;
}
.woopack-product-images .woopack-product-image-slide:first-of-type {
	display: block;
}
.woopack-product-images.slick-slider .woopack-product-image-slide {
	display: block;
}
.woopack-product-images.slick-slider .slick-slide {
	font-size: 0;
}@media (max-width: 768px) {  }
.fl-node-1emh0ku35pz7 .woocommerce a {
	text-decoration: none;
}

.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-grid-wrap ul.products li.product,
.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product {
	background-color: #ffffff;
	max-width: none;
	clear: none !important;
	position: relative;
	text-align: center;
}

.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-grid-wrap ul.products li.product:hover,
.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product:hover {
	}

@media only screen and (max-width: 992px) {
	.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-grid-wrap ul.products li.product,
	.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product {
		text-align : center;
	}
}

@media only screen and (max-width: 768px) {
	.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-grid-wrap ul.products li.product,
	.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product {
		text-align : center;
	}
}

.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-image,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-image {
    position: relative;
	width: 100%;
	min-width: 0;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-image a,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-image a {
	display: block;
	cursor: pointer;
	height: 100%;
	width: 100%;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-image a img,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-image a img {
    margin: auto;
    width: auto;
    border: none;
}


.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-sale-badge,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-sale-badge,
.fl-node-1emh0ku35pz7 .woocommerce .product span.woopack-sale-badge {
	position: absolute;
			top: 0 !important;
		left: 0 !important;
		bottom: auto !important;
		right: auto !important;
	
		
				
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 5px;
	min-width: 0;
	min-height: 0;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .product.outofstock .woopack-product-image .woopack-sale-badge,
.fl-node-1emh0ku35pz7 .woocommerce .products .product.outofstock .woopack-product-image img {
	opacity: 0.4;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .product.outofstock .woopack-product-image .woopack-out-of-stock {
	position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .product.outofstock .woopack-product-image .woopack-out-of-stock span {
	background-color: rgb(102, 102, 102);
	color: #ffffff;
}

@media only screen and (max-width: 992px) {
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-sale-badge,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-sale-badge,
	.fl-node-1emh0ku35pz7 .woocommerce .product span.woopack-sale-badge {
									}
}

@media only screen and (max-width: 768px) {
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-sale-badge,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-sale-badge,
	.fl-node-1emh0ku35pz7 .woocommerce .product span.woopack-sale-badge {
									}
}

.woopack-product-quick-view {
	position: absolute;
	width: 100%;
	z-index: 90;
	background-color: rgba(255,255,255,.5);
	bottom: 0;
	text-align: center;
	opacity: 0;
	transition: 0.3s ease-in-out;
}
.woopack-product-quick-view {
	width: 100%;
	color: #434343;
	cursor: pointer;
	padding: 15px;
}
.woopack-product-quick-view p {
	font-size: 14px;
	text-transform: capitalize;
	margin: 0;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product:hover .woopack-product-quick-view,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product:hover .woopack-product-quick-view {
	opacity: 1;
}
.fl-node-1emh0ku35pz7 .woopack-product-quick-view {
		}
.fl-node-1emh0ku35pz7 .woopack-product-quick-view {
	}
.fl-node-1emh0ku35pz7 .woopack-product-quick-view p {
		}

div.woopack-modal-1emh0ku35pz7.woopack-ajax-loaded .woopack-modal-overlay {
	background-color: #ffffff;
}

/******************************************
 * Product Title
 ******************************************/
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .product_title {
	color: rgb(102, 102, 102);
	font-size: 26px;
	margin-top: 0;
	margin-bottom: 0;
}

/******************************************
 * Product Price
 ******************************************/
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .price del,
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .price .amount {
	color: rgb(102, 102, 102) !important;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .price ins .amount {
	color: #000000;
	text-decoration: none;
}

/******************************************
 * Product Rating
 ******************************************/
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce-product-rating .star-rating:before {
	}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce-product-rating .star-rating span:before {
	}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce-product-rating .woocommerce-review-link {
	display: none;
 }

/******************************************
 * Product Description
 ******************************************/
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .woocommerce-product-details__short-description {
	}

/******************************************
 * Product Variations
 ******************************************/
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product form.cart table.variations {
	margin: 0 auto;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product form.cart table.variations .reset_variations {
	float: right;
	padding: 0;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product form.cart .woocommerce-variation-price {
	text-align: center;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
	margin-top: 10px;
    text-align: center;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product form.cart .woocommerce-variation-add-to-cart div.quantity {
	display: inline-block;
    float: none;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product form.cart button.alt {
	display: inline-block;
	float: none;
	width: auto;
}

/******************************************
 * Button
 ******************************************/
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce button.button.alt {
	background-color: #c21927;
	color: #ffffff;

			width: auto;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce button.button.alt:hover {
	background-color: #000000;
	color: #ffffff;
	}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce a.added_to_cart {
	background: none;
    font-weight: normal;
    color: inherit;
    border: 1px solid;
    margin-left: 4px;
}

/******************************************
 * Meta
 ******************************************/
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce .product_meta {
	color: #D5B8E3;
			border: none;
	}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce .product_meta a {
	}

@media (min-width: 768px) {
	div.woopack-modal-1emh0ku35pz7 .woopack-modal-inner {
		width: 600px;
	}
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product.woopack-product-align-left,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product.woopack-product-align-left {
	text-align: left;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product.woopack-product-align-center,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product.woopack-product-align-center {
	text-align: center;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product.woopack-product-align-right,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product.woopack-product-align-right {
	text-align: right;
}



.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title {
	margin-top: 10px;
	margin-bottom: 0px;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title a,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title a {
	color: rgb(102, 102, 102);
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title a:hover,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title a:hover {
	}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .star-rating,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .star-rating {
		margin-bottom: 10px !important;

						margin-left: auto !important;
			margin-right: auto !important;
			}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .star-rating:before,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .star-rating:before {
	}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .star-rating span:before,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .star-rating span:before {
	}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woocommerce-rating-count,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woocommerce-rating-count {
	}

.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price {
	}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price del,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price del {
	color: rgb(102, 102, 102) !important;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price .amount,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price .amount {
	color: rgb(102, 102, 102);
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price ins .amount,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price ins .amount {
	text-decoration: none;
	color: #000000;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-description,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-description {
		
	}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-meta .product_meta,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-meta .product_meta {
			text-align: center;
		color: #D5B8E3;
			border: none;
	}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-meta .product_meta .posted_in a,
.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-meta .product_meta .posted_in a {
	}

@media only screen and (max-width: 992px) {
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title {
					}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .star-rating,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .star-rating {
					}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price {
			}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-description,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-description {
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title {
					}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .star-rating,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .star-rating {
					}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price {
			}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-description,
	.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-description {
			}
}



.fl-node-1emh0ku35pz7 .woocommerce ul.products .woopack-product-action,
.fl-node-1emh0ku35pz7 .woocommerce div.products .woopack-product-action {
			text-align: center;
	}
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .woopack-qty-input,
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .variations_form .quantity {
						display: none;
							display: inline-block;
										width: 60px;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .woopack-qty-input input.qty,
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .variations_form .quantity input.qty {
	width: 100%;
}

.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .variations_form table,
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .grouped_form table {
		margin: 0 auto;
			margin-bottom: 10px;
}

.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .grouped_form div.quantity {
	margin-right: 10px;
    margin-bottom: 5px;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .grouped_form .woocommerce-grouped-product-list-item__label label {
	margin-right: 10px;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .grouped_form .woocommerce-grouped-product-list-item__price .amount {
	display: inline-block;
	margin-bottom: 5px;
}

.fl-node-1emh0ku35pz7 .woocommerce .woopack-product-action .variations_form .label {
	color: inherit;
}
.fl-node-1emh0ku35pz7 .woocommerce .woopack-product-action .variations_form .label label {
	font-size: 12px;
}

.fl-node-1emh0ku35pz7 .woocommerce .woopack-product-action .variations_form .reset_variations {
	margin-left: 5px;
}

.fl-node-1emh0ku35pz7 .woocommerce .woopack-product-action .variations_form .woocommerce-variation-price {
	margin-top: 5px;
}
.fl-node-1emh0ku35pz7 .woocommerce .woopack-product-action .variations_form .woocommerce-variation-price .price {
	font-size: 14px;
}


.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button.alt {
	background-color: #c21927;
	color: #ffffff;

	margin-top: 5px;
	margin-bottom: 0px;

			width: auto;
	
	text-align: center;
	-webkit-transition: 0.2s ease-in-out;
		-moz-transition: 0.2s ease-in-out;
			transition: 0.2s ease-in-out;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products .woopack-product-action a.button:hover,
.fl-node-1emh0ku35pz7 .woocommerce div.products .woopack-product-action a.button:hover,
.fl-node-1emh0ku35pz7 .woocommerce ul.products .woopack-product-action .button:hover,
.fl-node-1emh0ku35pz7 .woocommerce div.products .woopack-product-action .button:hover {
	background-color: #000000;
	color: #ffffff;
	}

@media only screen and (max-width: 992px) {
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button,
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button,
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.added_to_cart {
					}
}

@media only screen and (max-width: 768px) {
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button,
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button,
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.added_to_cart {
		margin-top: 0px;
		margin-bottom: 5px;
	}
}

.fl-node-1emh0ku35pz7 .woocommerce-result-count {
	display: none;
}

.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product {
	margin: 2.5% !important;
}

.fl-node-1emh0ku35pz7 .owl-theme .owl-dots .owl-dot span {
		opacity: 1;
}
.fl-node-1emh0ku35pz7 .owl-theme .owl-dots .owl-dot.active span,
.fl-node-1emh0ku35pz7 .owl-theme .owl-dots .owl-dot:hover span {
	}
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav button {
	line-height: 0;
	box-shadow: none;
}
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav button:hover {
	background: none;
}
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav button svg {
	color: #ffffff;
	background-color: #f0d3bc;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	opacity: 1;
	padding: 3px 13px;
}
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav button:hover svg {
		background-color: #ffbbec;
	transition: all 0.2s ease;
}
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav .owl-prev,
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav .owl-next {
	position: absolute;
	top: 50%;
}
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav .owl-prev {
	left: -22px;
}
.fl-node-1emh0ku35pz7 .owl-theme .owl-nav .owl-next {
	right: -22px;
}

@media only screen and (max-width: 767px) {
	.fl-node-1emh0ku35pz7 .owl-theme .owl-nav .owl-prev,
	.fl-node-1emh0ku35pz7 .owl-theme .owl-nav .owl-next {
		position: static;
	}
}.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-grid-wrap ul.products li.product,
						.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fdecf5;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-bottom: 40px;
}
.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-grid-wrap ul.products li.product:hover,
						.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product:hover {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #f0d3bc;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-sale-badge,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-sale-badge {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .product.outofstock .woopack-product-image .woopack-out-of-stock span {
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	text-transform: uppercase;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-sale-badge,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-sale-badge,
						.fl-node-1emh0ku35pz7 .woocommerce .product span.woopack-sale-badge {
	font-family: Afacad, sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 3.9px;
	text-transform: uppercase;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce .product_meta {
	padding-top: 2px;
	font-size: 11px;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .product_title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce button.button.alt {
	font-size: 12px;
}
.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .price del,
						.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .price .amount {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0px;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-content,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-content {
	padding-right: 5px;
	padding-left: 5px;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-meta .product_meta,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-meta .product_meta {
	padding-top: 2px;
	font-size: 11px;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price .amount,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price .amount {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0px;
}
.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button.alt {
	font-size: 12px;
}
@media(max-width: 992px) {
	.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .product_title {
		font-size: 15px;
	}
	.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce button.button.alt {
		font-size: 10px;
		letter-spacing: 0px;
	}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title {
		font-size: 15px;
	}
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button.alt {
		font-size: 10px;
		letter-spacing: 0px;
	}
}
@media(max-width: 768px) {
	.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-grid-wrap ul.products li.product,
						.fl-node-1emh0ku35pz7 .woocommerce.woopack-products-carousel div.products div.product {
		padding-bottom: 35px;
	}
	.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .product_title {
		font-size: 13px;
		letter-spacing: 0.5px;
	}
	.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce button.button.alt {
		font-size: 11px;
		letter-spacing: 0.5px;
	}
	.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .price del,
						.woopack-modal-content .fl-node-1emh0ku35pz7 .woocommerce div.product .price .amount {
		font-size: 13px;
	}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .woopack-product-title,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .woopack-product-title {
		font-size: 13px;
		letter-spacing: 0.5px;
	}
	.fl-node-1emh0ku35pz7 .woocommerce ul.products li.product .price .amount,
						.fl-node-1emh0ku35pz7 .woocommerce div.products div.product .price .amount {
		font-size: 13px;
	}
	.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button,
							.fl-node-1emh0ku35pz7 .woocommerce .products .woopack-product-action button.alt {
		font-size: 11px;
		letter-spacing: 0.5px;
	}
}
 .fl-node-1emh0ku35pz7 > .fl-module-content {
	margin-top:-10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-1emh0ku35pz7.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-1emh0ku35pz7.fl-module > .fl-module-content {
	margin-top:-10px;
	margin-right:5px;
	margin-bottom:0px;
	margin-left:5px;
}
}

.fl-node-j0w7l5sec18m .woocommerce a {
	text-decoration: none;
}

.fl-node-j0w7l5sec18m .woocommerce.woopack-products-grid-wrap ul.products li.product,
.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product {
	background-color: #ffffff;
	max-width: none;
	clear: none !important;
	position: relative;
	text-align: center;
}

.fl-node-j0w7l5sec18m .woocommerce.woopack-products-grid-wrap ul.products li.product:hover,
.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product:hover {
	}

@media only screen and (max-width: 992px) {
	.fl-node-j0w7l5sec18m .woocommerce.woopack-products-grid-wrap ul.products li.product,
	.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product {
		text-align : center;
	}
}

@media only screen and (max-width: 768px) {
	.fl-node-j0w7l5sec18m .woocommerce.woopack-products-grid-wrap ul.products li.product,
	.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product {
		text-align : center;
	}
}

.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-image,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-image {
    position: relative;
	width: 100%;
	min-width: 0;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-image a,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-image a {
	display: block;
	cursor: pointer;
	height: 100%;
	width: 100%;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-image a img,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-image a img {
    margin: auto;
    width: auto;
    border: none;
}


.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-sale-badge,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-sale-badge,
.fl-node-j0w7l5sec18m .woocommerce .product span.woopack-sale-badge {
	position: absolute;
			top: 0 !important;
		left: 0 !important;
		bottom: auto !important;
		right: auto !important;
	
		
				
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 5px;
	min-width: 0;
	min-height: 0;
}
.fl-node-j0w7l5sec18m .woocommerce .products .product.outofstock .woopack-product-image .woopack-sale-badge,
.fl-node-j0w7l5sec18m .woocommerce .products .product.outofstock .woopack-product-image img {
	opacity: 0.4;
}
.fl-node-j0w7l5sec18m .woocommerce .products .product.outofstock .woopack-product-image .woopack-out-of-stock {
	position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.fl-node-j0w7l5sec18m .woocommerce .products .product.outofstock .woopack-product-image .woopack-out-of-stock span {
	background-color: rgb(102, 102, 102);
	color: #ffffff;
}

@media only screen and (max-width: 992px) {
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-sale-badge,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-sale-badge,
	.fl-node-j0w7l5sec18m .woocommerce .product span.woopack-sale-badge {
									}
}

@media only screen and (max-width: 768px) {
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-sale-badge,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-sale-badge,
	.fl-node-j0w7l5sec18m .woocommerce .product span.woopack-sale-badge {
									}
}

.woopack-product-quick-view {
	position: absolute;
	width: 100%;
	z-index: 90;
	background-color: rgba(255,255,255,.5);
	bottom: 0;
	text-align: center;
	opacity: 0;
	transition: 0.3s ease-in-out;
}
.woopack-product-quick-view {
	width: 100%;
	color: #434343;
	cursor: pointer;
	padding: 15px;
}
.woopack-product-quick-view p {
	font-size: 14px;
	text-transform: capitalize;
	margin: 0;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product:hover .woopack-product-quick-view,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product:hover .woopack-product-quick-view {
	opacity: 1;
}
.fl-node-j0w7l5sec18m .woopack-product-quick-view {
		}
.fl-node-j0w7l5sec18m .woopack-product-quick-view {
	}
.fl-node-j0w7l5sec18m .woopack-product-quick-view p {
		}

div.woopack-modal-j0w7l5sec18m.woopack-ajax-loaded .woopack-modal-overlay {
	background-color: #ffffff;
}

/******************************************
 * Product Title
 ******************************************/
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .product_title {
	color: rgb(102, 102, 102);
	font-size: 26px;
	margin-top: 0;
	margin-bottom: 0;
}

/******************************************
 * Product Price
 ******************************************/
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .price del,
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .price .amount {
	color: rgb(102, 102, 102) !important;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .price ins .amount {
	color: #000000;
	text-decoration: none;
}

/******************************************
 * Product Rating
 ******************************************/
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce-product-rating .star-rating:before {
	}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce-product-rating .star-rating span:before {
	}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce-product-rating .woocommerce-review-link {
	display: none;
 }

/******************************************
 * Product Description
 ******************************************/
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .woocommerce-product-details__short-description {
	}

/******************************************
 * Product Variations
 ******************************************/
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product form.cart table.variations {
	margin: 0 auto;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product form.cart table.variations .reset_variations {
	float: right;
	padding: 0;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product form.cart .woocommerce-variation-price {
	text-align: center;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
	margin-top: 10px;
    text-align: center;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product form.cart .woocommerce-variation-add-to-cart div.quantity {
	display: inline-block;
    float: none;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product form.cart button.alt {
	display: inline-block;
	float: none;
	width: auto;
}

/******************************************
 * Button
 ******************************************/
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce button.button.alt {
	background-color: #c21927;
	color: #ffffff;

			width: auto;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
			transition: 0.3s ease-in-out;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce button.button.alt:hover {
	background-color: #000000;
	color: #ffffff;
	}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce a.added_to_cart {
	background: none;
    font-weight: normal;
    color: inherit;
    border: 1px solid;
    margin-left: 4px;
}

/******************************************
 * Meta
 ******************************************/
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce .product_meta {
	color: #D5B8E3;
			border: none;
	}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce .product_meta a {
	}

@media (min-width: 768px) {
	div.woopack-modal-j0w7l5sec18m .woopack-modal-inner {
		width: 600px;
	}
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product.woopack-product-align-left,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product.woopack-product-align-left {
	text-align: left;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product.woopack-product-align-center,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product.woopack-product-align-center {
	text-align: center;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product.woopack-product-align-right,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product.woopack-product-align-right {
	text-align: right;
}



.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title {
	margin-top: 10px;
	margin-bottom: 0px;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title a,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title a {
	color: rgb(102, 102, 102);
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title a:hover,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title a:hover {
	}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .star-rating,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .star-rating {
		margin-bottom: 10px !important;

						margin-left: auto !important;
			margin-right: auto !important;
			}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .star-rating:before,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .star-rating:before {
	}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .star-rating span:before,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .star-rating span:before {
	}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woocommerce-rating-count,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woocommerce-rating-count {
	}

.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price {
	}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price del,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price del {
	color: rgb(102, 102, 102) !important;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price .amount,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price .amount {
	color: rgb(102, 102, 102);
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price ins .amount,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price ins .amount {
	text-decoration: none;
	color: #000000;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-description,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-description {
		
	}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-meta .product_meta,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-meta .product_meta {
			text-align: center;
		color: #D5B8E3;
			border: none;
	}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-meta .product_meta .posted_in a,
.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-meta .product_meta .posted_in a {
	}

@media only screen and (max-width: 992px) {
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title {
					}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .star-rating,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .star-rating {
					}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price {
			}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-description,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-description {
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title {
					}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .star-rating,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .star-rating {
					}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price {
			}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-description,
	.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-description {
			}
}



.fl-node-j0w7l5sec18m .woocommerce ul.products .woopack-product-action,
.fl-node-j0w7l5sec18m .woocommerce div.products .woopack-product-action {
			text-align: center;
	}
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .woopack-qty-input,
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .variations_form .quantity {
						display: none;
							display: inline-block;
										width: 60px;
}
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .woopack-qty-input input.qty,
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .variations_form .quantity input.qty {
	width: 100%;
}

.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .variations_form table,
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .grouped_form table {
		margin: 0 auto;
			margin-bottom: 10px;
}

.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .grouped_form div.quantity {
	margin-right: 10px;
    margin-bottom: 5px;
}
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .grouped_form .woocommerce-grouped-product-list-item__label label {
	margin-right: 10px;
}
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .grouped_form .woocommerce-grouped-product-list-item__price .amount {
	display: inline-block;
	margin-bottom: 5px;
}

.fl-node-j0w7l5sec18m .woocommerce .woopack-product-action .variations_form .label {
	color: inherit;
}
.fl-node-j0w7l5sec18m .woocommerce .woopack-product-action .variations_form .label label {
	font-size: 12px;
}

.fl-node-j0w7l5sec18m .woocommerce .woopack-product-action .variations_form .reset_variations {
	margin-left: 5px;
}

.fl-node-j0w7l5sec18m .woocommerce .woopack-product-action .variations_form .woocommerce-variation-price {
	margin-top: 5px;
}
.fl-node-j0w7l5sec18m .woocommerce .woopack-product-action .variations_form .woocommerce-variation-price .price {
	font-size: 14px;
}


.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button.alt {
	background-color: #c21927;
	color: #ffffff;

	margin-top: 5px;
	margin-bottom: 0px;

			width: auto;
	
	text-align: center;
	-webkit-transition: 0.2s ease-in-out;
		-moz-transition: 0.2s ease-in-out;
			transition: 0.2s ease-in-out;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products .woopack-product-action a.button:hover,
.fl-node-j0w7l5sec18m .woocommerce div.products .woopack-product-action a.button:hover,
.fl-node-j0w7l5sec18m .woocommerce ul.products .woopack-product-action .button:hover,
.fl-node-j0w7l5sec18m .woocommerce div.products .woopack-product-action .button:hover {
	background-color: #000000;
	color: #ffffff;
	}

@media only screen and (max-width: 992px) {
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button,
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button,
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.added_to_cart {
					}
}

@media only screen and (max-width: 768px) {
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button,
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button,
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.added_to_cart {
		margin-top: 0px;
		margin-bottom: 5px;
	}
}

.fl-node-j0w7l5sec18m .woocommerce-result-count {
	display: none;
}

.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product {
	margin: 2.5% !important;
}

.fl-node-j0w7l5sec18m .owl-theme .owl-dots .owl-dot span {
		opacity: 1;
}
.fl-node-j0w7l5sec18m .owl-theme .owl-dots .owl-dot.active span,
.fl-node-j0w7l5sec18m .owl-theme .owl-dots .owl-dot:hover span {
	}
.fl-node-j0w7l5sec18m .owl-theme .owl-nav button {
	line-height: 0;
	box-shadow: none;
}
.fl-node-j0w7l5sec18m .owl-theme .owl-nav button:hover {
	background: none;
}
.fl-node-j0w7l5sec18m .owl-theme .owl-nav button svg {
	color: #ffffff;
	background-color: #f0d3bc;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	opacity: 1;
	padding: 3px 13px;
}
.fl-node-j0w7l5sec18m .owl-theme .owl-nav button:hover svg {
		background-color: #ffbbec;
	transition: all 0.2s ease;
}
.fl-node-j0w7l5sec18m .owl-theme .owl-nav .owl-prev,
.fl-node-j0w7l5sec18m .owl-theme .owl-nav .owl-next {
	position: absolute;
	top: 50%;
}
.fl-node-j0w7l5sec18m .owl-theme .owl-nav .owl-prev {
	left: -22px;
}
.fl-node-j0w7l5sec18m .owl-theme .owl-nav .owl-next {
	right: -22px;
}

@media only screen and (max-width: 767px) {
	.fl-node-j0w7l5sec18m .owl-theme .owl-nav .owl-prev,
	.fl-node-j0w7l5sec18m .owl-theme .owl-nav .owl-next {
		position: static;
	}
}.fl-node-j0w7l5sec18m .woocommerce.woopack-products-grid-wrap ul.products li.product,
						.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fdecf5;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-bottom: 40px;
}
.fl-node-j0w7l5sec18m .woocommerce.woopack-products-grid-wrap ul.products li.product:hover,
						.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product:hover {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #f0d3bc;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-sale-badge,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-sale-badge {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-j0w7l5sec18m .woocommerce .products .product.outofstock .woopack-product-image .woopack-out-of-stock span {
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	text-transform: uppercase;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-sale-badge,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-sale-badge,
						.fl-node-j0w7l5sec18m .woocommerce .product span.woopack-sale-badge {
	font-family: Afacad, sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 3.9px;
	text-transform: uppercase;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce .product_meta {
	padding-top: 2px;
	font-size: 11px;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .product_title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce button.button.alt {
	font-size: 12px;
}
.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .price del,
						.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .price .amount {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0px;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-content,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-content {
	padding-right: 5px;
	padding-left: 5px;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-meta .product_meta,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-meta .product_meta {
	padding-top: 2px;
	font-size: 11px;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price .amount,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price .amount {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0px;
}
.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button.alt {
	font-size: 12px;
}
@media(max-width: 992px) {
	.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .product_title {
		font-size: 15px;
	}
	.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce button.button.alt {
		font-size: 10px;
		letter-spacing: 0px;
	}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title {
		font-size: 15px;
	}
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button.alt {
		font-size: 10px;
		letter-spacing: 0px;
	}
}
@media(max-width: 768px) {
	.fl-node-j0w7l5sec18m .woocommerce.woopack-products-grid-wrap ul.products li.product,
						.fl-node-j0w7l5sec18m .woocommerce.woopack-products-carousel div.products div.product {
		padding-bottom: 35px;
	}
	.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .product_title {
		font-size: 13px;
		letter-spacing: 0.5px;
	}
	.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce button.button.alt {
		font-size: 11px;
		letter-spacing: 0.5px;
	}
	.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .price del,
						.woopack-modal-content .fl-node-j0w7l5sec18m .woocommerce div.product .price .amount {
		font-size: 13px;
	}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .woopack-product-title,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .woopack-product-title {
		font-size: 13px;
		letter-spacing: 0.5px;
	}
	.fl-node-j0w7l5sec18m .woocommerce ul.products li.product .price .amount,
						.fl-node-j0w7l5sec18m .woocommerce div.products div.product .price .amount {
		font-size: 13px;
	}
	.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.add_to_cart_button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action a.added_to_cart,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action .button.alt,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button,
							.fl-node-j0w7l5sec18m .woocommerce .products .woopack-product-action button.alt {
		font-size: 11px;
		letter-spacing: 0.5px;
	}
}
 .fl-node-j0w7l5sec18m > .fl-module-content {
	margin-top:-10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-j0w7l5sec18m.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-j0w7l5sec18m.fl-module > .fl-module-content {
	margin-top:-10px;
	margin-right:5px;
	margin-bottom:0px;
	margin-left:5px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

.fl-node-gn7fbhdzec84 a {
  color: #fff !important;
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        
        			.fl-node-y1owdsncfkg3 .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-kz7mljg913pf .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-84v3btnqzgmo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6ovhrantzk2m .fl-row-content {
				min-width: 0px;
			}
		
        
        