.stats {
    margin: 0% 5%;
}

.stats-title {
    width: 100%;
    text-align: center;
}

.searchContainer {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.chartMainContainer {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#tmpGraph {
    width: 100%;
}

#tmpGraph .searchContainer {
    margin-bottom: 10px;
    margin-top: 20px;
}

.chartContainer {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40%;
    position: relative;
}

.loading-screen {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.chartContainer h4 {
    text-align: center;
}

.chartContainer canvas {
    max-width: 600px;
    max-height: 330px;
}

.stats-separator {
    width: 100%;
    margin-top: 50px;
}

.single .chartContainer {
    flex: 0.5;
}

/* MOBILE */
@media (max-width: 768px) {
    .chartMainContainer {
        flex-direction: column;
    }

    .chartContainer {
        width: 100%;
    }
}