input, input:before, input:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

#who-is-who-holder {
    width: 100%;
    margin-bottom: 30px;
}

#who-is-who-filter {
    display: flex; 
    flex-direction: column;
    padding: 1em 0.25em 0.5em;
    border: 1px solid #C5C5C5;
    border-bottom: 0;
}

#who-is-who-filter p {
    color: #444;
    font-size: 13px;
    line-height: 120%;
    margin: -3px 0 10px 5px;
}

#who-is-who-filter ul {
    display: flex; 
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

#who-is-who-filter ul li {
    background-color: #FFF;
    padding: 0.1em;
    font-size: 16px;
    font-family: sans-serif; 
    text-align: center;
    margin: 1px;
    list-style: none;
    line-height: 125%;
    flex: 0 1 100%;
    transition: all .2s ease-in-out;
    border: 1px solid #C5C5C5;
    border-bottom: 1px solid #C5C5C5;
}

#who-is-who-filter ul li.active,
#who-is-who-filter ul li:hover {
    font-weight: bold;
    transform: scale(1.4);
    cursor: pointer;
    border-color: #000;
}

#who-is-who-filter ul li.active {
}

#who-is-who-list {
    border: 1px solid #C5C5C5;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;

    /*
        Introduced in IE 10.
        See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
    */
    -ms-user-select: none;
    user-select: none;
}

#who-is-who-list p {
    background-color: #FFF;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 15px;
    padding: 5px 10px;
    margin: 0;
}

#who-is-who-list p.empty {
    font-weight: normal;
    text-decoration: underline;
}

#who-is-who-list ul {
    display: flex; 
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

#who-is-who-list ul li {
    font-family: sans-serif;
    font-size: 15px;
    line-height: 125%;
    width: 100%;
    padding: 5px 10px;
}

#who-is-who-list ul li:nth-child(2n + 1) {
    background: #F0F0F0;
}

#who-is-who-list ul li:nth-child(2n) {
    background: #FAFAFA;
}