.popup--pop-up {
  position: fixed;
  left: 1rem;
  right: auto;
  bottom: 1rem;
  z-index: 99;
  display: none;
}

.popup--box {
  background-color: #094AB8;
  color: white;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  position: relative;
  max-width: 600px;
  float: none;
  padding: 3.5rem;
}
.popup--box p {
  color: white;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0rem;
}
.popup--box h1, .popup--box h2, .popup--box h3, .popup--box h4 {
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.popup--link:hover {
    text-decoration: none;
}


.popup--close-button {
  /* font-size: 12px; */
  height: 24px;
  width: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: absolute;
  right: 1.25rem;
  top: 1.5rem;
  margin-right: 0;
  margin-top: 0;
  color: white;
  text-decoration: none;
}

.popup--close-button:hover {
  text-decoration: none;
  color: white;

}


@media screen and (max-width: 767px) {
    .popup--pop-up {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 99;
      display: none;
    }
  .popup--box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 5rem;
  }

  .popup--content {
    max-height: 575px;
    overflow-y: auto;
  }

}
