.action-button {
  background-color: var(--primary);
  color: var(--text-default-on-primary);
  align-items: center;
  border: none;
  cursor: pointer;
  display: flex;
  flex: 1;
  height: 46px;
  justify-content: center;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 282px;
  padding: 14px;
  width: 100%;

  @media (width >= 768px) {
    margin-bottom: 0;
  }

  &.disabled {
    background-color: var(--neutral-25);
    color: var(--neutral-80);
    cursor: not-allowed;
  }

  &.secondary {
    background-color: var(--neutral-0);
    color: var(--text-default);
    border: 2px solid var(--primary);

    &.disabled {
      background-color: var(--neutral-25);
      border: var(--neutral-50);
      color: var(--neutral-80);
      cursor: not-allowed;
    }

    &.wait {
      cursor: wait;
    }
  }

  &.wait {
    cursor: wait;
  }
}
.button-container.app-submitted-button {
  margin: 30px 30px 0;
  display: block;
  width: unset;
  justify-content: unset;
  padding-top: unset;

  .button-background {
    font-weight: 700;
    width: 280px;
    padding: 13px;
  }
}

.card-text {
  color: var(--text-default);
  max-width: 300px;
  text-align: center;
  margin: 16px auto;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;

  @media (width >= 768px) {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.3px;
    margin: 24px auto;
    margin-bottom: 0;
    max-width: 516px;
    font-weight: 400;
  }

  @media (width >= 1024px) {
    max-width: 570px;
  }
}
.card-text {
  color: var(--text-default);
  max-width: 300px;
  text-align: center;
  margin: 16px auto;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;

  @media (width >= 768px) {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.3px;
    margin: 24px auto;
    max-width: 516px;
  }

  @media (width >= 1024px) {
    max-width: 535px;
  }
}
.apply-again-content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.apply-again-illustration {
  height: 143px;
  margin-bottom: 24px;
  width: 190px;
}

.apply-again-section-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  border: none;
}

.apply-again-title {
  color: var(--tertiary);
  max-width: 600px;
  text-align: center;
  margin-bottom: 16px;
}

.apply-again-sub-title {
  max-width: 600px;
  text-align: center;
}

.button-container.start-application-button {
  font-family: var(--font-family);
  width: 80%;
  margin: auto;

  @media (width >= 768px) {
    width: 50%;
  }

  .button-background {
    width: 100%;
  }
}

.apply-again-checkbox-field-container {
  place-items: flex-start center;
  display: flex;
  margin-top: 43px;
  text-align: left;
  max-width: 600px;
}

.apply-again-disclaimer {
  color: var(--text-light);
  padding: 15px 0;
}
.button-container.business-basic-info-button {
  padding-top: 78px;
  text-align: center;

  @media (width >= 768px) {
    justify-content: left;
    padding-top: 86px;
  }
}
.add-debt-button {
  margin: 24px 0;
}

.debt-info-subtitle {
  color: var(--text-default);
  margin-bottom: 8px;

  @media (width >= 768px) {
    font-size: 24px;
    line-height: 34px;
  }
}

.debt-info-subtitle-description {
  color: var(--text-light);
  margin-bottom: 8px;

  @media (width >= 768px) {
    margin-bottom: 0;
  }
}

.radio-button-row {
  display: flex;
  flex-direction: column;
  margin: 0;
  text-align: left;
  width: auto;

  @media (width >= 768px) {
    width: 48%;
  }
}
.add-item {
  color: var(--link);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-weight: 500;
  padding: 0;
  outline: inherit;
}

.centered-action-button {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  width: 100%;

  button {
    cursor: pointer;
  }
}

.add-another-area {
  background-color: var(--neutral-35);
  border-radius: 4px;
  margin-top: 22px;
  padding: 24px 16px;
  padding-bottom: 40px;
  position: relative;

  @media (width >= 768px) {
    padding-top: 32px;
  }

  .button-row {
    align-items: center;
    display: flex;
    flex-direction: column;

    @media (width >= 768px) {
      flex-direction: row;
      margin: 0 24px;
    }

    .button-container {
      button {
        margin: 0;
      }

      align-items: center;
      display: flex;
      flex: 1;
      justify-content: center;
      margin: 0 16px;
      width: 100%;

      @media (width >= 768px) {
        margin: 24px auto;
      }
    }
  }

  .close-icon {
    background-color: var(--neutral-0);
    align-items: center;
    border-radius: 18px;
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 36px;
  }

  .close-x {
    width: 14px;
  }
}

.add-another-area-title {
  color: var(--text-default);
  max-width: 198px;

  @media (width >= 768px) {
    margin-left: 24px;
    max-width: 100%;
  }
}

.add-another-area-text {
  color: var(--text-default);
  margin: 8px 0;
  margin-bottom: 24px;

  @media (width >= 768px) {
    margin: 24px;
  }
}

.add-another-bank-text {
  margin-left: 12px;
  padding: 8px;
}

.bank-banner {
  background-color: var(--neutral-25);
  align-items: unset;
  border-radius: 2px;
  display: inline-flex;
  height: 117px;
  justify-content: start;
  margin-bottom: 24px;
  position: relative;
  width: 100%;

  @media (width >= 768px) {
    align-items: center;
    height: 108px;
    justify-content: center;
  }
}

.bank-header {
  color: var(--text-light);
  height: 24px;
  margin-top: 22px;

  @media (width >= 768px) {
    margin: 0;
  }
}

.bank-list {
  width: 100%;

  @media (width >= 768px) {
    margin: 0;
    margin-top: 22px;
  }
}

.bank-name {
  color: var(--text-default);
  display: none;
  font-weight: 500;
  height: 26px;

  @media (width >= 768px) {
    display: block;
  }

  &.responsive {
    display: block;
    left: 22px;
    position: absolute;
    top: 66px;

    @media (width >= 768px) {
      display: none;
      position: relative;
    }
  }
}

.bank-row {
  margin: 0;
  width: 100%;
}

.color-link {
  color: var(--link);
}

.connected-text {
  color: var(--success);
  display: none;
  font-weight: 600;
  height: 24px;

  @media (width >= 768px) {
    display: block;
  }
}

.connected-text-wrapper {
  background-color: var(--info-light);
  align-items: center;
  border-radius: 20px;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-right: 0;
  min-width: 40px;
  position: absolute;
  right: 16px;
  top: 16px;

  @media (width >= 768px) {
    background: none;
    flex-direction: row-reverse;
    margin-right: 22px;
    top: auto;
  }
}

.document-management-area {
  box-sizing: border-box;
  padding: 16px 24px;
  padding-bottom: 32px;
  background-color: var(--neutral-35);
  border: 1px solid var(--neutral-35);
  border-radius: 4px;
}

.document-management-heading {
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.document-management-text {
  max-width: 560px;
  margin: 8px auto;
  margin-bottom: 48px;
  text-align: center;
}

.document-question {
  color: var(--text-default);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 24px;
  margin-left: auto;
  margin-bottom: 20px;
  text-align: center;
}

.icon-add {
  padding: 8px;
  width: 24px;

  @media (width >= 768px) {
    outline: none;
    padding-right: 0.5em;
  }
}

.icon-connected {
  display: flex;

  @media (width >= 768px) {
    height: auto;
    margin-right: 12px;
    width: 20px;
  }

  &.edit-text {
    color: var(--link-icon-text-bright);
    display: none;

    @media (width >= 768px) {
      display: block;
    }
  }
}

.icon-connected-bank {
  height: 36px;
  width: 36px;
  margin: 16px;

  @media (width >= 768px) {
    height: 72px;
    margin: 0 25px;
    width: 72px;
  }
}

.doc-summary-sub-title {
  margin-bottom: 32px;

  @media (width >= 768px) {
    margin-top: 20px;
  }

  @media (width >= 1024px) {
    margin-bottom: 20px;
  }
}

.icon-document-image {
  height: auto;
  width: 36px;

  @media (width >= 768px) {
    width: 72px;
  }
}

.or-line {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  margin: 20px 0;
  max-width: 282px;
  width: 100%;

  @media (width >= 768px) {
    margin: 20px 16px;
    max-width: 111px;
  }
}

.vert-align-middle {
  vertical-align: middle;
}
.bank-statements-block {
  display: block;
  margin: 12px 0;
  width: 100%;
}

.bank-statements-info {
  color: var(--text-light);
  margin: 12px 0;
  margin-bottom: 40px;
}

.doc-upload-subtitle {
  color: var(--text-default);
  line-height: 34px;
  margin: 20px 0;

  @media (width >= 768px) {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.3px;
    margin: 0;
    margin-bottom: 20px;
  }
}

.file-overflow-error {
  background-color: var(--error-light);
  border-left: 2px solid var(--error-dark);
  border-radius: 2px;
  display: flex;
  flex-direction: row;
  padding: 16px 0;

  .body {
    flex: 1;
    padding: 0 10px;

    .text {
      color: var(--error-dark);
    }
  }

  .close {
    height: 18px;
    width: 18px;
    margin-right: 16px;
    position: relative;
    top: -3px;
  }

  .file-overflow-icon {
    height: 20px;
    width: 20px;
    margin: 0 8px 0 16px;
  }
}

.max-files {
  color: var(--text-light);
  height: 24px;
  text-align: right;
}
.card-text {
  color: var(--text-default);
  text-align: center;
  margin: 24px auto 40px;
  max-width: 320px;
  max-height: 96px;

  .strong {
    font-weight: 700;
  }

  @media (width >= 1024px) {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.3px;
    max-width: 570px;
    max-height: 90px;
    margin-bottom: auto;
  }
}
.text-fine-print {
  color: var(--text-default-on-dark);
  line-height: 1.6;
  max-width: 90%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.owner-credit-auth-button {
  margin: 20px auto;
  text-align: center;
}

.owner-credit-auth-title {
  color: var(--tertiary);
  margin-top: 40px;
  line-height: 1.3;
  word-wrap: break-word;

  :first-of-type {
    margin-top: 20px;
  }
}

.section-wrapper {
  margin-bottom: 24px;
}

.full-width {
  max-width: 100%;
  overflow: visible;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 2px;
  border-radius: 4px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
.app-submitted-text {
  color: var(--text-default);
  margin: 24px auto;
  margin-bottom: 0;
  max-width: 300px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;

  @media (width >= 768px) {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.3px;
  }
}

.button-container.owner-credit-auth-success-button {
  margin: 20px;
  margin-bottom: 0;
  justify-content: center;

  @media (width >= 768px) {
    margin: 30px;
    margin-bottom: 0;
  }

  .button-background {
    width: 280px;
    padding: 13px;
  }
}
.add-owner-button {
  margin: 24px 0;

  @media (width >= 768px) {
    margin: 32px 0;
  }
}

.address-block-title {
  color: var(--tertiary);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 30px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: 7px;
  flex-direction: column;

  @media (width >= 768px) {
    flex-direction: row;
  }
}

.input-container.long {
  width: auto;

  @media (width >= 768px) {
    margin-right: 57px;
    width: auto;
  }

  @media (width >= 1024px) {
    width: auto;
  }

  @media (width >= 1200px) {
    width: auto;
  }
}

.owner-info-subtitle {
  color: var(--text-default);
  margin-bottom: 8px;

  @media (width >= 768px) {
    font-size: 24px;
    line-height: 34px;
  }
}

.owner-info-subtitle-description {
  color: var(--text-light);
  margin-bottom: 8px;

  @media (width >= 768px) {
    margin-bottom: 0;
  }
}

.text-strong {
  color: var(--tertiary);
  font-weight: 500;
  padding: 30px 0 5px;
  text-align: left;
}

.owner-section-wrapper {
  border: none;
  padding: 0;
}
.button-container.review-submit-button {
  margin: 20px auto;
  padding-top: unset;

  @media (width >= 768px) {
    justify-content: center;
  }

  .button-background {
    margin-bottom: 0;
  }
}

.disclosure {
  color: var(--text-light);
  font-size: 14px;
  line-height: 22px;
  margin: 24px 0;
}

.height-auto {
  height: auto;
}

.resend-verification-block {
  background-color: var(--neutral-0);
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  margin-top: 16px;
  min-height: 72px;
  overflow-wrap: anywhere;
  padding: 10px;
  white-space: normal;

  @media (width >= 768px) {
    flex-direction: row;
  }

  .email {
    color: var(--text-default);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    white-space: nowrap;
    width: 100%;
  }
}

.review-submit-app-details-block {
  display: flex;
  flex-direction: column;

  @media (width >= 768px) {
    column-gap: 25px;
    flex-flow: row wrap;
  }
}

.review-submit-card {
  background-color: var(--neutral-15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;

  .title-block {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    padding: 8px 0;

    .not-verified {
      background-color: var(--destructive-icon-background);
      align-items: center;
      border-radius: 18px;
      box-sizing: border-box;
      display: flex;
      flex-direction: row-reverse;
      margin-left: -5px;
      padding: 6px 12px;

      .text {
        color: var(--error-dark);
        line-height: 24px;
        margin-left: 10px;

        @media (width >= 768px) {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }

    .title {
      color: var(--text-default);
      flex: 1;
      line-height: 36px;
      min-width: 190px;
    }
  }

  .verification-text {
    color: var(--text-light);
    font-weight: 500;
    margin: 18px 0 16px;
  }
}

.review-mobile-text {
  color: var(--text-light);
  display: block;
  margin-bottom: 25px;
}

.review-submit-title {
  display: none;

  @media (width >= 768px) {
    color: var(--text-default);
    display: block;
    margin-bottom: 24px;
  }
}
.start-application-button-container,
.start-application-main-button {
  font-family: var(--font-family);
  margin: auto;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  .button-background {
    background-color: var(--primary);
    color: var(--text-default-on-primary);
    border: none;
    cursor: pointer;
    display: block;
    margin-bottom: 24px;
    padding: 13px 20px;
    width: 50%;
  }
}

.checkbox-field-container {
  place-items: flex-start center;
  display: flex;
  margin-top: 43px;
  text-align: left;
}

.disclaimer {
  color: var(--text-light);
  padding: 15px 0;

  .footnote {
    display: none;

    @media (width >= 1024px) {
      display: unset;
    }
  }
}

.sign-in {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 24px;

  @media (width >= 1024px) {
    padding-bottom: 73px;
  }

  .sign-in-arrow {
    height: 15px;
    width: 23px;
    outline: none;
    cursor: pointer;
    padding-left: 8px;
  }

  .sign-in-link {
    color: var(--link);
    font-weight: 600;
    padding-left: 12px;
    cursor: pointer;
  }

  .sign-in-text {
    color: var(--tertiary);
    line-height: 24px;
    font-weight: 500;
  }
}
.overlay {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(255, 255, 255, 80%);
  z-index: 2;
  cursor: pointer;
}

.spinner {
  position: absolute;
  top: 50%;
  left: calc(50% - 44px);
  transform: translate(-50%, -50%);
}

.spin-image {
  position: absolute;

  --spinner-size: 4;
  --line-color: --secondary;
  --line-alpha: 1;
  --ring-color: --tertiary;
  --ring-alpha: 1;
  --ring-size: 2;

  font-size: calc(var(--spinner-size) * 1em);
  width: 88px;
  height: 88px;
  border-radius: 50%;

  .line {
    fill: none;
    stroke: var(--line-color);
    stroke-width: var(--ring-size);
    opacity: var(--line-alpha);
    stroke-linecap: round;
    transform-origin: 50% 50%;
    transform: rotate3d(0, 0, 1, 0deg);
    animation:
      1500ms spinner-arc ease-in-out infinite,
      1800ms spinner-rotate linear infinite;
  }

  .ring {
    fill: none;
    stroke: var(--ring-color);
    stroke-width: var(--ring-size);
    opacity: var(--ring-alpha);

    @keyframes spinner-rotate {
      to {
        transform: rotate3d(0, 0, 1, 360deg);
      }
    }

    @keyframes spinner-arc {
      from {
        stroke-dasharray: 0 150;
        stroke-dashoffset: 0;
      }

      to {
        stroke-dasharray: 100 150;
        stroke-dashoffset: -140;
      }
    }
  }
}

.logo {
  position: absolute;
  height: 44px;
  width: 44px;
  margin-top: 21px;
  margin-left: 22px;
}
.timeout-overlay {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 10%);
  z-index: 9001;
  cursor: pointer;
}

.timeout-modal {
  z-index: 9000;
  padding-top: 0;
  height: 100vh;
  position: fixed;

  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;

  /* Full width */
  overflow: auto;

  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);

  /* Fallback color */
  background-color: rgba(0, 0, 0, 40%);

  /* Black w/ opacity */
  @media (width >= 768px) {
    justify-content: center;
    height: 100%;
  }

  @media (width >= 1024px) {
    /* Sit on top */
    padding-top: 3em;
    height: 100%;

    /* Full height */
  }

  .content {
    border: 1px solid var(--neutral-70);
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 2px;
    background-color: var(--neutral-0);
    font-family: var(--font-family);

    @media (width >= 768px) {
      width: 570px;
      margin: 4% auto;
      height: unset;
      max-height: 550px;
    }
  }

  .expiration-modal-body {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }

  .expiration-modal-button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    text-align: center;
    width: 100%;
  }

  .sign-out-now-button {
    color: var(--link);
    cursor: pointer;
    font-weight: 500;
    text-align: center;
  }

  .timeout-button-background {
    background-color: var(--primary);
    color: var(--text-default-on-dark);
    border: none;
    cursor: pointer;
    margin-bottom: 24px;
    padding: 13px 20px;
    width: 50%;
  }

  .warning-icon-timeout {
    height: 120px;
    width: 120px;
    margin: 48px auto 0;

    img {
      padding: 0;
    }
  }

  .yellow-bar {
    background-color: var(--secondary-light);
    height: 8px;
    width: 100%;
    border-radius: 2px 2px 0 0;

    @media (width >= 1024px) {
      width: 570px;
    }
  }
}
.subheading-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  text-align: left;
  width: auto;
  color: var(--text-default);

  :last-of-type {
    margin-bottom: 6px;
  }

  :nth-last-of-type(2) {
    margin-bottom: 6px;
  }

  @media (width >= 768px) {
    width: 48%;
  }

  .subheading-data {
    font-weight: 600;
  }
}
.apply-again-page-content-wrapper {
  background-color: var(--neutral-15);
  display: flex;
  justify-content: center;
  min-height: 80vh;
  width: 100%;
}

.apply-again-page-main-content-background {
  background-color: var(--neutral-0);
  box-sizing: border-box;
  height: auto;
  max-height: min-content;
  max-width: 1376px;
  padding: 64px 10px 20px;
  position: relative;
  top: -160px;
  width: 100%;
  z-index: 12;

  @media (width >= 768px) {
    padding: 64px 40px 20px;
  }

  @media (width >= 1024px) {
    padding: 64px 100px 20px;
  }
}
.business-address-dropdown-select {
  width: 110px;
  padding-left: 3px;
  margin-left: 5px;
  height: 30px;
}

.wrapper {
  margin-bottom: -10px;
  margin-left: 5px;

  @media (width >= 768px) {
    margin-left: 30px;
  }
}
.button-row {
  display: flex;
  margin: 24px 0;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: row;

  @media (width >= 768px) {
    margin: 32px 0;
  }

  &.reverse {
    flex-direction: column-reverse;

    @media (width >= 768px) {
      flex-direction: row;
    }
  }
}
.header-content-wrapper {
  background-color: transparent;
  box-sizing: border-box;
  padding: 20px;
  padding-bottom: 72px;
  display: block;
  width: 100%;

  @media (width >= 768px) {
    padding: 40px 20px;
    margin-bottom: 78px;
    height: 110px;
    max-width: 1200px;
  }

  @media (width >= 1024px) {
    position: absolute;
    top: 0;
  }

  .header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .header-icon {
    flex: 10;
    display: flex;
    text-decoration: none;
    justify-content: center;
    box-sizing: border-box;

    @media (width >= 768px) {
      flex: 30;
      justify-content: flex-end;
      background-color: transparent;
      align-items: center;
    }
  }

  .header-logo {
    display: flex;
    flex: 90;
    height: 39px;
    justify-content: flex-start;
    text-align: center;
    cursor: pointer;

    @media (width >= 768px) {
      align-self: flex-start;
      height: 30px;

      img {
        height: 45px;
      }
    }

    @media (width >= 1024px) {
      margin: 0;
    }

    &.centered {
      justify-content: center;
      align-items: center;
      flex: 1;

      img {
        height: 45px;
      }

      @media (width >= 768px) {
        height: 30px;

        img {
          height: 45px;
        }
      }
    }
  }

  .phone-icon {
    content: url('/ui/direct-app/imgs/phone-icon-orange.svg');
    display: flex;
    background-color: var(--tertiary-dark);
    border-radius: 20px;
    padding: 10px;
    height: 20px;

    @media (width >= 768px) {
      background-color: transparent;
    }
  }

  .phone-number {
    display: none;
    color: white;

    @media (width >= 768px) {
      display: block;
      text-decoration: none;
      font-weight: 600;
    }
  }
}
.debt-row {
  background-color: var(--neutral-25);
  align-items: top;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 32px;
  padding: 16px;
  width: 100%;

  @media (width >= 768px) {
    align-items: center;
    padding: 18px 24px;
  }

  .icon-group {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    margin-left: 16px;

    @media (width >= 768px) {
      margin-left: 48px;
    }

    img {
      height: 20px;
      width: 20px;

      @media (width >= 768px) {
        height: 24px;
        width: 24px;
      }
    }

    .icon-wrapper {
      align-items: center;
      display: flex;
      height: 40px;
      justify-content: center;
      width: 40px;

      @media (width >= 768px) {
        margin-right: 8px;
        outline: none;
        background-color: transparent;
      }
    }

    .text {
      cursor: pointer;
      display: none;

      @media (width >= 768px) {
        display: block;
      }
    }

    &.delete {
      color: var(--destructive-icon-text-bright);

      .icon-wrapper {
        background-color: var(--destructive-icon-background);
      }
    }

    &.edit {
      color: var(--link-icon-text-bright);

      .icon-wrapper {
        background-color: var(--info-light);
      }
    }
  }

  .debt-icon {
    background-color: var(--neutral-0);
    color: var(--link-icon-text);
    height: 36px;
    width: 36px;

    @media (width >= 768px) {
      background-color: transparent;
      height: 72px;
      width: 72px;
    }
  }

  .text-block {
    flex: 3;
    margin-left: unset;
    width: 38%;

    @media (width >= 768px) {
      margin-left: 16px;
      width: 42%;
    }

    .label {
      color: var(--neutral-80);
      margin-left: 16px;
    }

    .detail-text {
      color: var(--neutral-80);
      font-weight: 500;
      overflow: hidden;
      margin-left: 16px;
      text-overflow: ellipsis;
    }
  }
}
.modal {
  z-index: 9000;
  padding-top: 0;
  height: 100vh;
  position: fixed;

  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;

  /* Full width */
  overflow: auto;

  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);

  /* Fallback color */
  background-color: rgba(0, 0, 0, 40%);

  /* Black w/ opacity */
  @media (width >= 768px) {
    justify-content: center;
    height: 100%;
  }

  @media (width >= 1024px) {
    /* Sit on top */
    padding-top: 3em;
    height: 100%;

    /* Full height */
  }

  .content {
    border: 1px solid var(--neutral-70);
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 2px;
    background-color: var(--neutral-0);
    font-family: var(--font-family);

    @media (width >= 768px) {
      width: 570px;
      margin: 4% auto;
      height: unset;
      max-height: 550px;
    }
  }

  .yellow-bar {
    background-color: var(--secondary-light);
    height: 8px;
    width: 100%;
    border-radius: 2px 2px 0 0;

    @media (width >= 1024) {
      width: 570px;
    }
  }
}
.delete-modal {
  background-color: var(--neutral-0);

  .icon-wrapper {
    height: 120px;
    width: 120px;
    margin: 48px auto 0;

    img {
      height: 120px;
      width: 120px;
      padding: 0;
    }
  }

  .text {
    color: var(--tertiary);
    text-align: center;
    margin: 24px auto 32px;
    max-width: 430px;
  }

  .cancel-button {
    text-align: center;
    color: var(--link-bright);
    height: 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 24px;
    margin: 30px auto;
    cursor: pointer;
  }
}
.direct-app-content-background {
  display: none;

  @media (width >= 1024px) {
    background-color: var(--neutral-0);
    display: flex;
    height: 100%;
    left: 35vw;
    position: absolute;
    top: -85px;
    width: 65vw;
  }
}

.direct-app-full-content {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;

  @media (width >= 1024px) {
    flex-direction: row;
    margin: auto;
    padding: 0 20px 0 40px;
    max-width: 1376px;
  }
}

.direct-app-main-content {
  background-color: var(--neutral-0);
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  padding: 20px;
  padding-bottom: 40px;
  z-index: 10;

  @media (width >= 768px) {
    padding: 50px;
  }

  @media (width >= 1024px) {
    background-color: transparent;
    flex: 55;
    margin-top: 0;
    padding: 220px 0 22px 30px;
    position: relative;
    top: -85px;
  }
}

.direct-app-side-header-wrapper {
  background-color: transparent;
  height: 80px;
  padding: 12px 20px 0;
  display: block;

  @media (width >= 768px) {
    height: 110px;
  }

  @media (width >= 1024px) {
    height: 100%;
    padding: 24px 25px 0 30px;
    flex: 25;
  }

  @media (width >= 1200px) {
    position: relative;
  }

  .content {
    display: flex;
    flex-direction: row;
    align-items: center;

    @media (width >= 1024px) {
      flex-direction: column;
    }

    .header {
      display: none;

      @media (width >= 1024px) {
        margin: 100px 0 60px;
        display: flex;
        flex-direction: column;
      }

      .side-content-header {
        color: var(--text-default-on-dark);
        overflow-wrap: break-word;
      }

      .side-content-seperator {
        background-color: var(--secondary);
        height: 4px;
        width: 140px;
        margin-top: 30px;
        margin-bottom: 40px;
      }

      .side-content-subheading {
        color: var(--text-default-on-dark);
        overflow-wrap: break-word;
      }
    }
  }
}

.title {
  display: none;

  @media (width >= 768px) {
    color: var(--text-default);
    display: block;
  }
}

.title-intro {
  display: none;

  @media (width >= 768px) {
    color: var(--text-light);
    display: block;
    margin: 24px 0 40px;
  }
}

.top-progress-wrapper {
  padding: 0 20px;
  margin-top: -16px;

  @media (width >= 768px) {
    margin-top: -8px;
  }

  @media (width >= 1024px) {
    display: none;
  }
}
.email-verification-needed-modal-button {
  margin: 40px auto;
  text-align: center;
}

.email-verification-modal {
  background-color: var(--neutral-0);
  color: var(--text-default);

  .text {
    text-align: center;
    margin: 24px auto 32px;
    max-width: 430px;
  }

  .title {
    text-align: center;
    margin-top: 32px;
  }

  .warning-icon {
    height: 120px;
    width: 120px;
    margin: 48px auto 0;

    img {
      padding: 0;
    }
  }
}
.expandable-section-wrapper {
  background-color: var(--neutral-15);
  border-radius: 4px;
  margin-bottom: 24px;
  padding: 24px 16px;
  color: var(--text-default);

  .content {
    display: flex;
    flex-direction: column;
    max-height: 1880px;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;

    @media (width >= 768px) {
      max-height: 1200px;
    }

    &.collapsed {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0, 0, 0, 1);
    }
  }

  .icon-wrapper {
    display: flex;
    flex: 1;
    justify-content: flex-end;

    img {
      height: 9px;
      transition: transform 0.25s ease-in-out;

      &.up {
        transform: rotate(-180deg);
      }

      &.down {
        transform: rotate(0deg);
      }
    }
  }

  .expand-collapse-title {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .title-text {
    flex: 9;
  }
}
.file-upload-row {
  width: 100%;

  .file-banner {
    margin-top: 16px;
    height: 44px;
    width: 100%;
    background-color: var(--neutral-25);
    display: inline-flex;
    border-radius: 4px;
    align-items: center;

    .error-message {
      color: var(--error);
      margin-top: 4px;
    }

    .file-delete {
      height: 18px;
      width: 18px;
      margin-right: 16px;
      position: relative;
      top: -3px;
    }

    .name {
      color: var(--text-default);
      margin: 0 6px;
      height: 20px;
      max-width: 35%;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;

      @media (width >= 768px) {
        max-width: 55%;
      }
    }

    .seperator {
      color: var(--neutral-80);
      margin: 0 6px;
    }

    .size {
      color: var(--text-light);
      flex: 1;
      text-align: left;
      height: 20px;
    }

    .status-icon {
      height: 20px;
      width: 20px;
      margin: 0 8px 0 16px;
    }
  }
}
.footer {
  background-color: var(--tertiary);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  color: var(--neutral-0);
  padding: 0 24px;
  font-weight: 400px;
  position: absolute;
  min-width: 320px;

  @media (width >= 1024px) {
    padding: 0 120px;
  }
}
.floating-page {
  font-family: var(--font-family);
  min-width: 320px;
  width: 100%;
  margin: 0;
  background-color: var(--tertiary);
  background-image: url('/ui/direct-app/imgs/pattern-background-dark.png');
  background-repeat: repeat;
  display: block;
  background-size: auto, cover;
  background-position: center;

  @media (width >= 768px) {
    height: 100vh;
  }

  @media (width >= 1024px) {
    justify-content: center;
    overflow: scroll;
    min-height: 750px;
    display: flex;
    flex-direction: column;
  }

  @media (width >= 1200px) {
    align-items: center;
  }

  .content-container {
    position: relative;
    padding: 56px 20px;
    padding-bottom: 64px;
    background-color: var(--neutral-0);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    border-radius: 2px;
    margin: 0 auto;

    @media (width >= 1024px) {
      padding-top: 72px;
      width: 770px;
    }

    &.transparent {
      background-color: transparent;
    }

    .icon-block {
      margin-top: 2px;
      margin-bottom: 16px;

      img {
        height: 96px;
        width: 96px;

        @media (width >= 768px) {
          width: 120px;
          height: 120px;
        }
      }
    }

    .title {
      color: var(--tertiary);
      padding-bottom: 24px;
      text-align: center;
    }
  }
}
.copyright {
  margin: 0;
  margin-top: 16px;
}

.footer-content {
  margin-left: auto;
  margin-right: auto;
  padding: 16px;

  @media (width >= 1024px) {
    max-width: 1376px;
  }
}

.footer-spacer {
  margin-bottom: 16px;
}

.footer {
  background-color: var(--tertiary);
  box-sizing: border-box;
  color: var(--neutral-0);
  min-width: 320px;
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;

  &.offset {
    @media (width >= 1024px) {
      margin-top: 0;
    }

    &.omit-disclosures {
      @media (width >= 1024px) {
        margin-top: 0;
      }
    }
  }
}
.mbat-icons-wrapper {
  display: none;
  padding-top: 28px;

  @media (width >= 1024px) {
    padding-top: 0;
    display: block;
    position: absolute;
    z-index: 1;
    left: calc(45vw - 40px);
  }
}

.mbat-orange {
  display: none;

  @media (width >= 1024px) {
    display: block;
    padding-right: 70px;
    position: relative;
    right: 31px;
  }
}

.mbat-yellow {
  display: none;

  @media (width >= 1024px) {
    display: block;
    padding-right: 10px;
  }
}

.start-application-content {
  display: flex;
  flex-direction: column;

  @media (width >= 1024px) {
    margin: 0 0 60px;
  }
}

.start-application-content-background {
  display: none;

  @media (width >= 1024px) {
    background-color: var(--neutral-0);
    display: flex;
    height: calc(100% + 35px);
    left: 45vw;
    position: absolute;
    top: -85px;
    width: 55vw;
  }
}

.start-application-content-wrapper {
  background-color: transparent;
  display: block;
  padding: 40px 0 0;

  @media (width >= 1024px) {
    height: 100%;
    padding: 0 25px 0 0;
    align-self: baseline;
  }

  @media (width >= 1200px) {
    position: relative;
  }
}

.start-application-full-content {
  display: flex;
  flex-direction: column;
  width: 100%;

  @media (width >= 1024px) {
    flex-direction: row;
    margin: auto;
    padding: 0 40px;
    max-width: 1376px;
  }
}

.start-application-main-content {
  background-color: var(--neutral-0);
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  padding: 20px;
  padding-bottom: 40px;
  z-index: 10;

  @media (width >= 768px) {
    padding: 50px;
  }

  @media (width >= 1024px) {
    background-color: transparent;
    flex: 55;
    margin-top: 0;
    padding: 220px 0 22px 30px;
    position: relative;
    top: -85px;
  }
}

.start-application-side-header-content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;

  @media (width >= 1024px) {
    flex-direction: column;
  }
}

.start-application-side-header-content-wrapper {
  background-color: transparent;
  padding: 12px 20px 0;
  display: block;

  @media (width >= 1024px) {
    height: 100%;
    padding: 48px 25px 0 0;
    flex: 45;
  }

  @media (width >= 1400px) {
    margin-left: 0;
  }
}

.start-application-side-info {
  display: none;

  @media (width >= 1024px) {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    padding-top: 30px;
  }
}

.start-application-side-info-detail {
  display: flex;
  align-items: center;
  padding-top: 34px;
  gap: 8px;

  &.text {
    padding-left: 17px;
  }

  img {
    width: 26px;
    height: 26px;
  }
}

.start-application-side-info-img-wrapper {
  display: none;

  @media (width >= 1024px) {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding-top: 110px;
    width: 403px;
  }
}

.start-application-side-title {
  margin-top: -5%;
  padding-bottom: 14px;

  @media (width >= 768px) {
    font-size: 36px;
    font-weight: 600;
    line-height: 60px;
    padding-bottom: 0;
  }

  @media (width >= 1024px) {
    padding-top: 92px;
    padding-bottom: 14px;
    padding-right: 35px;
  }
}

.start-application-side-title-wrapper {
  color: var(--text-default-on-dark);
  display: flex;
  flex-direction: column;

  @media (width >= 768px) {
    margin: 0;
  }
}

.top-progress-bar {
  @media (width >= 1024px) {
    margin-top: 0;
  }
}
.apply-again {
  width: 100%;
  background: linear-gradient(180deg, #0e4455 0%, #07222b 100%);
  height: 280px;
}

.multi-layout-close-icon {
  background-color: var(--tertiary-dark);
  border-radius: 18px;
  height: 18px;
  padding: 10px;

  @media (width >= 768px) {
    background-color: transparent;
    border-radius: unset;
    height: 18px;
    padding: 0;
  }
}

.multi-layout-close-text {
  display: none;

  @media (width >= 768px) {
    color: var(--text-default-on-dark);
    display: flex;
  }
}

.multi-layout-content-wrapper {
  display: flex;
}

.multi-layout-header {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  max-width: 1376px;
  padding: 20px 20px 0;
  position: relative;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.75s;
  z-index: 15;

  @media (width >= 768px) {
    padding: 40px 40px 0;
  }

  @media (width >= 1024px) {
    transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.75s;
  }

  &.apply-again {
    padding: 40px 0;
    z-index: 11;

    @media (width <=1376px) {
      padding: 40px 20px;
    }
  }
}

.multi-layout-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 2px;
}

.multi-layout-header-close {
  align-items: center;
  color: var(--neutral-0);
  display: flex;
  gap: 8px;

  @media (width >= 768px) {
    margin-left: 64px;
  }
}

.multi-layout-header-logo {
  display: flex;
  height: 36px;
  cursor: pointer;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;

  @media (width >= 768px) {
    transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
    height: 45px;
  }
}

.multi-layout-phone {
  color: var(--neutral-0);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-decoration: none;

  img {
    background-color: var(--tertiary-dark);
    border-radius: 18px;
    height: 18px;

    @media (width >= 768px) {
      background-color: transparent;
    }
  }

  .dark-text {
    color: var(--neutral-0);

    @media (width >= 1024px) {
      color: var(--tertiary);
    }
  }
}

.multi-layout-phone-icon {
  background-color: var(--tertiary-dark);
  border-radius: 18px;
  height: 14px;
  padding: 10px;

  @media (width >= 768px) {
    border-radius: unset;
    height: 14px;
    padding: 0;
  }
}

.multi-layout-phone-text {
  display: none;

  @media (width >= 768px) {
    color: var(--text-default-on-dark);
    display: flex;
  }
}

.multi-layout-wrapper {
  background-image: url('/ui/direct-app/imgs/large-stacked-m.svg'),
    linear-gradient(180deg, #0e4455 0%, #07222b 100%);
  background-size: cover;
  box-sizing: border-box;
  font-family: var(--font-family);
  margin: 0 auto;
  min-height: 100vh;
  min-width: 320px;
  position: relative;
  width: 100%;
  padding-bottom: 100px;
}
.owner-row {
  background-color: var(--neutral-25);
  align-items: top;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 32px;
  padding: 16px;
  width: 100%;

  @media (width >= 768px) {
    align-items: center;
    padding: 18px 24px;
  }

  .icon-group {
    align-items: center;
    cursor: pointer;
    display: inline-flex;
    margin-left: 16px;

    @media (width >= 768px) {
      margin-left: 48px;
    }

    img {
      height: 20px;
      width: 20px;

      @media (width >= 768px) {
        height: 24px;
        width: 24px;
      }
    }

    .icon-wrapper {
      align-items: center;
      display: flex;
      height: 40px;
      justify-content: center;
      width: 40px;

      @media (width >= 768px) {
        margin-right: 8px;
        outline: none;
        background-color: transparent;
      }
    }

    .text {
      cursor: pointer;
      display: none;

      @media (width >= 768px) {
        display: block;
      }
    }

    &.delete {
      color: var(--destructive-icon-text-bright);

      .icon-wrapper {
        background-color: var(--destructive-icon-background);
      }
    }

    &.edit {
      color: var(--link-icon-text-bright);

      .icon-wrapper {
        background-color: var(--info-light);
      }
    }
  }

  .owner-icon {
    background-color: var(--neutral-0);
    color: var(--link-icon-text);
    height: 36px;
    width: 36px;

    @media (width >= 768px) {
      background-color: transparent;
      height: 72px;
      width: 72px;
    }
  }

  .text-block {
    flex: 3;
    margin-left: unset;
    width: 38%;

    @media (width >= 768px) {
      margin-left: 16px;
      width: 42%;
    }

    .label {
      color: var(--neutral-80);
      margin-left: 16px;
    }

    .detail-text {
      color: var(--neutral-80);
      font-weight: 500;
      overflow: hidden;
      margin-left: 16px;
      text-overflow: ellipsis;
    }
  }
}
.page-simple {
  position: relative;
  box-sizing: border-box;
  background-color: var(--neutral-15);
  margin: 0 auto;
  color: var(--tertiary);
  min-height: 100vh;

  .header-container {
    align-items: center;
    padding: 0 14px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    background: white;

    @media (width >= 768px) {
      padding: 0 20px;
    }

    @media (width >= 1024px) {
      padding: 0 30px;
    }

    @media (width >= 1200px) {
      padding: 0 40px;
    }
  }

  .title-bar {
    height: 152px;
    background: linear-gradient(
      180deg,
      var(--tertiary-light) 0%,
      var(--tertiary) 100%
    );
    padding: 26px;

    .title-text {
      width: 100%;
      color: white;
    }
  }

  .body {
    min-height: 400px;
    width: 100%;
    color: var(--neutral-80);
    padding-bottom: 80px;

    @media (width >= 768px) {
      padding-bottom: 120px;
    }
  }
}
.plaid-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.bar-container {
  border-radius: 2px;
  display: flex;
  flex-direction: row;

  .completed-part {
    background-color: var(--secondary);
    height: 6px;
    width: 60px;

    @media (width >= 768px) {
      width: 140px;
    }
  }

  .remaining-part {
    background-color: var(--neutral-25);
    height: 6px;

    &.transparent {
      background: transparent;
    }

    &.complete {
      display: none;
    }
  }
}

.progress-component-wrapper {
  margin-bottom: 8px;

  @media (width >= 768px) {
    margin: 0 20px;
    margin-bottom: 30px;
  }

  &.start-app {
    @media (width >= 768px) {
      margin: 0;
      margin-top: 16px;
    }
  }
}

.title-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;

  .progress-bar-step-count {
    color: var(--neutral-35);
    display: flex;
    justify-content: flex-end;
    flex: 2;

    @media (width >= 768px) {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
    }
  }

  .progress-bar-title {
    color: var(--text-default-on-dark);
    flex: 8;
    font-weight: 600;

    @media (width >= 768px) {
      line-height: 26px;
      font-size: 20px;
      font-weight: 600;
    }
  }
}
.expanded-section-heading-block {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;

  .edit-link {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;

    img {
      margin-right: 12px;
      flex: 2;
    }

    .text {
      color: var(--link);
      flex: 8;
    }
  }

  .section-heading {
    color: var(--text-light);
    flex: 2;
    margin-top: 24px;
  }
}
.indicator-icon {
  display: flex;
  flex: 1;
  justify-content: center;
  margin-left: -8px;
  padding-right: 10px;

  img {
    cursor: pointer;
  }
}

.step-link-title {
  flex: 9;
}

.side-text-wrapper {
  color: var(--text-default-on-dark);
  display: flex;
  flex-direction: column;
  width: 240px;
}

.step-wrap {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  margin-bottom: 12px;
  margin-top: 12px;

  &.disabled {
    cursor: default;
  }
}
.tile-text {
  padding: 0 24px 29px;
  text-align: center;

  img {
    padding: 24px;
  }

  .title {
    color: var(--text);
    font-size: 24px;
    letter-spacing: 0;
    line-height: 26px;
    text-align: center;
    padding-bottom: 10px;
  }

  .body {
    color: var(--text);
    font-size: 18px;
    letter-spacing: -0.55px;
    line-height: 25px;
    text-align: center;
  }
}

/* Not in alphabetical order because of the no-descending-specificity stylelint rule */
.tile-container {
  max-width: 390px;
  max-height: 450px;
  background-color: white;
  margin: 0 auto;

  .logo {
    text-align: center;
    margin: 0 auto;
    padding: 24px;

    img {
      height: 31px;
      width: 242px;
    }
  }
}
.button-with-arrow-group {
  flex: 1;
  cursor: auto;

  .arrow-group {
    display: flex;
    font-weight: 600;
    color: var(--link);

    img {
      cursor: pointer;
      padding: 0 15px 0 0;
    }

    &.left {
      flex-direction: row;
    }

    &.right {
      flex-direction: row-reverse;

      img {
        transform: rotate(180deg);
      }
    }

    .button-text {
      cursor: pointer;
      text-align: center;
    }
  }
}
.text-button-with-icon {
  flex: 1;
  border: 2px solid var(--primary);
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: 'row';
  max-width: 200px;
  cursor: pointer;

  @media (width >= 768px) {
    justify-self: start;
  }

  img {
    margin: 0 10px;
  }

  .button-text {
    justify-self: end;
    text-align: center;
    font-weight: 600;
    color: var(--text-default);
    line-height: 24px;
    margin: 0 10px 0 0;

    @media (width >= 768px) {
      justify-self: start;
    }
  }
}
.password-info-container {
  display: flex;
  padding-top: 5px;
  align-items: center;

  img {
    height: 16px;
    padding-right: 10px;
  }

  .success {
    color: var(--success);
  }

  .validation-error {
    color: var(--neutral-70);
  }
}
@layer fe-style {
/* Theme Variables */
:root {
  /* Responsive Screen Size Breakpoints 
    Note: CSS Vars are not usable within media queries */
  --min-mobile: 390px;
  --max-mobile: 767px;
  --min-tablet: 768px;
  --max-tablet: 1023px;
  --min-desktop: 1024px;
  --max-desktop: 1199px;
  --min-hd: 1200px;

  /* Theme Colors */

  --default-icon-background: #f3f6f7;
  --default-icon-text: #8b8e8f;
  --destructive-icon-background: #fce7e6;
  --destructive-icon-text: #e3170a;
  --destructive-icon-text-bright: #b5120a;
  --error: #e3170a;
  --error-dark: #880e06;
  --error-light: #fce7e6;
  --font-family: montserrat, sans-serif;
  --font-mono-family: azeret mono, monospace;
  --info: #4392f1;
  --info-dark: #285891;
  --info-light: #e7eff8;
  --link: #1172e8;
  --link-bright: #0018f9;
  --link-icon-background: #e7f1fd;
  --link-icon-text: #1172e8;
  --link-icon-text-bright: #0018f9;
  --neutral-0: #fff;
  --neutral-15: #f8f9fa;
  --neutral-25: #f3f6f7;
  --neutral-35: #eef2f3;
  --neutral-50: #e7ecee;
  --neutral-55: #cfd4d6;
  --neutral-60: #b8bcbe;
  --neutral-70: #8b8e8f;
  --neutral-80: #5c5e5f;
  --neutral-95: #171818;
  --primary: #f37028;
  --primary-dark: #c25a20;
  --primary-darker: #7a3814;
  --primary-light: #f58d53;
  --primary-lighter: #f9b894;
  --secondary: #fcaf1a;
  --secondary-dark: #ca8c15;
  --secondary-darker: #7e580d;
  --secondary-light: #fdbf48;
  --secondary-lighter: #fed78d;
  --success: #4a825c;
  --success-dark: #2c4e37;
  --success-light: #ecf2ee;
  --tertiary: #0e4455;
  --tertiary-dark: #0b3644;
  --tertiary-darker: #07222b;
  --tertiary-light: #3e6977;
  --tertiary-lighter: #87a2aa;
  --text-default: #0e4455;
  --text-default-on-dark: #fff;
  --text-default-on-primary: #000;
  --text-disabled-1: #cfd4d6;
  --text-disabled-2: #b8bcbe;
  --text-light: #5c5e5f;
  --warning: #e98a15;
  --warning-dark: #8c530d;
  --warning-light: #fcf3e7;

  /* Toastify Colors */
  --toastify-color-light: var(--neutral-0);
  --toastify-color-transparent: rgba(255, 255, 255, 70%);
  --toastify-toast-width: 450px;
  --toastify-toast-background: var(--neutral-0);
  --toastify-toast-min-height: 60px;
  --toastify-toast-max-height: 800px;
  --toastify-z-index: 9999;
  --toastify-color-progress-info: var(--info);
  --toastify-color-progress-success: var(--success);
  --toastify-color-progress-warning: var(--warning);
  --toastify-color-progress-error: var(--error);

  /* Other */
  --z-index-modal: 9000;
  --z-index-overlay: 8000;
  --logo-width: 169px;
  --logo-height: 46px;
  --mobile-logo-width: 141px;
  --mobile-logo-height: 39px;
  --dashboard-logo-tablet-height: 24px;
  --dashboard-logo-tablet-width: 198px;
  --dashboard-logo-mobile-height: 31px;
  --dashboard-logo-mobile-width: 110px;
  --fw500: 500;
  --fw600: 600;
}

/* Typography - Desktop/Tablet */

/* Note - the order of these blocks is important
  If the Typography isn't before the individual classes
  giving an element both a typography class AND an single 
  attribute class doesn't work because the rules of CSS
  give precedence to the last style IN THE FILE */

.typog-hero-extra-large {
  font-weight: 600;
  font-size: 44px;
  line-height: 54px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 36px;
    line-height: 46px;
  }
}

.typog-hero-large {
  font-weight: 500;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 36px;
    line-height: 46px;
  }
}

.typog-hero-small {
  font-weight: 500;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 32px;
    line-height: 42px;
  }
}

.typog-h1-extra-large {
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 28px;
    line-height: 38px;
  }
}

.typog-h2-large {
  font-weight: 500;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 24px;
    line-height: 34px;
  }
}

.typog-h3-med {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 20px;
    line-height: 30px;
  }
}

.typog-h4-small {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.3px;

  @media screen and (width <= 767px) {
    font-size: 18px;
    line-height: 28px;
  }
}

.typog-body-large {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.3px;
}

.typog-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.3px;
}

.typog-tagline {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.25px;
}

.typog-tagline-small {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1.25px;
}

.typog-body-small {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
}

.typog-body-small-subtitle {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.25px;
}

/* Font Sizes */
.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-28 {
  font-size: 28px;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-36 {
  font-size: 36px;
}

.font-size-40 {
  font-size: 40px;
}

/* Font Weights */
.font-weight-bold {
  font-weight: 700;
}

.font-weight-light {
  font-weight: 300;
}

.font-weight-med {
  font-weight: 500;
}

.font-weight-reg {
  font-weight: 400;
}

.font-weight-reg-cell {
  font-weight: 300;
}

.font-weight-semi-bold {
  font-weight: 600;
}

/* Letter Spacing */
.letter-spacing-neg-p3 {
  letter-spacing: -0.3px;
}

.letter-spacing-neg-p5 {
  letter-spacing: -0.5px;
}

.letter-spacing-pos-p3 {
  letter-spacing: 0.3px;
}

.letter-spacing-pos-1p25 {
  letter-spacing: 1.25px;
}

/* Line Height */
.line-height-20 {
  line-height: 20px;
}

.line-height-24 {
  line-height: 24px;
}

.line-height-26 {
  line-height: 26px;
}

.line-height-28 {
  line-height: 28px;
}

.line-height-30 {
  line-height: 30px;
}

.line-height-34 {
  line-height: 34px;
}

.line-height-38 {
  line-height: 38px;
}

.line-height-42 {
  line-height: 42px;
}

.line-height-46 {
  line-height: 46px;
}

.line-height-50 {
  line-height: 50px;
}

/* Opacity */
.opac-30 {
  opacity: 0.3;
}

.opac-15 {
  opacity: 0.15;
}

.opac-02 {
  opacity: 0.02;
}
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
[role='button']:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--link);
  outline-offset: 2px;
  border-radius: 4px;
}

@keyframes spin {
  0% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* body styles */

body {
  margin: 0;
  background-color: var(--neutral-0);
  font-family: Montserrat, Arial, Helvetica, sans-serif;

  /*  z-index  */
  --z-index-modal: 9000;
  --z-index-overlay: 8000;

  /*  logo  */
  --logo-width: 169px;
  --logo-height: 46px;
  --mobile-logo-width: 141px;
  --mobile-logo-height: 39px;
  --dashboard-logo-tablet-height: 24px;
  --dashboard-logo-tablet-width: 198px;
  --dashboard-logo-mobile-height: 31px;
  --dashboard-logo-mobile-width: 110px;

  /*  font  */
  --fw500: 500;
  --fw600: 600;
}

.app {
  height: 100vh;
  width: 100vw;
  margin: 0 auto;
}

.background {
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.button-container {
  font-family: var(--font-family);
  display: flex;
  justify-content: center;
  padding-top: 48px;
  width: 100%;

  @media (width >= 768px) {
    padding-top: 64px;
    justify-content: left;
    margin: auto;
  }

  & .error-button {
    padding-top: 32px;

    @media (width >= 768px) {
      padding-top: 32px;
    }
  }

  .button-background {
    background-color: var(--primary);
    color: var(--text-default-on-primary);
    border: none;
    cursor: pointer;
    display: block;
    margin-bottom: 24px;
    padding: 13px 20px;
    width: 80%;

    :disabled {
      background-color: var(--neutral-25);
      color: var(--neutral-80);
    }

    @media (width >= 768px) {
      width: calc(50% - 12px);
    }

    & .owner-credit-auth-button {
      width: 80%;

      @media (width >= 768px) {
        width: 50%;
      }
    }

    & .padding-13px {
      padding: 13px;
    }

    & .width-60 {
      width: 60%;
    }

    & .width-80 {
      width: 80%;
    }

    & .width-280px {
      width: 280px;
    }
  }
}

.button-password {
  cursor: pointer;
  box-sizing: border-box;
  height: 44px;
  border: none;
  outline: none;
  background: url('/ui/direct-app/imgs/show-icon.svg') center top no-repeat
    scroll;
  margin-right: -25px;
  width: 44px;
  position: relative;
  right: 47px;
  top: 13px;
}

.button-password.hide-icon {
  background: url('/ui/direct-app/imgs/hide-icon.svg') center top no-repeat;
}

.button-secondary {
  background-color: var(--neutral-0);
  border: 2px solid var(--primary);
  color: var(--text-default);
  cursor: pointer;
  flex: 1;
  max-width: 282px;
  padding: 14px 0;
  width: 100%;
}

.button-text {
  display: flex;
  flex-direction: row;
  flex: 1;

  @media (width >= 768px) {
    justify-self: start;
  }

  .spacer {
    display: block;
    flex: 1;
    cursor: auto;
  }

  .text {
    color: var(--link-bright);
    justify-self: end;
    cursor: pointer;

    @media (width >= 768px) {
      justify-self: start;
    }
  }
}

.card-text {
  color: var(--text-default);
  max-width: 300px;
  text-align: center;
  margin: 16px auto;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;

  @media (width >= 768px) {
    /* These properties are taken from typog-h4-small */
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.3px;

    /* end */
    margin: 24px auto;
    margin-bottom: 0;
    max-width: 516px;
    font-weight: 400;
  }

  @media (width >= 1024px) {
    max-width: 535px;
  }
}

.checkbox {
  border: 1px solid var(--neutral-70);
  appearance: none;
  background: transparent;
  cursor: pointer;
  font-size: 27px;
  height: 24px;
  margin: 0;
  outline: 0;
  padding: 10px;
  vertical-align: top;
  width: 24px;
}

.checkbox:checked {
  align-items: center;
  background-color: var(--tertiary);
  border: none;
  color: var(--neutral-0);
  content: ' ';
  display: flex;
  justify-content: center;
  visibility: visible;
}

.checkbox:checked::after {
  content: url('/ui/direct-app/imgs/checkmark-button-white-icon.svg');
  position: relative;
  top: -2px;
}

.checkbox-container {
  margin-top: 38px;
  place-items: center center;
  display: flex;
  text-align: left;
}

.checkbox-text {
  color: var(--tertiary);
  cursor: pointer;
  margin-left: 9px;
}

.checkbox-text-container {
  flex-direction: column;
  justify-items: center;
  padding-left: 10px;
  text-align: left;
}

.cursor-pointer {
  cursor: pointer;
}

.error-color {
  color: var(--error);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-one {
  flex: 1;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.form-box {
  background-color: var(--neutral-25);
  box-sizing: border-box;
  margin-top: 32px;
  padding: 32px 24px 8px;
  width: 100%;
}

.full-width {
  width: 100%;
}

.icon-image {
  height: 24px;
  width: 24px;
  margin-right: 8px;
}

.icon-large-central {
  height: 96px;
  width: 96px;
  margin: 24px auto;
}

.input-container {
  font-family: var(--font-family);
  display: flex;
  flex-direction: column;
  margin: 0;
  text-align: left;
  width: auto;

  @media (width >= 768px) {
    width: 48%;
  }

  @media (width >= 1024px) {
    width: 45%;
  }

  @media (width >= 1200px) {
    width: 48%;
  }

  select {
    appearance: none;
    background: url('/ui/direct-app/imgs/chevron-down.svg') 97% 50% no-repeat
      scroll;
    background-repeat: no-repeat;
    border-radius: 0 !important;
  }

  select:invalid {
    color: gray;
  }

  input {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.3px;
  }
}

.input-error {
  background-color: var(--neutral-0);
  border: 1px solid var(--error);
  color: var(--tertiary);
  font-family: var(--font-family);
  box-sizing: border-box;
  height: 40px;
  outline: none;
  padding-left: 12px;
  width: 100%;

  ::-webkit-outer-spin-button,
  ::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
  }
}

.input-label {
  color: var(--tertiary);
  padding: 30px 0 5px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap-mode: nowrap;
}

.input-radio-option-label {
  margin-right: 32px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 20px auto;
  gap: 16px;

  input[type='radio'] {
    margin: 0;
    appearance: none;
    background-color: var(--neutral-0);
    display: grid;
    place-content: center;
    transform: translateY(-2px);
  }

  input[type='radio']::before {
    content: '';
    width: 24px;
    height: 24px;
    transition: 120ms transform ease-in-out;
    background: url('/ui/direct-app/imgs/radio-button-default-icon.svg') center
      no-repeat scroll;
  }

  input[type='radio']:checked::before {
    background: url('/ui/direct-app/imgs/radio-button-selected-icon.svg') center
      no-repeat scroll;
  }
}

.input-styled {
  font-family: var(--font-family);
  background-color: var(--neutral-0);
  border: 1px solid var(--neutral-70);
  color: var(--tertiary);
  box-sizing: border-box;
  height: 40px;
  outline: none;
  padding-left: 12px;
  width: 100%;

  ::-webkit-outer-spin-button,
  ::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
  }

  :read-only {
    background-color: var(--neutral-25);
    color: var(--tertiary);
    font-weight: 600;
  }

  :hover {
    border: 1px solid var(--tertiary);
  }

  :-webkit-autofill,
  :-webkit-autofill:hover,
  :-webkit-autofill:focus,
  :-webkit-autofill:active {
    border: 1px solid var(--tertiary);
    border-radius: 0;
    box-shadow: 0 0 0 30px var(--netural-0) inset;
    outline: none;
    color: var(--tertiary);
  }

  :active {
    border: 1px solid var(--tertiary);
  }

  :focus-visible {
    border: 1px solid var(--tertiary);
    border-radius: 0;
    outline: none;
  }
}

.input-unit-label {
  border: none;
  box-sizing: border-box;
  cursor: inherit;
  height: 15px;
  margin-right: -25px;
  outline: none;
  position: relative;
  right: 20px;
  user-select: none;
  top: 13px;
  width: 25px;
}

.hilight-box {
  display: flex;
  flex-direction: row;
  padding: 15px;
  margin: 24px 0 8px;

  @media (width >= 768px) {
    margin: 32px 0 4px;
  }

  &.info {
    background-color: var(--info-light);
    border-left: 5px solid var(--info);
  }

  .text {
    color: var(--info-dark);
  }
}

.link {
  color: var(--link-bright);
}

.margin-20 {
  margin: 20px;
}

.modal-button-container {
  margin: 40px auto;
  text-align: center;
  justify-content: center;
}

.overflow-text {
  text-overflow: ellipsis;
  overflow: hidden;
}

.page-info {
  color: var(--neutral-80);
  margin: 8px 0 0;

  @media (width >= 768px) {
    display: block;
    font-weight: 400;
    padding-bottom: 10px;
  }
}

.round {
  border-radius: 50%;
}

.section-divider {
  border-bottom: 1px solid var(--neutral-50);
  margin-bottom: 6px;
  height: 1px;

  @media (width >= 768px) {
    margin-bottom: 8px;
    margin-top: 26px;
  }
}

.section-title {
  color: var(--tertiary);
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  border: none;

  @media (width >= 768px) {
    column-gap: 24px;
    flex-flow: row wrap;
  }
}

.spinning-icon {
  animation: spin infinite 2s linear;
}

.sub-title {
  color: var(--tertiary);
  padding-top: 12px;

  @media (width >= 768px) {
    padding-top: 40px;
  }
}

.banner-success {
  background-color: var(--neutral-35);
  border-left: 4px solid var(--success);
  align-items: center;
  border-radius: 2px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  height: 56px;
  margin: 20px auto;
  margin-top: 16px;
  padding: 0 16px;
  width: 100%;

  .banner-icon {
    height: 24px;
    width: 24px;
  }

  .close-icon {
    cursor: pointer;
  }

  .banner-text {
    color: var(--success-dark);
    flex: 1;
    margin-left: 8px;
  }
}

.title {
  display: none;

  @media (width >= 768px) {
    color: var(--tertiary);
    display: block;
  }
}

.title-description {
  display: none;

  @media (width >= 768px) {
    display: block;
    margin: 24px 0 40px;
    color: var(--text-light);
  }
}

.upload-drop-area {
  background-color: var(--neutral-15);
  border: 1px dashed var(--neutral-70);
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  height: 78px;
  justify-content: center;
  padding-top: 0;
  width: 100%;

  @media (width >= 768px) {
    flex-direction: column;
    padding-bottom: 16px;
    padding-top: 16.5px;
  }

  &.disabled {
    cursor: not-allowed;
  }

  .upload-box-text {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    margin-right: auto;
    pointer-events: none;

    @media (width >= 768px) {
      width: 100%;
    }

    input {
      display: none;
    }

    div {
      display: none;

      @media (width >= 768px) {
        display: block;
      }

      &.link {
        color: var(--link-bright);
        margin: 0 3px;
        pointer-events: none;
      }

      &.browse-files {
        display: block;
        height: 20px;
        text-align: center;

        @media (width >= 768px) {
          display: none;
        }
      }
    }
  }

  .upload-cloud {
    height: 20.61px;
    margin: 0 6px 0 auto;
    pointer-events: none;
    width: 24px;

    @media (width >= 768px) {
      margin: 0 auto;
      margin-bottom: 6px;
    }

    .upload-icon {
      display: none;

      @media (width >= 768px) {
        display: block;
      }
    }

    .upload-icon-blue {
      display: block;

      @media (width >= 768px) {
        display: none;
      }
    }
  }
}

.validation-error {
  color: var(--error);
  margin-top: 4px;
}

.wait {
  cursor: wait;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button-background.owner-credit-auth-button:focus-visible {
  outline: 3px solid var(--link);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--link);
  color: white;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
  left: 0;
  background: var(--link);
  color: #fff;
  padding: 8px;
  z-index: 1000;
}
