* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100vh;
}
body {
  font-family: 'PT Sans', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #2a2929;
  background: #f6f5f5;
  width: 100%;
  display: grid;
  grid-template-rows: 80px auto;
  grid-template-columns: 2fr 5fr 3fr;
  grid-template-areas: "logo primary-nav search" "secondary-nav content aside";
}
a {
  color: #2d76cc;
}
a:hover {
  color: #4a90e2;
}
a:visited {
  color: #7a7373;
}
a:hover {
  text-decoration: underline;
}
code,
pre {
  font-family: 'Iosevka', monospace;
}
pre {
  background: #efeeee;
  color: #3d3c3c;
  padding: 0.5rem;
  overflow-x: auto;
  /* kind of a hack tbh but happens to make various code samples fit better
   * narrow spaces like the examples pane and front page */
  font-size: 0.9em;
}
.page-aside pre {
  background: #e6e5e5;
  color: #3d3c3c;
}
p:first-child,
pre:first-child {
  margin-top: 0;
}
p:last-child,
pre:last-child {
  margin-bottom: 0;
}
li,
dd {
  margin-bottom: 1em;
}
li:last-child,
dd:last-child {
  margin-bottom: 0;
}
dt code,
p code {
  font-size: 0.9em;
}
code code {
  font-size: 1em;
}
table,
tr,
td {
  padding: 0;
  border-collapse: collapse;
}
h1 code,
h2 code,
h3 code {
  font-weight: 600;
  font-size: 0.9em;
}
nav ul {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: normal;
}
h1 {
  font-size: 32px;
  margin-top: 0;
  font-weight: 500;
}
h2 {
  font-size: 24px;
  font-weight: 500;
}
h3 {
  font-size: 20px;
}
h2,
h3 {
  margin-top: 2rem;
}
.top-logo {
  grid-area: logo;
}
.top-nav {
  grid-area: primary-nav;
}
.top-search {
  grid-area: search;
}
.page-nav {
  grid-area: secondary-nav;
}
.page-toc h2 {
  margin-top: 0;
  color: #5a5555;
}
.page-toc .section-number {
  color: #7a7373;
}
.page-toc a {
  color: #9b9b9b;
}
.page-toc a:hover {
  text-decoration: underline;
}
.page-content {
  grid-area: content;
}
.page-aside {
  grid-area: aside;
}
.page-toc ol {
  padding-left: 30px;
}
.page-toc > .toc {
  padding-left: 0px;
}
.top-logo,
.top-nav,
.top-search {
  background: #3398dc;
  color: white;
  font-family: 'Roboto Slab', serif;
  line-height: 80px;
}
.page-nav,
.page-partial {
  padding: 30px;
}
.page-partial h2 {
  margin-top: 0;
}
.page-aside {
  background: #f6f5f5;
}
.page-nav {
  background: #2a2929;
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  color: #7a7373;
  display: flex;
  flex-direction: column;
}
.page-content {
  padding: 70px;
  position: relative;
  min-width: 300px;
  background: white;
}
.page-content.index {
  grid-column-start: 2;
}
.page-content.full {
  grid-column-start: 2;
  grid-column-end: span 2;
}
.splash-title {
  grid-column-start: span 2;
  margin-top: 50px;
  margin-bottom: 14px;
  font-size: 19px;
  border: 0;
  align-self: end;
}
.page-content.index .section {
  display: grid;
  grid-template-columns: 385px auto;
  grid-gap: 0 30px;
}
.splash-intro h2 {
  font-size: 18px;
  font-style: italic;
  color: #5a5555;
  font-family: 'Roboto Slab', serif;
  font-style: normal;
  margin: 0;
  border: 0;
  font-size: 26px;
  font-weight: 500;
  margin-top: -4px;
}
.segment.example pre,
.segment.example p {
  margin: 0;
}
.segment.example img {
  vertical-align: top;
}
.top-logo a {
  color: white;
  margin: 0;
  font-size: 22px;
  padding: 0 50px 0 80px;
  background-image: url('../images/logo-white.svg');
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: 16.5px 18px;
  line-height: 80px;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}
.top-logo a:visited {
  color: white;
}
.top-nav a {
  color: white;
  font-size: 16px;
  text-transform: lowercase;
  line-height: 80px;
  display: inline-block;
  padding: 0 25px;
}
.top-nav a,
.top-nav a:visited {
  color: white;
  text-decoration: none;
}
.top-nav a:hover {
  text-decoration: underline;
}
.top-nav a.active {
  background: white;
  color: #2a2929;
  text-decoration: underline;
}
.page-content h1 {
  border-top: 4px solid #2a2929;
  padding-top: 10px;
}
.toc {
  font-family: 'Roboto Slab', serif;
}
.page-toc > .toc > li > .toc {
  margin-bottom: 1.5em;
}
.toc li {
  margin-bottom: 10px;
}
.toc li li {
  margin-bottom: 0;
}
.toc a {
  text-decoration: none;
}
.toc ol a,
.toc ol .section-number {
  font-size: 16px;
}
.toc,
.toc ol {
  list-style: none;
}
.page-content ul,
.page-content ol,
.page-content dl {
  padding-left: 30px;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.page-content code {
  background: rgba(30, 29, 29, 0.07);
  padding: 3px;
  border-radius: 5px;
}
.page-content code code,
.definition-thumb code {
  border: 0;
  padding: 0;
}
.page-content a code {
  color: #3d3c3c;
}
.page-content a:hover code {
  color: #5a5555;
}
.page-content a:hover code strong {
  text-decoration: underline;
}
.page-nav .number-cell {
  padding-right: 3px;
}
.page-nav a {
  color: #9b9b9b;
  text-decoration: none;
}
.page-nav a:hover {
  text-decoration: underline;
}
.improve-docs {
  position: fixed;
  bottom: 0;
  left: 0;
  color: #7a7373;
  font-size: 13px;
  list-style-type: none;
  margin: 0;
  padding: 30px;
}
.improve-docs a {
  text-decoration: none;
}
.improve-docs a,
.improve-docs a:visited {
  color: #9b9b9b;
}
.improve-docs a:hover {
  text-decoration: underline;
}
.improve-docs li {
  margin-top: 5px;
  margin-left: -4px;
}
.improve-docs img {
  width: 16px;
  height: 16px;
  margin-bottom: -4px;
  margin-right: 4px;
  filter: grayscale(100%);
  opacity: 0.5;
}
.improve-docs li:hover a {
  color: white;
}
.improve-docs li:hover img {
  filter: none;
  opacity: 1;
}
.page-nav .context {
  position: relative;
  margin-bottom: 2rem;
}
.page-nav .context .children a.active {
  text-decoration: underline;
}
.page-nav .context a.self {
  color: white;
  text-decoration: underline;
}
.page-nav .context .top {
  font-size: 1.1em;
}
.page-nav .children {
  margin-left: 0.5rem;
  border-left: 1px solid #3d3c3c;
  padding-left: 0.8rem;
}
.page-nav .children table {
  border-spacing: 0;
  border-collapse: collapse;
}
.page-nav table td {
  vertical-align: top;
}
.section-number {
  margin-right: 0.5rem;
}
.definition-thumb a {
  color: inherit;
}
.definition-thumb pre {
  background: #f6f5f5;
  border-left: 1px solid #2a2929;
  color: #2a2929;
  margin-bottom: 0;
}
.definition-thumb a:hover {
  text-decoration: underline;
}
.definition-content {
  padding: 1em;
}
.definition-content .definition {
  margin: 1em;
}
.aside {
  color: #5a5555;
  font-style: italic;
  background: #f6f5f5;
  padding: 1em;
  margin: 2em;
}
.schema-content {
  display: none;
}
.schema-content:target {
  display: block;
}
.definition {
  margin-top: 2em;
}
.definition-content {
  border-left: 1px solid #e6e5e5;
}
.page-aside .example {
  margin-bottom: 3em;
}
.example h3 {
  font-size: 20px;
  margin-bottom: -4px;
}
.trademark-guidelines {
  font-family: 'Iosevka', monospace;
}
.trademark-guidelines li::before {
  display: none;
}
.trademark-guidelines ul > li {
  list-style-type: decimal;
}
.trademark-guidelines ul ul > li {
  list-style-type: lower-alpha;
}
.trademark-guidelines ul ul ul > li {
  list-style-type: lower-roman;
}
.trademark-guidelines ul ul ul ul > li {
  list-style-type: decimal;
}
.trademark-guidelines img {
  display: block;
  width: 100px;
  height: auto;
  margin-right: 20px;
}
.trademark-guidelines h1 {
  text-align: center;
  margin: 10px 0 30px;
}
.warning {
  background: #ffffdc;
  padding: 5px 10px;
  margin: 1em 0;
}
.warning p {
  color: #434300;
}
.tutorial-image {
  text-align: center;
}
.tutorial-image img {
  width: 70%;
}
.platform {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.platform-content td {
  padding-right: 10px;
  padding-bottom: 5px;
  white-space: nowrap;
}
.platform + .platform {
  margin-top: 20px;
}
.platform-image {
  flex-grow: 0;
  flex-shrink: 0;
  padding-top: 10px;
  width: 80px;
  padding-right: 20px;
  text-align: center;
}
.platform-image.windows img {
  width: 60px;
}
.platform-note {
  padding-left: 20px;
  padding-top: 32px;
  line-height: 30px;
}
.platform-note p {
  margin: 0;
}
.platform-image img {
  height: 70px;
  max-width: 70px;
}
.platform-content {
  flex-basis: 250px;
  flex-shrink: 0;
}
.platform-content h3 {
  margin: 0;
}
.release-header {
  display: flex;
  flex-direction: row;
  font-family: 'Roboto Slab', serif;
  align-items: flex-start;
  color: #2a2929;
}
.release {
  padding: 30px 0 120px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid #e6e5e5;
  display: grid;
  grid-template-columns: auto 150px;
  grid-template-rows: min-content auto;
  grid-template-areas: "header header" "notes downloads";
  grid-gap: 1em 20px;
}
.release .release-header {
  grid-area: header;
}
.release .release-notes {
  grid-area: notes;
}
.release .release-downloads {
  grid-area: downloads;
}
.release-header h2 {
  margin: 0;
  margin-right: 20px;
}
.release-header h2 a {
  text-decoration: none;
  color: inherit;
}
.release-header .release-date {
  font-size: 16px;
  position: relative;
  bottom: -9px;
  color: #7a7373;
}
.release-downloads {
  border-left: 1px solid #e6e5e5;
  padding-left: 20px;
  font-family: 'Iosevka', monospace;
}
.release-downloads h4 code {
  padding: 0 4px;
  border: 0;
  background: transparent;
}
.release-downloads h3 {
  margin-top: 0;
}
.release-downloads h4 {
  margin-top: 0;
  margin-bottom: 0;
}
.release-downloads ul {
  margin: 0;
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.release-downloads li {
  list-style-type: none;
  border-left: 1px solid #efeeee;
  font-size: 16px;
  margin-left: 12px;
}
.release-downloads li:hover {
  border-color: #9b9b9b;
}
.download-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: -6px;
  /* By Creative Stall */
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTIwMCIgaGVpZ2h0PSIxMjAwIiB2aWV3Qm94PSIwIDAgMTIwMCAxMjAwIj48Zz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDAgNjAwKSBzY2FsZSgwLjY5IDAuNjkpIHJvdGF0ZSgwKSB0cmFuc2xhdGUoLTYwMCAtNjAwKSIgc3R5bGU9ImZpbGw6IzJhMjkyOSI+PHN2ZyBmaWxsPSIjMmEyOTI5IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0IDI0IiB4bWw6c3BhY2U9InByZXNlcnZlIj48Zz48cG9seWdvbiBmaWxsPSIjMmEyOTI5IiBwb2ludHM9IjE5LDE0IDE5LDE4IDUsMTggNSwxNCAyLDE0IDIsMTggMiwyMiA1LDIyIDE5LDIyIDIyLDIyIDIyLDE4IDIyLDE0ICAiPjwvcG9seWdvbj48cG9seWdvbiBmaWxsPSIjMmEyOTI5IiBwb2ludHM9IjE1LDkuOSAxNSwyIDksMiA5LDkuOSA1LjgsOS45IDEyLDE2LjEgMTguMiw5LjkgICI+PC9wb2x5Z29uPjwvZz48L3N2Zz48L2c+PC9nPjwvc3ZnPg==");
  background-size: 24px 24px;
}
.release-downloads a {
  color: #5a5555;
  text-decoration: none;
  display: block;
  padding-left: 14px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.release-downloads a:hover {
  text-decoration: underline;
}
.release-note {
  padding: 15px 0;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #efeeee;
  position: relative;
}
.anchor {
  display: inline-block;
  position: absolute;
  box-sizing: content-box;
  top: 25px;
  left: -32px;
  width: 27px;
  height: 27px;
  padding-right: 10px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTIwMCIgaGVpZ2h0PSIxMjAwIiB2aWV3Qm94PSIwIDAgMTIwMCAxMjAwIj48Zz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDAgNjAwKSBzY2FsZSgwLjY5IDAuNjkpIHJvdGF0ZSgwKSB0cmFuc2xhdGUoLTYwMCAtNjAwKSIgc3R5bGU9ImZpbGw6IzJhMjkyOSI+PHN2ZyBmaWxsPSIjMmEyOTI5IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczpza2V0Y2g9Imh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaC9ucyIgdmlld0JveD0iMCAwIDM1IDM0IiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4Ij48dGl0bGU+TGluazwvdGl0bGU+PGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+PGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc2tldGNoOnR5cGU9Ik1TUGFnZSI+PHBhdGggZD0iTTE2LjQsMjYuMSBMMTIuNSwzMCBDMTEuMSwzMS40IDgsMzAuOCA1LjksMjguNyBDNC44LDI3LjYgNC4xLDI2LjIgMy45LDI0LjkgQzMuNywyMy43IDQsMjIuNyA0LjYsMjIuMSBMMTIsMTQuNyBDMTIuNywxNC4xIDEzLjcsMTMuOCAxNC44LDE0IEMxNi4xLDE0LjIgMTcuNSwxNC45IDE4LjYsMTYgQzE5LjEsMTYuNSAxOS42LDE3LjEgMTkuOSwxNy43IEMyMC4zLDE4LjQgMjEuMiwxOC43IDIxLjksMTguMyBDMjIuNiwxNy45IDIyLjksMTcgMjIuNSwxNi4zIEMyMiwxNS41IDIxLjQsMTQuNyAyMC43LDE0IEMxOS4xLDEyLjQgMTcuMiwxMS40IDE1LjIsMTEuMSBDMTMuMSwxMC44IDExLjEsMTEuMyA5LjgsMTIuNyBMMi40LDIwLjEgQzEuMSwyMS40IDAuNSwyMy40IDAuOCwyNS41IEMxLjEsMjcuNSAyLjEsMjkuNCAzLjcsMzEgQzUuNiwzMi45IDguMSwzNCAxMC4zLDM0IEMxMS45LDM0IDEzLjQsMzMuNSAxNC41LDMyLjMgTDE4LjQsMjguNCBDMTksMjcuOCAxOSwyNi45IDE4LjQsMjYuMyBDMTcuOSwyNS41IDE3LDI1LjUgMTYuNCwyNi4xIEwxNi40LDI2LjEgWiBNMzQuNCw4LjcgQzM0LjIsNi42IDMzLjIsNC42IDMxLjYsMyBDMzAsMS40IDI4LDAuNCAyNS45LDAuMiBDMjMuNywtMS4xMzI0Mjc0OWUtMTQgMjEuNywwLjYgMjAuMywyLjEgTDE1LjUsNi45IEMxNC45LDcuNSAxNC45LDguNCAxNS41LDkgQzE2LjEsOS42IDE3LDkuNiAxNy42LDkgTDIyLjQsNC4yIEMyMy4yLDMuNCAyNC4zLDMuMSAyNS42LDMuMiBDMjcsMy4zIDI4LjQsNCAyOS41LDUuMSBDMzAuNiw2LjIgMzEuMyw3LjYgMzEuNCw5IEMzMS41LDEwLjMgMzEuMiwxMS40IDMwLjQsMTIuMiBMMjIuMiwyMC40IEMyMS40LDIxLjIgMjAuMywyMS41IDE5LDIxLjQgQzE3LjYsMjEuMyAxNi4yLDIwLjYgMTUuMSwxOS41IEMxNC41LDE4LjkgMTQsMTguMiAxMy43LDE3LjUgQzEzLjQsMTYuNyAxMi41LDE2LjQgMTEuNywxNi44IEMxMC45LDE3LjEgMTAuNiwxOCAxMSwxOC44IEMxMS41LDE5LjkgMTIuMiwyMC44IDEzLDIxLjcgQzE0LjYsMjMuMyAxNi42LDI0LjMgMTguNywyNC41IEwxOS41LDI0LjUgQzIxLjQsMjQuNSAyMywyMy44IDI0LjMsMjIuNiBMMzIuNSwxNC40IEMzMy45LDEyLjkgMzQuNiwxMC45IDM0LjQsOC43IEwzNC40LDguNyBaIiBmaWxsPSIjMmEyOTI5IiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+PC9nPjwvc3ZnPjwvZz48L2c+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 3px 3px;
  opacity: 0;
}
.section-header {
  position: relative;
}
h1 .anchor {
  top: 23px;
}
h2 .anchor {
  top: 5px;
}
h3 .anchor {
  top: 3px;
}
.release-note:hover .anchor,
.section-header:hover .anchor {
  opacity: 1;
}
.release-note:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 25px;
}
.release-notes img {
  max-width: 100%;
}
.note-tags {
  font-family: 'Roboto Slab', serif;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.note-tag {
  border-bottom: 2px solid #3d3c3c;
  margin-right: 10px;
}
.note-tag.feature {
  border-color: #11c560;
}
.note-tag.security {
  border-color: #2a2929;
}
.note-tag.fix {
  border-color: #4a90e2;
}
.note-tag.breaking {
  border-color: #ed4b35;
  color: #ed4b35;
}
.downloads-toggle {
  position: relative;
  border-left: 2px solid #2a2929;
  padding-left: 10px;
  margin-left: 100px;
}
.downloads-toggle .platform {
  margin-top: 20px;
}
.downloads-toggle .toggle {
  position: absolute;
  top: 0.15em;
  left: 10px;
  line-height: 1.4rem;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.downloads-toggle .toggle:focus {
  outline: none;
}
.downloads-toggle .arrow:after,
.downloads-toggle .toggle:after {
  position: absolute;
  top: 0.15em;
  left: 10px;
  content: "\25ba";
  line-height: 1.4rem;
  font-family: sans-serif;
  font-size: 0.75rem;
  z-index: 1;
  cursor: pointer;
}
.downloads-toggle .arrow {
  padding-left: 20px;
  display: block;
  font-family: 'Roboto Slab', serif;
}
.downloads-toggle .toggle:checked + .arrow:after {
  content: "\25bc";
}
.downloads-toggle .toggle:not(:checked) + .arrow + .older-downloads {
  display: none;
}
.top-nav {
  position: relative;
}
.search-input {
  z-index: 101;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.25) url('../images/search_icon.svg') no-repeat top 3.5px right 2.5px;
  padding: 5px;
  transition: all 0.25s ease-out;
  position: absolute;
  right: 30px;
  top: 24px;
  width: 32px;
  height: 32px;
}
.search-input::placeholder {
  color: transparent;
}
.search-input:focus::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.search-input:focus,
.search-input:valid {
  outline: none;
  position: absolute;
  right: 30px;
  background: white;
  border-color: #e6e5e5;
  width: 500px;
}
.search-results {
  background: white;
  list-style-type: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.125);
  padding: 0;
  z-index: 100;
  border-left: 1px solid #e6e5e5;
  border-right: 1px solid #e6e5e5;
  color: #2a2929;
  width: 500px;
  position: fixed;
  top: 50px;
  right: 30px;
  bottom: 0;
  margin: 0;
  overflow-y: auto;
  line-height: 1.6;
}
.search-results:empty {
  display: none;
}
.search-results mark {
  font-weight: bold;
  border-bottom: 1px solid;
  background: transparent;
}
.search-results li a {
  padding: 10px;
  margin: 0;
  display: block;
  border-bottom: 1px solid #efeeee;
  text-decoration: none;
}
.search-results li a:hover {
  background: #ffffdc;
  border-color: #efeeee;
  text-decoration: none;
}
.search-results li .result-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.search-results li h3,
.search-results li h4 {
  margin: 0;
  line-height: 1;
}
.search-results li h3 {
  font-size: 18px;
}
.search-results li h4 {
  font-size: 14px;
  margin-top: 4px;
}
.search-results li h4:before {
  content: "in ";
  font-size: 12px;
}
.search-results li p {
  margin: 0;
  margin-top: 6px;
  font-family: 'PT Sans', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #7a7373;
}
.search-results a,
.search-results a:visited {
  color: #2a2929;
}
#section_user-roles tr:first-child {
  font-weight: bold;
  border-bottom: 2px solid black;
}
#section_user-roles th,
#section_user-roles td {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.prev-next {
  border-top: 1px solid #2a2929;
  color: #9b9b9b;
  padding: 1rem 0;
  margin-top: 50px;
  display: block;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  display: flex;
  flex-direction: row;
}
.prev-next .prev,
.prev-next .next {
  flex-grow: 1;
}
.prev-next .next {
  text-align: right;
}
.prev-next .section-number {
  margin-left: 0.4rem;
  margin-right: 0.2rem;
  color: #7a7373;
}
.prev-next a {
  color: #5a5555;
  text-decoration: none;
}
.prev-next a:hover {
  text-decoration: underline;
}
@media (max-width: 1800px) {
  .page-content.index {
    grid-column-start: span 2;
  }
}
@media (max-width: 1600px) {
  .release {
    grid-template-columns: auto auto;
    grid-template-areas: "header downloads" "notes notes";
    grid-gap: 20px 0;
  }
  .release-header {
    flex-direction: column;
  }
  .release-header .release-date {
    bottom: 0;
  }
  .release-downloads {
    padding: 0;
    border: 0;
    align-content: center;
  }
  .release-downloads ul {
    margin: 0;
    display: flex;
    flex-direction: row;
  }
  .release-downloads li {
    margin: 0;
    border-left: 0;
    border-bottom: 1px solid #efeeee;
  }
  .release-downloads li a {
    padding-right: 14px;
  }
  .release-downloads h3 {
    display: none;
  }
  .release-downloads h4 {
    border-bottom: 1px solid #efeeee;
  }
  .download-item {
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  .download-item h4 {
    width: 116px;
    padding: 3px 0;
  }
}
@media (max-width: 1200px) {
  body {
    grid-template-columns: 5fr 2fr;
    grid-template-rows: 80px 60px auto;
    grid-template-areas: "logo search" "primary-nav primary-nav" "content secondary-nav";
  }
  .page-content.index {
    grid-column-start: 1 / span 2;
    grid-column-end: 3;
  }
  .page-content.full {
    grid-column: 1;
  }
  .page-content.index .section {
    grid-template-columns: auto;
  }
  .segment p:first-child {
    margin-top: 1em;
  }
  .splash-title {
    grid-column-start: 1;
  }
  .top-nav a {
    line-height: 60px;
    vertical-align: top;
  }
  .page-aside {
    display: none;
  }
}
@media (max-width: 900px) {
  .release {
    grid-template-columns: auto;
    grid-template-areas: "header" "downloads" "notes";
  }
  .download-item {
    justify-content: flex-start;
  }
}
