@import url("https://fonts.googleapis.com/css2?family=Sunflower:wght@300;500;700&&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
* {
  -webkit-tap-highlight-color: transparent;
}

.mob-navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.mob-navbar-overlay.show {
  display: flex;
}
.mob-navbar-overlay .mob-navbar {
  background-color: white;
  width: 90%;
  max-width: 400px;
  padding: 10px;
  border-radius: 10px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  height: auto;
  max-height: 90%;
  overflow-y: auto;
}
.mob-navbar-overlay .mob-navbar .close-btn {
  display: none;
}
.mob-navbar-overlay .mob-navbar.appear {
  transform: scale(1);
  opacity: 1;
}
.mob-navbar-overlay .mob-navbar.disappear {
  transform: scale(0.8);
  opacity: 0;
}
.mob-navbar-overlay .mob-navbar .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn {
  height: auto;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .menu-no-child {
  display: block;
  padding: 10px 40px 10px 12px;
  border-radius: 4px;
  width: 100%;
  text-align: left;
  color: rgba(37, 37, 37, 0.6);
  cursor: pointer;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  font-family: "Sunflower";
  font-weight: 700;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .menu-no-child:active {
  background-color: rgba(226, 226, 226, 0.8);
  color: #004b93;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .accordion-toggle {
  background: none;
  border: none;
  display: block;
  width: 100%;
  padding: 10px 40px 10px 12px;
  text-align: left;
  color: rgba(37, 37, 37, 0.6);
  cursor: pointer;
  font-size: 16px;
  position: relative;
  font-family: "Sunflower";
  font-weight: 700;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .accordion-toggle .arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(37, 37, 37, 0.6);
  border-bottom: 2px solid rgba(37, 37, 37, 0.6);
  transition: transform 0.3s ease;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .accordion-toggle.active {
  background-color: rgba(226, 226, 226, 0.8);
  border-radius: 4px 4px 0 0;
  color: #004b93;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .accordion-toggle.active .arrow {
  transform: translateY(-50%) rotate(225deg);
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .submenu {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(226, 226, 226, 0.4);
  list-style: none;
  padding-left: 10px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 6px 6px;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .submenu.show {
  max-height: 500px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .submenu .menu-child {
  background: none;
  border: none;
  width: 100%;
  padding: 12px 40px 12px 12px;
  text-align: left;
  color: rgba(37, 37, 37, 0.6);
  cursor: pointer;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  font-family: "Sunflower";
  font-weight: 700;
  border-radius: 2px;
}
.mob-navbar-overlay .mob-navbar .nav-menu .menu-btn .submenu .menu-child:active {
  color: #004b93;
  background-color: rgba(226, 226, 226, 0.6);
}/*# sourceMappingURL=mob-nav.css.map */