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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 700px) { /* 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: 701px) 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: 700px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:where(.fl-builder-content, .fl-page) :is(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus {
	outline-style: solid;
	outline-width: 2px;
	outline-offset: 2px;
}






.fl-node-59ae1d2d3e113 > .fl-row-content-wrap {
	background-color: #f2f3f5;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-59ae1d2d3e113.fl-row-default-height > .fl-row-content-wrap, .fl-node-59ae1d2d3e113.fl-row-full-height > .fl-row-content-wrap, .fl-node-59ae1d2d3e113.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-59ae1d2d3e113 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-59ae1d2d3d20e > .fl-row-content-wrap {
	background-color: #f2f3f5;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-59ae1d2d3d20e.fl-row-default-height > .fl-row-content-wrap, .fl-node-59ae1d2d3d20e.fl-row-full-height > .fl-row-content-wrap, .fl-node-59ae1d2d3d20e.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-59ae1d2d3d20e > .fl-row-content-wrap {
	padding-top:0px;
}






.fl-node-59ae1d2d3da72 > .fl-row-content-wrap {
	background-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-59ae1d2d3da72.fl-row-default-height > .fl-row-content-wrap, .fl-node-59ae1d2d3da72.fl-row-full-height > .fl-row-content-wrap, .fl-node-59ae1d2d3da72.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}






.fl-node-59b211a68ad12 > .fl-row-content-wrap {
	background-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-59b211a68ad12.fl-row-default-height > .fl-row-content-wrap, .fl-node-59b211a68ad12.fl-row-full-height > .fl-row-content-wrap, .fl-node-59b211a68ad12.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-59b211a68ad12 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






.fl-node-59aec1d18aebf > .fl-row-content-wrap {
	background-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-59aec1d18aebf.fl-row-default-height > .fl-row-content-wrap, .fl-node-59aec1d18aebf.fl-row-full-height > .fl-row-content-wrap, .fl-node-59aec1d18aebf.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}






.fl-node-59ae1d2d3d771 > .fl-row-content-wrap {
	background-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-59ae1d2d3d771.fl-row-default-height > .fl-row-content-wrap, .fl-node-59ae1d2d3d771.fl-row-full-height > .fl-row-content-wrap, .fl-node-59ae1d2d3d771.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}






.fl-node-59ae1d2d3d373 > .fl-row-content-wrap {
	background-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-59ae1d2d3d373.fl-row-default-height > .fl-row-content-wrap, .fl-node-59ae1d2d3d373.fl-row-full-height > .fl-row-content-wrap, .fl-node-59ae1d2d3d373.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-59ae1d2d3d373 > .fl-row-content-wrap {
	padding-bottom:60px;
}




.fl-node-59ae1d2d3d28a {
	width: 100%;
}




.fl-node-59ae1d2d3d3e8 {
	width: 100%;
}
.fl-node-59ae1d2d3d3e8 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3d45d {
	width: 100%;
}
.fl-node-59ae1d2d3d45d > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3d50c {
	width: 100%;
}
.fl-node-59ae1d2d3d50c > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3d581 {
	width: 17%;
}
.fl-node-59ae1d2d3d581 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3d7e8 {
	width: 100%;
}




.fl-node-59ae1d2d3d897 {
	width: 17.78%;
}
.fl-node-59ae1d2d3d897 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3d9bd {
	width: 100%;
}
.fl-node-59ae1d2d3d9bd > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3da35 {
	width: 100%;
}




.fl-node-59ae1d2d3dae6 {
	width: 17.88%;
}




.fl-node-59ae1d2d3e18a {
	width: 100%;
}




.fl-node-59aec1d18b713 {
	width: 18.64%;
}
.fl-node-59aec1d18b713 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59aec21c00bbc {
	width: 18.52%;
}




.fl-node-59b211a6ae458 {
	width: 17.78%;
}
.fl-node-59b211a6ae458 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59c0896612245 {
	width: 17.78%;
}




.fl-node-59f7971c0038d {
	width: 100%;
}




.fl-node-59ae1d2d3d5be {
	width: 66%;
}
.fl-node-59ae1d2d3d5be > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3d8d1 {
	width: 64.44%;
}




.fl-node-59ae1d2d3db21 {
	width: 64.34%;
}




.fl-node-59aec1e9c2a50 {
	width: 31.36%;
}




.fl-node-59aec21c00c05 {
	width: 63.79%;
}




.fl-node-59b211a6ae4a5 {
	width: 64.44%;
}




.fl-node-59c0896612278 {
	width: 64.44%;
}




.fl-node-59ae1d2d3d637 {
	width: 17%;
}
.fl-node-59ae1d2d3d637 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3d90b {
	width: 17.78%;
}
.fl-node-59ae1d2d3d90b > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59ae1d2d3db5b {
	width: 17.78%;
}




.fl-node-59aec1d18b74d {
	width: 31.64%;
}
.fl-node-59aec1d18b74d > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59aec21c00c46 {
	width: 17.69%;
}




.fl-node-59b211a6ae4e8 {
	width: 17.78%;
}
.fl-node-59b211a6ae4e8 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-59c08966122c7 {
	width: 17.78%;
}




.fl-node-59aec1d18b79b {
	width: 18.36%;
}
.fl-node-59aec1d18b79b > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-59ae1d2d3d2c4 h1.fl-heading a,
.fl-row .fl-col .fl-node-59ae1d2d3d2c4 h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-59ae1d2d3d2c4 h1.fl-heading .fl-heading-text *,
.fl-node-59ae1d2d3d2c4 h1.fl-heading .fl-heading-text {
	color: #515c72;
}
.fl-node-59ae1d2d3d2c4.fl-module-heading .fl-heading {
	font-family: "Playfair Display", serif;
	font-weight: regular;
	font-size: 45px;
	letter-spacing: 1px;
	text-align: center;
}
@media(max-width: 700px) {
	.fl-node-59ae1d2d3d2c4.fl-module-heading .fl-heading {
		font-size: 23px;
		line-height: 1;
	}
}
 .fl-node-59ae1d2d3d2c4 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
.fl-row .fl-col .fl-node-59ae1d2d3d339 h5.fl-heading a,
.fl-row .fl-col .fl-node-59ae1d2d3d339 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-59ae1d2d3d339 h5.fl-heading .fl-heading-text *,
.fl-node-59ae1d2d3d339 h5.fl-heading .fl-heading-text {
	color: #a2adc1;
}
.fl-node-59ae1d2d3d339.fl-module-heading .fl-heading {
	font-family: Roboto, sans-serif;
	font-weight: 300;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-align: center;
}
.fl-module-fl-post-navigation .screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.fl-module-fl-post-navigation nav.post-navigation {
    overflow: hidden;
}
@media (max-width: 700px) { .fl-module-fl-post-navigation .nav-links {
	display: block;
}
.fl-module-fl-post-navigation .nav-links .nav-previous {
	margin-bottom: 15px;
	width: 100%;
}
.fl-module-fl-post-navigation .nav-links .nav-next {
	text-align: right;
	width: 100%;
}
 }.fl-node-59ae1d2d3d5fa .nav-links { 
	display: flex;
	flex-direction: row;
	width: 100%;
}
.fl-node-59ae1d2d3d5fa .nav-links .nav-previous,
.fl-node-59ae1d2d3d5fa .nav-links .nav-next { 
	display: block;
	width: 100%;
}
.fl-node-59ae1d2d3d5fa .nav-links a { 
	display: inline-block;
}
.fl-node-59ae1d2d3d5fa .nav-links .nav-previous { 
	text-align: left;
}
.fl-node-59ae1d2d3d5fa .nav-links .nav-next { 
	text-align: right;
}
@media(max-width: 700px) {
	.fl-node-59ae1d2d3d5fa .nav-links, .fl-node-59ae1d2d3d5fa .nav-links .nav-previous, .fl-node-59ae1d2d3d5fa .nav-links .nav-next {
		display: block;
		width: 100%;
	}
}
.fl-node-59ae1d2d3d672 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-59ae1d2d3d672 .fl-separator {
	border-top-color: #e8e8e8;
	border-top-style: solid;
}
 .fl-node-59ae1d2d3db95 > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
 .fl-node-59ae1d2d3e1c5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-59aec23c5b21a > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-59aec2a720df7 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-59aec2cb4e724 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-59b211feabce4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-accordion-button,
.fl-accordion-button:focus,
.fl-accordion-button:hover,
button.fl-accordion-button-icon,
button.fl-accordion-button-icon:hover {
	all: unset;
}

.fl-accordion-item a,
.fl-accordion-item a:hover {
	text-decoration: none;
	color: inherit;
}

.fl-accordion .fl-accordion-button {
	width: 100%;
	display: flex;
	cursor: pointer;
	box-sizing: border-box;
}

.fl-accordion-heading,
.fl-accordion-button-label {
	width: 100%;
	border: none;
	background: none;
	text-align: left;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	margin: auto;
}

.fl-accordion-button .fl-accordion-button-icon:focus,
.fl-accordion-button .fl-accordion-button-icon:active {
	opacity: 1;
	background: none;
}

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

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

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

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

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

.fl-accordion-content {
	display: none;
}

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

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

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

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

.fl-node-59f7971bf3e71 .fl-accordion-item {
	margin-bottom: 10px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-59f7971bf3e71 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
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: 700px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-59ae1d2d3d2ff, .fl-node-59ae1d2d3d2ff .fl-photo {
	text-align: center;
}
 .fl-node-59ae1d2d3d2ff > .fl-module-content {
	margin-top:0px;
}
/* Post Carousel */

/* Wrappers */
body.rtl .fl-module-post-carousel .bx-viewport {
	direction: ltr;
}
body.rtl .fl-post-carousel-post {
	direction: rtl;
}
.fl-module-post-carousel {
	flex-grow: 1;
	place-self: stretch;
}
.fl-module-post-carousel .bx-controls {
	width: 100%;
	position: absolute;
	bottom: 0;
	margin-top: 20px;
}

.fl-post-carousel-navigation{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 2;
	margin-top: -16px;
}
.fl-post-carousel-navigation button,
.fl-post-carousel-navigation button:focus,
.fl-post-carousel-navigation button:hover{
	all: unset;
	cursor: pointer;
	position: absolute;
}
.fl-post-carousel-navigation a,
.fl-post-carousel-navigation button{
	position: absolute;
	display: inline-block;
	opacity: .7;
}
.fl-post-carousel-navigation a:hover,
.fl-post-carousel-navigation button:hover {
	opacity: 1;
}

.fl-module-post-carousel .fl-post-carousel-navigation .carousel-prev{ left: 0; }
.fl-module-post-carousel .fl-post-carousel-navigation .carousel-next{ right: 0; }

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

.fl-post-carousel-navigation a.disabled,
.fl-post-carousel-navigation button.disabled,
.bx-controls a.disabled,
.bx-controls button.disabled {
	cursor: not-allowed;
	opacity: .2;
}

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

/* Post Carousel */
.fl-post-carousel {
	margin: 0 auto;
	position: relative;
}

.fl-post-carousel-wrapper:before,
.fl-post-carousel-wrapper:after {
	content: '';
	display: table;
}
.fl-post-carousel-wrapper:after {
	clear: both;
}

.fl-post-carousel-post {
	position: absolute;
	top: 0;
	float: left;
	visibility: hidden;
	background: #fff;
}

.fl-post-carousel-loaded .fl-post-carousel-post {
	position: relative;
	visibility: visible;
	margin: 0;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

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

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

/* Layout - post gallery */

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

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

.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text-wrap {
	opacity: 1;
}

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

.fl-post-carousel-gallery .fl-post-carousel-title {
	margin: 0 0 5px 0;
}

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

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

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

/* Common Styles */
body .fl-post-carousel-text a {
	text-decoration: none;
}

	.fl-node-59ae1d2d3d822 .fl-post-carousel-wrapper{
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		height: 100%;
	}

	

.fl-node-59ae1d2d3d822 .fl-post-carousel .fl-post-carousel-post {
	width: 33.33%;
}

.fl-node-59ae1d2d3d822 .fl-post-carousel .fl-post-carousel-post:nth-child(-n+3) {
	position: relative;
}



	.fl-builder-content .fl-node-59ae1d2d3d822 .fl-post-carousel-post{
		background-color: #ffffff;
	}




.fl-node-59ae1d2d3d822 .fl-post-carousel-meta a {
	color: #cccccc;
}
.fl-node-59ae1d2d3d822 .fl-post-carousel-meta a:hover {
	color: #ffffff;
}
 .fl-node-59b2122952982 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-59b212546b260 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-59fca36473752 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-59b2127c6b530 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

/* Start Global CSS */
.clasic_btn_MONAT.unavailable {
    background-color: #fff;
    color: #000 !important;
    border: solid 1px #000 !important; 
    pointer-events: none;
}




.primary_color{
    color:#000 !important;
}








 /*BS Label */

.BSLabel {
    border: 1px solid #b27921;
    padding: 3px 6px 1px;
    margin-bottom: 0;
    margin-right: 10px;
    color: #865c1a;
    letter-spacing: 0.09em;
    font-size: 0.75em;
    background-color: #fff;
    height: fit-content;
    display: inline-flex;
    align-items: center;
    font-family: 'Post_Grotesk_Book', Fallback, sans-serif !important;
}
.BSLabel:before {
    content: url(https://monatglobal.com/wp-content/uploads/2024/03/Star_bestseller.svg);
    margin-right: 3px;
    width: 10px;
    margin-top: 2px;
}

.hide_label{
    /*display: none !important;*/
}

 /*BS Label */
 
 
 /*pricing update 2023*/

 /*pricing update 2023*/
.old_price_2022{
    display: none !important;
}

.new_price_2023{
    
}

.new_acne{
    display: none !important;
}






a:hover, a:focus {
   
    text-decoration: none !important;
}

/************ -cookies **************/

.ot-floating-button__front {
    background-image: url(https://monatglobal.com/wp-content/uploads/2024/11/cookie-icon.svg) !important;
}

#ot-sdk-btn-floating .ot-floating-button__back {
    background-color: #2e2a4a;
    transform: rotateY(-180deg);
}



#onetrust-consent-sdk #onetrust-banner-sdk {
    background-color: #000000 !important;
}

#onetrust-consent-sdk #onetrust-pc-btn-handler, #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link {
    color: #fff;
    border-color: #fff;
    background-color: #000000 !important;
}


#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn), #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #FFFFFF;
}
/************ -cookies **************/


#myID:hover{
    opacity: 0.7;
}


.old_price_switch{
     display: none !important;
}
.new_price_switch{
   
}









.n_slider{
    display: non;
}

.h_p_slider{
    display: none;
}










.name_p_row a {
    font-size: 0.85em;
}





/* ---------- custome page full width ---------- */
 .cols-wrapper {
     margin: auto;
}
 .cols-2 {
     width: 68%;
}
/* ---------- custome page full width ---------- */



.uppercase{
    text-transform: uppercase;
}

.txt_transform_none{
    text-transform: none;
}

.list_tab{
    padding-left: 2em;
}

.p_opp a {
    color: #1254A5;
}


/*ingredients wellness*/
.mfp-bg{
    opacity: 0.8 !important;
}


.rpwe-block a {
 
    font-family: 'Post_Grotesk_Book', Fallback, sans-serif;
}


.hr_msb_hair{
      border-top: 2px solid #f6f5fa;
  background: #f6f5fa !important;
      margin:  2px 0 5px 0 !important;
}

.hr_msb_skin{
      border-top: 2px solid #fbf7f6;
  background: #fbf7f6 !important;
      margin:  2px 0 5px 0 !important;
}

.container_s_f p{
font-size: 0.8em !important;
color: #fff !important;
background-color: #2e2a4a;
}

.container_s_f {
margin: auto;
background-color: #2e2a4a;
}

.parent_s_f {
display: flex !important;
flex-wrap: wrap;

}



.col_100_s_f {
width: 100%;
text-align: left
}

.col_70_s_f {
width: 70%;
text-align: left
}

.col_15_s_f {
width: 15%;
text-align: right;
}

.col_30_s_f {
width: 30%;
text-align: right;
}

.b_and_p_s_f {
border:solid 1px #fff;
padding:1em ;
}


.p_s_f {

padding:1em ;
}

.hr_5px_s_f {
height: 5px;
background:#fff ;
width: 100%;

}

.hr_3px_s_f {
height: 3px;
background:#fff ;
width: 100%;

}
        
.hr_2px_s_f {
height: 2px;
background:#fff ;
width: 100%;

}
.text_r {  
text-align: right;

}

.text_L {  
text-align: left;

}

.t_s_f {
    font-size: 1.4em;
    letter-spacing: 0.5px;
    color: #fff;
}
/*ingredients wellness*/


.nav-menu ul ul li {
 
    background-color: #2e2a49 !important;

}
  .p_opp_w p{
      color: #fff;
  }

#footer, #footer input[type=text], #footer input[type=password], #footer textarea, #footer input[type=search] {
    background-color: #2E2A4A !important;
}

.footer-bottom {
    background-color: #2E2A4A !important;
}
.top-menu ul.top-rt>li>a {

    font-family: 'Post_Grotesk_Book', Fallback, sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
}


.top-menu-lt {
      font-family: 'Post_Grotesk_Book', Fallback, sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
}

.nav-menu ul li a {

    font-size: 12px !important;
    letter-spacing: 1.8px !important;
    font-family: 'Post_Grotesk_Book', Fallback, sans-serif !important;
 
}

.page-title h1, #menu>ul>li>a, #menu>div>ul>li>a, .page-subtitle, .icon-basket:before, .pex-woo-cart-btn:before, .pg-cat-filter a, .ps-nav-text, .ps-back-text, .mob-nav-btn {
    color: #2e2a49 !important;
}
.col_50_50 {
    height: 50vh;
}

#footer .section-boxed{
   padding: 0 5% !important;
}

.search_bar{
 
    padding: 2em 2em 0 2em;
}

.col_two_tirds_vip_100{
    height: auto;
    width: 100%;
}
.fda {
 font-family:'Post_Grotesk_Medium', Fallback, sans-serif !important;
    letter-spacing: 0.05em;
    color: #000;
    font-size: 0.9em;
}

.out_of_stock{
    opacity: 0.45;
}
.z_index_OUT{
    z-index: 1;
}

.play_product_blue{
    width: max-content;
text-align: center;
 color:#475d77;
    font-size: 0.98em;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding: 8px 15px 8px 35px;
    border:solid 2px #475d77;
  

    background-image: url(https://monatglobal.com/wp-content/uploads/2019/11/play_button_img-blue.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center left 15px;
    display: block;
    margin: auto;
    border-radius: 30px;
    transition: .5s ease-in-out;
        font-family: "Post_Grotesk_Book";
}
a.play_product_blue:hover {
    
    color:#fff;
    background: #25345d;
        background-image: url(https://monatglobal.com/wp-content/uploads/2017/03/play_button_img.png);
            background-image: url(https://monatglobal.com/wp-content/uploads/2017/03/play_button_img.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center left 15px;
     border:solid 2px #25345d;
    
}

.monat_hide_holiday{
  

}
.alpha_sold_out{
   
}
.last_chance {
    text-align: center;
    margin-left: 20px;
    color: #FFF;
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 2px;
    background-color: #2e2a4a;
    width: 38%;
    display: block;
   font-family: "Post_Grotesk_Book";
    transition: .5s ease-in-out;
}

.monat_hide{
   display: none !important; 

}
.monat_show{
   display: initial; 

}

.skin_onsale{
 display: none !important; 


}
.p_disclaimer{
    font-size: 0.95em;
    font-family: 'Post_Grotesk_Book', Fallback, sans-serif !important;
    font-weight: 300;
    letter-spacing: 0.7px;
    color: #000;
} 

.full_width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}










.SurveyorFine-Light-Pro {
  font-family: 'SurveyorFine-Light-Pro', Fallback, sans-serif;

}

.SurveyorDisplay-LightItalic-Pro {
  font-family: 'SurveyorDisplay-LightItalic-Pro', Fallback, sans-serif !important;

}

.SurveyorDisplay-Light-Pro {
  font-family: 'SurveyorDisplay-Light-Pro', Fallback, sans-serif;
}

.SurveyorFine-BookItalic-Pro {
  font-family: 'SurveyorFine-BookItalic-Pro', Fallback, sans-serif !important;

}

.SurveyorDisplay-Book-Pro {
  font-family: 'SurveyorDisplay-Book-Pro', Fallback, sans-serif !important;

}

.suisse_book {
  font-family: 'Suisseintl-Light', Fallback, sans-serif;

}

.suisse_regular {
  font-family: 'SuisseIntl-Regular', Fallback, sans-serif;
}

.SuisseIntl-Medium {
  font-family: 'SuisseIntl-Medium', Fallback, sans-serif !important;
}

.suisse_Light {
  font-family: 'Suisseintl-Book', Fallback, sans-serif;

}

.suisseIntl-black {
  font-family: 'SuisseIntl-Black', Fallback, sans-serif;

}

.suisseIntl-Bold {
  font-family: 'SuisseIntl-Bold', Fallback, sans-serif !important;
}

.SuisseIntl-Bold {
  font-family: 'SuisseIntl-Bold', Fallback, sans-serif !important;
}



/* ---- Rabbit ------ */

.rabbit_test{
    width:60px;
    margin: 0px auto;
}

/* ---- End Rabbit ----- */
/* ---- sign up form ----- */


#mc_embed_signup input.email {

    margin-right: 15px !important;;
    width: 175px !important;
 
}
/* ---- sign up form ----- */



  /* ---------- may also like ---------- */


.may_like img:hover{
      opacity: 0.8;
     
     
}

.may_like img{
    transition: .5s ease-in-out;
     
}


.may_like .fl-post-grid-title{
          letter-spacing: 0.08em;
       font-family: "Post_Grotesk_Book";
       font-weight: 300;
       color: #000;
       text-transform: uppercase;
       font-size: 0.95em !important;
       text-align: center;
     
}

  /* ---------- may also like ---------- */
  

.p_opp_w,
.p_opp{

    font-size: 1.1em;
  font-family: 'Post_Grotesk_Book', Fallback, sans-serif !important;
    font-weight: 300;
    letter-spacing: 0.7px;

}  

 
    
  .rpwe-block a {
    display: inline !important;
    text-decoration: none;
      line-height: 1.4em;
    letter-spacing: 0.6px;
    font-family: Roboto;
} 


img.size-full {
    margin-top: 0px !important;
}


.position_helper_bunny{
   
    position: relative;
    height: 80px;
    
}
.position_helper{
   
    position: relative;
    height: 80px;
    margin-bottom: 80px;
}
.logo_footer{
    height: auto;
    width:  15em;
    padding: 1.5em;
  
    padding-left: 0;
    position: absolute;
    right: 0;

}

.logo_footer_500
{
    height: auto;
    width: 7em;
    padding: 0 1.5em;
    padding-left: 0;
    position: absolute;
    right: 0;
    
}

.logo_footer{
    height: auto;
    width:  15em;
    padding: 1.5em;
    padding-left: 0;
    text-align: left;

}


.monat_shop_btn_HOLIDAY2{

text-align: center;
 color:#FFF;
    font-size: 0.98em;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding: 8px;
    border:solid 2px #cbced3;
    background-color: #cbced3;
    width: 50%;
    display: block;
    margin: auto;
    border-radius: 30px;
         font-family: "Post_Grotesk_Book";
    transition: .5s ease-in-out;
}
.monat_shop_btn_HOLIDAY{

text-align: center;
 color:#FFF;
    font-size: 0.98em;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding: 8px;
    border:solid 2px #cbced3;
    background-color: #cbced3;
    width: 38%;
    display: block;
    margin: auto;
    border-radius: 30px;
           font-family: "Post_Grotesk_Book";
    transition: .5s ease-in-out;
}
a.monat_shop_btn_HOLIDAY:hover {
    
    color:#fff;
  
    background: #f5aa91;
     border:solid 2px #f5aa91;
    
}
a.monat_shop_btn_HOLIDAY2:hover {
    
    color:#fff;
  
    background: #f5aa91;
     border:solid 2px #f5aa91;
    
}
.bio_hover:hover .content {
    background-color: #eaeaea !important; 
}


.btn.diagonal span,
.diagonal-top a {
    display: block;
     transform: skewX(0deg) !important; 
   
}


.btn.diagonal,
.diagonal-top {
    display: block;
     transform: skewX(0deg) !important;

  
   
}
.diagonal-top {
   
     padding-left: 8px!important;
  
   
}

.mfp-iframe-scaler {

    background-color: #000;
}

.full_width_monat {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.monat_play_product_btn{

text-align: center;
 color:#fff;
    font-size: 0.98em;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding: 8px 15px 8px 35px;
    border:solid 2px #fff;
    width: 40%;

    background-image: url(https://monatglobal.com/wp-content/uploads/2017/03/play_button_img.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center left 15px;
    display: block;
    margin: auto;
    border-radius: 30px;
    transition: .5s ease-in-out;
        font-family: "Post_Grotesk_Book";
}
a.monat_play_product_btn:hover {
    
    color:#fff;
    background: #25345d;
        background-image: url(https://monatglobal.com/wp-content/uploads/2017/03/play_button_img.png);
            background-image: url(https://monatglobal.com/wp-content/uploads/2017/03/play_button_img.png);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center left 15px;
     border:solid 2px #25345d;
    
}


.monat_shop_btn{

text-align: center;
 color:#FFF;
    font-size: 0.98em;
    font-weight: 300;
    letter-spacing: 1.5px;
    padding: 8px;
    border:solid 2px #cbced3;
    background-color: #cbced3;
    width: 38%;
    display: block;
    margin: auto;
    border-radius: 30px;
           font-family: "Post_Grotesk_Book";
    transition: .5s ease-in-out;
}
a.monat_shop_btn:hover {
    
    color:#fff;
    background: #25345d;
     border:solid 2px #25345d;
    
}



.coming_soon{
    font-family: "Roboto";
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9em;
    text-align: center;
    background-color: #4a7afd;
    color: #fff;
    padding: 5px;
    width: 50%;
    margin: auto;
    margin-top:-30px;
    
    
    
    
}



.comments_stlye_blog #submit{
    background-color: #14325e;
}


.sidebar .widget_categories ul li:nth-child(17),
.sidebar .widget_categories ul li:nth-child(16),
.sidebar .widget_categories ul li:nth-child(6),
.sidebar .widget_categories ul li:nth-child(7),
 .sidebar .widget_categories ul li:nth-child(3)  {
text-align: center;
display: none;
      
  }
  
  .retina-image {
    width: 50% !important;
    height: 50% !important;
}

 #cboxOverlay {
    background: #BBBFC1;
}
.screen-reader-text{
    display:none;
}

.fl-node-5705d0f23dada h2.fl-heading .fl-heading-text {
    line-height: 0.8em;
}

 .grow_button_bio_video:hover { transform: scale(1); }

.grow_button_bio_video:hover { transform: scale(1.1); }
.grow_button_bio_video { transition: all .2s ease-in-out; }

.wmmtm:hover {
    background-color: #738191;
    font-size: 3em;
}



p{
    font-family: 'Post_Grotesk_Book', Fallback, sans-serif;
    letter-spacing: 0.06em ;
    font-size: 1em ;
    letter-spacing: 0.02em !important;
    color: #000;
    font-weight: 300;
}

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

.mob-nav-menu {

    background: rgb(46 42 73)!important;
 
}


}


/*---- Desktop Query----*/



/*---- TABLETS ----*/


@media screen and (min-width:4750px) and (max-width:1024px){
    #logo-container img {
    width: 206px !important;
}

}


/*---- END TABLETS ----*/




@media screen and (min-width: 600px)and (max-width: 992px){
    .grow { transform: scale(0.6); 
 
}
.grow:hover { transform: scale(0.7); }
.grow{
 position:relative;
  
   top: -30px;
}
}

@media screen and (max-width: 600px){
    .grow { transform: scale(0.7); 
 
}
.grow:hover { transform: scale(0.8); }
.grow{
 position:relative;
  
   top: -30px;
}
.flag-usa {
    float: right !important;
  
}
}

.grow { transition: all .2s ease-in-out; }
@media screen and (min-width: 992px){
.grow:hover { transform: scale(1.2); }


}








@media screen and (max-width: 600px){
    .grow_1 { transform: scale(0.8); 
 
}
.grow_1:hover { transform: scale(0.9); }

.monat_play_product_btn,
.monat_shop_btn{



    font-size: 0.8em;
    width: 48%;
  
}



}




@media screen and (min-width: 992px){
.grow_1:hover { transform: scale(1.2); }
}

.grow_1 { transition: all .2s ease-in-out; }

#colorbox:focus {
    outline:none;
}

#here a {
    color:#485563;
}

.caps_headline {
    text-transform: uppercase ;
}

.hr_newx {
    border-top: 2px solid #eee;

    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-top: 25px;
        margin-bottom: 25px;
}

@media screen and (max-width: 1045px) and (min-width: 1000px) {
#menu ul li a {
    font-size: 11px !important;
}
    
}








/************ -FRAMEWORK **************/
@font-face {
  font-family: 'ChicAvenue-Regular';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/ChicAvenue-Regular.otf');
}

@font-face {
  font-family: 'Gotham-Book';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/Gotham-Book.otf');
}

@font-face {
  font-family: 'Gotham-Medium';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/Gotham-Medium.ttf');
}
/************ Holiday 2025 fonts **************/

@font-face {
  font-family: 'Kepler-Std-Light-Condensed-Italic-Subhead';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/Kepler-Std-Light-Condensed-Italic-Subhead.otf');
}

@font-face {
  font-family: 'Kepler-Std-Light-Condensed-Subhead';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/Kepler-Std-Light-Condensed-Subhead.otf');
}

@font-face {
  font-family: 'Didot-Italic';
  src: url('https://monatglobal.com/wp-content//uploads/fonts/Didot-Italic.otf');
}

@font-face {
  font-family: 'Type-Prodigy';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/Type-Prodigy.otf');
}


/*Didot-Italic */

.Didot-Italic{
   font-family: 'Didot-Italic';
}


/*Type-Prodigy */

.Type-Prodigy{
   font-family: 'Type-Prodigy';
}


/************ NEW BRANDNG FONTS **************/

/**** Apercu-Mono ****/

@font-face {
  font-family: 'Apercu_Mono_Pro_Bold';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/DMMono-Medium.ttf');
}



@font-face {
  font-family: 'Apercu_Mono_Pro';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/DMMono-Regular.ttf');
}

/**** Apercu-Mono ****/

/**** Post Grotesk ****/

@font-face {
  font-family: 'Post_Grotesk_Black';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Bold.ttf');
}


@font-face {
  font-family: 'Post_Grotesk_Bold';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Bold.ttf');
}



@font-face {
  font-family: 'Post_Grotesk_BoldItalic';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-BoldItalic.ttf');
}


@font-face {
  font-family: 'Post_Grotesk_Book';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Regular.ttf');
}


@font-face {
  font-family: 'Post_Grotesk_Italic';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-ExtraLightItalic.ttf');
}


@font-face {
  font-family: 'Post_Grotesk_Light';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Light.ttf');
}


@font-face {
  font-family: 'Post_Grotesk_LightItalic';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-LightItalic.ttf');
}



@font-face {
  font-family: 'Post_Grotesk_Medium';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Medium.ttf');
}



@font-face {
  font-family: 'Post_Grotesk_MediumItalic';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-MediumItalic.ttf');
}



@font-face {
  font-family: 'Post_Grotesk_Thin';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-ExtraLight');
}



@font-face {
  font-family: 'Post_Grotesk_ThinItalic';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-ExtraLightItalic.ttf');
}
/**** Post Grotesk ****/

@font-face {
  font-family: 'Morganite-Bold';
  src: url('https://monatglobal.com/wp-content/creative_css/Morganite-Bold.ttf');
}


@font-face {
  font-family: 'Brugenfield';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/Brugenfield.otf');
}
@font-face {
  font-family: 'TOMMY_Black';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/MADE TOMMY Black_PERSONAL USE.otf');
}

@font-face {
  font-family: 'Morganite-Bold';
  src: url('https://monatglobal.com/wp-content/creative_css/Morganite-Bold.ttf'); /* IE9 Compat Modes */
}



@font-face {
  font-family: 'SuisseIntl-Regular';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Regular.ttf'); /* IE9 Compat Modes */
}

@font-face {
  font-family: 'SuisseIntl-Medium';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Medium.ttf'); /* IE9 Compat Modes */
}

@font-face {
  font-family: 'Suisseintl-Book';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/Suisseintl-Book.otf'); /* IE9 Compat Modes */
}

@font-face {
  font-family: 'SuisseIntl-Black';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Bold.ttf'); /* IE9 Compat Modes */
}

@font-face {
  font-family: 'SuisseIntl-Bold';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Bold.ttf'); /* IE9 Compat Modes */
}


@font-face {
  font-family: 'SuisseIntl-SemiBold';
  src: url('https://monatglobal.com/wp-content/uploads/fonts/PlusJakartaSans-Regular.ttf'); /* IE9 Compat Modes */
}



 html{
	 font-size: 62.5% !important; 
	 margin-top: 0 !important;
	 overflow-x: hidden;
	 scroll-behavior: smooth;
 }
 
 body {
	font-size: 14px !important;
	line-height: 1.5 !important;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased; 
     font-family: "Post_Grotesk_Book";
 }

.header_padding_top_prod {
    padding-top: clamp(1em, 2.5vw, 4em); 
}

.p_relative{ position: relative; }
.p_absolute{ position: absolute; }


.display_grid {
	display: grid;
}

.display_block{
    display: block;
}

.display_inline_block{
    display: inline-block;
}

 /* ------- flex ------- */
 
.display_flex{
    display: flex;
}

.flex_center{
    justify-content: center;
    align-items: center;
}

 /* ------- Flex-wrap ------- */

 .flex_wrap{
   flex-wrap: wrap;
}

.flex_wrap_reverse{
   flex-wrap: wrap-reverse;
}

/* ------- Flex-direction ------- */

.f_d_column{
   flex-direction: column;
}


.f_d_column_reverse{
    flex-direction: column-reverse;
}

.f_d_row_reverse{
   flex-direction: row-reverse;
}
  
/* ------- Justify-content ------- */

.j_c_flex_start{
    justify-content: flex-start;
}
  
.j_c_flex_end{
    justify-content: flex-end;
}
  
.j_c_center{
    justify-content: center;
}
  
.j_c_space_between{
    justify-content: space-between;
}
  
.j_c_space_around{
    justify-content: space-around;
}
  
.j_c_space_evenly{
    justify-content: space-evenly;
}
  
/* ------- Align-items ------- */

.a_i_flex_start{
    align-items: flex-start;
}
  
.a_i_flex_end{
    align-items: flex-end;
}
  
.a_i_center{
    align-items: center;
}
  
.a_i_stretch{
    align-items: stretch;
}
  
.a_i_baseline{
    align-items: baseline;
}  

/* ------- Align-content ------- */

.a_c_flex_start{
    align-content: flex-start;
}
  
.a_c_flex_end{
    align-content: flex-end;
}
  
.a_c_center{
    align-content: center;
}
  
.a_c_stretch{
    align-content: stretch;
}
  
.a_c_between{
    align-content: space-between;
}
  
.a_c_space_around{
    align-content: space-around;
}
  
.a_c_space_evenly{
    align-content: space-evenly;
}

/* ------- Align-self ------- */

.a_s_flex_start{
    align-self: flex-start;
}

.a_s_flex_end{
    align-self: flex-end;
}

.a_s_center{
    align-self: center;
}

.a_s_baseline{
    align-self: baseline;
}

.a_s_stretch{
    align-self: stretch;
}



/* ------- Margins ------- */

.margin_auto{
    margin-left: auto;
    margin-right: auto;
}

.margin_y_small{
    margin-top: 40px;
    margin-bottom: 40px;
}

.margin_y_medium{
    margin-top: 80px;
    margin-bottom: 80px;
}

.margin_top_medium{
    margin-top: 80px !important;
}

.margin_top_0{
    margin-top: 0 !important;
}

.margin_bottom_0{
    margin-bottom: 0 !important;
}

.margin_y_colapse{
    margin-top: 0;
    margin-bottom: 0;
}

.margin_top_10{
    margin-top: 10px !important;
}

.margin_top_15{
    margin-top: 15px !important;
}

.margin_top_20{
    margin-top: 20px !important;
}

.margin_top_30{
    margin-top: 30px !important;
}

.margin_top_40{
    margin-top: 40px !important;
}

.margin_top_50{
    margin-top: 50px !important;
}

.margin_top_60{
    margin-top: 60px !important;
}

.margin_top_80{
    margin-top: 80px !important;
}

.margin_top_100{
    margin-top: 100px !important;
}



/* ------- Paddings ------- */


.padding_y_medium{
    padding: 80px 0 ;
}

.padding_top_medium{
    padding-top: 80px;
}

.padding_top_15{
   padding-top: 15px;
}

.padding_top_20{
   padding-top: 20px;
}

.padding_top_30{
   padding-top: 30px;
}

.padding_top_40{
   padding-top: 40px;
}

.padding_top_50{
   padding-top: 50px;
}

.padding_top_60{
   padding-top: 60px;
}

.padding_top_80{
   padding-top: 80px;
}

.padding_top_100{
   padding-top: 100px;
}

.padding_top_0{
    padding-top: 0 !important;
}

.padding_bottom_0{
    padding-bottom: 0 !important;
}

.padding_bottom_40{
   padding-bottom: 40px;
}

.padding_bottom_30{
   padding-bottom: 30px;
}


.padding_bottom_50{
   padding-bottom: 50px;
}

.padding_bottom_60{
   padding-bottom: 60px;
}

.padding_bottom_80{
   padding-bottom: 80px;
}

.padding_bottom_100{
   padding-bottom: 100px;
}



/* ------- columns ------- */

.col_100{
    width:100%;
}

.col_90{
    width: 90%;
}
  
.col_80{
    width:80%;
}

.col_70{
   width:70%;
}

.col_65{
   width:65%;
}

.col_60{
   width:60%;
}

.col_55{
   width:55%;
}

.col_50{
   width:50%;
}

.col_45{
   width:45%;
}

.col_40{
   width:40%;
}

.col_35{
   width:35%;
}
  
.col_33{
    width:33%;
}

.col_30{
   width:30%;
}

.col_25{
   width:25%;
}

.col_20{
   width:20%;
}

.col_10{
    width: 10%;
}



/* ------- textos ------- */

.Monat_purple_txt{
    color: #000;
}

.txt_w{
   color: #fff !important;
}

.txt_bold{
   font-weight: bold !important;
}

.txt_center{
   text-align: center !important;
}

.txt_right{
    text-align: right;
}

.txt_left{
    text-align: left !important;
}

.txt_underline{
   text-decoration: underline !important;
   cursor: pointer;
}

.txt_uppercase{
   text-transform: uppercase !important;
}

.txt_transform_none{
   text-transform: none !important;
}

.paragraph_list > li{
    font-family: 'Post_Grotesk_Book';
    letter-spacing: 0.05em ;
    font-size: 1.1em;
    color: #000;
    font-weight: 300;
    margin: 1em 0;
}

/* NEW BRANDING FONTS STYLES*/


/* Apercu_Mono_Pro */


.Apercu_Mono_Pro{
    font-family: 'Apercu_Mono_Pro', Fallback, sans-serif !important;
}


.Apercu_Mono_Pro_Bold{
    font-family: 'Apercu_Mono_Pro_Bold', Fallback, sans-serif !important;
}

/* Apercu_Mono_Pro */


.Post_Grotesk_Black {
    font-family: 'Post_Grotesk_Black';

  }
  
  
.Post_Grotesk_Italic {
    font-family: 'Post_Grotesk_Italic';

  }
  
.Post_Grotesk_Bold {
    font-family: 'Post_Grotesk_Bold';

  }
  
.Post_Grotesk_Book {
    font-family: 'Post_Grotesk_Book';

  }
  
  
.Post_Grotesk_Book {
    font-family: 'Post_Grotesk_Book';
   
  }
  
  
.Post_Grotesk_Italic {
    font-family: 'Post_Grotesk_Italic';

  }
  
  
.Post_Grotesk_Light {
    font-family: 'Post_Grotesk_Light';

  }
  
.Post_Grotesk_LightItalic {
    font-family: 'Post_Grotesk_LightItalic';

  }
  
.Post_Grotesk_Medium {
    font-family: 'Post_Grotesk_Medium';

  }
  
.Post_Grotesk_MediumItalic {
    font-family: 'Post_Grotesk_MediumItalic';
 
  }

.Post_Grotesk_Thin{
    font-family: 'Post_Grotesk_Thin';
   
  }
  
  
.Post_Grotesk_ThinItalic {
    font-family: 'Post_Grotesk_ThinItalic';
    src: url('https://monatglobal.com/wp-content/uploads/fonts/Post_Grotesk_ThinItalic.otf');
  }
  

/* APPROVED FONTS PROTOCOL*/





.SuisseIntl_Light{
    font-family: 'Suisseintl-Light', Fallback, sans-serif !important;
}

.SuisseIntl_Bold {
  font-family: 'SuisseIntl-Bold', Fallback, sans-serif !important;
}

.SuisseIntl_SemiBold {
  font-family: 'SuisseIntl-SemiBold', Fallback, sans-serif !important;
}


.SuisseIntl_Medium {
  font-family: 'SuisseIntl-Medium', Fallback, sans-serif !important;
}

.SuisseIntl_Regular{
    font-family: 'SuisseIntl-Regular', Fallback, sans-serif !important;
}

.SuisseIntl_SemiBoldItalic{
    font-family: 'SuisseIntl-SemiBoldItalic', Fallback, sans-serif !important;
}

.SurveyorDisplay_Medium {
  font-family: 'SurveyorDisplay-Medium', Fallback, sans-serif !important;
}

.SurveyorFine_MediumItalic {
  font-family: 'SurveyorFine-MediumItalic', Fallback, sans-serif !important;
}

.SurveyorDisplay_Bold {
  font-family: 'SurveyorDisplay-Bold', Fallback, sans-serif !important;
}

.SurveyorDisplay_Light_Pro {
  font-family: 'SurveyorDisplay-Light-Pro', Fallback, sans-serif !important;
}

.SuisseIntl_UltraLight {
  font-family: 'SuisseIntl-UltraLight.otf'!important;
}

/* APPROVED FONTS PROTOCOL */

.surveyor_book_pro_title_product{
       font-family: 'Post_Grotesk_Bold';
    color: #000;
    font-size: clamp(3em, 5vw, 3.5em);
    line-height: 1em;
    letter-spacing: 0.01em !important;
}

.surveyor_book_pro_title{
       font-family: 'Post_Grotesk_Bold';
    color: #000;
    font-size: clamp(3em, 5vw, 3.5em);
    line-height: 1em;
    letter-spacing: 0.01em !important;
}

.surveyor_book_pro_subtitle {
    line-height: 1.1em;
    letter-spacing: 0.02em !important;
       font-family: 'Post_Grotesk_Bold';
    color: #000;
    font-size: clamp(2em, 2.5vw, 2.6em);
}

.small_text{
    font-size: 0.85em;
}



/* ------- background and images ------- */

.bkgnd{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
 }

.image_banner{
    width: 100%;
    height: clamp(30em, 38vw, 50em);
    object-fit: cover;
}


.background_image_banner{
    width: 100%;
    height: clamp(35em, 38vw, 50em);
}

.banner_bottom_grad{
    position: relative;
}

.banner_bottom_grad *{
    z-index: 10;
}

.banner_bottom_grad:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 80%, rgb(0 0 0 / 37%) 100%);
}

.dash_title::before{
    display: inline-block;
    content: "";
	width: 25px;
	border-top: solid 3px #2d2a49;
	float: left;
	margin-top: 0.6em;
    margin-right: 1em;
}

.dash_title_w::before{
    display: inline-block;
    content: "";
	width: 25px;
	border-top: solid 2px #fff;
	float: left;
	margin-top: 0.6em;
    margin-right: 1em;
}

.under_slide {
    text-decoration: none !important;
    letter-spacing: 0.05em;
    font-size: 0.8em;
    position: relative;
    transition: all 0.3s;
 }
 
 .under_slide:before {
    content: "";
    width: 100%;
    height: 1px;
    margin-top: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #000;
    transition: all 0.3s;
 }
 .under_slide:hover:before {
    width: 0%;
    right: 0;
 }

.clasic_btn_MONAT {
    background: #000000;
    color: #fff;
    display: inline-block;
    min-width: 16em;
    margin-right: auto;
    margin-left: auto;
    border-radius: 0px;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-size: 1em !important;
    letter-spacing: 0.14em;
    font-family: 'Apercu_Mono_Pro_bold' !important;
    padding: 0.85em 2em;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.clasic_btn_MONAT:hover {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

.clasic_btn_MONAT:focus {
    color: #fff;
}

.hide{
    display: none !important;
}

.v_hidden{
    visibility: hidden;
}

.new_product_label_small{
    display: inline-block;
    width: fit-content;
    padding: 3px 10px;
    background-color: #2e2c49;
    font-family: 'Post_Grotesk_Book', Fallback, sans-serif;
    text-align: center;
    color: #fff;
    font-size: 0.75em;
    letter-spacing: 2px;
    height: fit-content;
}

.new_product_label{
    display: inline-block;
    min-width: 5px;
    padding: 4px 10px;
    background-color: #2e2c49;
    font-family: 'Post_Grotesk_Book', Fallback, sans-serif;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
    letter-spacing: 2px;
}

.slash_list{
    text-indent: -0.9em;
    padding-left: 0.9em;
}

.events_none{
    pointer-events: none;
}

.swiper-container{
    overflow-x: hidden;
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    color: #1C1932 !important;
}

/************ FRAMEWORK- **************/



/************ FRAMEWORK MEDIAS **************/

@media screen and (min-width: 700px){
    .hide_desktop {
        display: none  !important;
    }
     .hide_desk {
    display: none  !important;
}
}

@media screen and (max-width:992px){
    
    .col_100_tablet{
        width: 100% !important;
    }
    
    .col_80_tablet{
        width: 80% !important;
    }
    
}

@media screen and (max-width:700px){
    
    .flex_wrap_mobile{
        flex-wrap: wrap;
    }
    
    p{
        font-size: 0.9em;
    }
    
    /* ------- Margins ------- */
    
    .margin_y_medium{
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
    
    .margin_top_medium{
        margin-top: 40px !important;
    }

    .margin_top_10_mobile{
        margin-top: 10px !important;
    }

    .margin_top_15_mobile{
        margin-top: 15px !important;
    }
  
    .margin_top_20_mobile{
        margin-top: 20px !important;
    }
  
    .margin_top_30_mobile{
        margin-top: 30px !important;
    }
  
    .margin_top_40_mobile{
        margin-top: 40px !important;
    }
  
    .margin_top_50_mobile{
        margin-top: 50px !important;
    }
  
    .margin_top_60_mobile {
        margin-top: 60px !important;
    }

    .margin_top_0_mobile {
        margin-top: 0 !important;
    }
  
  /* ------- Paddings ------- */
  
.padding_y_medium{
    padding-top:40px !important;
    padding-bottom:40px !important;
}

.padding_top_medium{
    padding-top: 40px !important;
}
  
    .padding_top_0_mobile{
        padding-top: 0px !important;
    }
  
    .padding_top_15_mobile{
        padding-top: 15px;
    }
  
    .padding_top_20_mobile{
        padding-top: 20px;
    }
  
    .padding_top_30_mobile{
        padding-top: 30px;
    }
  
    .padding_top_40_mobile{
        padding-top: 40px;
    }
  
    .padding_top_50_mobile{
        padding-top: 50px;
    }
  
    .padding_top_60_mobile{
        padding-top: 60px;
    }
    .padding_bottom_80{
   padding-bottom: 40px;
}
    
    .hide_mobile{
        display: none !important;
    }
    
    .hide_mob{
        display: none !important;
    }

    .hide_mobile_framework{
        display: none !important;
    }
    
    .col_100_mobile{
        width: 100% !important;
    }
    
    .col_50_mobile{
        width: 50% !important;
    }
    
    .margin_mobile{
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: calc(100vw - 50px) !important;
    }
    
    .padding_mobile{
        padding-left: 24px !important;
        padding-right: 24px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .txt_center_mobile{
        text-align: center;
    }
    
    .margin_auto_mobile{
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .width_auto_mobile{
        width: auto !important;
    }
    
    .f_d_column_reverse_mobile{
        flex-direction: column-reverse;
    }
    
    .a_i_center_mobile{
        align-items: center;
    }
    
    .j_c_center_mobile{
        justify-content: center;
    }
    
    .a_i_flex_end_mobile{
        align-items: flex-end !important;
    }

} 
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.fl-heading-text{
        font-family: 'SurveyorDisplay-Book-Pro', Fallback, sans-serif !important;
        color: #2f294b !important
}
.hr_vip_series{
    border-top: 2px solid #475d77;
    width: 10%;
    max-width: 100%;
    margin: auto;
    margin-top: 50px !important;
    margin-bottom: 0px;
}


.hr_vip_series_full{
    border-top: 2px solid #eee;
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.spacer{
    padding: 1.5em 0;
}


/* Create two equal columns that floats next to each other */
.column_blog {
    margin-top: 10px;
    margin-bottom: 10px;
  float: left;
  width: 50%;
  padding: 10px;
  height: auto; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row_blog:after {
  content: "";
  display: table;
  clear: both;
}

.comments_stlye_blog #submit{
    background-color: #14325e;
}


.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
   background: #9ba8b5;
}

.bx-wrapper .bx-pager.bx-default-pager a {
   background: #313f66;

}
.excerpt_blog_vip{
    font-family: "Playfair Display";
font-weight: 400;
color: #515c72 ;
font-size: 1.4em;
letter-spacing: 0.6px;
line-height: 1.4em;
    
}

.content input[type=text]{
    border-color: #ededed !important;

}
.boxed_content{
    max-width: 998px;
    margin: auto;
}


.fa-plus:before {
    content: url(https://monatglobal.com/ca/wp-content/uploads/sites/5/2017/08/menu-vip.png) !important; 
}
.fa-minus:before {
    content: url(https://monatglobal.com/ca/wp-content/uploads/sites/5/2017/08/minus.png)!important;
}

.tips_button_blank,
.tips_button {
  
    margin: auto;
    display:block;
      box-sizing: border-box;
    text-align: center;

    letter-spacing: 1.5px;
    -webkit-transition: all .5s ease !important;
			-moz-transition: all .5s ease !important;
			-o-transition: all .5s ease !important;
			-ms-transition: all .5s ease !important;
			transition: all .5s ease !important;
    font-size: 0.8em;
    font-family: 'montserrat', Helvetica, sans-serif;
}
.tips_button_blank{
    font-size: 0.8em;
    border: solid 1px #fff;
    color: #fff;
    padding: 10px 25px;
    text-align: center;
       text-shadow: 1px 1px 1px rgba(90, 90, 90, 0.14);
   
 
    
}
.tips_button_blank:hover{

    border: solid 1px #8793a1;
background-color: #8793a1;
    text-align: center;
 
    
}
.sub_tittles{
   
    font-weight: 300;
        color:#fff;
        text-transform: uppercase;
        font-size: 1.1em;
}



.fl-post-grid-post{
    border: none;
}
.full_width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fff;
}

.hr_container{

position: absolute;


}
.module_backg_col{
   background-color:  #f2f3f5;
}
.sfsi_widget {
  margin: auto !important;
    width: 100% !important;
    position: relative !important;



}
.sfsi_plus_holders{
    height: 2px !important;
}
.spacer{
    padding: 1.2em 0;
}


.nav_coverage_m {
 list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
 text-align: center;
}
.nav_coverage_items_m{
   float: none;
   margin-bottom: 3px;
  background-color: #fff;
}
.nav_coverage_items_m:hover {

  background-color: #eee;
}

.links_nav  {
    display: block;
    color: #25345D;
    text-align: center;
    padding: 16px;
    text-decoration: none;
text-transform: uppercase;
letter-spacing:1px;
font-size:0.8em;
font-weight: 300;


box-sizing: border-box;
transition: .5s ease-in-out;

}

.links_nav:hover {
 color: #fff; 
 background-color: #25345D;
}


.left_nav_coverage {
    float: left;
    width: 14%;
    font-size: 0.8em;
    letter-spacing: 1px;
    color: #25345d;
    text-align: center;
    text-transform: uppercase;

}


._nav_category,
.nav_coverage li{
    padding-bottom: 10px;
  border-bottom: 1px solid #f2f3f5;
  /* ^- the important bit. RGB 192,192,192 is the same as #C0C0C0*/
  
  -webkit-transition: border 500ms ease;
  -moz-transition: border 500ms ease;
  -ms-transition: border 500ms ease;
  -o-transition: border 500ms ease;
  transition: border 500ms ease; 
}

.nav_coverage li:hover {
  border-bottom: 1px solid rgba(192, 192, 192, 1);

  }
._nav_category{
         color: #25345d;
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 1px;
    font-family: "Playfair Display";
font-weight: 700;
         font-size: 1.1em;
    width: 20%;
        margin: auto;
}
._nav_category_page_tittle{
         color: #25345d;
     text-align: right;
     text-transform: uppercase;
     letter-spacing: 1.5px;

         font-size: 1.0em;
    
}
._see_all_in{
         color: #929baf;
     text-align: right;
     text-transform: uppercase;
     letter-spacing: 1px;

         font-size: 0.8em;
    
}
.nav_coverage {
 list-style-type: none;
 margin: 0;
 padding: 22px 0;
overflow: hidden;

}

.aligner {
  display: flex;
  align-items: center;
  justify-content: center;
}

._txt_center{
    text-align: center;
}

.cols-2 {
    
     width: 68%;
}
.custom-page-content {
  background-color: #f2f3f5;
  
  
}
.cols-wrapper {
 
    margin: auto;
    
}
   
    .parent_container {
    display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;  /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
    flex-wrap: wrap;
    justify-content: space-between;
    position:relative;
}

.col_tird_vip{
    height: auto;
    width: 35%;
}


.col_half_vip{
    height: auto;
    width: 50%;
}


.col_two_tirds_vip{
    height: auto;
    width: 65%;
}


.meta_post_vip{
    padding: 2em;
}
.meta_post_title_half,
.meta_post_title{
    
font-family: "Playfair Display";
	font-size: 1.5em;
	line-height: 1.5em;
	font-weight: normal;
	line-height: 26.4px;
	color:#25345d;
	text-align: center;
		padding-bottom: 1em;
    
}

.meta_post_title_half
{
    	font-size: 2.5em;
    	line-height: 1.1em;
}
.meta_post_category,
.meta_post_author,
.meta_post_date,
.fl-post-more-link,
.meta_post_excerpt{
    

	font-size: 0.9em;
	font-weight: 100;
	color:#25345d;
	text-align: center;
	padding-bottom: 0.5em;
	  letter-spacing: 0.07em;
    
}
.meta_post_excerpt{
    font-size: 1em;
}
.banner_title{
    
font-family: "Playfair Display";
	font-size: 4.5em;
	line-height: 1.1em;
	font-weight: 700;

	color:#fff;
	text-align: center;
		padding-bottom: 1em;
		    text-shadow: 1px 1px 1px rgba(90, 90, 90, 0.14);
    
}



    .img_feature{



    box-sizing: border-box;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;


    }
    .deep_conditioner{

    Z-INDEX: 2000;
    background-image: url(https://monatglobal.com/wp-content/uploads/2017/06/the-ultimate-control-freak.jpg);

}
    .rejuvabeads{

 
  background-image: url(https://monatglobal.com/wp-content/uploads/2017/05/rejuvabeads_1.jpg);

}
@media screen and (max-width: 992px){
 .fl-node-59a2255617d8b .fl-post-column {
   width: 33.3%;
}
}

@media screen and (max-width: 992px){
 .fl-node-59a2255617d8b .fl-post-column:nth-child(2n + 1) {
   clear: none;
}
.meta_post_excerpt{
    Display:none;
}
}
@media screen and (max-width:700px) {
.col_tird_vip,
.col_half_vip{

    width: 100%;


}
.excerpt_blog_vip{

font-size: 1.2em;

    
}
.sfsiplus_norm_row {

height: 30px;


}

 .fl-node-59a2255617d8b .fl-post-column {
   width: 100%;
}
.col_two_tirds_vip,
.nav_coverage,
.hide_mobile{
    display:none;
}




}

@media screen and (min-width:700px) {

.nav_coverage_m,
.hide_desk{
    display:none;
}


}

/*header styles end*/



.m {
  margin: auto !important;
    width: 100% !important;
    position: relative !important;


}
.sfsi_plus_holders{
    height: 2px !important;
}



.fl-post-carousel-post {
    border: 1px solid #fff !important;
    border: 1px solid #fff!important;
}

.fl-post-carousel-text {
    padding: 15px!important;
}

.fl-post-carousel-title{
        font-family: "Playfair Display", sans-serif;
    font-weight: normal;
    color: #25345d;
    font-size: 1em !important;
        line-height: 1.5em !important;
    margin: 0 0 0 5px !important;
}
.fl-post-feed-date{
            
font-weight: 100;
color: #9ba8b5 ;
font-size: 0.8em;
letter-spacing: 1px;
}
._center_txt{
    text-align: center;
}

.vip_hr{
    background-color: #e0e3ea;
}
.vip_hr_separator{
    background-color: #fff;
    padding: 10px 0;
}
.vip_hr_separator_mid{
    background-color: #fff;
    padding: 5px 0;
}
._rel_p{
    position: absolute;
}
.dotted_sep{
border-top: 2px dotted #cccccc;
    filter: alpha(opacity = 100);
    opacity: 1;
    width: 5%;
    max-width: 100%;
    margin: auto;
    position: relative;
}

._space_u{
    padding-top: 1em;
}




.h2_blog_vip{
       
font-weight: 400;
color: #515c72 ;
font-size: 1.2em;
letter-spacing: 0.7px;
text-align: center;
padding: 30px;
    
}
.underline_text {
    display: inline-block;
    border-bottom: 2px solid #ccd1da;
    padding-bottom: 4px;
}


.content-btm-container {
    background-color: white;
}

 .fl-post-image {
      background-size: 300px 100px, cover !important;
}

.p_opp{
    color:#475d77;
    font-size: 1.1em;
    font-weight: 100;
    letter-spacing: 0.5px;

}

.p_opp_strong{
    font-family: 'Suisseintl-Medium', Fallback, sans-serif;
    font-weight: 300 !important;
    color:#243345;
    font-size: 1.1em;
    letter-spacing: 0.5px;

}



.nav-links a {
font-family: "Playfair Display";
font-weight: 400;
color: #515c72 ;
}
.sub_tittles{
    
    font-weight: 300;
        color:#475d77;
        text-transform: uppercase;
        font-size: 1.1em;
}

.yarpp-related {
    display: none;
    visibility: hidden;
}

/* End Layout CSS */








.fl-node-1fsjoiqac6wv > .fl-row-content-wrap {
	background-color: #ffffff;
}
.fl-node-1fsjoiqac6wv.fl-row-default-height > .fl-row-content-wrap, .fl-node-1fsjoiqac6wv.fl-row-full-height > .fl-row-content-wrap, .fl-node-1fsjoiqac6wv.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-1fsjoiqac6wv > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-obty1fw4kuv2 {
	width: 100%;
}
@media (max-width: 700px) { .fl-module-icon {
	text-align: center;
}
 }


.fl-node-7v29s3qg40i8 .fl-icon i, .fl-node-7v29s3qg40i8 .fl-icon i:before {
	font-size: 16px;
	color: #9b9b9b;
}
.fl-node-7v29s3qg40i8 .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-7v29s3qg40i8.fl-module-icon {
	text-align: left;
}
.fl-node-7v29s3qg40i8 .fl-icon i:hover, .fl-node-7v29s3qg40i8 .fl-icon i:hover:before, .fl-node-7v29s3qg40i8 .fl-icon a:hover i, .fl-node-7v29s3qg40i8 .fl-icon a:hover i:before {
	color: #7f7f7f;
}
@media(max-width: 1200px) {
	.fl-node-7v29s3qg40i8 .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-7v29s3qg40i8 .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 700px) {
	.fl-node-7v29s3qg40i8 .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-7v29s3qg40i8 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:5px;
}



.fl-node-xr2gyj4qd9bu .fl-icon i, .fl-node-xr2gyj4qd9bu .fl-icon i:before {
	font-size: 16px;
	color: #9b9b9b;
}
.fl-node-xr2gyj4qd9bu .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-xr2gyj4qd9bu.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-xr2gyj4qd9bu .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-xr2gyj4qd9bu .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 700px) {
	.fl-node-xr2gyj4qd9bu .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-xr2gyj4qd9bu > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:3px;
}



.fl-node-kt1xn2i5qymo .fl-icon i, .fl-node-kt1xn2i5qymo .fl-icon i:before {
	font-size: 16px;
	color: #9b9b9b;
}
.fl-node-kt1xn2i5qymo .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-kt1xn2i5qymo.fl-module-icon {
	text-align: left;
}
.fl-node-kt1xn2i5qymo .fl-icon i:hover, .fl-node-kt1xn2i5qymo .fl-icon i:hover:before, .fl-node-kt1xn2i5qymo .fl-icon a:hover i, .fl-node-kt1xn2i5qymo .fl-icon a:hover i:before {
	color: #7f7f7f;
}
@media(max-width: 1200px) {
	.fl-node-kt1xn2i5qymo .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-kt1xn2i5qymo .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 700px) {
	.fl-node-kt1xn2i5qymo .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-kt1xn2i5qymo > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:5px;
}



.fl-node-91lyjrbvh7iu .fl-icon i, .fl-node-91lyjrbvh7iu .fl-icon i:before {
	font-size: 16px;
	color: #9b9b9b;
}
.fl-node-91lyjrbvh7iu .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-91lyjrbvh7iu.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-91lyjrbvh7iu .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-91lyjrbvh7iu .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 700px) {
	.fl-node-91lyjrbvh7iu .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-91lyjrbvh7iu > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:3px;
}
 .fl-node-lx7r89ompuka > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}

/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.monat_logo_footer {
    width: clamp(20em, 35vw, 45em);
    padding: 3em 0px 1.5em 0px;
}

 /* -Pagination */
.sbi-owl-dots .sbi-owl-dot span{
    opacity: 1;
    content: "";
    border-radius: 8px;
    display: inline-block;
    width: 5px !important;
    height: 5px !important;
    background-color: #122947;
    vertical-align: middle;
    transition: all 200ms Cubic-bezier(0.3, 0, 0.3, 1);  
}

.sbi-owl-dots .sbi-owl-dot.active span{
    border: 1px solid #122947;
    background-color: transparent;
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px;
} 
 /* Pagination- */


/* -Instagram slider */
#sb_instagram .sbi_link_area {
    z-index: 1000 !important;
}

#sbi_lightbox .sbi-owl-dots {
    position: absolute;
    top: auto; 
    bottom: 15px;
    transform: translateX(-50%);
}

.sbi-owl-dots .sbi-owl-dot span {
    display: block;
    width: 0.5em !important;
    height: 0.5em !important;
    margin: 3px 4px;
}

.sbi_lightboxOverlay {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.sbi_lb-outerContainer{
    width: max(20vw, 250px) !important;
}

.sbi_lb-outerContainer,
.sbi_lb-image{
    height: max-content !important;
}

.sbi_lb-image{
    width: 100% !important;
    object-fit: contain;
}

.sbi_lightbox{
    height: 100vh;
    margin-top: -50px;
    display: flex;
    align-items: center;
}
/* -Instagram slider */


.maxW_footer
.ig_feed{
    max-width: 1500px;
}

#footerMonat{
    background-color: #000;
}



#footerMonat hr{
    display: block;
    width: 100%;
    border-color: #fff;
    border-width: 0.5px;
}

#logosFooter #bunny{
    width: min(60%, 18rem);
    max-width: 18rem;
    margin-right: 2rem;
}

#logosFooter #bunny img{
    width: 100%;
    height: 100%;
}

#logosFooter #inc{
    width: min(21%, 8rem);
    margin-right: 2rem;
}

#dsa { 
    width: min(30%, 9rem); 
    margin-right: 2rem; 
    
}

.f_col_2 ul{
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
}

#footerMonat p,
#footerMonat a{
    color: #fff !important;
}

#footerMonat p:not(.monatSlogan):not(.footer_subtitle), #footerMonat a {
    font-size: 1.5rem;
    font-family: 'Post_Grotesk_light', Fallback, sans-serif;
    letter-spacing: 0.01em;
}

.footer_subtitle{
    font-size: 2rem;
    font-family: 'Post_Grotesk_Bold';
    line-height: 1.1em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}


#footerMonat > div:last-child {
	border-top: 0.5px solid #fff;
	margin-top: 4em;
}

#footerMonat #txt_copyright{
    font-size: 1rem;
}

#footerMonat .social_row {
    padding: 1.5em 0 1.5em;
}

#footerMonat .social_icons {
	width: 1.6em;
	margin-left: 1.1em;
} 

#support_row{
    display: grid;
    column-gap: 5%;
    grid-template-columns: repeat(3, 1fr);
}

#support_row.second p{
    margin-bottom: 5px;
}


@media screen and (max-width:950px) {
    #footerMonat > .col_80,
    .ig_feed{
        width: 90%;
    }
}


@media screen and (max-width:700px) {
    
    .sbi_lightbox{
        height: auto;
        margin-top: 0px;
        align-items: flex-start;
        width: 80%;
        left: 10% !important;
    }
    
    .sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer{
        height: auto;
        padding: 25px 20px 30px;
    }

    #footerMonat .monatSlogan{
        padding-bottom: 1.5rem;
        padding-top: 3.5rem;
    }
    
    .f_col_1{
        order: 1;
    }

    .f_col_2{
        margin-top: 0.5rem !important;
    }

    #support_row{
        grid-template-columns: repeat(2, 1fr);
    }

    #logosFooter #bunny,
    #logosFooter #inc{
        width: auto;
        height: 4rem;
    }

    .footer_subtitle{
        margin-top: 1.5rem;
        font-size: 2.5rem;
    }
    
    #footerMonat > div:last-child {
    	padding-bottom: 1rem;
    }

}
       
/* End Layout CSS */


