/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.searchableListContainer:has(.searchableList[data-list-layout=PAGE]) {
  margin-top: 2rem;
}

.searchableList {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(46, 38, 61, 0.18);
  margin: 0.5rem;
  /*.btn {*/
  /*min-width: $list-btn-min-w;*/
  /*}*/
}
.searchableList__section {
  padding: 1rem 1rem;
  min-height: 64px;
  border-bottom: 1px solid var(--bg-dark);
}
.searchableList__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}
@media (max-width: 425px) {
  .searchableList__header {
    flex-direction: column;
  }
}
.searchableList__header h4 {
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .searchableList__header h4 {
    font-size: 1.2rem;
  }
}
.searchableList__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--fg-light);
  border-top: 1px solid var(--bg-dark);
}
.searchableList__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.searchableList__search input {
  width: 100%;
}
.searchableList__filter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.searchableList__filter__body {
  width: 100%;
}
.searchableList__filter .searchableList__buttons {
  justify-content: flex-end;
}
.searchableList__filter .searchableList__buttons .btn:first-of-type {
  margin-right: auto;
}
.searchableList__buttons {
  display: flex;
  gap: 0.5rem;
}
.searchableList__table {
  width: 100%;
  overflow-x: auto;
}
.searchableList__table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  caption-side: bottom;
}
.searchableList__table .thead {
  background: var(--bg);
  position: sticky;
  top: 0;
}
.searchableList__table .thead .listRow {
  border-bottom: 1px solid var(--bg-dark);
}
.searchableList__table .thead .listRow .listCell {
  text-transform: uppercase;
  font-weight: 500;
}
.searchableList__table .listRow:not(:last-of-type) {
  border-bottom: 1px solid var(--bg);
}
.searchableList__table .listRow.hide {
  display: none;
}
.searchableList__table .listRow .listCell {
  padding: 0.75rem 1rem;
}
.searchableList__table .listRow .listCell--small, .searchableList__table .listRow .listCell--hidden {
  width: 1%;
  min-width: 60px;
  white-space: nowrap;
}
.searchableList__table .listRow .listCell--alignLeft {
  text-align: left;
}
.searchableList__table .listRow .listCell--alignCenter {
  text-align: center;
}
.searchableList__table .listRow .listCell--alignRight {
  text-align: right;
}
@media (max-width: 375px) {
  .searchableList__table .listRow .listCell--breakpoint-2XS {
    display: none;
  }
}
@media (max-width: 425px) {
  .searchableList__table .listRow .listCell--breakpoint-XS {
    display: none;
  }
}
@media (max-width: 640px) {
  .searchableList__table .listRow .listCell--breakpoint-SM {
    display: none;
  }
}
@media (max-width: 768px) {
  .searchableList__table .listRow .listCell--breakpoint-MD {
    display: none;
  }
}
@media (max-width: 1024px) {
  .searchableList__table .listRow .listCell--breakpoint-LG {
    display: none;
  }
}
@media (max-width: 1280px) {
  .searchableList__table .listRow .listCell--breakpoint-XL {
    display: none;
  }
}
@media (max-width: 1536px) {
  .searchableList__table .listRow .listCell--breakpoint-2XL {
    display: none;
  }
}
.searchableList[data-list-row-click=True] .tbody .listRow:hover {
  cursor: pointer;
  background-color: var(--primary-light);
}

/*# sourceMappingURL=searchableList.css.map */
