/* ===================================
   CARD DASHBOARD - SIMON DPMD
=================================== */

.card-dashboard{

    background:#ffffff;

    border-radius:20px;

    padding:30px 25px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

    height:100%;

    border:1px solid #edf2f7;

}

.card-dashboard:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.card-icon{

    font-size:48px;

    color:#1565c0;

    margin-bottom:18px;

}

.card-title{

    font-size:24px;

    font-weight:500;

    color:#555;

    margin-bottom:12px;

}

.card-value{

    font-size:42px;

    font-weight:700;

    color:#0d47a1;

    line-height:1.2;

}
.card-dashboard small{

    display:block;

    margin-top:12px;

    color:#888;

    font-size:14px;

}

.dashboard-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.box-title{
    font-size:22px;
    font-weight:600;
    color:#0d47a1;
    margin-bottom:20px;
}

.summary-item{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #eee;
    font-size:17px;
}

.summary-item:last-child{
    border-bottom:none;
}

.stat-card{
    min-height:250px;
}

.stat-card h2{
    font-size:36px;
    font-weight:700;
    color:#143d74;
    line-height:1.2;
    word-break:break-word;
}


.stat-card{
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}
.stat-card{
    transition: all .3s ease;
    cursor: pointer;
}

.stat-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}


