.add-equipo{
    position: relative;
}
.add-equipo .fa{
    font-size: 50px;
    text-align: center;
    cursor: pointer;
}
.nuevo-equipo{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto; 
    width: 50%;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
}
.nuevo-equipo input{
    width: 100%;
    padding-left: 5px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}
.nuevo-equipo input[type="button"]{
    background-color: #00A600;
    color: #fff;
    border: none;
}

.nuevo-equipo .fa-close{
    position: absolute;
    right: 20px;
    top: 10px;
    color: red;
    font-size: 25px;
    cursor: pointer;
}






