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

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
}
.flex-row:not(:last-child) {
    margin-bottom: -1px;
}
.flex-cell,
.flex-cell-left {
    padding: 0.8em;
    color: #000;
    font-weight: 500;
}
.flex-cell-left {
    flex: 1;
    text-align: left;
    border-right: 1px solid #ccc;
    text-transform: uppercase;
    font-size: 1em;
    margin-right: -1px;
}
.flex-cell {
    flex: 2;
    text-align: left;
    font-size: 1em;
    border-left: 1px solid #ccc;
    padding: 1em 2em;
}
.block-tabs-table {
    border-spacing: 0.6em;
}
.block-tabs-table td,
.block-tabs-table th {
    width: 20%;
}
.table-th-cell {
    background-color: #CDFF3A;
    color: #000;
    padding: 0.4em 0.6em;
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: left;
    vertical-align: top;
}
.table-row-btn {
    position: relative;
    background: #CDFF3A;
    padding: 0.8em 1.5em 0.8em 0.8em;
    color: #000;
    font-size: 1.3em;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
}
.table-row-cell {
    display: table-cell;
    border: 1px solid #898989;
    padding: 0.7em;
    color: #000;
    font-size: 1em;
    font-weight: 400;
    vertical-align: top;
}
.table-row-cell ul {
    list-style-type: disc;
    margin-left: 1em;
}
.table-row-cell ul li {
    color: #000;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .table-wrap {
        overflow-x: auto;
    }
    .table-th-cell {
        font-size: 1.3em;
    }
}