.mymoods-common-menu {
  position: sticky;
  top: 50px;
  width: var(--mymoods-side-menu-width);
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 60px 40px;
  margin-right: 0;
  overflow: hidden;
  height: fit-content;
  pointer-events: none;

  @media screen and (max-width: 768px) {
    pointer-events: auto;
    padding: 0 20px;
    box-shadow: 0 3px 6px #0000000A;
  }

  .mymoods-common-menu__title {
    font-family: var(--mymoods-font-poppins), sans-serif;
    font-weight: var(--mymoods-font-weight-extrabold);
    font-size: 28px;
    color: var(--mymoods-darkgray);

    @media screen and (max-width: 768px) {
      padding: 0;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 18px;
    }

    .icon.icon-caret {
      display: none;
      width: 18px;
      height: 10px;

      @media screen and (max-width: 768px) {
        display: block;
      }
    }
    .icon-caret-wrapper {
    }
  }

  .mymoods-common-menu__links {
    list-style: none;
    pointer-events: auto;
    margin: 60px 0 0;
    padding: 0;
    gap: 16px;

    @media screen and (max-width: 768px) {
      margin: 0;
    }

    .mymoods-common-menu__item {
      font-size: 16px;
      margin-bottom: 16px;
      color: black;

      .mymoods-common-menu__link {
        font-size: 16px;
        color: black;
        text-decoration: none;
      }

      .mymoods-common-menu__subtitle {
        font-size: 14px;
      }
    }
  }
}