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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 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-5tb06sd29mj4 > .fl-row-content-wrap {
	background-color: #ffffff;
}
.fl-node-5tb06sd29mj4.fl-row-default-height > .fl-row-content-wrap, .fl-node-5tb06sd29mj4.fl-row-full-height > .fl-row-content-wrap, .fl-node-5tb06sd29mj4.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-5tb06sd29mj4 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-5tb06sd29mj4 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




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


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



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



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



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

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

.sup_monat{
      font-size: 0.4em;
    top: 0.5em;
    vertical-align: top;
}


.aioseo-author-bio-compact{
    display: none !important;
}
.primary_color{
    color:#000 !important;
}
#pdf-container{
    background-color: #fff !important;
}


/*launch Buttons */

.shop_now_btn_cleanser{
   
}
.coming_soon_btn_cleanser{
       display: none !important;
}










/*monations 2025*/
.shop_now_btn_barrier{
  
}
.coming_soon_btn_barrier{
      display: none !important;
}

.shop_now_btn_bond{
   
}
.coming_soon_btn_bond{
     display: none !important;
}

.shop_now_btn_supplement{
    display: none !important;
}
.coming_soon_btn_supplement{
    
}
/*monations 2025*/





.shop_now_btn_micellar{
   
}


.coming_soon_btn_micellar{
     display: none !important;
}




.shop_now_btn{
        display: none !important;
   
}


.shop_sale_btn{
    display: none !important;

}


.coming_soon_btn{
     display: none !important;
}





.shop_now_btn_palette{
     display: none !important;
   
}

.coming_soon_btn_palette{
    
}

.shop_now_btn_serum{
     display: none !important;
   
}

.coming_soon_btn_serum{
   
}


.shop_now_btn_treatment{
     display: none !important;
   
}

.coming_soon_btn_treatment{
    
}

.shop_now_btn_plumping{
     display: none !important;
   
}

.coming_soon_btn_plumping{
    
}


.shop_now_btn_highlighter{
     display: none !important;
   
}

.coming_soon_btn_highlighter{
     
}


.shop_now_btn_eye_smooth{
     display: none !important;
   
}

.coming_soon_btn_eye_smooth{
     display: none !important;
}


/*launch Buttons */




 /*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 **************/

/************ Passport 2026 fonts **************/
@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');
}




/*Gotham-Book */

.Gotham-Book{
   font-family: 'Gotham-Book';
}
/*ChicAvenue-Regular*/

.ChicAvenue-Regular{
   font-family: 'ChicAvenue-Regular';
}

/*Gotham-Medium*/

.Gotham-Medium{
   font-family: 'Gotham-Medium';
}

/*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-ExtraBold.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 */
.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;
}

.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;
}


#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 */








.fl-node-8lu0vx4g5it7.fl-row-default-height > .fl-row-content-wrap, .fl-node-8lu0vx4g5it7.fl-row-full-height > .fl-row-content-wrap, .fl-node-8lu0vx4g5it7.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-8lu0vx4g5it7 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-8lu0vx4g5it7 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-jmyghw7lzerd {
	width: 100%;
}
 .fl-node-klpj4y6dxir3 > .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 */
.stylistProgram_btn {
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding-left: 1.5rem;
    transition: all .2s ease-in-out;
    border-right: 1px solid #737070;
    border-left: 1px solid #737070;
    font-family: 'Post_Grotesk_Medium';
}
.stylistProgram_btn:hover{
    background-color: #fff;
    color: #000 !important;
    border-bottom: 1px solid #f4f3f2;
}

.stylistProgram_btn:after {
    background: #fff !important;
    color: #000 !important;
    font-size: .8rem !important; 
    margin-left: 1rem;
    transition: all .2s ease-in-out;
}
.stylistProgram_btn:hover:after{
    background-color: #000 !important;
    color: #fff !important;
}


#topBar_left,
#topBar_right,
#topBar_mobile{
    height: 30px;
}
#topBar_mobile {
    border-bottom: 1px solid #737070;
    padding-left: 5%;
}
.w_separate{
    display: block;
    height: 1rem;
    width: 1px;
    background-color: #fff;
    margin: 0 1.5rem;
}









#mainLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100% !important;
    min-height: 100% !important;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    visibility: visible;
}

#mainLoader img {
    width: 6rem;
    height: auto;
}

/* Cuando el loader se oculta */
body.loaded #mainLoader {
    opacity: 0;
    visibility: hidden;
}





.tiktokLink{ text-transform: none !important; }
 @media (max-width: 700px) {
	 .tiktokLink{ -right: 1rem; }
 }
 
 
/* #wpadminbar */
#wpadminbar {
	position: absolute;
}

a {
	cursor: pointer;
}

/* #wpadminbar */

#whiteHeader__nav .newNotification>a:first-child,
.tagNew {
	position: relative;
}

.tagNew:after {
	content: "NEW";
	background: #000;
	color: #fff;
	padding: 0.7em 0.5em 0.4em;
	font-size: .6em;
	line-height: .8;
	font-family: 'Post_Grotesk_Bold';
	letter-spacing: 0.1em;
	display: inline-block;
	transform: translateY(-7px);
	margin-left: 5px;
}

#whiteHeader__nav .newNotification>a:first-child {
	display: flex;
	align-items: center;
}

#whiteHeader__nav .newNotification>a:first-child:before {
	content: "";
	background-color: #dcd7d6;
	height: 6px;
	width: 6px;
	border-radius: 5px;
	display: block;
	order: 1;
	margin-top: -15px;
	margin-left: 5px;
}

#close_promo {
    position: absolute;
    right: 5vw;
    width: 1.8em;
    cursor: pointer;
}

#close_promo:hover{
    opacity: 0.6;
}

#promoHeadBar{
    background: #f4f3f2;
    overflow: hidden;
    transition: all .25s ease-in-out;
    position: relative;
    max-height: 4rem;
}
#promoHeadBar a{
    width: 100%;
    height: 100%;
    padding: 8px 35px;
}
#promoHeadBar p{
       margin-bottom: 0;
    letter-spacing: 0.03em;
    font-size: clamp(0.8em, 2vw, 0.97em);
    font-family: 'Post_Grotesk_Medium';
    color: #000 !important;
    text-align: center;
}

#promoHeadBar.disable{ max-height: 0; }


#whiteHeader__ham-box,
#currentLocation {
	cursor: pointer;
}


/* -Location Modal */
#location_container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
    height: 100% !important;
    min-height: 100% !important;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s ease-in-out;
	z-index: 102;
}

#location_container.active {
	visibility: visible;
	opacity: 1;
}

#location_modal {
	width: 55%;
	background-color: #fff;
    max-height: 90vh;
    overflow-y: auto;
}

#module_location_title {
	padding: 2rem 0.8rem 1.8rem;
	border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff;
}

#location_title {
	font-size: 1.7rem;
	letter-spacing: 0.03em !important;
	margin: 0;
	padding: 0;
	font-family: 'Post_Grotesk_Medium'
}



#modalRegions {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
}
#modalRegions li {
    background-color: #f6f6f5;
    border: 1px solid #f3f3f3;
    margin: 0 2rem 2rem;
    position: relative;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}
#modalRegions li:first-child {
    margin-top: 2rem;
}

#modalRegions li > p{
    margin-bottom: 0;
    position: relative;
    text-align: center;
    color: #878787;
    font-family: 'Post_Grotesk_Medium', Fallback, sans-serif;
    padding: 1.8rem;
}

#modalRegions li > p:after {
    content: url(https://monatglobal.com/wp-content/uploads/2022/08/dropdown-arrow.svg);
    width: 1.1rem;
    float: right;
    opacity: 0.6;
    transition: .3s all;
    transform: rotate(0deg);
    position: absolute;
    right:2.5rem;
}
#modalRegions li.open{
    background-color: #fff;
}
#modalRegions li.open > p {
    color: #000;
    border-bottom: 1px solid #f3f3f3;
}
#modalRegions li.open > p:after {
    transform: rotate(-180deg);
}
#modalRegions li.open .box_flags {
    max-height: 55rem;
    overflow-y: auto;
    margin: 1.5rem auto;
}

.box_flags {
	width: 95%;
	margin: auto;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	
	height: auto !important;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease-in-out, margin-top .3s ease-in-out;
}

.module_flag.currentFlag {
	background-color: #FBFBFB;
	border: 1px solid #f3f3f3;
}

	
	
	

.module_flag {
	height: clamp(2em, 4.2vw, 5.5em);
	border: 1px solid #fff;
	box-sizing: content-box;
	border-radius: 2px;
}

.module_flag p {
	font-size: 0.8em;
	margin-bottom: 0;
  font-family: 'Post_Grotesk_Bold';
  text-transform: uppercase;
}
.module_flag p span {
  font-family: 'Post_Grotesk_Medium';
}

.module_flag:hover {
	background-color: #FBFBFB;
	border: 1px solid #f3f3f3;
}

.module_flag img,
#currentLocation {
	height: 13px !important;
	width: 26px !important;
	margin: 0em 1.5rem 0 1rem;
}

@media (max-width : 950px) {
	.box_flags {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width : 700px) {
    /*.module_flag p {*/
    /*	font-size: 0.65em;*/
    /*}   */
    
	.box_flags {
		gap: 5px;
		height: 65vh;
		overflow: auto;
		grid-template-columns: repeat(1, 1fr);
	}
}

/* Location Modal- */


#overlayH {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	display: block;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s ease-in-out;
	z-index: 99;
}

#overlayH.active {
	visibility: visible;
	opacity: 1;
}


/* -Header */
#headerMonat {
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
}

/*#whiteHeader>div,*/
/*#blueHeader>div {*/
/*	height: 100%;*/
/*}*/


#blueHeader{
	background-color: #000;
	position: relative;
	z-index: 1;
 }

#blueHeader a,
#blueHeader p {
	margin: 0;
	font-size: 1.1rem;
	letter-spacing: 0.12rem;
	color: #fff;
}

#whiteHeader {
	height: 70px;
	position: relative;
	border-bottom: 1px solid #dfdfe1;
	background-color: #fff;
	z-index: 1;
}

#whiteHeader__logo-box {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

#whiteHeader__logo-box img {
	width: clamp(11em, 13vw, 16em);
	z-index: 10;
    position: relative;
}

#headerMonat .login_icon {
	width: 1.3rem;
	margin-right: 1.3rem;
}


.whiteHeader__nav-list,
#whiteHeader__ham-box,
#whiteHeader__nav {
	z-index: 1;
}

#whiteHeader ul {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
	margin-bottom: 0;
}

/* Header- */


#whiteHeader p,
#whiteHeader a {
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	font-family: 'Post_Grotesk_Medium';
	margin: 0;
	color: #000;
	display: inline-block;
}


.extraRow__finder>button p:last-child:after,
.whiteHeader__nav-list>li>p:after,
.whiteHeader__box-content .txt_underbanner:after {
	content: url("https://monatglobal.com/wp-content/uploads/2022/08/dropdown-arrow.svg");
	width: 0.7rem;
	float: right;
	opacity: 0.6;
	transition: .3s all;
	transform: rotate(-180deg);
	margin-top: -2px;
	margin-left: 5px;
}

.whiteHeader__box-content .txt_underbanner:after {
	transform: rotate(-90deg);
}

.whiteHeader__nav-list>li:hover>p:after {
	transform: rotate(0deg);
}

.whiteHeader__box-content .txt_underbanner:after {
	width: 0;
}

.whiteHeader__box-content .navBanner:hover .txt_underbanner:after {
	width: 0.7rem;
}


#whiteHeader__submenu-prod {
	background-color: #f7f7f6;
	top: 0px;
	right: 0;
	width: 100%;
	position: absolute;
	height: 0;
	overflow-y: hidden;
	z-index: -1;
}

.whiteHeader__box-content {
	background-color: #fff;
	position: absolute;
	height: 0;
	overflow-y: hidden;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
}

.whiteHeader__box-content ul {
	margin-right: 5%;
	width: 45%;
}

#whiteHeader .whiteHeader__box-content ul a {
	padding: 0.5rem 1rem 0.15rem 1rem;
  margin-bottom: 0.2rem;
	transition: background .3s ease-in-out;
	display: inline-block;
	border-radius: 3px;
	font-size: 1.55rem;
	font-family: 'Post_Grotesk_Book';
	letter-spacing: 0.02em;
}

.whiteHeader__box-content-seeAll{
  font-family: 'Post_Grotesk_Medium' !important;
  background-color: #f4f3f2;
}

.whiteHeader__box-content .navBanner>div {
	overflow: hidden;
}

.whiteHeader__box-content .imgCategory {
	width: 100%;
	object-fit: cover;
	height: min(23vw, 30rem);
}

.box_img_h {
	width: 100%;
	height: min(23vw, 30rem);
}

.navBanner .imgLabel {
	display: inline-block;
	padding: 5px 10px 3px;
	background-color: #000;
	font-family: 'Post_Grotesk_Bold';
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: 2px;
	margin-top: 7px;
	margin-left: 7px;
	z-index: 1;
}

.box_img_h img {
	object-fit: cover;
	min-height: 100%;
	min-width: 100%;
}


.box_img_h>div {
	height: 100%;
}

.box_img_h>div:last-child {
	overflow: hidden;
}

.box_img_h *,
.imgCategory {
	transition: transform .2s ease-in-out;
}

.whiteHeader__box-content .navBanner:hover>.box_img_h div:first-child,
.whiteHeader__box-content .navBanner:hover img,
.whiteHeader__box-content .navBanner:hover .imgCategory {
	transform: scale(1.01);
}

#hairTab .box_img_h>div:first-child {
	background-image: url('https://monatglobal.com/wp-content/uploads/2025/08/Bond-IQ-System_ecomm-min.png');
	background-size: 90%;
	background-color: #F8F8F8;
}

#rewardsTab .box_img_h>div:first-child {
	background-image: url('https://monatglobal.com/wp-content/uploads/2024/12/electric-bonus-now-avialable_new.jpg');
}

#skinTab .box_img_h>div:first-child {
	background-image: url('https://monatglobal.com/wp-content/uploads/2023/05/hydrate-refresh-ecomm.png');
	background-size: 90%;
	background-color: #F8F8F8;
}


#wellnessTab .box_img_h>div:first-child {
	background-image: url('https://monatglobal.com/wp-content/uploads/2025/08/MONAT-THE-IR-SUPPLEMENT_ecomm-min.png');
	background-size: 90%;
	background-color: #F8F8F8;
}

#specialtiesTab .box_img_h>div:first-child {
	background-image: url('https://monatglobal.com/wp-content/uploads/2021/07/MONAT-JUNIOR-GENTLE-DETANGLER.png');
	background-size: 70%;
	background-color: #F8F8F8;
}


#whiteHeader__ham-extra-content .box_img_h>div:first-child {
	background-image: url('https://monatglobal.com/wp-content/uploads/2024/12/electric-bonus-now-avialable_new.jpg');
}

.whiteHeader__box-content .txt_underbanner {
	text-align: right;
	font-size: 1.2rem;
	letter-spacing: 0.08em;
	display: block !important;
}

/*.hairTab { top: 49px; }*/

#whiteHeader__ham-icon {
	width: 4em;
	margin-left: 0.5rem;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	user-select: none;
}

#whiteHeader__ham-icon .line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: #000;
	stroke-width: 3.5;
}

#whiteHeader__ham-icon .top,
#whiteHeader__ham-icon .middle,
#whiteHeader__ham-icon .bottom {
	transition: transform 400ms;
}

#whiteHeader__ham-icon .top {
	transform-origin: 34% 40%;
}

#whiteHeader__ham-icon .middle {
	transform-origin: 50%;
}

#whiteHeader__ham-icon .bottom {
	transform-origin: 29% 58%;
}

#whiteHeader__ham-icon.active .top {
	transform: translateY(8px);
}

#whiteHeader__ham-icon.active .middle {
	opacity: 0;
}

#whiteHeader__ham-icon.active .bottom {
	transform: translateY(-8px);
}



.extraRow__finder {
	padding: 20px;
	background-color: #fbfbfb;
	border-top: 1px solid #dfdfe1;
	border-bottom: 1px solid #dfdfe1;
	display: flex !important;
}

.extraRow__finder>img {
	width: 10em;
	margin-right: 30px;
}

.extraRow__finder>button {
	background-color: #000;
	padding: 10px 20px;
	border-radius: 0px;
	margin-left: 30px;
	border: none;
	pointer-events: none;
}

.extraRow__finder>button>p {
	font-size: 1.2rem;
	letter-spacing: 1px;
	text-wrap: nowrap;
}

.extraRow__finder>button:after {
	content: url("https://monatglobal.com/wp-content/uploads/2024/04/white-arrow.svg");
	transform: rotate(0deg);
	margin-top: 1px;
	opacity: 0;
}

.extraRow__finder:hover button:after {
	opacity: 1;
}

.extraRow__finder>button img {
	width: 2rem;
	margin-right: 10px;
}

.extraRow__finder>button>span {
	display: block;
	height: 25px;
	width: 2px;
	background: #ffffff;
	margin: 0 15px;
}

.extraRow__finder .surveyor_book_pro_subtitle {
	font-size: clamp(1.7em, 2.5vw, 2.6em) !important;
	display: block !important;
}


@media (min-width : 950px) {
	#whiteHeader__nav {
		display: flex;
		justify-content: space-between;
	}

	.whiteHeader__nav-list {
		display: flex;
		gap: 2rem;
	}

	.whiteHeader__nav-list>li {
		height: 100%;
		display: flex;
		align-items: center;
		cursor: pointer;
		margin-top: 1px;
	}

	.whiteHeader__nav-list>li:not(.skip) .whiteHeader__box-content,
	#whiteHeader__submenu-prod,
	#whiteHeader__ham-extra-content {
		top: 70px;
	}

	#whiteHeader__submenu-prod .whiteHeader__box-content {
		top: 52px;
	}


	#whiteHeader__submenu-prod>li {
		min-width: 13rem;
		display: flex;
		justify-content: center;
		padding: 1.7rem 2rem 1.2rem;
		border-bottom: 3px solid transparent;
	}

	#whiteHeader__submenu-prod>li:hover {
		border-bottom: 3px solid #000 !important;
	}

	.whiteHeader__box-content ul li:not(.whiteHeader__box-content-heading) a:hover {
		background-color: #f4f3f2;
	}

	.whiteHeader__box-content ul li:not(.whiteHeader__box-content-heading) a:hover {
		background-color: #f4f3f2;
	}

	.whiteHeader__box-content>* {
		opacity: 0;
	}

	.whiteHeader__box-content__body {
		padding: 4rem 0 3rem;
	}

	.whiteHeader__box-content-heading p {
		margin-bottom: 10px !important;
	}

	.hide_d {
		display: none !important;
	}

	#whiteHeader__ham-icon {
		pointer-events: none;
	}
}

@media (max-width : 950px) {
	.whiteHeader__nav-list {
		padding-left: 2rem !important;
		padding-right: 2rem !important;
		transition: transform .3s ease-in-out;
	}

	.whiteHeader__nav-list.activeSub {
		transform: translateX(-100%);
	}

	.extraRow__finder {
		border-top: none;
		padding: 30px 0;
		flex-wrap: wrap;
	}

	.extraRow__finder>div {
		width: 63%;
	}

	.extraRow__finder>img {
		width: 35%;
		margin-left: 2%;
		margin-right: 0;
		order: 1;
	}

	.extraRow__finder>button {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
		order: 2;
		justify-content: space-evenly;
	}

	.col_100_t {
		width: 100% !important;
	}

	.hide_t {
		display: none !important;
	}

	/*#blueHeader>div {*/
	/*	justify-content: flex-end;*/
	/*}*/

	#whiteHeader__ham-icon.active .top {
		transform: rotate(45deg);
	}

	#whiteHeader__ham-icon.active .bottom {
		transform: rotate(-45deg);
	}

	#whiteHeader__nav {
		position: absolute;
		width: 50vw;
		right: 0;
		top: 70px;
		background-color: #fff;
		max-height: 0;
		flex-direction: column;
		justify-content: flex-start !important;
		overflow-y: auto;
		transition: all .4s ease-in-out;
	}

	#whiteHeader__nav.active {
		max-height: 100vh;
		padding-bottom: 9.5rem;
	}

	#whiteHeader__nav li>p,
	#whiteHeader__nav li>a {
		padding: 1.9rem 0 !important;
		width: 100%;
		border-bottom: 1px solid #dfdfe1;
		position: relative;
	}

  #whiteHeader__nav .whiteHeader__box-content-seeAll{
      font-family: 'Post_Grotesk_Book' !important;
      width: fit-content;
      margin-left: auto;
      display: block !important;
      padding: 0.8rem 1.5rem 0.4rem 1.5rem !important;
      border-bottom: none;
      margin-top: 1.5rem;
  }

	.whiteHeader__nav-list>li>p.open:after {
		transform: rotate(-180deg);
	}

	.whiteHeader__nav-list:last-child>li:last-child {
		padding-bottom: 3em;
	}

	#whiteHeader__submenu-prod li>a {
		font-family: 'Post_Grotesk_Book' !important;
	}

	.whiteHeader__acordion-mob {
		height: auto !important;
		max-height: 0;
		top: 0 !important;
		overflow: hidden;
		position: static !important;
		transition: max-height .3s ease-in-out;
	}

	.whiteHeader__acordion-mob.active {
		max-height: 200rem;
		overflow-y: auto;
	}

	.whiteHeader__box-content__body {
		flex-direction: column-reverse;
	}

	.whiteHeader__box-content ul,
	.whiteHeader__box-content__body,
	.whiteHeader__box-content .col_60,
	.whiteHeader__box-content .col_40 {
		width: 100% !important;
	}

	.subMenu_head {
		position: relative;
		padding: 1.5rem 0;
	}

	.subMenu_head>span {
		background-color: #f9f9fb;
		border: 1px solid #d5dae09c;
		border-radius: 2rem;
		cursor: pointer;
		width: 2em;
	}

	.subMenu_head>div {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
	}

	.subMenu_head>div>p {
		margin-bottom: 0;
		font-size: 1.4rem;
		font-family: "SuisseIntl-Medium";
	}


	#whiteHeader__submenu-prod {
		display: block;
		background-color: #fff;
		overflow-x: hidden;
	}

	#whiteHeader__submenu-prod .whiteHeader__box-content {
		padding-left: 2rem;
		padding-right: 2rem;
		height: max-content !important;
		transform: translateX(100%);
		transition: transform .3s ease-in-out;
		display: none;
        padding-bottom: 9.5rem;
	}

	.whiteHeader__nav-list>li>p:after,
	#whiteHeader__submenu-prod > li > a:after{
		 content: url("https://monatglobal.com/wp-content/uploads/2022/08/dropdown-arrow.svg");
		 width:  1.1rem;
		 float: right;
		 opacity: 0.6;
		 transition: .3s all;
		 transform: rotate(0deg);
		 position: absolute;
		 right: 0;
	}
	#whiteHeader__submenu-prod > li > a:after{ transform: rotate(-90deg); }

	.module_flag {
		padding: 0.5em 0em;
	}
}

@media (max-width: 700px) {

	.wpml-ls-legacy-list-horizontal {
        padding: 10px 0px 10px 10px !important;
	}

	.wpml-ls-legacy-list-horizontal a {
		padding: 5px 0px 6px !important;
	}

	#whiteHeader__nav {
		width: 100%;
	}

	.box_img_h,
	.imgCategory {
		height: 25vh !important;
	}

	#location_modal {
		width: 85%;
		max-height: 80vh;
		background-color: #fff;
		margin-top: 0;
	}

	.module_flag {
		padding: 1em 0.5em;
	}
}


/* - search bar */

#searchBarHeader {
	margin-left: calc(3vw - 1em);
	border: 1px solid #D8D8E0;
	border-radius: 3em;
	padding: 0 1em;
	height: min-content;
	align-self: center;
	z-index: 15;
	background-color: #f4f4f7;
	transition: opacity .1s ease-in-out;
}

#searchBarHeader.focus {
	border: 1px solid #2e2a4a;
}

#searchBarHeader button {
	background: none;
	padding: 0;
	border: none;
}

#searchBarHeader input {
	border: none;
	background-color: #fff0;
	padding: 10px 10px 7px;
	width: max(18vw, 15em);
	font-size: 0.95em;
	transition: width .3s ease-in-out;
}

#searchBarHeader input::placeholder {
	font-family: "SuisseIntl-Medium";
	font-size: 1em;
	letter-spacing: 0.05em;
}


#autocomplete-list {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 55px;
	left: 0;
	overflow-y: scroll;
	height: min-content;
	max-height: 20em;
	right: 0;
	background-color: white;

	width: max(25vw, 21em);
	margin-left: calc(3vw - 1em);
}

#autocomplete-list div {
	padding: 10px;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid #d5dae09c;
	color: #2e2a4a;
	letter-spacing: 0.03em;
	font-size: 0.9em;
}

/*when hovering an item:*/
#autocomplete-list div:hover {
	background-color: #f4f4f7;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
	background-color: #f9f9fb !important;
} 
/* End Layout CSS */

/* Sticky */
.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	position: fixed;
	width: 100%;
	z-index: 100;
}

/* Sticky - fix flyout menu  */
.fl-theme-builder-flyout-menu-push-left .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	left: auto !important;
	transition: left 0.2s !important;
}
.fl-theme-builder-flyout-menu-push-right .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	right: auto !important;
	transition: right 0.2s !important;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky .fl-menu .fl-menu-mobile-opacity {
	height: 100vh;
	width: 100vw;
}
.fl-builder-content[data-type="header"]:not([data-overlay="1"]).fl-theme-builder-header-sticky .fl-menu-mobile-flyout {
	top: 0px;
}
.fl-theme-builder-flyout-menu-active body {
	margin-left: 0px !important;
	margin-right: 0px !important;
}
.fl-theme-builder-has-flyout-menu, .fl-theme-builder-has-flyout-menu body {
	overflow-x: hidden;
}
.fl-theme-builder-flyout-menu-push-right {
	right: 0px;
	transition: right 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-push-left {
	left: 0px;
	transition: left 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-right {
	position: relative;
	right: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-left {
	position: relative;
	left: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-builder-content[data-type="header"] .fl-menu-disable-transition {
	transition: none;
}

/* Shrink */
.fl-builder-content[data-shrink="1"] .fl-row-content-wrap,
.fl-builder-content[data-shrink="1"] .fl-col-content,
.fl-builder-content[data-shrink="1"] .fl-module-content,
.fl-builder-content[data-shrink="1"] img {
	-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
	-moz-transition: all 0.4s ease-in-out, background-position 1ms;
	transition: all 0.4s ease-in-out, background-position 1ms;
}
.fl-builder-content[data-shrink="1"] img {
	width: auto;
}
.fl-builder-content[data-shrink="1"] img.fl-photo-img {
	width: auto;
	height: auto;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-row-content-wrap {
	margin-bottom: 0;
	margin-top: 0;
}
.fl-theme-builder-header-shrink-row-bottom.fl-row-content-wrap {
	padding-bottom: 5px;
}
.fl-theme-builder-header-shrink-row-top.fl-row-content-wrap {
	padding-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-col-content {
	margin-bottom: 0;
	margin-top: 0;
	padding-bottom: 0;
	padding-top: 0;
}
.fl-theme-builder-header-shrink-module-bottom.fl-module-content,
.fl-theme-builder-header-shrink-module-bottom.fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-bottom: 5px;
}
.fl-theme-builder-header-shrink-module-top.fl-module-content,
.fl-theme-builder-header-shrink-module-bottom.fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink img {
	-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
	-moz-transition: all 0.4s ease-in-out, background-position 1ms;
	transition: all 0.4s ease-in-out, background-position 1ms;
}

/* Overlay */
.fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-sticky):not(.fl-builder-content-editing) {
	position: absolute;
	width: 100%;
	z-index: 100;
}
.fl-builder-edit body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"] {
	display: none;
}
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-row-content-wrap,
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-col-content,
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-module-box {
	background: transparent;
}







.fl-node-2o3ecmtxa1pk.fl-row-default-height > .fl-row-content-wrap, .fl-node-2o3ecmtxa1pk.fl-row-full-height > .fl-row-content-wrap, .fl-node-2o3ecmtxa1pk.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-2o3ecmtxa1pk > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-2o3ecmtxa1pk > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-iv86wkjbg7lf.fl-row-default-height > .fl-row-content-wrap, .fl-node-iv86wkjbg7lf.fl-row-full-height > .fl-row-content-wrap, .fl-node-iv86wkjbg7lf.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-iv86wkjbg7lf > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-iv86wkjbg7lf > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-97l03zq61dt8.fl-row-default-height > .fl-row-content-wrap, .fl-node-97l03zq61dt8.fl-row-full-height > .fl-row-content-wrap, .fl-node-97l03zq61dt8.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
.fl-node-97l03zq61dt8 > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-97l03zq61dt8 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-97l03zq61dt8 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-z2wdget3faoy.fl-row-default-height > .fl-row-content-wrap, .fl-node-z2wdget3faoy.fl-row-full-height > .fl-row-content-wrap, .fl-node-z2wdget3faoy.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-z2wdget3faoy > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-z2wdget3faoy > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




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




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




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




.fl-node-jzik81an2cyu {
	width: 100%;
}
/* Generic Styles */
.fl-module-post-grid .fl-sep {
	display: inline-block;
	margin: 0 2px;
}
div:where(.fl-module-post-grid :not(.fl-builder-pagination)) > ul {
	all: unset;
	list-style: none;
}

/* Post Columns */
body.rtl .fl-post-column {
	float: right;
}
.fl-post-column {
	float: left;
}
.fl-post-column .fl-post-grid-post {
	visibility: visible;
}

/* Post Grid */
.fl-post-grid {
	margin: 0 auto;
	position: relative;
}
.fl-post-grid:before,
.fl-post-grid:after {
	display: table;
	content: " ";
}
.fl-post-grid:after {
	clear: both;
}
.fl-post-grid-post {
	background: #fff;
	border: 1px solid #e6e6e6;
	visibility: hidden;
}
.fl-post-grid-post,
.fl-post-feed-post {
	overflow: hidden;
}

.fl-post-grid-image {
	position: relative;
}
.fl-post-grid-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-grid-text {
	padding: 20px;
}
.fl-post-grid-title {
	padding-bottom: 7px;
}
body .fl-post-grid-text,
body .fl-post-grid-content p {
	font-size: 14px;
	line-height: 22px;
}
body .fl-post-grid-text > *:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-text a {
	text-decoration: none;
}
body .fl-post-grid-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
body .fl-post-grid-meta {
	font-size: 14px;
	padding-bottom: 10px;
}
.fl-post-feed-comments .fa {
	vertical-align: text-top;
}
.fl-post-grid-more {
	margin-top: 10px;
	display: inline-block;
}
.fl-post-grid #infscr-loading {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

/* Post Gallery */
.fl-post-gallery-post {
	overflow: hidden;
	position: relative;
	visibility: hidden;
}
.fl-post-gallery-link {
	display: block;
	height: 100%;
}
.fl-post-gallery-img {
	position: relative;
	z-index: 1;
}
.fl-post-gallery-img-horiz {
	height: 100% !important;
	max-height: 100% !important;
	max-width: none !important;
	width: auto !important;
}
.fl-post-gallery-img-vert {
	height: auto !important;
	max-height: none !important;
	max-width: 100% !important;
	width: 100% !important;
}
.fl-post-gallery-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-gallery-link:hover .fl-post-gallery-text-wrap {
	opacity: 1;
}

.fl-post-gallery-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;
}

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

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

.fl-post-gallery-text h2.fl-post-gallery-title {
	font-size: 22px;
	margin: 0 0 5px 0;
}
.fl-post-gallery #infscr-loading {
	clear: both;
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* Post Feed */
.fl-post-feed-post {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 40px;
}
.fl-post-feed-post:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-header {
	margin-bottom: 20px;
}
.fl-post-feed-header a {
	text-decoration: none;
}
body h2.fl-post-feed-title {
	margin: 0 0 10px;
	padding: 0;
	clear: none;
}
body .fl-post-feed-meta {
	font-size: 14px;
	margin-bottom: 5px;
}
.fl-post-feed-meta .fl-sep {
	margin: 0 3px;
}
.fl-post-feed-image {
	margin-bottom: 25px;
	position: relative;
}
.fl-post-feed-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image {
	float: left;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text {
	margin-left: 37%;
}
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	float: right;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-right: 37%;
}
.fl-post-feed-content a {
	text-decoration: none;
}
.fl-post-feed-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-more {
	margin-top: 15px;
	display: inline-block;
}
.fl-post-feed #infscr-loading {
	padding: 40px 0;
	text-align: center;
	width: 100%;
}
@media (max-width: 768px) { /* Post Feed */
.fl-post-feed-post.fl-post-feed-image-beside,
.fl-post-feed-post.fl-post-feed-image-beside-content,
.fl-post-feed-post.fl-post-feed-image-beside-right,
.fl-post-feed-post.fl-post-feed-image-beside-content-right {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside .fl-post-feed-image img,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image img,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image img,
.fl-post-feed-image-beside-content-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image img {
	float: none;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	margin-bottom: 20px;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text,
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
 }.fl-node-kr638a5umbjc .fl-post-feed-post {
	margin-bottom: 20px;
}
.fl-node-kr638a5umbjc .fl-post-feed-post:last-child {
	margin-bottom: 0 !important;
}
 .fl-node-kr638a5umbjc > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-jaot581lmz7y > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-e1bioqgxywjd > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-0tmvu7xw59cg > .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 */
.max_container{ max-width: 130rem; }

#taxonomy-banner {
    background-image: url(https://monatglobal.com/wp-content/uploads/2025/04/hair-and-skin-blog-banner-min.jpg);

}

.taxonomy-banner__title:before {
    background-color: #ffffff;
}

@media screen and (max-width: 700px) {

    #taxonomy-banner{
    background-image: url('https://monatglobal.com/wp-content/uploads/2025/04/blog-mobile-main-banner-min.jpg');

}
} 
/* End Layout CSS */

.fl-node-kr638a5umbjc .fl-post-grid-post {
  font-size: 14px;
}
.fl-node-kr638a5umbjc .fl-post-text {
  padding: 20px;
}
.fl-node-kr638a5umbjc .fl-post-title {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  padding: 0 0 5px;
}
.fl-node-kr638a5umbjc .fl-post-meta {
  padding: 0 0 15px;
}

