.Status { 
    box-shadow: 1px 1px 9px rgb(0 0 0 / 24%) !important;
    display: flex;
}

.Status__Item {
    padding: 0.5rem;
    box-shadow: inset 1px 1px 9px rgb(0 0 0 / 24%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    background-color: #d6d4cb;
    color: #7B7A7E;
}

.Status__Item--Error {
    background-color: #CB3c2e;
    color: #fff;
}

.Status__Item--Warning {
    background-color: #F0CE34;
    color: #fff;
}

.Status__Item--Grey {
    background-color: #7E8997;
    color: #fff;
}

.Status__Item--Success {
    background-color: #51BA7F;
    color: #fff;
}

.Status__Item--Disable {
    box-shadow: none;
}

.Status__Item--Disable img {
    filter: brightness(0.5); 
}