.dropdown-checklist {

  &__options {
    display: flex;
    flex-direction: column;
  }

  &__search {
    display: flex;
    flex-direction: column;

    &__input {
      margin-bottom: 10px;
    }
  }

  &__items-list {
    overflow-x: hidden;
    overflow-y: auto;
  }

  &__item {
      height: 35px;
      opacity: 0.5;
      display: flex;

      &:hover {
        opacity: 1;
      }

      &--selected {
        opacity: 1;
        background-color: $ui-1-color;
      }

      &__info {
        cursor: pointer;
        display: flex;
        align-items: center;
        flex: 1;

        img {
          height: 25px;
          width: 25px;
          border-radius: 50%;
          margin: 0 10px;
        }
      }

      .checkbox {
        margin-right: 25px;
        margin-top: 5px;

        label {
          &:after {
            border-color: $brand-color;
          }
        }
      }
    }
}