.menu {
  position: fixed;
  margin: auto;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(1rem, 4vh, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 20;
}

.menu.is-open {
  background: url("../../images/bg_snow.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  opacity: 1;
  visibility: visible;
  z-index: 31;
  padding-top: 0px;
}

.menu_panel {
  width: min(100%, 340px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.4s ease;
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow-y: auto;
}
.menu_panel::-webkit-scrollbar {
  display: none;
}
.menu_panel .footer_whatsapp {
  top: 20px;
  right: 64px;
  width: 20px;
  height: 20px;
}

.menu.is-open .menu_panel {
  transform: translateY(0);
  opacity: 1;
}

.menu_close {
  align-self: flex-end;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  position: absolute;
  top: 20px;
  right: 24px;
}

.menu_close img {
  width: 20px;
  height: 20px;
}

.menu_logo {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 24px;
}

.menu_logo img {
  max-width: 230px;
  width: 100%;
  height: auto;
}

.menu_nav {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.menu_nav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 370px) {
  .menu_nav {
    padding-right: 15px;
  }
}
@media screen and (max-width: 340px) {
  .menu_nav {
    padding-right: 30px;
  }
}

.menu_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.8rem;
  max-width: 231px;
  margin: 0 auto;
}

.menu_item {
  position: relative;
  width: 100%;
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 11.5px 1rem;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #2bbbed;
}
.menu_item.small_font {
  font-size: 12px;
}
.menu_item.blue:hover {
  background: #2bbbed; /* retain original background */
  color: #fff !important; /* retain text color */
}
.menu_item.progress {
  justify-content: space-between;
}
.menu_item.progress .menu_progress_text {
  position: absolute;
  right: 11.5px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: right;
  color: #fff;
}
.menu_item.progress .menu_progress_text .menu_progress_number {
  font-size: 14px;
}
.menu_item.progress:hover {
  background: #2bbbed; /* retain original background */
  color: #fff !important; /* retain text color */
}
.menu_item .left_icon {
  position: absolute;
  left: 16px;
}

/* Accessible focus style without changing foreground color */
.menu_item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.menu_item:active {
  transform: translateY(2px);
}

.menu_actions {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
@media screen and (max-width: 340px) {
  .menu_actions {
    right: 0px;
    bottom: 0px;
  }
}

.menu.is-open .menu_actions {
  pointer-events: auto;
}

.menu_fab {
  background: transparent;
  border: none;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.35s ease;
  opacity: 0;
  transform: translateY(15px) scale(0.9);
  display: flex;
  flex-direction: column;
}
.menu_fab .menu_fab_icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.menu_fab img {
  width: 30px;
  height: auto;
  display: block;
}

.menu_fab span {
  display: inline-block;
  color: #fff;
}

.menu.is-open .menu_fab {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.menu.is-open .menu_item {
  animation: slideFade 0.55s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
}
.menu.is-open .menu_item.white {
  background: #fff;
  color: #2bbbed;
}

.menu.is-open .menu_item:nth-child(1) {
  animation-delay: 0.05s;
}

.menu.is-open .menu_item:nth-child(2) {
  animation-delay: 0.1s;
}

.menu.is-open .menu_item:nth-child(3) {
  animation-delay: 0.15s;
}

.menu.is-open .menu_item:nth-child(4) {
  animation-delay: 0.2s;
}

.menu.is-open .menu_item:nth-child(5) {
  animation-delay: 0.25s;
}

.menu.is-open .menu_item:nth-child(6) {
  animation-delay: 0.3s;
}

.menu.is-open .menu_item:nth-child(7) {
  animation-delay: 0.35s;
}

.menu.is-open .menu_item:nth-child(8) {
  animation-delay: 0.4s;
}

.menu.is-open .menu_item:nth-child(9) {
  animation-delay: 0.45s;
}

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }
  60% {
    opacity: 1;
    transform: translateY(4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.no-js .menu {
  display: none;
}

.menu::-webkit-scrollbar {
  width: 10px;
}

.menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 6px;
} 
@media (min-width: 1024px) {
  .menu.is-open {
    background: rgba(0, 0, 0, 0.6);
  }
  .menu.is-open::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../../images/bg_snow.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
    height: 360px;
  }
  .menu .menu_panel {
    max-width: 1024px;
  }
  .menu .menu_panel .menu_logo {
    position: absolute;
    width: 104px;
    height: auto;
    margin-top: 0;
    top: 12px;
    left: 0;
  }
  .menu .menu_panel .menu_nav {
    margin-top: 100px;
    padding-bottom: 0px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    gap: 16px;
    padding-right: 100px;
  }
  .menu .menu_panel .menu_nav .menu_list {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }
  .menu .menu_panel .menu_actions {
    position: absolute;
    right: 0px;
    top: 180px;
    align-items: flex-end;
    padding-right: 16px;
  }
}/*# sourceMappingURL=menu.css.map */