:root {
  --site-container-width: 1600px;
  --site-inner-width: 1440px;
}

.your-account input {
  color-scheme: dark;
}
.your-account.promotion-card {
  padding: 24px 32px;
}
.your-account.promotion-card .card {
  background-color: hsl(222, 62%, 16%);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.your-account.promotion-card h2 {
  color: hsl(182, 79%, 50%);
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}
.your-account.promotion-card p {
  margin: 8px 0 24px 0;
}
.your-account.promotion-card .progressbar {
  height: 8px;
  width: 100%;
  overflow: hidden;
  background: hsla(182, 79%, 50%, 0.2);
  border-radius: 2rem;
  margin-top: 16px;
  margin-bottom: 16px;
}
.your-account.promotion-card .button {
  color: hsl(182, 79%, 10%);
  background-color: hsl(182, 79%, 50%);
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.your-account .field.date .fa-calendar-week {
  cursor: pointer;
}
.your-account .field.password .fa-eye,
.your-account .field.password .fa-eye-slash {
  cursor: pointer;
}
.your-account .grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 8px;
}
.your-account .button {
  background-color: hsl(222, 62%, 16%);
  border-radius: 24px;
  border: 1px solid hsl(222, 62%, 16%);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: hsl(222, 62%, 95%);
  padding: 8px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
.your-account .button span {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  text-align: left;
}
.your-account .button i {
  margin-right: 8px;
}
.your-account a.button {
  width: auto;
}
.your-account .logout {
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1 !important;
}

.your-account-page .site-main-content .entry-content {
  background: #06152d;
  right: 0;
  top: 0;
  padding: 50px 50px 20px 20px;
  position: absolute;
  min-height: 100vh;
  width: 434px;
  opacity: 1;
  z-index: 99999;
}
@media (max-width: 767px) {
  .your-account-page .site-main-content .entry-content {
    width: -webkit-fill-available;
    padding-left: 50px;
  }
}
.your-account-page .site-main-content footer {
  opacity: 0.2;
  pointer-events: none;
}

.your-account-close {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9999;
}
.your-account-close a {
  display: block;
  color: #F0F3FA;
  text-decoration: none;
  text-align: center;
}
.your-account-close a span {
  display: inline-block;
  vertical-align: middle;
}
.your-account-close a span.icon-close {
  line-height: 20px;
  font-size: 14px;
  border-radius: 39px;
  width: 39px;
  height: 39px;
  background-color: #0A1329;
}
.your-account-close a span.icon-close i {
  line-height: 39px;
}
.your-account-close a span.text-close {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 900;
  font-size: 12px;
  font-style: italic;
  line-height: 18px;
  text-transform: uppercase;
  margin-left: 8px;
}

.your-account.account-details-general {
  padding: 24px 32px;
}
.your-account.account-details-general .grid {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 16px;
  margin: 8px 0 0 0;
}
.your-account.account-details-general .grid strong {
  font-size: 14px;
  font-weight: 600;
}
.your-account.account-details-general .grid div {
  font-size: 14px;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.your-account.account-details-verification {
  padding: 24px 32px;
}
.your-account.account-details-verification .grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin: 8px -16px 24px -16px;
}
.your-account.account-details-verification .grid .card {
  background-color: hsl(222, 62%, 16%);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.your-account.account-details-verification .grid .card h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.your-account.account-details-verification .grid .card hr {
  border: 0;
  border-top: 1px solid hsla(222, 62%, 95%, 0.14);
  margin: 8px 0;
}
.your-account.account-details-verification .grid .card p {
  font-size: 14px;
  margin: 16px 0;
}
.your-account.account-details-verification .grid .card .button {
  color: hsl(275, 65%, 95%);
  background-color: hsl(275, 65%, 51%);
  border-radius: 24px;
  border: 1px solid hsla(275, 65%, 95%, 0.1);
  -webkit-box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
          box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin: 0 auto;
  padding: 8px 16px;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.your-account.account-details-marketing {
  padding: 24px 32px;
}
.your-account.account-details-marketing form {
  margin-bottom: 24px;
}
.your-account.account-details-marketing fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
.your-account.account-details-marketing fieldset legend {
  padding: 0;
}
.your-account.account-details-marketing .inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.your-account.account-details-marketing .inline-flex .field.checkbox {
  aspect-ratio: 1;
  margin: 8px;
  color: hsl(222, 62%, 95%);
  background-color: hsl(222, 62%, 16%);
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  border-radius: 6.6666666667px;
  position: relative;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 0;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
}
.your-account.account-details-marketing .inline-flex .field.checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: initial;
  color: hsl(222, 62%, 95%);
  cursor: pointer;
}
.your-account.account-details-marketing .inline-flex .field.checkbox input:before {
  visibility: hidden;
}
.your-account.account-details-marketing .inline-flex .field.checkbox input:checked:before {
  visibility: initial;
}
.your-account.account-details-marketing .inline-flex label {
  color: hsl(222, 62%, 95%);
  border: 0;
  font-size: 14px;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  overflow-x: hidden;
  padding: 8px;
}
.your-account.account-details-marketing .button {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px 0;
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid hsla(182, 79%, 10%, 0.1);
  color: hsl(182, 79%, 10%);
  background-color: hsl(182, 79%, 50%);
  -webkit-box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
          box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
}
.your-account.account-details-mobile-phone, .your-account.account-details-change-password, .your-account.account-details-two-factor-auth, .your-account.account-details-verification-address, .your-account.account-details-verification-identity, .your-account.account-details-verification-payment {
  padding: 24px 32px;
}
.your-account.account-details-mobile-phone form, .your-account.account-details-change-password form, .your-account.account-details-two-factor-auth form, .your-account.account-details-verification-address form, .your-account.account-details-verification-identity form, .your-account.account-details-verification-payment form {
  margin-bottom: 24px;
}
.your-account.account-details-mobile-phone label, .your-account.account-details-change-password label, .your-account.account-details-two-factor-auth label, .your-account.account-details-verification-address label, .your-account.account-details-verification-identity label, .your-account.account-details-verification-payment label {
  color: hsl(222, 62%, 95%);
  margin: 4px 4px 4px 0;
  padding: 4px 8px;
  border-radius: 1.6em;
  border: 0;
  font-weight: 600;
}
.your-account.account-details-mobile-phone .grid, .your-account.account-details-change-password .grid, .your-account.account-details-two-factor-auth .grid, .your-account.account-details-verification-address .grid, .your-account.account-details-verification-identity .grid, .your-account.account-details-verification-payment .grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.your-account.account-details-mobile-phone .color-success, .your-account.account-details-change-password .color-success, .your-account.account-details-two-factor-auth .color-success, .your-account.account-details-verification-address .color-success, .your-account.account-details-verification-identity .color-success, .your-account.account-details-verification-payment .color-success {
  color: hsl(158, 64%, 52%);
}
.your-account.account-details-mobile-phone .color-error, .your-account.account-details-change-password .color-error, .your-account.account-details-two-factor-auth .color-error, .your-account.account-details-verification-address .color-error, .your-account.account-details-verification-identity .color-error, .your-account.account-details-verification-payment .color-error {
  color: hsl(352, 74%, 57%);
}
.your-account.account-details-mobile-phone .field, .your-account.account-details-change-password .field, .your-account.account-details-two-factor-auth .field, .your-account.account-details-verification-address .field, .your-account.account-details-verification-identity .field, .your-account.account-details-verification-payment .field {
  color: hsl(222, 62%, 95%);
  background-color: hsl(222, 62%, 16%);
  margin: 8px;
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  border-radius: 6.6666666667px;
  line-height: 1.8;
  width: 100%;
}
.your-account.account-details-mobile-phone .field input, .your-account.account-details-change-password .field input, .your-account.account-details-two-factor-auth .field input, .your-account.account-details-verification-address .field input, .your-account.account-details-verification-identity .field input, .your-account.account-details-verification-payment .field input {
  border: 0;
  color: hsl(222, 62%, 95%);
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
}
.your-account.account-details-mobile-phone .field input:focus-visible, .your-account.account-details-change-password .field input:focus-visible, .your-account.account-details-two-factor-auth .field input:focus-visible, .your-account.account-details-verification-address .field input:focus-visible, .your-account.account-details-verification-identity .field input:focus-visible, .your-account.account-details-verification-payment .field input:focus-visible {
  outline: 0;
}
.your-account.account-details-mobile-phone .field + .error, .your-account.account-details-change-password .field + .error, .your-account.account-details-two-factor-auth .field + .error, .your-account.account-details-verification-address .field + .error, .your-account.account-details-verification-identity .field + .error, .your-account.account-details-verification-payment .field + .error {
  display: none;
  color: hsl(352, 74%, 57%);
  font-weight: normal;
}
.your-account.account-details-mobile-phone .field + .error > span > span, .your-account.account-details-change-password .field + .error > span > span, .your-account.account-details-two-factor-auth .field + .error > span > span, .your-account.account-details-verification-address .field + .error > span > span, .your-account.account-details-verification-identity .field + .error > span > span, .your-account.account-details-verification-payment .field + .error > span > span {
  display: none;
}
.your-account.account-details-mobile-phone .field:not(.switch) i.fa-check,
.your-account.account-details-mobile-phone .field:not(.switch) i.fa-xmark, .your-account.account-details-change-password .field:not(.switch) i.fa-check,
.your-account.account-details-change-password .field:not(.switch) i.fa-xmark, .your-account.account-details-two-factor-auth .field:not(.switch) i.fa-check,
.your-account.account-details-two-factor-auth .field:not(.switch) i.fa-xmark, .your-account.account-details-verification-address .field:not(.switch) i.fa-check,
.your-account.account-details-verification-address .field:not(.switch) i.fa-xmark, .your-account.account-details-verification-identity .field:not(.switch) i.fa-check,
.your-account.account-details-verification-identity .field:not(.switch) i.fa-xmark, .your-account.account-details-verification-payment .field:not(.switch) i.fa-check,
.your-account.account-details-verification-payment .field:not(.switch) i.fa-xmark {
  position: absolute;
  right: 16px;
  display: none;
}
.your-account.account-details-mobile-phone .button, .your-account.account-details-change-password .button, .your-account.account-details-two-factor-auth .button, .your-account.account-details-verification-address .button, .your-account.account-details-verification-identity .button, .your-account.account-details-verification-payment .button {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px 0;
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid hsla(182, 79%, 10%, 0.1);
  color: hsl(182, 79%, 10%);
  background-color: hsl(182, 79%, 50%);
  -webkit-box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
          box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
}
.your-account.account-details-change-password .field.password i {
  cursor: pointer;
  pointer-events: auto;
}
.your-account.account-details-change-password .field:not(.switch) i {
  position: absolute;
  line-height: inherit;
  top: 8px;
  right: 16px;
}
.your-account.account-details-change-password .hidden {
  visibility: hidden;
}
.your-account .documents-status {
  padding-bottom: 24px;
}

.your-account.signup-form, .your-account.signup-submit, .your-account.no-submit, .your-account.login-form, .your-account.login-submit, .your-account.change-submit, .your-account.change-password, .your-account.forgot-submit, .your-account.forgot-password {
  padding: 24px 32px 0 32px;
}
.your-account.signup-form label, .your-account.signup-submit label, .your-account.no-submit label, .your-account.login-form label, .your-account.login-submit label, .your-account.change-submit label, .your-account.change-password label, .your-account.forgot-submit label, .your-account.forgot-password label {
  color: hsl(222, 62%, 95%);
  margin: 4px 4px 4px 0;
  padding: 4px 8px;
  border-radius: 1.6em;
  border: 0;
  font-weight: 600;
}
.your-account.signup-form .grid, .your-account.signup-submit .grid, .your-account.no-submit .grid, .your-account.login-form .grid, .your-account.login-submit .grid, .your-account.change-submit .grid, .your-account.change-password .grid, .your-account.forgot-submit .grid, .your-account.forgot-password .grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.your-account.signup-form .color-success, .your-account.signup-submit .color-success, .your-account.no-submit .color-success, .your-account.login-form .color-success, .your-account.login-submit .color-success, .your-account.change-submit .color-success, .your-account.change-password .color-success, .your-account.forgot-submit .color-success, .your-account.forgot-password .color-success {
  color: hsl(158, 64%, 52%);
}
.your-account.signup-form .color-error, .your-account.signup-submit .color-error, .your-account.no-submit .color-error, .your-account.login-form .color-error, .your-account.login-submit .color-error, .your-account.change-submit .color-error, .your-account.change-password .color-error, .your-account.forgot-submit .color-error, .your-account.forgot-password .color-error {
  color: hsl(352, 74%, 57%);
}
.your-account.signup-form .field, .your-account.signup-submit .field, .your-account.no-submit .field, .your-account.login-form .field, .your-account.login-submit .field, .your-account.change-submit .field, .your-account.change-password .field, .your-account.forgot-submit .field, .your-account.forgot-password .field {
  color: hsl(222, 62%, 95%);
  background-color: hsl(222, 62%, 16%);
  margin: 8px;
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  border-radius: 6.6666666667px;
  line-height: 1.8;
  width: 100%;
}
.your-account.signup-form .field input, .your-account.signup-submit .field input, .your-account.no-submit .field input, .your-account.login-form .field input, .your-account.login-submit .field input, .your-account.change-submit .field input, .your-account.change-password .field input, .your-account.forgot-submit .field input, .your-account.forgot-password .field input {
  border: 0;
  color: hsl(222, 62%, 95%);
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  width: 100%;
}
.your-account.signup-form .field input:focus-visible, .your-account.signup-submit .field input:focus-visible, .your-account.no-submit .field input:focus-visible, .your-account.login-form .field input:focus-visible, .your-account.login-submit .field input:focus-visible, .your-account.change-submit .field input:focus-visible, .your-account.change-password .field input:focus-visible, .your-account.forgot-submit .field input:focus-visible, .your-account.forgot-password .field input:focus-visible {
  outline: 0;
}
.your-account.signup-form .field select, .your-account.signup-submit .field select, .your-account.no-submit .field select, .your-account.login-form .field select, .your-account.login-submit .field select, .your-account.change-submit .field select, .your-account.change-password .field select, .your-account.forgot-submit .field select, .your-account.forgot-password .field select {
  border: 0;
  outline: 0;
  color: hsl(222, 62%, 95%);
  cursor: pointer;
  font-size: 14px;
  padding-right: 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: hsl(222, 62%, 16%);
  width: 100%;
}
.your-account.signup-form .field.select i, .your-account.signup-submit .field.select i, .your-account.no-submit .field.select i, .your-account.login-form .field.select i, .your-account.login-submit .field.select i, .your-account.change-submit .field.select i, .your-account.change-password .field.select i, .your-account.forgot-submit .field.select i, .your-account.forgot-password .field.select i {
  opacity: 0.5;
  position: absolute;
  line-height: 1.8;
  right: 16px;
  pointer-events: none;
}
.your-account.signup-form .inline-flex, .your-account.signup-submit .inline-flex, .your-account.no-submit .inline-flex, .your-account.login-form .inline-flex, .your-account.login-submit .inline-flex, .your-account.change-submit .inline-flex, .your-account.change-password .inline-flex, .your-account.forgot-submit .inline-flex, .your-account.forgot-password .inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.your-account.signup-form .inline-flex .field.checkbox, .your-account.signup-submit .inline-flex .field.checkbox, .your-account.no-submit .inline-flex .field.checkbox, .your-account.login-form .inline-flex .field.checkbox, .your-account.login-submit .inline-flex .field.checkbox, .your-account.change-submit .inline-flex .field.checkbox, .your-account.change-password .inline-flex .field.checkbox, .your-account.forgot-submit .inline-flex .field.checkbox, .your-account.forgot-password .inline-flex .field.checkbox {
  aspect-ratio: 1;
  margin: 8px;
  color: hsl(222, 62%, 95%);
  background-color: hsl(222, 62%, 16%);
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  border-radius: 6.6666666667px;
  position: relative;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 0;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
}
.your-account.signup-form .inline-flex .field.checkbox input, .your-account.signup-submit .inline-flex .field.checkbox input, .your-account.no-submit .inline-flex .field.checkbox input, .your-account.login-form .inline-flex .field.checkbox input, .your-account.login-submit .inline-flex .field.checkbox input, .your-account.change-submit .inline-flex .field.checkbox input, .your-account.change-password .inline-flex .field.checkbox input, .your-account.forgot-submit .inline-flex .field.checkbox input, .your-account.forgot-password .inline-flex .field.checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: initial;
  color: hsl(222, 62%, 95%);
  cursor: pointer;
}
.your-account.signup-form .inline-flex .field.checkbox input:before, .your-account.signup-submit .inline-flex .field.checkbox input:before, .your-account.no-submit .inline-flex .field.checkbox input:before, .your-account.login-form .inline-flex .field.checkbox input:before, .your-account.login-submit .inline-flex .field.checkbox input:before, .your-account.change-submit .inline-flex .field.checkbox input:before, .your-account.change-password .inline-flex .field.checkbox input:before, .your-account.forgot-submit .inline-flex .field.checkbox input:before, .your-account.forgot-password .inline-flex .field.checkbox input:before {
  visibility: hidden;
}
.your-account.signup-form .inline-flex .field.checkbox input:checked:before, .your-account.signup-submit .inline-flex .field.checkbox input:checked:before, .your-account.no-submit .inline-flex .field.checkbox input:checked:before, .your-account.login-form .inline-flex .field.checkbox input:checked:before, .your-account.login-submit .inline-flex .field.checkbox input:checked:before, .your-account.change-submit .inline-flex .field.checkbox input:checked:before, .your-account.change-password .inline-flex .field.checkbox input:checked:before, .your-account.forgot-submit .inline-flex .field.checkbox input:checked:before, .your-account.forgot-password .inline-flex .field.checkbox input:checked:before {
  visibility: initial;
}
.your-account.signup-form .inline-flex label, .your-account.signup-submit .inline-flex label, .your-account.no-submit .inline-flex label, .your-account.login-form .inline-flex label, .your-account.login-submit .inline-flex label, .your-account.change-submit .inline-flex label, .your-account.change-password .inline-flex label, .your-account.forgot-submit .inline-flex label, .your-account.forgot-password .inline-flex label {
  color: hsl(222, 62%, 95%);
  border: 0;
  font-size: 14px;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  overflow-x: hidden;
  padding: 8px;
}
.your-account.signup-form .field + .error, .your-account.signup-submit .field + .error, .your-account.no-submit .field + .error, .your-account.login-form .field + .error, .your-account.login-submit .field + .error, .your-account.change-submit .field + .error, .your-account.change-password .field + .error, .your-account.forgot-submit .field + .error, .your-account.forgot-password .field + .error {
  display: none;
  color: hsl(352, 74%, 57%);
  font-weight: normal;
}
.your-account.signup-form .field + .error > span > span, .your-account.signup-submit .field + .error > span > span, .your-account.no-submit .field + .error > span > span, .your-account.login-form .field + .error > span > span, .your-account.login-submit .field + .error > span > span, .your-account.change-submit .field + .error > span > span, .your-account.change-password .field + .error > span > span, .your-account.forgot-submit .field + .error > span > span, .your-account.forgot-password .field + .error > span > span {
  display: none;
}
.your-account.signup-form .field:not(.switch) i.fa-check,
.your-account.signup-form .field:not(.switch) i.fa-xmark, .your-account.signup-submit .field:not(.switch) i.fa-check,
.your-account.signup-submit .field:not(.switch) i.fa-xmark, .your-account.no-submit .field:not(.switch) i.fa-check,
.your-account.no-submit .field:not(.switch) i.fa-xmark, .your-account.login-form .field:not(.switch) i.fa-check,
.your-account.login-form .field:not(.switch) i.fa-xmark, .your-account.login-submit .field:not(.switch) i.fa-check,
.your-account.login-submit .field:not(.switch) i.fa-xmark, .your-account.change-submit .field:not(.switch) i.fa-check,
.your-account.change-submit .field:not(.switch) i.fa-xmark, .your-account.change-password .field:not(.switch) i.fa-check,
.your-account.change-password .field:not(.switch) i.fa-xmark, .your-account.forgot-submit .field:not(.switch) i.fa-check,
.your-account.forgot-submit .field:not(.switch) i.fa-xmark, .your-account.forgot-password .field:not(.switch) i.fa-check,
.your-account.forgot-password .field:not(.switch) i.fa-xmark {
  position: absolute;
  right: 16px;
  display: none;
}
.your-account.signup-form .button, .your-account.signup-submit .button, .your-account.no-submit .button, .your-account.login-form .button, .your-account.login-submit .button, .your-account.change-submit .button, .your-account.change-password .button, .your-account.forgot-submit .button, .your-account.forgot-password .button {
  cursor: pointer;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px 0;
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid hsla(182, 79%, 10%, 0.1);
  color: hsl(182, 79%, 10%);
  background-color: hsl(182, 79%, 50%);
  -webkit-box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
          box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
}
.your-account.signup-form .button.back, .your-account.signup-submit .button.back, .your-account.no-submit .button.back, .your-account.login-form .button.back, .your-account.login-submit .button.back, .your-account.change-submit .button.back, .your-account.change-password .button.back, .your-account.forgot-submit .button.back, .your-account.forgot-password .button.back {
  color: hsl(182, 79%, 50%);
  background-color: hsla(222, 62%, 7%, 0.26);
  border: 1px solid hsla(222, 62%, 95%, 0.1);
}
.your-account.signup-form .field.password i, .your-account.signup-submit .field.password i, .your-account.no-submit .field.password i, .your-account.login-form .field.password i, .your-account.login-submit .field.password i, .your-account.change-submit .field.password i, .your-account.change-password .field.password i, .your-account.forgot-submit .field.password i, .your-account.forgot-password .field.password i {
  cursor: pointer;
  pointer-events: auto;
}
.your-account.signup-form .field:not(.switch) i, .your-account.signup-submit .field:not(.switch) i, .your-account.no-submit .field:not(.switch) i, .your-account.login-form .field:not(.switch) i, .your-account.login-submit .field:not(.switch) i, .your-account.change-submit .field:not(.switch) i, .your-account.change-password .field:not(.switch) i, .your-account.forgot-submit .field:not(.switch) i, .your-account.forgot-password .field:not(.switch) i {
  position: absolute;
  line-height: inherit;
  top: 8px;
  right: 16px;
}
.your-account.signup-form .hidden, .your-account.signup-submit .hidden, .your-account.no-submit .hidden, .your-account.login-form .hidden, .your-account.login-submit .hidden, .your-account.change-submit .hidden, .your-account.change-password .hidden, .your-account.forgot-submit .hidden, .your-account.forgot-password .hidden {
  visibility: hidden;
}
.your-account.signup-form .field.select {
  padding-left: 12px;
  padding-right: 20px;
}

.your-account.account-responsible-information .field.switch {
  background-color: transparent;
  position: relative;
  display: inline-block;
  margin: 8px;
  padding: 0;
  width: 3.8em;
  height: 2.4em;
  border-radius: 6.6666666667px;
  line-height: 1.8;
}
.your-account.account-responsible-information .field.switch input {
  width: 100%;
  height: 100%;
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  border-radius: 1.6em;
  background-color: #00e1e7;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
}
.your-account.account-responsible-information .field.switch input:not(:checked) {
  background-color: #061f42;
}
.your-account.account-responsible-information .field.switch input:not(:checked) + div .fab_ {
  background-color: #00e1e7;
}
.your-account.account-responsible-information .field.switch input + div {
  position: absolute;
  top: 0;
  width: inherit;
  height: inherit;
  pointer-events: none;
}
.your-account.account-responsible-information .field.switch input + div .fab_ {
  background-color: #061f42;
  border-radius: 100%;
  position: absolute;
  margin: 0.45em;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.75em;
  height: 1.75em;
  line-height: 1.75em;
}
.your-account.account-responsible-information .field.switch input + div .fab_:first-child {
  left: 1.6em;
  opacity: 0;
}
.your-account.account-responsible-information .field.switch input + div .fab_:last-child {
  right: 0;
  opacity: 1;
}
.your-account.account-responsible-information .field.switch input:not(:checked) + div .fab_:first-child {
  left: 0;
  opacity: 1;
}
.your-account.account-responsible-information .field.switch input:not(:checked) + div .fab_:last-child {
  right: 1.6em;
  opacity: 0;
}
.your-account.account-responsible-limit {
  padding: 24px 32px;
}
.your-account.account-responsible-limit form {
  margin-bottom: 24px;
}
.your-account.account-responsible-limit label {
  color: hsl(222, 62%, 95%);
  margin: 4px 4px 4px 0;
  padding: 4px 8px;
  border-radius: 1.6em;
  border: 0;
  font-weight: 600;
}
.your-account.account-responsible-limit .grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.your-account.account-responsible-limit .color-success {
  color: hsl(158, 64%, 52%);
}
.your-account.account-responsible-limit .color-error {
  color: hsl(352, 74%, 57%);
}
.your-account.account-responsible-limit .field {
  color: hsl(222, 62%, 95%);
  background-color: hsl(222, 62%, 16%);
  margin: 8px;
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  border-radius: 6.6666666667px;
  line-height: 1.8;
  width: 100%;
}
.your-account.account-responsible-limit .field input {
  border: 0;
  color: hsl(222, 62%, 95%);
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
}
.your-account.account-responsible-limit .field input:focus-visible {
  outline: 0;
}
.your-account.account-responsible-limit .field select {
  border: 0;
  outline: 0;
  color: hsl(222, 62%, 95%);
  cursor: pointer;
  font-size: 14px;
  padding-right: 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: hsl(222, 62%, 16%);
  width: 100%;
}
.your-account.account-responsible-limit .field.select i {
  opacity: 0.5;
  position: absolute;
  line-height: 1.8;
  right: 16px;
  pointer-events: none;
}
.your-account.account-responsible-limit .field + .error {
  display: none;
  color: hsl(352, 74%, 57%);
  font-weight: normal;
}
.your-account.account-responsible-limit .field + .error > span > span {
  display: none;
}
.your-account.account-responsible-limit .field:not(.switch) i.fa-check,
.your-account.account-responsible-limit .field:not(.switch) i.fa-xmark {
  position: absolute;
  right: 16px;
  display: none;
}
.your-account.account-responsible-limit .button {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px 0;
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid hsla(182, 79%, 10%, 0.1);
  color: hsl(182, 79%, 10%);
  background-color: hsl(182, 79%, 50%);
  -webkit-box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
          box-shadow: 0 2px 5px 0.09px rgba(0, 0, 0, 0.32);
}
.your-account.account-responsible-limit .current-limit {
  margin-bottom: 20px;
}
.your-account.account-responsible-limit .current-limit h6 {
  display: inline-block;
  margin-bottom: 0;
}
.your-account.account-responsible-limit .current-limit div {
  display: inline-block;
  margin-left: 5px;
}

.your-account.wallet-display-currency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 32px;
  width: 100%;
}
.your-account.wallet-display-currency .button span {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.your-account.wallet-display-currency .button i {
  margin-left: 8px;
}
.your-account.wallet-choose-currency .button-wrapper {
  margin: 16px 0;
}
.your-account.wallet-buttons {
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.your-account.wallet-buttons .deposit {
  background-color: hsl(71, 96%, 60%);
  color: hsl(71, 96%, 10%);
  display: inline-block;
}
.your-account.wallet-buttons .withdraw {
  background-color: hsl(222, 62%, 100%);
  color: hsl(222, 62%, 10%);
  display: inline-block;
}
.your-account.wallet-switch-currency-list .field.radio, .your-account.wallet-display-currency-list .field.radio {
  background-color: hsl(222, 62%, 16%);
  color: hsl(222, 62%, 95%);
  display: inline-block;
  border-radius: 1.6em;
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 0;
  margin: 8px 0;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
}
.your-account.wallet-switch-currency-list .field.radio input, .your-account.wallet-display-currency-list .field.radio input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: hsl(222, 62%, 95%);
  cursor: pointer;
  position: relative;
  top: 0;
  height: 1em;
}
.your-account.wallet-switch-currency-list .field.radio input::before, .your-account.wallet-display-currency-list .field.radio input::before {
  top: 0.5em;
  visibility: hidden;
}
.your-account.wallet-switch-currency-list .field.radio input:checked:before, .your-account.wallet-display-currency-list .field.radio input:checked:before {
  visibility: initial;
}
.your-account.wallet-switch-currency-list label, .your-account.wallet-display-currency-list label {
  border: 0;
}
.your-account.wallet-switch-currency-list label.headline, .your-account.wallet-display-currency-list label.headline {
  margin: 24px 0;
  display: inline-block;
}
.your-account.wallet-switch-currency-list .grid, .your-account.wallet-display-currency-list .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.your-account.wallet-switch-currency-list .grid label, .your-account.wallet-display-currency-list .grid label {
  margin: 8px 0;
}
.your-account.wallet-display-currency-fiat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.your-account.wallet-display-currency-fiat .field.switch {
  background-color: transparent;
  position: relative;
  display: inline-block;
  margin: 8px;
  padding: 0;
  width: 3.8em;
  height: 2.4em;
  border-radius: 6.6666666667px;
  line-height: 1.8;
}
.your-account.wallet-display-currency-fiat .field.switch input {
  width: 100%;
  height: 100%;
  border: 1px solid hsla(222, 62%, 95%, 0.1);
  border-radius: 1.6em;
  background-color: #00e1e7;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
}
.your-account.wallet-display-currency-fiat .field.switch input:not(:checked) {
  background-color: #061f42;
}
.your-account.wallet-display-currency-fiat .field.switch input:not(:checked) + div .fab_ {
  background-color: #00e1e7;
}
.your-account.wallet-display-currency-fiat .field.switch input + div {
  position: absolute;
  top: 0;
  width: inherit;
  height: inherit;
  pointer-events: none;
}
.your-account.wallet-display-currency-fiat .field.switch input + div .fab_ {
  background-color: #061f42;
  border-radius: 100%;
  position: absolute;
  margin: 0.45em;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.75em;
  height: 1.75em;
  line-height: 1.75em;
}
.your-account.wallet-display-currency-fiat .field.switch input + div .fab_:first-child {
  left: 1.6em;
  opacity: 0;
}
.your-account.wallet-display-currency-fiat .field.switch input + div .fab_:last-child {
  right: 0;
  opacity: 1;
}
.your-account.wallet-display-currency-fiat .field.switch input:not(:checked) + div .fab_:first-child {
  left: 0;
  opacity: 1;
}
.your-account.wallet-display-currency-fiat .field.switch input:not(:checked) + div .fab_:last-child {
  right: 1.6em;
  opacity: 0;
}
.your-account.wallet-deposit-payment .payment-container, .your-account.wallet-withdraw-payment .payment-container {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: hsl(222, 62%, 16%);
  border: 1px solid rgba(240, 243, 250, 0.05);
  border-radius: 50px;
  gap: 8px;
  height: auto;
  padding: 8px;
  width: 100%;
}
.your-account.wallet-deposit-payment .payment-container .payment-img, .your-account.wallet-withdraw-payment .payment-container .payment-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  padding: 8px 16px;
  background-color: hsl(222, 62%, 95%);
  height: 100%;
  width: 33%;
  max-width: 75px;
  max-height: 25px;
}
.your-account.wallet-deposit-payment .payment-container .payment-img img, .your-account.wallet-withdraw-payment .payment-container .payment-img img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.your-account.wallet-deposit-payment .payment-container .payment-text, .your-account.wallet-withdraw-payment .payment-container .payment-text {
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
}
.your-account.wallet-deposit-payment .payment-container .payment-text .truncate, .your-account.wallet-withdraw-payment .payment-container .payment-text .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.your-account.wallet-deposit-payment .payment-container .payment-text .payment-subtitle, .your-account.wallet-withdraw-payment .payment-container .payment-text .payment-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.5;
}
.your-account.wallet-deposit-payment .payment-container .payment-right, .your-account.wallet-withdraw-payment .payment-container .payment-right {
  opacity: 0.5;
  margin-left: auto;
}
.your-account hr {
  border: 0;
  border-top-color: hsla(222, 62%, 95%, 0.14);
  border-top-width: 1px;
  border-top-style: solid;
}
.your-account label {
  margin: 4px 0;
  padding: 3px 7px;
  border-radius: 1.6em;
  border: 1px solid hsl(222, 62%, 11%);
  font-weight: 600;
  font-size: 85%;
  color: hsl(222, 62%, 95%);
}
.your-account .currency-image {
  display: inline-block;
  margin-bottom: -4px;
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.your-account .space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.your-account .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
