
/* styles/variables.scss */


/* styles/fonts.scss */
@font-face {
  font-family: Inter;
  font-weight: 400;
  src: url('https://carbonmade-media.accelerator.net/fonts/Inter-Regular.woff2');
}
@font-face {
  font-family: 'sofiapro';
  src: url('../fonts/sofiapro-light.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'sofiapro';
  src: url('../fonts/sofiapro-regular.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'sofiapro';
  src: url('../fonts/sofiapro-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'sofiapro';
  src: url('../fonts/sofiapro-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'brandongrotesque';
  src: url('../fonts/brandongrotesque-bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'brandongrotesque';
  src: url('../fonts/brandongrotesque-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
h1 {
  margin: 0 0 0.3em 0;
  font-weight: 500;
}
h3 {
  font-family: 'sofiapro';
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  margin: 0 0 0.7em;
}

/* styles/base.scss */
:root {
  overflow-x: hidden;
}
html {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: 'sofiapro', Helvetica, Arial, Sans;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
}
ul {
  list-style: none;
}
ul, li {
  padding: 0;
  margin: 0;
}
p {
  font: 500 1em / 1.45 'sofiapro';
  margin: 0 0 1em;
  color: #000000b2;
}
a {
  cursor: pointer;
  color: #333974;
}
pre {
  padding: 1em;
  background: #e9e8e84c;
  border-radius: 3px;
}
pre code {
  background: transparent;
}
code {
  display: inline-block;
  font-family: 'sofiapro';
  background: #e9e8e84c;
  color: #000;
  padding: 2px 5px;
  margin: 0 2px;
  border-radius: 3px;
}
.content {
  padding: 1rem 2rem;
  flex: 10;
  max-width: 1200px;
  margin: 0 auto;
}
div, section, span, input, nav {
  box-sizing: border-box;
}
img {
  vertical-align: middle;
}
@media (max-width: 700px) {
  body {
    font-size: 13px;
  }
}

/* styles/utility.scss */
.flex {
  display: flex;
}

/* styles/components/forms.scss */
::placeholder {
  color: #00000066;
}
label {
  display: block;
  text-align: left;
  font-weight: 600;
  color: #000;
  font-size: 1rem;
  margin-bottom: 1em;
}
input, textarea {
  font-family: 'sofiapro';
  display: block;
  appearance: none;
  border: none;
  padding: 0;
  box-shadow: none;
  -webkit-font-smoothing: subpixel-antialiased;
  appearance: none;
  border-radius: 0;
}
input:focus,
textarea:focus {
  outline: none;
}
button, .button {
  font: 0.9rem / 3rem 'sofiapro';
  font-weight: 600;
  display: inline-block;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  box-shadow: none;
  height: 3rem;
  border-radius: 3px;
  padding: 0 1.5em;
  transition: background-color 0.2s ease;
}
button.disabled,
.button.disabled {
  opacity: 0.25;
}
button a,
.button a {
  color: #fff;
  text-decoration: none;
}
button.new {
  height: inherit;
  background: #06c7c7;
}
button:focus,
.button:focus {
  outline: none;
}
button.pink {
  color: #fff;
  background: linear-gradient(135deg, #ee718e 0%, #faa087 100%);
  background-size: 300%;
  background-position: 0 0;
  transition: all 0.2s ease;
}
button.pink:hover {
  background-position: 50% 50%;
}
button.full, .button.full {
  width: 100%;
}
button.green, .button.green {
  background: #06c7c7;
  color: #fff;
}
button.green:hover,
.button.green:hover {
  background: #06c7c7e6;
}
button.red {
  background: #d56555;
  color: #fff;
}
button.red:hover {
  background: #d56555e6;
}
button.cancel, .button.cancel {
  background: transparent;
  color: #00000080;
  text-decoration: none;
  margin-right: 0.5em;
}
.block {
  display: block;
  margin-bottom: 2rem;
}
.block.submit {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  position: relative;
}
.field {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 1em;
  z-index: 1;
}
.field .suffix {
  position: absolute;
  top: 0px;
  right: 1em;
  font-size: 1em;
  transform: translate(0, 50%);
}
.field label {
  display: block;
  text-align: left;
  font-weight: 600;
  color: #000;
  font-size: 1rem;
  margin: 0;
}
.field input:focus {
  border: 2px solid #33397433;
}
.field input {
  position: relative;
  width: 100%;
  padding: 0 1em;
  font-size: 1em;
  height: 48px;
  background: transparent;
  border: none;
  border: 2px solid #3339741a;
  z-index: 2;
}
.field.suffixed input {
  padding-right: 8em;
}
.field .ghost {
  position: absolute;
  top: 0;
  border: none;
  color: #777486;
  pointer-events: none;
  z-index: 1;
}
.field .eg {
  display: block;
  width: 100%;
  font: 500 0.85rem / 1 'sofiapro';
  margin: 0.5em 0 0;
  color: #000000b2;
}
.field .message {
  display: none;
  font: 500 0.85rem / 1 'sofiapro';
}
.field.invalid .message {
  display: inline-block;
  color: red;
  padding-right: 10px;
  padding-top: 15px;
}
.field > .suggestions {
  margin-top: 15px;
}
.field > .suggestions > li {
  padding: 0px 15px;
  line-height: 32px;
  font-size: 16px;
  font-weight: 400;
  color: #7f7f7f;
  cursor: pointer;
  white-space: nowrap;
}
.field > .suggestions > li.selected:after {
  display: block;
}
.field > .suggestions > li:hover,
.field > .suggestions > li.selected {
  background: #71a4f8;
  color: #fff;
}
.field > .suggestions {
  display: none;
  position: absolute;
  top: 28px;
  width: 100%;
  background: #fff;
  padding: 5px 0;
  z-index: 1001;
}
.field.invalid > .ghost {
  background: #ffebec;
}
.field.suggesting > .suggestions {
  display: block;
}
ul.options li label,
ul.options li input {
  display: inline-block;
}
ul.options li {
  display: inline-block;
  margin-right: 20px;
}
.editBlock {
  display: flex;
}
.editBlock label {
  line-height: 48px;
  margin-right: 20px;
}
.editBlock .submit {
  display: block;
  font: 0.9rem / 3rem 'sofiapro';
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  box-shadow: none;
  height: 3rem;
  border-radius: 3px;
  padding: 0 2em;
  text-transform: uppercase;
  background: #06c7c7;
  color: #fff;
  margin-left: 1em;
  opacity: 0;
  visibility: hidden;
}
.editBlock.active .submit {
  opacity: 1;
  visibility: visible;
}
.action {
  cursor: pointer;
}
.delete-icon {
  mask-image: url('../images/icons/delete.svg');
  mask-size: contain;
  background: #ccc;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.delete-icon:hover {
  background: #d46555;
}

/* styles/components/tables.scss */
table {
  border-collapse: collapse;
  width: 100%;
}
table td {
  padding: 1em 1em 1em 0;
}
table th {
  color: #a3a3a7;
  text-align: left;
  font-size: 0.875rem;
  padding: 1em 1em 0.5em 0;
  font-weight: 500;
  border-bottom: solid 2px #e9e8e866;
  text-transform: uppercase;
}
table th.status-column {
  width: 30px;
}
table td {
  border-bottom: solid 1px #e9e8e8;
}
table .numerical {
  text-align: right;
  white-space: nowrap;
}
table .leading {
  width: 100%;
}
table.half {
  max-width: 580px;
}

/* styles/components/loader.scss */
.loader {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  background: linear-gradient(to right, #04c7c8 10%, rgba(6, 199, 199, 0) 42%);
  animation: spinning 1s linear infinite;
  z-index: 1;
}
.loader .right {
  width: 50%;
  height: 50%;
  background: #04c7c8;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.loader .left {
  background: #fff;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@keyframes spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* styles/home/home.scss */
.home {
  background: #000;
  color: #fff;
}
.home button:hover {
  opacity: 1;
  border-color: #fff;
  color: #fff;
}
.home button {
  border: none;
  padding: 0 15px;
  height: 2.5rem;
  color: #fff;
  border-radius: 30px;
  font: bold 1em sofiapro;
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 0.5;
  text-transform: uppercase;
  transition: border 0.3s ease, opacity 0.3s ease;
}
.home footer .lhs,
.home footer .rhs {
  width: 45%;
}
.home footer .rhs {
  text-align: right;
}
.home footer p {
  margin-bottom: 0;
  color: #424242;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 1.1rem;
}
.home footer a:first-of-type {
  margin-right: 10px;
}
.home footer a {
  margin: 0;
  padding: 0;
}
.home footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  padding: 30px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .home footer p br {
    display: none;
  }
  .home footer p {
    font-size: 12px;
  }
  .home footer a:first-of-type {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .home footer a button {
    height: 2rem;
    font-size: 12px;
  }
  .home footer {
    align-items: center;
    padding: 1rem 15px;
  }
}
dialog.signin {
  width: 300px;
  color: #fff;
  background-color: #000;
}
dialog.signin input::placeholder {
  color: #ccc;
}
dialog.signin input {
  color: #fff;
}

/* styles/home/header.scss */
.home > .guts {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-image: url('https://carbon-media.accelerator.net/00000000001/3LJqUWH01k3eozL4i7wh5Z');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.home .logo {
  background-image: url('../images/home/logo.svg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: clamp(50vw, 680px, 80vw);
  height: 100px;
  translate: 0 -30%;
}
.home .logo > h1 {
  display: none;
}

/* styles/parts/footer.scss */
footer {
  position: relative;
}
footer a {
  display: inline-block;
  color: #5e61a4;
  font: 0.82rem 'brandongrotesque';
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px;
  margin: 0 8px 8px;
}

/* styles/parts/onboard.scss */
.overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #000;
  text-align: left;
  z-index: 3;
  margin: 0;
  padding: 0;
}
.overlay::backdrop {
  background-color: #000000cc;
}
.overlay header .logo:after {
  content: '';
  position: absolute;
  left: -6px;
  top: -5px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #333974;
  z-index: -1;
}
.overlay header .logo h1 {
  color: #333974;
}
.overlay header .logo {
  position: relative;
}
.overlay header {
  position: relative;
  z-index: 5;
}
.overlay section {
  margin-bottom: 0 !important;
  padding: 40px;
}
.overlay h2 {
  text-transform: uppercase;
  font: 1.625rem 'sofiapro';
  font-weight: 600;
  margin-bottom: 2em;
  color: #fff;
  margin-bottom: 20px;
}
.overlay section {
  position: relative;
  color: #333974;
  z-index: 5;
}
.overlay .close:hover {
  color: #ff5924;
}
.overlay .close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}
.overlay p a:hover {
  text-decoration: none;
}
.overlay p a {
  color: inherit;
  text-decoration: underline;
}
.overlay p {
  margin: 0 0 2.5rem 0;
  font: 100 1.6em / 1.2 'sofiapro';
  color: #d6d7e4;
}
.overlay input:focus {
  border-color: #fff;
}
.overlay input {
  width: 100%;
  border-color: #fff;
  color: #fff;
}
.overlay .agreement input {
  display: inline-block;
  flex: 0 30px;
  height: 36px;
  margin: 0 15px 0 0;
  border-color: #fff;
}
.overlay .agreement label a {
  color: #ff5924;
}
.overlay .agreement label {
  display: inline-block;
  flex: auto;
  font: 500 1rem / 1.2 'sofiapro';
  color: #fff;
}
.overlay .agreement {
  display: flex;
  align-items: center;
  visibility: visible !important;
}
.overlay .block.submit {
  margin-bottom: 0;
}
.overlay .guts {
  max-width: initial;
  transform: scale(0.97);
  transform-origin: center;
}
.overlay .waiting {
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
  opacity: 0;
  visibility: hidden;
}
.overlay.show .guts {
  transform: scale(1);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.2s ease;
  transition-delay: 0.1s;
}
.overlay.show {
  visibility: visible;
  opacity: 1;
}
.overlay.authorizing .waiting {
  opacity: 1;
  visibility: visible;
}
.introduction {
  transition: opacity 0.2s ease, visibility 0.2s ease;
  opacity: 1;
}
body.onboarding {
  overflow: hidden;
}
@media (max-width: 700px) {
  .overlay {
    width: 90%;
  }
  .overlay section {
    padding: 30px;
  }
  .overlay h2 {
    font-size: 1.2rem;
  }
  .overlay .close {
    font-size: 30px;
    top: 15px;
    right: 15px;
  }
  .overlay input {
    height: 38px;
  }
  .overlay .agreement input {
    height: 30px;
  }
  .overlay .agreement label {
    font-size: 0.85rem;
  }
  .overlay .agreement {
    margin-right: 10px;
  }
}