.card_header{
    display: flex;
    border-radius: 6px;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
}

.svg_header {
    background: var(--bottom-line-table);
    border-radius: 6px;
    padding: 5px;
    width: 51px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg_header svg{
    width: 35px;
    height: 35px;
}

.svg_text_header {
    display: flex;
}

.flex_header_top {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0 10px;
}

.flex_header_bottom {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 0 10px;
}

.flex_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 578px) {
    .card_header{
        display: flex;
        background: var(--card-color);
        border-radius: 6px;
        padding: 10px;
        justify-content: space-between;
        align-items: center;
    }

    .svg_header {
        background: var(--bottom-line-table);
        border-radius: 4px;
        padding: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .svg_header svg{
        width: 20px;
        height: 20px;
        fill: var(--span-color);
    }
    
    .svg_text_header {
        display: flex;
        align-items: center;
    }
    
    .flex_header_top {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 0 7px;
    }
    
    .flex_header_bottom {
        display: none;
    }
    
    .flex_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}