@media all and (max-width: 500px) {
    .ftable--collapse {
        display: block;
    }

    .ftable-cell {
        width: 100% !important;
    }

    .ftable--smHide {
        display: none;
    }

    .ftable-cell-smhead {
        font-weight: bold !important;
        background: slategrey !important;
        color: white !important;
    }

    .ftable-cell--foot {
        margin-bottom: 1em !important;
    }
}


.ftable {
    display: flex;
    flex-direction: row column-reverse;
    flex-wrap: wrap;
    margin: 0 0 3em 0;
    padding: 0;
}

.ftable-cell {
    box-sizing: border-box;
    flex-grow: 1;
    width: 100%;
    padding: 0.8em 1.2em;
    overflow: hidden;
    /* Or flex might break */
    list-style: none;
    border: solid 1px #e2e6e9;
    background: white;
    margin: -1px 0 0 -1px;
    /*fixes border width issue*/

}

.ftable-cell--alignLeft {
    text-align: left;
}

.ftable-cell--alignCenter {
    text-align: center;
}

.ftable-cell--alignRight {
    text-align: right;
}

.ftable-head {
    font-weight: bold;
    background: slategrey;
    color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.ftable--2cols>.ftable-cell {
    width: 50%;
}

.ftable--3cols>.ftable-cell {
    width: 33.33%;
}

.ftable--4cols>.ftable-cell {
    width: 25%;
}

.ftable--5cols>.ftable-cell {
    width: 20%;
}

.ftable--6cols>.ftable-cell {
    width: 16.6%;
}

.ftable--7cols>.ftable-cell {
    width: 12.2%;
}

.ftable--8cols>.ftable-cell {
    width: 12.5%;
}

.ftable--9cols>.ftable-cell {
    width: 11.1%;
}

.ftable--10cols>.ftable-cell {
    width: 10%;
}