.stat-container{
    display: flex;
    justify-content: space-between;
    gap: 13px;
    align-items: center;
    flex-wrap: wrap;
}
.stat{
    background-color: #313D6E;
    border-radius: 20px;
    padding: 15px 10px 0;
    text-align: center;
    flex: 1;
    margin-bottom: 10px;
}
.stat h3{
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 5px;
}
.stat h3 + p{
    font-size: 25px;
}
.stat-link-document h3 + p,
.stat-link-document h3 + p + i{
    color: var(--el-pink);
}
.stat-training-course h3 + p,
.stat-training-course h3 + p + i{
    color: var(--el-orange);
}
.stat-data-expression h3 + p,
.stat-data-expression h3 + p + i{
    color: var(--el-blue);
}
.stat-personnal-training h3 + p,
.stat-personnal-training h3 + p + i{
    color: var(--el-green);
}
.stat > .bx{
    font-size: 30px;
}
.stat h4{
    font-size: 23px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 4px;
}
.stat p{
    margin: 0;
}
.stat p + p{
    margin-top: 4px;
    margin-bottom: 4px;
}

.stat-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(10px);
}
.stat-btn > *{
    position: relative;
}
.stat-btn::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width:0;
    height: 100%;
    background-color: #02071c30;
    border-radius: 8px;
    transition: width .4s ease;
}
.stat-btn:hover::before{
    width: 100%;
}
.stat-btn i{
    font-size: 16px;
}


.el-plot-container{
    background-color: #162256;
    border-radius: 20px;
    padding: 15px;
    min-height: 200px;
    min-width: 350px;
}
.el-plot{
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.el-session{
    text-align: center;
}
.el-session > i{
    font-size: 40px;
}

.num-session{
    font-size: 20px;
    font-weight: 600;
    display: block;
    padding: 7px 20px;
    background-color: var(--el-green);
    max-width: 75px;
    border-radius: 18px;
    margin-left: auto;
    margin-right: auto;
}