@font-face {
  font-family: "Jost";
  src: url("/static/fonts/jost-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  src: url("/static/fonts/jost-italic-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  src: url("/static/fonts/inter-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  src: url("/static/fonts/inter-italic-variable.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 400;
  background-color: #f4e8d2;
  background-color: white;
  color: #000;
}

#main-container {
  padding: 24px 48px;
  margin: 0 auto;
  max-width: calc(80ch + 48px);
  background-color: white;
}

#main-container.main-container--noframe {
  max-width: none;
  padding: 0;
}

#left-sidebar {
  width: 200px;
  flex-shrink: 0;
}

#content {
  max-width: 1200px;
  margin: 0 auto;
}

#header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  height: 96px;
  background-color: #f4e8d2;
}
#header.transparent-bg {
  background-color: rgba(255, 255, 255, 0.3);
}
#header .logo {
  height: 60px;
}
#header .page-heading-group {
  flex: 0 0 auto;
  margin-top: -6px;
}
#header .page-heading-group .page-heading {
  color: #333;
  color: black;
  font-size: 4rem;
  font-weight: normal;
  margin: 0;
  font-family: Futura;
}
#header .page-heading-group .page-subheading {
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
  color: black;
  font-family: Futura;
}

nav {
  display: flex;
}
nav > a {
  padding: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Jost*";
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1;
}
nav > a, nav > a:hover, nav > a:visited, nav > a:active {
  color: black;
}
nav > a:hover {
  background-color: #cab89b;
  text-decoration: none;
}
nav > a.nav-icon {
  padding: 12px;
  font-size: 1px;
  display: grid;
  place-items: center;
}
nav > a.nav-icon img {
  width: 40px;
  height: 40px;
}

.hero {
  border-bottom: 1px solid #CCC;
  margin: 0 -24px;
  padding: 0 24px;
}

.full-width {
  width: 100%;
}

.hflex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}

p.introduction {
  color: #494949;
  max-width: 80ch;
}
p.introduction.introduction--small {
  font-size: 0.9em;
}

p, li {
  color: #000;
  line-height: 1.35;
}

#content ul {
  max-width: 800px;
  padding-left: 48px;
}

#content li {
  margin-bottom: 12px;
  padding-left: 12px;
}

section {
  margin-bottom: 24px;
}

h1, h2, h3, h4 {
  font-weight: 500;
  font-family: "Jost*";
  margin-bottom: 0;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.4em;
  margin-top: 0;
}

p.group-description {
  color: #494949;
  margin-top: 0;
}

a, a:hover, a:visited, a:active {
  color: #3298dc;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  #main-container {
    padding: 12px;
  }
  #left-sidebar {
    display: none;
  }
  #content {
    margin-left: 0;
  }
  .logo {
    height: 70px;
  }
  .logo-link {
    margin: 0 auto;
  }
  .page-heading {
    font-size: 2rem;
  }
  .page-subheading {
    font-size: 1rem;
  }
  nav {
    display: none;
  }
  h3 {
    margin-top: 14px;
  }
}
.toc {
  position: sticky;
  overflow-y: auto;
  top: 0px;
  max-height: calc(100vh - 24px);
}
.toc ul {
  list-style: none;
  padding: 0;
}
.toc li {
  padding-left: 0;
  margin: 3px 0px;
  font-size: 1em;
}
.toc li > a {
  color: #999;
  text-decoration: none;
}
.toc li > ul {
  /*display: none;*/
}
.toc > ul > li.active:not(.active ~ .active) > a {
  color: #333;
  text-decoration: none;
}
.toc > ul > li.active:not(.active ~ .active) > ul {
  display: block;
}
.toc > ul > li.active:not(.active ~ .active) > ul > li.active:not(.active ~ .active) > a {
  color: #333;
  text-decoration: none;
}

.subtoc {
  margin-left: 12px;
}

.subtoc li {
  font-size: 0.85em;
}

.fixed-layout {
  table-layout: fixed;
}

.use-case-column {
  width: 250px;
}

@media screen and (max-width: 800px) {
  .use-case-column {
    width: 100px;
  }
}
table {
  border-collapse: collapse;
  /* border: 1px solid #f9f9f9; */
}
table tbody:nth-of-type(odd) {
  background-color: #f6f8fa;
}
table tbody:nth-of-type(even) {
  background-color: #FFF;
}
table th {
  padding: 6px 6px 6px 6px;
  border: 1px solid #CCC;
  text-align: left;
  font-size: 0.8em;
  white-space: nowrap;
  color: #000;
}
table td {
  padding: 6px 6px;
  border: 1px solid #CCC;
  font-size: 14px;
}

.css-prop--supported {
  background: rgba(0, 116, 69, 0.3);
}

.css-prop--not-supported {
  background: rgba(140, 48, 55, 0.3);
}

.css-prop--partial-support {
  background: rgba(242, 165, 59, 0.3);
}

.css-prop--split-by-value {
  background: rgba(244, 232, 210, 0.3);
}

.tab-container {
  display: flex;
  border-bottom: 1px solid #CCC;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tab {
  display: block;
  padding: 12px;
  border: 0 solid #CCC;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: -1px;
  border-bottom-width: 1px;
}
.tab.tab--selected {
  border-width: 1px;
  border-bottom-color: white;
}
.tab.tab--selected, .tab:hover {
  color: inherit;
}
