:root {
  --primary-color: #04BD07;
  --active-color: var(--primary-color);
  --active-text-color: #ffffff;
  --sub-menu-hover-color: #63D56D;
}

/* Import Local Font */
@font-face {
  font-family: 'MyriadPro';
  src: url('/fonts/myriadpro/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'MyriadPro';
  src: url('/fonts/myriadpro/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
  font-weight: 600;
}

@font-face {
  font-family: 'MyriadPro';
  src: url('/fonts/myriadpro/MYRIADPRO-BOLD.OTF') format('opentype');
  font-weight: 700;
}

/* End Import Local Font */

#nav_bar {
  background-color: white;
  height: 72px;
  box-shadow: 0px -1px 8px #69696936;
  transition: all ease-in-out 200ms;
}

#nav_bar a {
  font-family: 'MyriadPro', sans-serif;
  font-weight: normal;
}

/* Parent <a> whose sibling ul contains an active link */
#nav_bar li:has(ul a.active) > a {
    color: var(--primary-color);
}

/* ── Overlay ── */
#side-bar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#sidebar-app-name {
  font-family: 'MyriadPro', sans-serif;
  font-weight: 700;
}

#side-bar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#side-bar {
  z-index: 999;
}

nav.side-bar {
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  /* width: 280px; */
  width: 100%;
  /* max-width: 85vw; */
  background-color: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

nav.side-bar.active {
  left: 0;
}

.sidebar-menu,
.sidebar-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-submenu {
  display: none;
}

.sidebar-item.open>.sidebar-submenu {
  display: block;
}



.sidebar-icon-background {
  background-color: #0ba805;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: white;
}

/* ── Links ── */
.sidebar-link {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.15s;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
}



.sidebar-link.active {
  /* color: var(--active-text-color); */
  font-weight: 600;
  background-color: var(--sub-menu-hover-color);
}

/* ── Level 2 indent ── */
.sidebar-link-l2 {
  padding-left: 32px;
  font-size: 0.875rem;
  background-color: #fafafa;
}

/* ── Level 3 indent ── */
.sidebar-link-l3 {
  padding-left: 48px;
  font-size: 0.85rem;
  color: #6b7280;
  background-color: #f5f5f5;
}

/* ── Caret animation ── */
.sidebar-caret {
  margin-left: auto;
  transition: transform 0.25s ease;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.sidebar-item:has(ul a.active) > a{
  color: var(--sub-menu-hover-color) !important;
}

.sidebar-item.open>.sidebar-link .sidebar-caret {
  transform: rotate(180deg);
}

/* ── Divider between level 2 groups ── */
.sidebar-submenu>.sidebar-item:last-child>.sidebar-link {
  border-bottom: 2px solid #e5e7eb;
}

.sidebar-submenu>.sidebar-item:last-child>.sidebar-link:hover {
  background-color: red;
}

/* @media screen and (min-width: 850px) {
  nav.side-bar {
    display: none;
  }
} */

#show-side-bar {
  width: 35px !important;
  height: 35px !important;

  &>i {
    font-size: 15px;
  }
}

@media all and (max-width: 999px) {
  #nav_bar {
    justify-content: space-between;

    & div#nav-logo {
      margin-left: -5px !important;
    }
  }
}

@media all and (min-width: 999px) {
  #show-side-bar {
    display: none;
  }

  #nav_bar {
    padding-left: 40px;
    padding-right: 30px;
  }
}

@media all and (min-width: 1000px) {
  #navbar-content {
    display: flex !important;
    flex-direction: row;
  }

  #nav_bar {
    justify-content: space-around;
  }
}

@media screen and (min-width: 1140px) {
  nav.side-bar {
    display: none;
  }
}

.navbar-nav {
  & li>a.active {
    color: var(--active-color);
  }
}

nav.side-bar #cancel {
  cursor: pointer;
  position: absolute;
  /* top: 0;
  right: 20; */
  font-size: 1.2em;
  /* color: #fff; */
  transition: 600ms;
  right: 25px;
  top: 25px;
}

nav.side-bar .top {
  width: 100%;
  /* height: 100px; */
  background-color: #63D56D;
  text-align: center;
  padding-top: 30px;
  font-size: 1.5em;
  letter-spacing: 2px;
  color: #fff;
  /* text-shadow: grey 1px 1px 10px; */
}

nav.side-bar .links ul {
  height: 100%;
  width: 100%;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}

nav.side-bar .links ul li {
  line-height: 50px;
  border-bottom: 1px solid #ccc;
}

nav.side-bar .links ul li a.active {
  /* color: #63D56D; */
  /* color: var(--active-text-color) !important; */
  /* background-color: #fafafa; */
  /* background-color: var(--active-color); */
  border-left-color: var(--active-color);
  color: #ffffff;
}

nav.side-bar .links ul li a {
  color: #333;
  position: relative;
  text-decoration: none;
  font-size: 1.18em;
  padding-left: 15px;
  transition: 0.1s;
  transition-timing-function: ease-in;
  display: block;
  width: 100%;
  border-left: 5px solid transparent;
  font-family: 'MyriadPro', sans-serif;
}

nav.side-bar .links ul li a .down {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: transform 0.4s;
}

nav.side-bar .links ul ul {
  position: static;
  display: none;
}

nav.side-bar .links ul ul li {
  line-height: 40px;
  border-bottom: none;
}

nav.side-bar .links ul ul li a {
  font-size: 15px;
  padding-left: 70px;
}

nav.side-bar .links ul ul.show {
  display: block;
}

@media (hover: hover) {
  .sidebar-link-l3:hover {
    color: #111827;
    background-color: #ebebeb;
  }

  .sidebar-link-l2:hover {
    background-color: var(--sub-menu-hover-color) !important;
  }

  .sidebar-link:hover {
    background: red;
    color: #ffffff;
  }

  /* nav.side-bar .links ul li a:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    border-left-color: var(--active-color);
  } */

  /* hover only on links that are NOT active */
  nav.side-bar .links ul li a:not(.active):hover {
      color: #ffffff;
      background-color: var(--primary-color);
      border-left-color: var(--active-color);
  }

  nav.side-bar .links ul li a:hover .down {
    transform: translateY(-50%) rotate(180deg);
  }

  nav.side-bar #cancel:hover {
    color: #3d3d3d;
    /* transform: rotate(360deg); */
  }
}

* {
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
i,
a {
  border: none;
  outline: none;
}

.bg-green {
  background-color: #63D56D;
}

.text-green {
  color: #63D56D;
}

.border-green {
  border: solid #63D56D;
}

.bg-gold {
  background-color: #f19b19;
}

.text-gold {
  color: #f19b19;
}

.bg-black {
  background-color: #333;
}

.text-black {
  color: #333;
}

.rounded {
  border-radius: 5px;
}

.rounded-full {
  border-radius: 50%;
}

.top-dropdown-menu {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
  max-width: 200px;
  overflow: hidden;
  padding: 0;
  border: none;
  background: #faf9f9;
  border-top: 2px solid #63D56D;
}

.top-dropdown-menu .dropdown-item {
  max-width: 200px;
  line-height: 35px;
  border-bottom: 1px solid #ccc;
  transition: all ease 0.2s;
}

.top-dropdown-menu .dropdown-item:hover {
  border-left: 3px solid #63D56D;
  color: #63D56D;
  padding-left: 20px;
}

.top-dropdown-menu .dropdown-item:focus {
  background-color: transparent;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

.navbar-v2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
}

.navbar-brand {
  font-size: 1.5em;
}

.nav-link:hover {
  color: #63D56D;
}

.filter ul li {
  line-height: 50px;
}

.filter ul li a {
  border-left: 5px solid transparent;
}

.filter ul li a:hover {
  color: #63D56D;
  background-color: #fafafa;
}

.filter ul li a .down {
  transform: translateY(-50%);
}

.filter ul li a.avtive {
  color: #63D56D;
  background-color: #fafafa;
}

.filter ul li a.avtive .down {
  transform: translateY(-50%) rotate(180deg);
}

.filter ul ul li label:hover {
  color: #63D56D;
}

.filter ul ul li a {
  font-size: 15px;
  padding-left: 70px;
}

.filter ul ul.show {
  display: block;
}

.slider-container .bar .fill {
  background-color: #63D56D;
  width: 0%;
  border: 1 solid black;
}

#distance::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #63D56D;
  background-color: white;
  border-radius: 50%;
  transform: rotate(-45deg) translate(0%, 0%);
  cursor: pointer;
  outline: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#distance:active::-webkit-slider-thumb,
#distance::-webkit-slider-thumb:hover {
  border-bottom-left-radius: 0;
  transform: rotate(-45deg) translate(75%, -75%);
}

#distance:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 5px #333;
}

.range_v2::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #63D56D;
  background-color: white;
  border-radius: 50%;
  transform: rotate(-45deg) translate(0%, 0%);
  cursor: pointer;
  outline: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#main-content {
  /* class="bg-white px-5 py-3 bg-transparent" */
  min-height: calc(100dvh - 60px);
  width: 90%;
  margin: auto;
  margin-top: 72px;
  padding: 18px 0px;
}

#app {
  overflow: hidden;
}

.is-scrolling .sidebar-link:hover,
.is-scrolling .sidebar-link-l2:hover,
.is-scrolling .sidebar-link-l3:hover,
.is-scrolling nav.side-bar .links ul li a:hover {
  background: unset !important;
  color: unset !important;
  border-left-color: transparent !important;
}


.richtext-content {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  font-family: 'MyriadPro', sans-serif !important;
}



.richtext-content b {
  font-weight: bold !important;
}

.richtext-content table,
.richtext-content .wsite-multicol-table {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  border-collapse: collapse;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


/* remove border from table */
.richtext-content .table-bordered {
  border: none !important;
}

.richtext-content tbody,
.richtext-content .wsite-multicol-tr {
  display: block !important;
  width: 100% !important;
}

/* The multicol row: flex on wide, stack on mobile */
.richtext-content tr,
.richtext-content .wsite-multicol-tr {
  display: flex !important;
  /* flex-wrap: wrap !important; */
  width: 100% !important;
}

/* Each column cell */
.richtext-content td,
.richtext-content th,
.richtext-content .wsite-multicol-col {
  /* OVERRIDE the hardcoded width: 460px */
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: 1 1 280px !important;
  /* grow, shrink, min 280px before wrapping */
  display: block !important;
  padding: 1rem !important;
  /* override padding: 0px 20px */
  margin: 0 !important;
  border: 0 !important;
  box-sizing: border-box !important;
}

.richtext-content table td img {
  object-fit: contain;
}

/* .richtext-content img {
      max-width: 100% !important;
      width: auto !important;
      height: auto !important;
      display: block;
    } */

.richtext-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto !important;
  margin-top: 25px;
  margin-bottom: 25px;
  /* object-fit: contain ; */
}

.richtext-content ul {
  display: block;
  list-style-type: disc;
  list-style-position: outside;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 40px;
}

.richtext-content ol {
  display: block;
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 40px;
}



.richtext-content iframe {
  max-width: 100% !important;
}

/* =============================================
       TYPOGRAPHY — fluid scale
    ============================================= */
.richtext-content h1 {
  font-size: clamp(1.4rem, 4vw, 2.2rem) !important;
  line-height: 1.3 !important;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 0 0 1rem !important;
  padding: 0 0 0.75rem !important;
}

.richtext-content h2 {
  font-size: clamp(1.1rem, 3vw, 1.6rem) !important;
  line-height: 1.35 !important;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 0 0 0.75rem !important;
  padding: 0 !important;
}

.richtext-content p,
.richtext-content .paragraph,
.richtext-content div {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Spacer — collapse on mobile */
.richtext-content .wsite-spacer {
  height: 0 !important;
}

@media (min-width: 600px) {
  .richtext-content .wsite-spacer {
    height: 22px !important;
  }
}

@media (min-width: 640px) {

  .richtext-content td,
  .richtext-content .wsite-multicol-col {
    flex: 1 1 calc(50% - 2rem) !important;
    max-width: calc(50% - 2rem) !important;
    width: auto !important;
  }
}

.dropdown-hover {
  position: relative;
}

/* Start Navbar */
.submenu {
  display: block;
  position: absolute;
  z-index: 999;
  min-width: 200px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ── Level 2: drops down from navbar ── */
.submenu-level2 {
  top: 100%;
  left: 0;
  transform: translateY(-8px);
}

.submenu-level2:last-child {
  right: 0;
  left: auto;
}

.dropdown-hover:hover>.submenu-level2 {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── All has-children li must be the anchor for child submenus ── */
.has-children {
  position: relative;
}

/* ── Level 3+: fly out to the right, anchored to parent li ── */
.has-children>[class*="submenu-level"] {
  top: 0;
  left: 100%;
  transform: translateX(-8px);
}

.has-children:hover>[class*="submenu-level"] {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* ── Fly left when overflowing viewport ── */
.has-children>[class*="submenu-level"].open-left {
  left: auto;
  right: 100%;
  transform: translateX(8px);
}

.has-children:hover>[class*="submenu-level"].open-left {
  transform: translateX(0);
}

/* ── Links ── */
.submenu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.875rem;
  transition: background 0.15s;
}

.submenu li a:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.submenu li a.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* ── Caret down (level 1 → level 2) ── */
.dropdown-hover .fa-caret-down {
  display: inline-block;
  transition: transform 0.25s ease;
}

.dropdown-hover:hover>a .fa-caret-down {
  transform: rotate(180deg);
}

/* ── Caret right (level 2+) ── */
.has-children .fa-caret-right {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 0.75rem;
  opacity: 0.5;
}

.has-children:hover>a .fa-caret-right {
  transform: translateX(3px);
  opacity: 1;
}

/* End Navbar */

.donate-button {
  background: #f18127;
  padding: 4px 13px;
  border-radius: 14px;
  color: black;
  font-size: 13px;
  font-weight: 700;
}

.skiptranslate,
.goog-te-banner-frame,
body>.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Scroll Top Button */
#top-btn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 25px; /* Place the button at the bottom of the page */
  right: 15px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  cursor: pointer; /* Add a mouse pointer on hover */
  font-size: 18px; /* Increase font size */
  width: 40px;
  height: 40px;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#top-btn:hover {
  background-color: #555;
}