/* Custom Styles */
html.veil-open,
body.veil-open {
  overflow: hidden !important;
  overflow-y: hidden !important;
  overflow: clip !important;
  overscroll-behavior: none !important;
}

body.veil-open {
  height: 100vh !important;
  height: 100dvh !important;
  position: fixed !important;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

html.veil-open {
  height: 100vh !important;
  height: 100dvh !important;
  scrollbar-gutter: auto !important;
}

html.veil-open::-webkit-scrollbar,
body.veil-open::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

html.veil-open .scroll_up,
body.veil-open .scroll_up,
html.veil-open #backToTopBtn,
body.veil-open #backToTopBtn {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html.veil-open body > *:not(.veil),
body.veil-open #mainContent {
  max-height: 100vh !important;
  max-height: 100dvh !important;
  overflow: hidden !important;
}

.veil {
  z-index: 999999;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.veil::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.veil .background {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

.veil .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  width: min(70vw, 920px);
  min-height: calc(100vh - 2rem);
  min-height: calc(100dvh - 2rem);
  margin: auto;
}

.veil .content .content-box {
  position: relative;
  display: block;
  z-index: 50;
  padding: 0 0 1.25rem;
  color: white;
  text-align: center;
  width: 100%;
  max-width: 70%;
}

.veil .content .content-box .content-wrapper {
  display: block;
  margin: 0 auto;
  width: min(65%, 680px);
}

.veil .content .content-box .content-title img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

.veil .content .content-box .content-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 1.5rem;
}

.veil .content .content-box .content-msg {
  display: inline-block;
  width: 100%;
  padding: 1.25rem 0;
  color: white;
  font-size: 1.1rem;
}

.veil .content .content-box .content-msg span {
  font-size: 2.1rem; /* 36px */
}

.veil .content .content-box .content-buttons {
  display: inline-block;
  width: 100%;
  margin: 0.75rem 0;
}

.veil .content .content-box .content-buttons .verify_button {
  font-weight: 600;
  color: white;
  font-size: 1.875rem;
  width: 100%;
  padding: 1.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #900000 0%, #ce0000 100%);
  border: 0;
  cursor: pointer;
}

.veil .content .content-box .content-buttons .verify_button:hover {
  background: linear-gradient(135deg, #ce0000 0%, #900000 100%);
}

.veil .content .content-box .content-buttons a {
  display: inline-block;
  color: white;
  font-size: 1.25rem; /* 20px */
  text-decoration: underline;
  background: transparent;
  transition: ease-in-out 150ms;
  padding-top: 0.625rem;
}

.veil .content .content-box .content-buttons a:hover {
  text-decoration: none;
}

.veil .content .content-box .content-footer {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.veil .content .content-box .content-footer p {
  margin: 0 0 0.75em;
  font-size: 0.75rem;
  line-height: 1rem;
}

.veil .content .content-box .content-footer a {
  color: white;
  text-decoration: underline;
  font-size: 0.75rem;
  line-height: 1rem;
}

.scroll_up {
  width: 1.875rem !important;
  height: 1.875rem !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  background-color: #900;
  z-index: 999999;
  padding: 0.45rem;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  right: 2.5rem;
  bottom: 2.5rem;
  position: fixed;
}

.scroll_up_icon {
  color: white;
  opacity: 1;
}

.hidden {
  display: none;
}

.pin-setup-veil .background {
  background: rgba(15, 16, 20, 0.68);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.pin-setup-questions-veil {
  align-items: flex-start;
  overflow: hidden !important;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
  padding-top: 4vh;
}

.pin-setup-questions-veil::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.pin-setup-questions-veil .content {
  align-items: flex-start;
  overflow: visible !important;
  min-height: auto;
  max-height: calc(100vh - 4vh);
  max-height: calc(100dvh - 4vh);
}

.pin-setup-questions-veil .content-box,
.pin-setup-questions-veil .content-wrapper,
.pin-setup-questions-veil .pin-setup-panel {
  overflow: visible;
}

.pin-setup-wrapper {
  width: min(100%, 680px);
}

.pin-setup-panel {
  background: #fff;
  color: #434a57;
  border-radius: 0;
  padding: 1.15rem 1.35rem 2rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
  text-align: center;
  font-size: 1.08rem;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.pin-setup-brand {
  text-align: center;
  margin-bottom: 0.95rem;
}

.pin-setup-brand img {
  display: inline-block;
  max-width: 270px;
  max-height: 72px;
  width: auto;
  height: auto;
}

.pin-setup-brand span {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pin-setup-title-main,
.pin-setup-panel h2 {
  margin-bottom: 1rem;
  color: #2f3642;
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.pin-setup-step-title {
  margin-bottom: 0.85rem;
  color: #4a5260;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.pin-setup-step-title-top {
  text-align: center;
}

.pin-setup-copy {
  margin-bottom: 1.1rem;
  color: #6d7480;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.pin-setup-copy-intro {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}

.pin-setup-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.2rem auto 1.55rem;
}

.pin-setup-progress-dot {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #8c8f99;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.55rem;
  text-align: center;
  flex: 0 0 1.55rem;
}

.pin-setup-progress-dot.is-active {
  background: #67d8b1;
}

.pin-setup-progress-line {
  width: 4rem;
  height: 2px;
  background: #8c8f99;
  border-radius: 999px;
}

.pin-setup-group {
  margin-bottom: 0.95rem;
  text-align: left;
}

.pin-setup-pin-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security-question-dropdown {
  position: relative;
}

.security-question-trigger.pin-setup-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.security-question-trigger.is-placeholder {
  color: #8f97a4;
}

.security-question-caret {
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  margin-left: 0.75rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
}

.security-question-dropdown.is-open .security-question-caret {
  transform: rotate(-135deg) translateY(-0.05rem);
}

.security-question-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 80;
  display: none;
  max-height: 15rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid #dfe4ec;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.security-question-dropdown.is-open .security-question-menu {
  display: block;
}

.security-question-option {
  display: block;
  width: 100%;
  padding: 1rem 1.05rem;
  border: 0;
  border-bottom: 1px solid #edf1f5;
  background: #fff;
  color: #4d5563;
  font: inherit;
  font-size: 1.08rem;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.security-question-option:last-child {
  border-bottom: 0;
}

.security-question-option:hover,
.security-question-option.is-active {
  background: #f4f7ff;
}

.security-question-option[disabled] {
  display: none;
}

.pin-setup-group label {
  display: block;
  margin-bottom: 0.65rem;
  color: #2f3642;
  font-size: 1.08rem;
  font-weight: 700;
}

.pin-setup-field-label {
  display: block;
  width: min(100%, 14.95rem);
  margin-bottom: 0.5rem;
  color: #4a5260;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}

.pin-setup-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  width: min(100%, 14.95rem);
  margin: 0.35rem auto 0;
}

.pin-setup-inputs .pin-digit {
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid #bfc5ce;
  border-radius: 0.55rem;
  background: #fff;
  color: #3a3361;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: none;
}

.pin-setup-inputs .pin-digit.is-masked {
  font-size: 2.1rem;
}

.pin-setup-inputs .pin-digit:focus {
  border-color: #7d83d1;
  box-shadow: 0 0 0 3px rgba(125, 131, 209, 0.12);
  outline: none;
}

.pin-setup-select,
.pin-setup-text {
  width: 100%;
  height: 3.15rem;
  padding: 0 1.05rem;
  border: 1px solid #e6e8ed;
  border-radius: 0.28rem;
  background: #fff;
  color: #69707d;
  font-size: 1.08rem;
  font-weight: 400;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.pin-setup-select:focus,
.pin-setup-text:focus {
  border-color: #7d83d1;
  box-shadow: 0 0 0 3px rgba(125, 131, 209, 0.12);
  outline: none;
}

.pin-setup-visibility-button {
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7b818c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pin-setup-visibility-button:hover,
.pin-setup-visibility-button:focus {
  background: rgba(123, 129, 140, 0.08);
  color: #626975;
  outline: none;
}

.pin-setup-visibility-icon {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.pin-setup-note {
  margin: 0.9rem 0 0.7rem;
  color: #6d7480;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
}

.pin-setup-error {
  display: none;
  margin-bottom: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.35rem;
  background: #fff1f1;
  color: #b10f0f;
  font-size: 1.02rem;
  line-height: 1.55;
  text-align: left;
}

.pin-setup-submit.verify_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 9.8rem;
  margin: 0.55rem auto 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.05rem;
  border-radius: 999px !important;
  background: #fff !important;
  color: #5158a2 !important;
  border: 1px solid #5158a2 !important;
}

.pin-setup-submit.verify_button:hover {
  background: #5158a2 !important;
  color: #fff !important;
}

.pin-setup-submit.verify_button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

@media screen and (max-width: 48em) {
  .veil {
    align-items: flex-start;
    padding: 1rem;
  }

  .veil .content {
    width: min(100%, 46rem);
    min-height: calc(100vh - 2rem);
    min-height: calc(100dvh - 2rem);
  }

  .veil .content .content-box {
    max-width: 88%;
  }

  .veil .content .content-box {
    padding-bottom: 0;
  }

  .veil .content .content-box .content-msg {
    padding: 1rem 0;
    font-size: 1rem;
  }

  .veil .content .content-box .content-msg span {
    display: block;
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 0.35rem;
  }

  .veil .content .content-box .content-buttons {
    margin: 0.5rem 0;
  }

  .veil .content .content-box .content-buttons .verify_button {
    font-size: 1.35rem;
    padding: 0.95rem;
    border-radius: 8px;
  }

  .veil .content .content-box .content-buttons a {
    font-size: 1rem;
  }

  .pin-setup-panel {
    padding: 1.35rem 1rem 1.6rem;
  }

  .pin-setup-title-main,
  .pin-setup-panel h2 {
    font-size: 1.8rem;
  }

  .pin-setup-copy {
    font-size: 1rem;
  }

  .pin-setup-inputs {
    gap: 0.5rem;
  }

  .pin-setup-inputs .pin-digit {
    width: calc((100% - 2.45rem) / 4);
    min-width: 0;
    height: 2.85rem;
    font-size: 1.5rem;
  }

  .pin-setup-field-label,
  .pin-setup-inputs {
    width: min(100%, 13.25rem);
  }

  .pin-setup-progress {
    margin: 1rem auto 1.2rem;
  }

  .pin-setup-questions-veil {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 22em) {
  .veil {
    padding: 0.75rem;
  }

  .veil .content {
    width: 100%;
    min-height: calc(100vh - 1.5rem);
    min-height: calc(100dvh - 1.5rem);
  }

  .veil .content .content-box {
    max-width: 100%;
  }

  .veil .content .content-box .content-msg {
    padding: 0.75rem 0;
  }

  .veil .content .content-box .content-buttons .verify_button {
    font-size: 1.15rem;
    padding: 0.75rem;
  }
}
#social_links {
  display: block;
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 99;
  padding: 10px;
  padding-top: 10px;
  border-radius: 0 5px 5px 0;
  background: #333;
  color: #fff;
  width: 50px;
  padding-top: 20px;
  opacity: 0.8;
}

#social_links .social_links_close {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 11px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  left: 0;
}

#social_links ul {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: top;
  padding-top: 20px;
}
#social_links ul li {
  display: inline-block;
  width: 100%;
  margin: 0;
  margin-bottom: 0px;
  padding: 0;
  list-style: none;
  vertical-align: top;
  margin-bottom: 5px;
}
#social_links ul a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 5px;
  padding-bottom: 0px;
  border-radius: 5px;
  border: 1px solid #222;
  background: #222;
  color: #fff;
}
#social_links a {
  transition: all 200ms ease-in-out;
}
#social_links a:hover {
  background-color: #ff5757;
}

.social_links_close:hover {
  color: #ff0000;
}

#social_links svg:not(:host).svg-inline--fa, svg:not(:root).svg-inline--fa {
    overflow: visible;
    box-sizing: content-box;
}
#social_links svg:not(:root) {
    overflow: hidden;
}
#social_links .svg-inline--fa {
    display: var(--fa-display, inline-block);
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}
