html{
    width: 100%;
}
body {
    font-size: 12pt;
    font-family: monospace;
    padding: 25px 25px 25px;
}
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f0f0f0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #aaa;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.report-title{
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: normal;
    text-shadow: 0 5px 15px #aaaaaa60;
}
#report-header{
    position: relative;
}
.report-subtitle{
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: normal;
}
.inspection {
    margin-bottom: 75px;
    border: 1px dashed #ccc;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 20px 40px -15px #0001;
}
.inspection table {
    width: 100%;
}
.inspection table thead {
    background: #f0f0f0;
}
.inspection table th {
    text-align: left;
    font-size: 12pt;
}
.inspection td {
    font-size: 12pt;
    font-weight: 300;
    vertical-align: top;
}
.inspection tr:not(:last-child) td {
    border-bottom: 1px solid #eee;
}
.inspection .heading{
    font-size: 16pt;
    padding: 10px 0;
    margin-bottom: 15px;
    display: block;
}
.inspections-heading {
    padding: 15px;
    text-align: center;
    font-size: 16pt;
    letter-spacing: 1px;
    color: #000;
    background: #ccc;
    text-transform: uppercase;
    z-index: 1;
    position: sticky;
    top: -1px;
    margin-bottom: 45px;
    display: block;
}
.inspections-heading:not(:first-child) {
    margin-top: 150px;
}
span.level::before{
    content:"";
    display: inline-block;
    height: .8em;
    width: .8em;
    vertical-align: middle;
    position: relative;
    margin-right: 8px;
    border-radius: 5px;
}
#inspections-blocks tbody tr:hover{
    background: #6498cd1c;
}
span.level-1::before{ /* Normal */
    background: #00ff00;
}
span.level-2::before{ /* Notice */
    background: #00acc1;
}
span.level-4::before{ /* Warning */
    background: #ffd400;
}
span.level-8::before{ /* Danger */
    background: #ff0000;
}

.row > div.level-1{ /* Normal */
    background: #e5ffe540;
}
.row > div.level-2{ /* Notice */
    background: #dffbff40;
}
.row > div.level-4{ /* Warning */
    background: #fffae540;
}
.row > div.level-8{ /* Danger */
    background: #ffe5e540;
}

.table{
    display: table;
    margin-top: 20px;
    box-shadow: 0 20px 40px -15px #0001;
}
.row{
    display: table-row;
}
.row > div{
    display: table-cell;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.row:last-child > div{
    border-bottom: none!important;
}
.row > div:first-child{
    background: #f0f0f0;
    font-weight: bold;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
}
ul {
    margin-top: 5px;
    margin-bottom: 5px;
    list-style-type: square;
}
.row > div ul {
    padding-left: 20px;
    margin: 0;
}
.row > div ul ul{
    padding-left: 40px;
}

ul.summary {
    list-style-type: none;
    padding-left: 0!important;
}
ul.summary > li:not(:last-child){
    margin-bottom: 10px;
}
ul.summary > li .badge{
    float: right;
    padding: 3px 5px;
    position: relative;
    top: -0.05em;
    background: #f0f0f0;
    font-size: .8em;
    border-radius: 5px;
}

ul.summary a, ul.summary a:visited{
    text-decoration: none;
    color: #444;
}
ul.summary a:hover, ul.summary a span.domain{
    color: #88f!important;
}

ul.summary span.domain{
    text-transform: uppercase;
}

ul ul li {
    padding: 7px 0;
}

ul ul li:not(:last-child) {
    border-bottom: 1px dashed #f0f0f0;
}

.list .title {
    font-size: 18px;
    font-weight: bold;
    border-left: 5px solid #f0f0f0;
    padding-left: 15px;
    text-transform: uppercase;
}
.list.right{
    float: right;
    margin-left: 100px;
}