.icon-group {
    display: flex;
    align-items: center;
}

.icon-group .fa {
    margin-left: 10px;
    font-size: 1.2em;
    cursor: pointer;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 4;
}

.circle {
    fill: none;
}

.card-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.progress-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Black-800 {
    color: #4f4f4f
}

.Black-400 {
    color: #EFEFEF
}

.fs-16 {
    font-size: 16px;
}

.fs-21 {
    font-size: 21px;
}

.fs-24 {
    font-size: 24px;
}

.fs-28 {
    font-size: 28px;

}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-600 {
    font-weight: 600;
}

.alert-custom {
    position: fixed;
    top: 20px;
    right: 20px;
    height: 80px;
    background-color: #77B843;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1050;
}

.alert-custom .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
}

.alert-custom.fade-out {
    animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hl-1,
.hl-2,
.hl-3,
.hl-4 {
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 1rem;
    text-align: center;
    margin-left: 16px;
    font-weight: 500;
}

.hl-1 {
    background-color: #f0f8ff;
    color: #53AAFC;
    border: 1px solid #53AAFC;
}

.hl-2 {
    background-color: #ECE9FF;
    color: #B0A8F6;
    border: 1px solid #B0A8F6;
}

.hl-3 {
    background-color: #F7FCEC;
    color: #77B843;
    border: 1px solid #DFF7B8;
}

.hl-4 {
    background-color: #FAF8F8;
    color: #2D6A15;
    border: 1px solid #5B9E30;
}

@media (min-width: 1024px) {

    .hl-1,
    .hl-2,
    .hl-3,
    .hl-4 {
        width: 3.681vw;
        height: 27px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .hl-1,
    .hl-2,
    .hl-3,
    .hl-4 {
        width: 80px;
        height: auto;
        font-size: 0.9rem;
        padding: 4px 8px;
    }
}

@media (max-width: 767px) {

    .hl-1,
    .hl-2,
    .hl-3,
    .hl-4 {
        width: 70px;
        height: auto;
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

@media (min-width: 576px) {
    #documentModal .modal-dialog {
        max-width: 1000px;
        margin: 1.75rem auto;
    }
}

#searchInput::placeholder {
    color: #8A8A8A !important;
}