/* Palette */
/* Layout */
/* Container widths, keyed to the breakpoint they take effect at. */
/* --- Base ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-flow: column;
  height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
}

h3 {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #005bbb;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #003a78;
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
}

dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

table {
  border-collapse: collapse;
}

th {
  text-align: inherit;
}

/* --- Layout -------------------------------------------------------------- */
.container, #content {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container, #content {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, #content {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, #content {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container, #content {
    max-width: 1240px;
  }
}

.row, .provider-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*=col-md-], a.provider-box {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 16.6666667%;
    max-width: 16.6666667%;
  }
  .col-md-4, a.provider-box {
    flex: 0 0 33.3333333%;
    max-width: 33.3333333%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333%;
    max-width: 83.3333333%;
  }
}
/* --- Utilities ----------------------------------------------------------- */
.lead {
  font-size: 1.5rem;
  font-weight: 300;
}

.list-unstyled, #footer ul {
  padding-left: 0;
  list-style: none;
}

.float-right {
  float: right;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.text-light {
  color: #f8f9fa;
}

.bg-primary {
  background-color: #005bbb;
}

.bg-secondary {
  background-color: #6c757d;
}

.bg-danger {
  background-color: #dc3545;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.btn:hover {
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #005bbb;
  border-color: #005bbb;
}
.btn-primary:hover {
  color: #fff;
  background-color: #003a78;
  border-color: #003a78;
}

.table, div.sectionbody table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th, .table td, div.sectionbody table th, div.sectionbody table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th, div.sectionbody table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody tr:nth-of-type(odd), div.sectionbody table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* --- Navbar -------------------------------------------------------------- */
#navbar {
  flex: 0 1 auto;
  margin-bottom: 1.3rem;
  padding: 1.8rem 0 0.8rem;
  background-color: #005bbb;
  color: #fff;
}
#navbar a {
  color: #fff;
}
#navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
#navbar .navbar-brand {
  margin-right: 3rem;
  padding: 0 0 0.3rem 0;
}
#navbar .navbar-brand img {
  height: 40pt;
}
#navbar {
  /* Sits bottom-right beside the brand, and wraps under it when there is no
     room — the old markup hid it below 992px behind a toggle with no script. */
}
#navbar .navbar-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}
#navbar .navbar-nav .nav-link {
  display: block;
  padding: 0.5rem 1rem 0;
}

/* --- Breadcrumb ---------------------------------------------------------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 2rem;
  padding: 0.6rem 15px;
  font-size: 0.9rem;
  list-style: none;
  background-color: #fff;
  border-radius: 0;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* --- Page ---------------------------------------------------------------- */
div.banner {
  margin: 50pt 0;
  font-size: 2.5rem;
}
div.banner img.float-right {
  margin: 0 0 20pt 20pt;
}
div.banner h2 {
  font-size: 3.5rem;
}

#main {
  flex: 1 1 auto;
}

#content {
  margin-bottom: 5rem;
}
#content h2 {
  margin-top: 2rem;
}
#content h3 {
  margin-top: 1.75rem;
}
#content aside {
  background-color: #fff;
  float: right;
  width: 400pt;
  padding: 30px;
  margin: 0 -15px 15px 30px;
}
#content aside img.logo {
  max-width: 355pt;
  margin-bottom: 2rem;
}
#content aside h3 {
  margin-top: 0;
}
#content aside dl, #content aside ul {
  margin: 0;
}
#content small.timestamp {
  display: block;
  margin-top: -1rem;
  margin-bottom: 1.2rem;
}
#content div.box {
  background-color: #fff;
  padding: 1rem;
  margin: 1rem -1rem;
}
#content div.box h3 {
  margin-top: 0;
}
#content div.box li {
  margin-bottom: 1rem;
}
#content div.box table {
  margin-bottom: 0;
}
#content div.box.timestamped h3 {
  margin-bottom: 0.2rem;
}
#content div.box.timestamped small.timestamp {
  display: block;
  margin-bottom: 1.2rem;
}

#footer {
  flex: 0 1 auto;
  background-color: #212529;
  margin-top: 3rem;
  padding: 1.5rem 0;
  color: #fff;
}
#footer h3 {
  font-size: 1.5rem;
}
#footer ul {
  margin-bottom: 0;
}
#footer a {
  color: #fff;
}
#footer .social {
  text-align: right;
}
#footer .social a {
  margin-left: 10pt;
}
#footer .social a img {
  height: 20pt;
}

/* --- Providers ----------------------------------------------------------- */
.provider-list {
  margin-left: -30px;
  margin-right: -30px;
}

a.provider-box {
  display: block;
}
a.provider-box .provider-box {
  background-color: #fff;
  padding: 0.5rem;
  margin-bottom: 30px;
  text-align: center;
}
a.provider-box .provider-box div.logo {
  width: 100%;
  height: 80pt;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.provider-box .provider-box div.logo img.logo {
  max-width: 100%;
  max-height: 100%;
}

/* --- Asciidoctor --------------------------------------------------------- */
div.sectionbody {
  margin-bottom: 2rem;
}
div.sectionbody table {
  margin: 0.7rem 0;
}
div.sectionbody table p {
  margin-bottom: 0;
}
div.sectionbody .sect2 {
  margin-top: 2rem;
}

div.highlight {
  background-color: #272822;
  padding: 1rem;
  margin: 1rem -1rem;
}
div.highlight pre {
  margin: 0;
}

div.colist {
  background-color: #fff;
  padding: 1rem;
  margin: -0.9rem -1rem 1rem;
}
div.colist ol {
  margin: 0;
}
div.colist ol li p {
  margin-bottom: 0.2rem;
}

h1 a.hyper, h2 a.hyper, h3 a.hyper, h4 a.hyper {
  display: none;
}
h1:hover a.hyper, h2:hover a.hyper, h3:hover a.hyper, h4:hover a.hyper {
  display: inline;
}