/* ================================================================== */
/* 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 {
    display: flex;
        padding-left: 28px !important;
}


.na-check input[type="checkbox"]{
  display: none;
}

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-actions .na-btn.na-btn--primary:focus{
  background: #2b436a;
  color: #ffffff;
}

.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-agree-doc .na-btn--ghost:hover{
  background: #0F2A57;
  color: #fff;
}

.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);
    position: relative;
}
button.na-modal__close svg path {
    stroke: #000000;
}

button.na-modal__close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #ffffff;
    padding: initial;
    width: 32px;
    height: 32px;
    padding-top: 3px;
    border: 1px solid #cdcdcd;
}
.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 ,
.na-modal__home:hover,
.na-modal__home:focus {
    margin-top: 14px;
    color: #0F2A57;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline !important;
    font-family: 'Urbanist';
    display: block;
    background: #ffffff;
    padding: 0;
    outline: none;
    border: 0;
}
.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;
}
}