.mmz-responsive-table {
    li {
        border-radius: 3px;
        padding: 25px 30px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    .table-header {
        background-color: var(--background-color-main);
        color: var(--text-color-main);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }
    .table-row {
        background-color: var(--text-color-main);
        box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
    }
    .col-1 {
        flex-basis: 5%;
    }
    .col-2 {
        flex-basis: 11%;
    }
    .col-3 {
        flex-basis: 11%;
    }
    .col-4 {
        flex-basis: 11%;
    }
    .col-5 {
        flex-basis: 11%;
    }
    .col-6 {
        flex-basis: 18%;
    }
    .col-7 {
        flex-basis: 11%;
    }
    .col-8 {
        flex-basis: 11%;
    }
    .col-9 {
        flex-basis: 11%;
    }

    @media all and (max-width: 767px) {
        .table-header {
        display: none;
        }
        li {
        display: block;
        }
        .col {
        display: flex;
        flex-basis: 100%;
        padding: 10px 0;
        &:before {
            color: #6C7A89;
            padding-right: 10px;
            content: attr(data-label);
            flex-basis: 50%;
            text-align: right;
        }
        }
    }
}