.Box-status {
    min-width: 180px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 180px;
    margin-right: 15px;
    border-radius: 8px;
    position: relative;
    float: left !important;
}
.Box-status  .Type {
    font-size: 40px;
    font-weight: 700;
}
.Box-status::before {
    content: '';
    height: 1px;
    width: 80%;
    background: white;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
.Box-status .value {
    color: white;
    font-weight: bold;
    font-size: 40px;
    font-family: iranyekan;
}

.Box-status.crimson {
    background: #ff679d;
}
.Box-status.green {
    background: #58cb9c;
}
.Box-status.blue {
    background: #5a84b3;
}


@media only screen and (max-width: 768px) {

    .Box-status {
        min-width: 130px;
        height: 130px;
        float: left !important;
    }
    .Box-status .Type {
        font-size: 30px;
        font-weight: 700;
    }
    .Box-status .value {
        color: white;
        font-weight: bold;
        font-size: 30px;
        font-family: iranyekan;
    }
}
