uex-input-select {
  select[multiple] {
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
  }

  .form-control.multiple {
    position: relative;
    overflow: hidden;

    .chip-scroll-wrapper {
      position: absolute;
      top: $input-padding-y * .75;
      left: $input-padding-x;
      right: $input-padding-x;
      bottom: -1.7rem;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;

      .chip-wrapper {
        position: absolute;
        display: table;
        top: 0;
        left: 0;
      }
    }

    &.disabled {
      .chip-scroll-wrapper {
        opacity: $btn-disabled-opacity;
      }
    }
  }
}
