.break {
    flex-basis: 100%;
    height: 0;
}
.rtable {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 3em 0;
    padding: 0;
}
.rtable-row-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 1px 0;
    background: #f2f2f2;
}

.rtable-row-container:hover{
    background-color: #eee9ea;
}
.rtable-row-container.rtable-header-row:hover{
    background:none;
}
.rtable-cell {
    flex: 3;
    padding: 0.2em;
}
.rtable-cell-header{
    padding: 0;
}
.text-center .rtable-cell{
    text-align: center;
}

/* Cell styles
================================== */
.rtable-row-container>.rtable-cell--head {
    flex: 2;
}
/* Responsive
==================================== */
@media all and (max-width: 845px) {
    .rtable--collapse .rtable-row-container {
        display: block;
        background: #fff;
    }

    .rtable--collapse .rtable-cell {
        width: 100%;
        margin: 2px 0;
    }
    .rtable--collapse .rtable-cell.rtable-data {
        width: 50%;
        display: inline-block;
        vertical-align: top;
    }
    .rtable--collapse .rtable-cell--head{
        background-color: #7cabe3;
    }
}
.xs-header{
    background-color: #0d6aad;
    color: #fff;
    text-align: center
}
.rtable-cell--center{
    display: flex;
    align-items: center;
}
.is-striped {
    background-image: linear-gradient(0, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07));
}