.sp-menu {
  display: flex;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 100px;
  left: 200px;
  z-index: 9;

  &__caption {
    transform: translate(-50%, -100%);
    min-width: 150px;
    margin-left: 25px;
  }

  &__quality {
    transform: translate(-50%, -100%);
    left: 50%;
    margin-top:-110px;

    &:after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      display: block;
      width: 2px;
      height: 6px;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid rgba(0, 0, 0, 0.7);
    }
  }

  &__box {
    padding: 15px 0 14px;
  }

  &__list {
    list-style-type: none;
    margin: 0;
    padding: 0;

    &-item {
      position: relative;
      font-size: 12px;
      font-family: $fontBold;
      color: $iconPrimaryColor;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 10px 0 11px;
      cursor: pointer;
      opacity: 1;

      &:hover {
        span {
          color: $iconActiveColor;
        }
      }

      &:first-child {
        padding-top: 0;
      }

      &:last-child {
        padding-bottom: 0;
        &:before {
          display: none;
        }
      }

      span {
        transition: $t-basic;
        padding: 0 20px;
        pointer-events: none;
      }

      svg {
        display: none;
      }

      &:before {
        content: '';
        display: block;
        position: absolute;
        height: 1px;
        width: 100%;
        background-color: rgba($white, .2);
        bottom: 0;
      }

      &--link {
        color: $white;

        a {
          text-decoration: none;
          color: $melon;
        }
      }

      &__active {
        color: $iconActiveColor;
        justify-content: space-between;

        svg {
          display: flex;
          margin-right: 12px;
        }
      }
    }
  }

  &--hidden {
    display: none;
  }
}
