.menu-dropdown {
  position: absolute;
  right: 0;
  top: -2rem;
  width: 34rem;
  background-color: #121021;
  color: #fff;
  text-align: right;
  padding-top: 12rem;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease-in-out;
  z-index: -1;

  @include screen(md,max) {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }

  &.active {
    opacity: 1;
    transition: opacity .2s ease-in-out;
    transform: none;
    pointer-events: all;
    z-index: 7;
  }

  a {
    display: block;
    padding: 1.5rem 3rem;
    color: inherit;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity .2s ease, background-color .2s ease;

    @include screen(md,max) {
      font-weight: 700;
      padding: 2rem 6rem;
      font-size: 2rem;
    }
  }

  &__apps {
    width: 100%;

    @include screen(md,max) {
      margin-top: auto;
    }

    a {
      position: relative;
      font-weight: 700;
      padding-top: 2rem;
      padding-bottom: 2rem;

      @include screen(md,max) {
        padding-top: 3rem;
        padding-bottom: 3rem;
      }

      &:hover {
        opacity: 0.8;
      }

      &:first-child {
        background-color: #784fcb;
      }

      &:last-child {
        background-color: #6a45b6;
      }
    }

    img {
      position: absolute;
      left: 2.5rem;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 30px;
      height: 30px;
      object-fit: contain;
      font-family: 'object-fit: contain;';
    }
  }

  &__links {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    width: 100%;

    a:hover {
      background-color: #000;
    }
  }

  &__close {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    padding: 0;
    outline: none;
    margin-right: 2.5rem;
    cursor: pointer;

    @include screen(md,max) {
      width: 4rem;
      height: 4rem;
      margin-right: 6rem;
    }
  }
}
