/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
:has(> .popup) {
  position: relative;
}

[data-type=PopupTrigger] {
  cursor: pointer;
}

[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 0.375rem rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}
[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 {
  max-height: 80svh;
  height: 100%;
  width: 50svw;
  max-width: 800px;
  margin: auto;
  padding: 0;
  overflow: hidden;
  display: none;
  background-color: var(--bg-light);
}
@media (max-width: 1024px) {
  .popUpContainer .popup {
    width: 70svw;
  }
}
@media (max-width: 768px) {
  .popUpContainer .popup {
    width: 80svw;
  }
}
@media (max-width: 425px) {
  .popUpContainer .popup {
    width: 90svw;
    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.popup--hFit {
  height: fit-content;
  max-height: calc(100svh - 2rem);
}
.popUpContainer .popup__header {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  padding-bottom: 0;
  background-color: var(--bg-light);
}
.popUpContainer .popup__header .btn {
  box-shadow: none;
  margin-left: auto;
  padding: 0;
}
.popUpContainer .popup__header .btn:hover {
  text-decoration: none !important;
}
.popUpContainer .popup__body {
  max-height: calc(100% - 140px);
  padding: 1.25rem;
  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: 1.25rem;
  padding-top: 0;
  background-color: var(--bg-light);
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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