@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&subset=latin-ext");
* {
  box-sizing: border-box;
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  list-style-type: none;
  outline: none;
  text-decoration: none;
  position: relative;
  box-shadow: none;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

.wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.wrapper.small {
  max-width: 660px;
}
.wrapper.large {
  max-width: 1100px;
}
.wrapper.full-width {
  max-width: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  color: #222;
  font-size: 15px;
}

/* common styles */
strong, b {
  font-weight: 600;
}

em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

s {
  text-decoration: line-through;
}

/* links */
a {
  color: inherit;
  font-weight: 500;
}

/* headings */
h1, h2, h3, h4, h5, h6 {
  margin: 10px auto;
  font-weight: 500;
  display: block;
}

h1 {
  font-size: 200%;
}

h2 {
  font-size: 180%;
}

h3 {
  font-size: 160%;
}

h4 {
  font-size: 140%;
}

h5 {
  font-size: 120%;
}

h6 {
  font-size: 100%;
}

/* paragraphs */
p {
  display: block;
  margin: 15px auto;
  line-height: 160%;
  color: inherit;
}

/* common text styles */
.light {
  font-weight: 100;
}

.bold {
  font-weight: 500;
}

.xbold {
  font-weight: 700;
}

.xxbold {
  font-weight: 900;
}

.italic {
  font-style: italic;
}

.strikethrough {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.overline {
  text-decoration: overline;
}

.justify {
  text-align: justify;
}

hr {
  margin: 35px auto;
  display: block;
}
hr.divider {
  margin: 40px auto;
  border-top: 2px solid #eee;
}

.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  font-size: 100%;
  font-weight: 600;
  padding: 15px 25px;
  display: inline-block !important;
  cursor: pointer;
  border-radius: 3px;
  background: #ccc;
  border: 2px solid transparent;
  width: auto;
  user-select: none;
  text-align: center;
  height: 50px;
  line-height: 100%;
  vertical-align: top;
}
.button:hover {
  background: #bbb;
}
.button.outline {
  border: 2px solid #ddd;
  background: #fff;
}
.button.outline:hover {
  border-color: #999;
}
.button.small {
  padding: 8px 15px;
  font-size: 85%;
  height: auto;
}
.button.large {
  padding: 15px 35px;
  font-size: 110%;
  height: auto;
}

.button-group {
  display: flex;
}
.button-group .button {
  border-radius: 0;
}
.button-group .button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.button-group .button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

details {
  margin: 15px auto;
}
details summary {
  font-weight: 500;
  user-select: none;
  cursor: pointer;
}

input, select {
  border: 2px solid #eee;
  padding: 15px 20px;
  font-family: inherit;
  display: inline-block;
  width: 100%;
  font-size: 100%;
  height: 50px;
  background: #fff;
}
input[type=checkbox], select[type=checkbox] {
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}
input[type=radio], select[type=radio] {
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}
input[type=color], select[type=color] {
  padding: 0;
  height: 50px;
}
input[type=search], select[type=search] {
  appearance: none;
}
input[type=range], select[type=range] {
  appearance: none;
  width: 100%;
  border: 0;
  outline: none;
}
input[type=range]:focus, select[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track, select[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #eee;
}
input[type=range]::-moz-range-track, select[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #eee;
}
input[type=range]::-webkit-slider-thumb, select[type=range]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  background: #aaa;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  -webkit-appearance: none;
}
input[type=range]::-moz-range-thumb, select[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  background: #aaa;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  -webkit-appearance: none;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: inherit;
  user-select: none;
  cursor: pointer;
  font-size: 100%;
}

select {
  appearance: none;
  border-radius: 0;
  background-image: linear-gradient(45deg, transparent 50%, #ccc 50%), linear-gradient(135deg, #ccc 50%, transparent 50%), linear-gradient(to right, #eee, #eee);
  background-position: calc(100% - 20px) 22px, calc(100% - 15px) 22px, calc(100% - 40px) 0px;
  background-size: 5px 5px, 5px 5px, 2px 50px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 55px;
  font-size: 100%;
}
select::-ms-expand {
  display: block;
}

textarea {
  border: 2px solid #eee;
  padding: 20px;
  display: inline-block;
  font-family: inherit;
  width: 100%;
  font-size: 100%;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 18px;
  border-radius: 3px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch input:checked + .slider {
  background-color: #222;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: left;
}
table td, table th {
  padding: 20px 0;
}
table tr {
  border-bottom: 2px solid #eee;
}
table th {
  font-weight: 700;
  user-select: none;
  cursor: pointer;
}
table th.ascend:after, table th.descend:after {
  color: #bbb;
  font-size: 80%;
  padding-left: 5px;
}
table th.ascend:after {
  content: " ▴";
}
table th.descend:after {
  content: " ▾";
}
table.border {
  border: 2px solid #eee;
}
table.border td, table.border th {
  padding: 20px;
}

progress {
  border: 4px solid #eee;
  background: #eee;
  width: 100%;
  height: 30px;
  position: relative;
}
progress:before {
  content: attr(data-label);
  font-size: 80%;
  font-weight: 600;
  text-align: center;
  padding-top: 5px;
  position: absolute;
  left: 0;
  right: 0;
}
progress::-webkit-progress-bar {
  background: #eee;
}
progress::-webkit-progress-value {
  background: #ccc;
}
progress::-moz-progress-bar {
  background: #ccc;
}

nav {
  display: block;
}
nav a {
  display: inline-block;
  padding: 10px 0;
  margin-right: 20px;
}
nav.right a {
  margin-right: 0;
  margin-left: 20px;
}

figure img {
  max-width: 100%;
  display: block;
}
figure.outline {
  background: #eee;
}
figure.outline figcaption {
  padding: 10px 20px;
}

.breadcrumbs li {
  display: inline-block;
  margin: initial;
  padding: 10px 0;
}
.breadcrumbs li + li:before {
  padding: 5px 10px 5px 5px;
  color: black;
  content: "»";
}
.breadcrumbs.with-slashes li + li:before {
  padding: 5px;
  content: "/ ";
}

.pagination {
  text-align: center;
}
.pagination li {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
}
.pagination li:hover {
  text-decoration: underline;
}
.pagination li.ellipsis:hover {
  text-decoration: none;
}
.pagination li.ellipsis:before {
  content: "…";
}
.pagination.full-width {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #444;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
}
.spinner.large {
  width: 40px;
  height: 40px;
  border-width: 6px;
}
.spinner.slow {
  animation: spin 2s linear infinite;
}
.spinner.fast {
  animation: spin 0.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 3px;
  width: 120px;
  bottom: 130%;
  left: 50%;
  margin-left: -60px;
  position: absolute;
  z-index: 1;
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}
.tooltip.bottom .tooltiptext {
  bottom: initial;
  top: 130%;
}
.tooltip.bottom .tooltiptext::after {
  top: initial;
  bottom: 100%;
  border-color: transparent transparent #222 transparent;
}

@media (prefers-color-scheme: dark) {
  .enable-dark-mode {
    background-color: #222;
    color: #fff;
  }
  .enable-dark-mode progress {
    color: #222;
  }
  .enable-dark-mode input, .enable-dark-mode select, .enable-dark-mode textarea {
    background: #222;
    color: #fff;
  }
  .enable-dark-mode figure.outline figcaption {
    background: #444;
    color: #fff;
  }
  .enable-dark-mode .breadcrumbs li + li:before {
    color: #fff;
  }
  .enable-dark-mode .button {
    color: #222;
  }
}
.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.full-width {
  width: 100%;
}

.border {
  border: 2px solid #eee;
  padding: 20px;
  margin-bottom: 15px;
}

.empty-label {
  margin-top: 28px;
}
@media only screen and (max-width: 425px) {
  .empty-label {
    margin-top: initial;
  }
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

@media only screen and (max-width: 425px) {
  .hide-on-mobile {
    display: none !important;
  }
  .show-on-mobile {
    display: block !important;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 425px) {
  .hide-on-tablet {
    display: none !important;
  }
  .show-on-tablet {
    display: block !important;
  }
}
.margin-small {
  margin-top: 30px;
  margin-bottom: 30px;
}
.margin-large {
  margin-top: 60px;
  margin-bottom: 60px;
}
