:host {
  display: inline-block;
  .selected {
    &.focus {
      .values {
        input.value {
          width: 5em !important;
        }
      }
    }

    width: 100%;

    .value {
      border: none;
      padding: 0;

      &:focus {
        border: none;
        outline: none;
      }
    }

    oi-bi {
      vertical-align: initial;
    }

    .values {
      margin: 0;
      padding: 0;

      li {
        list-style: none;
        margin-bottom: 0.1em;
        padding: 0.1rem 0.5rem;
      }

      input.value {
        width: 0;
      }

      li:not(.input) {
        background-color: aliceblue;
        margin-right: 0.25em;

        border-radius: 0.5;
      }
    }
  }
  oi-dropdown{
    display: block;
  }
  .expander {
  }

  .dropdown-menu {
    padding: 0.3em 0;
    margin: 0;
    border-radius: 0.5em;
    box-shadow: 5px 5px 5px #cdcfcf;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: solid 1px #cdcfcf;
    margin-top: 0.375rem;
    max-height: 26em;
    overflow: scroll;

    &.searching {
      li {
        display: none;

        &.match {
          display: block;
        }
      }
    }

    li {
      list-style: none;

      border-bottom: solid 1px #ccc;

      > div.form-check {
        padding: 0.375em 0 0.375em 2em;

        .form-check-input {
          margin-top: 0.45em;
        }
      }

      &:last-child {
        border-bottom: none;
      }

      &.active {
        background-color: aliceblue;
      }

      &:hover {
        background-color: aliceblue;
      }

      .form-check-label {
        margin-left: 0.5rem;
      }
    }
  }
}
