* {
  box-sizing: border-box;
}
*::after, *::before {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body,
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #555;
  font-family: "Lato", "Arial", sans-serif;
  font-size: 1rem;
  min-width: 320px;
}

.jumbotron {
  padding: 2em;
}
.jumbotron .row {
  align-items: center;
}
.jumbotron .col-md-8 {
  display: flex;
  align-items: center;
}
.jumbotron .col-md-8 img {
  flex: none;
  margin-right: 15px;
}
.jumbotron .col-md-8 h1 {
  flex: 1 1 0;
}
@media (min-width: 768px) {
  .jumbotron .col-md-4 {
    text-align: right;
  }
}
.jumbotron .col-md-4 a {
  display: inline-block;
  color: #0273ba;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid #037fb0;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
.jumbotron .col-md-4 a:hover, .jumbotron .col-md-4 a:focus {
  color: #015488;
  border-color: transparent;
}

.container {
  max-width: 1760px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

main {
  margin: 45px auto;
}
@media (min-width: 768px) {
  main {
    margin: 60px auto 80px;
  }
}

h1 {
  margin: 0;
}

h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 45px 0 15px;
}
h2 strong {
  font-weight: 600;
}

table.table .thead-light th {
  color: #5f6a78;
  font-weight: 600;
}

tr {
  width: 100%;
  font-size: 0.9375rem;
}
tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
tr .num {
  font-weight: 600;
  text-align: right;
  min-width: 45px;
}
tr .type {
  font-weight: 600;
  text-align: center;
  width: 87px;
}
tr .position {
  min-width: 150px;
}
tr .markup,
tr .rule {
  width: 120px;
  font-weight: 600;
}
tr[data-type=error] .type {
  background: rgba(192, 43, 51, 0.4);
}
tr[data-type=warning] {
  display: none;
}
tr[data-type=warning] .type {
  background: rgba(255, 215, 0, 0.25);
}
tr[data-type=notice] {
  display: none;
}
tr[data-type=notice] .type {
  background: rgba(11, 163, 220, 0.05);
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}