.mitglieder {
    display: -webkit-flex; display: flex;
    -webkit-flex-wrap: wrap; flex-wrap: wrap;
    -webkit-justify-content: space-around; justify-content: space-around;
    margin-top: 10px;
}
.mitglieder > div {
    height: auto;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.mitglieder > div > img {
    width: 110px;
    height: 110px;
    vertical-align: bottom;
    cursor: pointer;
    transition: opacity 0.5s ease
}
.mitglieder > div > img:hover {
    opacity: 0.6
}
.mitglieder > div > div:first-of-type {
    color: transparent;
    background: #000;
    opacity: 0.3;
}
.mitglieder > div > div:last-of-type {
    color: #fff;
    background: transparent;
}
.mitglieder > div > div {
    position: absolute;
    margin: 5px;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px
}
.mitglieder > div > div * {
    color: #fff;
    text-decoration: blink;
    font-size: inherit
}

.types {
    display: -webkit-flex; display: flex; 
    -webkit-flex-wrap: wrap !important; flex-wrap: wrap !important;
    -webkit-justify-content: flex-start; justify-content: flex-start;
    margin-bottom: 5px;
    border-bottom: 1px solid lightgray;
    margin-left: -10px; margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px
}

.types a {
    flex-grow: 1;
    color: #000;
    text-decoration: none;
    text-align: center;
    background: #FFB4B4;
    padding: 8px;
    font-size: 19px;
    font-weight: bold;
    margin: 2px;
    -webkit-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    transition: background 0.5s ease;
    cursor: pointer;
    box-shadow: 0 0.5px 0 0 #ffffff inset, 0 1px 2px 0 #636363;
}

.types a:hover {
    background: #C33434
}

.alphabet {
    -webkit-flex-wrap: nowrap; flex-wrap: nowrap
}

.alphabet a {
    padding: 6px;
    display: -webkit-flex; display: flex;
    -webkit-justify-content: center; justify-content: center
}

.alphabet a span {
    font-size: 15px;
    color: #4a4a4a;
    display: -webkit-flex; display: flex;
    -webkit-align-self: center; align-self: center;
    margin-left: 5px;
    font-weight: normal;
}

@media (max-width: 1100px){
    .alphabet {
        -webkit-flex-wrap: wrap; flex-wrap: wrap
    }
}

.types a.mark {
    background: #fd7c7c
} 

.types a.mark:hover {
    background: #C33434
}

.mitgliederlist {
    display: flex;
    flex-wrap: wrap;
}

.mitgliederlist > div {
    width: 100%;
    display: flex;
    padding-top: 7px
}

.mitgliederlist > div:first-of-type {
    padding-top: 0;
}

.mitgliederlist > div > div:first-child {

}

.mitgliederlist > div > div:last-child {
    padding-left: 10px;
}

.mitgliederlist > div > div:last-child a.name {
    font-size: 19.5px
}

.mitgliederlist img {
    width: 125px;
    height: 125px;
    transition: opacity 0.5s ease;
    vertical-align: bottom
}

.mitgliederlist img:hover {
    opacity: 0.75;
}

.mitgliederlist-container {
    margin-top: 10px
}

.mitgliederlist .status, .mitgliederlist .status * {
    color: gray;
}

.mitgliederlist .status {
    height: 62px;
    overflow: hidden;
    position: relative
}

.mitgliederlist .status:after {
    content: "";
    position: absolute;
    left: 0;
    height: 20px;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0), #fff);
    border: 0;
    bottom: 0;
}

.statistics p:first-of-type {
    margin-top: 8px;
}

.statistics i {
    color: #444
}