.notification-dialog {
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Now", "Segoe UI", "Segoe WP", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
}

.notification-dialog img {
  display: block;
  max-width: 100%;
  height: auto;
}

.notification-dialog > section > h2 {
  font-size: 1.875rem;
  line-height: normal;
  letter-spacing: 0.14px;
  font-family: "GT Walsheim", "Segoe UI", "Segoe WP", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  margin: 0;
  font-weight: bold;
}

.notification-dialog > section > p {
  font-size: 0.9375rem;
  line-height: 1.33;
  letter-spacing: 0.2px;
  margin: 10px 0 0 0;
}

.notification-dialog > section {
  max-width: 450px;
  width: 80vw;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 12px 0 rgb(0 0 0 / 10%);
  max-height: calc(100vh - 80px);
  overflow: auto;
}

.notification-dialog > section .button-row {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.notification-dialog > section button {
  width: 11.3em;
  text-decoration: none;
  margin: 0 auto;
  padding: 10px 15px;
  color: black;
  background: white;
  display: inline-block;
  border-radius: 23px;
  border: 2px solid black;
  font-family: inherit;
  font-size: 0.9375rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-align: center;
}

.notification-dialog > section button.primary {
  background-color: black;
  color: white;
}

.notification-dialog > section button:focus-visible {
  outline: #0053c5 auto 1px;
}

.notification-dialog > section .close-button {
  float: right;
  border: none;
  border-radius: unset;
  width: auto;
}

.notification-dialog > section .close-button img {
  width: 18px;
  height: 18px;
}

.notification-dialog > section .button-row > *:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .notification-dialog > section {
    padding: 25px;
    max-height: calc(100vh - 70px);
  }
}

@media screen and (max-width: 767px) {
  .notification-dialog > section {
    padding: 15px;
    max-height: calc(100vh - 50px);
  }
  .notification-dialog > section .button-row {
    margin-top: 15px;
  }
}
