/********************estilos para el popup*******************/

/*POPUD*/

.overlay{
    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;
}

.overlay.active{
    visibility: visible;
}

.popup{
    margin-top: 50px;
    background-color: white;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,.3);
    border-radius: 3px;
    font-family: cursive;
    padding-top: 1px;
    padding-left: 20px;
    padding-right: 20px;
    /*text-align: center;*/
    width: 400px;
    height: auto;
    transition: .3s ease all;
    transform: scale(0.7);
    opacity: 0;
    padding-bottom: 10px;
    position: relative;

    
    
}
hr{
    background-color: dimgrey;
    opacity: .3;
    margin-bottom: 20px;
}

.popup .btn-cerrar-popup{
    
    line-height: 16px;
    display: block;
    text-align: right;  
}

.popup h3{
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 10px;
    text-align: left;
    font-family: sans-serif;
    color: grey;
    font-weight: 100;
    /*opacity: 0;*/
    
}

.popup h4{
    font-size: 23px;
    font-weight: 100;
    margin-bottom: 20px;
    /*opacity: 0;*/
    
}

.popup form  label{
    
    font-size: 15px;
    color: grey;
    font-weight: 300;
    text-align: left;
    margin-bottom: 5px;
    font-family: cursive;
}

.popup form .contenedor-inputs input{
    width: 100%;
    margin-bottom: 5px;
    height: 58px;
    font-size: 16px;
    border: 1px solid #BBBBBB;
    border-radius: 4px;
    
    
}

.popup form .contenedor-inputs .contenedor_label_color #color{
    margin-left: 5px;
    border:none;
    font-size: 13px;

}


.popup form .contenedor-inputs textarea{
    width: 100%;
    margin-bottom: 5px;
    height: 62px;
    font-size: 16px;
    border: 1px solid #BBBBBB;
    border-radius: 4px;
    max-height: 72px;
    max-width: 100%;
    min-height: 32px;
    min-width: 100%;
    
    
}

.popup form .contenedor-inputs .nameproyect{
    
    height: 30px;
    
}

.popup form .contenedor_label_color{
    
    display: flex;/*alineacion en linea horizontal de las columnas*/
    justify-content: space-around;/*espacio entre las columnas*/
}







.popup form .btn-submit{
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border: none;
    color: white;
    background: rgb(94,125,227);
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
}

.popup form .btn-submit:hover{
    
     background: rgba(94,125,227,.8);
    
    
}
.popup.active{
    opacity: 1;
    transform: scale(1);
}

