:root {
  --base: #121217;
  --text: #342832;
  --layer: #6c6c89;
  --technical: #8A8AA3;
  --shade: #D1D1DB;
  --shade2: #eeeeef;
  --undercoat: #f7f7f8;
  --accent: #7047eb;
  accent-color: var(--accent);

  /* new, generated with accent: https://coolors.co/7047eb-42f2f7-46acc2-0c1713-498c8a */
  --aqua: #42f2f7;
  --moonstone: #46acc2;
  --night: #0c1713;
  --dark-cyan: #498c8a;
}
* {
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: Inter, ui-sans-serif, system-ui, -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: 16px;
  color: var(--text);
  background-color: var(--undercoat);
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h5, strong {
  color: var(--base);
}
h1 {
  line-height: 1.125;
}
ul {
  list-style-type: square;
}
/* Layout */
@media screen and (min-width: 640px) {
  body {
    font-size: 18px;
  }
  .container {
    padding: 0 2rem;
  }
  body > * {
    padding-top: 3rem;
    padding-right: 2rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
  }
}
.container {
  max-width: 1024px;
  padding: 0 1rem;
  margin: 0 auto;
}
.container.wide {
  max-width: 1180px;
}
.hero {
  position: relative;
}
[class*=hero-img] {
  position: absolute;
}
.hero-img-1 {
  /*  */
}
.hero ul {
  margin-bottom: 3rem;
  padding-left: 1.35rem;
}
.mw-1024 {
  max-width: 1024px;
}
.mr05 {
  margin-right: .5rem;
}
.mr1 {
  margin-right: 1rem;
}
.mb05 {
  margin-bottom: .5rem;
}
.mb06 {
  opacity: 0;
  width: 0;
  position: absolute;
  z-index: -1;
}
.mb1-5 {
  margin-bottom: 1.5rem;
}
.w16 {
  width: 16rem;
}
.vmid {
  vertical-align: middle;
}
.vmid small {
  color: darkslategray;
}
#nglogo {
  /* display: none; */
  fill: var(--base);
  width: 1rem;
  height: 1rem;
  margin-right: 0.6rem;
  overflow: hidden;
  /* display: inline-block; */
  vertical-align: middle;
}
@media screen and (min-width: 640px) {
  #nglogo {
    display: inline-block;
  }  
}
#nglogo svg {
  display: block;
  width: 1rem;
  height: 1rem;
}
@media (max-width: 520px) {
  #ngname {
    display: none;
  }
}
#siteinfo {
  margin-top: 3rem;
  padding: 2rem 0;
  background-color: white;
  border-top: 1px solid var(--shade);
}
@media (max-width: 640px) {
  ul, ol {
    padding-left: 1.33rem;
  }
}
li + li {
  margin-top: .5rem;
}
.text-center {
  text-align: center;
}
header {
  height: 4rem;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.app-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--shade);
  backdrop-filter: blur(10px);
  padding: 0;
  font-size: 0.75rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media screen and (min-width: 640px) {
  .app-header {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
  }
}
.menu {
  text-align: center;
  /* display: flex; */
}
.app-header a {
  font-weight: bold;
}
.app-header a + a {
  margin-left: 1rem;
}
.justify-between {
  justify-content: space-between;
}
.col {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.row .f1 + button {
  margin-left: .4rem;
}
.f1 {
  flex: 1;
}
.f2 {
  flex: 2;
}
/* Navigation */
nav a {
  display: inline-block;
}
nav.row * + * {
  margin-left: 1rem;
}
nav.col * + * {
  margin-top: 0.5rem;
}
.vertical-menu {
  margin-top: 1rem;
}
.vertical-menu a {
  text-decoration: none;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: all 0.2s;
  /* margin-left: 1rem; */
}
.vertical-menu a:hover {
  color: var(--accent);
  opacity: 1;
  background-color: var(--shade2);
}
.vertical-menu a:hover img {
  filter: invert(26%) sepia(85%) saturate(3081%) hue-rotate(245deg) brightness(95%) contrast(94%);
}
.vertical-menu img {
  width: 20px;
  height: 20px;
  margin-right: 1rem;
  vertical-align: text-bottom;
  filter: opacity(50%);
}
.vertical-menu h5 {
  margin: 1.5rem 0 0.5rem;
  padding-left: 0.65rem;
  color: var(--technical);
  font-weight: bold;
}
p {
  transition: height linear .2s;
}
a {
  color: black;
  transition: color linear .12s;
}
a:hover,
nav a.active:hover {
  opacity: 0.7;
}
/* Forms */
input, select {
  height: 2rem;
  padding: 0 0.8rem;
  font-size: 1rem;
  box-sizing: border-box;
  border: 2px solid var(--shade);
  margin: 0;
  line-height: 1;
  outline: 0 none;
  background: white;
  transition: border-color linear .12s;
}
textarea {
  width: 100%;
  /* height: 20rem; */
  padding: .6rem .8rem;
  resize: none;
  border: 2px solid var(--shade);
  outline: 0 none;
  transition: border linear .12s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--accent);
}
input, button, textarea, select, .btn {
  border-radius: 4px;
}
label {
  display: inline-block;
  line-height: 1rem;
  text-transform: uppercase;
  font-size: .675rem;
  letter-spacing: 1px;
}
label span {
  display: inline-block;
  color: var(--grey-5);
  position: relative;
  left: 1rem;
  padding: 0 .5rem;
}
button, .btn {
  display: inline-block;
  height: 2rem;
  background-color: var(--accent);
  cursor: pointer;
  padding: 0 .8rem;
  color: var(--undercoat);
  border: 0 none;
  font-weight: bold;
  font-size: 90%;
  font-style: italic;
  line-height: 1.85;
  text-decoration: none;
  letter-spacing: .5px;
  transition: all linear .12s;
}
button.inverted, .btn.inverted {
  background-color: white;
  color: var(--accent);
  border: 2px solid var(--accent);
}
button.outline, .btn.outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
button:hover, button:active, button:focus {
  opacity: 0.7;
}
button:disabled {
  background-color: silver;
  border-color: silver;
  color: black;
  cursor: default;
}
.inline-block {
  display: inline-block;
}
.text-error {
  color: #d10707;
}
.split {
  display: flex;
}
.split > * {
  width: 50%;
}
.ssh-key {
  width: 100%;
  padding: .4rem .8rem;
  border: 2px solid var(--technical);
  background-color: var(--shade);
  color: #444;
  text-overflow: ellipsis;
  padding-right: 2rem;
}
.ssh-key-copy {
  display: inline-block;
  content: 'copy';
  width: 1rem;
  height: 1rem;
}
.items > div {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: background-color linear .1s;
  border: 1px solid var(--shade);
  background-color: white;
}
.items > div + div {
  margin-top: 0.5rem;
}
.items > div:hover {
  background-color: var(--shade2);
}
.repos > * {
  display: block;
  padding: 1rem;
}
.repos a {
  float: right;
}
.repos a + a {
  margin-right: 1rem;
}
.disabled {
  cursor: wait;
  pointer-events: none;
  background-color: silver;
}
.refreshing-repo {
  cursor: wait;
}
.refreshing-repo > a {
  display: none;
}
.small {
  font-weight: normal;
  font-size: .875rem;
}
.auto, .m-auto {
  margin: auto;
}
.x-auto, .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.scroll {
  overflow-y: scroll;
}
.text-right {
  text-align: right;
}
#color-switch-form button {
  width: 2rem;
  height: 2rem;
  color: transparent;
  background-color: transparent;
  border: 2px solid black;
  overflow: hidden;
}
.items-center {
  align-items: center;
}
.box + .box {
  margin-top: 2rem;
}
.link {
  display: inline;
  color: var(--base);
  background-color: transparent;
  text-decoration: underline;
  text-transform: none;
  font-weight: normal;
  padding: 0;
  margin: 0;
  height: 27px; /* to match regular text */
  line-height: initial;
  font-style: normal;
  font-size: 100%;
}
.link:hover, .link:active, .link:focus {
  color: var(--base);
  background-color: transparent;
}
.content-between {
  justify-content: space-between;
}
.content-center {
  justify-content: center;
}
.content-end {
  justify-content: end;
}
#brief-items-actions > * + * {
  margin-left: 1rem;
}
#preview {
  /* padding-top: 1rem; */
  min-height: 100%;
}
#preview iframe {
  margin-top: 2rem;
}
table.preview, table.workflow {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--shade);
  background-color: white;
}
table.preview td:first-child {
  width: 10rem;
}
table.workflow th {
  background-color: var(--shade2);
}
table.preview td, table.workflow td {
  padding: .3rem .5rem;
  border: 1px solid var(--shade);
}
table.preview .from-row td {
  background-color: var(--shade2);
}
table.preview + table.preview {
  margin-top: 1.5rem;
}
table.esp {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--technical);
}
table.esp td, table.esp th {
  padding: .5rem 1rem;
  border: 1px solid var(--shade);
  text-align: left;
  vertical-align: top;
}
table.esp th {
  background-color: var(--shade2);
}
.spinner {
  display: inline-block;
  margin: auto;
  width: 1rem;
  height: 1rem;
  background-color: var(--accent);
  animation: spin linear 0.6s infinite;
}
.spinner-b:before {
  content: '';
  display: inline-block;
  margin: auto;
  width: .8rem;
  height: .8rem;
  background-color: var(--accent);
  animation: spin linear 0.6s infinite;
  margin-right: .5rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
video {
  border: 1px solid var(--base);
  border-radius: 10px;
  width: 100%;
}
.accent {
  color: var(--accent);
}
.vcenter {
  align-items: center;
}
.m0 {
  margin: 0;
}
.mt0 {
  margin-top: 0;
}
.mb0 {
  margin-bottom: 0;
}
.mt1 {
  margin-top: 1rem;
}
.mt2 {
  margin-top: 2rem;
}
.mt4 {
  margin-top: 4rem;
}
pre {
  overflow: scroll;
  padding: .5rem 1rem;
  /* border-radius: 5px; */
  border: 1px solid var(--shade);
  /* margin: 0; */
  /* line-height: 1; */
  background-color: var(--shade2);
}
td > ol {
  padding-left: 1.5rem;
}
.px1-5 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
/* Elements */
.hero-border {
  border: 2px solid black;
}
.hero-shadow {
  box-shadow: 0 4px 12px -3px black;
}
.code {
  display: inline-block;
  background-color: silver;
  border-radius: 4px;
  padding: 0 6px;
  font-family: monospace;
}
.separator {
  margin: 4rem 0 3rem;
  height: 0;
  border-top: 1px solid var(--shade);
}
@media screen and (min-width: 640px) {
  .separator {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
.box {
  border: 1px solid var(--shade);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
}
.box h3 {
  margin-top: 0;
}
.box p {
  margin-top: 0;
}
.help {
  cursor: help;
  border-bottom: 2px dotted black;
}
.box ol {
  margin-top: 0;
}
.box h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
/* .guide-box {
  margin-top: 2rem;
  padding-top: 0;
  background-color: white;
} */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin: auto;
  text-align: center;
}
.pricing-grid h4 {
  margin: 0;
}
.pricing-grid .box, .bg-white {
  background-color: white;
}
.badge-gray, .badge-accent {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: 15px;
  background-color: var(--shade);
  color: var(--layer);
  font-weight: bold;
  margin: 0.25rem 0;
}
.badge-accent {
  background-color: var(--shade);
  color: var(--accent);
}
.creditinfo {
  display: inline-block;
  font-family: monospace;
  margin-right: .5rem;
  cursor: default;
}
.badge {
  display: inline-block;
  vertical-align: text-bottom;
  margin-left: 0.5rem;
  padding: 0.05rem 0.5rem;
  border-radius: 12px;
  background-color: var(--technical);
  color: white;
  font-weight: normal;
}
.upper {
  text-transform: uppercase;
}
.new-tab {
  width: 16px !important;
  height: 16px !important;
  position: relative;
  top: -3px;
  margin-left: 0.5rem;
  filter: invert(0%) sepia(6%) saturate(23%) hue-rotate(196deg) brightness(102%) contrast(106%) !important;
}
img[src*=svg] {
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.fit {
  width: 100%;
}
.crumbs {
  margin: 0 -1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--shade);
  font-weight: bold;
}
#main-menu a + a {
  margin-left: 1rem;
}
#keywords {
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
}
.bg-layer {
  background-color: var(--layer);
}
.qa-list {
  margin-top: 3rem;
}
.qa-list li + li {
  margin-top: 1.5rem;
}
.ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#pic {
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  border-radius: 50%;
  outline: 2px solid var(--layer);
  float: left;
  margin-right: 1rem;
}
