/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.searchableListContainer .searchableListStickyPad {
  background-color: var(--bg);
  height: 12px;
}

.searchableList {
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(46, 38, 61, 0.18);
  margin: 0.5rem;
  margin-top: 0;
}
.searchableList[data-list-layout=PAGE], .searchableList[data-list-layout=COMPLETE] {
  height: calc(100% - 1rem - 12px);
}
.searchableList[data-list-layout=PAGE] .searchableList__section:first-child, .searchableList[data-list-layout=COMPLETE] .searchableList__section:first-child {
  height: 80px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.searchableList__section {
  padding: 1rem 1rem;
  min-height: 64px;
  border-bottom: 1px solid var(--bg-dark);
  background-color: var(--bg-light);
}
.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);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.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 .btn {
  min-width: 120px;
}
.searchableList__table {
  width: 100%;
}
.searchableList__table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  caption-side: bottom;
}
.searchableList__table .thead {
  background: var(--bg);
}
.searchableList__table .thead .listRow {
  border-bottom: 1px solid var(--bg-dark);
}
.searchableList__table .thead .listRow .listCell {
  text-transform: uppercase;
  font-weight: 500;
  user-select: none;
}
.searchableList__table .listRow:not(:last-of-type) {
  border-bottom: 1px solid var(--bg);
}
.searchableList__table .listRow.selected {
  background-color: 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--large {
  width: 99%;
}
.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__table .listRow .listCell [data-list-sorting-icon] {
  vertical-align: middle;
  margin-left: 0.5rem;
}
.searchableList__table .listRow .listCell > .listCell {
  padding: 0.25rem 0;
}
.searchableList[data-list-row-click=True] .tbody .listRow:hover {
  cursor: pointer;
  background-color: var(--bg);
}
.searchableList[data-list-row-click=True] .tbody .listRow.active {
  background: linear-gradient(270deg, var(--primary) 0%, color-mix(in sRGB, var(--primary) 52%, var(--white)) 100%);
  color: var(--white);
}

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