.royalTable {
    display: block;
}

.royalTable thead {
    background-color: #061556;
    display: none;
}

.royalTable thead tr th {
    padding: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: 2px;
}

.royalTable thead tr th.introCopy {
    text-transform: none;
}

.royalTable tbody {
    display: block;
}

.royalTable tbody tr {
    display: block;
    padding: 1rem .5rem;
    margin-bottom: 2rem;
}

.royalTable tbody tr:nth-of-type(even) {
    background: #f7f7f7;
}

.royalTable tbody tr td {
    display: block;
    padding: .75rem;
    text-align: left;
}

.royalTable tbody tr td::before {
    content: attr(data-label) ": \a";
    white-space: pre;
    font-weight: 600;
    float: none;
}

@media screen and (min-width: 480px) {
    .royalTable tbody tr td {
        text-align: right;
        position: relative;
        padding-left: 40%;
    }

    .royalTable tbody tr td::before {
        content: attr(data-label);
        white-space: normal;
        float: left;
        position: absolute;
        left: .75rem;
    }
}

@media screen and (min-width: 768px) {
    .royalTable {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
        display: table;
    }

    .royalTable thead {
        display: table-header-group;
    }

    .royalTable tbody {
        display: table-row-group;
    }

    .royalTable tbody tr {
        display: table-row;
        height: 100px;
    }

    .royalTable tbody tr td {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        padding-left: .75rem;
    }

    .royalTable tbody tr td::before {
        content: none;
    }

    .royalTable tbody tr td a {
        margin-bottom: 1rem;
    }
}