/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
[data-popup-for] {
  display: none;
  position: absolute;
  z-index: 10020;
  /*min-height: fit-content;*/
  height: auto;
  background-color: var(--bg-light);
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.625rem 0 rgba(46, 38, 61, 0.2);
  padding: 0.5rem;
}
[data-popup-for].shown {
  display: block;
}

.popUpContainer:has(.selectList) {
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1rem;
  padding-right: calc(1rem + 5px);
}

.selectList {
  max-width: 800px;
  min-height: unset;
  max-height: 50svh;
  overflow-y: auto !important;
}
.selectList .listContainer__header {
  height: 60px;
  background-color: var(--secondary-dark);
}
.selectList .searchableList > div, .selectList .searchableList table {
  margin-top: 0;
}
.selectList .searchableList__table thead .listRow {
  background-color: var(--secondary-dark);
}

.popUpContainer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10050;
  height: 100svh;
  width: 100svw;
  background: rgba(0, 0, 0, 0.5215686275);
  display: none;
  justify-content: center;
  align-items: center;
}
.popUpContainer:has(.popup.shown) {
  display: flex;
}
.popUpContainer .popup {
  height: 80svh;
  width: 80svw;
  margin: auto;
  padding: 0;
  overflow: hidden;
  display: none;
}
@media (max-width: 425px) {
  .popUpContainer .popup {
    height: 100svh;
  }
}
.popUpContainer .popup.shown {
  display: block;
}
.popUpContainer .popup.popup--wFit {
  width: fit-content;
  max-width: calc(100svw - 2rem);
}
@media (max-width: 425px) {
  .popUpContainer .popup.popup--wFit {
    max-width: 100svw;
  }
}
.popUpContainer .popup__header {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--bg-dark);
  background-color: var(--bg-light);
  justify-content: center;
}
.popUpContainer .popup__header .btn {
  box-shadow: none;
}
.popUpContainer .popup__header h3 {
  margin-inline: auto;
}
.popUpContainer .popup__body {
  height: calc(100% - 140px);
  width: 100%;
  padding: 0 1rem;
  padding-right: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.popUpContainer .popup__body:last-child {
  height: calc(100% - 70px);
}
.popUpContainer .popup__footer {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--bg-dark);
  background-color: var(--bg-light);
  justify-content: flex-end;
  gap: 0.5rem;
}

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