#ModalAlert-Box {
    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;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
}

#ModalAlert-Box.ModalAlert-open {
    opacity: 1;
    transform: scale(1);
}

#ModalAlert-InBox {
    background: #FFF;
}

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

#ModalAlert-BoxContenedor {
    padding-left: 80px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    color: #444;
}

#ModalAlert-BoxContenedor h1, #ModalAlert-BoxContenedor h2, #ModalAlert-BoxContenedor h3, #ModalAlert-BoxContenedor b, #ModalAlert-BoxContenedor strong {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    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 {
    margin-top: 30px;
    margin-left: -80px;
    width: auto;
    text-align: center;
}

#ModalAlert-Buttons input {
    color: #fff;
    font-family: "Helvetica Neue LT Std", sans-serif;
    font-weight: 500;
    min-width: 150px;
    background: #d21242 ;
    border: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 2.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;

}

#ModalAlert-Buttons input:hover,
#ModalAlert-Buttons input:focus,
#ModalAlert-Buttons input:focus-within {
    box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.35);
    transform: translateY(-0.25em);
}

#ModalAlert-Buttons input#BoxConfirmBtnCancel {
    background: #7f7f7f;
}

#ModalAlert-Buttons input:hover {
    background-color: #d31f43;
    color: #fff;
}

#ModalAlert-Buttons input#BoxConfirmBtnCancel:hover {
    background: #b3b3b3;
}