//
//  DIALTONE
//  COMPONENTS: COMBOBOX
//
//  These are combobox classes for Dialpad's design system Dialtone.
//  For further documentation of these and other classes,
//  visit https://dialtone.dialpad.com/components/combobox
//
//  TABLE OF CONTENTS
//  • EMPTY LIST
//  • LOADING LIST LIST
//
//  ============================================================================
//  $   EMPTY LIST
//  ----------------------------------------------------------------------------
.d-combobox__empty-list {
  padding: var(--dt-space-0);

  &-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--dt-space-300) var(--dt-space-450);
    font-size: var(--dt-font-size-200);
    line-height: var(--lh4);
  }
}

//  ============================================================================
//  $   LOADING LIST
//  ----------------------------------------------------------------------------
.d-combobox__loading-list {
  max-height: var(--dt-size-925);
  margin-top: var(--dt-space-400);
  padding: var(--dt-space-0);
  overflow-y: auto;
}
