@charset "UTF-8";
@font-face {
  font-family: var(--font-v1-sans);
  src: url("../font/Inter.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
:root {
  --color-splash: #c63781;
  --color-secondary: #63B1B2;
  --color-turquoise: #63B1B2;
  --color-primary: #6780e0;
  --color-primary-pale: #ecf0fb;
  --color-primary-light: #e0e7f9;
  --color-primary-dark: #333645;
  --color-grey-darker: #222222;
  --color-grey-dark: #333333;
  --color-grey-medium: #646464;
  --color-grey-light: #818181;
  --color-grey-lighter: #cccccc;
  --color-grey-pale: #d2d2d2;
  --color-grey-ice: #efefef;
  --color-trans-1: #3498db00;
  --color-trans-2: #2980b900;
  --color-trans-3: #ddd0;
  --color-white-10: rgb(255, 255, 255, .1);
  --color-white-20: rgb(255, 255, 255, .2);
  --color-white-30: rgb(255, 255, 255, .3);
  --color-white-40: rgb(255, 255, 255, .4);
  --color-white-50: rgb(255, 255, 255, .5);
  --color-white-60: rgb(255, 255, 255, .6);
  --color-white-70: rgb(255, 255, 255, .7);
  --color-white-80: rgb(255, 255, 255, .8);
  --color-white-90: rgb(255, 255, 255, .9);
  --color-grey-10: rgb(0, 0, 0, .1);
  --color-grey-20: rgb(0, 0, 0, .2);
  --color-grey-30: rgb(0, 0, 0, .3);
  --color-grey-40: rgb(0, 0, 0, .4);
  --color-grey-50: rgb(0, 0, 0, .5);
  --color-grey-60: rgb(0, 0, 0, .6);
  --color-grey-70: rgb(0, 0, 0, .7);
  --color-grey-80: rgb(0, 0, 0, .8);
  --color-grey-90: rgb(0, 0, 0, .9);
  --color-splash-10: rgb(198, 55, 129, .1);
  --color-splash-20: rgb(198, 55, 129, .2);
  --color-splash-50: rgb(198, 55, 129, .5);
  --color-splash-70: rgb(198, 55, 129, .7);
  --color-primary-10: rgb(103, 128, 224, .1);
  --color-primary-20: rgb(103, 128, 224, .2);
  --color-primary-30: rgb(103, 128, 224, .3);
  --color-primary-40: rgb(103, 128, 224, .4);
  --color-primary-50: rgb(103, 128, 224, .5);
  --color-primary-60: rgb(103, 128, 224, .6);
  --color-primary-70: rgb(103, 128, 224, .7);
  --color-primary-80: rgb(103, 128, 224, .8);
  --color-primary-90: rgb(103, 128, 224, .9);
  --color-secondary-10: rgb(99, 177, 178, .1);
  --color-secondary-20: rgb(99, 177, 178, .2);
  --color-secondary-50: rgb(99, 177, 178, .5);
  --color-secondary-70: rgb(99, 177, 178, .7);
  --font-sans: "Raleway", "Helvetica", Arial, sans-serif;
  --box-shadow: 3px 3px 10px rgba(0,0,0,.3);
  --border-radius: 4px;
  --button-form: 32px;
  --button-offset: -40px;
  --button-size: 40px;
  --header-height: 40px;
  --icon-close: "𐄂";
  --icon-down-triangle: "▼";
  --icon-hamburger: "☰";
  --icon-left-arrow: "⟪";
  --icon-lower-right-triangle: "◿";
  --icon-search: "🔍";
  --icon-up-triangle: "▲";
  --icon-upper-right-triangle: "◹";
  --icon-profile-size: 25px;
  --nav-width: 20%;
  --v1-color-white-bg: #e8e8e8;
  --v1-color-blue: #1D4ED8;
  --v1-color-bt-white: #F8FAFC;
  --v1-color-border-white: #CBD5E1;
  --v1-color-border-red: #DC2626;
  --v1-color-label-gray: #475569;
  --v1-color-error-red: #DC2626;
  --v1-color-other-gray: #94A3B8;
  --v1-color-google-dark: #2C3659;
  --v1-color-verify-white: #ECFDF5;
  --v1-color-verify-green: #047857;
  --v1-color-verify-gray: #64748B;
  --v1-color-verify-focus-border: #1D4ED8;
  --v1-color-verify-focus-bg: #E8EDFB;
  --v1-color-verify-blur-border: #CBD5E1;
  --font-v1-sans: Inter, sans-serif, Arial, Raleway, Helvetica;
  --v2-color-wel-bg: #06102B;
  --v2-color-text-gray: #6D6D6D;
  --v2-color-white-bg:#FCFCFD;
  --v2-color-lightgray: #F5F5F5;
  --v2-color-text-lightgray: rgba(50, 49, 66, 0.35);
  --v2-color-blue: #3981F7;
  --v2-color-border-white: #E5E5E5;
  --v2-color-gray2: #AAAAAA;
  --v2-color-gray3: #ACADB9;
  --v2-color-dark2: #3E3E3E;
  --font-v2-sans: Inter, sans-serif, Arial, Raleway, Helvetica;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type=search] {
  appearance: none;
  -webkit-appearance: none;
}
input[type=search]::-webkit-clear-button {
  display: none;
}

body {
  display: grid;
  gap: 0;
  grid-template-rows: 36px auto 60px;
  grid-template-columns: auto;
}
body.noauth {
  grid-template-rows: 36px auto 60px;
  grid-template-columns: 20% auto 20%;
}
body.noauth main {
  grid-column-start: 1;
  grid-column-end: 3;
}
body.noauth footer {
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: center;
}
body header {
  grid-row: 1;
  grid-column-start: 1;
  grid-column-end: 3;
  position: fixed;
}
body nav {
  position: fixed;
}
body main {
  grid-row-start: 2;
  grid-column-start: 1;
  grid-column-end: 3;
}
body footer {
  grid-row-start: 3;
  grid-column-start: 1;
  grid-column-end: 3;
}

body.noauth > header {
  left: 0;
  width: 100%;
}
body > header {
  background-color: white;
  border-bottom: 1px solid var(--color-grey-30);
  color: var(--color-primary-dark);
  display: block;
  font-size: 1rem;
  margin: 0;
  min-height: 35px;
  padding: 0;
  width: 100%;
  left: 0;
  z-index: 1005;
}
body > header nav {
  position: absolute;
  top: 0.25rem;
  right: 1rem;
}
body > header nav a {
  color: var(--color-primary-dark);
  display: inline-block;
  font-size: 0.9rem;
  padding: 0.5rem;
  text-decoration: none;
}
body > header nav a:hover {
  color: var(--color-primary);
}

body.tern-theme-v1 button {
  --i: var(--light, 0);
  --not-i: calc(1 - var(--i));
  --j: var(--press, 0);
  --not-j: calc(1 - var(--j));
  z-index: var(--i);
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 15%;
  box-shadow: calc(var(--not-j)*-0.25em) calc(var(--not-j)*-0.25em) 0.25em rgba(252, 252, 252, var(--not-j)), calc(var(--not-j)*0.25em) calc(var(--not-j)*0.25em) 0.25em rgba(210, 218, 230, var(--not-j)), inset calc(var(--j)*0.25em) calc(var(--j)*0.25em) 0.25em rgba(210, 218, 230, var(--j)), inset calc(var(--j)*-0.25em) calc(var(--j)*-0.25em) 0.25em rgba(252, 252, 252, var(--j));
  background: var(--v1-color-white-bg);
  font-size: 2.5rem;
  transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.2, 4, 1, 3);
  cursor: pointer;
}
body.tern-theme-v1 button::after {
  filter: Contrast(0) Sepia(var(--i)) Hue-Rotate(calc(var(--hue) - 50deg)) Saturate(5) Opacity(calc(var(--i) + .21*var(--not-i))) Drop-Shadow(1px 1px hsla(0, 0%, 100%, var(--not-i)));
  transition: filter 0.3s;
}
body.tern-theme-v1 button:focus {
  outline: none;
}
body.tern-theme-v1 button:hover,
body.tern-theme-v1 button:focus {
  --light: 1;
}
body.tern-theme-v1 button:active {
  --press: 1;
}
body.tern-theme-v1 > header {
  left: 0;
  border-bottom: none;
  background: transparent;
  padding: 3.125rem;
}
body.tern-theme-v1 > main {
  position: fixed;
}
body.tern-theme-v1 div.loading {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  width: 1.56rem;
  height: 1.56rem;
  border-radius: 50%;
  border: 5px solid blue;
  border-bottom: 5px solid transparent;
  background-color: transparent;
  animation: loadingRotate 1s linear infinite;
  z-index: 1000;
}
body.tern-theme-v1 div.loading.show {
  display: block;
}
@keyframes loadingRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(359deg);
  }
}
body div.theme-v1-signup {
  display: flex;
  height: calc(100vh);
}
body div.theme-v1-signup section.theme-v1-section-welcome {
  background-image: url("../images/BG.svg");
  background-size: cover;
  padding-top: 50px;
  width: 35vw;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-texts {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-texts p {
  margin: 0px;
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.02rem;
  color: black;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-images {
  display: flex;
  justify-content: center;
  height: 300px;
  width: 300px;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-images img {
  position: absolute;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-images img.wel-img-1 {
  z-index: 100;
  margin-right: 120px;
  margin-top: 10px;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-images img.wel-img-2 {
  margin-left: 120px;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-images img.wel-img-3 {
  margin-top: 300px;
  margin-right: 60px;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-images img.wel-img-4 {
  margin-top: 300px;
}
body div.theme-v1-signup section.theme-v1-section-welcome div.theme-v1-images img.wel-img-5 {
  margin-top: 300px;
  margin-left: 40px;
}
body div.theme-v1-signup section.theme-v1-section-signup {
  width: 65vw;
  box-sizing: border-box;
  padding: 99px 50px;
  display: flex;
  flex-flow: column;
  align-items: center;
  overflow: scroll;
}
body div.theme-v1-signup section.theme-v1-section-signup br.mob-br {
  display: none;
}
body div.theme-v1-signup section.theme-v1-section-signup br.pc-br {
  display: block;
}
body div.theme-v1-signup section.theme-v1-section-signup button {
  width: 174px;
  height: 45px;
  background: var(--v1-color-blue);
  border-radius: 5px;
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 22px;
  text-align: center;
  color: var(--v1-color-bt-white);
  border: none;
  cursor: pointer;
  margin-top: 30px;
}
body div.theme-v1-signup section.theme-v1-section-signup input {
  background: white;
  border: 1px solid var(--v1-color-border-white);
  border-radius: 4px;
  height: 52px;
  box-sizing: border-box;
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 14px 16px;
  width: 40vw;
}
body div.theme-v1-signup section.theme-v1-section-signup input.field-error {
  border: 1px solid var(--v1-color-border-red);
}
body div.theme-v1-signup section.theme-v1-section-signup input:-internal-autofill-selected {
  background-color: white !important;
}
body div.theme-v1-signup section.theme-v1-section-signup input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
body div.theme-v1-signup section.theme-v1-section-signup img.pwdEye {
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: 40px;
  margin-left: calc(40vw - 30px);
}
body div.theme-v1-signup section.theme-v1-section-signup label {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  margin-bottom: 7px;
  color: var(--v1-color-label-gray);
}
body div.theme-v1-signup section.theme-v1-section-signup div {
  width: 40vw;
}
body div.theme-v1-signup section.theme-v1-section-signup div.theme-v1-errors ul li {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  color: var(--v1-color-error-red);
}
body div.theme-v1-signup section.theme-v1-section-signup div.account-tip {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  margin-top: 30px;
  color: black;
}
body div.theme-v1-signup section.theme-v1-section-signup div.account-tip a {
  color: var(--v1-color-blue);
}
body div.theme-v1-signup section.theme-v1-section-signup div.other-login {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: center;
  color: var(--v1-color-other-gray);
  margin-top: 56px;
}
body div.theme-v1-signup section.theme-v1-section-signup div.other-login a {
  color: var(--v1-color-blue);
}
body div.theme-v1-signup section.theme-v1-section-signup div.google-login {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  color: var(--v1-color-google-dark);
  border: 1.5px solid var(--v1-color-border-white);
  border-radius: 10px;
  width: 20vw;
  height: 48px;
  display: flex;
  align-items: center;
  margin-top: 26px;
  cursor: pointer;
}
body div.theme-v1-signup section.theme-v1-section-signup div.google-login img {
  width: 15px;
  height: 15px;
  padding: 5px;
}
body div.theme-v1-signup section.theme-v1-section-signup div.google-login div {
  align-self: center;
  width: calc(20vw - 40px);
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
}
body div.theme-v1-signup section.theme-v1-section-signup div.theme-v1-user-term {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.87rem;
  line-height: 17px;
  margin-top: 15px;
  color: var(--v1-color-label-gray);
}
body div.theme-v1-signup section.theme-v1-section-signup div.theme-v1-user-term a {
  color: var(--v1-color-blue);
}
body div.theme-v1-signup section.theme-v1-section-signup div.theme-v1-signup-field {
  display: flex;
  flex-flow: column;
  margin-top: 0px;
}
body div.theme-v1-signup section.theme-v1-section-signup div.name-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  width: 40vw;
}
body div.theme-v1-signup section.theme-v1-section-signup div.name-wrapper div.theme-v1-signup-field {
  width: 18vw;
}
body div.theme-v1-signup section.theme-v1-section-signup div.name-wrapper div.theme-v1-signup-field input {
  width: 18vw;
}
body div.theme-v1-signup section.theme-v1-section-signup h1 {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 2.0625rem;
  line-height: 40px;
  text-align: left;
  letter-spacing: -0.02rem;
  color: black;
  margin-bottom: 0px;
  width: 40vw;
}
body div.theme-v1-signup section.theme-v1-section-signup h2 {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 23px;
  letter-spacing: -0.02rem;
  color: black;
  margin-top: 56px;
  margin-bottom: 0px;
  width: 40vw;
}
body div.theme-v1-signup section.theme-v1-section-signup h3 {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  color: black;
  margin-top: 6px;
  margin-bottom: 0px;
  width: 40vw;
}

@media screen and (max-width: 600px) {
  body.tern-theme-v1 > header {
    left: 0;
    border-bottom: none;
    background: transparent;
    padding: 20px;
  }
  body.tern-theme-v1 > main {
    position: fixed;
  }
  body div.theme-v1-signup {
    display: flex;
    height: calc(100vh);
  }
  body div.theme-v1-signup section.theme-v1-section-welcome {
    display: none;
  }
  body div.theme-v1-signup section.theme-v1-section-signup {
    width: 100vw;
    overflow: scroll;
    padding-top: 50;
    padding-left: 0px;
    padding-right: 0px;
  }
  body div.theme-v1-signup section.theme-v1-section-signup button {
    width: 90vw;
    margin-top: 30px;
  }
  body div.theme-v1-signup section.theme-v1-section-signup br.mob-br {
    display: block;
  }
  body div.theme-v1-signup section.theme-v1-section-signup br.pc-br {
    display: none;
  }
  body div.theme-v1-signup section.theme-v1-section-signup input {
    width: 90vw;
  }
  body div.theme-v1-signup section.theme-v1-section-signup img {
    margin-left: calc(90vw - 30px);
  }
  body div.theme-v1-signup section.theme-v1-section-signup img.pwdEye {
    width: 20px;
    height: 20px;
    position: absolute;
    margin-top: 40px;
    margin-left: calc(90vw - 30px);
  }
  body div.theme-v1-signup section.theme-v1-section-signup label {
    color: var(--v1-color-label-gray);
  }
  body div.theme-v1-signup section.theme-v1-section-signup div {
    width: 90vw;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.account-tip {
    color: black;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.account-tip a {
    color: var(--v1-color-blue);
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.other-login {
    display: none;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.google-login {
    display: none;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.theme-v1-user-term {
    margin-top: 30px;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.theme-v1-user-term a {
    color: var(--v1-color-blue);
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.theme-v1-signup-field {
    display: flex;
    flex-flow: column;
    margin-top: 10px;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.name-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin-top: 20px;
    width: 90vw;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.name-wrapper div.theme-v1-signup-field {
    width: 90vw;
  }
  body div.theme-v1-signup section.theme-v1-section-signup div.name-wrapper div.theme-v1-signup-field input {
    width: 90vw;
  }
  body div.theme-v1-signup section.theme-v1-section-signup h1 {
    width: 100vw;
    margin-left: 6vw;
    margin-top: 20vh;
  }
  body div.theme-v1-signup section.theme-v1-section-signup h2 {
    width: 100vw;
    margin-left: 6vw;
  }
  body div.theme-v1-signup section.theme-v1-section-signup h3 {
    width: 100vw;
    margin-left: 6vw;
  }
}
body div.theme-v1-signup.theme-v1-signin {
  display: flex;
}
body div.theme-v1-signup.theme-v1-signin section.theme-v1-section-signup h3 {
  margin-bottom: 56px;
}
body div.theme-v1-signup.theme-v1-signin section.theme-v1-section-signup div.theme-v1-checkbox {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 0px;
}
body div.theme-v1-signup.theme-v1-signin section.theme-v1-section-signup div.theme-v1-checkbox input {
  padding: 0;
  margin: 0;
  margin-right: 10px;
  width: 20px;
}
body div.theme-v1-signup.theme-v1-signin section.theme-v1-section-signup div.theme-v1-checkbox div {
  width: 20vw;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: start;
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  color: #0F172A;
}
body div.theme-v1-signup.theme-v1-signin section.theme-v1-section-signup div.theme-v1-checkbox a {
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  text-decoration-line: underline;
  color: var(--v1-color-blue);
}

@media screen and (max-width: 600px) {
  body div.theme-v1-signup.theme-v1-signin section.theme-v1-section-signup div.theme-v1-checkbox div {
    width: 40vw;
  }
}
body div.theme-v1-signup.theme-v1-theme-v1-forget-pwd {
  display: flex;
}
body div.theme-v1-signup.theme-v1-theme-v1-forget-pwd section.theme-v1-section-signup h3 {
  margin-bottom: 50px;
}

@media screen and (max-width: 600px) {
  body div.theme-v1-signup.theme-v1-signin section.theme-v1-section-signup div.theme-v1-checkbox div {
    width: 40vw;
  }
}
body div.theme-v1-signup.theme-v1-theme-v1-reset-pwd {
  display: flex;
}
body div.theme-v1-signup.theme-v1-theme-v1-reset-pwd section.theme-v1-section-signup h3 {
  margin-bottom: 50px;
}

@media screen and (max-width: 600px) {
  body div.theme-v1-signup.theme-v1-reset-pwd section.theme-v1-section-signup div.theme-v1-checkbox div {
    width: 40vw;
  }
}
body div.theme-v1-signup.theme-v1-2fa {
  display: flex;
  justify-content: center;
  width: 100vw;
}
body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup h1 {
  margin-top: 100px;
}
body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup h3 {
  margin-bottom: 50px;
}
body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup button {
  width: 40vw;
}
body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup div {
  width: 40vw;
}
body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup input {
  width: 40vw;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup h1 {
    margin-top: 100px;
  }
  body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup h3 {
    margin-bottom: 50px;
  }
  body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup button {
    width: 90vw;
  }
  body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup div {
    width: 90vw;
  }
  body div.theme-v1-signup.theme-v1-2fa section.theme-v1-section-signup input {
    width: 90vw;
    box-sizing: border-box;
  }
}
body div div.resend-code-tip-container {
  position: fixed;
  display: none;
}
body div div.resend-code-tip-container.show {
  display: block;
}
body div div.resend-code-tip-container div.resend-code-tip {
  margin-top: 25px;
  background: var(--v1-color-verify-white);
  border-radius: 5px;
  padding: 16px 32px;
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.87rem;
  line-height: 17px;
  color: var(--v1-color-verify-green);
  display: flex;
  align-items: center;
}
body div div.resend-code-tip-container div.resend-code-tip img {
  margin-right: 10px;
}
body div.theme-v1-signup.theme-v1-2fa-verify {
  display: flex;
  justify-content: center;
  width: 100vw;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup h1 {
  margin-top: 100px;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup h3 {
  margin-bottom: 50px;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup button {
  width: 40vw;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div {
  width: 40vw;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div.theme-v1-signup-field {
  width: 30vw;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-around;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div.theme-v1-signup-field input {
  width: 42px;
  height: 42px;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div.resend-code {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.87rem;
  line-height: 17px;
  color: black;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div.resend-code img {
  margin-right: 4px;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div.code-expire-tip {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.87rem;
  line-height: 17px;
  text-align: center;
  color: var(--v1-color-verify-gray);
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup input {
  width: 40vw;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--font-v1-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.74rem;
  line-height: 34px;
  letter-spacing: -0.02em;
  color: black;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup input.focus {
  border-color: var(--v1-color-verify-focus-border);
  background-color: var(--v1-color-verify-focus-bg);
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup input.blur {
  border-color: var(--v1-color-verify-blur-border);
  background-color: white;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup input[type=number] {
  -moz-appearance: textfield;
}

@media screen and (max-width: 600px) {
  body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup h1 {
    margin-top: 100px;
  }
  body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup h3 {
    margin-bottom: 50px;
  }
  body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup button {
    width: 90vw;
  }
  body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div {
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup div.theme-v1-signup-field {
    width: 80vw;
  }
  body div.theme-v1-signup.theme-v1-2fa-verify section.theme-v1-section-signup input {
    width: 90vw;
    box-sizing: border-box;
    text-align: center;
  }
}
figure {
  align-items: center;
  display: flex;
  margin: 0.5rem auto;
  padding: 0;
  width: fit-content;
}
figure.profile div {
  cursor: pointer;
  height: var(--icon-profile-size);
  margin: 0;
  padding: 0;
  position: relative;
  width: var(--icon-profile-size);
}
figure.profile div img {
  border-radius: 50%;
  height: var(--icon-profile-size);
  left: 0;
  position: absolute;
  top: 0;
  width: var(--icon-profile-size);
}
figure.profile figcaption {
  color: var(--color-primary-dark);
  margin: 0 0.5rem;
  padding: 0;
  text-transform: capitalize;
  vertical-align: middle;
}
figure.profile figcaption h2 {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
}

nav.primary {
  background-color: white;
  box-shadow: var(--box-shadow);
  margin: 0;
  top: 40px;
  width: var(--nav-width);
  padding: 0;
  z-index: 1020;
}
nav.primary button {
  background-color: var(--color-primary);
  border: 0;
  color: var(--color-white-80);
  cursor: pointer;
  font-size: 1.5rem;
  height: 40px;
  margin: 0;
  padding: 0;
  width: 60px;
  text-align: center;
  position: absolute;
  top: -40px;
  left: 0;
}
nav.primary button:hover {
  background-color: var(--color-splash);
  color: var(--color-white-80);
}
nav.primary button::after {
  font-weight: bold;
  content: var(--icon-close);
}
nav.primary.hidden {
  height: 0;
  min-height: 0;
  top: 0;
}
nav.primary.hidden button {
  background-color: transparent;
  color: var(--color-grey-80);
  top: 0;
}
nav.primary.hidden button:hover {
  color: var(--color-grey-80);
}
nav.primary.hidden button::after {
  content: var(--icon-hamburger);
}
nav.primary.hidden ul {
  display: none;
}
nav.primary ul {
  margin: 0;
  overflow: scroll;
  height: 90vh;
  padding: 0;
}
nav.primary ul li {
  cursor: pointer;
  margin: 0;
  padding: 0;
}
nav.primary ul li.category {
  margin: 0;
  padding: 0;
}
nav.primary ul li.category h3 {
  color: black;
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 1rem;
  text-transform: capitalize;
}
nav.primary ul li.category h3::after {
  color: var(--color-grey-50);
  content: var(--icon-down-triangle);
  float: right;
}
nav.primary ul li.category.open h3 {
  font-weight: bold;
}
nav.primary ul li.category.open h3::after {
  content: var(--icon-up-triangle);
}
nav.primary ul li.category.open ul {
  height: auto;
  opacity: 1;
  transition-timing-function: ease-in;
  transition: 0.3s;
}
nav.primary ul li.category ul {
  height: 0;
  opacity: 0;
  transition-timing-function: ease-out;
  transition: 0.2s;
}
nav.primary ul li.category.open {
  color: var(--color-primary-dark);
}
nav.primary ul li.category.open ul li.active {
  font-weight: bold;
}
nav.primary ul li.category.open ul li.active a {
  color: var(--color-primary);
}
nav.primary ul li.category.open ul li.active i.fa {
  color: var(--color-primary);
  rotate: -15deg;
  text-shadow: 5px 5px var(--color-grey-20);
}
nav.primary ul li:hover ul li:hover a {
  color: var(--color-primary);
  text-decoration: underline;
}
nav.primary ul li:hover ul li:hover i.fa {
  color: var(--color-primary);
  rotate: -15deg;
  text-shadow: 5px 5px var(--color-grey-20);
}
nav.primary ul li a {
  color: var(--color-primary-dark);
  display: flex;
  font-size: 0.9rem;
  margin: 0;
  padding: 0.75rem;
  text-decoration: none;
}
nav.primary ul li a i.fa {
  font-size: 1.25rem;
  margin: 0;
  text-align: center;
  width: 30px;
}
nav.primary ul li a span {
  display: inline-block;
  line-height: 1.5rem;
  padding: 0 0 0 10px;
}

body {
  background-color: var(--color-grey-05);
  color: var(--color-grey-80);
  font-family: var(--font-sans);
  font-size: 100%;
  font-style: normal;
  font-weight: 300;
  margin: 0;
  padding: 0;
}
body main {
  padding: 0;
  margin: 0;
}
body main h1,
body main h2,
body main h3,
body main h4,
body main h5,
body main h6 {
  font-weight: 300;
}
body main h2 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: capitalize;
}
body main > section {
  padding: 2rem;
  width: calc(100% - 2rem);
}
body main > aside {
  background-color: var(--color-primary);
  box-shadow: 5px 5px 10px 0 var(--color-grey-80);
  min-height: 200px;
  max-width: 1110px;
  padding: 2rem;
  position: fixed;
  right: 0;
  top: 40px;
  transform: translateX(0%);
  transition-timing-function: ease-in;
  transition: 0.2s;
  width: calc(100% - 4rem);
  z-index: 9999;
}
body main > aside button#btnPanel {
  background-color: transparent;
  border: 0;
  border-right: 0;
  color: var(--color-grey-medium);
  cursor: pointer;
  height: var(--button-size);
  right: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: var(--button-size);
}
body main > aside button#btnPanel:after {
  color: var(--color-white-90);
  content: var(--icon-close);
  display: block;
  font-size: 2rem;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
body main > aside button#btnPanel:hover {
  background-color: var(--color-splash);
}
body main > aside.collapsed {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  transform: translateX(0);
  transition-timing-function: ease-out;
  transition: 0.2s;
  width: 1rem;
}
body main > aside.collapsed button#btnPanel {
  background-color: transparent;
  height: var(--button-size);
  left: calc(var(--button-offset) + 5px);
  top: 0;
  width: var(--button-size);
}
body main > aside.collapsed button#btnPanel:after {
  color: var(--color-white-80);
  content: var(--icon-search);
  font-size: 1.5rem;
}
body main > aside.collapsed .component,
body main > aside.collapsed .search,
body main > aside.collapsed .panel {
  display: none;
}
body main > aside .search form .field button {
  border-radius: 0;
  margin: 0;
  padding: 1rem;
  font-size: 1rem;
}
body main > aside .search form .field input,
body main > aside .search form .field select {
  background-color: var(--color-white-50);
  border: 0;
  font-size: 1rem;
  padding: 1rem;
}
body main > aside .search form .field label {
  color: var(--color-white-90);
}
body main > aside .search form > .field.search input[type=search] {
  width: 85%;
}
body main > aside .search form > .field ~ .field {
  display: inline-block;
  margin: 0 1rem 0 0;
  width: auto;
}
body main > aside div.component {
  overflow: hidden;
}
body main > aside div.component h3 {
  color: var(--color-white-90);
  display: block;
  margin: 0 0 1rem;
  padding: 0;
}
body main div#notification {
  background-color: var(--color-grey-70);
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  padding: 0;
  position: fixed;
  z-index: 999;
}
body main div#notification.hidden {
  display: none;
}
body main div#notification strong {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}
body main div#notification.woah > div, body main div#notification.failure > div {
  background-color: var(--color-splash);
}
body main div#notification > div {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: var(--color-primary);
  color: white;
  font-size: 2rem;
  margin: auto;
  padding: 2rem;
  width: 50%;
  min-height: 250px;
  max-height: 350px;
}
body main div#notification > div p > div {
  position: absolute;
  bottom: 2rem;
}
body main div#notification > div p > div a {
  display: inline-block;
  border: 0;
  padding: 1rem;
  margin: 0 0.5rem 0 0;
  text-decoration: none;
  color: var(--color-grey-darker);
  font-size: 1rem;
  background-color: white;
}
body main div#notification > div p > div a:hover {
  background-color: var(--color-grey-lighter);
}
body main div#notification > div ul {
  margin: 1rem auto;
  max-height: 200px;
  overflow: scroll;
}
body main div#notification > div ul li {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
body main div#notification button {
  background-color: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  right: 1%;
  top: 1%;
}

body.noauth {
  background-image: url("../images/header-bg.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
body.noauth > header {
  display: none;
}
body.noauth > nav.primary {
  display: none;
}
body.noauth main {
  display: block;
  margin: auto;
  min-height: unset;
}
body.noauth main > div {
  background-color: white;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
body.noauth main > div img {
  margin: 1rem;
}
body.noauth main section#auth {
  margin: 10vw auto auto auto;
  max-height: 400px;
  max-width: 50vw;
  overflow: hidden;
}
body.noauth main section#auth form {
  background-color: transparent;
  margin: 3rem;
}
body.noauth main section#auth form fieldset {
  background-color: transparent;
  margin: 0;
}
body.noauth main section#auth form fieldset legend {
  background-color: transparent;
  border: 0;
  color: var(--color-primary-dark);
  font-size: 2rem;
  margin: 0 0 2rem 0;
  top: -4rem;
}
body.noauth main section#auth form fieldset.actions {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 2rem;
}
body.noauth main section#auth form fieldset.actions button {
  border-radius: var(--border-radius);
}
body.noauth main section#auth form fieldset.actions button.submit {
  background-color: var(--color-primary-dark);
}
body.noauth main section#auth form fieldset.actions button.submit:hover {
  background-color: var(--color-splash);
}
body.noauth main section#auth form fieldset input {
  background-color: var(--color-white-30);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-primary-dark);
  max-width: unset;
  padding: 1rem 2rem;
  width: calc(100% - 4rem - 2px);
}
body.noauth main section#auth form fieldset label {
  color: var(--color-primary-dark);
}

nav.breadcrumbs {
  background-color: var(--color-primary-pale);
  border-bottom: 1px solid var(--color-grey-20);
  display: block;
  margin: 40px 0 0 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  text-transform: capitalize;
  top: 0;
  width: 100%;
  z-index: 1004;
}
nav.breadcrumbs a.button {
  background-color: var(--color-splash-20);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-splash);
  color: var(--color-splash);
  display: inline-block;
  padding: 0.25rem 1rem;
  text-decoration: none;
}
nav.breadcrumbs a.button.hidden {
  opacity: 0;
}
nav.breadcrumbs a.button:hover {
  background-color: var(--color-splash);
  color: white;
  text-decoration: none;
}
nav.breadcrumbs ol {
  display: inline-block;
  margin: 1rem;
  padding: 0;
}
nav.breadcrumbs ol li {
  color: var(--color-grey-medium);
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.breadcrumbs ol li i.fa {
  color: var(--color-primary-dark);
  margin-right: 0.25rem;
}
nav.breadcrumbs ol li:first-child:before {
  content: "";
}
nav.breadcrumbs ol li:before {
  color: var(--color-primary-dark);
  content: "/";
  display: inline-block;
  font-size: 0.9rem;
  margin: 0 0.5rem 0 0.25rem;
  padding: 0;
}
nav.breadcrumbs ol li a {
  color: var(--color-primary-dark);
  text-decoration: none;
}
nav.breadcrumbs ol li a:hover {
  color: var(--color-splash);
  text-decoration: underline;
}

section#detail {
  margin-top: 50px;
  opacity: 0.6;
  width: 96%;
}
section#detail.expanded {
  opacity: 1;
  width: 96%;
}
section#detail h2 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  padding: 0.5rem;
  text-transform: capitalize;
}

form {
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
}
form main {
  margin: 0;
  padding: 0;
}
form fieldset {
  border-radius: 6px;
  border-top-left-radius: 0;
  border: 1px solid var(--color-grey-20);
  margin: 3rem 0 2rem 0;
  padding: 2rem;
  position: relative;
}
form fieldset legend {
  background-color: var(--color-grey-20);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  color: var(--color-grey-60);
  font-size: 1.125rem;
  font-weight: 500;
  left: 0;
  margin: 0;
  padding: 0.5rem 2rem 0.25rem 1.5rem;
  position: absolute;
  top: calc(-2.25rem + 3px);
}
form fieldset.actions {
  background-color: var(--color-grey-10);
  border-top: 2px solid var(--color-grey-lighter);
  margin: 1rem 0;
  padding: 1.25rem;
}
form fieldset.actions.hidden {
  opacity: 0;
}
form fieldset.actions details {
  border: 1px solid transparent;
  color: var(--color-primary-dark);
  cursor: pointer;
  padding: 0.5rem 5rem 0.5rem 1rem;
  position: fixed;
  right: 0;
  top: 48px;
  z-index: 2;
}
form fieldset.actions details.complete {
  color: var(--color-primary-dark);
}
form fieldset.actions details[open=""], form fieldset.actions details[open=open] {
  z-index: 1000;
}
form fieldset.actions details[open=""] ul, form fieldset.actions details[open=open] ul {
  background-color: white;
  border: 1px solid var(--color-grey-lighter);
  margin: 12px 0 0;
  padding: 1rem;
}
form fieldset.actions details[open=""] ul li, form fieldset.actions details[open=open] ul li {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
}
form fieldset.actions details[open=""] ul li.full, form fieldset.actions details[open=open] ul li.full {
  color: var(--color-primary-dark);
}
form select,
form textarea,
form input {
  background-color: transparent;
  border: 1px solid var(--color-grey-30);
  border-radius: var(--border-radius);
  color: var(--color-grey-80);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
  padding: 1rem 1.5rem;
}
form select.prefixed,
form textarea.prefixed,
form input.prefixed {
  padding-left: 3rem;
  width: calc(100% - 3rem - 3rem);
}
form select::placeholder,
form textarea::placeholder,
form input::placeholder {
  color: var(--color-grey-50);
}
form select:hover,
form textarea:hover,
form input:hover {
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
form select:disabled,
form textarea:disabled,
form input:disabled {
  background-color: var(--color-grey-10);
  border-color: var(--color-grey-40);
  color: var(--color-grey-60);
  cursor: not-allowed;
  font-style: italic;
}
form button,
form input[type=submit],
form input[type=cancel] {
  background-color: var(--color-primary);
  border-radius: 6px;
  border: 0;
  color: white;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  margin: 0;
  padding: 0.75rem 1.25rem;
}
form button:hover,
form input[type=submit]:hover,
form input[type=cancel]:hover {
  background-color: var(--color-splash);
}
form button[type=cancel],
form button.cancel,
form input[type=cancel] {
  background-color: var(--color-grey-lighter);
  color: var(--color-grey-dark);
}
form button[type=cancel]:hover,
form button.cancel:hover,
form input[type=cancel]:hover {
  background-color: var(--color-grey-light);
}
form select,
form input[type=file] {
  cursor: pointer;
  position: relative;
}
form input[type=file] {
  opacity: 0;
}
form button.delete {
  background-color: var(--color-splash);
}
form button.reset-email {
  margin-left: 0.25rem;
}
form div.field {
  display: block;
  font-size: 0.9rem;
  margin: 0 0 2.5rem;
  padding: 0;
  position: relative;
  width: 100%;
}
form div.field.hidden {
  display: none;
}
form div.field.spacer {
  border-bottom: 1px dashed var(--color-grey-light);
  margin-bottom: 2rem;
  padding-bottom: 4rem;
}
form div.field.spacer label {
  bottom: 2.5rem;
}
form div.field.required {
  color: var(--color-splash);
}
form div.field.required label::after {
  content: " *";
}
form div.field.required select,
form div.field.required textarea,
form div.field.required input {
  border: 1px solid var(--color-splash);
}
form div.field.required select:hover,
form div.field.required textarea:hover,
form div.field.required input:hover {
  background-color: var(--color-splash-10);
}
form div.field.required select.code:focus,
form div.field.required textarea.code:focus,
form div.field.required input.code:focus {
  background-color: var(--color-grey-90);
  color: greenyellow;
  font-size: 1rem;
  font-weight: bold;
}
form div.field.required select.code:focus:valid,
form div.field.required textarea.code:focus:valid,
form div.field.required input.code:focus:valid {
  background-color: var(--color-grey-90);
  color: greenyellow;
}
form div.field.required select.code:hover,
form div.field.required textarea.code:hover,
form div.field.required input.code:hover {
  background-color: var(--color-grey-90);
}
form div.field.required select.code:valid,
form div.field.required textarea.code:valid,
form div.field.required input.code:valid {
  background-color: var(--color-grey-90);
  color: var(--color-white-50);
}
form div.field div.toggle-switch {
  background-color: var(--color-splash);
  border: 1px solid var(--color-splash);
  border-radius: 17px;
  height: 34px;
  width: 84px;
  position: relative;
}
form div.field div.toggle-switch::after {
  content: " ";
  cursor: pointer;
  display: block;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  background-color: white;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 990;
}
form div.field div.toggle-switch span {
  bottom: 2px;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 1.125rem;
  height: 30px;
  left: 2px;
  line-height: 30px;
  padding: 0 0.5rem;
  position: absolute;
  right: 2px;
  text-align: right;
  top: 2px;
  width: calc(80px - 1rem);
  z-index: 999;
}
form div.field div.toggle-switch.yes {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
form div.field div.toggle-switch.yes::after {
  right: 2px;
  left: unset;
}
form div.field div.toggle-switch.yes span {
  left: 2px;
  text-align: left;
  right: unset;
}
form div.field div.toggle-switch label {
  bottom: unset;
  color: white;
  font-size: 1.25rem;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 989;
}
form div.field div.toggle-switch label::after {
  content: "";
  display: none;
}
form div.field label {
  bottom: -1.5rem;
  display: block;
  position: absolute;
}
form div.field div.description {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  color: var(--color-grey-80);
  font-size: 1.25rem;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
}
form div.field div.description.active {
  background-color: var(--color-primary-10);
  border: 1px solid var(--color-primary-dark);
  padding: 0;
  width: 50%;
}
form div.field div.description.active span {
  display: block;
  padding: 1rem;
}
form div.field div.description.active i {
  color: var(--color-primary);
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
form div.field div.description i {
  color: var(--color-grey-30);
  cursor: pointer;
}
form div.field div.description span {
  display: none;
}
form div.field input,
form div.field textarea {
  max-width: 1500px;
  width: calc(100% - 3rem);
}
form div.field textarea.code {
  background-color: var(--color-grey-80);
  color: white;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  min-height: 100px;
}
form div.field textarea.code:focus {
  background-color: var(--color-grey-90);
  color: greenyellow;
  font-size: 1rem;
  font-weight: bold;
  min-height: 400px;
}
form div.field textarea.code:focus:valid {
  background-color: var(--color-grey-90);
  color: greenyellow;
}
form div.field textarea.code:valid {
  background-color: var(--color-grey-90);
  color: var(--color-white-50);
}
form div.field input.tiny {
  max-width: 80px;
  min-width: 50px;
  width: 10%;
}
form div.field input.small,
form div.field input[type=number] {
  max-width: 120px;
  min-width: 80px;
  width: 25%;
}
form div.field input.medium,
form div.field input[type=tel] {
  max-width: 250px;
  min-width: 120px;
  width: 60%;
}
form div.field input.large,
form div.field input[type=email],
form div.field input[type=password] {
  max-width: 500px;
  min-width: 300px;
  width: 50%;
}
form div.field input.larger,
form div.field input[type=url] {
  max-width: 600px;
  min-width: 400px;
  width: 75%;
}
form div.field.file label {
  background-color: var(--color-primary);
  bottom: unset;
  color: white;
  left: 0;
  min-width: 85px;
  padding: 0.25rem 0.5rem;
  text-align: center;
  top: 51px;
}
form div.field.file input[type=file] {
  cursor: pointer;
  line-height: 2rem;
  min-height: 76px;
  opacity: 0;
  padding: 1.25rem;
}
form div.field.file .file-button {
  background-color: var(--color-primary-20);
  border: 2px dashed var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.5rem;
  left: 0;
  line-height: 2rem;
  max-width: 1450px;
  padding: 1.25rem;
  position: absolute;
  text-align: center;
  top: 0;
  width: calc(96% - 2.5rem - 4px);
}
form div.field.file figure {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}
form div.field.file figure video,
form div.field.file figure audio,
form div.field.file figure img {
  border: 0;
  width: auto;
}
form div.field.file figure img {
  margin: 0;
  max-height: 200px;
  padding: 0.5rem;
}
form div.field.file figure audio {
  margin: 0 0 0 2rem;
  min-width: 200px;
  padding: 0;
}
form div.field.file figure button {
  background-color: var(--color-splash);
  border: 0;
  color: white;
  display: block;
  left: 0;
  line-height: 20px;
  margin: 0;
  max-height: var(--button-form);
  padding: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: var(--button-form);
}
form div.field.file figure button:hover {
  background-color: var(--color-primary);
  border-top: 1px solid var(--color-primary);
}
form div.field.file figure.audio, form div.field.file figure.image {
  display: flex;
  flex-direction: row;
}
form div.field.file figure.audio img, form div.field.file figure.image img {
  max-width: 50%;
}
form div.field.file figure.audio figcaption, form div.field.file figure.image figcaption {
  padding: 0.75rem 0 0 1rem;
  width: 45%;
}
form div.field.file figure.document figcaption {
  display: none;
}
form div.field.file figure.document .details {
  margin-left: 2rem;
}
form div.field.file .details {
  border-top: 0;
  border: 1px solid var(--color-grey-lighter);
  display: inline-block;
  height: var(--button-form);
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: auto;
}
form div.field.file .details i {
  background-color: var(--color-grey-ice);
  border-right: 1px solid var(--color-grey-lighter);
  color: var(--color-grey-70);
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  height: var(--button-form);
  margin: 0;
  max-height: var(--button-form);
  padding: 0.5rem 0;
  text-align: center;
  width: 33px;
}
form div.field.file .details span {
  border: 0;
  display: inline-block;
  margin: 0;
  max-height: var(--button-form);
  padding: 0.4rem 1rem;
}
form div.field.file .details button {
  background-color: white;
  border: 0;
  color: var(--color-splash);
  display: inline-block;
  height: var(--button-form);
  line-height: 20px;
  margin: 0;
  max-height: var(--button-form);
  padding: 0;
  text-align: center;
  width: var(--button-form);
}
form div.field.file .details button:hover {
  background-color: var(--color-splash);
  border-top: 1px solid var(--color-splash);
  color: white;
}
form div.field ul {
  margin: 0;
  padding: 0;
}
form div.field ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
form div.field ul li label {
  border-bottom: 1px solid var(--color-grey-lighter);
  cursor: pointer;
  display: flex;
  padding: 1rem;
  width: 95%;
}
form div.field ul li label:hover {
  background-color: var(--color-grey-ice);
}
form div.field ul li label input[type=checkbox],
form div.field ul li label input[type=radio] {
  margin: 0 0.75rem 0 0;
  width: auto;
}
form div.field ul li label span {
  display: block;
  flex: 29;
}

form div.field.required > span.prefix {
  color: var(--color-splash);
}
form div.field > span.prefix {
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1.25rem;
  margin: 0;
  padding: 1rem;
  z-index: 100;
  position: absolute;
}
form div.field.sorting {
  position: relative;
}
form div.field.sorting [draggable] {
  user-select: none;
}
form div.field.sorting .order_overlay {
  background-color: var(--color-grey-70);
  bottom: 0;
  color: white;
  display: none;
  left: 0;
  margin: auto;
  padding: 3rem 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}
form div.field.sorting .order_overlay.show {
  display: block;
}
form div.field.sorting .order_buttons {
  background-color: white;
  border: 3px solid var(--color-grey-light);
  box-shadow: 5px 5px 10px 0 var(--color-grey-50);
  border-left: 0;
  display: none;
  height: auto;
  left: 423px;
  position: absolute;
  top: 0;
  width: calc(50px - 6px);
  z-index: 999;
}
form div.field.sorting .order_buttons.show {
  display: block;
}
form div.field.sorting .order_buttons button {
  border: 0;
  color: black;
  font-weight: bold;
  width: 50px;
}
form div.field.sorting .order_buttons button.close {
  background-color: var(--color-splash);
}
form div.field.sorting .order_buttons button.save {
  background-color: var(--color-primary);
}
form div.field.sorting .order_buttons button:hover {
  background-color: var(--color-grey-lighter);
}
form div.field.sorting .order_panel {
  background-color: white;
  border: 3px solid var(--color-grey-light);
  box-shadow: 5px 5px 10px 0 var(--color-grey-50);
  display: none;
  height: auto;
  left: 120px;
  max-height: 400px;
  min-height: 40px;
  overflow: auto;
  position: absolute;
  top: 0;
  width: 300px;
  z-index: 998;
}
form div.field.sorting .order_panel.show {
  display: block;
}
form div.field.sorting .order_panel ul {
  margin: 0;
  padding: 0;
}
form div.field.sorting .order_panel ul li {
  border-top: 0;
  border: 1px solid var(--color-grey-lighter);
  cursor: grab;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
}
form div.field.sorting .order_panel ul li:last-child {
  border-bottom: 0;
}
form div.field.sorting .order_panel ul li.selected {
  background-color: var(--color-grey-10);
  border: 1px dashed var(--color-grey-lighter);
  color: var(--color-grey-30);
}
form div.field.sorting .order_panel ul li:before {
  color: var(--color-grey-50);
  content: var(--icon-hamburger);
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0;
}
form div.field.sorting .order_panel ul li[data-me=true] {
  background-color: var(--color-splash-20);
}
form div.field.relational-many, form div.field.relational {
  background-color: white;
  border: 1px solid var(--color-grey-30);
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
  min-width: 600px;
  padding: 0.5rem;
  position: relative;
  width: calc(100% - 1rem - 2px);
}
form div.field.relational-many:hover ul li, form div.field.relational:hover ul li {
  color: black;
}
form div.field.relational-many.off .search_input, form div.field.relational.off .search_input {
  display: block;
}
form div.field.relational-many.off .search_result, form div.field.relational.off .search_result {
  display: none;
}
form div.field.relational-many label, form div.field.relational label {
  margin: 0;
}
form div.field.relational-many .search_input, form div.field.relational .search_input {
  position: relative;
}
form div.field.relational-many .search_input label, form div.field.relational .search_input label {
  margin: 0 0 0.5rem 0;
}
form div.field.relational-many .search_input input[type=search], form div.field.relational .search_input input[type=search] {
  border: 1px solid transparent;
  display: inline-block;
  margin: 0;
  min-width: 100px;
  padding: calc(.75rem - 1px);
}
form div.field.relational-many .search_input button, form div.field.relational .search_input button {
  background-color: transparent;
  color: black;
  display: inline-block;
  margin: 0.5rem;
  min-height: 40px;
  padding: 0;
  position: absolute;
  right: -1.5rem;
  top: -0.4rem;
  width: 5%;
}
form div.field.relational-many .search_result, form div.field.relational .search_result {
  background-color: var(--color-grey-40);
  display: block;
  position: absolute;
  width: 99%;
  z-index: 999;
  top: 56px;
}
form div.field.relational-many .search_result.hidden, form div.field.relational .search_result.hidden {
  display: none;
}
form div.field.relational-many .search_result ul, form div.field.relational .search_result ul {
  background-color: white;
  margin: 1px;
  max-height: 300px;
  overflow-x: auto;
  padding: 0;
}
form div.field.relational-many .search_result ul li, form div.field.relational .search_result ul li {
  border: 0;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 1.25rem;
}
form div.field.relational-many .search_result ul li:hover, form div.field.relational-many .search_result ul li.selected, form div.field.relational .search_result ul li:hover, form div.field.relational .search_result ul li.selected {
  background-color: var(--color-splash-20);
  border: 0;
}
form div.field.relational-many .search_result ul li.active, form div.field.relational .search_result ul li.active {
  background-color: white;
  border: 0;
  padding: 0;
}
form div.field.relational-many .search_result ul li.active.selected, form div.field.relational-many .search_result ul li.active:hover, form div.field.relational .search_result ul li.active.selected, form div.field.relational .search_result ul li.active:hover {
  background-color: white;
  border: 0;
}
form div.field.relational-many .saved_results ul, form div.field.relational .saved_results ul {
  background-color: white;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
form div.field.relational-many .saved_results ul li, form div.field.relational .saved_results ul li {
  border: 0;
  color: black;
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
  position: relative;
  width: 95%;
}
form div.field.relational-many .saved_results ul li input[type=checkbox], form div.field.relational .saved_results ul li input[type=checkbox] {
  margin: 0 0.5rem 0 0;
  width: auto;
}
form div.field.relational-many .saved_results ul li button, form div.field.relational .saved_results ul li button {
  background-color: transparent;
  border: 0;
  color: var(--color-splash);
  margin: 0;
  padding: 0.25rem 0.5rem;
  position: absolute;
  right: 1rem;
  top: 0.25rem;
}
form div.field.relational-many .saved_results ul li button:hover, form div.field.relational .saved_results ul li button:hover {
  background-color: var(--color-splash);
  color: white;
}

form div.field.widget.spacer {
  border: 0;
  display: block;
  font-size: 1rem;
  overflow: hidden;
  padding-bottom: 1.5rem;
}
form div.field.widget.spacer h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0.25rem 0;
}
form div.field.widget.spacer .widgetInner {
  background-color: var(--color-primary-20);
  border: 2px dotted var(--color-primary);
  display: flex;
  padding: 1rem;
}
form div.field.widget.spacer .widgetInner > div {
  padding: 1px;
  width: 50%;
}
form div.field.widget.spacer .widgetInner > div.inputForm {
  width: 25%;
}
form div.field.widget.spacer .widgetInner > div.inputForm div {
  display: block;
  margin: 1rem 0;
  overflow: hidden;
}
form div.field.widget.spacer .widgetInner > div.inputForm div label {
  display: none;
  position: unset;
}
form div.field.widget.spacer .widgetInner > div.inputForm div button {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
form div.field.widget.spacer .widgetInner > div.selectedCriteria {
  width: 35%;
}
form div.field.widget.spacer .widgetInner > div.selectedCriteria ul {
  width: 94%;
}
form div.field.widget.spacer .widgetInner > div.selectedCriteria ul li {
  background-color: var(--color-white-60);
  border: 1px solid var(--color-primary);
  margin: 0.5rem 0;
  padding: 1rem;
  position: relative;
}
form div.field.widget.spacer .widgetInner > div.selectedCriteria ul li button {
  background-color: var(--color-primary);
  color: white;
  font-size: 1rem;
  height: 30px;
  padding: unset;
  position: absolute;
  right: 1rem;
  top: 9px;
  width: 30px;
}
form div.field.widget.spacer .widgetInner > div.selectedCriteria ul li button:hover {
  background-color: var(--color-splash);
}
form div.field.widget.spacer .widgetInner > div.helpText {
  width: 40%;
}

body.detail main aside {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50px repeat(10, minmax(150px, 220px));
  height: calc(100vh - 40px);
  max-height: calc(100vh - 40px);
}
body main aside div.component {
  grid-column-end: 3;
  grid-column-start: 1;
  max-height: 50px;
}
body main aside .panel {
  background-color: var(--color-white-10);
  border-radius: 6px;
  border: 2px solid transparent;
  display: inline-block;
  margin: 0;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}
body main aside .panel.expanded {
  background-color: var(--color-primary);
  height: 400px;
  margin: auto;
  position: absolute;
  right: 1rem;
  transition-timing-function: ease-in;
  transition: 0.2s;
  width: 200%;
  z-index: 9999;
}
body main aside .panel.expanded button i {
  color: white;
}
body main aside .panel.expanded ul {
  height: 333px;
  max-height: 333px;
}
body main aside .panel.expanded, body main aside .panel:hover {
  border: 2px solid var(--color-white-70);
  cursor: pointer;
}
body main aside .panel h3 {
  color: white;
  font-size: 1rem;
  margin: 0;
  padding: 0 0 1rem 0;
}
body main aside .panel div {
  margin: 0;
  padding: 0;
}
body main aside .panel div a.button {
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  color: white;
  display: inline-block;
  font-size: 0.8rem;
  margin: 0.5rem;
  padding: 0.25rem 0.75rem;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 0;
}
body main aside .panel div a.button i {
  font-size: 0.8rem;
}
body main aside .panel div a.button:hover {
  background-color: var(--color-splash);
}
body main aside .panel div ul {
  margin: 0;
  max-height: 250px;
  overflow: auto;
  padding: 0;
}
body main aside .panel div ul li {
  color: white;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
}
body main aside .panel div ul li.empty {
  color: var(--color-white-70);
  font-style: italic;
}
body main aside .panel div ul li.empty:hover {
  padding: 0.5rem;
}
body main aside .panel div ul li a, body main aside .panel div ul li p {
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
}
body main aside .panel div ul li a h4, body main aside .panel div ul li p h4 {
  margin: 0;
  padding: 0;
}

/* Homepage Navigation Styles */
main {
  display: block;
}
main section.home {
  box-sizing: border-box;
  padding-top: 7rem;
  position: relative;
  text-align: center;
  width: 100%;
}
main section.home img {
  width: 20%;
}
main section.home form.finder fieldset {
  background-color: transparent;
  border: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
}
main section.home form.finder fieldset .field {
  position: relative;
}
main section.home form.finder fieldset .field button.context {
  background-color: transparent;
  border: 0;
  border-bottom-right-radius: 0;
  border-right: 2px solid white;
  border-top-right-radius: 0;
  margin: 0;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  width: 9rem;
}
main section.home form.finder fieldset .field ul {
  border: 1px solid var(--color-grey-20);
  cursor: pointer;
  left: calc(20% + 4px);
  margin: 0;
  max-height: 30vh;
  min-width: 7%;
  overflow: auto;
  padding: 0;
  position: absolute;
  top: 48px;
  z-index: 999;
}
main section.home form.finder fieldset .field ul.hidden {
  display: none;
}
main section.home form.finder fieldset .field ul li {
  background-color: white;
  border-bottom: 1px solid var(--color-grey-20);
  display: block;
  font-size: 1.25rem;
  list-style: none;
  margin: 0;
  max-width: 30vw;
  padding: 0.25rem 1rem;
  text-align: left;
}
main section.home form.finder fieldset .field ul li span {
  display: block;
  font-size: 1rem;
  margin: 0.5rem 0;
}
main section.home form.finder fieldset .field label {
  bottom: -2.5rem;
  font-size: 1.25rem;
  left: 0;
  line-height: 2rem;
  right: 0;
}
main section.home form.finder fieldset .field input#finder {
  background-color: var(--color-grey-10);
  border-radius: var(--border-radius);
  border: 0;
  margin: 0;
  padding: 1rem 1rem 1rem 10rem;
  width: calc(60% - 2rem);
}
main section.home form.finder fieldset .field button {
  background-color: transparent;
  color: var(--color-grey-50);
  margin: 0 0 0 -4rem;
}
main section.home div#finderResults {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 35% 65%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: left;
  top: 24rem;
  width: 55%;
}
main section.home div#finderResults.hidden {
  display: none;
}
main section.home div#finderResults > div {
  position: relative;
}
main section.home div#finderResults > div.records ul li {
  white-space: normal;
}
main section.home div#finderResults > div h2 {
  font-size: 1.5rem;
}
main section.home div#finderResults > div ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  max-height: 50vh;
  overflow: auto;
  border-top: 1px solid var(--color-grey-20);
  border-bottom: 1px solid var(--color-grey-20);
}
main section.home div#finderResults > div ul li {
  margin: 0;
  overflow: hidden;
  padding: 0.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
main section.home div#finderResults > div ul li a {
  color: var(--color-primary-dark);
  text-decoration: none;
}
main section.home div#finderResults > div ul li a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
main section.home div#finderResults > div ul li a i {
  margin: 0 1rem 0 0;
  width: 1rem;
}
main section.home div#finderResults > div ul li a h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  padding: 0.25rem 0;
}
main section.home div#finderResults > div ul li a p {
  margin: 0;
  padding: 0;
}
section.search {
  flex: 1;
}
section.search input {
  font-size: 0.9rem;
  padding: 0.25rem;
}

section#results {
  margin: 50px auto;
  overflow: auto;
  position: relative;
  width: 96%;
  opacity: 1;
}
section#results.expanded {
  opacity: 1;
}
section#results h2 {
  font-size: 3rem;
  font-weight: bold;
  padding: 0.5rem;
  margin: 0 0 0.5rem;
  text-transform: capitalize;
  max-width: 60%;
}
section#results > div {
  margin: 0 0.5rem 0.5rem;
}
section#results nav {
  margin: 2rem auto;
  padding: 0;
  position: relative;
  text-align: center;
  width: 100%;
}
section#results nav div#resultstats {
  margin: 1rem auto;
  text-align: center;
  width: 100%;
}
section#results nav ul {
  margin: 0;
  padding: 0;
}
section#results nav ul li {
  background-color: var(--color-grey-30);
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  vertical-align: middle;
}
section#results nav ul li:first-child {
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
section#results nav ul li:last-child {
  padding-right: 1px;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
section#results nav ul li a {
  font-weight: bold;
  height: 38px;
  width: 38px;
  display: block;
  text-align: center;
  background-color: white;
  color: var(--color-grey-80);
  border-radius: 0;
  border: 0;
  line-height: 36px;
  text-decoration: none;
  margin: 1px 0 1px 1px;
}
section#results nav ul li a.hidden {
  display: none;
  margin: 0;
}
section#results nav ul li a.active, section#results nav ul li a:hover {
  background-color: var(--color-white-80);
}
section#results table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
section#results table thead {
  border-bottom: 2px solid var(--color-grey-20);
}
section#results table thead th[field] {
  cursor: pointer;
}
section#results table thead th[field]::after {
  content: "▲";
  display: inline;
}
section#results table thead th[field].desc::after {
  content: "▼";
}
section#results table tr:hover {
  background-color: var(--color-grey-10);
  cursor: pointer;
}
section#results table tr th,
section#results table tr td {
  padding: 1rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
section#results table tr th:nth-child(1), section#results table tr th:nth-child(2),
section#results table tr td:nth-child(1),
section#results table tr td:nth-child(2) {
  text-align: left;
}
section#results table tr th button,
section#results table tr td button {
  background-color: transparent;
  border: 1px solid var(--color-primary-dark);
  border-radius: var(--border-radius);
  color: var(--color-grey-80);
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  padding: 0.5rem 1rem;
}
section#results table tr th button.hidden,
section#results table tr td button.hidden {
  /* display: none; */
}
section#results table tr th button.edit:hover,
section#results table tr td button.edit:hover {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
section#results table tr th button.delete:hover,
section#results table tr td button.delete:hover {
  border: 1px solid var(--color-splash);
  color: var(--color-splash);
}
section#results table tr th button:hover,
section#results table tr td button:hover {
  background-color: white;
  border: 1px solid var(--color-primary-dark);
  color: var(--color-primary-dark);
}

main > article#docs {
  display: block;
  margin: 4rem 2rem;
  position: relative;
}
main > article#docs > header {
  width: 70%;
}
main > article#docs > header h1 {
  font-size: 2rem;
}
main > article#docs > aside {
  background-color: var(--color-primary);
  min-width: 21%;
  padding: 4rem 2%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
main > article#docs > aside h2 {
  font-size: 1.5rem;
  text-transform: capitalize;
}
main > article#docs > section {
  display: block;
  margin: 2rem 0 4rem;
  overflow: hidden;
  width: 70%;
}
main > article#docs > section h2 {
  border-bottom: 5px solid var(--color-grey-pale);
  font-size: 1.75rem;
  margin-bottom: 5px;
  text-transform: capitalize;
}
main > article#docs > section > section {
  display: block;
  margin: 1rem 0 2rem;
  overflow: hidden;
}
main > article#docs > section > section h3 {
  font-size: 1.5rem;
}
main > article#docs > section > section h4 {
  font-size: 1.25rem;
}
main > article#docs > section > section h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 1rem 0 0.5rem;
}
main > article#docs > section > section dl {
  font-size: 0.9rem;
}
main > article#docs > section > section dl dt {
  font-weight: bold;
}
main > article#docs > section > section dl dd {
  margin-bottom: 0.75rem;
  margin-left: 1rem;
}
main > article#docs > section > section blockquote {
  background-color: var(--color-primary-20);
  border-left: 5px solid var(--color-primary);
  margin-left: 1rem;
  padding: 1rem;
}
main > article#docs > section > section figure {
  margin: 0;
  padding: 0;
  width: 100%;
}
main > article#docs > section > section figure img {
  border: 1px solid var(--color-grey-darker);
  width: 95%;
}
main > article#docs > section > section figure figcaption {
  font-style: italic;
  padding: 0.5rem 0;
}

.underlay {
  background-color: var(--color-grey-80);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: -20000px;
  transition-timing-function: ease-out;
  transition: 0.3s;
  width: 100%;
  z-index: -1000;
}
.underlay.open {
  display: block;
  left: 0;
  top: 0;
  transition-timing-function: ease-in;
  transition: 0.3s;
  z-index: 1011;
}
.underlay div#dialog {
  background-color: var(--color-primary);
  color: white;
  display: block;
  left: 0;
  margin: auto;
  min-height: 200px;
  position: absolute;
  right: 0;
  top: 20%;
  width: 50%;
  z-index: 1012;
}
.underlay div#dialog.warning {
  background-color: var(--color-splash);
}
.underlay div#dialog.warning form fieldset i.fa-exclamation-triangle {
  display: block;
}
.underlay div#dialog.warning form fieldset button.ok {
  background-color: var(--color-grey-lighter);
  color: var(--color-grey-80);
}
.underlay div#dialog.warning form fieldset button.ok:hover {
  background-color: var(--color-primary);
  color: white;
}
.underlay div#dialog form {
  margin: 0;
  padding: 0;
}
.underlay div#dialog form h3 {
  font-size: 1.5rem;
  margin: 2rem;
}
.underlay div#dialog form p {
  margin: 0 2rem 2rem;
}
.underlay div#dialog form fieldset {
  border-top: 2px solid var(--color-white-20);
  margin: 0.25rem 0 0;
  padding: 1rem 1rem;
  text-align: right;
}
.underlay div#dialog form fieldset i {
  bottom: 1.25rem;
  color: white;
  display: none;
  font-size: 2rem;
  left: 2rem;
  position: absolute;
}
.underlay div#dialog form fieldset button {
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  margin: 0;
  min-height: 30px;
  min-width: 80px;
}
.underlay div#dialog form fieldset button:focus {
  outline: 3px solid white;
}
.underlay div#dialog form fieldset button.ok {
  background-color: var(--color-splash);
}
.underlay div#dialog form fieldset button:hover {
  background-color: var(--color-splash);
}
.underlay div#dialog form fieldset button.cancel.hidden {
  display: none;
}
.underlay div#dialog form fieldset button.cancel:hover {
  background-color: var(--color-grey-medium);
}
.underlay div#dialog form button.close {
  background-color: transparent;
  color: white;
  cursor: pointer;
  font-size: 2rem;
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
}

footer {
  background-color: white;
  font-size: 0.9rem;
  margin: 0;
  padding: 1rem 1.5rem;
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  gap: 1rem;
  right: 0;
  text-align: center;
  border-top: 1px solid var(--color-grey-20);
  border-left: 1px solid var(--color-grey-20);
  border-top-left-radius: 15px;
}
footer a {
  text-decoration: none;
}
footer a img.logo {
  margin: 0 1rem;
  width: 90%;
}
footer p {
  margin: 0;
  padding: 0;
}

body.Local > header > div.env_tag, body.Staging > header > div.env_tag {
  position: absolute;
  top: 0.5rem;
  left: 5rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}
body.Local nav.primary button, body.Staging nav.primary button {
  color: white;
}
body.Local nav.primary button.hover, body.Staging nav.primary button.hover {
  color: white;
}
body.Local figure.profile figcaption, body.Staging figure.profile figcaption {
  color: white;
}
body.Local > header {
  background-color: var(--color-splash-70);
}
body.Local > header nav a {
  color: white;
}
body.Local > header nav a:hover {
  color: white;
}
body.Staging > header {
  background-color: var(--color-primary);
}
body.Staging > header nav a {
  color: white;
}
body.Staging > header nav a:hover {
  color: white;
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1600px) {
  nav.primary {
    min-height: 100vh;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  nav.primary {
    height: calc(100% - 10vh);
  }
}
@media only screen and (max-width: 767px) {
  nav.primary {
    height: calc(100% - 10vh);
  }
}
body section#page-details {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}
body section#page-details dfn {
  background-color: var(--color-primary-10);
  border-radius: var(--border-radius);
  color: var(--color-primary);
  font-style: normal;
  padding: 0.5rem 1rem;
  text-align: center;
  text-transform: capitalize;
}
body section#page-details h1, body section#page-details h2, body section#page-details h3 {
  font-weight: bold;
  font-size: 1.5rem;
}
body section#page-details h1 {
  font-size: 2rem;
}
body section#page-details h2 {
  font-size: 1.75rem;
  margin: 2rem 0;
}
body section#page-details figure {
  display: block;
  margin: 2rem 0 0;
  position: relative;
  opacity: 1;
  transform: translateX(0%);
  transition-timing-function: ease-in;
  transition: 0.5s;
}
body section#page-details figure.hidden {
  display: none;
  opacity: 0;
  transform: translateX(0%);
  transition-timing-function: ease-in;
  transition: 0.5s;
}
body section#page-details figure img {
  max-width: 80px;
}
body section#page-details figure dfn {
  position: absolute;
  left: 100px;
  top: 30px;
}
body section#page-details figure figcaption {
  margin: 2rem 0 0;
}
body section#page-details figure figcaption h3 {
  font-size: 1.25rem;
  margin: 0;
  padding: 0;
}
body section#page-details figure figcaption a {
  margin: 0;
  padding: 0;
}
body section#page-details div {
  display: inline-block;
  margin: 1rem 0;
  opacity: 1;
  position: relative;
  transform: translateX(0%);
  transition-timing-function: ease-in;
  transition: 0.5s;
  width: 100%;
  height: auto;
}
body section#page-details div.hidden {
  opacity: 0;
  transform: translateX(0%);
  transition-timing-function: ease-in;
  transition: 0.5s;
  height: 0;
  overflow: hidden;
}
body section#page-details div nav {
  position: absolute;
  top: 6.5rem;
  right: 2%;
  text-align: center;
  width: 20%;
}
body section#page-details div nav a {
  color: var(--color-primary);
  text-decoration: underline;
}
body section#page-details div table {
  width: 98%;
}
body section#page-details div table td, body section#page-details div table th {
  font-size: 1.125rem;
  padding: 1rem;
  width: 18%;
}
body section#page-details div table td:last-child, body section#page-details div table th:last-child {
  text-align: center;
}
body section#page-details div table thead tr th {
  color: var(--color-grey-30);
  font-weight: bold;
  text-align: left;
}
body section#page-details div table tbody tr td:first-of-type {
  font-weight: bold;
}
body section#page-details div table tbody tr td:nth-child(2), body section#page-details div table tbody tr td:nth-child(3) {
  color: var(--color-grey-30);
}
body.tern-theme-v2 button {
  --i: var(--light, 0);
  --not-i: calc(1 - var(--i));
  --j: var(--press, 0);
  --not-j: calc(1 - var(--j));
  z-index: var(--i);
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 15%;
  background: var(--v2-color-white-bg);
  font-size: 2.5rem;
  cursor: pointer;
}
body.tern-theme-v2 button::after {
  filter: Contrast(0) Sepia(var(--i)) Hue-Rotate(calc(var(--hue) - 50deg)) Saturate(5) Opacity(calc(var(--i) + .21*var(--not-i))) Drop-Shadow(1px 1px hsla(0, 0%, 100%, var(--not-i)));
  transition: filter 0.3s;
}
body.tern-theme-v2 button:focus {
  outline: none;
}
body.tern-theme-v2 button:hover,
body.tern-theme-v2 button:focus {
  --light: 1;
}
body.tern-theme-v2 button:active {
  --press: 1;
}
body.tern-theme-v2 > header {
  left: 0;
  border-bottom: none;
  background: transparent;
  padding: 30px 35px;
}
body.tern-theme-v2 > header > img {
  width: 61.55px;
  height: 40px;
}
body.tern-theme-v2 > main {
  position: fixed;
}
body.tern-theme-v2 div.loading {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  width: 1.56rem;
  height: 1.56rem;
  border-radius: 50%;
  border: 5px solid blue;
  border-bottom: 5px solid transparent;
  background-color: transparent;
  animation: loadingRotate 1s linear infinite;
  z-index: 1000;
}
body.tern-theme-v2 div.loading.show {
  display: block;
}
@keyframes loadingRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(359deg);
  }
}
body div.theme-v2-container {
  display: flex;
  height: calc(100vh);
}
body div.theme-v2-container section.theme-v2-section-welcome {
  background-color: var(--v2-color-wel-bg);
  padding-top: 50px;
  width: 40vw;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-texts {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-texts p {
  margin: 0px;
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.02rem;
  color: black;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-images {
  display: flex;
  justify-content: center;
  height: 300px;
  width: 300px;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-images img {
  position: absolute;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-images img.wel-img-1 {
  z-index: 100;
  margin-right: 120px;
  margin-top: 10px;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-images img.wel-img-2 {
  margin-left: 120px;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-images img.wel-img-3 {
  margin-top: 300px;
  margin-right: 60px;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-images img.wel-img-4 {
  margin-top: 300px;
}
body div.theme-v2-container section.theme-v2-section-welcome div.theme-v2-images img.wel-img-5 {
  margin-top: 300px;
  margin-left: 40px;
}
body div.theme-v2-container section.theme-v2-section-container {
  width: 60vw;
  box-sizing: border-box;
  padding: 99px 50px;
  display: flex;
  flex-flow: column;
  align-items: center;
  overflow: scroll;
}
body div.theme-v2-container section.theme-v2-section-container::-webkit-scrollbar {
  width: 0px;
}
body div.theme-v2-container section.theme-v2-section-container br.mob-br {
  display: none;
}
body div.theme-v2-container section.theme-v2-section-container br.pc-br {
  display: block;
}
body div.theme-v2-container section.theme-v2-section-container button {
  width: 174px;
  height: 45px;
  background: var(--v2-color-blue);
  border-radius: 5px;
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 22px;
  text-align: center;
  color: var(--v2-color-bt-white);
  border: none;
  cursor: pointer;
  margin-top: 30px;
}
body div.theme-v2-container section.theme-v2-section-container input {
  background: white;
  border: 1px solid var(--v2-color-border-white);
  outline: none;
  border-radius: 4px;
  height: 52px;
  box-sizing: border-box;
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 14px 16px;
  width: 40vw;
}
body div.theme-v2-container section.theme-v2-section-container input.field-error {
  border: 1px solid var(--v2-color-border-red);
}
body div.theme-v2-container section.theme-v2-section-container input:-internal-autofill-selected {
  background-color: white !important;
}
body div.theme-v2-container section.theme-v2-section-container input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
}
body div.theme-v2-container section.theme-v2-section-container img.pwdEye {
  width: 20px;
  height: 20px;
  position: absolute;
  margin-top: 40px;
  margin-left: calc(40vw - 30px);
}
body div.theme-v2-container section.theme-v2-section-container label {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  margin-bottom: 7px;
  color: var(--v2-color-label-gray);
}
body div.theme-v2-container section.theme-v2-section-container div.theme-v2-errors ul li {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  color: var(--v2-color-error-red);
}
body div.theme-v2-container section.theme-v2-section-container div.account-tip {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  margin-top: 30px;
  color: black;
}
body div.theme-v2-container section.theme-v2-section-container div.account-tip a {
  color: var(--v2-color-blue);
}
body div.theme-v2-container section.theme-v2-section-container div.other-login {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: center;
  color: var(--v2-color-other-gray);
  margin-top: 56px;
}
body div.theme-v2-container section.theme-v2-section-container div.other-login a {
  color: var(--v2-color-blue);
}
body div.theme-v2-container section.theme-v2-section-container div.google-login {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  color: var(--v2-color-google-dark);
  border: 1.5px solid var(--v2-color-border-white);
  border-radius: 10px;
  width: 20vw;
  height: 48px;
  display: flex;
  align-items: center;
  margin-top: 26px;
  cursor: pointer;
}
body div.theme-v2-container section.theme-v2-section-container div.google-login img {
  width: 15px;
  height: 15px;
  padding: 5px;
}
body div.theme-v2-container section.theme-v2-section-container div.google-login div {
  align-self: center;
  width: calc(20vw - 40px);
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
}
body div.theme-v2-container section.theme-v2-section-container div.theme-v2-user-term {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.87rem;
  line-height: 17px;
  margin-top: 15px;
  color: var(--v2-color-label-gray);
}
body div.theme-v2-container section.theme-v2-section-container div.theme-v2-user-term a {
  color: var(--v2-color-blue);
}
body div.theme-v2-container section.theme-v2-section-container div.theme-v2-container-field {
  display: flex;
  flex-flow: column;
  margin-top: 0px;
}
body div.theme-v2-container section.theme-v2-section-container div.name-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  width: 40vw;
}
body div.theme-v2-container section.theme-v2-section-container div.name-wrapper div.theme-v2-container-field {
  width: 18vw;
}
body div.theme-v2-container section.theme-v2-section-container div.name-wrapper div.theme-v2-container-field input {
  width: 18vw;
}
body div.theme-v2-container section.theme-v2-section-container h1 {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 2.0625rem;
  line-height: 40px;
  text-align: left;
  letter-spacing: -0.02rem;
  color: black;
  margin-bottom: 0px;
  margin-top: 123px;
}
body div.theme-v2-container section.theme-v2-section-container h2 {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 23px;
  letter-spacing: -0.02rem;
  color: black;
  margin-top: 56px;
  margin-bottom: 0px;
  width: 40vw;
}
body div.theme-v2-container section.theme-v2-section-container h3 {
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  color: black;
  margin-top: 6px;
  margin-bottom: 0px;
  width: 40vw;
}

@media screen and (max-width: 600px) {
  > header {
    left: 0;
    border-bottom: none;
    background: transparent;
    padding: 30px 37px;
  }
  > header > img {
    width: 61.55px;
    height: 40px;
  }

  body.tern-theme-v2 > header {
    left: 0;
    border-bottom: none;
    background: transparent;
    padding: 20px;
  }
  body.tern-theme-v2 > main {
    position: fixed;
  }
  body div.theme-v2-container {
    display: flex;
    height: calc(100vh);
  }
  body div.theme-v2-container section.theme-v2-section-welcome {
    display: none;
  }
  body div.theme-v2-container section.theme-v2-section-container {
    width: 100vw;
    overflow: scroll;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  body div.theme-v2-container section.theme-v2-section-container button {
    width: 90vw;
    margin-top: 30px;
  }
  body div.theme-v2-container section.theme-v2-section-container br.mob-br {
    display: block;
  }
  body div.theme-v2-container section.theme-v2-section-container br.pc-br {
    display: none;
  }
  body div.theme-v2-container section.theme-v2-section-container input {
    width: 90vw;
  }
  body div.theme-v2-container section.theme-v2-section-container img.pwdEye {
    width: 20px;
    height: 20px;
    position: absolute;
    margin-top: 40px;
    margin-left: calc(90vw - 30px);
  }
  body div.theme-v2-container section.theme-v2-section-container label {
    color: var(--v2-color-label-gray);
  }
  body div.theme-v2-container section.theme-v2-section-container div {
    width: 90vw;
  }
  body div.theme-v2-container section.theme-v2-section-container div.account-tip {
    color: black;
  }
  body div.theme-v2-container section.theme-v2-section-container div.account-tip a {
    color: var(--v2-color-blue);
  }
  body div.theme-v2-container section.theme-v2-section-container div.other-login {
    display: none;
  }
  body div.theme-v2-container section.theme-v2-section-container div.google-login {
    display: none;
  }
  body div.theme-v2-container section.theme-v2-section-container div.theme-v2-user-term {
    margin-top: 30px;
  }
  body div.theme-v2-container section.theme-v2-section-container div.theme-v2-user-term a {
    color: var(--v2-color-blue);
  }
  body div.theme-v2-container section.theme-v2-section-container div.theme-v2-container-field {
    display: flex;
    flex-flow: column;
    margin-top: 10px;
  }
  body div.theme-v2-container section.theme-v2-section-container div.name-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin-top: 20px;
    width: 90vw;
  }
  body div.theme-v2-container section.theme-v2-section-container div.name-wrapper div.theme-v2-container-field {
    width: 90vw;
  }
  body div.theme-v2-container section.theme-v2-section-container div.name-wrapper div.theme-v2-container-field input {
    width: 90vw;
  }
  body div.theme-v2-container section.theme-v2-section-container h1 {
    margin-top: 107px;
  }
  body div.theme-v2-container section.theme-v2-section-container h2 {
    width: 100vw;
    margin-left: 6vw;
  }
  body div.theme-v2-container section.theme-v2-section-container h3 {
    width: 100vw;
    margin-left: 6vw;
  }
}
body div.theme-v2-container.theme-v2-signin {
  display: flex;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container {
  flex-direction: column;
  display: flex;
  align-items: center;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > h1 {
  margin-bottom: 48px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div {
  display: flex;
  flex-direction: row;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div > div.other-signin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 64px;
  background: var(--v2-color-lightgray);
  border-radius: 5px;
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 22px;
  text-align: center;
  color: var(--v2-color-bt-white);
  border: none;
  cursor: pointer;
  margin: 15px 10px;
  box-shadow: none;
  border-radius: 13px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.other-sign-container {
  margin-top: 48px;
  display: none;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.other-login {
  font-size: 1.25rem;
  color: var(--v2-color-text-lightgray);
  opacity: 0.35;
  margin-top: 33px;
  margin-bottom: 33px;
  display: none;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.theme-v2-container-field {
  width: 388px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div > button.sign-in {
  width: 388px;
  height: 56px;
  border-radius: 100px;
  color: white;
  font-size: 1rem;
  margin-top: 0px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div > button.sign-in:hover, body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div > button.sign-in:focus {
  opacity: 0.6;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div > button.sign-in:active {
  opacity: 0.8;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.account-tip {
  width: 388px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.tern-policy {
  width: 60vw;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 48px;
  position: absolute;
  bottom: 0px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.tern-policy a {
  font-size: 1rem;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.account-tip {
  display: none;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  color: var(--v2-color-gray3);
  font-family: var(--font-v2-sans);
  font-size: 1.123rem;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.account-tip a {
  color: var(--v2-color-dark2);
  font-style: normal;
  font-weight: bold;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.account-tip a h1 {
  font-size: 1.123rem;
  margin-top: 0px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.account-tip a strong {
  font-family: var(--font-v2-sans);
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.theme-v2-checkbox {
  width: 388px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: right;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.theme-v2-checkbox > a {
  display: none;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div a {
  color: var(--v2-color-gray2);
  opacity: 0.7;
  text-decoration: none;
  font-size: 1rem;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div a:link {
  text-decoration: none;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container h3 {
  margin-bottom: 56px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container div.theme-v2-checkbox {
  display: flex;
  width: 388px;
  flex-flow: row;
  align-items: center;
  justify-content: end;
  margin-top: 0px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container div.theme-v2-checkbox input {
  padding: 0;
  margin: 0;
  margin-right: 10px;
  width: 20px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container div.theme-v2-checkbox div {
  width: 20vw;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: start;
  font-family: var(--font-v2-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 17px;
  color: #0F172A;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-welcome > div.theme-v2-images > img.wel-img-cards {
  width: 317px;
  height: 317px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-welcome > div.theme-v2-texts > h1 {
  color: white;
  font-size: 2.95875rem;
  font-style: normal;
  font-weight: 700;
  margin: 0px;
  margin-top: 41px;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-welcome > div.theme-v2-texts > p {
  color: var(--v2-color-text-gray);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}
body div.theme-v2-container.theme-v2-signin section.theme-v2-section-welcome > div.theme-v2-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 182px;
  height: 76px;
  background-color: var(--v2-color-white-bg);
  box-shadow: 0px 40px 32px -24px rgba(15, 15, 15, 0.12);
  border-radius: 19px;
  position: absolute;
  bottom: 120px;
}

@media screen and (max-width: 600px) {
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container {
    overflow-x: hidden;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div {
    justify-content: center;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.tern-policy {
    position: relative;
    flex-flow: column;
    justify-content: center;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.account-tip {
    margin-top: 25px;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.theme-v2-checkbox {
    width: 100%;
    padding: 0px 20px;
    font-family: var(--font-v2-sans);
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.theme-v2-checkbox > a {
    margin-right: 20px;
    margin-top: 10px;
    display: none;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.theme-v2-container-field {
    margin-top: 40px;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.other-sign-container {
    display: none;
    flex-flow: column;
    margin-top: 23px;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div.other-login {
    justify-content: center;
    margin: 24px 0px;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container > div > div.other-signin {
    flex-flow: row;
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0px;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container div.theme-v2-checkbox div {
    width: 40vw;
  }
  body div.theme-v2-container.theme-v2-signin section.theme-v2-section-container input {
    height: 64px;
    margin: 10px 0px;
  }
}