.ac-options {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  &:hover {
    background-color: $color-border;
  }

  &:focus-within {
    .options-items {
      opacity: 1;
      visibility: visible;
    }
  }

  &.is-horaizental {
    .option-dots {
      flex-direction: row;

      span {
        margin-bottom: 0;
        margin-right: 2px;
      }
    }
  }

  &.is-centered {
    .option-dots {
      align-items: center;
    }

    .options-items {
      left: 50%;
    }
  }

  &.is-right {
    .option-dots {
      align-items: flex-end;
    }

    .options-items {
      right: 0px;
    }
  }

  .option-dots {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    align-items: flex-start;
    border: none;
    background-color: transparent;
    transition: 0.3 ease-in-out;

    &:hover {
      color: $ac-primary;
    }

    span {
      width: 4px;
      height: 4px;
      background-color: $primary-20;
      border-radius: 50%;
      margin-bottom: 1px;
    }
  }

  .options-items {
    border-radius: 4px;
    position: absolute;
    z-index: 99;
    background-color: $white-100;
    min-width: 160px;
    top: 30px;
    padding: 5px 0;
    border: 1px solid $color-border;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    text-align: left;
    box-shadow:
      0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
      0 0px 0 1px rgba(10, 10, 10, 0.02);

    li {
      .list-button {
        width: 100%;
        background-color: transparent;
        border: none;
        cursor: pointer;
        font-weight: 400;
        text-align: left;
        color: $color-text;
        font-size: 1rem;
        padding: 10px 30px;
        display: block;

        &:hover {
          background-color: $color-border;
          color: $ac-primary;
        }

        span {
          background-color: transparent;

          &.icon {
            margin-right: 5px;
          }
        }
      }

      a {
        font-size: 1rem;
        padding: 7px 15px;
        display: block;
        text-decoration: none !important;
        color: $primary-10 !important;
        border: none;

        &:hover {
          background-color: $color-border;
          color: $ac-primary !important;
        }
      }
    }
  }
}
