.dropdown {
  position: fixed;
  top: 13px;
  border-radius: 30px;
  padding: 20px 30px 0px 30px;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
  width: 30px;
  overflow: hidden;
  background-color: transparent;
}
.dropdown.open {
  top: 2.75px;
  background-color: #232323;
  width: calc(min(375px, 100vw) - 60px);
  padding-bottom: 50px;
  box-shadow: 0px 0px 30px 0px rgba(35, 35, 35, 0.4);
}
.dropdown.open button {
  height: 55px;
}
.dropdown.open button img {
  filter: invert(0) !important;
}
.dropdown button {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.dropdown button img {
  filter: invert(1);
  width: 30px;
  height: 30px;
}
.dropdown .menu {
  width: 100%;
  height: 0px;
  overflow: hidden;
}
.dropdown .menu .list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: -moz-fit-content;
  height: fit-content;
}
.dropdown .menu a {
  display: block !important;
  color: #FFFFFF;
}
.dropdown .menu a.active {
  color: #5C666F;
}

html[data-theme=base]:root .dropdown button img {
  filter: invert(0);
  width: 30px;
  height: 30px;
}

html[data-theme=dark]:root .dropdown button img {
  filter: invert(0);
  width: 30px;
  height: 30px;
}

@media (max-width: 850px) {
  .dropdown {
    left: calc(50% + min(1300px, 100vw - 100px) / 2 - 30px);
  }
  .dropdown.open {
    left: calc(50% + min(1300px, 100vw - 100px) / 2 - min(375px, 100vw) + 60px);
    padding-bottom: 50px;
    top: 2.75px;
  }
  .dropdown.open button {
    height: 55px !important;
  }
}/*# sourceMappingURL=dropdownMenu.css.map */