
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
    visibility: hidden;
    opacity: 0;
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 400;
    background: #ebecf0;
    transition: opacity .4s ease;
}

body.pageLoaded{
    visibility:visible;
    opacity: 1;
}

a {
	text-decoration: none;
	color: #333;
}

article {
	margin-top: 10px;
	margin-bottom: 10px;
}

h1 {
	font-size: 1.8em;
}


/* Tables */

.bsTableWrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bsTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.bsTable thead th {
    padding: 13px 16px;
    background: #20242a;
    color: #fff;
    font-family: "Anton", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,.08);
}

.bsTable thead th:last-child {
    border-right: 0;
}

.bsTable tbody tr:nth-child(even) {
    background: #f7f8f9;
}

.bsTable tbody tr:hover {
    background: #eef1f3;
}

.bsTable tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7e9;
}

.bsTable tbody tr:last-child td {
    border-bottom: 0;
}

.bsTable th.numeric,
.bsTable td.numeric {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Coverage table */

.coverageTable {
    min-width: 1000px;
}

.coverageTable thead th {
    text-align: center;
}

.coverageTable thead th:first-child {
    text-align: left;
}

.coverageTable thead th:nth-child(2) {
    text-align: left;
}

.coverageTable .competitionName {
    font-weight: 700;
    white-space: nowrap;
}

.coverageTable .competitionFirst {
    margin-top: 4px;
    color: #8a8f94;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.coverageTable .matches {
    text-align: right;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.coverageCell {
    padding: 12px 10px !important;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #eef0f1;
}

.coveragePct {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.coverageMissing {
    margin-top: 5px;
    color: #8a8f94;
    font-size: 10px;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.coverageCell[title] {
    cursor: help;
}

.coverageFirst {
    margin-top: 3px;
    color: #b0b4b8;
    font-size: 9px;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.noData {
    color: #8a8f94;
    font-size: 11px;
    font-weight: 400;
}

@media (max-width: 600px) {
    .bsTable thead th,
    .bsTable tbody td {
        padding: 11px 12px;
    }

    .coveragePct {
        font-size: 21px;
    }
}