.card_status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card_status .card-thumb {
    width: 120px;
    height: 80px;
    border-radius: 20px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.card_status .card-thumb img {
    width: 100%;
    height: 100%;
    filter: saturate(1.5);
}

.card_status .card-content {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    padding: 20px;
    padding-left: 70px;
    margin-left: -40px;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    /*    background-color: #ff8500;
    background-image: linear-gradient(62deg, #ff8500 0%, #ffc422 100%);*/
    background-color: #330000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 400'%3E%3Cdefs%3E%3CradialGradient id='a' cx='396' cy='281' r='514' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23D18'/%3E%3Cstop offset='1' stop-color='%23330000'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='400' y1='148' x2='400' y2='333'%3E%3Cstop offset='0' stop-color='%23FA3' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23FA3' stop-opacity='0.5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='400'/%3E%3Cg fill-opacity='0.4'%3E%3Ccircle fill='url(%23b)' cx='267.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='532.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='400' cy='30' r='300'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}

@media (max-width: 767px) {
    .card_status .card-content {
        width: 100%;
        padding-left: 20px;
        padding-top: 60px;
        margin-left: 0px;
        margin-top: -40px;
    }
}

.card_status .card-title {
    font-size: 1.8rem;
    color: #ffffff;
}

.card_status .card-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
}

@media (max-width: 767px) {
    .card_status .card-btn {
        margin: auto;
    }
}

@media (max-width: 767px) {
    .card_status {
        flex-direction: column;
    }
}