/* =========================================
   Moly Institut customizations
========================================= */

/* Couleur principale Moly */
:root {
	--primary-color: #7cbc22;
	--primary-color-rgb: 124, 187, 35;

	--primary-font: 'Nunito Sans', sans-serif;
	--secondary-font: 'Marcellus', sans-serif;

	--moly-page-bg: #ffffff;
	--moly-surface-bg: #ffffff;
	--moly-soft-bg: #f7faf4;
	--moly-article-bg: #f3f8e9;
	--moly-border-color: rgba(0, 0, 0, 0.1);
	--moly-text-color: #585656;
	--moly-heading-color: #1c1d1d;
	--moly-muted-color: #767171;
	--moly-header-bg: #ffffff;
	--moly-dark-logo: url("/img/moly-dark.png");
}

html[data-moly-theme="dark"] {
	color-scheme: dark;
	--moly-page-bg: #060806;
	--moly-surface-bg: #0d120d;
	--moly-soft-bg: #121b11;
	--moly-article-bg: #111a10;
	--moly-border-color: rgba(255, 255, 255, 0.16);
	--moly-text-color: #e9e8e2;
	--moly-heading-color: #ffffff;
	--moly-muted-color: #c8c2bb;
	--moly-header-bg: #000000;
}

@media (prefers-color-scheme: dark) {
	html:not([data-moly-theme-setting="light"]) {
		color-scheme: dark;
		--moly-page-bg: #060806;
		--moly-surface-bg: #0d120d;
		--moly-soft-bg: #121b11;
		--moly-article-bg: #111a10;
		--moly-border-color: rgba(255, 255, 255, 0.16);
		--moly-text-color: #e9e8e2;
		--moly-heading-color: #ffffff;
		--moly-muted-color: #c8c2bb;
		--moly-header-bg: #000000;
	}
}


/* ==============================
TEAM SECTION
============================== */

section.team-section {
	background: rgba(var(--primary-color-rgb), 0.1);
	padding: 80px 0;
	text-align: center;
}

section.team-section .grid {
	margin-top: 30px;
	display: block;
}

.team-section .owl-carousel .owl-stage-outer {
	padding: 30px 0;
}


/* ==============================
TESTIMONIAL SECTION
============================== */

.testimonial-section {
	text-align: center;
	margin: 80px 0;
}

section.testimonial-section .grid {
	display: block;
	max-width: 770px;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
}


/* ==============================
RECENT POST SECTION
============================== */

.recent-post-section .grid article .content-wrap {
	margin: 20px 20px 40px 20px;
}


/* Custom CSS */
.accord .transition,
.accord ul li i:before,
.accord ul li i:after,
.accord p {
  transition: all 0.25s ease-in-out;
}

.accord .flipIn,
.accord ul li,
.accord h1 {
  animation: flipdown 0.5s ease both;
}

.accord .no-select,
.accord h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.accord {
  min-height: 0;
  display: inline-block;
  position: relative;
  left: 50%;
  /*margin: 90px 0;*/
  transform: translate(-50%, 0);
  /*max-width: 450px;
padding: 30px;*/
}
@media (max-width: 550px) {
  .accord {
    box-sizing: border-box;
    transform: translate(0, 0);
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    left: 0;
  }
}

.accord p {
  color: #585656;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}

.accord ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
.accord ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px dotted #dce7eb;
}
.accord ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
.accord ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
.accord ul li:nth-of-type(3) {
  animation-delay: 1s;
}
.accord ul li:last-of-type {
  padding-bottom: 0;
}
.accord ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 50px;
  right: 0;
}
.accord ul li i:before,
.accord ul li i:after {
  content: "";
  position: absolute;
  background-color: rgba(48, 69, 92, 0.8);
  width: 3px;
  height: 9px;
}
.accord ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.accord ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.accord ul li input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.accord ul li input[type="checkbox"]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
.accord ul li input[type="checkbox"]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
.accord ul li input[type="checkbox"]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}




/* Css issue du backoffice de wordpress  */


/* fix moly color */

.nav-wrap {
	background: #7cbb22;
}

.responsive-nav {
	background: #7cbb22;
}

/* fix link featurable */

div.Carousel-module__branding--X3Gce {
	 display: none !important;
}


/* fix address icon color */

@media screen and (max-width:767px) {
	.site-banner {
		background-color: #7cbb22;
	}
}

@media screen and (max-width: 767px) {
	.site-banner .banner-caption .btn-wrap a.btn.btn-transparent {
		border-color: #7a52bc;
		color: #7a52bc;
	}
}

.page-header {
	background-color: white;
}


header.page-header {
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* fix button in homepage 
.btn .btn-green {
	color: #585656;
	background-color:white;
}
*/

/* fix min height in blog section */
.single header.page-header {
    min-height: 100px;
}

.site-content .page-header .container .sub-title  {
	display: none;
}


/* fixlink color in home page */
@media screen and (max-width: 767px) {
	.description a {
		color: #666;
	}
}

@media screen and (min-width: 768px) {
	.description a {
		color: white;
	}
}

/* fix police en blanc sur tel*/

@media screen and (max-width: 767px) {
	.site-banner .banner-caption .title {
		color: white;
	}

	.site-banner .banner-caption .description {
		color: white;
	}

	.site-banner .banner-caption .description a {
		color: white;
	}


	.site-banner .banner-caption .btn-wrap a.btn.btn-transparent {
		border-color: white;
		color: white;
	}


}

/* button sur les pages Soins*/
.soins-specs-tarifs  {
	text-align: center;
}
.soins-specs-tarifs span
 a  {
	color: white!important;
	 font-size: 15px;
}
.soins-specs-tarifs span
 a:hover  {
	color: #7cbc22!important;
}

/* masque header page accueil*/
.page-id-753 .page-header {
  display: none;
}

/* personnalisation du footer*/
.footer-t {
  background: #7cbb22 !important;
}

.footer-t a {
  color: white !important;
}

.footer-t a:hover {
  color: #ffffffc9 !important;
}


/*Soins visage */
.wp-block-table table {
  width: 100%;
}

.wp-block-table table td:first-child {
  width: 50%;
}

/* fix copyright link color */
.footer-b .copyright a {
	color: #ffffff;
	text-decoration: underline;
}


/* ==============================
Dark mode
============================== */

body,
.site,
.site-content {
	background: var(--moly-page-bg);
	color: var(--moly-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
.page-title,
.site-branding .site-title a {
	color: var(--moly-heading-color);
}

p,
li,
td,
.entry-content,
.widget,
.comment-content,
.accord p {
	color: var(--moly-text-color);
}

.moly-theme-switcher {
	position: fixed;
	top: 12px;
	right: 12px;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 4px;
	background: #3f465f;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(8px);
}

.admin-bar .moly-theme-switcher {
	top: 58px;
}

.moly-theme-option {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	padding: 7px 12px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	color: #ffffff;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-transform: none;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.moly-theme-option:hover,
.moly-theme-option:focus {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.moly-theme-option:focus-visible {
	outline: 2px solid #c9ff36;
	outline-offset: 2px;
}

.moly-theme-option.is-active {
	background: #29304c;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.22);
}

.moly-theme-option svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: 0 0 auto;
}

html[data-moly-theme="dark"] .moly-theme-switcher {
	background: #3f465f;
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

html[data-moly-theme="dark"] .site-header {
	background: var(--moly-header-bg);
	border-bottom: 1px solid var(--moly-border-color);
}

html[data-moly-theme="dark"] .header-main {
	background: var(--moly-header-bg);
}

html[data-moly-theme="dark"] .site-header .custom-logo {
	content: var(--moly-dark-logo);
	width: min(360px, 55vw);
	max-height: 115px;
	object-fit: contain;
}

html[data-moly-theme="dark"] .site-branding .site-description,
html[data-moly-theme="dark"] .header-contact .contact-block .title {
	color: var(--moly-muted-color);
}

html[data-moly-theme="dark"] .header-contact .contact-block {
	border-left-color: var(--moly-border-color);
}

html[data-moly-theme="dark"] .header-contact .contact-block a,
html[data-moly-theme="dark"] .header-contact .contact-block .content {
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] .header-contact svg .phb,
html[data-moly-theme="dark"] .header-contact svg .emb,
html[data-moly-theme="dark"] .header-contact svg .clkb {
	fill: var(--primary-color);
}

html[data-moly-theme="dark"] .nav-wrap,
html[data-moly-theme="dark"] .responsive-nav {
	background: #111a10;
	border: 1px solid rgba(var(--primary-color-rgb), 0.45);
}

html[data-moly-theme="dark"] .main-navigation ul li ul,
html[data-moly-theme="dark"] .search-form-wrap,
html[data-moly-theme="dark"] .search-form-wrap .search-form input[type="search"] {
	background: var(--moly-surface-bg);
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] .main-navigation ul ul li a {
	color: var(--moly-text-color);
	border-bottom-color: var(--moly-border-color);
}

html[data-moly-theme="dark"] .page-header {
	background-color: var(--moly-surface-bg);
}

html[data-moly-theme="dark"] body.custom-background {
	background-color: var(--moly-page-bg) !important;
}

html[data-moly-theme="dark"] body.custom-background #page,
html[data-moly-theme="dark"] .site-main article,
html[data-moly-theme="dark"] .site-main article .content-wrap,
html[data-moly-theme="dark"] .single .site-main article,
html[data-moly-theme="dark"] .single .site-main .entry-content,
html[data-moly-theme="dark"] .page-template-default .site-main .entry-content {
	background-color: var(--moly-article-bg) !important;
}

html[data-moly-theme="dark"] .elementor,
html[data-moly-theme="dark"] .elementor-section,
html[data-moly-theme="dark"] .elementor-top-section,
html[data-moly-theme="dark"] .elementor-inner-section,
html[data-moly-theme="dark"] .e-con,
html[data-moly-theme="dark"] .e-con-boxed,
html[data-moly-theme="dark"] .e-con-full {
	background-color: var(--moly-article-bg) !important;
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] .elementor h1,
html[data-moly-theme="dark"] .elementor h2,
html[data-moly-theme="dark"] .elementor h3,
html[data-moly-theme="dark"] .elementor h4,
html[data-moly-theme="dark"] .elementor h5,
html[data-moly-theme="dark"] .elementor h6,
html[data-moly-theme="dark"] .elementor-heading-title {
	color: var(--moly-heading-color) !important;
}

html[data-moly-theme="dark"] .elementor p,
html[data-moly-theme="dark"] .elementor li,
html[data-moly-theme="dark"] .elementor .elementor-widget-text-editor {
	color: var(--moly-text-color) !important;
}

html[data-moly-theme="dark"] .elementor .wpcap-grid .post-grid-text-wrap .title,
html[data-moly-theme="dark"] .elementor .wpcap-grid .post-grid-text-wrap .title a {
	color: var(--moly-heading-color) !important;
}

html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewCard"],
html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewCardLight"],
html[data-moly-theme="dark"] [class*="Carousel-module__card"],
html[data-moly-theme="dark"] .carousel__card,
html[data-moly-theme="dark"] .review__card,
html[data-moly-theme="dark"] .review--light {
	background: var(--moly-surface-bg) !important;
	background-color: var(--moly-surface-bg) !important;
	background-image: none !important;
	border-color: var(--moly-border-color) !important;
	color: var(--moly-text-color) !important;
}

html[data-moly-theme="dark"] .carousel__card > *,
html[data-moly-theme="dark"] .review__card > * {
	background-color: transparent !important;
}

html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewCard"] p,
html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewCard"] span,
html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewCard"] a,
html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewBody"],
html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewer"],
html[data-moly-theme="dark"] .review__text,
html[data-moly-theme="dark"] .review__text--dark,
html[data-moly-theme="dark"] .review__body,
html[data-moly-theme="dark"] .review__footer {
	color: var(--moly-text-color) !important;
}

html[data-moly-theme="dark"] [class*="ReviewCard-module__reviewer"],
html[data-moly-theme="dark"] .review__header,
html[data-moly-theme="dark"] .review__reviewer {
	color: var(--moly-heading-color) !important;
}

html[data-moly-theme="dark"] [class*="Carousel-module__arrow"],
html[data-moly-theme="dark"] [class*="Carousel-module__nav"] button {
	background: var(--moly-surface-bg) !important;
	color: var(--moly-text-color) !important;
	border-color: var(--moly-border-color) !important;
}

html[data-moly-theme="dark"] .elementor-element.elementor-element-90b8b42 {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}

html[data-moly-theme="dark"] .elementor-element.elementor-element-095248d {
	background-color: var(--moly-article-bg) !important;
	background-image: linear-gradient(180deg, var(--moly-article-bg) 0%, var(--moly-article-bg) 100%) !important;
}

html[data-moly-theme="dark"] .additional-post,
html[data-moly-theme="dark"] .author-section,
html[data-moly-theme="dark"] .comment-respond,
html[data-moly-theme="dark"] .widget-area .widget,
html[data-moly-theme="dark"] .wp-block-table table {
	background-color: var(--moly-surface-bg);
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] table tr th,
html[data-moly-theme="dark"] table tr td {
	color: var(--moly-text-color);
	border-color: var(--moly-border-color);
}

html[data-moly-theme="dark"] table tbody tr:nth-child(odd) {
	background: rgba(255, 255, 255, 0.05);
}

html[data-moly-theme="dark"] input[type="text"],
html[data-moly-theme="dark"] input[type="email"],
html[data-moly-theme="dark"] input[type="url"],
html[data-moly-theme="dark"] input[type="password"],
html[data-moly-theme="dark"] input[type="search"],
html[data-moly-theme="dark"] input[type="number"],
html[data-moly-theme="dark"] input[type="tel"],
html[data-moly-theme="dark"] textarea,
html[data-moly-theme="dark"] select {
	background: #0a0f0a;
	border-color: var(--moly-border-color);
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] blockquote,
html[data-moly-theme="dark"] q,
html[data-moly-theme="dark"] .comment-respond .comment-reply-title a,
html[data-moly-theme="dark"] .post-navigation .nav-previous a,
html[data-moly-theme="dark"] .post-navigation .nav-next a,
html[data-moly-theme="dark"] .navigation.pagination .page-numbers {
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] .post-navigation,
html[data-moly-theme="dark"] .comments-area .comment-list + .comment-respond,
html[data-moly-theme="dark"] .comment-body .comment-content,
html[data-moly-theme="dark"] .accord ul li {
	border-color: var(--moly-border-color);
}

html[data-moly-theme="dark"] .back-to-top {
	background: var(--moly-surface-bg);
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] .popup,
html[data-moly-theme="dark"] .moly-popup {
	background: var(--moly-surface-bg);
	color: var(--moly-text-color);
}

html[data-moly-theme="dark"] .moly-block {
	border-color: var(--moly-border-color);
}

@media (prefers-color-scheme: dark) {
	html:not([data-moly-theme-setting="light"]) .moly-theme-switcher {
		background: #3f465f;
		border-color: rgba(255, 255, 255, 0.16);
		box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
	}

	html:not([data-moly-theme-setting="light"]) .site-header {
		background: var(--moly-header-bg);
		border-bottom: 1px solid var(--moly-border-color);
	}

	html:not([data-moly-theme-setting="light"]) .header-main {
		background: var(--moly-header-bg);
	}

	html:not([data-moly-theme-setting="light"]) .site-header .custom-logo {
		content: var(--moly-dark-logo);
		width: min(360px, 55vw);
		max-height: 115px;
		object-fit: contain;
	}

	html:not([data-moly-theme-setting="light"]) .site-branding .site-description,
	html:not([data-moly-theme-setting="light"]) .header-contact .contact-block .title {
		color: var(--moly-muted-color);
	}

	html:not([data-moly-theme-setting="light"]) .header-contact .contact-block {
		border-left-color: var(--moly-border-color);
	}

	html:not([data-moly-theme-setting="light"]) .header-contact .contact-block a,
	html:not([data-moly-theme-setting="light"]) .header-contact .contact-block .content {
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) .header-contact svg .phb,
	html:not([data-moly-theme-setting="light"]) .header-contact svg .emb,
	html:not([data-moly-theme-setting="light"]) .header-contact svg .clkb {
		fill: var(--primary-color);
	}

	html:not([data-moly-theme-setting="light"]) .nav-wrap,
	html:not([data-moly-theme-setting="light"]) .responsive-nav {
		background: #111a10;
		border: 1px solid rgba(var(--primary-color-rgb), 0.45);
	}

	html:not([data-moly-theme-setting="light"]) .main-navigation ul li ul,
	html:not([data-moly-theme-setting="light"]) .search-form-wrap,
	html:not([data-moly-theme-setting="light"]) .search-form-wrap .search-form input[type="search"] {
		background: var(--moly-surface-bg);
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) .main-navigation ul ul li a {
		color: var(--moly-text-color);
		border-bottom-color: var(--moly-border-color);
	}

	html:not([data-moly-theme-setting="light"]) .page-header {
		background-color: var(--moly-surface-bg);
	}

	html:not([data-moly-theme-setting="light"]) body.custom-background {
		background-color: var(--moly-page-bg) !important;
	}

	html:not([data-moly-theme-setting="light"]) body.custom-background #page,
	html:not([data-moly-theme-setting="light"]) .site-main article,
	html:not([data-moly-theme-setting="light"]) .site-main article .content-wrap,
	html:not([data-moly-theme-setting="light"]) .single .site-main article,
	html:not([data-moly-theme-setting="light"]) .single .site-main .entry-content,
	html:not([data-moly-theme-setting="light"]) .page-template-default .site-main .entry-content {
		background-color: var(--moly-article-bg) !important;
	}

	html:not([data-moly-theme-setting="light"]) .elementor,
	html:not([data-moly-theme-setting="light"]) .elementor-section,
	html:not([data-moly-theme-setting="light"]) .elementor-top-section,
	html:not([data-moly-theme-setting="light"]) .elementor-inner-section,
	html:not([data-moly-theme-setting="light"]) .e-con,
	html:not([data-moly-theme-setting="light"]) .e-con-boxed,
	html:not([data-moly-theme-setting="light"]) .e-con-full {
		background-color: var(--moly-article-bg) !important;
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) .elementor h1,
	html:not([data-moly-theme-setting="light"]) .elementor h2,
	html:not([data-moly-theme-setting="light"]) .elementor h3,
	html:not([data-moly-theme-setting="light"]) .elementor h4,
	html:not([data-moly-theme-setting="light"]) .elementor h5,
	html:not([data-moly-theme-setting="light"]) .elementor h6,
	html:not([data-moly-theme-setting="light"]) .elementor-heading-title {
		color: var(--moly-heading-color) !important;
	}

	html:not([data-moly-theme-setting="light"]) .elementor p,
	html:not([data-moly-theme-setting="light"]) .elementor li,
	html:not([data-moly-theme-setting="light"]) .elementor .elementor-widget-text-editor {
		color: var(--moly-text-color) !important;
	}

	html:not([data-moly-theme-setting="light"]) .elementor .wpcap-grid .post-grid-text-wrap .title,
	html:not([data-moly-theme-setting="light"]) .elementor .wpcap-grid .post-grid-text-wrap .title a {
		color: var(--moly-heading-color) !important;
	}

	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewCard"],
	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewCardLight"],
	html:not([data-moly-theme-setting="light"]) [class*="Carousel-module__card"],
	html:not([data-moly-theme-setting="light"]) .carousel__card,
	html:not([data-moly-theme-setting="light"]) .review__card,
	html:not([data-moly-theme-setting="light"]) .review--light {
		background: var(--moly-surface-bg) !important;
		background-color: var(--moly-surface-bg) !important;
		background-image: none !important;
		border-color: var(--moly-border-color) !important;
		color: var(--moly-text-color) !important;
	}

	html:not([data-moly-theme-setting="light"]) .carousel__card > *,
	html:not([data-moly-theme-setting="light"]) .review__card > * {
		background-color: transparent !important;
	}

	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewCard"] p,
	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewCard"] span,
	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewCard"] a,
	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewBody"],
	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewer"],
	html:not([data-moly-theme-setting="light"]) .review__text,
	html:not([data-moly-theme-setting="light"]) .review__text--dark,
	html:not([data-moly-theme-setting="light"]) .review__body,
	html:not([data-moly-theme-setting="light"]) .review__footer {
		color: var(--moly-text-color) !important;
	}

	html:not([data-moly-theme-setting="light"]) [class*="ReviewCard-module__reviewer"],
	html:not([data-moly-theme-setting="light"]) .review__header,
	html:not([data-moly-theme-setting="light"]) .review__reviewer {
		color: var(--moly-heading-color) !important;
	}

	html:not([data-moly-theme-setting="light"]) [class*="Carousel-module__arrow"],
	html:not([data-moly-theme-setting="light"]) [class*="Carousel-module__nav"] button {
		background: var(--moly-surface-bg) !important;
		color: var(--moly-text-color) !important;
		border-color: var(--moly-border-color) !important;
	}

	html:not([data-moly-theme-setting="light"]) .elementor-element.elementor-element-90b8b42 {
		background: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}

	html:not([data-moly-theme-setting="light"]) .elementor-element.elementor-element-095248d {
		background-color: var(--moly-article-bg) !important;
		background-image: linear-gradient(180deg, var(--moly-article-bg) 0%, var(--moly-article-bg) 100%) !important;
	}

	html:not([data-moly-theme-setting="light"]) .additional-post,
	html:not([data-moly-theme-setting="light"]) .author-section,
	html:not([data-moly-theme-setting="light"]) .comment-respond,
	html:not([data-moly-theme-setting="light"]) .widget-area .widget,
	html:not([data-moly-theme-setting="light"]) .wp-block-table table {
		background-color: var(--moly-surface-bg);
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) table tr th,
	html:not([data-moly-theme-setting="light"]) table tr td {
		color: var(--moly-text-color);
		border-color: var(--moly-border-color);
	}

	html:not([data-moly-theme-setting="light"]) table tbody tr:nth-child(odd) {
		background: rgba(255, 255, 255, 0.05);
	}

	html:not([data-moly-theme-setting="light"]) input[type="text"],
	html:not([data-moly-theme-setting="light"]) input[type="email"],
	html:not([data-moly-theme-setting="light"]) input[type="url"],
	html:not([data-moly-theme-setting="light"]) input[type="password"],
	html:not([data-moly-theme-setting="light"]) input[type="search"],
	html:not([data-moly-theme-setting="light"]) input[type="number"],
	html:not([data-moly-theme-setting="light"]) input[type="tel"],
	html:not([data-moly-theme-setting="light"]) textarea,
	html:not([data-moly-theme-setting="light"]) select {
		background: #0a0f0a;
		border-color: var(--moly-border-color);
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) blockquote,
	html:not([data-moly-theme-setting="light"]) q,
	html:not([data-moly-theme-setting="light"]) .comment-respond .comment-reply-title a,
	html:not([data-moly-theme-setting="light"]) .post-navigation .nav-previous a,
	html:not([data-moly-theme-setting="light"]) .post-navigation .nav-next a,
	html:not([data-moly-theme-setting="light"]) .navigation.pagination .page-numbers {
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) .post-navigation,
	html:not([data-moly-theme-setting="light"]) .comments-area .comment-list + .comment-respond,
	html:not([data-moly-theme-setting="light"]) .comment-body .comment-content,
	html:not([data-moly-theme-setting="light"]) .accord ul li {
		border-color: var(--moly-border-color);
	}

	html:not([data-moly-theme-setting="light"]) .back-to-top {
		background: var(--moly-surface-bg);
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) .popup,
	html:not([data-moly-theme-setting="light"]) .moly-popup {
		background: var(--moly-surface-bg);
		color: var(--moly-text-color);
	}

	html:not([data-moly-theme-setting="light"]) .moly-block {
		border-color: var(--moly-border-color);
	}
}

@media screen and (min-width: 783px) {
	.admin-bar .moly-theme-switcher {
		top: 44px;
	}
}

@media screen and (max-width: 767px) {
	.moly-theme-switcher {
		top: 8px;
		right: 8px;
	}

	.moly-theme-option {
		min-height: 30px;
		padding: 6px 9px;
		font-size: 12px;
		gap: 5px;
	}

	.moly-theme-option svg {
		width: 14px;
		height: 14px;
	}
}
