body {
  margin: 0;
  padding: 0;

  font-family: "Overpass", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.inner {
  max-width: 1100px;
  margin: 0 auto;
}
.inner.body {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media (max-width: 1100px) {
  .inner {
    max-width: calc(100vw - 12px);
    margin: 0 auto;
  }
}


.globalnav {
  font-size: 11px;
  color: rgb(212, 212, 212);
  background: rgb(46, 46, 46);
}
.globalnav .inner {
  display: flex;
}
.globalnav .items {
  display: flex;
  margin-left: auto;
}
.globalnav .items .item {
  text-transform: uppercase;
  padding: 6px 14px 6px 0px;
}
.globalnav .items .item a {
  text-decoration: none;
  color: inherit;
}
.globalnav .items .item:not(:last-child)::after {
  content: "|";
  color: rgb(212, 212, 212);
  padding-left: 14px;
}

.brand {
  display: flex;
}
.brand .title {
  margin-left: 1.2em;
}
@media (max-width: 600px) {
  .brand {
    display: block;
  }
  .brand .title {
    margin-left: 0;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 50%;
}
table tbody tr {
  border-top: 1px solid #e5e5e5;
}
table thead tr th {
  padding: 10px 12px;

  color: #999;
  font-size: 14px;
  text-transform: uppercase;
  text-align: left;
}
table tr td {
  padding: 10px 12px;
}

ul li.hide {
  list-style: none;
  margin-bottom: 8px;
}