.CardOverview {
    box-shadow: 0px 0px 24px 1px rgb(0 0 0 / 16%);
    width: 100%;
    padding: .5rem;
}

.CardOverview__Wrapper {
    margin: 0.5rem 1rem;
}

.CardOverview__Title{
    margin-bottom: 1.5rem;
}

.CardOverview__Title {
    color: #787B80;
}

.CardOverview__Content--Grey {
    color: #787B80;
}

.CardOverview__ContentWrapper {
    display: flex;
    flex-direction: column;
}

.CardOverview__ContentWrapper > * {
    flex: 1 0 5rem;
}

.CardOverview__Content {
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #7B7A7E;
    padding: 0.5rem 0;
}

.CardOverview__Content span {
    color: #353B4A;
    margin-left: 1rem;
}

.CardOverview__Content--Green {
    color: #51BA7F;
}

.CardOverview__Content--Red {
    color: #CB3C2E;
}

.CardOverview__Content--Yellow {
    color: #F0CE34;
}

@media only screen and (min-width: 992px) {
    .CardOverview__Content {
        flex-direction: column;
        align-items: flex-start;
        margin-right: 0.5rem;
        padding: 0 0 1.5rem 0;
    }

    .CardOverview__ContentWrapper {
        flex-direction: row;
    }

    .CardOverview__Content span { 
        margin-left: 0rem;
    }
}