.fupl-alert-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: $fupl-alert-overlay-z-index;

  backdrop-filter: blur(2px);

  @supports not (backdrop-filter: blur(2px)) {
    background-color: $fupl-alert-overlay-fallback-bg;
  };
}
.fupl-alert {
  position: absolute;
  top: 5px;
  left: 50%;
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 600px;
  max-width: 100%;
  min-height: 200px;
  // max-height: 100%;

  color: $fupl-alert-color;
  background-color: $fupl-alert-bg;

  border: $fupl-alert-border;
  border-radius: $fupl-alert-border-radius;
  box-shadow: $fupl-alert-box-shadow;
  transform: translateX(-50%);

  > div {
    width: 100%
  }
}
.fupl-alert-header {
  padding: .5rem;
  font-weight: $fupl-alert-header-font-weight;
  text-align: center;
  border-bottom: $fupl-alert-border;
}
.fupl-alert-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  // text-align: center;

  ul {
    margin: 0 0 .5rem;
    // width:100%;
    text-align: left;
  }
}
.fupl-alert-footer {
  padding: .5rem;
  text-align: center;
  border-top: $fupl-alert-border;
}
