/*
*   prePayAlert.CSS
***************************************************************************** */
.prepayalert-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 100;
}

.prepayalert-modal {
  background-color: white;
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

  display: flex;
   flex-direction: column;

  min-width: 450px;
  max-width: 600px;
}

div.alert-message-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 10px;
}

.alert-message-title {
  display: block;
  margin: auto;
  width: 100%;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: underline;
  line-height: 20px;
}

.alert-message {
  display: block;
  margin: 10px auto;
  width: 75%;
  font-weight: bold;
  font-size: 0.9em;
}

.alert-button {
  position: relative;
  margin: 10px auto;
  width: 40%;
  height: 30px;
  font-size: 1.2em;
  padding: 0;
}

.alert-logo {
  display: block;
  margin: 20px auto;
  position: relative;
  width: 120px;
  height: auto;
}
