.criminalHistoryItem__body {
    padding: 1rem 0;
}

.criminalHistoryItem__header {
    font-weight: bold;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: #00535e;
    color: #fff;
    border-bottom: 3px solid #26535c;
    border-radius: 5px 5px 0 0;
}

.criminalHistoryItem {
    margin-top: 2rem;
    border-radius: 5px;
    box-shadow: 0 3px 15px 3px #eee;
}

.criminalHistoryItem table {
    margin: 0.5rem auto;
    width: 98%;
    border-collapse: collapse;
}

.criminalHistoryItem tr:nth-of-type(odd) {
    background: #eee;
}

.criminalHistoryItem th {
    background: #19646e;
    color: white;
    font-weight: bold;
}
.criminalHistoryItem td,
.criminalHistoryItem th {
    padding: 0.4rem;
    border: 1px solid #ddd;
    text-align: left;
}

.criminalHistoryItem__table-title {
    border-radius: 2px;
    margin: 0 .75rem;
    color: #00535e;
    padding: 0.5rem 0.75rem;
    background-color: #e5f3f6;
    border: 1px solid #c3dbdf;
}

@media only screen and (max-width: 1220px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    .criminalHistoryItem table,
    .criminalHistoryItem thead,
    .criminalHistoryItem tbody,
    .criminalHistoryItem th,
    .criminalHistoryItem td,
    .criminalHistoryItem tr {
        display: block;
    }

    .criminalHistoryItem thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .criminalHistoryItem tr {
        border: 1px solid #ccc;
    }

    .criminalHistoryItem td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    .criminalHistoryItem td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    .criminalHistoryItem__table-title {
        margin: 0 .25rem;
    }

    .criminalHistoryItem__charge-table td:nth-of-type(1):before {
        content: "Offense Date";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(2):before {
        content: "Statute";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(3):before {
        content: "Description";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(4):before {
        content: "Degree";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(5):before {
        content: "Plea";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(6):before {
        content: "Disposition";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(7):before {
        content: "Sentence";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(8):before {
        content: "Citation";
    }
    .criminalHistoryItem__charge-table td:nth-of-type(9):before {
        content: "Warrant";
    }

    .criminalHistoryItem__status-table td:nth-of-type(1):before {
        content: "Current";
    }
    .criminalHistoryItem__status-table td:nth-of-type(2):before {
        content: "Status";
    }
    .criminalHistoryItem__status-table td:nth-of-type(3):before {
        content: "Date";
    }

    .citationDocument-table td:nth-of-type(1):before {
        content: "Date";
    }
    .citationDocument-table td:nth-of-type(2):before {
        content: "Name";
    }
    .citationDocument-table td:nth-of-type(3):before {
        content: "File Type";
    }
    .citationDocument-table td:nth-of-type(4):before {
        content: "Download";
    }
}