.boxesGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.boxesGrid .box {
    background: #FAFAFA;
    padding: 25px 30px;
    flex: 1 1 320px;
    min-width: 280px;
}

.boxesGrid .box .content {
    max-height: 300px;
    overflow: auto;
}

.boxesGrid .box .boxTitle {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 15px;
}

.boxesGrid .bigBox {
    flex-basis: 100%;
    width: 100%;
}

.boxesGrid .mediumBox {
    flex: 1 1 400px;
}

.boxesGrid .smallBox {
    flex: 1 1 200px;
}

@media (max-width: 768px) {
    .boxesGrid {
        flex-direction: column;
    }

    .boxesGrid .box {
        min-width: 0;
        width: 100%;
        padding: 20px;
    }

    .boxesGrid .bigBox,
    .boxesGrid .mediumBox,
    .boxesGrid .smallBox {
        flex-basis: 100%;
    }
}

#datatable_wrapper {
    overflow: scroll;
}

.analyzeTable .head th {
    background: #005C97;
    background: -webkit-linear-gradient(to right, #3a4dd0, #27B7C8);
    background: linear-gradient(to right, #3a4dd0, #27B7C8);
    color: #fff;
}

/*
Messages
*/
.messageStyle {
    padding: 15px 10px;
    color: #fff;
    background: #202020;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    text-align: center;
}

.messageStyle.success {
    background: #27ae60;
}

.messageStyle.error {
    background: #c0392b;
}

footer {
    margin: 0 0 0 0;
    padding: 0 20px 30px 20px;
    font-size: 14px;
    color: #9e9e9e;
}

/*
Login Page
*/
.branding-login {
    text-align: center;
    margin: 30px 0 10px 0;
}

.branding-login .logo img {
    height: 80px;
    padding-bottom: 10px;
}

#login-page #wrapper-main {
    margin-left: 0;
    margin-top: 50px;
    text-align: center;
}

#login-page {
    margin: 0 auto;
}

#login-page table td {
    padding: 15px 5px;
    border: 0;
}

#login-page footer {
    display: block;
}

/*
Stats
*/
.top_stats_nums {
    list-style: none;
    margin: 0;
    padding: 15px 0 15px 0;
}

.top_stats_nums li {
    display: inline-block;
    width: 19.4%;
    text-align: center;
    background: rgb(236, 236, 236);
    padding: 30px 0 30px 0;
    margin: 4px 2px;
}

.top_stats_nums li .num {
    margin-bottom: 10px;
    font-size: 35px;
    font-weight: 800;
}

.toggle-analyze {
    padding: 5px;
    background: #3a4dd0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}