.popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background: rgba(0, 0, 0, 0.32);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}
.popup-container-active {
  opacity: 1;
  visibility: visible;
}
.popup-container .popup-card {
  max-width: 92vw;
  pointer-events: auto;
  width: 1100px;
  position: static;
  box-sizing: border-box;
  z-index: 1000;
  background: #fff;
  max-height: 90vh;
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
.popup-container .popup-card-alert {
  width: 420px;
  max-width: 95%;
}
.popup-card-alert .popup-content{
  padding: 0 20px 10px 20px;
}

.popup-container .popup-card .popup-header {
  padding: 5px 0;
}

.popup-container .popup-card .popup-header .popup-header-title {
  font-weight: 600;
}
.popup-container .popup-card .popup-content {
  padding: 0 20px 10px 20px;
}
.popup-container .popup-card .popup-content-scroll {
  overflow-y: auto;
  max-height: 80vh;
  height: 10000px;
}
p {
  list-style-type: disc;
}
.popup-container .popup-card .popup-content p,
.popup-content span,
.popup-content a,
.popup-content label {
  /* font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace !important; */
  /* font-size: 14px; */
}

.popup-container .popup-card .popup-footer {
  position: sticky;
  bottom: 0;
  left: 0;
  background: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 10px;
}

@media (max-width: 576px) {
  .popup-container .popup-card .popup-content {
    padding: 0 5px 10px 5px;
}
}