/**
 * Styling for players main page.
 */

#spielerpage {
    display: table;
    height: 100vh;
    background-color: black;
    width: 100%;
    vertical-align: center;
}

.spieler-matrix {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    padding: 5px;
    margin: 2rem auto;
    justify-items: center;
}

.spieler {
}

.spieler:hover {
}

.spieler .spieler-matrix a {
    display: block;
    margin: 0;
    padding: 0;
}

.spieler img {
    display: block;
    margin: 0;
    padding: 0;
}

.spieler .spielerInner {
}

/*
.spieler .spielerInner .spieler-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: -50px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    line-height: 14pt;
    font-size: 12pt;
    font-weight: bold;
}

.spielerInner:hover .spieler-name {
    margin-bottom: 0;
}

.spielerInner.touchFocus .spieler-name {
    margin-bottom: 0;
}
*/

.player-profile img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.player-profile h1.name {
    text-align: center;
    margin: 0.5em auto;
}

.player-profile .description {
    font-size: 1.1em;
    max-width: 450px;
    margin: 1em auto;
    text-align: left;
}

#inactive-players.box {
    display: block;
    background-color: white;
    padding: 0;
    margin: 0;
}

#inactive-players h2 {
    padding-top: 2em;
}

.spieler #footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

#spielerpage2 {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    margin: 0;
    padding: 0;
}

.spieler #content {
    padding-bottom: 0;
}


@media (max-width: 640px) {
    .spieler-matrix {
        grid-template-columns: auto;
    }
}

@media (max-width: 960px) and (min-width: 641px){
    .spieler-matrix {
        grid-template-columns: auto auto;
    }
}

@media (min-width: 961px){
    .spieler-matrix {
        grid-template-columns: auto auto auto;
    }
}

