:root {

  /* Color variables */
  --primary-color: #03234E;
  --secondary-color: #5186A2;
  --button-color: #FA7E05;
  --button-color-rgb: 250, 126, 5;
  --button-hover-color: #FF623E;
  --button-disabled-color: #cccccc;
  --white: #ffffff;
  --light-blue: #e9f3fe;
  --light-gray: #f7f8fc;
  --medium-gray: #d1d5db;
  --dark-gray: #6b7280;
  --green: #008000;
  --green-hover: #047857;
  --light-red: #fee2e2;
  --red: #ff0000;
  --red-hover: #b91c1c;
  --box-shadow: rgba(0, 0, 0, 0.1);
  --oneloan-highlight: #005eff;
  --oneloan-highlight-hover: #1d4ed8;
  /* Font family variables */
  --primary-font-family: "Manrope", sans-serif;

  /* Font size variables */
  --font-size-smaller: 0.73rem;
  --font-size-small: 0.8rem;
  --font-size-medium: 1.1rem;
  --font-size-large: 1.2rem;
  --font-size-xlarge: 1.5rem;
  --font-size-xxlarge: 2.0rem;
  --font-size-xxxlarge: 3.5rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}


/* Typography */

html {
  font-size: var(--font-size-medium);
  line-height: 1.5;
}

body {
  font-family: var(--primary-font-family);
  color: var(--primary-color);
  font-weight: 400;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--primary-font-family);
  font-weight: 600;
  padding: 0.5rem 0;
  margin: 0;
}

h1, .h1 { font-size: var(--font-size-xxxlarge); }
h2, .h2 { font-size: var(--font-size-xxlarge); }
h3, .h3 { font-size: var(--font-size-xlarge); }
h4, .h4 { font-size: var(--font-size-large); }

small,
.small {
  font-size: var(--font-size-small);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

a:focus {
  color: var(--secondary-color);
  text-decoration: underline;
  outline: none;
}

sup {
    font-size: var(--font-size-small);
    top: -0.3rem;
    padding: 0 0.1rem;
}

sup a {
    color: var(--white);
    text-decoration: none;
}

.hidden,
.js-hidden {
  display: none;
}

.visible,
.js-visible {
  display: block;
}

/* Section and container */

section {
  width: 100%;
  padding: 1.5rem 1rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}

.grid-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 2rem;
}

.full-width {
  width: 100%;
}

.notice {
  color: var(--green);
}

.alert {
  color: var(--red);
}

/* required label for form fields */
.required-label::after {
  content: "*";
  color: var(--red);
  margin-left: 4px;
}

/* Accessibility Helpers */
.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;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* Layout Components */
.admin .nav-container {
  background-color: var(--light-gray);
  padding: 1rem;
  box-shadow: 0 2px 4px var(--box-shadow);
}

.admin .nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.admin .nav-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.admin .nav-title a {
  text-decoration: none;
  color: var(--primary-color);
}

.admin .nav-title a:hover {
  color: var(--oneloan-highlight);
}

.admin .nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Link Styles */
.admin .user-email,
.admin .back-link {
  color: var(--dark-gray);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s;
  font-weight: 500;
  border-radius: 0.375rem;
}

.admin .user-email {
  color: var(--oneloan-highlight);
  margin-right: 2rem;
}

.admin .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.admin .user-email:hover,
.admin .back-link:hover {
  color: var(--oneloan-highlight);
}

.admin .back-link i {
  font-size: 0.875rem;
}

/* Container Layouts */
.admin .admin-container,
.admin .form {
  background-color: var(--light-gray);
  border-radius: 20px;
  margin: 1.5rem auto;
  padding: 2rem;
}

.admin .admin-container {
  max-width: 1120px;
  padding: 2rem 20px;
}

.admin .form {
  width: 100%;
  max-width: 600px;
  background-color: var(--white);
  box-shadow: 0 1px 3px var(--box-shadow);
}

/* Form Components */
.admin .form-header {
  margin-bottom: 2rem;
}

.admin .form-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.admin .field {
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
}

.admin .field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: left;
}

/* Input Styles */
.admin .field input,
.admin .field select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: 0.375rem;
  background-color: var(--white);
  font-size: 0.875rem;
}

.admin .field input:focus,
.admin .field select:focus {
  outline: none;
  border-color: var(--oneloan-highlight);
  box-shadow: 0 0 0 2px var(--box-shadow);
}

.admin .field input:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
}

.admin .helper-text {
  display: block;
  margin-top: 0.5rem;
  color: var(--dark-gray);
  font-size: 0.875rem;
}

/* Button Base Styles */
.admin .logout-btn,
.admin .update-button,
.admin .actions input[type="submit"],
.admin .delete-button,
.admin .restore-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  line-height: 1.25rem;
  min-width: 100px;
}

/* Primary Button Styles */
.admin .logout-btn,
.admin .update-button,
.admin .actions input[type="submit"] {
  background-color: var(--oneloan-highlight);
  font-weight: 800;
  font-size: 16px;
}

.admin .logout-btn:hover,
.admin .update-button:hover,
.admin .actions input[type="submit"]:hover {
  background-color: var(--oneloan-highlight-hover);
}

.admin .actions input[type="submit"] {
  margin: 1rem auto;
  display: block;
}

/* Action Button Variants */
.admin .danger-zone {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.admin .delete-button,
.admin .restore-button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.admin .danger-zone form {
  width: auto;
  margin: 0;
}

.admin .delete-button {
  background-color: var(--red);
}

.admin .delete-button:hover {
  background-color: var(--red-hover);
}

.admin .restore-button {
  background-color: var(--green);
}

.admin .restore-button:hover {
  background-color: var(--green-hover);
}

/* Remember Me Checkbox */
.admin .field.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.admin .field.remember-me input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.admin .field.remember-me label {
  margin: 0;
}

/* Flash Messages */
.admin .flash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem auto;
  padding: 0 1rem;
}

.admin .notice,
.admin .alert {
  margin-bottom: 1rem;
  padding: 0.75rem 2.5rem;
  border-radius: 0.375rem;
  text-align: center;
  max-width: max-content;
  min-width: 500px;
}

.admin .notice {
  background-color: var(--light-blue);
  color: var(--primary-color);
}

.admin .alert {
  background-color: var(--light-red);
  color: var(--red);
}

.admin .alert-heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.admin .alert-list {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: none;
}

.admin .alert-list li {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.admin .alert-list li:last-child {
  margin-bottom: 0;
}

/* Session-specific Styles */
.admin.sessions.new .actions input[type="submit"] {
  height: auto;
}

.forgot-password-link {
  margin-bottom: 2rem;
}
:root {
  /* Colors */
  --primary-blue-light: #0075C9;
  --primary-blue-dark: #003366;
  --pbd-low-opacity: rgba(0, 51, 102, 0.1);
  --light-gray: #F0F5F8;
  --dark-gray: #373A36;

  /* Font Sizes - from comp */
  --cl-font-size-smaller: 0.625rem; /* 10px */
  --cl-font-size-small: 0.9375rem; /* 15px */
  --cl-font-size-medium: 1.25rem; /* 20px */
  --cl-font-size-large: 1.5625rem; /* 25px */
  --cl-font-size-xlarge: 1.875rem; /* 30px */
  --cl-font-size-xxlarge: 2.1875rem; /* 35px */
  --cl-font-size-xxxlarge: 2.8125rem; /* 45px */

  /* Font Family */
  --avenir-font: 'Avenir', sans-serif;
}

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

.clearonerelief body {
  font-family: var(--avenir-font);
}

.clearonerelief h1,
.clearonerelief h2,
.clearonerelief .h1,
.clearonerelief .h2 {
  font-size: var(--cl-font-size-xlarge);
}

.clearonerelief h3,
.clearonerelief .h3 {
  font-size: var(--cl-font-size-medium);
}

.clearonerelief h4,
.clearonerelief .h4,
.clearonerelief .h5 {
  font-size: var(--cl-font-size-small);
}

.clearonerelief p {
  font-size: var(--cl-font-size-small);
  font-weight: 300;
}

@media (min-width: 768px) {
  .clearonerelief h1,
  .clearonerelief h2,
  .clearonerelief .h1,
  .clearonerelief .h2 {
    font-size: var(--cl-font-size-xxlarge);
  }
  .clearonerelief h3,
  .clearonerelief .h3 {
    font-size: var(--cl-font-size-xxlarge);
  }
  .clearonerelief h4,
  .clearonerelief .h4 {
    font-size: var(--cl-font-size-large);
  }
  .clearonerelief .h5,
  .clearonerelief p {
    font-size: var(--cl-font-size-medium);
  }
}

.clearonerelief .container {
  max-width: 800px;
}

@media (min-width: 1024px) {
  .clearonerelief .container {
    max-width: 1280px;
  }
}

.clearonerelief .link-button,
.clearonerelief .link-button:visited {
  background-color: var(--button-color);
  color: var(--white);
  border: 1px solid var(--button-color);
  border-radius: 2.5rem;
  font-size: var(--font-size-medium);
  font-weight: 600;
  padding: 1rem;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  text-decoration: none;
}
  
.clearonerelief .link-button:hover,
.clearonerelief .link-button:focus {
  background-color: var(--button-hover-color);
  border: 1px solid var(--button-hover-color);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}
  
.clearonerelief .link-button.disabled {
  background-color: var(--button-disabled-color);
  border: 1px solid var(--button-disabled-color);
  cursor: not-allowed;
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .clearonerelief .link-button {
    padding: 1rem 3rem;
  }
}


/* Stepped Version of Form */
.clearonerelief .section.form-section .form-container .leadform {
  max-height: none;
  transition: max-height 0.3s ease;
  background-color: var(--light-gray);
  border-radius: 2rem;
  padding: 2rem 0 3rem 0;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-template-areas:
    "slide-progress"
    "form-title"
    "form-panel";
}

.clearonerelief .section.form-section .form-container .leadform.form-constrained {
  max-height: 580px;
}

.clearonerelief .form-container .form-title {
  margin-top: 0;
  grid-area: form-title;
  text-align: center;
}

.clearonerelief .slide-progress {
  grid-area: slide-progress;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.clearonerelief .form-container .form-panel {
  transition: opacity 0.3s ease;
  grid-area: form-panel;
}

.clearonerelief .form-container .form-panel.panel-active {
  opacity: 1;
  z-index: 3;
}

.clearonerelief .form-container .form-panel {
  opacity: 0;
}

.clearonerelief .section.form-section .fieldset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.clearonerelief .leadform .leadform-input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: clamp(300px, 100%, 530px);
}

.clearonerelief .leadform-input,
.clearonerelief .select-field {
  border: 1px solid var(--button-disabled-color);
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.clearonerelief .button-container {
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.clearonerelief .link-button.back-button {
  min-width: none;
}

.clearonerelief .link-button.back-button,
.clearonerelief .link-button.next-button,
.clearonerelief .link-button.submit-button {
  padding: 1.2rem 1rem 1rem 1rem;
}

.clearonerelief .link-button.submit-button:disabled {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  cursor: not-allowed;
}

/* Container for the entire progress tracker */
.clearonerelief .slide-progress {
  width: 100%;
  margin: 2rem 0;
}

.clearonerelief .slide-progress-stack {
  width: clamp(330px, 100%, 500px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Top cell containing labels */
.clearonerelief .slide-progress-cell.top-cell {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .clearonerelief .slide-progress-cell.top-cell {
    padding: 0;
  }
}

/* Progress labels */
.clearonerelief .progress-label {
  color: var(--oneloan-blue);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  width: 100px;
}

@media (min-width: 768px) {
  .clearonerelief .progress-label {
    width: auto;
    min-width: 110px;
  }

  .clearonerelief .progress-label:first-of-type {
    text-align: left;
  }

  .clearonerelief .progress-label:last-of-type {
    text-align: right;
  }
}

/* Lower cell containing dots and lines */
.clearonerelief .slide-progress-cell.lower-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

/* Base dot style */
.clearonerelief .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--pbd-low-opacity);
  flex-shrink: 0;
}

/* Active dot style */
.clearonerelief .dot.progress-active {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-blue-dark);
  flex-shrink: 0;
}

/* Connecting line */
.clearonerelief .line {
  flex: 1;
  height: 1px;
  background-color: var(--pbd-low-opacity);
  margin: 0 8px;
}

.clearonerelief .line.progress-active {
  flex: 1;
  height: 1px;
  background-color: var(--primary-blue-dark);
  margin: 0 8px;
}

.clearonerelief .price-field:focus,
.clearonerelief .price-field:focus-visible {
  border-width: 1.3px;
  border-color: var(--primary-blue-dark);
}

.clearonerelief .section.form-section .form-container .leadform p.user-info {
  display: none;
}

/* Offer Form */
.clearonerelief .section.form-section .form-container.static-form .leadform {
  padding: 3rem 2rem;
  grid-template-columns: 100%;
  grid-template-rows: repeat(11, auto);
  gap: 1.5rem;
  justify-content: center;
  transition: max-height 0.3s ease;
}

.clearonerelief .section.form-section .form-container.static-form .leadform.form-constrained {
  max-height: 800px;
}

@media (min-width: 768px) {
  .clearonerelief .section.form-section .form-container.static-form .leadform.form-constrained {
    max-height: 700px;
  }
}

.clearonerelief .static-form .leadform .slide-progress,
.clearonerelief .static-form .leadform .form-title {
  display: none;
}

.clearonerelief .static-form .leadform .leadform-input-container {
  justify-self: center;
}

.clearonerelief .leadform p.user-info-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.clearonerelief .static-form .leadform .input-group-phone {
  grid-area: 2 / 1 / 3 / 2;
}

.clearonerelief .static-form .leadform .input-group-email {
  grid-area: 3 / 1 / 4 / 2;
}

.clearonerelief .leadform p.user-info-2 {
  grid-area: 4 / 1 / 5 / 2;
}

.clearonerelief .static-form .leadform .input-group-firstname {
  grid-area: 5 / 1 / 6 / 2;
}

.clearonerelief .static-form .leadform .input-group-lastname {
  grid-area: 6 / 1 / 7 / 2;
}

.clearonerelief .static-form .leadform .input-group-street {
  grid-area: 7 / 1 / 8 / 2;
}

.clearonerelief .static-form .leadform .input-group-city {
  grid-area: 8 / 1 / 9 / 2;
}

.clearonerelief .static-form .leadform .input-group-state {
  grid-area: 9 / 1 / 10 / 2;
}

.clearonerelief .static-form .leadform .input-group-zip {
  grid-area: 10 / 1 / 11 / 2;
}

.clearonerelief .static-form .leadform .debt-slider-fieldset {
  grid-area: 11 / 1 / 12 / 2;
  justify-self: center;
}

@media (min-width: 768px) {
  .clearonerelief .section.form-section .form-container.static-form .leadform {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(7, auto);
  }

  .clearonerelief .leadform p.user-info-1 {
    grid-area: 1 / 1 / 2 / 3;
  }

  .clearonerelief .static-form .leadform .input-group-phone {
    grid-area: 2 / 1 / 3 / 2;
  }

  .clearonerelief .static-form .leadform .input-group-email {
    grid-area: 2 / 2 / 3 / 3;
  }

  .clearonerelief .leadform p.user-info-2 {
    grid-area: 3 / 1 / 4 / 3;
  }

  .clearonerelief .static-form .leadform .input-group-firstname {
    grid-area: 4 / 1 / 5 / 2;
  }

  .clearonerelief .static-form .leadform .input-group-lastname {
    grid-area: 4 / 2 / 5 / 3;
  }

  .clearonerelief .static-form .leadform .input-group-street {
    grid-area: 5 / 1 / 6 / 2;
  }

  .clearonerelief .static-form .leadform .input-group-city {
    grid-area: 5 / 2 / 6 / 3;
  }

  .clearonerelief .static-form .leadform .input-group-state {
    grid-area: 6 / 1 / 7 / 2;
  }

  .clearonerelief .static-form .leadform .input-group-zip {
    grid-area: 6 / 2 / 7 / 3;
  }

  .clearonerelief .static-form .leadform .debt-slider-fieldset {
    grid-area: 7 / 1 / 8 / 3;
  }
}

.clearonerelief .section.form-section .form-container.static-form .leadform p.user-info {
  display: block;
  font-weight: bold;
  font-size: 1rem;
}

.clearonerelief .static-form .leadform .form-contact-info {
  grid-area: 5 / 1 / 12 / 2;
  z-index: 3;
  background-color: var(--light-blue);
  border-radius: 2rem;
  padding: 2rem 1rem;
  transition: opacity 0.3s ease;
  max-height: 350px;
}

@media (min-width: 768px) {
  .clearonerelief .static-form .leadform .form-contact-info {
    padding: 2rem;
  }
}

.clearonerelief .static-form .leadform .form-contact-info.static-hide {
  opacity: 0;
  z-index: -1;
}

@media (min-width: 768px) {
  .clearonerelief .static-form .leadform .form-contact-info {
    grid-area: 4 / 1 / 8 / 3;
  }
}

.form-display-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .form-display-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr) auto;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      "name address edit"
      "loan loan loan";
    row-gap: 20px;
  }
}

@media screen and (min-width: 992px) {
  .form-display-fields {
    row-gap: 40px;
  }
}

.clearonerelief .form-display-fields .display-label {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
}

.clearonerelief .static-form .name-field {
  grid-area: name;
  order: 2;
}

.clearonerelief .static-form .address-field {
  grid-area: address;
  order: 3;
}

.clearonerelief .static-form .edit-wrapper {
  grid-area: edit;
  order: 1;
}

.clearonerelief .static-form .loan-field {
  grid-area: loan;
  order: 4;
}

.clearonerelief .form-edit-button {
  background: transparent;
  border: none;
  color: var(--dark-blue);
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
}

.clearonerelief .static-form .leadform .static-hide-default {
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.clearonerelief .static-form .leadform .static-hide-default.static-show {
  opacity: 1;
  z-index: 3;
}
/* Navbar */
.clearonerelief .header-phone-number-heading {
  min-width: 185px;
  padding-right: 1rem;
  padding-top: 0.25rem;
  display: none;
}

.clearonerelief .header-phone-number {
  display: none;
  min-width: 200px;
}

.clearonerelief .header-phone-number-mobile .link-button {
  padding: 0.75rem 0.75rem 0.5rem;
  color: var(--white);
}

@media (min-width: 1024px) {
  .clearonerelief header.container {
    padding: 1.5rem 2rem 1rem;
  }

  .clearonerelief .clearone-logo-container {
    width: 65%;
  }

  .clearonerelief .header-phone-number-heading,
  .clearonerelief .header-phone-number {
    display: block;
  }

  .clearonerelief .header-phone-number-mobile {
    display: none;
  }
}

.clearonerelief .header-phone-number .link-button,
.clearonerelief .header-phone-number .link-button:hover,
.clearonerelief .header-phone-number .link-button:visited,
.clearonerelief .header-phone-number .link-button:active {
  color: var(--white);
}

.clearonerelief .header-phone-number .link-button {
  max-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}

.clearonerelief .header-phone-number .link-button .phone-number {
  padding-top: 0.25rem;
}

.clearonerelief .header-phone-number .phone-icon {
  margin-right: 0.5rem;
  width: 20px;
  height: 20px;
}

.clearonerelief .clearone-logo-container {
  padding-top: 0.4rem;
}

.clearonerelief .hero-section {
  background-image: linear-gradient(to bottom, var(--primary-blue-dark) 15%, #006fc0);
  color: white;
}
.clearonerelief .hero-section .hero-header {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .clearonerelief .hero-section .hero-header,
  .clearonerelief .hero-section .hero-subheading {
    text-align: center;
  }
}
/* End navbar */

/* Hero Grid */
.clearonerelief .hero-section .grid-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-areas:
    "feature-1"
    "feature-2"
    "validate-form"
    "phone-cta"
    "logo"
    "copy";
  gap: 0;
  row-gap: 1rem;
  max-width: 1280px;
  margin: 1rem auto;
}

.clearonerelief .hero-section .grid-content .clearone-logo-white {
  width: clamp(200px, 65%, 250px);
}

@media (min-width: 1024px) {
  .clearonerelief .hero-section .grid-content {
    grid-template-columns: 1.5fr repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "logo feature-1 feature-2"
      "copy phone-cta phone-cta"
      "validate-form phone-cta phone-cta";
    column-gap: 3rem;
    align-items: end;
    margin: 6rem auto 2rem auto;
  }
}

.clearonerelief .hero-section .grid-content .clearone-logo-white {
  grid-area: logo;
}

.clearonerelief .hero-section .grid-content .hero-copy-container {
  grid-area: copy;
  max-width: 76%;
}

@media (min-width: 1024px) {
  .clearonerelief .hero-section .grid-content .hero-copy-container {
    max-width: 62%;
  }
}

.clearonerelief .hero-copy-container p.narrow:nth-child(2) {
  font-weight: 300;
}

.clearonerelief .hero-section .grid-content .feature-1 {
  grid-area: feature-1;
  align-self: start;
  height: 50px;
  margin: 0;
}

.clearonerelief .hero-section .grid-content .feature-2 {
  grid-area: feature-2;
  align-self: start;
  height: 50px;
  margin: 0;
}

.clearonerelief .hero-section .grid-content .phone-cta-panel {
  grid-area: phone-cta;
  height: 85%;
}

.clearonerelief .hero-section .grid-content .validate-form-container {
  grid-area: validate-form;
  margin: 0;
  background-image: linear-gradient(to bottom, var(--white) 20%, var(--light-blue) 76%);
  padding: 2rem;
  border-radius: 0.5rem;
  color: var(--primary-color);
}

.clearonerelief .hero-section .grid-content .feature-1 .feature-number {
  margin-right: 0.5rem;
  font-weight: 800;
  font-size: var(--cl-font-size-xxlarge);
}

.clearonerelief .hero-section .feature-container .loans,
.clearonerelief .hero-section .feature-container .rates {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(to bottom, var(--white) 20%, var(--light-blue) 76%);
  padding: 1rem 0 0.5rem 0;
  border-radius: 0.5rem;
  color: var(--primary-color);
  margin: 0 auto;
  height: 100%;
}
/* End Hero Grid */

/* Reference form */
.clearonerelief .reference-form-stacked .input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clearonerelief .reference-form-stacked label[for="reference-number"] {
  font-weight: 800;
  font-size: var(--cl-font-size-medium);
}

.clearonerelief .reference-form-stacked .reference-number-field {
  max-width: 350px;
}

.clearonerelief .reference-form-stacked .disclaimer-plus-text {
  font-size: var(--cl-font-size-small);
}

.clearonerelief .reference-form-stacked .disclaimer-plus-text a,
.clearonerelief .reference-form-stacked .disclaimer-plus-text a:hover {
  font-weight: bold;
}
/* End Reference form */

/* Checkmarks Section 1 */
.clearonerelief section.checkmarks-section .container {
  max-width: 1280px;
}

.clearonerelief .numbered-section {
  background-color: var(--primary-blue-dark);
  color: var(--white);
}

.clearonerelief .checkmarks-section-1 .checkmark:first-child,
.clearonerelief .checkmarks-section-1 .checkmark:nth-child(2) {
  border-bottom: 1px solid var(--primary-blue-light);
}

.clearonerelief .checkmarks-section .checkmark {
  padding: 1rem 0;
}

@media (min-width: 1024px) {
  .clearonerelief .checkmark p.h4 {
    font-size: var(--cl-font-size-medium);
  }

  .clearonerelief .checkmarks-section-1 .checkmark:first-child,
  .clearonerelief .checkmarks-section-1 .checkmark:nth-child(2) {
    border-bottom: none;
  }
}

.clearonerelief .numbered-section .checkmark .icon {
  background-color: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  padding: 0.6rem;
  margin: 0 1rem 0 0;
  max-width: 50px;
  min-width: 50px;
  max-height: 50px;
  min-height: 50px;
  height: 50px;
  width: 50px;
}

.clearonerelief .numbered-section .checkmark .icon_1 {
  margin-right: 4px;
}

.clearonerelief .numbered-section .checkmark .icon_2,
.clearonerelief .numbered-section .checkmark .icon_3 {
  margin-right: 0;
}
/* End Checkmarks Section 1 */

/* About Section */
.clearonerelief .about-section {
  background-image: url(/assets/clearoneabout-mobile-eeb3778c71fa6a2bc8da0bc0b50471f151757c899240d650546ab0cfba18dfca.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

@media (min-width: 768px) {
  .clearonerelief .about-section {
    background-image: linear-gradient(rgba(240, 245, 248, 0.8), rgba(240, 245, 248, 0.8)), url(/assets/clearoneabout-tablet-198800d7b93e41645050a4472e9de1d4ee77d232bcd854184fe487a8195c3cb5.jpg);
  }
}

@media (min-width: 1024px) {
  .clearonerelief .about-section {
    background-image: url(/assets/clearoneabout-36d5f4d8ab54f1996e1ad9ddc3916aa5db56ba339424d7e5b66cccdd7e98e654.jpg);
    background-position: 90%;
  }
}

.clearonerelief .about-section .container { 
  padding: 2rem;
}

.clearonerelief .about-section .about-copy-container {
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .clearonerelief .about-section .about-header {
    margin: 4rem 0;
  }

  .clearonerelief .about-section .about-copy-container {
    margin-bottom: 4rem;
  }
}

.clearonerelief .about-section .about-cta-container {
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .clearonerelief .about-section .phone-cta-panel {
    max-width: 50%;
  }
}

.clearonerelief .about-section .about-review-container {
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: 1fr;
  grid-template-areas:
  "image copy";
  justify-content: center;
  gap: 1rem;
  background-color: var(--light-gray);
  padding: 1rem 2rem;
}

.clearonerelief .about-section .review-image{
  border-radius: 50%;
  width: 100%;
  grid-area: image;
}

.clearonerelief .about-section .trustpilot-rating {
  max-height: 12px;
}

.clearonerelief .about-section .review-copy-container {
  grid-area: copy;
}

.clearonerelief .about-section .review-copy {
  font-style: italic;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 0;
}

.clearonerelief .about-section .review-author {
  margin-top: 0;
}

@media (min-width: 768px) {
  .clearonerelief .about-section .review-copy {
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .clearonerelief .about-section .review-author {
    margin-top: 1rem;
  }

  .clearonerelief .about-section .trustpilot-rating {
    max-height: none;
  }
}

@media (min-width: 1024px) {
  .clearonerelief .about-section .about-review-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: transparent;
    gap: 2rem;
    grid-template-columns: 180px 370px 1fr;
    grid-template-areas:
    "image copy spacer";
    padding-bottom: 3rem;
  }
}
/* End About Section */

/* Checkmarks Section 2 */
.clearonerelief .checkmarks-section-2 {
  background-color: var(--primary-blue-light);
}

.clearonerelief .checkmarks-section-2 .checkmark:first-child,
.clearonerelief .checkmarks-section-2 .checkmark:nth-child(2) {
  border-bottom: 1px solid var(--primary-blue-dark);
}

@media (min-width: 1024px) {
  .clearonerelief .checkmarks-section-2 .checkmark:first-child,
  .clearonerelief .checkmarks-section-2 .checkmark:nth-child(2) {
    border-bottom: none;
  }
}
/* End Checkmarks Section 2 */

/* Trustmarks Section */
.clearonerelief section.trustmarks-section {
  background-color: var(--light-gray);
}

.clearonerelief .trustmarks-header {
  text-align: center;
  margin: 2rem 0;
}

.clearonerelief .trustmarks-grid {
  flex-direction: column;
  gap: 0;
}

.clearonerelief .trustmark-copy-bold {
  font-weight: 800;
}

.clearonerelief .trustmark-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.clearonerelief .trustmark-logo {
  max-width: 170px;
}

.clearonerelief .trustmark-stars {
  max-height: 12px;
}

@media (min-width: 768px) {
  .clearonerelief .trustmarks-header {
    margin: 2rem 0 6rem;
  }

  .clearonerelief .trustmarks-grid {
    flex-direction: row;
  }

  .clearonerelief .trustmark-container:first-child,
  .clearonerelief .trustmark-container:nth-child(2) {
    border-right: 1px solid var(--dark-gray);
  }

  .clearonerelief .trustmark-logo {
    max-width: 50%;
    height: auto;
  }

  .clearonerelief .trustmark-container-1 .trustmark-logo {
    max-width: 65%;
  }

  .clearonerelief .trustmark-stars {
    max-height: none;
  }

  .clearonerelief .trustmark-container.trustmark-container {
    width: 33%;
  }

  .clearonerelief .trustmark-container.trustmark-container-1 {
    align-self: flex-start;
  }
}
/* End Trustmarks Section */

/* Footer */
.clearonerelief .footer-link-container:first-child,
.clearonerelief .footer-link-container:nth-child(2) {
  border-right: 1px solid var(--white);
  padding-right: 1rem;
}

.clearonerelief .footer-container p.footnotes {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .clearonerelief .footer-container p.footnotes {
    text-align: center;
  }
}

.clearonerelief .footer-links-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.clearonerelief .footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* End Footer */
.clearonerelief .container.copy-container {
  text-align: center;
}

.clearonerelief .container.copy-container p {
  font-size: var(--cl-font-size-small);
  margin: 0;
}

.clearonerelief .form-page-title {
  font-size: var(--cl-font-size-xxlarge);
}

@media (min-width: 768px) {
  .clearonerelief .form-page-title {
    font-size: var(--cl-font-size-xxxlarge);
  }
}

.clearonerelief .section {
  width: 100%;
  max-width: 1160px;
  margin: 2rem auto;
}
.clearonerelief .body.success .link-button.return-button {
  text-align: center;
}
:root {
  --table-height: 92px;
}

/* Terms */
.clearonerelief.terms main .container {
  overflow: auto;
}

.clearonerelief.terms .terms-title {
  text-align: center;
  margin-bottom: 4rem;
}

/* Privacy */
.clearonerelief.privacy .section {
  margin: 0 auto;
}

.clearonerelief.privacy .container {
  overflow: auto;
}

.clearonerelief.privacy .privacy-title {
  text-align: center;
  margin-bottom: 4rem;
}

/* Shared table styles */
.clearonerelief.privacy table {
  margin-bottom: 2rem;
}

.clearonerelief.privacy .privacy-facts-table,
.clearonerelief.privacy .limit-sharing-table {
  border-collapse: collapse;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: var(--table-height);
}

.clearonerelief.privacy .privacy-facts-table caption,
.clearonerelief.privacy .limit-sharing-table caption,
.clearonerelief.privacy .reasons-table caption {
  margin-bottom: 0.5rem;
}

.clearonerelief.privacy .privacy-facts-table-body,
.clearonerelief.privacy .limit-sharing-table-body {
  height: var(--table-height);
}

.clearonerelief.privacy .privacy-facts-table-row,
.clearonerelief.privacy .limit-sharing-table-row {
  height: var(--table-height);
}

.clearonerelief.privacy .privacy-facts-table-cell,
.clearonerelief.privacy .limit-sharing-table-cell {
  vertical-align: top;
  background-color: var(--white);
  height: var(--table-height);
  padding: 4px;
}

/* Ensure sufficient color contrast */
.clearonerelief.privacy .privacy-facts-table-cell,
.clearonerelief.privacy .limit-sharing-table-cell,
.clearonerelief.privacy .reasons-table-cell {
  color: var(--dark-gray);
}

/* Focus styles for interactive elements */
.clearonerelief.privacy table:focus-within {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}

.clearonerelief.privacy .privacy-facts-table-cell:first-child,
.clearonerelief.privacy .limit-sharing-table-cell:first-child {
  width: 23%;
}

.clearonerelief.privacy .privacy-facts-table-cell:last-child,
.clearonerelief.privacy .limit-sharing-table-cell:last-child {
  border-left: 1px solid var(--dark-gray);
  width: 77%;
  padding: 16px;
}

/* Reasons table styles */
.clearonerelief.privacy .reasons-table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  border: 1px solid var(--dark-gray);
}

.clearonerelief.privacy .reasons-table-row {
  border-bottom: 1px solid var(--dark-gray);
}

.clearonerelief.privacy .reasons-table-row.alternate {
  background-color: var(--light-gray);
}

.clearonerelief.privacy .reasons-table-header {
  background-color: var(--white);
  font-weight: bold;
}

.clearonerelief.privacy .reasons-table-cell {
  padding: 12px;
  vertical-align: top;
  border-right: 1px solid var(--dark-gray);
}

.clearonerelief.privacy .reasons-table-cell:first-child {
  width: 50%;
}

.clearonerelief.privacy .reasons-table-cell:not(:first-child) {
  width: 25%;
  text-align: center;
}

.clearonerelief.privacy h5 {
  font-size: 1rem;
}

.clearonerelief.privacy .reasons-table-cell p {
  margin: 0;
}

.clearonerelief.privacy .reasons-table-cell span {
  display: block;
  margin-top: 4px;
  color: var(--dark-gray);
}

.clearonerelief.privacy .additional-rights {
  text-align: center;
}

/* Disclaimers */
.clearonerelief.disclaimer .disclaimer-title {
  text-align: center;
  margin-bottom: 4rem;
}
/* Container Layout */
body.dashboard.index .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  background-image: none;
}

/* Table Header Styles */
body.dashboard.index .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}

body.dashboard.index .header-title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

body.dashboard.index .header-title h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

body.dashboard.index .user-count {
  font-size: 1rem;
  white-space: nowrap;
}

body.dashboard.index .header-actions {
  margin-left: auto;
}

/* Link Base Styles */
body.dashboard.index .users-table a,
body.dashboard.index .action-link {
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 0.375rem;
  font-weight: 500;
}

/* Table Link Styles */
body.dashboard.index .users-table a {
  color: var(--oneloan-highlight);
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
}

body.dashboard.index .users-table a:hover {
  color: var(--primary-color);
}

/* Action Link Styles */
body.dashboard.index .action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background-color: var(--oneloan-highlight);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

body.dashboard.index .action-link:hover {
  background-color: var(--oneloan-highlight-hover);
}

body.dashboard.index .action-link i {
  font-size: 0.875rem;
}

/* Table Container and Layout */
body.dashboard.index .table-container {
  width: 100%;
  overflow-x: auto;
  margin: 0 0 2rem;
  border-radius: 20px;
}

/* Table Base Styles */
body.dashboard.index .users-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: 0 1px 3px var(--box-shadow);
}

body.dashboard.index .users-table th,
body.dashboard.index .users-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--medium-gray);
}

body.dashboard.index .users-table th {
  background-color: var(--light-gray);
  font-weight: 700;
}

body.dashboard.index .users-table tr:hover {
  background-color: var(--light-gray);
}

/* Role Select Styles */
body.dashboard.index .role-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--medium-gray);
  border-radius: 0.375rem;
  background-color: var(--white);
}

body.dashboard.index .role-select:disabled {
  background-color: var(--light-gray);
  cursor: not-allowed;
  color: var(--dark-gray);
}

body.dashboard.index .role-select:focus {
  outline: none;
  border-color: var(--oneloan-highlight);
  box-shadow: 0 0 0 2px var(--box-shadow);
}
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}

footer p.footnotes {
    text-align: left;
    font-size: var(--font-size-small);
}

footer p.footnotes.hidden-footnote {
    display: none;
}

footer p.copyright {
    margin: 2rem 0;
}

footer svg.logo-white {
    max-width: 14rem;
    width: 100%;
    height: auto;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:not(:last-child) {
    margin-right: 2rem;
}

footer a:hover,
footer a:active,
footer a:focus {
    text-decoration: underline;
    color: var(--button-color);
}
.form {
  text-align: center;
}

.form .input-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
  "input"
  "link"
  "submit"
  "credit-message";
  padding-top: 0.8rem;
  width: 100%;
  gap: 1rem;
}

@media screen and (min-width: 1200px) {
  .form .input-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
    "input submit"
    "link credit-message";
  }
}

.form .reference-input {
  grid-area: input;
  border: 1px solid var(--primary-color);
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .form .reference-input {
    margin-right: 1rem;
  }
}

.form .submit-btn {
  grid-area: submit;
  background-color: var(--button-color);
  color: var(--white);
  border: 1px solid var(--button-color);
  border-radius: 2.5rem;
  font-size: var(--font-size-medium);
  font-weight: 600;
  padding: 1rem 3rem;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
}

.form .submit-btn:hover,
.form .submit-btn:focus {
  background-color: var(--button-hover-color);
  border: 1px solid var(--button-hover-color);
  cursor: pointer;
}

.form .submit-btn.disabled {
  background-color: var(--button-disabled-color);
  border: 1px solid var(--button-disabled-color);
  cursor: not-allowed;
  opacity: 0.6;
}

.form .disclaimer-plus-text {
  grid-area: link;
  text-align: center;
}

.form .link-2 {
  font-weight: 600;
}

.form .credit-message {
  grid-area: credit-message;
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
}

@media screen and (min-width: 1200px) {
  .form .disclaimer-plus-text {
    text-align: left;
  }
}

.form-error,
.success-message,
.error-message {
  color: red;
  text-align: center;
}

section#payment-table .reference-form,
section#apply .reference-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section#payment-table .form-error,
section#apply .form-error {
  order: 4;
  display: block;
  color: red;
  text-align: center;
  width: 100%;
}
/* Debt Mailer Test - ONE-122 */
.icon-container {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0px 14px 0px;
  max-width: 700px;
  margin: 0 auto;
  gap: 16px;
}

.debt-mailer-test .icon-container {
  display: flex;
}

.offers .icon-container {
  margin-top: 20px;
}

.icon-container.icon-container-offer {
  padding: 25px 14px 30px;
  width: 100%;
  max-width: 900px;
  gap: 30px;
  margin-top: 35px;
}

.icon-container .icon-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  width: 187px;
}

.icon-container .icon-item svg {
  width: 50px;
  height: 36px;
}

.icon-container .icon-item .icon-copy {
  flex-grow: 4;
  font-size: 15px;
  font-weight: bold;
  max-width: 130px;
  text-align: left;
}

.debt-mailer-test #hero .reference-number-field {
  border: 4px solid var(--primary-color);
}
/* Base styles for navigation */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 1280px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

@media screen and (width < 768px) {
  .site-nav {
    height: 80px;
  }
}

.site-nav h1 {
  margin: 0 2rem 0 0;
  padding: 0;
}

.site-nav a {
  margin-right: 2rem;
  color: var(--primary-color);
  text-decoration: none;
}

.site-nav a:last-child {
  margin-right: 0;
}

.site-nav a svg {
  width: 120px;
  height: auto;
}

@media screen and (768px <= width) {
  .site-nav a svg {
    width: 150px;
  }

  .site-nav a svg:hover {
    transform: scale(1.05);
  }
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

.site-nav a:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Styles for phone button */
.site-nav .phone-button {
  margin-left: auto;
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  background: none;
  color: var(--primary-color);
  font-size: var(--font-size-medium);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

.site-nav .mobile-menu .phone-button {
  margin-top: 1rem;
}

.site-nav .phone-button:hover,
.site-nav .phone-button:focus {
  border-color: var(--secondary-color);
  color: var(--white);
  background: var(--secondary-color);
}

.site-nav .phone-button:focus {
  outline: none;
}

@media screen and (max-width: 767px) {
  .site-nav .phone-button {
    padding: 0;
    font-size: 0.9rem;
    border: none;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  body.sticky-nav header.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  body.sticky-nav main {
    margin-top: 80px;
  }
}

/* Desktop specific styles */

.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 30px;
  height: auto;
  background: transparent;
  cursor: pointer;
  padding: 5px 0;
  border: none;
}

@media (min-width: 951px) {
  .mobile-menu,
  .menu-toggle {
    display: none;
  }
}

/* Styles for hamburger lines */

.hamburger-line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 6px 0;
  transition: transform 0.4s ease;
  border-radius: 5px;
}

/* Transform the hamburger into an X */

.menu-toggle.js-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.js-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.js-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-toggle:hover .hamburger-line,
.menu-toggle:focus .hamburger-line {
  background-color: var(--primary-color);
}

@media (max-width: 950px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    right: 0;
    color: var(--primary-color);
    background-color: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem;
    width: auto;
    max-width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu a {
    display: block;
    padding: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .mobile-menu.js-open {
    display: flex;
  }
}
/* General Styles */
body.internal .container {
  background: transparent;
}

body.internal section {
  padding: 0 1rem;
}

body.internal section.offer-form-section {
  margin: 0 auto;
}

/* Form Container Styles */
body.internal .form-container {
  width: 100%;
  padding: 10px 60px;
}

body.internal .form-container .form {
  box-shadow: none;
  max-width: 500px;
}

/* Form Display and Update Fields */
body.internal .form-display-fields {
  display: none;
}

body.internal .form-wrapper-offer .form-update-fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

body.internal .form-wrapper-offer .form-update-fields .column {
  flex: 1 1 48%;
  box-sizing: border-box;
}

/* Specific Field Styles */
body.internal .debt-amount-field-wrapper {
  text-align: center;
  max-width: 85%;
}

body.internal p.form-paragraph {
  margin-bottom: 1rem;
  text-align: center;
}

/* Reference Form Styles */
body.internal .reference-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Form Contact Info */
body.internal .form-contact-info {
  margin-top: 1rem;
}

body.internal .update-debt-amount {
  margin-top: 1.5rem;
}

/* Apply Section Styles */
body.internal section#apply .form {
  margin-top: 0;
}

body.internal .button-wrap {
  margin-bottom: 1rem;
}

/* Responsive Styles */

@media screen and (max-width: 991px) {
  body.internal .container {
    height: auto !important;
  }
}

body.success-body .nav-content form.button_to {
  align-self: center;
  margin-left: 2rem;
}
/* Legacy Styles for IRS Slider from the initial port */
.irs {
     width: 100%;
     height: 50px;
     margin-top: 0px;
     margin-bottom: 30px;
     min-width: 20px
 }

 .irs-with-grid {
     height: 85px
 }

 .irs-line {
     height: 12px;
     top: 35px
 }

 .irs-line-left {
     height: 12px;
     background-position: 0 -30px
 }

 .irs-line-mid {
     height: 12px;
     background-position: 0 0
 }

 .irs-line-right {
     height: 12px;
     background-position: 100% -30px
 }

 .irs-bar {
     height: 12px;
     top: 35px;
     background-position: 0 -60px;
     background-color: #005eff;
     background-image: none !important;
 }

 .irs-bar-edge {
     top: 35px;
     height: 12px;
     width: 15px;
     background-color: #005eff;
     background-image: none !important;
     -webkit-border-top-left-radius: 4px;
     -webkit-border-bottom-left-radius: 4px;
     border-top-left-radius: 4px;
     border-bottom-left-radius: 4px
 }

 .irs-shadow {
     height: 3px;
     top: 35px;
     background: #000;
     opacity: .25
 }

 .lt-ie9 .irs-shadow {
     filter: alpha(opacity=10)
 }

 .irs-slider {
     width: 22px;
     height: 22px;
     top: 30px;
     background-position: 0 -120px;
     background-image: none;
     background-color: #03254e;
     border-radius: 100%;
     transition: background-color 200ms ease-in
 }

 .irs-slider.state_hover,
 .irs-slider:hover {
     width: 22px;
     height: 22px;
     top: 30px;
     background-position: 0 -120px;
     background-image: none;
     background-color: #005eff;
     border-radius: 100%
 }

 .irs-min,
 .irs-max {
     color: #005eff;
     font-size: 1.0em;
     line-height: 1em;
     text-shadow: none;
     top: 0;
     padding: 5px;
     margin-bottom: 50px;
     background: #005eff;
     -moz-border-radius: 4px;
     border-radius: 4px
 }

 .irs-from,
 .irs-to,
 .irs-single {
     color: #fff;
     font-size: 1.0em;
     line-height: 1em;
     text-shadow: none;
     padding: 5px;
     margin-bottom: 25px;
     background: #005eff;
     -moz-border-radius: 4px;
     border-radius: 4px
 }

 .irs-from:after,
 .irs-to:after,
 .irs-single:after {
     position: center;
     display: block;
     content: "";
     bottom: -6px;
     left: 50%;
     width: 0;
     height: 0;
     margin-left: -5px;
     overflow: hidden;
     border: 4px solid transparent;
     border-top-color: #005eff
 }

 .irs-grid-pol {
     background: #005eff
 }

 .irs-grid-text {
     color: #e5e9ed
 }

 /* Getting rid of that ugly textarea resize-corner */
 textarea {
     resize: none
 }

 /* textarea scrollbar fixings */
 textarea.area.field.w-input::-webkit-scrollbar {
     width: 14px;
     height: 18px;
 }

 textarea.area.field.w-input::-webkit-scrollbar-thumb {
     height: 4px;
     border: 4px solid rgba(0, 0, 0, 0);
     background-clip: padding-box;
     -webkit-border-radius: 7px;
     background-color: #005eff;
     -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
 }

 textarea.area.field.w-input::-webkit-scrollbar-button {
     width: 0;
     height: 0;
     display: none;
 }

 textarea.area.field.w-input::-webkit-scrollbar-corner {
     background-color: transparent;
 }

 /* Form field validation styling */
 input.error,
 select.error {
     border: 2px solid red;
     /* Example: red border for error inputs */
     background-color: #ffcccc;
     /* Light red background for additional visibility */
 }
/* Stepped Version of Form */
.nopin-body .section.form-section .form-container .leadform {
  max-height: none;
  transition: max-height 0.3s ease;
  background-color: var(--light-gray);
  border-radius: 2rem;
  padding: 2rem 0 3rem 0;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-template-areas:
    'slide-progress'
    'form-title'
    'form-panel';
}

.nopin-body .section.form-section .form-container .leadform.form-constrained {
  max-height: 580px;
}

.nopin-body .section {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 0;
}

.nopin-body .form-container {
  display: block;
}

.nopin-body h1,
.nopin-body h2,
.nopin-body .h1,
.nopin-body .h2 {
  font-size: 1.7rem;
}

@media (min-width: 768px) {
  .nopin-body h1,
  .nopin-body h2,
  .nopin-body .h1,
  .nopin-body .h2 {
    font-size: 2rem;
  }
}

.nopin-body .link-button,
.nopin-body .link-button:visited {
  background-color: var(--oneloan-blue);
  color: var(--white);
  border: 1px solid var(--oneloan-blue);
  border-radius: 2.5rem;
  font-size: var(--font-size-medium);
  font-weight: 600;
  padding: 1rem;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  text-decoration: none;
}

.nopin-body .link-button:hover,
.nopin-body .link-button:focus {
  background-color: var(--oneloan-hover);
  border: 1px solid var(--oneloan-hover);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}

@media screen and (max-width: 991px) {
  body.nopin-body .form-container {
    padding: 0rem;
  }
}

.nopin-body .link-button.disabled {
  background-color: var(--button-disabled-color);
  border: 1px solid var(--button-disabled-color);
  cursor: not-allowed;
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .nopin-body .link-button {
    padding: 1rem 3rem;
  }
}

.nopin-body .form-container .form-title {
  margin-top: 1rem;
  grid-area: form-title;
  text-align: center;
}

.nopin-body .slide-progress {
  grid-area: slide-progress;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.nopin-body .form-container .form-panel {
  transition: opacity 0.3s ease;
  grid-area: form-panel;
}

.nopin-body .form-container .form-panel.panel-active {
  opacity: 1;
  z-index: 3;
}

.nopin-body .form-container .form-panel {
  opacity: 0;
}

.nopin-body .section.form-section .fieldset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.nopin-body .leadform .leadform-input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: clamp(300px, 100%, 530px);
}

.nopin-body .leadform-input,
.nopin-body .select-field {
  border: 1px solid var(--button-disabled-color);
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nopin-body .button-container {
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 3;
}

.nopin-body .link-button.leadform-back-button {
  min-width: none;
}

.nopin-body .link-button.leadform-back-button,
.nopin-body .link-button.leadform-next-button,
.nopin-body .link-button.submit-button {
  padding: 1.2rem 1rem 1rem 1rem;
}

.nopin-body .link-button.submit-button:disabled {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  cursor: not-allowed;
}

/* Container for the entire progress tracker */
.nopin-body .slide-progress {
  width: 100%;
  margin: 2rem 0;
}

.nopin-body .slide-progress-stack {
  width: clamp(330px, 100%, 500px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Top cell containing labels */
.nopin-body .slide-progress-cell.top-cell {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .nopin-body .slide-progress-cell.top-cell {
    padding: 0;
  }
}

/* Progress labels */
.nopin-body .progress-label {
  color: var(--oneloan-blue);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  width: 100px;
}

@media (min-width: 768px) {
  .nopin-body .progress-label {
    width: auto;
    min-width: 110px;
  }

  .nopin-body .progress-label:first-of-type {
    text-align: left;
  }

  .nopin-body .progress-label:last-of-type {
    text-align: right;
  }
}

/* Lower cell containing dots and lines */
.nopin-body .slide-progress-cell.lower-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

/* Base dot style */
.nopin-body .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--pbd-low-opacity);
  flex-shrink: 0;
}

/* Active dot style */
.nopin-body .dot.progress-active {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-blue-dark);
  flex-shrink: 0;
}

/* Connecting line */
.nopin-body .line {
  flex: 1;
  height: 1px;
  background-color: var(--pbd-low-opacity);
  margin: 0 8px;
}

.nopin-body .line.progress-active {
  flex: 1;
  height: 1px;
  background-color: var(--primary-blue-dark);
  margin: 0 8px;
}

.nopin-body .price-field:focus,
.nopin-body .price-field:focus-visible {
  border-width: 1.3px;
  border-color: var(--primary-blue-dark);
}

.nopin-body .section.form-section .form-container .leadform p.user-info {
  display: none;
}

/* Offer Form */
.nopin-body .section.form-section .form-container.static-form .leadform {
  padding: 3rem 2rem;
  grid-template-columns: 100%;
  grid-template-rows: repeat(11, auto);
  gap: 1.5rem;
  justify-content: center;
  transition: max-height 0.3s ease;
}

.nopin-body
  .section.form-section
  .form-container.static-form
  .leadform.form-constrained {
  max-height: 800px;
}

@media (min-width: 768px) {
  .nopin-body
    .section.form-section
    .form-container.static-form
    .leadform.form-constrained {
    max-height: 700px;
  }
}

.nopin-body .static-form .leadform .slide-progress,
.nopin-body .static-form .leadform .form-title {
  display: none;
}

.nopin-body .static-form .leadform .leadform-input-container {
  justify-self: center;
}

.nopin-body .leadform p.user-info-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.nopin-body .static-form .leadform .input-group-phone {
  grid-area: 2 / 1 / 3 / 2;
}

.nopin-body .static-form .leadform .input-group-email {
  grid-area: 3 / 1 / 4 / 2;
}

.nopin-body .leadform p.user-info-2 {
  grid-area: 4 / 1 / 5 / 2;
}

.nopin-body .static-form .leadform .input-group-firstname {
  grid-area: 5 / 1 / 6 / 2;
}

.nopin-body .static-form .leadform .input-group-lastname {
  grid-area: 6 / 1 / 7 / 2;
}

.nopin-body .static-form .leadform .input-group-street {
  grid-area: 7 / 1 / 8 / 2;
}

.nopin-body .static-form .leadform .input-group-city {
  grid-area: 8 / 1 / 9 / 2;
}

.nopin-body .static-form .leadform .input-group-state {
  grid-area: 9 / 1 / 10 / 2;
}

.nopin-body .static-form .leadform .input-group-zip {
  grid-area: 10 / 1 / 11 / 2;
}

.nopin-body .static-form .leadform .debt-slider-fieldset {
  grid-area: 11 / 1 / 12 / 2;
  justify-self: center;
}

@media (min-width: 768px) {
  .nopin-body .section.form-section .form-container.static-form .leadform {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(7, auto);
  }

  .nopin-body .leadform p.user-info-1 {
    grid-area: 1 / 1 / 2 / 3;
  }

  .nopin-body .static-form .leadform .input-group-phone {
    grid-area: 2 / 1 / 3 / 2;
  }

  .nopin-body .static-form .leadform .input-group-email {
    grid-area: 2 / 2 / 3 / 3;
  }

  .nopin-body .leadform p.user-info-2 {
    grid-area: 3 / 1 / 4 / 3;
  }

  .nopin-body .static-form .leadform .input-group-firstname {
    grid-area: 4 / 1 / 5 / 2;
  }

  .nopin-body .static-form .leadform .input-group-lastname {
    grid-area: 4 / 2 / 5 / 3;
  }

  .nopin-body .static-form .leadform .input-group-street {
    grid-area: 5 / 1 / 6 / 2;
  }

  .nopin-body .static-form .leadform .input-group-city {
    grid-area: 5 / 2 / 6 / 3;
  }

  .nopin-body .static-form .leadform .input-group-state {
    grid-area: 6 / 1 / 7 / 2;
  }

  .nopin-body .static-form .leadform .input-group-zip {
    grid-area: 6 / 2 / 7 / 3;
  }

  .nopin-body .static-form .leadform .debt-slider-fieldset {
    grid-area: 7 / 1 / 8 / 3;
  }
}

.nopin-body
  .section.form-section
  .form-container.static-form
  .leadform
  p.user-info {
  display: block;
  font-weight: bold;
  font-size: 1rem;
}

.nopin-body .static-form .leadform .form-contact-info {
  grid-area: 5 / 1 / 12 / 2;
  z-index: 3;
  background-color: var(--light-blue);
  border-radius: 2rem;
  padding: 2rem 1rem;
  transition: opacity 0.3s ease;
  max-height: 350px;
}

@media (min-width: 768px) {
  .nopin-body .static-form .leadform .form-contact-info {
    padding: 2rem;
  }
}

.nopin-body .static-form .leadform .form-contact-info.static-hide {
  opacity: 0;
  z-index: -1;
}

@media (min-width: 768px) {
  .nopin-body .static-form .leadform .form-contact-info {
    grid-area: 4 / 1 / 8 / 3;
  }
}

.form-display-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .form-display-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr) auto;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      'name address edit'
      'loan loan loan';
    row-gap: 20px;
  }
}

@media screen and (min-width: 992px) {
  .form-display-fields {
    row-gap: 40px;
  }
}

.nopin-body .form-display-fields .display-label {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0;
}

.nopin-body .static-form .name-field {
  grid-area: name;
  order: 2;
}

.nopin-body .static-form .address-field {
  grid-area: address;
  order: 3;
}

.nopin-body .static-form .edit-wrapper {
  grid-area: edit;
  order: 1;
}

.nopin-body .static-form .loan-field {
  grid-area: loan;
  order: 4;
}

.nopin-body .form-edit-button {
  background: transparent;
  border: none;
  color: var(--dark-blue);
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 0;
}

.nopin-body .static-form .leadform .static-hide-default {
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nopin-body .static-form .leadform .static-hide-default.static-show {
  opacity: 1;
  z-index: 3;
}
/* Hero */

.myoneloan section#hero {
  background-color: var(--primary-color);
  color: var(--white);
}

/* https://caniuse.com/css-media-range-syntax */
@media screen and (width < 768px) {
  .myoneloan section#hero {
    padding-top: 15px;
  }
}

.myoneloan section#hero .container {
  overflow: hidden;
}

.myoneloan .myoneloan section#hero .grid-content {
  gap: 1rem;
}

.myoneloan section#hero .form {
  padding: 0.5rem;
}

.myoneloan section#hero h2 {
  text-align: center;
  width: 100%;
  padding-bottom: 2rem;
}

@media screen and (width < 768px) {
  .myoneloan section#hero h2 {
    font-size: calc(1.125 * var(--font-size-large));
    padding: 0 0 15px;
  }
}

.myoneloan section#hero .grid-content {
  flex-wrap: wrap;
  flex-direction: column;
}

@media screen and ( 992px <= width ) {
  .myoneloan section#hero .grid-content {
    flex-direction: row;
  }
}

.myoneloan section#hero .left-column {
  flex: 4.5;
  min-width: 0;
  align-self: flex-start;
  margin: 0 auto;
}

@media screen and ( width < 768px) {
  .myoneloan section#hero .left-column {
    margin-bottom: 5px;
  }
}

@media screen and ( 768px <= width <= 992px) {
  .myoneloan section#hero .left-column {
    margin-bottom: 2rem;
  }
}

@media screen and ( 768px <= width ) {
  .myoneloan section#hero .left-column {
    display: flex;
  }
}

.myoneloan section#hero .left-column .column-content {
  text-align: center;
  width: auto;
}

.myoneloan section#hero .right-column {
  flex: 5.5;
}

.myoneloan section#hero svg.logo-white {
  max-width: 18rem;
  width: 100%;
  height: auto;
  padding-bottom: 1.5rem;
}

@media screen and ( width < 768px ) {
  .myoneloan section#hero svg.logo-white {
    display: none;
  }
}

.myoneloan section#hero p.narrow {
  max-width: 22rem;
  width: 100%;
  text-align: left;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .myoneloan section#hero p.narrow {
    font-size: var(--font-size-small);
  }

  body.index .header-container {
    padding: 0 1rem;
  }
}

.myoneloan section#hero .right-column {
  display: grid;
  grid-template-rows: auto auto auto;
}

.myoneloan section#hero .features-container {
  background-color: transparent;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0 0 1rem;
}

@media screen and ( width < 768px ) {
  .myoneloan section#hero .no-padding.features-container {
    padding: 0 0 5px;
  }
}

.myoneloan section#hero .feature-container {
  width: 100%;
  margin-bottom: 1rem;
}

.myoneloan section#hero .features-container .loans,
.myoneloan section#hero .features-container .rates {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  color: var(--primary-color);
  margin: 0 auto;
}

@media screen and ( 768px <= width ) {
  .myoneloan section#hero .features-container .loans,
  .myoneloan section#hero .features-container .rates {
    flex-direction: row;
  }
}

.myoneloan section#hero .feature-number {
  margin-left: 0.3rem;
}

.myoneloan section#hero .feature-number sup.dollar-sign,
.myoneloan section#hero .feature-number sup.percent-sign {
  font-size: var(--font-size-medium);
  top: -0.3rem;
}

.myoneloan section#hero .right-column > div:nth-child(1) .loans span,
.myoneloan section#hero .right-column > div:nth-child(1) .rates span {
  font-size: var(--font-size-xlarge);
  font-weight: 700;
}

.myoneloan section#hero .right-column > div:nth-child(1) .rates sup a,
.myoneloan section#hero .right-column > div:nth-child(1) .rates sup a:hover,
.myoneloan section#hero .right-column > div:nth-child(1) .rates sup a:focus {
  color: var(--primary-color);
}

.myoneloan section#hero .form-container {
  display: block;
  text-align: center;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--primary-color);
  margin: 0 auto 1rem auto;
  width: 100%;
}

.myoneloan section#hero .tiny {
  font-size: var(--font-size-small);
  line-height: 1.5;
}

/* Payment Table Section */
section#payment-table {
  background-color: var(--white);
}

section#payment-table .container {
  padding: 0;
}
@media screen and (min-width: 480px) {
  section#payment-table .container {
    padding: 0 1rem;
  }
}

section#payment-table .grid-content {
  flex-direction: column-reverse;
  align-items: stretch;
  height: 100%;
  gap: 0;
}
@media screen and (min-width: 768px) {
  section#payment-table .grid-content {
    flex-direction: row;
    gap: 1rem;
  }
}

section#payment-table .left-column {
  flex: 6;
  padding: 1rem;
}

section#payment-table .left-column h2 {
  font-size: calc(1.6 * var(--font-size-large));
  max-width: 140ch;
}

@media screen and (min-width: 768px) {
  section#payment-table .left-column h2 {
    font-size: calc(1.4 * var(--font-size-large));
  }
}

@media screen and (min-width: 1024px) {
  section#payment-table .left-column h2 {
    font-size: calc(1.6 * var(--font-size-large));
  }
}

section#payment-table .left-column p.text {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  section#payment-table .payment-benefits-container {
    max-width: 25rem;
  }
}

.payment-benefits-container h3,
.payment-benefits-container h4 {
  font-size: var(--font-size-medium);
  font-weight: bold;
}

.payment-benefits-container h3 {
  text-transform: uppercase;
  padding: 0.5rem 0 0.75rem;
}

.payment-benefits-container h4 {
  padding-top: 0;
}

.payment-benefits-container .benefits-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.payment-benefits-container .benefits-item::before {
  content: '✔';
  font-weight: bold;
  margin-right: 0.5rem;
}

.payment-benefits-container .benefits-item p {
  margin: -0.5rem 0 0 0;
  font-size: 1rem;
}

section#payment-table .right-column {
  flex: 4;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem 1rem;
}

.table-container {
  width: 100%;
  overflow-x: auto;
}

.example-payment-table {
  font-size: clamp(0.75rem, 3vw, 1rem);
  text-align: left;
  border-collapse: collapse;
  border: 1px solid var(--primary-color);
  width: 100%;
  max-width: 31.25rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .example-payment-table {
    font-size: clamp(0.75rem, 1.75vw, 1rem);
  }
}

.example-payment-table th,
.example-payment-table td {
  padding: 0.75em;
  border: 1px solid var(--primary-color);
}

.example-payment-table th {
  text-transform: uppercase;
}

.example-payment-table th[scope="row"] {
  border-right: 2px solid var(--primary-color);
}

.example-payment-table .table-title th {
  background: var(--button-color);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.05em;
}

.example-payment-table tbody th {
  font-weight: normal;
}

.example-payment-table tbody tr:nth-of-type(odd) {
  background: rgba(var(--button-color-rgb), 0.2);
}

section#payment-table .reference-form {
  display: flex;
  justify-content: center;
}

section#payment-table .form .h4 {
  display: none;
}

section#payment-table .form .input-container {
  max-width: 42rem;
}

@media screen and (min-width: 768px) {
  section#payment-table .form .input-container {
    grid-template-columns: 1.5fr 1fr;
    grid-template-areas:
    "input submit"
    "link credit-message";
  }
}

.payment-table-cta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5;
  padding: 1.5rem 1.25rem 1.25rem;
}

.payment-table-cta p {
  margin: 0;
}

.payment-table-cta .warning-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

/* Checkmarks */

.checkmarks-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0 1rem;
}

.checkmarks-section .grid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .checkmarks-section .grid-content {
  flex-direction: row;
    flex-wrap: wrap;
  }
}

.checkmarks-section .h4 {
  font-weight: normal;
}

.checkmarks-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .checkmarks-section .container {
    justify-content: space-between;
  }
}

.checkmarks-section .checkmark {
  display: flex;
  align-items: center;
  flex: 1;
  text-align: left;
  padding: 1rem;
  width: 100%;
}

.checkmarks-section .checkmark img {
  margin-right: 1rem;
}

/* About */
.myoneloan section#about {
  background-color: var(--light-blue);
}

.myoneloan section#about .about-content {
  flex-direction: column-reverse;
  align-items: stretch;
  height: 100%;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .myoneloan section#about .about-content {
    flex-direction: row;
  }
}

.myoneloan section#about .left-column .row.full-width {
  width: 100%;
}

.myoneloan section#about .left-column .row.split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.myoneloan section#about .left-column .row.split .text {
  flex: 0 1 auto;
  padding-right: 2rem;
}

.myoneloan section#about .left-column .row.split img {
  flex: 0 1 auto;
  width: 40px;
  height: auto;
}

.myoneloan section#about .left-column {
  flex: 6;
  padding: 1rem;
}

.myoneloan section#about .left-column p.text {
  margin-top: 0;
}

.myoneloan section#about .right-column {
  flex: 4;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem 1rem;
}

.myoneloan section#about .right-column img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.myoneloan section#about .form .h4 {
  display: none;
}

@media screen and (min-width: 992px) {
  .myoneloan section#about .form .input-container {
    grid-template-columns: 1.5fr 1fr;
    grid-template-areas:
    "input submit"
    "link credit-message";
  }
}

/* Benefits */

section#benefits {
  background-color: #F8F8F8;
}

section#benefits h2 {
  text-align: center;
}

section#benefits h3 {
  font-size: var(--font-size-large);
}

@media screen and (max-width: 1100px) {
  section#benefits h3 {
    font-size: var(--font-size-medium);
  }
}

section#benefits .benefits-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}

@media screen and (min-width: 768px) {
  section#benefits .benefits-content {
    flex-direction: row;
  }
}

section#benefits .benefits-content > div {
  flex: 1;
  padding: 1rem;
  text-align: center;
}

.benefit-wrapper img {
  width: 90px;
  height: auto
}

.benefit-wrapper img.benefit-icon_3 {
  width: 60px;
}

@media screen and (min-width: 768px) {
  .benefit-wrapper img,
  .benefit-wrapper img.benefit-icon_3 {
    width: auto;
  }
}

/* Apply */

section#apply .container {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  section#apply .container {
    width: 80%;
  }
}

section#apply h2 {
  text-align: center;
}

section#apply h3 {
  padding-bottom: 0;
  font-size: var(--font-size-large);
}

section#apply .grid-content {
  display: flex;
  flex-direction: column;
}

.apply-content .apply-row {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  width: 100%;
  gap: 1rem;
}

.apply-content .apply-row .icon {
  flex: 1;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  padding: 0.6rem;
  margin: 0.9rem 0 0 0;
  max-width: 50px;
}

/* Pixel pushing the icons numerals to be in the center */
section#apply .icon_1 {
  margin-left: -4px;
}

section#apply .icon_2 {
  margin-top: -1px;
}

section#apply .icon_3 {
  margin-bottom: -2px;
}

section#apply .grid-content .row .text {
  flex: 9;
  max-width: 90%;
}

section#apply .grid-content .row .text p {
  margin: 0;
}

section#apply .form {
  margin-top: 2rem;
}

section#apply .reference-form {
  display: flex;
  justify-content: center;
}

section#apply .form .input-container {
  max-width: 42rem;
}

@media screen and (min-width: 1200px) {
  section#apply .form .input-container {
    grid-template-columns: 1.5fr 1fr;
  }
}

section#apply .form .h4 {
  display: none;
}

/* Contact */

section#contact {
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
}

section#contact p {
  margin: 0 0 0.8rem;
}

section#contact .phone-button {
  display: inline-block;
  background: var(--secondary-color);
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 2.5rem;
  padding: 0.4rem 2.5rem;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}

section#contact .phone-button:hover {
  color: var(--primary-color);
  background-color: var(--white);
}

section#contact .phone-button:focus {
  color: var(--primary-color);
  outline: none;
  background-color: var(--white);
}


/* Footer */
@media screen and ( 992px <= width ) {
  .footer-container {
    cursor: default;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 60px;
    padding-right: 60px;
  }
}
/* Offer and No-Pin Benefits trio section (EM-102) */
section#benefit-trio {
  display: block;
  background: var(--white);
}

section#benefit-trio .container {
  margin: 0 auto;
  background: var(--white);
  align-items: center;
  height: fit-content;
}

section#benefit-trio .container .row.full-width {
  padding: 1rem;
}

section#benefit-trio h2 {
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

section#benefit-trio h3 {
  margin-top: 0;
}

section#benefit-trio p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

section#benefit-trio .benefits-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

section#benefit-trio .benefits-item::before {
  font-size: 1.2rem;
  content: '✔';
  font-weight: bold;
  margin-right: 0.5rem;
  margin-top: 3px;
}

section#benefit-trio .benefits-item p {
  margin: -0.5em 0 0 0;
}

section#benefit-trio .benefit-trio-cta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5;
  padding: 1.5rem 1.25rem 1.25rem;
}

section#benefit-trio .benefit-trio-cta p {
  margin: 0;
}

section#benefit-trio .benefit-trio-cta .warning-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

@media screen and (min-width: 768px) {
  section#benefit-trio .payment-benefits-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  section#benefit-trio .benefits-item {
    width: 30%;
  }

  section#benefit-trio h2 {
    margin-bottom: 30px;
  }

  section#benefit-trio p {
    font-size: 19px;
  }
}
/* End Offer and No-Pin Benefits trio section (EM-102) */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
.phone-cta-panel {
  display: block;
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  color: var(--primary-color);
  margin: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, var(--white) 20%, var(--light-blue) 76%);
  min-height: 250px;
}

@media (min-width: 768px) {
  .phone-cta-panel {
    padding: 2rem 4rem;
  }
}

.phone-cta-panel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.phone-cta-panel-content-phone-number {
  width: 100%;
}

h3.phone-cta-panel-heading {
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: left;
  font-size: var(--cl-font-size-medium);
}

@media (min-width: 768px) {
  h3.phone-cta-panel-heading {
    font-size: var(--cl-font-size-large);
    text-align: center;
  }
}

p.phone-cta-blurb {
  font-size: var(--cl-font-size-small);
  color: var(--button-color);
  margin-top: 0.5rem;
  font-weight: 800;
}

.phone-cta-panel .link-button {
  max-width: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-cta-panel .link-button .phone-icon {
  margin-right: 0.5rem;
  width: 25px;
  height: 30px;
}

.phone-cta-panel .link-button .phone-number {
  font-size: var(--cl-font-size-medium);
  padding-top: 0.25rem;
}
.slidecontainer {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.slidecontainer .slider {
  margin-top: 3rem;
  -webkit-appearance: none;
  appearance: none;
  width: clamp(300px, 100%, 600px);
  height: 15px;
  border-radius: 5px;
  background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 25%, var(--medium-gray) 25%, var(--medium-gray) 100%);
  position: relative;
}

/* Chrome and Safari */
.slidecontainer .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px var(--button-color);
  cursor: pointer;
  border: none;
}

/* Firefox */
.slidecontainer .slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 0 4px var(--button-color);
  cursor: pointer;
  border: none;
}

/* Mouse-over effects */
.slidecontainer .slider:hover {
  opacity: 1;
}

/* Focus styles */
.slidecontainer .slider:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  opacity: 1;
}

.slidecontainer .slider:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px var(--button-color), 0 0 0 2px var(--primary-color);
}

.slidecontainer .slider:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px var(--button-color), 0 0 0 2px var(--primary-color);
}
:root {
  --oneloan-blue: #03254e;
  --oneloan-highlight: #005eff;
  --oneloan-hover: #136aff;
}

.support-threeup {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .support-threeup {
    margin: 4rem 0;
  }
}

.support-threeup p,
.support-threeup h3 {
  font-size: var(--font-size-smaller);
}

.support-threeup h2.h3 {
  letter-spacing: -.5px;
  font-weight: 800;
  padding: 0;
}

.support-threeup a {
  font-weight: bold;
}

.support-threeup-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 40px;
  text-align: left;
  flex: 1;
  height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  min-width: 320px;
  max-width: 375px;
}

.support-threeup .item-header {
  height: 60px;
}

.support-threeup .item-header p {
  margin: 2px 0;
}

.support-threeup .item-content > * {
  margin: .25rem 0;
}

.terms-margin {
  margin: 2rem 0;
}

.support-container {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .support-container {
    margin-top: 7rem;    
  }
}

.support-header {
  text-align: center;
  font-weight: 800;
}

.support-ol li::marker {
  font-weight: bold;
}

.support-container p,
.support-container ol,
.support-container ul,
.support-container address,
.disclaimer-container p {
  font-size: var(--font-size-small);
  line-height: 180%;
}
.support-container ul.squareboys {
  list-style-type: square;
  margin-top: 0;
  padding-top: 0;
}
.support-container address {
  margin: 1rem;
  white-space: pre-line;
}

.privacy .support-container a,
.terms .support-container a {
  font-weight: bold;
}

.privacy .support-container h3,
.privacy .support-container h4,
.do_not_sell .support-container h3 {
  font-weight: 800;
  font-size: var(--font-size-small);
  line-height: 180%;
  padding-bottom: 0;
  margin-top: 1rem;
}

.privacy .support-container strong {
  font-weight: 800;
}

.privacy .support-container h3 + p:not(:nth-of-type(1)):not(:nth-of-type(2)),
.privacy .support-container h4 + p,
.privacy .support-container h4 + p + p {
  margin: 0;
  padding: 0;
}
.privacy .support-container h3 + h4 {
  margin-top: 0;
  padding-top: 0;
}

.privacy-table {
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow-x: auto;
}

.privacy-table th,
.privacy-table td {
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
}

.privacy-table th {
  font-weight: bold;
}

.privacy-table th:not(:first-child) {
  font-size: var(--font-size-small);
  text-align: center;
}

.privacy-table td:not(:first-child) {
  text-align: center;
}

.privacy-table td:first-child {
  padding-right: 20px;
  line-height: 180%;
}

.privacy-table td {
  font-size: var(--font-size-small);
}

.do_not_sell .support-container h3 + p {
  margin: 0;
}

.success-panel {
  background-color: var(--white);
  object-fit: fill;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 768px) {
  .success-panel {
    padding: 40px 60px 60px;
  }
}

.image-4 {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 40px;
  margin-bottom: 0;
  display: block;
  overflow: auto;
}

@media screen and (min-width: 768px) {
  .image-4 {
    width: 600px;
    max-width: none;
    height: 400px;
  }
}

.success-h1 {
  color: var(--oneloan-blue);
  text-align: center;
  letter-spacing: -1px;
  -webkit-text-stroke-color: var(--oneloan-blue);
  text-transform: none;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 800;
  line-height: 120%;
}

.success-text-block {
  color: var(--oneloan-blue);
  text-align: center;
  max-width: 500px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
}

.success-section-2 {
  z-index: 5;
  color: var(--oneloan-blue);
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.w-button {
  padding: 9px 15px;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

.success-return-button {
  background-color: var(--oneloan-highlight);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 242px;
  height: 68px;
  margin: 60px auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
  transition: all .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.success-return-button:hover {
  background-color: var(--oneloan-hover);
  transform: scale(1.05);
  text-decoration: none;
  color: var(--white);
}

.call-out {
  text-align: center;
  cursor: default;
  background-color: #f7f8fc;
  border-radius: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  transition: all .2s cubic-bezier(.645, .045, .355, 1);
  display: flex;
}

.success-h2 {
  color: var(--oneloan-blue);
  text-align: center;
  letter-spacing: -1px;
  -webkit-text-stroke-color: var(--oneloan-blue);
  text-transform: none;
  width: 70%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 140%;
}

.success-callout-container {
  cursor: default;
  max-width: 600px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.success-body #apply {
  padding-bottom: 3rem;
}

/* 404 page */
.body.not_found .section {
  display: flex;
  justify-content: center;
  min-height: 400px;
}

.body.not_found .container.not-found-container {
  padding-top: 2rem;
  text-align: center;
  background: none; /* Overrides the webflow styles */
  align-items: center; /* Overrides the webflow styles */
}

.body.admin.not_found .nav-actions {
  display: none;
}
/* Container Styles */
body.registrations.edit .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  background-image: none;
}

/* Table Layout */
body.registrations.edit .table-container {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 20px;
}

body.registrations.edit .table-container p {
  margin-left: 18px;
}

body.registrations.edit .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 1rem;
}

/* Table Styles */
body.registrations.edit .users-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: 0 1px 3px var(--box-shadow);
}

body.registrations.edit .users-table th,
body.registrations.edit .users-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

/* Role Select Styles */
body.registrations.edit .role-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--medium-gray);
  border-radius: 0.375rem;
  background-color: var(--white);
  color: var(--primary-color);
}

body.registrations.edit .role-select:focus {
  outline: none;
  border-color: var(--button-color);
  box-shadow: var(--box-shadow);
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *








 */

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-Book-41b18ab6290b619b1b2094e1d2824d49b45297be264efdd78663126022b25128.otf);
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-BookOblique-24f4e645406c53f75f769466d03c46502447b61535211b8b4f701158ac573049.otf);
     font-weight: 400;
     font-style: italic;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-Light-7a29aa4ee900603d549a82f7ff6e664e41fab70c10f51dd8176d547442313530.otf);
     font-weight: 300;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-LightOblique-ac5415bf2bd58b5e4052a027d5f1fa157cbccb273c8aad5812dd122099ac477d.otf);
     font-weight: 300;
     font-style: italic;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-Medium-945cb9c4ae1e0876eedf4e3682c14daff655ea074280708ba83ba41d8863a611.otf);
     font-weight: 500;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-MediumOblique-dc6f4bfe1ec9ec5abdf49a4d11ad1aad44c930d8c3a16473c2ec00f6118f583d.otf);
     font-weight: 500;
     font-style: italic;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-Heavy-d088b7dbc18852c0bf88df1a48863cb1887002c157edb97a6ce59eaf7edd9000.otf);
     font-weight: 800;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-HeavyOblique-1775a4624eba6246b54e5bc7eba41e19611197a3549735af3a7005737cc4f61e.otf);
     font-weight: 800;
     font-style: italic;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-Black-647f5d645199a249aeb3f58a1e58a68bc6d88945d76c4f5e71945644710c8cc3.otf);
     font-weight: 900;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-BlackOblique-ec5306ffa0980335caf0d69b9d74d43bfeb14a4dd9bda2dc7093fc338d2ec443.otf);
     font-weight: 900;
     font-style: italic;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-Roman-cda1b3563c3ec3b0f3de673124d1c07bb1a8560cdfc252c0e21c556552e82b4d.otf);
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Avenir';
     src: url(/assets/AvenirLTStd-Oblique-110f2349b10b7a06e7a8c2a5170181db1fcd338a038530c552766baec205bc1b.otf);
     font-weight: 400;
     font-style: italic;
     font-display: swap;
 }

 fieldset {
    border: none;
 }
