*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Avenir Next W01", sans-serif;
}

#phenomic {
  height: 100%;

  & > div {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
}

html,
body {
  height: 100%;
}

body {
  background-color: black;
}

.bg-black-1c {
  background-color: #1c1c1c;
}

/* Fonts */
.f-av-b {
  font-family: "Avenir Next W01", sans-serif;
  font-weight: 700;
}

.f-av {
  font-family: "Avenir Next W01", sans-serif;
  font-weight: 500;
}

.f-av-db {
  font-family: "Avenir Next W04", sans-serif;
  font-weight: 600;
}

/* Login buttons */
.login-button {
  background: #f06040;
  box-shadow: 0 3px 0 0 #a1260b;
  border-radius: 7.19px;
  transition: background-color 0.2s;
}

.tb {
  transition: background-color 0.2s;
}

.login-button:hover {
  background: #d6563a;
}

.top-login:hover {
  background: #08b2a0;
  border-color: #08b2a0;
  color: white;
}

/* Font colors */
.calm-orange {
  color: #f06040;
}

.f-gray {
  color: #717171;
}

.f-black {
  color: #1c1c1c;
}

.f-light-gray {
  color: #6c6c6c;
}

.teal {
  color: #08b2a0;
}

/* Override link color (for ToS "post") */
.phenomic-BodyContainer a {
  color: #08b2a0;
  text-decoration: none;
}

/* Remove inserted heading anchors (again, in ToS) */
.phenomic-BodyContainer .phenomic-HeadingAnchor {
  display: none;
}

/* Border color */
.b--teal {
  border-color: #08b2a0 !important;
}

.hide {
  opacity: 0;
  width: 0;
}

/* CSS hack for weird react modal behavior */
.ReactModal__Body--open .ReactModalPortal {
  display: block;
}

.ReactModalPortal {
  display: none;
}

/* AMP Dropdown */
.Dropdown-root {
  position: relative;
  flex: 1 0 auto;
}

.Dropdown-control {
  position: relative;
  overflow: hidden;
  background-color: white;
  border: 2px solid #e1e1e1;
  border-radius: 2px;
  box-sizing: border-box;
  color: #333;
  color: #010101;
  cursor: default;
  outline: none;
  padding: 8px 52px 8px 10px;
  transition: all 200ms ease;
}

.Dropdown-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.Dropdown-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 7px 7px 0;
  content: ' ';
  display: block;
  height: 0;
  margin-top: -ceil(2.5);
  position: absolute;
  right: 10px;
  top: 14px;
  width: 0;
}

.is-open .Dropdown-arrow {
  border-color: transparent transparent #999;
  border-width: 0 7px 7px;
}

.Dropdown-menu {
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
}

.Dropdown-menu .Dropdown-group > .Dropdown-title {
  padding: 8px 10px;
  color: rgba(51, 51, 51, 1);
  font-weight: bold;
  text-transform: capitalize;
}

.Dropdown-option {
  box-sizing: border-box;
  color: rgba(51, 51, 51, 0.8);
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}

.Dropdown-option:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.Dropdown-option:hover {
  color: white;
  background-color: #08b2a0;
}

/* Removing background from mark for highlighter */
mark {
  background-color: transparent !important;
}

/* Make Mercury svg logo responsive */
.logo svg {
  max-width: 100%;
  height: auto;
}

/* Wrapping pre text for AmpInstall instructions */
.wrap pre {
  white-space: pre-wrap;
}

/* Remove outline from clicked links */
a,
a:focus {
  outline: none !important;
}

/*
 * kill document defaults margin & padding. We all do that all the time, right ?
 */
html,
body {
  margin: 0;
  padding: 0;
}

/*
 * page styles
 */
html {
  min-height: 100%;
}

body {
  font-size: 1rem;
  line-height: 1.5rem;

  /* system font https://medium.com/designing-medium/system-shock-6b1dc6d6596f */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/*
 * .phenomic-HeadingAnchor
 *
 * anchors for markdown headings, generated via markdown renderer, so require
 * global styling
 */
@custom-selector :--headings h1, h2, h3, h4, h5, h6;

:\--headings {
  position: relative;
}

:root {
  --phenomic-HeadingAnchor-width: 1.4rem;
  --phenomic-HeadingAnchor-margin: 0.4rem;
}

.phenomic-HeadingAnchor {
  display: inline-block;
  text-align: center;
  margin-left: calc(-1 * (var(--phenomic-HeadingAnchor-width) + var(--phenomic-HeadingAnchor-margin)));
  margin-right: var(--phenomic-HeadingAnchor-margin);
  width: var(--phenomic-HeadingAnchor-width);
  line-height: var(--phenomic-HeadingAnchor-width);
  text-decoration: none;
  opacity: 0.1;
  transition: opacity 0.2s;

  @nest :--headings:hover & {
    opacity: 1;
  }
}

/* minimal styling, prefer removing this and use local styles */
a {
  color: #0e63e3;
}

/* handy for content */
img {
  max-width: 100%;
}
/**
 * You can try all official Highlight.js theme here
 *
 * https://highlightjs.org/static/demo/
 *
 * More themes here
 *
 * https://github.com/isagalaev/highlight.js/tree/master/src/styles
 */

/*

Atom One Dark by Daniel Gamage
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax

base:    #282c34
mono-1:  #abb2bf
mono-2:  #818896
mono-3:  #5c6370
hue-1:   #56b6c2
hue-2:   #61aeee
hue-3:   #c678dd
hue-4:   #98c379
hue-5:   #e06c75
hue-5-2: #be5046
hue-6:   #d19a66
hue-6-2: #e6c07b

*/

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #abb2bf;
  background: #282c34;
}

.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}

.hljs-doctag,
.hljs-keyword,
.hljs-formula {
  color: #c678dd;
}

.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
  color: #e06c75;
}

.hljs-literal {
  color: #56b6c2;
}

.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
  color: #98c379;
}

.hljs-built_in,
.hljs-class .hljs-title {
  color: #e6c07b;
}

.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
  color: #d19a66;
}

.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
  color: #61aeee;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-link {
  text-decoration: underline;
}
._2Mf6m {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex: 1;
}

._5Gq8_ {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 80%,
      rgba(0, 0, 0, 1) 100%
    ),
    url(/_/src/components/images/bg.4f3b94c0bb0510cdf056453bc7b2aa42.jpg) top center no-repeat;
  background-size: auto 600px;
}

@media screen and (min-width: 40em) {
  ._5Gq8_ {
    background:
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 50vw,
        rgba(0, 0, 0, 1) 90vw
      ),
      url(/_/src/components/images/bg.4f3b94c0bb0510cdf056453bc7b2aa42.jpg) top center no-repeat;
    background-size: contain;
  }
}
._1LZG9 svg {
  width: 9rem;
}
._2AOj3 {
  overflow: hidden;
  position: fixed;
}

._3SvXg {
  background: #000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.diZZ8 {
  font-size: 0.7rem;
  padding: 0.3em 1em;
}

._5Db0 {
  top: 15px;
  right: 8px;
}

._38IlC {
  color: #828282;
  margin: 0 5px;
  padding-right: 7px;
}

@media screen and (min-width: 60em) {
  ._3SvXg {
    background: none;
  }

  ._2AOj3 {
    overflow: auto;
    position: static;
  }
}
._116Tm {
  flex: 1;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.BmtnO {
  background-color: #262534;
  margin-top: 50px;
  flex-direction: column;
  text-align: center;
}

._2Lsco {
  align-items: center;
  justify-content: center;
  color: #828282;
  line-height: 32px;
  padding-top: 90px;
}

._2Lsco > a {
  color: #828282;
}

._1Tqqs {
  width: 12.75rem;
  background-size: cover;
}

._14POp {
  font-size: 12px;
  color: #828282;
  line-height: 23px;
  margin-top: 70px;
  padding-bottom: 15px;
}

._14POp > a {
  color: #828282;
}
._2mu1m {
  background-color: #262534;
  padding: 4px 0;
  flex-direction: column;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}

._32QbD {
  align-items: center;
  justify-content: center;
  color: #828282;
  line-height: 32px;
  padding-top: 90px;
  font-family: "Avenir Next W01", sans-serif;
}

a {
  color: #f06040;
  text-decoration: none;
}
._1Zu4s {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  padding: 1rem 0;
}

._2vfNd {
  font-size: 4rem;
  line-height: 4rem;
  color: #ddd;
}

._3DufC {
  margin: 4rem 0;
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
}
._1zXFJ {
  display: flex;
  height: 50vh;
  justify-content: center;
  align-items: center;
}

:root {
  --spinner-Color: #000;
  --spinner-Color-front: color(var(--spinner-Color) a(0.8));
  --spinner-Color-back: color(var(--spinner-Color) a(0.2));
}

._2m0-E {
  height: 5vh;
  min-height: 5rem;
  width: 5vh;
  min-width: 5rem;
  border: 6px solid var(--spinner-Color-back);
  border-top-color: var(--spinner-Color-front);
  border-radius: 100%;
  animation: _18dz_ 0.6s infinite linear 0.25s;

  /* the opacity is used to lazyload the spinner, see animation delay */
  opacity: 0;
}

@keyframes _18dz_ {
  from {
    opacity: 1;
    transform: rotate(0);
  }

  to {
    opacity: 1;
    transform: rotate(359deg);
  }
}
.QbQTQ {
  font-family: DINCondensed-Bold;
  color: #717171;
  letter-spacing: 2.46px;
}

._2L_fC {
  font-size: 28px;
  color: #50d2bb;
  letter-spacing: 0;
}

._3BOou {
  opacity: 0.89;
  font-size: 21px;
  letter-spacing: 0;
}
._2RAf7 {
  color: #f06040;
}

.zrKHo {
  font-size: 15px;
}

._1pn2n {
  color: #50d2bb;
}

._1flaS {
  font-size: 10px;
  letter-spacing: 2.09px;
}

._1flaS:empty::after {
  content: ".";
  visibility: hidden;
}

._105aZ {
  background: rgba(0, 0, 0, 0.35);
  border-color: #333;
}

._2NrCE {
  background-color: #1d1d1d;
}

@media screen and (min-width: 60em) {
  ._2NrCE {
    background-color: transparent;
  }
}

@media screen and (min-width: 60em) {
  ._1YGjN {
    width: 38%;
  }
}
._17pbp {
  color: #f06040;
}

._2fp5q {
  font-size: 15px;
}

._1lD8I {
  color: #50d2bb;
}
._1voCa {
  display: flex;
  flex-flow: column wrap;
}

.hm7bl {
  flex: 0.45;
  color: gray;
  text-align: center;
}

._3aSsY {
  flex-direction: column;
  margin: 10px;
  flex: 0.55;
  padding: 0;
}

._3aSsY ul {
  display: flex;
  flex-direction: row;
  padding: 0;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}

._3aSsY ul li {
  display: flex;
  flex-flow: column wrap;
  margin: 10px;
  padding: 0;
}

._3E9Ff {
  width: 40px;
  height: 40px;
  max-width: 40px;
  color: white;
}

._11pCQ {
  margin: 0;
  padding: 0;
  color: gray;
  font-size: 11px;
  font-weight: 300;
  text-align: center;
}

@media screen and (min-width: 60em) {
  ._1voCa {
    display: flex;
    flex-flow: row wrap;
  }

  .hm7bl {
    margin-left: 1rem;
    margin-right: 1rem;
    flex: 1;
    font-size: 15px;
    text-align: right;
  }

  ._3aSsY {
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
    flex: 1;
    font-size: 15px;
  }

  ._3aSsY ul li {
    flex-shrink: 0;
  }
}
._2QEqV {
  font-size: 42px;
}

._2Jv1h {
  font-size: 17px;
}
._2QV3A {
  background: #eee;
}

._1EFDR {
  font-size: 29px;
}

._1xkDn {
  font-size: 15px;
  color: #0d0d0d;
}
._2PeXZ {
  background: #dcdcdc;
  color: #060606;
  font-size: 13px;
}

._15eUJ {
  background: #3c3c3c;
  color: #fff;
  font-size: 13px;
}

._1bdx5 {
  font-size: 10px;
  letter-spacing: 2.09px;
}

._3vJZj {
  color: #c7c7c7;
}

._27zzT {
  background: #dcdcdc;
  color: #060606;
  font-size: 13px;
}

._3Vm70 {
  background: #3c3c3c;
  color: #fff;
  font-size: 13px;
}

._3DrL7 {
  font-size: 10px;
  letter-spacing: 2.09px;
}

._1EwqT {
  border-color: #333;
}

._3WnIi {
  font-size: 1.95rem;
}

._1yelU {
  margin-bottom: -50px;
}
._1u43e {
  max-width: 30rem;
  transition: opacity 0.15s ease-in;
  width: 75%;
}

._1u43e svg {
  height: 100%;
  width: 100%;
}

._2QEwp {
  font-size: 1.95rem;
}

._OIXz {
  background: #f06040;
  font-size: 0.6rem;
  line-height: 1.8;
  border-radius: 14px;
  padding: 0 1.2em;
}

._-5PDm svg {
  display: block;
}

.lOIfc {
  min-height: 330px;
}

._3disM {
  width: auto;
  max-width: none;
}

._3PWZ6 {
  height: 350px;
  border-radius: 15px 15px 0 0;
}

._2_kSk {
  height: 400px;
}

@media screen and (min-width: 60em) {
  .lOIfc {
    min-height: 430px;
  }

  ._3PWZ6 {
    height: 450px;
  }

  ._2_kSk {
    right: 0;
    height: 540px;
  }
}
