.game_results {
    display: none;
    flex-direction: row;
    width: 75vw;
    min-width: 850px;
    height: 400px;
    border: 5px solid rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    padding: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 0, 0, 0.4);
    gap: 6px;
}


.results_section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.results_section.stats {
    width: 20%;
    height: 100%;
}

.result_list {
    display: flex;
    flex-direction: column;
    height: 20%;
    align-items: center;
}

.result_list .label {
    font-weight: 800;
    letter-spacing: 3px;
}

.result_list .result {
    font-size: 3rem;
    flex: 1;
    font-weight: 900;
    font-family: sans-serif;
    letter-spacing: 0px;
    line-height: 48px;
    animation: score 2s infinite;
}

@keyframes score {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.stats_list {
    display: flex;
    flex-direction: column;
    height: 80%;
    justify-content: space-evenly;
}

.stats_list span {
    font-weight: 300;
}

.results_section.graphs {
    width: 60%;
    overflow: hidden;
}

.corrects-bar {
    display: flex;
    flex-direction: row;
    height: 25%;
    gap: 5px;
    width: 100%;
    animation: scroll 20s linear infinite;
}

.corrects-bar img {
    display: flex;
    gap: 5px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.results_graph {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    flex: 1;
}

.results_section.highscores_preview {
    width: 20%;
}

.results_section.highscores_preview span:first-of-type {
    text-align: center;
}