.leaderboard-icon {
    /* box-shadow: 0 0 15px var(--primary); */
    border: 2px solid var(--primary);
    position: absolute;
    z-index: 1;
    top: 17rem;
    width: 10rem;
    height: 10rem;
}

.leaderboard-divider {
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.leaderboard-header {
    margin-top: 50px;
    margin-bottom: 0;
    width: 100%;
    display: grid;
    margin-bottom: 0;
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.leaderboard-item {
    margin-top: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
}

.leaderboard-area {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 0;
}

.leaderboard-header-icon {
    filter: invert(61%) sepia(100%) saturate(449%) hue-rotate(334deg) brightness(99%) contrast(95%);
    width: 25px;
    height: 25px;
}

.single-leaderboard {
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    white-space: nowrap;
}

.single-leaderboard::after {
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left top, right top, from(#f79636), to(#f79636)) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right, #f79636 0%, #f79636 100%) repeat scroll 0 0;
}

.single-leaderboard.large {
    grid-column: span 5;
}

.single-leaderboard.small {
    text-align: center;
}

.leaderboard-pfp {
    position: absolute;
    top: 0.6rem;
    left: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;

}

.leaderboard-username {
    position: absolute;
    /* left: 4.5rem; */
}

.leaderboard-username>a {
    color: gray !important;
}

.single-leaderboard.small>svg {
    width: 40px;
    height: 40px;
    top: 0.5rem;
    left: 2.7rem;
    margin: auto;
    position: absolute;
}

/* Required CSS */
svg circle:nth-child(2) {
    /*   Personal preference */
    stroke-linecap: round;
    transition: stroke-dasharray 1.75s cubic-bezier(0.770, 0.000, 0.175, 1.000), stroke-opacity .75s;
    /*   This is actually needed */
    stroke-dasharray: 0 9999;
    stroke-opacity: 0;
}

.single-leaderboard>.level {
    display: absolute;
    left: 1.95rem;
}

.navigation-buttons {
    margin-top: 1rem;
    text-align: center;
}

.navigation-buttons > button {
    background-color: var(--primary);
    border-radius: 8px;
    border-style: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 10px 16px;
}

.navigation-buttons > button:disabled {
    background-color: #222;
}

@media (max-width: 600px) {
    .leaderboard-item   div:nth-of-type(3),
    .leaderboard-item   div:nth-of-type(4),
    .leaderboard-header div:nth-of-type(3),
    .leaderboard-header div:nth-of-type(4) {
        display: none;
    }

    .single-leaderboard.small > svg {
        left: 1rem;
    }

    .leaderboard-item, .leaderboard-header {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .leaderboard-icon {
        top: 14rem;
    }

}