/* Home Module */
.homeContainer {
    align-items: center;
    justify-content: center;
    color: white !important;
    font-weight: bold;
    display: flex !important;
    flex-direction: row !important;
    @media (max-width: 1250px) {
        flex-direction: column !important;
    }
}
.clockChart {
    width: 100%;
    text-align: -webkit-center;
}
.clock {
    color: black;
    text-transform: uppercase;
    font-weight: bold;
}
.chart {
    height: 26rem;
    width: 100%;
    @media (max-width: 1250px) {
        order: 1;
    }
    @media (max-width: 600px) {
        height: 19rem;
    }
}
.noDataText {
    font-size: 40px;
    text-align: center;
    color: black !important;
    font-weight: bold;
}
.dataCard {
    @media (max-width: 1250px) {
        width: 90%;
    }
}
.totalCurrentStudents {
    @media (max-width: 1250px) {
        order: 2;
    }
}
.completedPending {
    @media (max-width: 1250px) {
        order: 3;
    }
}
.chartCard {
    text-align: center;
    margin: 18px 8px;
    padding: 12px;
    line-height: 16px;
}
.total {
    background-color: #60dcb6 !important;
}
.current {
    background-color: #745eff !important;
}
.completed {
    background-color: #fea41e !important;
}
.pending {
    background-color: #3eebf0 !important;
}
.text {
    line-height: 27px;
    font-size: 25px;
}
.number {
    margin-top: 10px;
    font-size: 30px;
}
/* Modals */
.modal-form-group {
    padding-top: 0.3rem;
}
/* Reports Module */
.donwloadReport {
    font-weight: bold;
    background-color: #ffbd4b;
    border: none;
    border-radius: 13px;
    font-size: 21px;
    padding: 8px 24px;
    box-shadow: 0px 6px 0px 0px #F5A823;
}
