@import '../../scss/mixin';

.listing {
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  /*
  max-height: calc(100% - 65px);
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
  */
}

.title {
  border-right: 4px solid transparent;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: var(--neutral-700);
  border-bottom: 1px solid var(--neutral-400);
  padding: 12px;

  @include bp(md) {
    padding: 20px 24px;
  }
}

.empty {
  justify-content: flex-start;
  padding: 12px 24px;
  border-right: 4px solid transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--neutral-700);
}
