
.Rtable {
    display: flex;
    flex-wrap: wrap;
    margin: 1em 0 2em 0;
    padding: 0;
    font-size: 1em;
}
.Rtable-cell {
    box-sizing: border-box;
    flex-grow: 1;
    width: 100%;
    padding: 0.4em 0em;
    overflow: hidden;
    list-style: none;
    border-top: solid 1px #3D4450;
    color: #FFFFFF;
}
.Rtable-cell > h1,
.Rtable-cell > h2,
.Rtable-cell > h3,
.Rtable-cell > h4,
.Rtable-cell > h5,
.Rtable-cell > h6 {
    margin: 0;
}
/* Table column sizing
================================== */
.Rtable--2cols > .Rtable-cell {
    width: 50%;
}
.Rtable--3cols > .Rtable-cell {
    width: 33.33%;
}
.Rtable--4cols > .Rtable-cell {
    width: 25%;
}
.Rtable--5cols > .Rtable-cell {
    width: 28%;
}
.Rtable--6cols > .Rtable-cell {
    width: 16.6%;
}

.Rtable--2cols > .Rtable-cell--value {
    width: 76%;
}
.Rtable--2cols > .Rtable-cell--key {
    color: #8B929A;
    width: 24%;
}

@media screen and ( max-width: 700px ) {
    .Rtable--2cols > .Rtable-cell--value {
        width: 68%;
    }
    .Rtable--2cols > .Rtable-cell--key {
        width: 32%;
    }
}

.Rtable-footnote {
    font-size: .8em;
    color: darkGrey;
}