/* ================================================================== */
/* Property Report checkout wizard                                    */
/* ================================================================== */
.na-checkout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  color: #101828;
}

.na-steps li:first-child {
    padding-left: 0;
}

.na-checkout--error {
  text-align: center;
  padding: 60px 20px;
}

/* Stepper */
.na-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0 0 34px;
  /* padding: 0 0 24px; */
  /* border-bottom: 1px solid #eef1f4; */
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}

.na-steps__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  color: #575555;
  position: relative;
  font-family: 'Urbanist';
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  position: relative;
  background: #ffffff;
  z-index: 11;
  padding: 0 15px;
}

/* .na-steps:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #eef1f4;
  position: absolute;
  z-index: 0;
} */

.na-steps__item:not(:last-child)::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e9f0;
    margin-left: 8px;
    position: absolute;
    width: 100%;
    /* right: -111px; */
    left: 110px;
    z-index: 0;
    top: 19px;
}

.na-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #ffffff;
    color: #6b7280;
    font-size: 16px;
    flex: 0 0 auto;
    border: 1px solid #DBDFE6;
    font-weight: 700;
}

.na-steps__item.is-active {
  color: #0f2a57;
}

.na-steps__item.is-active .na-steps__num,
.na-steps__item.is-done .na-steps__num {
  background: #0f2a57;
  color: #fff;
}

/* Panels */
.na-panel {
  display: none;
}

.na-panel.is-active {
  display: block;
}

.na-panel__title {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #252525;
  margin-bottom: 10px;
}

.na-panel__lead {
  font-family: 'Fredoka';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #575555;
}

/* Property summary */
.na-summary {
  background: #F7F7F7;
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 28px;
}

.na-summary__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.na-summary__name {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 4px;
  color: #050F1E;
}

.na-summary__loc {
  font-family: 'Urbanist';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  color: #575555;
}

.na-summary__price {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.na-summary__price-label {
  font-family: 'Urbanist';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #575555;
}

.na-summary__price-amount {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #050F1E;
}

.na-summary__price-amount small {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #575555;
}

.na-summary__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.na-fact {
  background: #fff;
  /* border: 1px solid #eef1f4; */
  border-radius: 12px;
  padding: 15px;
  display: flex;
  /* flex-direction: column; */
  gap: 10px;
}

.na-fact__label {
  font-family: 'Urbanist';
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #575555;
}

.na-fact__value {
  font-family: 'Urbanist';
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: #050F1E;
}

/* Form */
.na-form__legend {
font-family: 'Urbanist';
font-weight: 700;
font-size: 16px;
line-height: 19px;
    margin-bottom: 20px !important;
text-transform: capitalize;
color: #050F1E;
margin-top: 0;
}

.na-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.na-role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid #0F2A57;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

label.na-role span {
    font-family: 'Urbanist';
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #050F1E;
}

.na-role.is-selected,
.na-role:has(input:checked) {
  border-color: #0f2a57;
  background: #f2f6ff;
}

.na-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.na-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.na-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.na-field {
font-family: 'Fredoka';
font-weight: 400;
font-size: 16px;
line-height: 22px;
color: #575555;

}


.payment .na-field {
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #575555;
    display: block;
    margin-bottom: 16px;
}

.na-field input {
    height: auto;
    padding: 13px 14px;
    border: 1px solid #E8E8E8;
    border-radius: 10px;
    font-size: 16px;
     color: #050F1E !important;
  font-family: 'Fredoka' !important;
    background: #fff;
    outline: none;
    margin-top: 8px;
}

.na-field input::placeholder{
 color: #919191;
}

.na-field input:focus {
  border-color: #0f2a57;
}

.na-opt {
  color: #b6bdc9;
  font-weight: 500;
}

/* Per-field inline validation */
.na-field-error {
  display: none;
  color: #c0392b;
  font-size: 12px;
  font-weight: 500;
}

.na-field.is-invalid input {
  border-color: #c0392b;
}

.na-field.is-invalid input:focus {
  border-color: #c0392b;
}

.na-field.is-invalid .na-field-error {
  display: block;
}

/* Agreement */
.na-agreement {
  background: #f7f8fa;
  border: 1px solid #eef1f4;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
}

.na-agreement__title {
font-family: 'Urbanist';
font-weight: 700;
font-size: 18px;
line-height: 32px;
color: #050F1E;
}

.na-agreement p {
font-family: 'Fredoka';
font-weight: 400;
font-size: 16px;
line-height: 30px;
color: #0B2041;
}

.na-check {
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #404040;
    display: block;
    margin-bottom: 15px;
  position: relative;
  }

.bordered_sec .na-check{
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  color: #050F1E;
}

.na-check input {
  margin-top: 3px;
}

.na-check a {
  color: #0f2a57;
}

.na-check a {
    color: #404040;
    font-family: 'Fredoka';
}
.na-check span {
    padding-left: 10px;
}
label.na-check input + span:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #cdcdcd;
    position: absolute;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
}
label.na-check input:checked + span:after{
  content: url(/wp-content/themes/astra-child/assets/image/check.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    left: -2px;
    top:-2px;
    border-radius: 6px;
}
/* Payment */
.na-pay > .gray_box{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}

/* .na-pay__card,
.na-order {
  background: #f7f8fa;
  border: 1px solid #eef1f4;
  border-radius: 14px;
  padding: 24px;
} */

.na-pay__title,
.na-order__title {
margin-bottom: 20px;
font-family: 'Urbanist';
font-weight: 700;
font-size: 18px;
line-height: 32px;
color: #050F1E;
}
.na-panel.payment label.na-field{
      font-family: 'Fredoka';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #575555;
    display: block;
    margin-bottom: 16px;

}
.na-stripe-el {
    display: block;
    /* height: 48px; */
    padding: 13px 14px;
    border: 1px solid #e5e9f0;
    border-radius: 10px;
    background: #fff;
    margin-top: 6px;
}

.na-pay__secure {
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #404040;
    display: flex;
    gap: 5px;
}

/* Order summary */
.na-order__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  font-size: 14px;
  border-bottom: 1px dashed #e2e6ee;
}

.payment .na-order__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    font-size: 14px;
    border-top: 1px dashed #e2e6ee;
    border-bottom: 0;
}

.na-order__row span:first-child {
font-family: 'Urbanist';
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: #575555;
}

.na-order__row span:last-child{
  padding-bottom: 0;
}

.na-order__row span:last-child {
font-family: 'Urbanist';
font-weight: 600;
font-size: 14px;
line-height: 20px;
text-align: right;
color: #050F1E;
}

.na-order__breakdown {
  background: #F7F7F7;
  border-radius: 10px;
  padding:15px 20px;
  margin: 10px 0 20px;
}

.na-order__breakdown .na-order__row {
    border: 0;
    padding: 8px 0;
}

.na-order__bd-title {
    font-family: 'Urbanist';
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #050F1E;
}

.na-order__row--total {
    border-bottom: 0;
    font-size: 16px;
    border-top: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}
.na-order__row--total span {
  font-weight: 800 !important;
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #575555;
}
.na-order .na-order__breakdown .na-order__row {
    border-bottom: 0;
    border: 0;
    padding: 8px 0;
}
.na-order__row.na-order__row--total span:first-child {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #575555;
}
.na-order__row.na-order__row--total span:last-child {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  text-align: right;
  color: #050F1E;
}
.na-order__note {
    font-size: 14px;
    color: #575555;
    line-height: 1.6;
    padding: 15px 20px;
    background: #F7F7F7;
    border-radius: 6px;
    font-family: 'Fredoka';
}

p.na-order__note strong {
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #0B2041;
    display: block;
    margin-bottom: 8px;
}

/* Buttons */
.na-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.na-btn--primary {
    background: #0f2a57;
    color: #fff;
    font-family: 'Urbanist';
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
        max-width: 196px;
}

.na-actions .na-btn.na-btn--primary {
    padding: 16.5px 20px;
    min-width: 170px;
    gap: 20px;
}
.na-modal__table .na-order__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.na-btn--primary:hover {
  background: #1a1a1a;
}

.na-btn--primary:hover {
    background: #fff;
    outline: 1px solid #0f2a57;
    color: #0f2a57;
}

.na-btn--primary.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.na-btn--ghost {
    font-family: 'Urbanist';
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #0F2A57;
    background: #fff;
    border: 1px solid #0f2a57;
}
.na-btn--ghost:hover{
  background: #0F2A57;
}
.na-actions {
  display: flex;
  margin-top: 26px;
  margin-bottom: 26px;
}

.na-actions--end {
  justify-content: flex-end;
  margin-bottom: 25px;
}

.na-actions--between {
  justify-content: space-between;
}

.na-booking .na-actions--between{
      justify-content: space-between;
}
.na-pay {
    margin-bottom: 77px;
}
/* Errors */
.na-error {
  color: #c0392b;
  font-size: 13px;
  margin: 14px 0 0;
}

/* Success modal */
.na-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(16, 24, 40, 0.55);
  display: flex;
      align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.na-modal__box .na-modal__lead {
    margin-top: 20px;
    font-family: 'Fredoka';
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: #575555;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
}

.na-modal[hidden] {
  display: none;
}
.na-modal__box {
    background: #fff;
    border-radius: 12px;
    max-width: 582px;
    width: 100%;
    padding: 34px 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.3);
}

.na-modal__check {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: #0f2a57;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.na-modal__title {
font-family: 'Urbanist';
font-weight: 700;
font-size: 30px;
line-height: 36px;
color: #252525;
}

.na-modal__lead {
  font-family: 'Fredoka';
font-weight: 400;
font-size: 18px;
line-height: 22px;
text-align: center;

}

.na-modal__txn {
    font-family: 'Urbanist';
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #050F1E;
    background: #E7EAEE;
    padding: 10px 15px;
    border-radius: 14px;
    display: inline-block;
    margin-bottom: 30px;
}

.na-modal__amount {
    background: #f7f8fa;
    border-radius: 12px;
    padding: 16px 10px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.na-modal__amount span {
font-family: 'Urbanist';
font-weight: 500;
font-size: 16px;
line-height: 20px;
text-align: center;
color: #050F1E;
}

.na-modal__amount strong {
font-family: 'Urbanist';
font-weight: 700;
font-size: 30px;
line-height: 36px;
text-align: center;
text-transform: capitalize;
color: #050F1E;
}

.na-modal__table {
    text-align: left;
    margin-bottom: 22px;
    border: 1px solid #DBDFE6;
    border-radius: 12px;
    padding: 20px;
}
.na-modal__table .na-order__row:first-child {
    padding-top: 0;
}

.na-modal__download {
  width: 100%;
}

.na-modal__home {
    margin-top: 14px;
    color: #0F2A57;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline !important;
    font-family: 'Urbanist';
    display: block;
}
.na-form {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 12px;
}

.page-id-597 .na-steps{
  padding-left: 0;
  margin-bottom: 40px;
}

.na-check input[type="checkbox"] {

}

.na-pricebox .na-order__row {
    border-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .na-pay {
    grid-template-columns: 1fr;
  }

  .na-summary__facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment .na-pay > .gray_box{
    grid-template-columns: 1fr;
  }
  .na-booking .na-actions--end{
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 640px) {
  .na-summary__head {
    flex-direction: column;
  }

  .na-summary__price {
    text-align: left;
  }

  .na-grid--2,
  .na-grid--3 {
    grid-template-columns: 1fr;
  }

  .na-steps__item:not(:last-child)::after {
    display: none;
  }
    .na-steps__item{
    padding: 0 !important;
  }
  .na-steps:after{
    background: none;
  }
 .na-steps {
    flex-direction: row;
    align-items: flex-start;
    flex-flow: nowrap;
    overflow-x: auto;
}
.na-summary{
  padding: 15px;
}
.na-summary__facts {
    grid-template-columns: repeat(1, 1fr);
}
.gray_box{
  padding: 15px;
}
}


/* ------------------------------------------------------------------ */
/* Payment in progress — button spinner + full-page "processing" veil  */
/* ------------------------------------------------------------------ */
.na-btn.is-loading::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  vertical-align: -3px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: na-spin 0.8s linear infinite;
}
.na-pay-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 15, 30, 0.55);
}
.na-pay-overlay[hidden] {
  display: none;
}
.na-pay-overlay__box {
  background: #fff;
  border-radius: 14px;
  padding: 30px 34px;
  text-align: center;
  max-width: 340px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}
.na-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #e5e9f0;
  border-top-color: #0f2a57;
  border-radius: 50%;
  animation: na-spin 0.8s linear infinite;
}
.na-pay-overlay__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #050f1e;
  margin: 16px 0 4px;
}
.na-pay-overlay__note {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}
body.na-paying {
  overflow: hidden;
}
@keyframes na-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .na-spinner,
  .na-btn.is-loading::after {
    animation-duration: 2.4s;
  }
}

/* "(optional)" hint next to a field label */
.na-field__optional {
  font-size: 13px;
  color: #9aa4b2;
}

/* Fields filled from the report record — read-only, not editable */
.na-field input.is-locked,
.na-field input[readonly] {
  background: #f2f4f7;
  color: #575555;
  cursor: not-allowed;
}
.na-field input.is-locked:focus,
.na-field input[readonly]:focus {
  border-color: #e5e9f0;
  box-shadow: none;
}

/* ================================================================== */
/* Agreement documents — shared by the booking wizard (Step 4) and the */
/* report download checkout (Step 2)                                   */

/* --- shared --- */
.na-agree-sections {
  display: block;
}
.na-agree-table,
.na-ack {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 14px;
}
.na-agree-table th,
.na-agree-table td,
.na-ack th,
.na-ack td {
  border: 1px solid #e5e9f0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.na-agree-table th {
  width: 34%;
  background: #f7f8fa;
  font-weight: 600;
  color: #0f2a57;
}
.na-ack thead th {
  background: #f7f8fa;
  font-weight: 600;
  color: #0f2a57;
}
.na-ack td:first-child {
  width: 84px;
}
.na-ack__ini {
  width: 100%;
  max-width: 68px;
  padding: 6px 8px;
  border: 1px solid #e5e9f0;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f2a57;
}
.na-agree-note {
  font-size: 12px;
  color: #9aa4b2;
  font-style: italic;
}
.na-agree-warning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 10px;
  padding: 12px 16px;
}
.na-agree-exec {
  margin-top: 8px;
}
.na-agree-exec__note {
  font-size: 13px;
  color: #6b7280;
  margin: 6px 0 0;
}

/* --- inline mode: content, then its checkbox, repeated --- */
.na-agree-sec {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.na-agree-sec__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #050f1e;
  margin: 0 0 12px;
}
.na-agree-sec__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #0f2a57;
  color: #fff;
  font-size: 13px;
  flex: 0 0 auto;
}
.na-agree-sec__body {
  font-size: 14px;
  line-height: 1.7;
  color: #575555;
}
.na-agree-sec__check {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef1f4;
  font-weight: 600;
  color: #050f1e;
}

@media (max-width: 600px) {
  .na-ack td:first-child {
    width: 64px;
  }
}

/* Agreement checkboxes use the REAL input state (checked / unchecked) rather
   than the fake :before box the shared .na-check style draws — that fake layer
   sat next to the native control and showed a second, empty box. */
.na-agree-sections .na-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: static;
  margin: 0;
}
.na-agree-sections .na-check input[type="checkbox"] {
  /* properties-listing.css hides every .na-check checkbox (display:none) because
     the shared style fakes one with :before — we want the real control here. */
  display: inline-block;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 1px 0 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: #0f2a57;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  position: static;
}
.na-agree-sections .na-check input + span::before,
.na-agree-sections .na-check input:checked + span::after {
  content: none;
  display: none;
}
.na-agree-sections .na-check span {
  padding-left: 0;
}
/* Visible confirmation that a part has been agreed */
.na-agree-sec.is-agreed {
  border-color: #0f2a57;
  background: #f8f9fc;
}
.na-agree-heading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #050f1e;
  margin: 0 0 16px;
}


/* Clause heading inside a part (from the Agreements screen) */
.na-clause__h {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #050f1e;
  margin: 18px 0 6px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.na-agree-sec__body > .na-clause__h:first-child { margin-top: 0; }
.na-clause__n {
  font-weight: 700;
  color: #0f2a57;
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}
/* "In short" summary that sits just above a part's tick box */
.na-agree-summary {
  background: #f7f8fa;
  border: 1px solid #eef1f4;
  border-left: 3px solid #0f2a57;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 18px;
}
.na-agree-summary__t {
  font-weight: 700;
  font-size: 13px;
  color: #0f2a57;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.na-agree-summary ul { margin: 0; padding-left: 18px; }
.na-agree-summary li { font-size: 13.5px; line-height: 1.6; color: #575555; margin-bottom: 4px; }
.na-agree-summary li:last-child { margin-bottom: 0; }

/* Headings that come from the agreement document itself */
.na-agree-sec__body > h1,
.na-agree-sec__body > h2 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: #050f1e;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eef1f4;
}
.na-agree-sec__body > h3 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  /* font-size: 15.5px; */
  color: #0f2a57;
  margin: 20px 0 6px;
}
.na-agree-sec__body > h3:first-child,
.na-agree-sec__body > h2:first-child { margin-top: 0; }
.na-agree-sec__body ol,
.na-agree-sec__body ul { padding-left: 20px; margin: 10px 0; }
.na-agree-sec__body li { margin-bottom: 6px; line-height: 1.65; }

/* A tick box sitting inside the text, where the admin placed it */
.na-agree-sec__body .na-agree-sec__check {
  background: #f7f8fa;
  border: 1px solid #eef1f4;
  border-left: 3px solid #0f2a57;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 18px 0;
}
.na-agree-sec__body .na-agree-sec__check:last-child { margin-bottom: 0; }
.na-agree-slot:empty,
.na-agree-sign-slot:empty { display: none; }
.na-agree-loading {
  color: #6b7280;
  font-size: 14px;
  padding: 18px 0;
}
