#miembros{
    width: 85%;
    margin: 10px auto;
    min-height: 300px;
    background-color: #fff;
    display: flex;
    flex-flow: wrap;
    margin-top: 60px;
}

#filtros{
      width: 100%;
      margin-bottom: 20px;
      display: flex;
      flex-flow: wrap;
  }

#filtros p{
    font-family: sans-serif;
    height: max-content;
    margin-top: 30px;
    margin-left: 30px;
    color: #222;
}

#filtros select{
    width: 300px;
    height: 40px;
    margin-left: 50px;
    margin-top: 25px;
    border: none;
    background-color: #eee;
    outline: none;
    font-family: 'Roboto',sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 100px;
    padding-left: 20px;
    text-transform: uppercase;
}


  .filtro-option{
      margin: 10px;
      width: max-content;
      height: 20px;
      border: 1px solid #eee;
      padding: 8px;
      background-color: #fff;
      border-radius: 5px;
      cursor: pointer;
      user-select: none;
      font-family: sans-serif;
  }

  .filtro-option:hover{
     background-color: var(--blue);
     color: #fff;
  }

.equipo-card{
    width: 200px;
    height: 200px;
    margin: 30px;
    margin-top: 40px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    background: #fff;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.equipo-img{
    width: 120px;
    height: 120px;
    background-size: 110%;
    background-position: center;
    border-radius: 60px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: -50px;
    transition: 0.3s;
}

.equipo-img:hover{
    background-size: 130%;
    transition: 0.3s;
    
}

.equipo-nombre{
    font-family: 'Lato',sans-serif;
    text-transform: capitalize;
    font-weight: bold;
    text-align: center;
    color: var(--texto);
    width: 90%;
}

.equipo-tipo{
    font-family: 'Montserrat';
    font-size: 0.8em;
    width: 90%;
    text-align: center;
    /* font-weight: lighter; */
    color: #111;

    display: flex;
    flex-flow: wrap;
    justify-content: center;
    
}

.equipo-tipo e{
    width: 100%;
    text-align: center;
}

.equipo-tipo a{
    color: #666;
    text-decoration: none;
}

.equipo-tipo a:not([data="no-hover"]):hover{
    color: dodgerblue;
    text-decoration: underline;
}

.equipo-link{
    width: 100%;
    height: 40px;
    display: flex;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--rojoL);
    color: #fff;
    font-family: 'Lato',sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.equipo-link:hover{
    background-color: var(--texto);
}

.equipo-link a{
    color: #fff;
    text-decoration: none;
}



#miembro-info{
    position: fixed;
    height: 70%;
    width: 50%;
    background-color: #fff;
    border-radius: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
/*     display: flex; */
    display: none;
    flex-flow: wrap;
    align-items: flex-start;
    overflow-y: scroll;
    transition: 0.4s;
    padding: 20px;
}

#miembro-info a{
    color: #111;
    text-decoration: none;
    font-family: 'Roboto',sans-serif;
}

#miembro-info a:not([data="no-hover"]):hover{
    color: dodgerblue;
    text-decoration: underline;
    cursor: pointer;
}

#miembro-foto-container{
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;

}

#miembro-foto-container img{
    width: 20%;
    border-radius: 100%;
}


#miembro-foto-container p{
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    margin-top: 20px;
    margin-left: 0;
    font-family: 'Roboto',sans-serif;
}



.separador{
    width: 100%;
    height: 30px;
    text-align: center;
}

#miembro-foto-container a{

    text-align: left;
    font-size: 1.2em;
    margin-left: 20px;
    color: #111;
    font-family: 'Roboto',sans-serif;
    font-weight: bold;
}

#miembro-foto-container a::before{
    margin-right: 10px;
    color: var(--rojoL);
}

#miembro-listas{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    /* margin-top: 20px; */
    border-top: 1px solid #ddd;
    display: flex;
    flex-flow: wrap;
    padding-top: 20px;
}

#miembro-listas label{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px;
}

#miembro-listas div {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
}

#miembro-listas div h3{
    margin-bottom: 20px;
    font-family: 'Roboto',sans-serif;
}

#miembro-listas div ul{
    margin-left: 30px;
}

#miembro-listas div li{
    margin-top: 10px;
    margin-bottom: 10px;
}

#miembro-cerrar{
    width:200px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
    background-color: var(--rojoL);
    color: #fff;
    font-family: 'Lato',sans-serif;
    font-weight: bolder;
    text-transform: uppercase;
    cursor: pointer;
}

#miembro-bottom{
    width: 120%;
    height: 120%;
    position: fixed;
    background-color: rgba(155,155,155,0.6);
    top: 0;
    z-index: 3;
    display: none;
/*    display: flex;*/
    cursor: alias;
    backdrop-filter:blur(4px);
}

@media(max-width:800px){
    #miembro-info{
        width: 100%;
        height: 100%;
        /* transform: translate(-50%, -40%); */
    }

    #miembro-foto-container a{
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #miembro-foto-container{
        margin-top: 30px;
    }
    
    #buscarMiembro{
        width: 250px !important;
    }
    
    #filtros select{
        width: 200px;
    }
}

@media (min-width:1300px) and (max-width:1600px){
    .equipo-card{
        margin: 10px;
        margin-top: 40px;
    }
    
    #miembros{
        justify-content: center;
    }

    #miembro-info{
        height: 85%;
    }
    
}

@media (min-width:1200px) and (max-width:1400px){
    #miembros{
        width: auto;
    }
    
}

@media (min-width:1000px) {
    #miembro-listas{
        margin-top: 20px;
    }
}

#miembro-procedencia{
    position: relative;
    padding-left: 10px;
    font-family: 'Montserrat',sans-serif;
}

#miembro-procedencia::before{
    content: '■';
    font-weight: bolder;
    font-size: 0.7em;
    color: var(--rojoL);
    position: absolute;
    margin-left: -10px;
    margin-top: 2px;
    margin-right: 10px;
}

#miembro-correo{
    position: relative;
    padding-left: 10px;
    font-family: 'Montserrat',sans-serif;
}

#miembro-correo::before{
    content: '■';
    font-weight: bolder;
    font-size: 0.7em;
    color: var(--rojoL);
    position: absolute;
    margin-left: -10px;
    margin-top: 2px;
    margin-right: 10px;
}

.miembro-links{
    width: 90%;
    position: relative;
    padding-left: 10px;
    font-family: 'Montserrat',sans-serif;
}

.miembro-links::before{
    content: '■';
    font-weight: bolder;
    font-size: 0.7em;
    color: var(--rojoL);
    position: absolute;
    margin-left: -10px;
    margin-top: 2px;
    margin-right: 10px;
}

