/************************************************************************************
RESET
*************************************************************************************/

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/************************************************************************************
GRID
*************************************************************************************/
.container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column,
.columns {
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 800px) {
  .column,
  .columns {
    margin-left: 4%;
  }

  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/

:root {
  --green: #759c77;
	--purple: #754872;
  --purple-dark: #5c1e84;
  --beige: #f2e1d1;
  --salmon: #efb892;

  --red: #ce453a;
  --orange: #dd6333;
  --yellow: #ef9047;

  --white: hsla(29,56%,93%,1);

  --momenceColorBackground: #f2e1d1;
  --momenceColorPrimary: #759c77;
  --momenceColorBlack: 3, 1, 13;
}

body {
  background-color: var(--beige);
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 20px;
  letter-spacing: .8px;
	color: var(--purple);
	text-align: left;
}

a:link, a:visited {
	text-decoration: none;
	transition: transform .4s;
	outline: none;
	color: var(--violet-dark);
}

a:active {
	outline: none;
}

a.button, .button {
  display: inline-block;
  color: var(--beige);
  font-weight: 400;
  border-radius: 25px;
  padding: 10px 25px;
  background-color: var(--green);
  text-transform: uppercase;
  transition:  .4s;
  text-align: center;
}

a.button:hover,
.button:hover {
  background-color: var(--purple);
  transform: scale(.95,.95);
}

p {
  margin: 0 0 20px;
}

h1, .h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 40px 0 30px;
	line-height: 1.2;
  text-transform: uppercase;
}

h2.h1  {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 20px 0 0;
}

h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 30px 0;
	line-height: 1.2;
}

h3, h4, h5, h6 {
	font-size: 20px;
  font-weight: 900;
	margin: 20px 0;
  letter-spacing: .5px;
}

em {
  font-style: italic;
}

b, strong {
	font-weight: 600;
}

hr {
  border-width: 0;
  border-top: 2px solid var(--purple);
}

ul {
  margin: 0 0 20px 0;
}

@media (max-width: 500px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 30px;
    margin: 30px 0;
  }

  h2.h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 25px;
    letter-spacing: 0px;
    margin: 30px 0;
  }

  h3, h4, h5 {
  	font-size: 20px;
  }

}

.responsive-image,
.gallery {
  margin: 4% 0;
}

.responsive-image img,
.gallery-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.responsive-image figcaption,
.gallery-image figcaption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: var(--purple);
  font-style: italic;
}

@media (max-width: 799px) {
  .gallery .columns {
    margin: 5% 0;
  }
}

/************************************************************************************
HEADER
*************************************************************************************/

.logo svg {
  margin: 15px 0;
  width: 200px;
}

.menu {
  width: 100%;
  background-color: var(--green);
  padding: 5px 0;
}

.menu #open {
  display: block;
  padding: 0 15px;
  color: var(--beige);
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
}

.menu #close {
  display: none;
  padding: 0 15px;
  color: var(--beige);
  font-size: 18px;
  line-height: 40px;
  border-bottom: 1px solid var(--beige);
  padding-bottom: 3px;
  font-weight: 400;
}

.menu nav {
  height: 0;
  overflow: hidden;
}

nav ul {
	padding: 0;
  margin: 0;
	list-style: none;
	position: relative;
}

nav ul li {
	display: block;
	background-color: var(--green);
  border-top: 1px solid var(--beige);
  padding: 3px 0;
}

nav ul li:first-of-type {
  border: none;
}

nav ul ul li {
  border: none;
  padding: 0;
}

.menu nav a, .menu nav span {
	display: block;
	padding: 0 15px;
	color: var(--beige);
	font-size: 18px;
	line-height: 40px;
	text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease-in-out;
  font-weight: 400;
}

.menu nav span {
  display: none;
}

[aria-current]:not([aria-current="false"]) {
  font-weight: 600;
}

@media (min-width: 800px) {

  .menu {
    padding: 0;
  }

  .menu nav {
    height: auto;
    overflow: visible;
  }

  .menu nav span {
    cursor: default;
    display: block;
  }

  .menu #open {
    display: none;
  }

  nav ul li {
  	display: inline-block;
    border: none;
    padding: 0;
  }

  nav a:hover {
  	background-color: var(--purple);
  }

  nav > ul::before {
    display: none;
  }

  nav ul ul {
  	max-height: 0;
    transition: .6s ease-in-out;
  	position: absolute;
  	top: 40px;
    overflow-y: hidden;
  }

  nav ul li:hover > ul {
    max-height: 100vh;
  }

  nav ul ul li {
  	width: auto;
  	float: none;
  	display: block;
  	position: relative;
    z-index: 1000;
  }

}

header a.button {
 position: absolute;
 right: 5%;
 top: 20px;
}

@media (max-width: 500px) {
  header a.button {
    padding: 10px 18px 10px 18px;
    top: 22px;
  }
}

/************************************************************************************
FOOTER
*************************************************************************************/

footer {
  margin-top: 100px;
  padding: 40px 0 0;
  background-color: var(--purple);
  font-size: 16px;
  color: var(--beige);
  font-weight: 400;
}

footer .pages {
  text-transform: uppercase;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

footer .social {
  text-transform: uppercase;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

footer .signup {
  border-top: 2px solid var(--green);
  text-align: center;
  padding: 40px 0;
}

.signup h2 {
  margin: 5px 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.signup #momence-plugin-lead-form {
  margin: 0 auto;
  display: inline-block;
}

.signup #momence-plugin-lead-form .momence-lead_form-base_container {
  background-color: transparent !important;
}

.signup #momence-plugin-lead-form .momence-lead_form-field {
  margin-right: 0 !important;
  position: relative !important;
}

.signup #momence-plugin-lead-form label {
  display: none !important;
}

.signup #momence-plugin-lead-form input {
  border: none !important;
  background: var(--green) !important;
  padding: 10px 25px !important;
  border-radius: 25px !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 18px !important;
  color: #333 !important;
  width: 450px !important;
  height: 50px;
  transition: 200ms;
  text-align: left;
}

.signup #momence-plugin-lead-form input:focus {
  border: none !important;
  color: var(--beige) !important;
}

.signup #momence-plugin-lead-form input::placeholder {
  color: var(--beige) !important;
  opacity: 1 !important;
}

.signup #momence-plugin-lead-form input:focus::placeholder {
  opacity: 0 !important;
}

.signup #momence-plugin-lead-form .momence-lead_form-actions {
  margin: 0 !important;
}

.signup #momence-plugin-lead-form .momence-lead_form-actions button {
  height: 50px !important;
  padding: 10px 50px !important;
  border-radius: 25px !important;
  border: none !important;
  background-color: var(--salmon) !important;
  color: var(--purple) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  transition: .4s;
  -webkit-appearance: none;
}

.signup #momence-plugin-lead-form .momence-lead_form-actions button:hover {
  background-color: var(--beige) !important;
  color: var(--green) !important;
}

.signup #momence-plugin-lead-form .momence-lead_form-form_error {
  font-size: 14px !important;
  color: var(--beige) !important;
  text-transform: uppercase !important;
}

.signup #momence-plugin-lead-form .momence-lead_form-success {
  color: var(--beige) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
}

.momence-lead_form-actions {
  display: block !important;
}

@media screen and (max-width: 500px) {
  .signup #momence-plugin-lead-form input {
    width: 300px !important;
  }
}

.copyrights {
	background-color: var(--green);
  font-size: 14px;
  text-align: center;
	padding: 12px 0 15px;
	color: var(--beige);
	letter-spacing: 1px;
}

.copyrights a {
  display: inline-block;
  color: var(--beige);
  transition: .3s;
  margin-top: 5px;
  padding: 0 6px;
  border-radius: 6px;
}

.copyrights a:hover {
  background-color: var(--purple);
}

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

  footer #meditate {
    padding: 50px;
  }

  footer #mc_embed_signup input.email {
    width: 190px;
  }
}

#momence-plugin-webchat .gWqgev svg path {
  fill: var(--beige) !important;
}

#momence-plugin-webchat .lbPDsa {
  color: var(--beige) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
}

/************************************************************************************
HOME PAGE
*************************************************************************************/

.home-text {
  background-color: var(--purple);
  color: var(--beige);
  padding: 50px 0;
}

.home-text .container {
  display: flex;
  gap: 8%;
  align-items: center;
}

.home-text .container > div:first-child {
  flex: 0 0 calc(33.333% - 4%);
}

.home-text .container > div:last-child {
  flex: 0 0 calc(66.667% - 4%);
}

.home-text .container img {
  display: block;
  width: 100%;
  height: auto;
}

.home-text h2 {
  font-size: 36px;
}

@media (max-width: 500px) {
  .home-text h2  {
    font-size: 30px;
  }
}

.home-text a {
  display: inline-block;
  color: var(--beige);
  font-weight: 400;
  border-radius: 25px;
  padding: 10px 25px;
  background-color: var(--green);
  text-transform: uppercase;
  transition:  .4s;
  text-align: center;
  margin: 15px 10px 0 0;
}

.home-text a:hover {
  background-color: var(--purple-dark);
  transform: scale(.95,.95);
}

@media (max-width: 799px) {
  .home-text {
    padding: 50px;
  }

  .home-text .container {
    flex-direction: column;
    gap: 2rem;
  }

  .home-text .container > div:first-child,
  .home-text .container > div:last-child {
    flex: 0 0 auto;
    width: 100%;
  }
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--purple);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide.fade-out {
  opacity: 0;
  z-index: 1;
}

@media (min-width: 800px) {
  .hero {
    height: 600px;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-mobile-img {
    display: none;
  }
}

@media (max-width: 799px) {
  .hero {
    height: auto;
    position: relative;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }

  .hero-slide.active {
    position: relative !important;
  }

  .hero-mobile-img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  max-width: 10px;
  max-height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
}

.hero-dot.active,
.hero-dot:hover {
  background: rgba(255, 255, 255, 1);
}


.hero-header {
  text-align: center;
  padding: 100px 0;
}

.hero-header h1 {
  margin: 0 0 30px;
  font-weight: bold;
}

.hero-header .subtitle {
  font-size: 25px;
  line-height: 1.3;
  color: var(--purple);
  margin: 0;
}

@media (max-width: 799px) {
  .hero-header {
    padding: 80px 0;
  }

  .hero-header h1 {
    font-size: 2rem;
  }

  .hero-header .subtitle {
    font-size: 20px;
  }
}

/* Ticker Strip */
.ticker {
  width: 100%;
  overflow: hidden;
  background: var(--green);
  padding: 1.5rem 0;
  position: relative;
  margin-bottom: 50px;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-word {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 799px) {
  .ticker {
    padding: 1rem 0;
  }

  .ticker-word {
    font-size: 1.125rem;
  }

  .ticker-track {
    gap: 2rem;
    animation: ticker 15s linear infinite;
  }
}


/************************************************************************************
PAGES
*************************************************************************************/

.page-hero {
  margin: 8px 0 30px;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  display: block;
  width: 100%;
}

.hero-image .container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 1rem;
  box-sizing: border-box;
}

.hero-image h1, .hero-image .h1 {
  margin: 0;
  color: var(--beige);
}

.page.container {
  padding-top: 4rem;
}

@media (max-width: 700px) {

  .hero-image img {
    max-width: 250%;
    width: 250%;
  }

  .page.container {
    padding-top: 2.5rem;
  }
}

@media (min-width: 1500px) {
  .hero-image .container {
    left: 50%;
    margin-left: -750px;
  }
}



/************************************************************************************
BLOG
*************************************************************************************/

.blog article {
  padding: 50px 0;
}

.blog article:first-of-type {
  padding-top: 8px;
}

.blog article:last-of-type {
  border-bottom: none;
}

.blog article .post-meta {
  border-bottom: 0;
}

.blog article .button {
  margin-top: 20px;
}

.pagination {
  border-top: 5px solid var(--purple);
  padding-top: 20px;
}

.pagination a:first-of-type {
  margin-right: 20px;
}

.pagination a {
  background-color: var(--green);
  color: var(--beige);
  padding: 2px 10px 5px;
  border-radius: 7px;
  transition: .2s;
}

.post-meta {
  border-bottom: 1px solid var(--green);
}

.post-author {
  color: var(--green);
  font-weight: 600;
  letter-spacing: normal;
}

.post-date {
  font-size: 90%;
  margin-left: 10px;
}

.blog-article a.button {
  margin-top: 30px;
}

.blog-article.container {
  padding-top: 50px;
}

/************************************************************************************
TEAM
*************************************************************************************/

.team .intro {
  margin-bottom: 50px;
}

.team ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.team ul li {
  margin-bottom: 80px;
}

.member h2 {
  margin-bottom: 10px;
}

.member h3 {
  color: var(--green);
  margin-bottom: 0;
  letter-spacing: 1px;
}

.member img {
  width: 75%;
}

@media (max-width: 800px) {
  .member img {
    width: 100%;
  }
}


/************************************************************************************
PRICING
*************************************************************************************/

.offer-button-group {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.offer-button-group .button {
  flex: 1;
  min-width: 170px;
}

.offer-button-group .button.active {
  background-color: var(--white);
  color: var(--purple);
  cursor: default;
  pointer-events: none;
}

.offer-boxes-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 1rem 0;
}

.offer-box {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .5px;
  line-height: 1.2;
  margin: 0;
}

p.offer-subtitle {
  font-weight: 600;
  color: var(--green);
  margin: 0 0 10px 0;
}

.offer-price {
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 10px 0;
}

.offer-description {
  flex-grow: 1;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .offer-boxes-container {
    grid-template-columns: 1fr;
  }
}

/************************************************************************************
MOMENCE SCHEDULE
*************************************************************************************/

.momence-host_schedule {
  padding: 0 !important;
}

.momence-host_schedule-first_row {
  margin-bottom: 50px !important;
}


.momence-button {
  border: none !important;
  background-color: var(--white) !important;
  color: var(--purple-dark) !important;
  opacity: 1 !important;
}

.momence-button:hover {
  opacity: .8 !important;
}

.momence-month_switch-current {
  font-family: 'Poppins', sans-serif !important;
  color: var(--purple) !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  width: 80px !important;
}

.momence-host_schedule-third_row {
  display: none !important;
}

.momence-day_selection-item {
  border: none !important;
}

.momence-day_selection-item:has(.momence-day_selection-item_selected) {
  background-color: var(--white) !important;

}

.momence-day_selection-item:has(.momence-day_selection-item_selected) .momence-day_selection-item_highlight {
  color: var(--green) !important;
}

.momence-day_selection-item:hover {
  background-color: var(--white) !important;
}

.momence-day_selection-item_selected {
  background-color: transparent !important;
}

.momence-day_selection-item_day {
  font-family: 'Poppins', sans-serif !important;
  color: var(--purple) !important;
  font-weight: 600 !important;
}

.momence-day_selection-item_highlight {
  font-family: 'Poppins', sans-serif !important;
  color: var(--purple) !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  line-height: 22px !important;
}

.momence-quick_filters button:hover {
  background-color: var(--purple) !important;
  color: var(--beige) !important;
}

.momence-select {
  margin-right: 0 !important;
}

.momence-select-button {
  color: var(--purple) !important;
  border: 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  background-color: var(--white) !important;
}

.momence-select-option {
  color: var(--purple) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  background-color: var(--white) !important;
}

.momence-select-option:hover {
  background: var(--green) !important;
  color: var(--beige) !important;
}

.momence-host_schedule-session_list-no_results-text {
  font-family: 'Poppins', sans-serif !important;
  color: var(--purple) !important;
  font-weight: 400 !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
}

.bSVcmq, div:has(> #headlessui-listbox-button-P0-1) {
  display: none !important;
}

.momence-host_schedule-session_list-date_label {
  font-family: 'Poppins', sans-serif !important;
  color: var(--purple) !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  margin-left: 3px !important;
}

.momence-host_schedule-session_list-item {
  background-color: var(--white) !important;
  border-radius: 20px !important;
  border: none !important;
}

.momence-event_type_select,
.momence-host_schedule-session_list-item-image,
.momence-host_schedule-session_list-item-type,
.momence-host_schedule-session_list-image_container,
#momence-plugin-host-schedule .chQBEY,
#momence-plugin-host-schedule .CMvof,
.eURLCi, .jcPnhT{
  display: none !important;
}
.momence-host_schedule-session_list-item-info-icon,
.momence-host_schedule-session_list-item-info svg,
#momence-plugin-host-schedule .HcpFM {
  color: var(--green) !important;
}

.momence-host_schedule-session_list-item-description {
  color: var(--purple) !important;
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.momence-host_schedule-session_list-expand-button {
  font-size: 14px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}


#momence-plugin-host-schedule .jSDSLS {
  background: transparent !important;
}

.momence-host_schedule-session_list-item-title,
.momence-host_schedule-session_list-item-price div {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  color: var(--purple) !important;
}

#momence-plugin-host-schedule .chQBEY {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  color: var(--green) !important;
  font-weight: 600 !important;
}

#momence-plugin-host-schedule .ZeeCp {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  color: var(--purple) !important;
}

#momence-plugin-host-schedule .EenGE {
  text-transform: uppercase !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  transition:  .4s !important;
  border-radius: 25px !important;
  color: var(--beige) !important;
  background-color: var(--green) !important;
  line-height: 1.2 !important;
}

#momence-plugin-host-schedule .EenGE:hover {
  transform: scale(.95,.95);
  background-color: var(--purple) !important;
}

#momence-plugin-host-schedule .iwFGMX {
  width: 140px !important;
}

#momence-plugin-host-schedule .momence-host_schedule-powered_by_momence {
  display: none !important;
}

#momence-plugin-host-schedule .momence-pagination-button {
  color: var(--purple) !important;
}

#momence-plugin-host-schedule .fayEBX,
#momence-plugin-host-schedule .eMAZJx,
#momence-plugin-host-schedule .eQvTBG {
  color: transparent !important;
  background: transparent !important;
}

.momence-month-calendar-weekday {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  color: var(--purple) !important;
}

.momence-month-calendar-day div {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  color: var(--purple) !important;
  font-weight: 900 !important;
}

#momence-plugin-host-schedule .ggDTrk {
  font-weight: 900 !important;
  background: transparent !important;
  color: var(--green) !important;
}

#momence-plugin-host-schedule .iAzVJy {
  font-weight: 900 !important;
  background: transparent !important;
  color: var(--green) !important;
}

#momence-plugin-host-schedule .eWVGSv {
  display: inline !important;
}

.momence-view-toggle svg {
  display: none !important;
}

.momence-view-toggle-list,
.momence-view-toggle-calendar {
  text-transform: uppercase !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  transition: .4s !important;
  color: var(--beige) !important;
  background-color: var(--green) !important;
  line-height: 1.2 !important;
  padding: 8px 20px 9px !important;
  border: 0 !important;
}

#momence-plugin-host-schedule .gWkARW,
#momence-plugin-host-schedule .dhXxPd {
  background-color: var(--purple) !important;
}

#momence-plugin-host-schedule .kvTIvi {
  background: var(--white) !important;
}

#momence-plugin-host-schedule .dIbMhs:hover:not(:disabled) {
  background: var(--white) !important;
}

.momence-host_schedule-session_list-no_results h4:before {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  background: url("../images/sol-centre-graphics-8.webp") no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
  margin-top: 50px;
}

.momence-host_schedule-session_list-no_results svg {
  display: none !important;
}
