#ModalAlert-Box {
    max-width: 95vw;

    /*top: 50% !important;*/
    left: 50% !important;
    /*width: 300px !important;*/
  background: none;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.75);
  transition: transform 0.1s, opacity 0.1s;
    border-radius: 1rem;
    overflow: hidden;

}

#ModalAlert-Box.ModalAlert-open {
  opacity: 1;
  transform: scale(1) translate(-50%, 0);
}

#ModalAlert-InBox {
  padding-top: 15px;
  background: #FFF;
}

#ModalAlert-BoxContent {
  background: #FFF;
  padding: 0px 20px;
}

#ModalAlert-BoxContenedor {
  padding: 8px 0px 5px 60px;
  text-align: left;
    font-family: "Source Sans Pro", sans-serif;
  font-size: 13.2px;
  color: #444;
}

#ModalAlert-BoxContenedor h1,#ModalAlert-BoxContenedor h2,#ModalAlert-BoxContenedor h3,#ModalAlert-BoxContenedor b,#ModalAlert-BoxContenedor strong{
  text-align: left;
    font-family: "Source Sans Pro", sans-serif;
  font-size:13.2px;
  color: #444;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
}

#ModalAlert-BoxContenedor #BoxPromptInput{
  margin-top:5px;
}

#ModalAlert-Box .BoxAlert {
  background: url('../images/modalalert/warning.png') top left no-repeat;
}

#ModalAlert-Box .BoxConfirm {
  background: url('../images/modalalert/question.png') top left no-repeat;
}

#ModalAlert-Box .BoxPrompt {
  background: url('../images/modalalert/question.png') top left no-repeat;
}

#ModalAlert-Box .BoxInfo {
  background: url('../images/modalalert/confirm.png') top left no-repeat;
}

#ModalAlert-Box .BoxInform {
  background: url('../images/modalalert/info.png') top left no-repeat;
}

#ModalAlert-Box .BoxError {
  background: url('../images/modalalert/error.png') top left no-repeat;
}

#ModalAlert-Buttons {
  /*background: #F0F0F0;*/
  margin: 40px 0 10px -60px;
  /*width: 460px;*/
  text-align:center;
}

#ModalAlert-Buttons input {
    width: 186px;
    height: 44px;
    border-radius: 0.5rem;
    background-color: #d31e44;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    margin-top: 1.2rem;
    margin: 0 auto;
    border: none;
}
#ModalAlert-Buttons input:hover {
    background-color: #a61836;
}