/*Estilos Popup Edición Web*/

#contenedor_popup{
    background-color: rgba(0,0,0,.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 65536;
    visibility: hidden;
    transition: all .5s ease-in-out;
}

#contenedor_popup.active{
    visibility: visible;
}

#popup{
    max-height: 90vh;
    padding: 5px;
    background-color: #F1F1F1;
    border-radius: 3px;
    opacity: 0;
    transform: scale(.7);
    transition: all .5s ease-in-out;
}

#popup form{
    max-height: 70vh;
    overflow-y: auto;
}

#popup .lista{
    min-height: 150px;
    background-color: #FFF;
}

#popup.active{
    opacity: 1;
    transform: scale(1);
}

#popup #opciones .btn{
    margin: 5px 0;
}

#titulo{
    height: 40px;
    padding: 0 5px;
    background-color: #454445;
    border-radius: 3px;
    text-transform: uppercase;
}

#titulo h2{
    font-size: 16px;
    color: #FFF;
}

#titulo i{
    font-size: 22px;
    color: #FFF;
    cursor: pointer;
}

#popup .nota{
    font-size: 14px;
    text-align: justify;
}

/*Fin Estilos Popup Edición Web*/