/**
 * 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;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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




.fl-node-zx5bpmv34g8o {
	width: 100%;
}
 .fl-node-fuozip94cg6d > .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 */

/* End Layout CSS */

