

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');



:root {
  --lf-navy: #1f2467;
  --lf-navy-soft: #6b6fa0;
  --lf-blue: #1f6cb0;
  --lf-orange: #e87722;
  --lf-orange-hover: #f08735;
  --lf-orange-dark: #c45f17;
  --lf-border-soft: #eaeef4;
  --lf-text-muted: #5b6470;
}

body{
  margin: 0;
  font-family: 'Source Sans 3', 'Lato', -apple-system, sans-serif;
}


.lf-header {
  background: #ffffff;
  padding: 10px 16px 8px;
  border-bottom: 2px solid var(--lf-blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: 'Lato', sans-serif;
}
.lf-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}


.lf-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.lf-logo-shield { width: 28px; height: 34px; flex-shrink: 0; }
.lf-logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lf-logo-text {
  font-weight: 900;
  font-size: 22px;
  color: var(--lf-navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.lf-dot-com { color: var(--lf-navy-soft); font-weight: 700; }
.lf-powered-by {
  display: none;
  margin-top: 3px;
  font-size: 10px;
  color: var(--lf-navy);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lf-avvo-mark {
  font-weight: 900;
  font-style: italic;
  margin-left: 3px;
  color: var(--lf-navy);
  letter-spacing: 0.01em;
}


.lf-header-call-cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none; 
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--lf-orange);
  color: #ffffff ;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 0 var(--lf-orange-dark);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.lf-header-call-cta:hover { background: var(--lf-orange-hover); }
.lf-header-call-cta:active {
  box-shadow: 0 0 0 var(--lf-orange-dark);
  transform: translateY(calc(-50% + 1px));
}
.lf-header-call-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.lf-header-call-cta-text { display: flex; flex-direction: column; line-height: 1.05; }
.lf-header-call-cta-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.95;
}
.lf-header-call-cta-number { font-size: 14px; font-weight: 900; letter-spacing: -0.01em; }


.lf-mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lf-orange);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lf-mobile-call-bar.visible {
  display: flex;
  transform: translateY(0);
}

.lf-mobile-call-bar:active {
  background: var(--lf-orange-dark);
}

.lf-mobile-call-bar svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.lf-mobile-call-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lf-mobile-call-bar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.95;
  margin-bottom: 2px;
}

.lf-mobile-call-bar-number {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

body.has-mobile-call-bar {
  padding-bottom: 64px;
}

@media (max-width: 767px) {
  body.has-mobile-call-bar .grecaptcha-badge {
    bottom: 78px !important;
  }
}


.lf-trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--lf-border-soft);
  padding: 8px 16px;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
}
.lf-trust-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 12px;
  color: var(--lf-text-muted);
}
.lf-trust-item { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; }
.lf-trust-item svg { width: 12px; height: 12px; color: var(--lf-navy); flex-shrink: 0; }
.lf-trust-item strong { color: var(--lf-navy); font-weight: 700; }
.lf-trust-item-desktop { display: none; }


@media (min-width: 768px) {
  .lf-header { padding: 24px 20px 20px; border-bottom-width: 3px; }
  .lf-logo { gap: 12px; align-items: flex-start; }
  .lf-logo-shield { width: 48px; height: 58px; margin-top: 2px; }
  .lf-logo-text { font-size: 40px; }
  .lf-powered-by { display: block; font-size: 12px; margin-top: 5px; }
  
  
  .lf-header-call-cta.visible { display: flex; gap: 10px; padding: 10px 18px; border-radius: 10px; }
  .lf-header-call-cta svg { width: 20px; height: 20px; }
  .lf-header-call-cta-label { font-size: 10px; }
  .lf-header-call-cta-number { font-size: 17px; }

  .lf-trust-strip { padding: 10px 20px; }
  .lf-trust-strip-inner { gap: 8px 20px; font-size: 13px; }
  .lf-trust-item { gap: 6px; }
  .lf-trust-item svg { width: 14px; height: 14px; }
  .lf-trust-item-desktop { display: inline-flex; }

  .lf-mobile-call-bar {
    display: none !important;
  }

  body.has-mobile-call-bar {
    padding-bottom: 0;
  }
}




.lf-page-content {
  background: var(--bg-page, #f3f5fa);
  overflow: visible;
}

.lf-page-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

.lf-page-main,
.lf-page-sidebar {
  min-width: 0;
}

.container-main-content {
  background: var(--bg-page, #f3f5fa) ;
}

.main-content--wrapper {
  max-width: 1180px ;
  margin: 0 auto ;
}

@media (min-width: 900px) {
  .lf-page-grid {
    max-width: 1132px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: stretch;
    padding: 40px 24px 108px;
  }

  .lf-page-sidebar {
    align-self: stretch;
  }

  .lf-page-grid .main-content--wrapper,
  .lf-page-grid .info--wrapper {
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .lf-page-grid .main-content--row {
    display: block;
  }

  .lf-page-grid .question--form {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
    margin: 0;
  }

  .lf-page-sidebar .main-content--primary {
    position: sticky;
    top: 110px;
    display: block;
    width: 100%;
    max-width: none;
    flex: none;
    padding: 0;
    margin: 0;
  }
  
  .main-content--row {
    display: grid ;
    grid-template-columns: minmax(0, 1fr) 320px ;
    gap: 36px ;
    align-items: start ; 
  }

  
  .question--form, 
  .main-content--primary {
    max-width: none ;
    width: auto ;
    flex: none ;
    padding: 0 ;
    margin: 0 ;
  }

  
  .main-content--primary {
    position: sticky ;
    
    top: 110px ; 
    display: block ;
  }
}


.question--form__inner {
  background: #ffffff ;
  border-radius: 12px ;
  border: 1px solid #eaeef4 ;
  box-shadow: 0 6px 24px rgba(31, 36, 103, 0.06), 0 1px 3px rgba(31, 36, 103, 0.04) ;
  padding: 0 ;
  overflow: hidden ;
}


.form-header {
  --form-header-pad-x: 24px;
  padding: 14px 22px 0px ;
  background: #ffffff ;
  border-bottom: none ;
  margin: 0 ;
}

@media (min-width: 768px) {
  .form-header {
    --form-header-pad-x: 36px;
    padding: 32px 36px 0px ;
  }
}

.form-header h2 {
  display: block;
  font-family: 'Lato', sans-serif ;
  font-weight: 900 ;
  font-size: 17px ;
  color: #1f2467 ;
  margin-bottom: 4px ;
  margin-top: 0;
  line-height: 1.25 ;
}

@media (min-width: 768px) {
  .form-header h2 {
    font-size: 28px ;
    margin-bottom: 8px ;
  }
}

.form-header p {
  display: block;
  font-size: 13px ;
  color: #5b6470 ;
  line-height: 1.4 ;
  margin: 0 ;
}

.form-header-subcopy {
  font-size: 13px;
  color: #5b6470;
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 768px) {
  .form-header p {
    font-size: 15px ;
    color: #1f2937 ;
  }
  .form-header-subcopy {
    font-size: 15px;
    color: #1f2937;
  }
}


.dynamic-progress {
  display: block;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid #eaeef4;
  padding-bottom: 0;
  background: #ffffff ;
}
.dynamic-progress-header {
  display: flex ;
  align-items: center;
  justify-content: space-between ;
  gap: 12px;
  margin-bottom: 6px ;
}
.dynamic-progress-label, 
.dynamic-progress-time {
  font-family: 'Source Sans 3', sans-serif ;
  font-size: 12px ;
  color: #5b6470 ;
}

.dynamic-progress-label {
  text-align: left;
  font-weight: 700 ;
  text-transform: uppercase ;
  letter-spacing: 0.04em ;
}

.dynamic-progress-label strong {
  color: #1f2467 ;
  font-weight: 700 ;
}

.dynamic-progress-time {
  text-align: right;
  font-weight: 400;
  white-space: nowrap;
}
.dynamic-progress-track {
  width: 100%;
  height: 6px ;
  background: #f0f3f8 ;
  border-radius: 3px ;
  overflow: hidden ;
}
.dynamic-progress-fill {
  height: 100% ;
  width: 0;
  background: #1e72b3 ;
  border-radius: 3px ;
  transition: width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) ;
}

.evaluation-steps {
  display: none;
  margin-top: 22px;
  margin-left: calc(var(--form-header-pad-x) * -1);
  margin-right: calc(var(--form-header-pad-x) * -1);
  padding-top: 18px;
  padding-left: var(--form-header-pad-x);
  padding-right: var(--form-header-pad-x);
  border-top: 1px solid #eaeef4;
}

.evaluation-steps--inner {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 4px;
  width: 100%;
}

.evaluation-step {
  flex: 1 1 0;
  min-height: 44px;
  background: #f0f3f8;
  color: #8a93a3;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%, 11px 50%);
}

.evaluation-step:first-child {
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%);
}

.evaluation-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 11px 50%);
}

.evaluation-step.active {
  background: #1e72b3;
  color: #ffffff;
}

.evaluation-step.completed {
  background: #b8d3ea;
  color: #ffffff;
}

@media (min-width: 768px) {
  .dynamic-progress {
    display: none;
  }

  .evaluation-steps {
    display: block;
  }
}


.form-body {
  padding: 18px 24px ;
}

@media (min-width: 768px) {
  .form-body { padding: 30px 36px 36px ; }
}

.form-step-kicker {
  display: inline-block;
  background: #e8f5ed;
  color: #1f7a3d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.form-step-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #1f2467;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

.form-step-desc {
  font-size: 16px;
  color: #5b6470;
  line-height: 1.45;
  margin: 0 0 22px;
}

@media (min-width: 768px) {
  .form-step-kicker {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  .form-step-title {
    font-size: 23px;
    margin-bottom: 10px;
  }
}

.form-group {
  margin-bottom: 24px ;
  display: block ;
}

.form-group label {
  font-family: 'Lato', sans-serif ;
  font-weight: 700 ;
  font-size: 18px ;
  color: #1f2467 ;
  margin-bottom: 12px ;
  display: block ;
  line-height: 1.3 ;
  letter-spacing: -0.005em ;
}

@media (min-width: 768px) {
  .form-group >label { font-size: 23px ; margin-bottom: 8px ; }
}


.form-sec-8 .form-group label {
  font-size: 14px ;
  font-family: 'Source Sans 3', sans-serif ;
  margin-bottom: 7px ;
}

.form-sec-1 .form-group >label {
  font-size: 14px ;
  color: #1f2937;
  font-family: 'Source Sans 3', 'Lato', -apple-system, sans-serif;
}

.error-message{
  display: none;
}

.form-control {
  width: 100% ;
  padding: 14px 16px ;
  border: 1.5px solid #e3e8ef ;
  border-radius: 10px ;
  font-size: 16px ;
  font-family: inherit ;
  background: #fafbfd ;
  color: #1f2937 ;
  box-sizing: border-box ;
  transition: all 0.18s ease ;
  box-shadow: none ;
  height: auto ; 
}

.form-control:focus {
  border-color: #1f6cb0 ;
  background: #ffffff ;
  box-shadow: 0 0 0 4px rgba(31, 108, 176, 0.12) ;
  outline: none ;
}

@media (min-width: 768px) {
  #where {
    max-width: 186px ;
  }
}


.field {
  margin-bottom: 18px ;
}

.form-sec-8 .field label{
  color: #1f2937;
}

.field label {
  display: block ;
  font-size: 14px ;
  font-weight: 700 ;
  color: #1f2467 ;
  margin-bottom: 7px ;
}

.field-optional {
  font-weight: 400 ;
  color: #5b6470 ;
  font-size: 13px ;
  margin-left: 6px ;
}

.field input,
.field textarea,
.field select {
  width: 100% ;
  padding: 14px 16px ;
  border: 1.5px solid #e3e8ef ;
  border-radius: 10px ;
  font-size: 16px ;
  font-family: inherit ;
  color: #1f2937 ;
  background: #fafbfd ;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease ;
  appearance: none ;
  -webkit-appearance: none ;
  box-sizing: border-box ;
}

.field textarea {
  resize: vertical ;
  min-height: 110px ;
  line-height: 1.5 ;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none ;
  border-color: #1f6cb0 ;
  background: #ffffff ;
  box-shadow: 0 0 0 4px rgba(31, 108, 176, 0.12) ;
}

.field-error {
  font-size: 13px ;
  color: #c8102e ;
  margin-top: 6px ;
  display: none ;
  font-weight: 600 ;
}

.field.has-error .field-error {
  display: block ;
}

.field input.error + .field-error:not(.field-error--valid),
.field textarea.error + .field-error:not(.field-error--valid),
.field select.error + .field-error:not(.field-error--valid),
.field input[aria-invalid="true"] + .field-error:not(.field-error--valid),
.field textarea[aria-invalid="true"] + .field-error:not(.field-error--valid),
.field select[aria-invalid="true"] + .field-error:not(.field-error--valid) {
  display: block ;
}

.field input.valid-error ~ .field-error--valid {
  display: block ;
}

.field input[type="tel"].valid-error ~ .field-error--valid {
  display: block ;
}

.zip-wrap {
  max-width: 220px ;
}

.input-row {
  display: grid ;
  grid-template-columns: 1fr ;
  gap: 14px ;
}

@media (min-width: 480px) {
  .input-row.cols-2 {
    grid-template-columns: 1fr 1fr ;
    gap: 12px ;
  }
}


select#nolopath-practice-area-select { display: none ; }


.practice-area-radios {
  display: flex ;
  flex-direction: column ;
  gap: 10px ;
}

.practice-area-radios label {
  background: #fafbfd ;
  border: 1.5px solid #e3e8ef ;
  border-radius: 10px ;
  padding: 0 18px ;
  font-size: 16px ;
  font-family: 'Source Sans 3', sans-serif ;
  font-weight: 500 ;
  color: #1f2937 ;
  display: flex ;
  align-items: center ;
  justify-content: space-between ;
  flex-direction: row-reverse ;
  cursor: pointer ;
  min-height: 54px ;
  transition: all 0.18s ease ;
  margin: 0 ;
}

.practice-area-radios label:hover {
  border-color: #4a8dc9 ;
  background: #e8f0f8 ;
  transform: translateY(-1px) ;
  box-shadow: 0 2px 8px rgba(31, 108, 176, 0.08) ;
}

.practice-area-radios input[type="radio"] {
  appearance: none ;
  -webkit-appearance: none ;
  width: 22px ;
  height: 22px ;
  border: 2px solid #c9d2dd ;
  border-radius: 50% ;
  background: #ffffff ;
  margin: 0 ;
  outline: none ;
  flex-shrink: 0 ;
  transition: all 0.15s ease ;
  position: relative ;
}

.practice-area-radios input[type="radio"]:checked {
  background-color: #1f6cb0 ;
  border-color: #1f6cb0 ;
}

.practice-area-radios input[type="radio"]:checked::after {
  content: "" ;
  position: absolute ;
  top: 50% ;
  left: 50% ;
  width: 10px ;
  height: 10px ;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3.6 8.4l2.5 2.5 6-6'/%3E%3C/svg%3E") ;
  background-repeat: no-repeat ;
  background-position: center ;
  background-size: 14px 14px ;
  transform: translate(-50%, -50%) ;
}


.practice-area-radios label:has(input[type="radio"]:checked) {
  border-color: #1f6cb0 ;
  background: #e8f0f8 ;
  color: #1f2467 ;
  font-weight: 600 ;
  box-shadow: 0 0 0 1px #1f6cb0 inset ;
}


.form-body--footer {
  margin-top: 24px ;
  display: flex ;
  align-items: center ;
  gap: 10px ;
  justify-content: flex-end ;
}


.form-body--footer.\!justify-between {
  justify-content: space-between ;
}

.btn-progress, .btn-submit:not(.form-disclaimer button), #frm_btn {
  background: #e87722 ;
  background-image: none ; 
  color: #ffffff ;
  box-shadow: 0 3px 0 #c45f17 ;
  border-radius: 8px ;
  padding: 15px 32px ;
  min-height: 52px ;
  min-width: 130px ;
  font-family: 'Lato', sans-serif ;
  font-weight: 900 ;
  font-size: 16px ;
  text-transform: uppercase ;
  letter-spacing: 0.04em ;
  border: none ;
  cursor: pointer ;
  display: inline-flex ;
  align-items: center ;
  justify-content: center ;
  transition: all 0.15s ease ;
  text-indent: 0 ; 
  width: auto ;
}

.btn-progress:hover, .btn-submit:not(.form-disclaimer button):hover, #frm_btn:hover {
  background: #f08735 ;
  transform: translateY(-1px) ;
  box-shadow: 0 4px 0 #c45f17, 0 4px 12px rgba(232, 119, 34, 0.25) ;
}

.btn-progress:active, .btn-submit:not(.form-disclaimer button):active, #frm_btn:active {
  transform: translateY(2px) ;
  box-shadow: 0 1px 0 #c45f17 ;
}

.btn-progress:disabled {
  background: #d4d8de ;
  color: #ffffff ;
  box-shadow: 0 3px 0 #b3b8c0 ;
  cursor: not-allowed ;
  transform: none ;
}

.btn-progress:disabled:hover,
.btn-progress:disabled:active {
  background: #d4d8de ;
  box-shadow: 0 3px 0 #b3b8c0 ;
  transform: none ;
}

.btn-back {
  background: transparent ;
  color: #5b6470 ;
  box-shadow: none ;
  padding: 14px 18px ;
  font-weight: 700 ;
  font-size: 16px ;
  text-transform: none ;
  min-width: 0 ;
}

.btn-back:hover {
  background: #f0f3f8 ;
  color: #1f2467 ;
  box-shadow: none ;
  transform: none ;
}

.btn-next .arrow {
  font-size: 14px ;
  line-height: 1 ;
  margin-left: 4px ;
}


.main-content--text, 
.main-content--member {
  background: #f7f9fc ;
  border: 1px solid #eaeef4 ;
  border-radius: 12px ;
  padding: 22px 24px ;
  margin-bottom: 18px ;
}

.main-content--primary h2 {
  font-family: 'Lato', sans-serif ;
  font-weight: 900 ;
  font-size: 20px ;
  color: #1f2467 ;
  border: none ;
  border-bottom: 2px solid #1f6cb0 ;
  padding-bottom: 10px ;
  margin-top: 0;
  margin-bottom: 16px ;
  display: inline-block ;
}

.main-content--text p {
  font-size: 14.5px ;
  line-height: 1.6 ;
  color: #1f2937 ;
  margin: 0 ;
}

.member--logo {
  display: grid ;
  grid-template-columns: 1fr 1fr ;
  gap: 12px ;
  width: 100% ;
  max-width: 100% ;
  justify-content: stretch ;
}

.member--logo img {
  background: #ffffff ;
  border: 1px solid #eaeef4 ;
  border-radius: 6px ;
  padding: 8px ;
  height: 56px ;
  width: 100% ;
  max-width: 100% ;
  object-fit: contain ;
  margin: 0 ;
  box-sizing: border-box ;
}

.aside-card {
  background: #f7f9fc;
  padding: 22px 24px;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid #eaeef4;
}

.aside-card h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #1f2467;
  margin-bottom: 12px;
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #1f6cb0;
  display: inline-block;
}

.aside-card p {
  font-size: 14.5px;
  color: #1f2937;
  line-height: 1.6;
  margin: 0;
}

.seen-in {
  padding: 0;
}

.seen-in h3 {
  margin: 22px 24px 16px;
}

.seen-in-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 24px 24px;
}

.seen-cell {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #eaeef4;
}

.seen-logo {
  color: #888888;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  opacity: 0.85;
}

.seen-logo.usatoday {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.seen-logo.kiplinger {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.seen-logo.wapo {
  font-family: serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
}

.seen-logo.newsweek {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 14px;
  background: #888888;
  color: #ffffff;
  padding: 4px 10px;
  display: inline-block;
  border-radius: 2px;
  letter-spacing: 0.01em;
}


.privacy-note {
  font-size: 13.5px;
  color: #1f2937;
  line-height: 1.55;
  margin-top: 16px;
  padding: 14px 16px;
  background: #e8f0f8;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.privacy-note strong {
  color: #1f2467;
}

.privacy-note .lock-icon {
  width: 20px;
  height: 20px;
  color: #1f6cb0;
  flex-shrink: 0;
  margin-top: 1px;
}


.form-disclaimer {
  font-size: 11.5px ;
  color: #5b6470 ;
  line-height: 1.6 ;
  margin-top: 24px ;
  padding: 14px 16px ;
  background: #f0f3f8 ;
  border-radius: 8px ;
  border: 1px solid #eaeef4 ;
}

.form-disclaimer p { 
  margin-bottom: 8px ; 
  font-size: inherit ;
  color: inherit ;
  display: inline;
  font-family: 'Source Sans 3', 'Lato', -apple-system, sans-serif;
}

.form-disclaimer a, 
.form-disclaimer button {
  text-decoration-color: #c9d2dd;
  color: #5b6470 ;
  text-decoration: underline ;
  font-weight: 600 ;
  background: none ;
  border: none ;
  padding: 0 ;
  font-size: inherit ;
  font-family: 'Source Sans 3', 'Lato', -apple-system, sans-serif;
}

.form-disclaimer a:hover, 
.form-disclaimer button:hover {
  color: #1f6cb0 ;
}




.hide,
.hidden {
  display: none ;
}


div.form-check,
div.form-check-line {
  display: flex ;
  flex-direction: column ;
  gap: 10px ;
  background: transparent ;
  border: none ;
  padding: 0 ;
  box-shadow: none ;
  min-height: 0 ;
}


input[type="radio"].form-check-input {
  position: absolute ;
  opacity: 0 ;
  width: 0 ;
  height: 0 ;
  margin: 0 ;
}


input[type="radio"].form-check-input + label.form-check-label {
  display: flex ;
  align-items: center ;
  justify-content: space-between ; 
  width: 100% ;
  min-height: 54px ;
  padding: 15px 18px ;
  background: #fafbfd ;
  border: 1.5px solid #e3e8ef ;
  border-radius: 10px ;
  font-size: 16px ;
  font-family: 'Source Sans 3', sans-serif ;
  font-weight: 500 ;
  color: #1f2937 ;
  cursor: pointer ;
  transition: all 0.18s ease ;
  box-sizing: border-box ;
  margin: 0 ;
  text-align: left ;
}


input[type="radio"].form-check-input:not(:checked) + label.form-check-label:hover {
  border-color: #4a8dc9 ;
  background: #e8f0f8 ;
  transform: translateY(-1px) ;
  box-shadow: 0 2px 8px rgba(31, 108, 176, 0.08) ;
}


input[type="radio"].form-check-input + label.form-check-label::before {
  display: none ;
}


input[type="radio"].form-check-input + label.form-check-label::after {
  content: "" ;
  display: block ;
  width: 22px ;
  height: 22px ;
  border: 2px solid #c9d2dd ;
  border-radius: 50% ;
  background: #ffffff ;
  flex-shrink: 0 ;
  margin-left: 15px ;
  transition: all 0.15s ease ;
  box-sizing: border-box ;
}


input[type="radio"].form-check-input:checked + label.form-check-label {
  border-color: #1f6cb0 ;
  background: #e8f0f8 ;
  color: #1f2467 ;
  font-weight: 600 ;
  box-shadow: 0 0 0 1px #1f6cb0 inset ;
}


input[type="radio"].form-check-input:checked + label.form-check-label::after {
  border: 2px solid #1f6cb0 ;
  background-color: #1f6cb0 ;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3.6 8.4l2.5 2.5 6-6'/%3E%3C/svg%3E") ;
  background-repeat: no-repeat ;
  background-position: center ;
  background-size: 14px 14px ;
}

.form-check-line.form-check-card {
  display: grid ;
  grid-template-columns: repeat(2, minmax(0, 1fr)) ;
  gap: 12px ;
}

.form-check-line.form-check-card input.form-check-input + label.form-check-label {
  justify-content: center ;
  text-align: center ;
  font-weight: 700 ;
  min-height: 64px ;
  padding: 14px 18px ;
}

.form-check-line.form-check-card input.form-check-input + label.form-check-label::after {
  display: none ;
}

.form-check-line.form-check-card.form-check-card-last-full input.form-check-input:last-of-type + label.form-check-label {
  grid-column: 1 / -1 ;
}


input[type="checkbox"].form-check-input {
  position: absolute ;
  opacity: 0 ;
  width: 0 ;
  height: 0 ;
  margin: 0 ;
}


input[type="checkbox"].form-check-input + label.form-check-label {
  display: flex ;
  align-items: center ;
  justify-content: space-between ;
  width: 100% ;
  min-height: 54px ;
  padding: 15px 18px ;
  background: #fafbfd ;
  border: 1.5px solid #e3e8ef ;
  border-radius: 10px ;
  font-size: 16px ;
  font-family: 'Source Sans 3', sans-serif ;
  font-weight: 500 ;
  color: #1f2937 ;
  cursor: pointer ;
  transition: all 0.18s ease ;
  box-sizing: border-box ;
  margin: 0 ;
  text-align: left ;
  position: relative ;
}

input[type="checkbox"].form-check-input:not(:checked) + label.form-check-label:hover {
  border-color: #4a8dc9 ;
  background: #e8f0f8 ;
  transform: translateY(-1px) ;
  box-shadow: 0 2px 8px rgba(31, 108, 176, 0.08) ;
}


input[type="checkbox"].form-check-input + label.form-check-label::before {
  display: none ;
}


input[type="checkbox"].form-check-input + label.form-check-label::after {
  content: "" ;
  display: block ;
  width: 22px ;
  height: 22px ;
  border: 2px solid #c9d2dd ;
  border-radius: 6px ;
  background: #ffffff ;
  flex-shrink: 0 ;
  margin-left: 15px ;
  transition: all 0.15s ease ;
  box-sizing: border-box ;
}


input[type="checkbox"].form-check-input:checked + label.form-check-label {
  border-color: #1f6cb0 ;
  background: #e8f0f8 ;
  color: #1f2467 ;
  font-weight: 600 ;
  box-shadow: 0 0 0 1px #1f6cb0 inset ;
}


input[type="checkbox"].form-check-input:checked + label.form-check-label::after {
  border-color: #1f6cb0 ;
  background: #1f6cb0 ;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M3.6 8.4l2.5 2.5 6-6'/%3E%3C/svg%3E") ;
  background-repeat: no-repeat ;
  background-position: center ;
  background-size: 14px 14px ;
}





.container-info {
  background: var(--bg-page, #f3f5fa) ;
  margin-top: -38px ; 
  position: relative ;
  margin-bottom: 16px;
}

@media(min-width: 900px){
  .container-info {
  margin-bottom: 0px;
}
}

.lf-page-grid .container-info {
  margin-top: 0;
}

.info--wrapper {
  max-width: 1180px ;
  margin: 0 auto ;
  padding: 0 16px 60px ;
}

.lf-page-grid .info--wrapper {
  max-width: none;
  margin: 0;
  padding: 24px 0 0;
}


.info--wrapper .container {
  max-width: 100% ;
  padding: 0 ;
}


@media (min-width: 900px) {
  .info--wrapper {
    padding: 0 24px 60px ;
  }

  .lf-page-grid .info--wrapper {
    padding: 24px 0 0;
  }

  .lf-page-grid .info--message {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    flex: none;
  }
  
  .info--message {
    
    width: calc(100% - 356px) ; 
    max-width: none ;
    margin-left: 0 ;
    margin-right: auto ;
    flex: none ;
  }
}


.wg-accordion {
  background: #ffffff ;
  border-radius: 12px ;
  border: 1px solid #eaeef4 ;
  box-shadow: 0 6px 24px rgba(31, 36, 103, 0.06), 0 1px 3px rgba(31, 36, 103, 0.04) ;
  margin: 0 ;
  padding: 0 ;
  overflow: hidden ;
}


.accordion-header {
  display: flex ;
  align-items: center ;
  width: 100% ;
  padding: 16px 20px ;
  font-family: 'Source Sans 3', sans-serif ;
  font-size: 16px ;
  font-weight: 700 ;
  color: #1f2467 ;
  cursor: pointer ;
  background: transparent ;
  transition: background 0.15s ;
  border: none ;
}

.accordion-header:hover {
  background: #f0f3f8 ;
}


.accordion-header.add-icon::before {
  content: "" ;
  display: inline-flex ;
  align-items: center ;
  justify-content: center ;
  width: 24px ;
  height: 24px ;
  border-radius: 50% ;
  background:
    linear-gradient(#ffffff, #ffffff) center / 10px 2px no-repeat,
    linear-gradient(#ffffff, #ffffff) center / 2px 10px no-repeat,
    #1f6cb0;
  margin-right: 12px ;
  transition: transform 0.25s ;
  padding: 0 ;
  line-height: 0 ;
}


.accordion-header.add-icon.open::before {
  transform: rotate(45deg) ;
}


.accordion-body {
  display: none;
  padding: 0 20px 20px ;
  font-size: 14.5px ;
  line-height: 1.65 ;
  color: #1f2937 ;
  border-top: 1px solid #eaeef4 ;
  padding-top: 16px ;
  background: #ffffff ;
  margin: 0 ;
}

.accordion-body h3 {
  font-family: 'Lato', sans-serif ;
  font-weight: 900 ;
  font-size: 16px ;
  color: #1f2467 ;
  margin: 18px 0 10px ;
  padding: 0 ;
}

.accordion-body p {
  margin-bottom: 12px ;
  margin-top: 0;
  font-size: inherit ;
  line-height: inherit ;
  color: inherit ;
}

.accordion-body ul {
  margin: 0 0 12px 20px ;
  padding: 0 ;
}

.accordion-body li {
  margin-bottom: 6px ;
  list-style-type: disc ;
  font-size: inherit ;
  line-height: inherit ;
}


footer .container-footer-mid {
  background: #1f2467 !important;
}

footer .footer-mid--wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px !important;
}

footer .footer-mid--row {
  padding-top: 0 !important;
  justify-content: flex-start;
}

footer .footer-mid__copyright {
  width: 100%;
}

footer .footer-mid__copyright p {
  margin: 0 0 10px 0 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

footer .footer-mid__copyright p:last-child {
  margin-bottom: 0 !important;
}

footer .footer-mid__copyright strong {
  font-weight: 700;
  color: #ffffff;
}

footer .footer-mid__copyright a,
footer .footer-mid__copyright a.manageprefs,
footer .footer-mid__copyright .ib-your-choices {
  color: #ffffff !important;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

footer .footer-mid__copyright a:hover,
footer .footer-mid__copyright a.manageprefs:hover,
footer .footer-mid__copyright .ib-your-choices:hover {
  text-decoration-color: #ffffff;
}

footer .footer-mid__copyright .ib-your-choices img {
  vertical-align: middle;
  margin-left: 4px;
}
