#head-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#head-content > a {
    color: #AAAAAA;
    font-size: 30px;
    text-decoration: none;
}

#head-content > a:hover {
    transition-delay: 50ms;
    color: #FFFFFF;
}

#head-content > div {
    width: 30px;
    height: 30px;
}

body > main > h1 {
    text-align: center;
}

#main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#main-content > table {
    width: 100%;
    margin-bottom: 50px;
}

#main-content > table > thead {
    background: #373a3d;
    border-bottom: 2px solid white;
    width: 100%;
}

#main-content > table > thead > tr > th {
    color: white;
    font-weight: bold;
    margin: 0;

    padding: 20px 0;

}

#main-content > table > thead > tr > th:first-child {
    padding-left: 20px;
}

.game {
    background: #23272b;
    border-bottom: 1px solid black;
}

.game > td:first-child {
    padding-left: 20px;
}

.game > td > img {
    width: 40px;
    padding: 15px 0;
}

.game > td > .load {
    font-size: 18px;
    color: #62c462;
    margin-left: 10px;
}

#main-content > section {
    display: none;
}

.mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20rem;

    background: #23272b;
    box-shadow: #1a1a1a 10px 5px 7px;
    margin: 0 0 2rem 0;
    padding: 30px 20px;
}

.mobile > img {
    padding: 0 7rem 20px 7rem;
    margin-bottom: 0.5rem;
    width: 16rem;
    border-bottom: 1px solid white;
}

.mobile > div {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}

.mobile > div > .left, .mobile > div > .right {
    width: 8rem;
}

.left > p, .right > p {
    margin-bottom: 0.3rem;
}

.mobile > button {
    margin-top: 15px;
    width: 10rem;
}

/* GAME DETAILS */

#title-players {
    margin: 0 0 20px 0;
}

#details {
    display: flex;
    justify-content: space-between;
}

#details .card {
    width: 300px;
}

#details .card > .card-body > p {
    margin-bottom: 5px;
}

#details > #mid > article {
    text-align: center;
    width: 400px;
}

#details > #mid > article > p {
    font-size: 18px;
}

#details > #mid > article > ul {
    padding: 0;
}

#details > #mid > article > ul > li {
    list-style: none;
    font-size: 18px;
}

#legend {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#legend > p {
    margin: 0;
}

#legend > div {
    width: 40px;
    height: 20px;
    border: 1px solid black;
    margin: 0 10px;
}

.player > td > .badge {
    margin-left: 5px;
}

.accordion {
    display: none;
}