#MovilAlertas {
    display: none;
    align-items: center; 
    justify-content: center;
}
#MovilAlertas .title h2 {
    margin: 1rem 0;
}
#MovilAlertas .title i {
    color: #fe6600;
    font-size: 3rem;
    transition: font-size 0.256s;
    transition-timing-function: cubic-bezier(0.64, 0.57, 0.67, 1.53);
}
#MovilAlertas .title.error i,
#MovilAlertas .title.bug i {
    color: #ff3300;
}
#MovilAlertas .title.success i {
    color: #66ff00;
}
#MovilAlertas .title.warning i {
    color: #ffcc33;
}
#MovilAlertas .title.question i {
    color: #17a2b8;
}
#MovilAlertas,
#MovilAlertas div.screen {
    position: absolute;
}
#MovilAlertas,
#MovilAlertas div.screen {
    z-index: 8000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
#MovilAlertas div.screen {
    background-color: black;
    opacity:0.25;
}
#MovilAlertas div.movil-alerta {
    flex-basis: 100%;
    max-width: 640px;
    margin:1rem;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.128);
    border-radius: 0.25rem;
    padding: 1rem;
    background-color: white;
    z-index: 9000;
    text-align: center;
}
#MovilAlertas div.movil-alerta p {
    max-height: 320px;
    overflow-y: auto;
}
#MovilAlertas div.movil-alerta .btn {
    margin: 1rem 0.25rem 0;
}