#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.menu-container {
  background-color: #FFFFFF;
  display: flex;
  width: 345px;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-shrink: 0;
  margin-left: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
}

#menu-overlay.active .menu-container {
  transform: translateX(0);
}

#menu-toggle {
  cursor: pointer;
}

.menu-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.menu-header {
  display: flex;
  padding: 20px 20px 10px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-bottom: 1px solid var(--Dropdown-list-separator, #EFEAFB);
}

.menu-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

.menu-header-title {
  color: var(--Neutral-Gray-500, #747487);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
}

.menu-header-close {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-header-close div {
  color: var(--Primary-Principal, #5D25D0);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
}

.menu-header-close img {
  width: 14px;
  height: 14px;
}

.menu-body-list {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

#menu-body-list-first {
  border-bottom: 1px solid var(--Dropdown-list-separator, #EFEAFB);
}

.menu-body-list p {
  color: var(--Neutral-Gray-500, #747487);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  margin: 0;
}

.menu-body-list-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-body-list-element {
  display: flex;
  padding: 7px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--Neutral-Gray-900, #2E2E3A);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  text-decoration: none;
}

.menu-body-list-element img {
  width: 14px;
  height: 14px;
}

.menu-scrollable {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100vh;
  justify-content: space-between;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.menu-footer {
  display: flex;
  padding: 30px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background-color: #F7F7FA;
}

.menu-footer-tgb-icon {
  width: 20.88px;
  height: 24px;
}

.menu-footer-link {
  color: var(--Gray-Shade-900, #1C1C30);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  text-decoration: none;
}

@media (max-width: 1300px) {
  .menu-container {
    width: 269px;
  }

  .menu-text {
    display: none;
  }
}

@media (max-height: 800px) {
  .menu-scrollable {
    overflow-y: auto;
  }
}

.menu-body-list-element:hover {
  color: #5D25D0;
}

.menu-body-list-element:active {
  color: #4A1FB1;
}

.menu-footer:hover {
  background-color: #ECECF0;
}

.menu-footer:active {
  background-color: #E0E0E6;
}

.menu-header-close:hover{
  color:#2B1169;
}

.menu-header-close:hover{
  color:#2B1169;
}
