.more-menu {
  position: absolute;
  top: 25px;
  right: 0;
  background-color: $white;
  border: 1px solid darken($grey-100, 15%);
  width: 160px;
  z-index: 101;
  display: none;

  &--open {
    display: block;
  }

  &__wrapper {
    position: relative;
    display: inline-block;
    width: auto;
  }

  &__background {
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }

  &__list {
    @extend %list;
  }

  &__list-item {
    width: 100%;
    font-size: .875rem;
    border-bottom: 1px solid $grey-100;

    &:last-of-type {
      border: 0;
    }

    & a {
      display: inline-block;
      width: 100%;
      padding: 12px 20px;
      text-align: left;
      color: $nearly-black;
      text-decoration: none;

      &:hover {
        background-color: $grey-100;
      }
    }
  }
}
