/*
1 colore bottone
2 bordo/hover
3 testo
*/
[data-type=PopupTrigger] {
  cursor: pointer;
}

[data-popup-for] {
  display: none;
  position: absolute;
  z-index: 10020;
  min-height: fit-content;
  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: center;
  align-items: center;
  padding: 1rem;
}

.selectList {
  min-height: unset;
  /*height: unset !important;*/
  max-height: 80svh;
  overflow-y: auto !important;
}
.selectList .listContainer__header {
  height: 60px;
}
.selectList .searchableListContainer {
  height: unset;
}
.selectList .searchableList {
  box-shadow: none;
  margin: 0;
}
.selectList .searchableList > div, .selectList .searchableList table {
  margin-top: 0;
}

.popUpContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10050;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5215686275);
  backdrop-filter: blur(3px);
  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;
  background-color: var(--bg-light);
}
.popUpContainer .popup.shown {
  display: block;
}
.popUpContainer .popup.popup--wFit {
  width: fit-content;
}
.popUpContainer .popup__header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--fg-light);
  background-color: var(--bg);
  justify-content: center;
}
.popUpContainer .popup__header .btn {
  box-shadow: none;
}
.popUpContainer .popup__header h3 {
  margin-inline: auto;
}
.popUpContainer .popup__body {
  height: 100%;
  width: 100%;
  padding: 0 1rem;
  padding-right: 0.75rem;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.popUpContainer .popup__footer {
  display: flex;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--fg-light);
  background-color: var(--bg);
  justify-content: flex-end;
  gap: 0.5rem;
}

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