.statistic-heads {
    display :grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.statistic-head,
.statistic-head-hover {
    position: relative;
    padding: 20px 10px;
    color: rgb(16 45 48);
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    background: #ffffff;
    padding-left: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    overflow: hidden;
    transition: 0.55s ease;
}
.statistic-head.proggressable::after {
    position:absolute;
    left: 0;
    top: 0;
    width: var(--proggress);
    height: 100%;
    background: #0000001c;
    border-right: 1px solid #0000001f;
    opacity: 0.5;
    content :"";
} 
.statistic-head:hover .statistic-head-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.statistic-head-hover {
    position: absolute;
    inset: 0;
    z-index: 20;
    gap: 0;
    height: 100%;
    padding-top: 12.5px;
    flex-direction: column;
    background: black;
    transform: scale(1.05);
    cursor: default;
    opacity: 0;
    visbility: hidden;
}
.statistic-head span {
    display: grid;
    place-items: center;
    background: #ffffff08;
    border: 1px solid #ffffff0d;
    border-radius: 50%;
    width: 55px;
    height: 55px;
}
.statistic-head span img ,
.statistic-head span svg {
    width: 35px;
    fill: var(--svg-color) !important; 
} 
#ic_fluent_shifts_pending_24_regular {
    fill: var(--svg-color) !important; 
}
.statistic-head > span {
    transition: 0.15s ease;
}
.statistic-head:hover > span { 
    background: #0000000a;
    transform: scale(1.05);
}  
.statistic-head p {
    margin: 0;
}
.statistic-head-title {
    font-size: 0.95rem;
    color: var(--main-color);
    font-weight: 500;
}
.statistic-head-title + p {
    color: #616161;
    font-size: 1rem;
}