:root {
  --black: #1D1D1D;
  --white: #FFFFFF;
  --sageGreen: #003c3b;
  --sageLight: #407C7D;
  --greyBg: #FAFAFA;
  --greyBase: #5F5F5F;
  --greyLight: #F2F1F0;
  --greyLightest: #DFDFDF;
  --greyDisabled: #CCCCCC;
  --sunshineLight: #FFEFD3;
  --invalid: #DA291C;
  --blue: #337ab7;
}

.reciteme-button {
  background-color: var(--sageGreen);
  border: none;
  border-radius: 40px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.reciteme-button:hover,
.reciteme-button:focus {
  background-color: var(--sageLight);
}

.reciteme-button img {
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 1024px) {
  .reciteme-button img {
    width: 52px;
    height: 52px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--greyBg);
}

.logo-holder {
  background-color: var(--sageGreen);
  padding: 20px 0 215px;
  text-align: center;
}

.logo-holder__img {
  width: 128px;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #1c872c;
  border-color: #1c872c;
}

.inner {
  flex: 1 0 auto;
}

.inner--multi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

.inner--multi .panel {
  margin-bottom: 0;
}

.panel {
  position: relative;
  width: 100%;
  max-width: 814px;
  z-index: 1;
  transform: translateY(-180px);
  border-radius: 0;
  margin-bottom: 45px;
}

.panel-sparrow {
  margin-top: 30px;
  background-color: #06354A;
  color: white;
  border: 0;
}

.registraion-panel {
  padding: 15px;
}

.vico-panel  {
  padding: 15px;
}

.vico-btn, .vico-btn:hover, .vico-btn:focus{
  border-radius: 2rem;
  background-color: #06b887;
  border-color: #06b887;
  margin-left: 10px;
}

.footer {
  width: 100%;
  background-color: var(--sageGreen);
}

.footer__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1760px + (18px * 2));
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
}

.SiteFooterstyles__Grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.SiteFooterstyles__LogoHolder {
  margin-bottom: 20px;
  grid-column: 1 / span 12;
}

.SiteFooterstyles__Logo {
  width: 106px;
}

.SiteFooterstyles__ContactHolder {
  grid-column: 1 / span 12;
  grid-gap: 0px 25px;
  margin-bottom: 40px;
}

.SiteFooterstyles__ContactCol {
  color: var(--white);
}

.SiteFooterstyles__ContactAddress {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
}

.SiteFooterstyles__TelNum,
.SiteFooterstyles__Email {
  color: var(--white);
  font-size: 18px;
  line-height: 26px;
  display: inline-block;
  margin-bottom: 15px;
  text-decoration: none;
  position: relative;
}

.SiteFooterstyles__TelNum:after,
.SiteFooterstyles__Email:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  transition: transform 0.3s, background-color 0.3s;
  transition-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  transform: scaleX(0);
}

.SiteFooterstyles__TelNum:focus,
.SiteFooterstyles__TelNum:hover,
.SiteFooterstyles__Email:hover,
.SiteFooterstyles__Email:focus {
  outline: none;
  color: var(--white);
  text-decoration: none;
}

.SiteFooterstyles__TelNum:focus:after,
.SiteFooterstyles__TelNum:hover:after,
.SiteFooterstyles__Email:hover:after,
.SiteFooterstyles__Email:focus:after {
  transform: scaleX(1);
}

.SiteFooterstyles__Copyright {
  grid-column: 1 / span 12;
}

.SiteFooterstyles__CopyrightContent {
  color: var(--white);
}

/* FORM STYLING */
#api>.heading {
  display: none;
}

.panel-body .localAccount {
  padding: 20px 120px;
}

.panel-body .heading h1,
.panel-body .intro h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 32px;
  line-height: 42px;
  color: var(--sageGreen);
  letter-spacing: -0.04em;
  margin-bottom: 25px;
}

.entry-item {
  margin-bottom: 25px;
}

.entry-item label,
.attrEntry label {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.entry-item #forgotPassword,
.attrEntry .helpLink {
  margin-bottom: 15px;
  display: inline-block;
  color: var(--sageGreen);
  position: relative;
  text-decoration: none;
}

.attrEntry .helpLink {
  display: none;
}

.entry-item #forgotPassword:after,
.attrEntry .helpLink:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sageGreen);
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  transform: scaleX(0);
}

.entry-item #forgotPassword:hover:after,
.entry-item #forgotPassword:focus:after {
  transform: scaleX(1);
}

.entry-item input,
.attrEntry .textInput,
#verificationCode {
  width: 100%;
  display: block;
  background: var(--white);
  border: 1px solid var(--sageLight);
  border-radius: 4px;
  font-size: 16px;
  height: 54px;
  line-height: 24px;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 0 14px;
}

.attrEntry .textInput:disabled {
  background-color: var(--greyDisabled);
}

.attrEntry .textInput:focus,
.attrEntry .textInput:focus-visible {
  border: 2px solid var(--black);
}

.buttons button {
  background-color: var(--sageGreen);
  color: var(--white);
  width: 100%;
  border-radius: 100000px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  padding: 13px 30px;
  border: none;
  transition: background-color 0.3s;
  margin-top: 15px;
}

.buttons button:hover {
  background-color: var(--sageLight);
}

.verificationControlContent ul {
  list-style: none;
  padding-left: 0;
}

.divider h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 32px;
  line-height: 42px;
  color: var(--sageGreen);
  letter-spacing: -0.04em;
}

.create #createAccount {
  display: inline-block;
  color: var(--sageGreen);
  padding: 0 5px;
}

.create #createAccount:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sageGreen);
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.3, 0, 0.7, 1);
  transform: scaleX(0);
}

.create #createAccount:hover:after,
.create #createAccount:focus:after {
  transform: scaleX(1);
}

#attributeList ul {
  list-style: none;
  padding-left: 0;
}

#attributeVerification {
  margin-bottom: 20px;
}

#attributeVerification .buttons #cancel {
  display: none;
}

.changeClaims {
  display: none;
}

.wrong-path-link {
  padding: 0 120px;
}

.login-redirect-link {
  padding: 20px 0;
}

.login-redirect-link p,
.wrong-path-link p {
  font-size: 16px;
}

.login-redirect-link a,
.wrong-path-link a {
  font-weight: bold;
  color: var(--sageGreen);
}

@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 30px;
  }

  .vico-panel .row div {
    padding: 10px 0;
    text-align: center;
  }

  .SiteFooterstyles__ContactHolder {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    margin-bottom: 20px;
  }

  .SiteFooterstyles__Copyright {
    margin-top: 15px;
  }

  .footer__inner {
    padding-top: 20px;
  }

  .panel-body .intro h2,
  .divider h2,
  .panel-body .heading h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .wrong-path-link,
  .panel-body .localAccount {
    padding: 0 15px 15px;
  }

  .panel-body .error {
    color: var(--invalid);
  }

  .entry-item label,
  .attrEntry label {
    font-size: 16px;
    line-height: 24px;
  }

  .entry-item input,
  .attrEntry .textInput,
  #verificationCode {
    font-size: 16px;
    line-height: 17px;
    height: 43px;
  }

  .buttons button {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .registraion-panel {
    padding: 15px 45px;
  }

  .footer__inner {
    padding: 40px 20px 0 20px;
  }

  .SiteFooterstyles__Grid {
    grid-template-rows: 1fr auto auto;
  }

  .SiteFooterstyles__LogoHolder {
    grid-column: 1 / span 4;
    margin-bottom: 35px;
  }

  .SiteFooterstyles__Logo {
    width: 143px;
  }

  .SiteFooterstyles__ContactHolder {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-row: 1;
    grid-column: 6 / span 7;
    justify-content: flex-end;
    grid-gap: 0px 50px;
  }

  .SiteFooterstyles__Copyright {
    grid-row: 2;
    grid-column: 10 / span 3;
    margin-top: 0;
    text-align: right;
  }
}

@media only screen and (max-width: 1279px) {
  .SiteFooterstyles__CopyrightContent {
    font-size: 14px;
    line-height: 17px;
  }
}


@media only screen and (min-width: 1280px) {
  .panel {
    transform: translateY(-70px);
    margin-bottom: 100px;
  }

  .inner--multi .panel {
    margin-bottom: 45px;
  }

  .logo-holder {
    padding: 50px 0 120px;
  }

  .logo-holder__img {
    width: 250px;
  }

  .SiteFooterstyles__LogoHolder {
    grid-column: 1 / span 3;
  }

  .SiteFooterstyles__ContactHolder {
    grid-gap: 0px 100px;
  }

  .SiteFooterstyles__ContactCol {
    grid-row: 2;
  }

  .SiteFooterstyles__ContactAddress {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 26px;
  }

  .SiteFooterstyles__TelNum,
  .SiteFooterstyles__TelNum {
    font-size: 16px;
    line-height: 22px;
  }
}

@media only screen and (min-width: 1366px) {
  .SiteFooterstyles__LogoHolder {
    grid-column: 1 / span 2;
  }
}

.buttons button:hover {
  background-image: none
}

.phonefactor_container .row .panel-default {
  margin: auto;
  height: 100%;
  background-color: var(--white);
  min-width: 400px
}

.phonefactor_container .row .panel-body {
  margin: 0 auto;
  max-width: 400px;
  width: auto;
  padding: 4.2rem 1rem
}

.phonefactor_container .row .panel-body img {
  height: 70px;
  margin: 0 auto
}

button#emailVerificationControl_but_change_claims {
  display: none !important;
}

button#sendCode,
button#verifyCode,
button#verifyPhone,
button#cancel,
button#continue,
button#emailVerificationControl_but_send_code,
button#emailVerificationControl_but_verify_code,
button#emailVerificationControl_but_send_new_code {
  margin-top: 2rem;
  width: 60%;
}

@media only screen and (max-width: 767px) {

  button#sendCode,
  button#verifyCode,
  button#verifyPhone,
  button#cancel,
  button#continue,
  button#emailVerificationControl_but_send_code,
  button#emailVerificationControl_but_verify_code,
  button#emailVerificationControl_but_send_new_code {
    width: 100%;
  }
}

button#cancel,
button#emailVerificationControl_but_send_new_code {
  background-color: var(--white);
  color: var(--sageGreen);
  border: 1px solid var(--sageGreen);
}

button#cancel:hover,
button#emailVerificationControl_but_send_new_code:hover {
  background-color: var(--greyLight);
}

button:disabled,
button[disabled] {
  background-color: var(--greyDisabled);
  cursor: not-allowed;
  border: 1px solid var(--greyDisabled);
}


button#continue[aria-disabled="true"] {
  display: none;
}

#api #codeVerification {
  text-align: left;
  margin-top: 1rem;
}

#codeVerification #verificationCode {
  border-radius: .5rem;
  width: 100%;
  height: 50px;
  border: 1px solid var(--greyBase);
  text-indent: 20px;
  outline: 0;
}

#codeVerification #verificationCode:focus {
  border: 2px solid var(--black);
}

#codeVerification #retryCode {
  cursor: pointer;
  color: var(--blue);
  text-decoration: none;
}

#codeVerification #retryCode:focus,
#codeVerification #retryCode:hover {
  text-decoration: underline
}

#api #phonefactor_initial .intro p {
  text-align: left;
}

#api p {
  text-align: left;
  margin-top: 1rem;
}

#api .working,
#api .verifying-modal {
  display: none;
}

#api .error {
  display: block;
  padding-top: 10px;
  color: var(--invalid);
}

#api #phoneEntry.phoneEntry {
  margin-top: 10px;
}

#api #phoneEntry.phoneEntry .input .code {
  text-align: left;
}

#api #phoneEntry .input .code #countryCode {
  height: 50px;
  border-radius: .5rem;
  width: 100%;
  margin-bottom: 15px;
  padding-left: 15px;
}

#api #phoneEntry .input .code #countryCode:focus {
  border: 2px solid var(--black);
}

#api #phoneEntry .input .error.itemLevel p {
  color: var(--invalid);
}

#api #phoneEntry.phoneEntry .input .number {
  text-align: left;
}

#api #phoneEntry.phoneEntry .input .number #number {
  border-radius: .5rem;
  width: 100%;
  height: 50px;
  border: 1px solid var(--greyBase);
  text-indent: 20px;
  outline: 0;
}

#api #phoneEntry.phoneEntry .input .number #number:focus {
  border: 2px solid var(--black);
}

#api #phonefactor_initial #phoneEntry select#countryCode {
  height: 45px;
  border-radius: .5rem;
  width: 100%;
  margin-bottom: 15px;
  padding-left: 15px;
  border: 1px solid var(--greyBase);
}

#api #phoneEntry select:hover {
  border-color: var(--greyBase);
}

#api #phoneEntry select option {
  font-weight: 400;
}

#api #phoneEntry input#localNumber {
  border-radius: .5rem;
  width: 100%;
  height: 50px;
  border: 1px solid var(--greyBase);
  text-indent: 20px;
  outline: 0;
}

.phoneNumbers .phoneNumber .displayName,
.phoneNumbers .phoneNumber .type {
  display: none;
}

.phoneNumbers .phoneNumber .number,
.phoneNumbers .phoneNumber label[for="1"] {
  margin-top: 10px;
}

#rememberMe {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.rememberMe {
  display: flex;
  align-items: center;
  color: var(--black);
  font-family: 'Matter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1em;
}

.rememberMe #rememberMe:checked+label:before {
  content: '✓';
  background-color: var(--sageGreen);
}

.rememberMe label:before {
  content: '';
  display: inline-block;
  background: transparent;
  border: 1px solid var(--sageLight);
  border-radius: 0;
  box-sizing: border-box;
  color: var(--white);
  flex: 0 0 19px;
  font-family: 'Matter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  height: 19px;
  line-height: 14px;
  margin-right: 12px;
  padding: 1px;
  text-align: center;
  vertical-align: middle;
  width: 19px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.rememberMe label {
  display: block;
  cursor: pointer;
  margin: 0;
  user-select: none;
  font-weight: 400;
  position: relative;
  padding-left: 30px;
}

.panel-header h1 {
  font-family: 'Times New Roman', Times, serif;
  color: var(--sageGreen);
  font-size: 48px;
  margin: 0 0 20px;
}

.panel-header p {
  font-size: 16px;
}

.steps-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  overflow: hidden;
}

.step-panel {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  width: calc(100% /3);
  gap: 10px;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.step-panel-number {
  color: var(--white);
  border-radius: 30px;
  width: 24px;
  padding: 2px 0;
  text-align: center;
  background-color: var(--greyLightest);
}

.step-panel-number:before,
.step-panel-number:after {
  content: '';
  display: block;
  position: absolute;
  top: 11px;
  width: 60%;
  height: 2px;
  background-color: var(--greyLightest);
}

.step-panel-number:before {
  right: calc(50% + 12px);
}

.step-panel-number:after {
  left: calc(50% + 12px);
}

.step-panel:first-child .step-panel-number:before,
.step-panel:last-child .step-panel-number:after {
  display: none;
}

.step-panel-copy {
  display: block;
  padding: 0 15px;
  font-size: 16px;
  color: var(--greyLightest);
}

.step-panel.active-step .step-panel-number,
.step-panel.active-step .step-panel-number:before,
.step-panel.active-step .step-panel-number:after {
  background-color: var(--sageGreen);
}

.step-panel.active-step .step-panel-copy {
  color: var(--sageGreen);
}

.inline-bullets {
  padding-left: 15px;
}

.EmailBox .attrEntry,
.VerificationCode .attrEntry,
.Password .attrEntry {
  margin-top: 20px;
}

::-ms-reveal {
  display: none;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.show_password_container {
  cursor: pointer;
  float: right;
  margin-top: -30px;
}

@media only screen and (max-width: 767px) {
  .show_password_container span {
    display: none;
  }
}

.show_password_container .show_password {
  height: 20px;
  padding-right: 5px;
}