/********************estilos para el popup*******************/

/*POPUD*/

.overlayuser{
    background: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.overlayuser.active{
    visibility: visible;
}

.popupuser{
    background-color: white;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.3);
    border-radius: 3px;
    font-family: cursive;
    padding: 20px;
    /*text-align: center;*/
    width: 400px;
    height: auto;
    transition: .3s ease all;
    transform: scale(0.7);
    opacity: 0;
    padding-bottom: 50px;
    
    
}
hr{
    background-color: dimgrey;
    opacity: .3;
    margin-bottom: 20px;
}

.popupuser .cerrar-popupuser{
    
    line-height: 16px;
    display: block;
    text-align: right;  
}

.popupuser h3{
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: left;
    font-family: sans-serif;
    color: grey;
    font-weight: 100;
    /*opacity: 0;*/
    
}

.overlayuser .popupuser select{

}

.overlayuser .popupuser #grd_user{
    margin-top: 15px;
}


.popupuser.active{
    opacity: 1;
    transform: scale(1);
}



/************ESTILOS POPUP EDITAR TAREA************************/

.overlayeditT{
    background: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.overlayeditT.active{
    visibility: visible;
}

.popupeditT{
    background-color: white;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.3);
    border-radius: 3px;
    font-family: cursive;
    padding: 20px;
    /*text-align: center;*/
    width: 300px;
    height: auto;
    transition: .3s ease all;
    transform: scale(0.7);
    opacity: 0;
    padding-bottom: 30px;
    
    
}
.popupeditT .Titulo_uno{
    font-size: 16px;
    margin-right: 10px;

}
.popupeditT .Titulo_dos{
    font-size: 16px;
    color: #2b85cd;

}
.popupeditT form input, textarea{
    margin-bottom: 10px;
    width: 100%;
}

.popupeditT #btn-cerrarr{
    font-size: 14px;
}
hr{
    background-color: dimgrey;
    opacity: .3;
    
}

.popupeditT .cerrar-popupeditT{
    
    line-height: 16px;
    display: block;
    text-align: right;  
}

.popupeditT h3{
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: left;
    font-family: sans-serif;
    color: grey;
    font-weight: 100;
    /*opacity: 0;*/
    
}



.overlayeditT .popupeditT #grd_user{
    margin-top: 15px;
}


.popupeditT.active{
    opacity: 1;
    transform: scale(1);
}

/************ESTILOS POPUP EDITAR PROYECTO************************/

.overlayEP{
    background: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.overlayEP.active{
    visibility: visible;
}

.popupEP{
    background-color: white;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.3);
    border-radius: 3px;
    font-family: cursive;
    padding: 20px;
    /*text-align: center;*/
    width: 280px;
    height: auto;
    transition: .3s ease all;
    transform: scale(0.7);
    opacity: 0;
    padding-bottom: 30px;
    
    
}
.popupEP .Titulo_uno{
    font-size: 16px;
    margin-right: 10px;

}
.popupEP .Titulo_dos{
    font-size: 16px;
    color: #2b85cd;

}
.popupEP form input, textarea{
    margin-bottom: 10px;
    width: 100%;
}

.popupEP #btn-cerrarr{
    font-size: 14px;
}
hr{
    background-color: dimgrey;
    opacity: .3;
    
}

.popupEP .cerrar-popupEP{
    
    line-height: 16px;
    display: block;
    text-align: right;  
}

.popupEP h3{
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: left;
    font-family: sans-serif;
    color: grey;
    font-weight: 100;
    /*opacity: 0;*/
    
}



.overlayEP .popupEP #grd_user{
    margin-top: 15px;
}


.popupEP.active{
    opacity: 1;
    transform: scale(1);
}

