.alert-modal {
  display: none;
}
.alert-modal__boundary {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1.25rem;
}
.alert-modal__content {
  max-width: 800px;
  background-color: #c8102e;
  text-align: center;
  position: relative;
  padding: 1.875rem 1.875rem 1.25rem 1.875rem;
}
@media (min-width: 900px) {
  .alert-modal__content {
    padding: 4.375rem 4.375rem 3.125rem 4.375rem;
  }
}
.alert-modal__dismiss {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center center;
  background-image: url("../DocumentDefault/Assets/close-icon-white.svg");
  opacity: 1;
}
@media (min-width: 900px) {
  .alert-modal__dismiss {
    width: 60px;
    height: 60px;
  }
}
.alert-modal__title {
  display: block;
  font-family: "weiss-bold";
  font-size: 1.375rem;
  line-height: 1.875rem;
  margin: 1.875rem 0 1.1875rem 0;
  margin-top: 0;
  color: #ffffff;
  text-transform: uppercase;
}
@media only screen and (min-width: 900px) {
  .alert-modal__title {
    font-size: 1.625rem;
    line-height: 2rem;
  }
}
.alert-modal__text {
  font-family: "legacy-book";
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #02132b;
  color: #ffffff;
}
@media only screen and (min-width: 900px) {
  .alert-modal__text {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}