/*Estilos Popup*/

#contenedor_popup{
    background-color: rgba(0,0,0,.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

#contenedor_popup.active{
    visibility: visible;
}

#popup{
    max-height: 90vh;
    padding: 5px;
    background-color: #FFF;
    border-radius: 3px;
    opacity: 0;
    transform: scale(.7);
    transition: all .5s ease-in-out;
    overflow: auto;
}

#popup.active{
    opacity: 1;
    transform: scale(1);
}

#popup #opciones .btn{
    margin: 5px 0;
}

#titulo{
    height: 40px;
    padding: 0 5px;
    background-color: #8f28c4;
    border-radius: 3px;
}

#titulo h2{
    font-size: 16px;
    color: #FFF;
}

#titulo i{
    font-size: 22px;
    color: #FFF;
    cursor: pointer;
}

#alerta .icono{
    color: #bf0000;
}

#alerta p{
    margin: 10px 0;
    text-align: center;
    line-height: 30px;
}

#aviso i,#alerta .icono{
    font-size: 80px;
}

#aviso .ok{
    color: #006d00;
}

#aviso .error{
    color: #bf0000;
}

/*Fin Estilos Popup*/