/* =========================================================
   Camp Application – Form Pages (form.html, form-2.html)
   ========================================================= */

:root {
  --form-bg: #000000;
  --form-banner-1: #061b2c;
  --form-banner-2: #0a2f46;
  --form-reminder-bg: #0c3148;
  --form-panel-bg: #ffffff;
  --form-text: #0e2d48;
  --form-muted: rgba(255, 255, 255, 0.72);
  --form-muted-2: rgba(255, 255, 255, 0.6);
  --form-border: rgba(13, 33, 55, 0.12);
  --form-card-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  --form-radius: 8px;
  --form-yellow: #ffcc66;
  --form-gray-btn: rgba(255, 255, 255, 0.18);
  --form-gray-btn-text: rgba(255, 255, 255, 0.92);

  /* Form-2 palette (scoped usage under .page-form2) */
  --form2-bg: #eef2f5;
  --form2-card: #ffffff;
  --form2-border: #e2e9ef;
  --form2-text: #0b2d45;
  --form2-muted: rgba(11, 45, 69, 0.64);
  --form2-label: rgba(11, 45, 69, 0.68);
  --form2-accent: #2b8fcb;
  --form2-help-bg: #d6e6f2;
  --form2-help-border: rgba(11, 45, 69, 0.08);
  --form2-required: #e05656;
  --form2-soft-bg: #E5F5FF;
  --form2-soft-border: rgba(11, 45, 69, 0.06);
  --form2-toggle-yellow: #f5c85b;
}
.form-reminder__subtitle-2 {

        display: none;
  }
/* Default calendar icon hide */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}

/* Firefox */
input[type="date"] {
  -moz-appearance: textfield;
}

/* Icon clickable */
.form2-addon {
  cursor: pointer;
}

/* ---------------------------------------------------------
   Global typography system (shared)
--------------------------------------------------------- */
.form-ui,
body.page-form,
body.page-form2,
body.page-form3,
body.page-form4,
body.page-wizard {
  font-family: "bree", sans-serif !important;
  color: var(--form2-text);
  font-size: 12px;
  line-height: 1.4;
  background-color: #ebf1f5;
}
/* Default arrow hide for all selects */
select.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M8 11.25L3.7 6.95L4.85 5.8L8 8.95L11.15 5.8L12.3 6.95L8 11.25Z' fill='%230C3C5A'/></svg>");

  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2rem; /* icon ke liye space */
}

.form-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--form2-text);
}

.form-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--form2-label);
  margin-bottom: 6px;
}

.form-input {
  height: 32px;
  border-radius: 4px;
  border: 1px solid rgba(11, 45, 69, 0.22);
  box-shadow: none !important;
  font-size: 11px;
  color: rgba(11, 45, 69, 0.92);
  padding: 6px 10px;
  background-color: #ffffff;
}
.io-box{
  background-color: #EBF1F5;
  height: 24px;
  width: 24px;
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.io-box i{
  font-size: 12px;
  line-height: 1;
  color: #002E4A;
}
.form-input::placeholder {
  color: rgba(11, 45, 69, 0.35);
}

.form-input:focus {
  border-color: var(--form2-accent);
  box-shadow: none;
}

.form-select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(11,45,69,0.65)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.app-form {
  padding: 34px 0 48px;
}

.app-form__container {
  max-width: 1200px;
}

/* ---------------------------------------------------------
   Banner (shared)
--------------------------------------------------------- */
.form-banner {
  border-radius: var(--form-radius);
  overflow: hidden;
  background: #002E4A;
  position: relative;
}

body.page-form .form-banner,
body.page-form2 .form-banner {
  background:
    url("../images/top-card.jpg") right center / min(41%, 280px) 100% no-repeat,
    #002E4A;
}

.form-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 46, 74, 0.98) 0%, rgba(0, 46, 74, 0.98) 56%, rgba(0, 46, 74, 0.9) 66%, rgb(0 46 74) 78%, rgb(0 46 74 / 78%) 88%, rgba(0, 46, 74, 0.5) 100%);
  pointer-events: none;
}

.form-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 180px at 82% 4%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 54%),
    radial-gradient(900px 420px at 92% 68%, rgba(0, 214, 255, 0.06) 0%, rgba(0, 214, 255, 0) 62%);
  pointer-events: none;
}

.form-banner__inner {
  position: relative;
  z-index: 1;
 padding: 30px 26px 20px;
}

.form-banner__kicker {
 font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #74A7C6;
}

.form-banner__title {
  font-family: "bree", sans-serif !important;
  font-weight: 400;
  font-size: 24px;
  line-height:28.8px;
  letter-spacing: 1px;
  color: #ffffff;
}

.form-banner__subtitle {
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color:#fff;
}

.form-banner__subtitle span {
 margin-left: 10px;
 font-size: 12px;
  font-weight: 400;
 color: #F9F9FF !important;
}

/* Steps (form.html) */
.form-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
}

.form-steps__item {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.7;
  min-width: 0;
}

.form-steps__item.is-active {
  opacity: 1;
}

.form-steps__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background:#74A7C6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.form-steps__item.is-active .form-steps__icon {
  background:#FAFCFE;
}

.form-steps__icon i {
  font-size: 14px;
  line-height: 1;
}

.form-steps__meta {
  display: flex;
  flex-direction: column;
  gap: 0px;
  min-width: 0;
}

.form-steps__step {
  font-family: "bree", sans-serif !important;
  font-size: 10px;
  font-weight: 400;
  color:#fff;
}

.form-steps__label {
  font-family: "bree", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  color:#FAFCFE;
  white-space: nowrap;
  letter-spacing: 0.4px;
}

/* ---------------------------------------------------------
   Reminder (form.html)
--------------------------------------------------------- */
.form-reminder {
  margin-top: 12px;
  border-radius: var(--form-radius);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(12, 49, 72, 1) 0%, rgba(10, 44, 65, 1) 100%);
}

.form-reminder__inner {
  padding: 14px 18px;
}

.form-reminder__kicker {
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing:1.2px;
  text-transform: uppercase;
  color: #74A7C6;
}

.form-reminder__title {
  font-family: "bree", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing:0px;
}

.form-reminder__subtitle {
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  color: #F9F9FF;
}
.form-reminder__subtitle span{
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #F9F9FF;
}

.form-reminder__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  margin: 0 10px;
  vertical-align: middle;
}

.form-reminder__subtitle strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.form-reminder__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

.form-reminder__btn {
  border-radius: 4px;
  min-height: 32px;
  padding: 6px 14px;
  font-family: "bree", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  border: 0px solid transparent;
  box-shadow: none;
  background-color: #25526d;
  color: #fff;
}



.form-reminder__btn--icon {
  width: 36px;
  min-height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.form-reminder__btn--icon i {
  font-size: 14px;
}

.form-reminder__btn--continue {
  background: var(--form-yellow);
  color:#002E4A;
  border-color: rgba(0, 0, 0, 0.06);
  font-size: 14px;
  padding-left: 16px;
  padding-right: 16px;
}

/* Keep reminder buttons identical on hover */
.form-reminder__btn:hover,
.form-reminder__btn:focus-visible {
  box-shadow: none;
}

.form-reminder__btn--discard:hover,
.form-reminder__btn--discard:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
}

.form-reminder__btn--icon:hover,
.form-reminder__btn--icon:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.form-reminder__btn--continue:hover,
.form-reminder__btn--continue:focus-visible {
  background: var(--form-yellow);
  color: #0b2236;
  border-color: rgba(0, 0, 0, 0.06);
}

/* ---------------------------------------------------------
   Form-1 main + participants
--------------------------------------------------------- */
.form-main {
  margin-top: 38px;
}

.form-main__left {
  position: relative;
  min-height: 398px;
  padding: 8px 0 0 0px;
  color: rgba(255, 255, 255, 0.92);
}

.form-main__left::before {
 content: "";
    position: absolute;
    top: 16px;
    left: -114px;
    z-index: 0;
    width: 477px;
    height: 356px;
  background: url("../images/one-graph.png") no-repeat left top / contain;
  pointer-events: none;
  user-select: none;
}
.th-im{
  margin-top: -80px;
}
/* .thankyou-hero::before {
 content: "";
    position: absolute;
    top: 16px;
    left: -114px;
    z-index: 0;
    width: 477px;
    height: 356px;
  background: url("../images/one-graph.png") no-repeat left top / contain;
  pointer-events: none;
  user-select: none;
}
.thankyou-hero::after {
 content: "";
    position: absolute;
    top: 16px;
    left: -114px;
    z-index: 0;
    width: 477px;
    height: 356px;
  background: url("../images/one-graph.png") no-repeat left top / contain;
  pointer-events: none;
  user-select: none;
} */

.form-main__copy {
  position: relative;
  z-index: 1;
  max-width: 328px;
  margin-left: 0;
  padding-top: 0;
}

.form-main__step {
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  letter-spacing:1.2px;
  text-transform: uppercase;
  color: #002E4A;
}

.form-main__title {
  font-family: "bree", sans-serif !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 1.2;
  color: #002E4A;
}

.form-main__desc {
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  line-height:16px;
  max-width: 320px;
  color: #3E4549;
}

.form-main__add-btn {
  background: #ffffff;
  color:#002E4A;
 border: 1px solid #22415533;
  border-radius: 4px;
 padding: 7px 19px;
  min-height:32px;
  font-family: "bree", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Keep Add Participant button identical on hover */
.form-main__add-btn:hover,
.form-main__add-btn:focus-visible,
.form-main__add-btn:active {
  background: #ffffff;
  color: #000000;
  border-color: #22415533;
  box-shadow: none;
  opacity: 1;
}
.participants__grid{
  row-gap: 25px;
}
.participants__grid .col-md-6{
 padding: 0px 15px;
}
.form-main__add-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  font-size: 14px;
  line-height: 1;
}

.participants {
  background: var(--form-panel-bg);
  border-radius: var(--form-radius);
  box-shadow: var(--form-shadow);
 padding: 22px 33px 22px;
}

.participants__header {
  padding: 0px 4px 16px;
}

.participants__title {
  font-family: "bree", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  color:#002E4A;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0px;
  gap: 8px;
}

.participants__title-icon {
  font-size: 14px;
  color: var(--form-text);
}

.participant-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(0, 46, 74, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(4, 24, 40, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.participant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(4, 24, 40, 0.12);
}

.participant-card__cover {
  height: 72px;
  flex-shrink: 0;
  background: #ffc84d;
}

.participant-card--cover-yellow .participant-card__cover {
  background: #ffc84d;
}

.participant-card--cover-blue .participant-card__cover {
  background: #0a5b8d;
}

.participant-card--cover-green .participant-card__cover {
  background: #59d98b;
}

.participant-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px 18px;
  background: #ffffff;
}

.participant-card__avatar-wrap {
  position: relative;
  z-index: 1;
  margin-top: -28px;
  margin-bottom: 10px;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.participant-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 999px;
  border: 3px solid #ffffff;
  background: #e8eef3;
  color: #8aa0b0;
  box-shadow: 0 4px 12px rgba(4, 24, 40, 0.12);
}

.participant-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.participant-card__avatar i {
  font-size: 26px;
}

.participant-card__camera {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background: #d2eaf9;
  color: #0c3c5a;
  font-size: 10px;
  box-shadow: 0 2px 6px rgba(4, 24, 40, 0.12);
}

.participant-card__info {
  width: 100%;
  min-width: 0;
  padding-top: 0;
}

.participant-card__type {
  margin: 0 0 4px;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #8aa0b0;
}

.participant-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
}

.participant-card__name {
  margin: 0;
  min-width: 0;
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  color: #0b2d45;
}

.participant-card__name strong {
  font-weight: 500;
  color: #0b2d45;
}

.participant-card__age {
  margin-left: 6px;
  font-weight: 500;
  font-size: 12px;
  color: #0b2d45;
}

.participant-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #0b2d45;
}

.participant-card__meta--email {
  margin-bottom: 10px;
}

.participant-card__meta--phone {
  margin-bottom: 0;
}

.participant-card__meta > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.participant-card__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 14px;
  color: #0b2d45;
  font-size: 12px;
  line-height: 1;
}

.participant-card__meta--email .participant-card__meta-icon {
  font-size: 13px;
  font-weight: 700;
}

.participant-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #0b2d45;
  color: #ffffff;
  font-size: 13px;
  pointer-events: none;
  box-shadow: 0 6px 14px rgba(11, 45, 69, 0.22);
}

/* Recommended badge only (highlight handled by .is-selected) */
.participant-card--recommended {
  border-color: rgba(0, 46, 74, 0.12);
}

.participant-card.is-selected {
  border-color: #ffcb5b;
  box-shadow: 0 14px 28px rgba(255, 200, 77, 0.28);
}

.participant-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: #e3f4fd;
  color: #000000;
  padding: 4px 12px;
  border-radius: 29px;
  font-family: "Inter", sans-serif !important;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

/* Keep icon sizing for selected-participant strip (reuses these class names). */
.selected-participant .participant-card__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  color: #0c3c5a;
}

.selected-participant .participant-card__meta-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ---------------------------------------------------------
   Form-2 (form-2.html)
--------------------------------------------------------- */
body.page-form2 {
  background: var(--form2-bg);
  font-family: "bree", sans-serif !important;
}

.app-form--v2 {
  padding-top: 34px;
  padding-bottom: 70px;
}

.form2-layout {
  margin-top: 18px;
}

.help-card {
  background:#CFE0EC;
  border-radius: 12px;
  padding: 16px;
  margin-top: 55px;
}

.help-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.help-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 45, 69, 0.9);
  border: 1px solid rgba(11, 45, 69, 0.08);
}

.help-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #002E4A;
   font-family: "Inter", sans-serif !important;
}

.help-card__text {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  color: #002E4A;
  max-width: 260px;
  font-family: "Inter", sans-serif !important;
}

.help-card__link {
  font-size: 12px;
  font-weight: 600;
  color: #002E4A;
  text-decoration: none;
  font-family: "Inter", sans-serif !important;
}

.wizard-edit {
  margin: -4px 0 22px;
}

.wizard-edit__btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  border: 1px solid #C9D3DD;
  background: #ffffff;
  color: #002E4A;
  font-family: "bree", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wizard-edit__icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #F3F7FA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wizard-edit__btn:hover,
.wizard-edit__btn:focus-visible,
.wizard-edit__btn:active {
  background: #ffffff;
  color: #002E4A;
  border-color: #C9D3DD;
  box-shadow: none;
}

.form2-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* One class: equal vertical space between all stacked form cards (and wizard steps). Change --form2-card-stack-gap only here. */
.form2-card-stack {
  --form2-card-stack-gap: 14px;
}

.form2-cards.form2-card-stack {
  gap: var(--form2-card-stack-gap);
  margin-top: 30px;
}
.form2-sidebar{
  margin-top: 40px;
}
body.page-form2 .form2-card-stack .wizard-step {
  display: flex;
  flex-direction: column;
  gap: var(--form2-card-stack-gap);
}

.form-card {
  background: var(--form2-card);
  border: 1px solid var(--form2-border);
  border-radius: 12px;
  box-shadow: var(--form2-shadow);
  overflow: hidden;
  padding: 12px 0px;
  margin-bottom: 12px;
}

.form-card__header {
padding: 12px 29px 5px 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border-bottom: 1px solid rgba(4, 26, 44, 0.06); */
}
/* .selected-participant{
  margin-top: 20px;
} */
.form-card__header-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-card__icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(11, 45, 69, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 45, 69, 0.9);
}


.form-card__icon i {
  font-size: 12px;
  line-height: 1;
}

.form-card__title {
  font-family: "bree", sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    color: #002E4A;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0px;
    gap: 8px;
}

.form-card__subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #3E4549;
  margin-top: 2px;
   font-family: "Inter", sans-serif !important;
}
.io2box{
  height: 26px;
  width: 26px;
  border-radius: 4px;
  background-color: #EBF1F5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-card__chev {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 0px solid rgba(11, 45, 69, 0.08);
  background: #ffffff;
  color: rgba(11, 45, 69, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.form-card__body {
  padding: 14px 29px;
}

/* Form-2 accordions: smooth open/close (requires .form-card__anim wrapper from form-2 script) */
body.page-form2 #wizardSteps .form-card > .form-card__body.form-card__body--ready {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0;
  overflow: hidden;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-form2 #wizardSteps .form-card > .form-card__body.form-card__body--ready > .form-card__anim {
  min-height: 0;
  overflow: hidden;
  padding: 0px 34px 14px 34px;
}
.form-card__anim .col-md-6{
  margin-top: 20px;
}
body.page-form2 #wizardSteps .form-card--collapsed > .form-card__body.form-card__body--ready {
  grid-template-rows: 0fr;
}

@media (prefers-reduced-motion: reduce) {
  body.page-form2 #wizardSteps .form-card > .form-card__body.form-card__body--ready {
    transition-duration: 0.01ms;
  }
}

.selected-participant {
  display: grid;
  grid-template-columns: 32px 1.2fr 1.4fr 1.2fr auto;
  align-items: center;
  gap: 12px;
  background: #ffffff;
border: 1px solid #002E4A33;
  border-radius:8px;
  padding: 10px 10px;
}

.selected-participant__avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #D2EAF9;
}

.selected-participant__type {
  font-size: 10px;
  font-weight: 400;
  color:#002E4A;
}

.selected-participant__name {
  font-size: 12px;
  font-weight: 700;
  color: #002E4A;
}

.selected-participant__age {
  font-weight: 400;
   color: #002E4A;
}

.selected-participant__info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  color:#002E4A;
  white-space: nowrap;
}

.selected-participant__info-item i {
  width: 1rem;
  min-width: 1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 11px;
  color: rgba(11, 45, 69, 0.7);
}

.form2-link-btn {
  background: transparent;
  border: 0;
  color: #002E4A;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 8px;
}

.form2-link-btn i {
  font-size: 12px;
  margin-right: 6px;
}

.form2-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #697386;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif !important;
}

.form2-required {
  color: var(--form2-required);
  margin-left: 3px;
}

.form2-control {
  /* height: 36px; */
  border-radius: 4px;
  border: 1px solid #A3ACB9;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3c;
  padding: 6px 10px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif !important;
}

.form2-control::placeholder {
  color: #c5c7c9 !important;
  opacity: 0.7;
  font-family: "Inter", sans-serif !important;
  font-size: 14px;
  font-weight: 500;
}

.form2-control:focus {
  border-color: var(--form2-accent);
  box-shadow: none;
}

/* Keep the phone flag dropdown, but make the input itself match the other form controls. */
body.page-form2 #participant_mobile {
  width: 100%;
}

body.page-form2 .iti {
  width: 100%;
  display: block;
  max-width: none;
}

body.page-form2 .iti--allow-dropdown,
body.page-form2 .iti--separate-dial-code {
  width: 100%;
  display: block;
  max-width: none;
}

body.page-form2 .iti .form2-control,
body.page-form2 .iti input#participant_mobile {
  width: 100% !important;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #A3ACB9;
  padding: 6px 10px 6px 58px;
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3c;
  background-color: #ffffff;
  box-sizing: border-box;
}

body.page-form2 .iti .iti__selected-flag {
  border-right: 1px solid #A3ACB9;
  background-color: #ffffff;
  border-radius: 4px 0 0 4px;
}

body.page-form2 .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: #f7f9fb;
}

.form2-control--select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(11,45,69,0.65)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.form2-group .form2-control {
  height: 32px;
}

.form2-addon {
  border-radius: 0 4px 4px 0;
  border: 1px solid rgba(11, 45, 69, 0.22);
  border-left: 0;
  background: #ffffff;
  color: rgba(11, 45, 69, 0.6);
  padding: 0 10px;
}

.form2-control--unit {
  max-width: 94px;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(11,45,69,0.65)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.form2-group .form2-control:first-child {
  border-radius: 4px 0 0 4px;
}

.form2-helper {
  margin-top: 6px;
  font-size: 12px;
  color:#697386;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif !important;
}

.coin-card__btn{
  min-height: 0 !important;
}

/* ---------------------------------------------------------
   Edit-parent-details toggle (Step 2)
   Compact "hint + switch" row that appears after parent
   details are auto-fetched. Markup mirrors the toggle pattern
   used in resources/views/main/inme-form.blade.php.
   --------------------------------------------------------- */
.parent-edit-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif !important;
}

.parent-edit-toggle[hidden] { display: none !important; }

.parent-edit-toggle__hint {
  font-size: 12px;
  color: #697386;
  white-space: nowrap;
}

/* Toggle switch (checkbox styled as iOS-style slider). */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin: 0;
  flex: 0 0 auto;
}

.toggle-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  cursor: pointer;
  margin: 0;
  left: 0;
  top: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: background-color 0.3s ease;
  border-radius: 24px;
  z-index: 1;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #2196F3;
}

.toggle-switch input:focus-visible + .toggle-slider {
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.35);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

@media (max-width: 575.98px) {
  .parent-edit-toggle {
    gap: 8px;
  }

  .parent-edit-toggle__hint {
    font-size: 11px;
    white-space: normal;
  }
}

/* ---------------------------------------------------------
   School name with branch — autocomplete dropdown (Step 1)
   The dropdown is moved to <body> by JS and uses position: fixed
   so it can escape .form-card { overflow: hidden } clipping.
   --------------------------------------------------------- */
.school-autocomplete-wrap {
  position: relative;
}

.school-autocomplete-dropdown {
  /* JS sets top/left/width from the input's bounding rect, and toggles display. */
  position: fixed;
  z-index: 2000;
  background: #ffffff;
  border: 1px solid #A3ACB9;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0, 46, 74, 0.12);
  font-family: "Inter", sans-serif !important;
}

.school-autocomplete-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.school-autocomplete-list li {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #002E4A;
  cursor: pointer;
  border-bottom: 1px solid #f0f2f4;
  line-height: 1.35;
}

.school-autocomplete-list li:last-child {
  border-bottom: 0;
}

.school-autocomplete-list li:hover,
.school-autocomplete-list li.is-active {
  background-color: #f5f8fa;
  color: #002E4A;
}

.school-autocomplete-empty {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

@media (max-width: 575.98px) {
  .school-autocomplete-dropdown {
    max-height: 220px;
    border-radius: 0 0 4px 4px;
  }

  .school-autocomplete-list li {
    padding: 9px 12px;
    font-size: 13px;
  }
}

/* ---------------------------------------------------------
   Segmented toggle (Step 2 addition)
--------------------------------------------------------- */
.single-parent {
  background: var(--form2-soft-bg);
  border-radius: 16px;
  padding: 22px 14px;
}

.single-parent__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.single-parent__label {
  font-size: 14px;
  font-weight: 400;
  color:#002E4A;
}

.seg-toggle {
  display: inline-flex;
  gap: 30px;
  align-items: center;
}

.seg-toggle__btn {
  height: 32px;
  min-width:40px;
  padding: 0 10px;
  border-radius: 4px;
 border: 1px solid #002E4A7A;
  background:transparent;
  color:#224155;
  font-size: 14px;
  font-weight: 700;
}

.single-parent.is-yes .seg-toggle__btn[data-value="Yes"] {
background: var(--form2-toggle-yellow);
    border-color: var(--form2-toggle-yellow);
}

.single-parent.is-no .seg-toggle__btn[data-value="No"] {
  background: var(--form2-toggle-yellow);
  border-color: var(--form2-toggle-yellow);
}

.seg-toggle__btn.is-active {
  box-shadow: 0 2px 10px rgba(4, 26, 44, 0.08);
}

.seg-toggle__btn:focus-visible {
  outline: 2px solid rgba(43, 143, 203, 0.35);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   Step 3 additions (reusing Step-2 system)
--------------------------------------------------------- */
.form2-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form2-check__input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 4px;
  border: 1px solid rgba(11, 45, 69, 0.22);
  appearance: none;
  background: #ffffff;
  flex-shrink: 0;
}

.form2-check__input:checked {
  background: var(--form2-accent);
  border-color: var(--form2-accent);
  box-shadow: inset 0 0 0 2px #ffffff;
}

.form2-check__input:focus-visible {
  outline: 2px solid rgba(43, 143, 203, 0.35);
  outline-offset: 2px;
}

.form2-check__label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(11, 45, 69, 0.72);
  line-height: 1.4;
}

.form2-submit-row {
  padding-top: 10px;
}

.form2-submit-btn {
  height: 36px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--form2-accent);
  background: var(--form2-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

/* ---------------------------------------------------------
   Step 3 – First Parent Information headings/prefix
--------------------------------------------------------- */
.form3-subheading {
  font-size: 14px;
  font-weight: 400;
  color: #224155;
      padding: 15px 0px 0px 0px;

}

.form3-prefix-group .form2-control {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.form3-prefix {
  border-radius: 4px 0 0 4px;
  border: 1px solid rgba(11, 45, 69, 0.22);
  background: #ffffff;
  color: rgba(11, 45, 69, 0.6);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
}

/* ---------------------------------------------------------
   Step 3 – Parent consent form 2026
--------------------------------------------------------- */
.consent-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(4, 26, 44, 0.08);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.consent-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 12px;
 border-top: 1px solid #A3ACB980;
 margin: 0px 15px;
}

.consent-item:first-child {
  border-top: 0;
}

.consent-item__text {
  font-size: 10px;
  font-weight: 600;
  color: #002E4A;
  line-height:12PX;
  letter-spacing: 0px;
  font-family: "Inter", sans-serif !important;
}

.consent-item__action {
  border: 0;
  background: transparent;
  padding: 4px 0;
  font-size: 12px;
  font-weight: 700;
  color:#002E4A;
  text-decoration: none;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.consent-item__action--muted {
  opacity: 0.85;
}

.consent-item__more {
 padding: 5px 25px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(11, 45, 69, 0.68);
  line-height: 1.45;
  border-top: 1px dashed rgba(4, 26, 44, 0.14);
  background: rgba(11, 45, 69, 0.02);
}

.consent-item--plain + .consent-item__more {
  display: none;
}

.consent-box {
 border-top: 1px solid #A3ACB980;
  background:transparent;
  padding: 12px;
      margin: 0px 15px;
}

.consent-check {
  position: relative;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  margin: 0;
}

.consent-check__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-check__box {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(11, 45, 69, 0.22);
  background: #ffffff;
  margin-top: 2px;
  box-shadow: none;
}

.consent-check__text {
  font-size: 12px;
  font-weight: 600;
  color:#002E4A;
  line-height: 1.45;
  font-family: "Inter", sans-serif !important;
}

.consent-check__input:focus-visible + .consent-check__box {
  outline: 2px solid rgba(43, 143, 203, 0.45);
  outline-offset: 2px;
}

.consent-check__input:checked + .consent-check__box {
  background: var(--form2-accent);
  border-color: var(--form2-accent);
  box-shadow: inset 0 0 0 2px #ffffff;
}

.consent-panel {
  border: 1px solid rgba(4, 26, 44, 0.08);
  border-radius: 10px;
  background: #ffffff;
  padding: 12px;
}

.consent-panel__text {
  font-size: 12px;
  font-weight: 600;
  color: #002E4A;
  line-height: 1.45;
    font-family: "Inter", sans-serif !important;
}

.consent-radio {
  display: grid;
  gap: 10px;
}

.consent-radio__row {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  margin: 0;
}

.consent-radio__input {
  margin-top: 2px;
}

.consent-radio__label {
  font-size: 12px;
  font-weight: 700;
  color: #3E4549;
  line-height: 1.45;
  font-family: "Inter", sans-serif !important;

}
.consent-radio__label span{
  font-weight: 400 !important;
}

/* ---------------------------------------------------------
   Step 4 – Review & Pay
--------------------------------------------------------- */
.form4-edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(11, 45, 69, 0.14);
  background: #ffffff;
  color: rgba(11, 45, 69, 0.9);
  font-size: 11px;
  font-weight: 800;
  padding: 0 12px;
  text-decoration: none;
}

.form4-edit-btn i {
  font-size: 12px;
}

.form4-edit-btn:hover {
  text-decoration: none;
  background: #ffffff;
}

.id-strip {
  display: grid;
  grid-template-columns: 28px 1.1fr 1.2fr 1fr;
  align-items: center;
  gap: 12px;
 border: 1px solid #002E4A33;
  border-radius:8px;
  padding: 10px 12px;
  background: #ffffff;
}

.id-strip__avatar {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(43, 143, 203, 0.12);
  box-shadow: inset 0 0 0 1px rgba(43, 143, 203, 0.18);
}

.id-strip__avatar--guardian {
  background: rgba(11, 45, 69, 0.08);
  box-shadow: inset 0 0 0 1px rgba(11, 45, 69, 0.12);
}

.id-strip__type {
  font-size: 10px;
  font-weight: 700;
  color: rgba(11, 45, 69, 0.6);
}

.id-strip__name {
  font-size: 11px;
  font-weight: 800;
  color: rgba(11, 45, 69, 0.92);
}

.id-strip__age {
  font-weight: 700;
  color: rgba(11, 45, 69, 0.68);
}

.id-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(11, 45, 69, 0.7);
  white-space: nowrap;
}

.id-strip__item i {
  width: 1rem;
  min-width: 1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 11px;
  color: rgba(11, 45, 69, 0.7);
}

.coin-card {

    border-radius: 12px;
    padding: 13px 17px;
    margin-top: 10px;
    background: #E5F5FF;
}

.coin-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.coin-card__coin {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 204, 102, 0.35);
  color: rgba(11, 45, 69, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(11, 45, 69, 0.06);
}

.coin-card__coin i {
  font-size: 12px;
}

.coin-card__title {
  font-size: 14px;
  color: #002E4A;
   font-weight: 400;
}

.coin-card__sub {
  font-size: 14px;
  font-weight: 400;
  color:#42493E;
   font-family: "Inter", sans-serif !important;
}

.coin-card__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.coin-card__action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coin-card__controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coin-card__controls #coinsToRedeem {
  width: clamp(180px, 28vw, 320px);
  min-width: 180px;
  flex: 1 1 auto;
}

.coin-card__select {
  min-width: 180px;
}

.coin-card__btn {
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(11, 45, 69, 0.14);
  background: rgba(11, 45, 69, 0.06);
  color: rgba(11, 45, 69, 0.45);
  font-size: 11px;
  font-weight: 800;
}

.coin-card__hint {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  color: #697386;
}

.coin-card__cta {
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(11, 45, 69, 0.12);
  background: #ffffff;
  color: rgba(11, 45, 69, 0.92);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.coin-card__divider {
  height: 1px;
  background: rgba(11, 45, 69, 0.10);
  margin: 10px 0;
}

.coin-card__ref-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
}

.coin-card__ref-input {
  flex: 1;
  min-width: 0;
}

.coin-card__apply {
  flex: 0 0 auto;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(11, 45, 69, 0.12);
  background: #ffffff;
  color: rgba(11, 45, 69, 0.92);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
  transform: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.coin-card__apply:hover,
.coin-card__apply:focus,
.coin-card__apply:focus-visible {
  color: #002E4A;
  box-shadow: none;
}

@media (min-width: 576px) {
  .coin-card .form2-label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
  }

  .coin-card {
    border-radius: 16px;
    padding: 16px 14px 14px;
    margin-top: 8px;
  }

  .coin-card__head {
    gap: 12px;
    margin-bottom: 14px;
  }

  .coin-card__head svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .coin-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }

  .coin-card__sub {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.35;
  }

  .coin-card__field {
    min-width: 0;
  }

  .coin-card__row {
    display: block;
  }

  .coin-card__action-row {
    align-items: center;
    gap: 8px;
  }

  .coin-card__controls {
    gap: 10px;
    align-items: stretch;
  }

  .coin-card__select {
    width: 286px;
    min-width: 286px;
    height: 32px;
    padding: 4px 10px;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
  }

  .coin-card__btn {
    min-width: 82px;
    padding: 0 12px;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    background: #f8fbff;
    border-color: #d4dde7;
    color: #acb5bf;
    font-size: 12px;
    font-weight: 700;
  }

  .coin-card__btn:disabled {
    opacity: 1;
  }

  .coin-card__hint {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.3;
    color: #74808f;
  }

  .coin-card__hint i {
    font-size: 11px;
  }

  .coin-card__cta {
    min-width: 109px;
    height: 36px;
    padding: 0 12px;
    border-radius: 4px;
    border-color: #d4dde7;
    background: #ffffff;
    color: #002e4a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .coin-card__ref {
    margin-top: 14px !important;
  }

  .coin-card__ref-row {
    position: relative;
    display: block;
  }

  .coin-card__ref-input {
    width: 100%;
    padding-right: 74px;
  }

  .coin-card__apply {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    height: auto;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #c0c6cf;
    font-size: 14px;
    font-weight: 600;
  }
}

.pay-breakup {
 border: 1px solid #002E4A33;
  border-radius: 8px;
  background: #ffffff;
  padding: 12px;
}

.pay-breakup__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.pay-breakup__row--tight {
  padding: 7px 0;
}

.pay-breakup__label {
  font-size: 12px;
  font-weight: 700;
  color: #002E4A;
}

.pay-breakup__sub {
  font-size: 10px;
  font-weight: 400;
  color: #002E4A;
  margin-top: 2px;
  font-family: "Inter", sans-serif !important;
}

.pay-breakup__value {
  font-size: 12px;
  font-weight: 700;
  color: #002E4A;
  white-space: nowrap;
}

.pay-breakup__divider {
  height: 1px;
  background: rgba(11, 45, 69, 0.10);
  margin: 6px 0;
}

.pay-breakup__total .pay-breakup__label
 {
  font-size: 12px;
}
.pay-breakup__total .pay-breakup__value{
  font-size: 16px;
}
.coin-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-radius: 12px;
  border: 1px dashed #CE881E;
  background:#FFF1DB;
  padding: 12px 16px;
  color: rgba(11, 45, 69, 0.86);
}

.coin-banner__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 204, 102, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 45, 69, 0.06);
}

.coin-banner__icon i {
  font-size: 12px;
}

.coin-banner__text {
  font-size: 14px;
  font-weight: 400;
  color: #CE881E;
}

/* ---------------------------------------------------------
   Step 4 – Payment option modal (blurred backdrop + card)
--------------------------------------------------------- */
body.payopt-modal-open .modal-backdrop.fade.show {
  --bs-backdrop-opacity: 1;
  background-color: rgba(6, 27, 44, 0.42) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.payopt-modal .modal-dialog {
  max-width: 470px;
}

.payopt-modal__content {
  border-radius: 22px;
  border: 1px solid rgba(4, 26, 44, 0.08);
  box-shadow: 0 24px 70px rgba(4, 26, 44, 0.18);
  overflow: hidden;
  background: #ffffff;
}

.payopt-modal__body {
  padding: 52px 40px 38px;
  text-align: center;
}

.payopt-modal__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: transparent;
  border: 0;
  color: #0B3A59;
}

.payopt-modal__icon i {
  font-size: 42px;
}

.payopt-modal__title {
  font-family: "bree", sans-serif !important;
  font-size:18px;
  font-weight: 700;
  line-height: 1.18;
  color: #002E4A;
  letter-spacing: 0;
}

.payopt-modal__subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #002E4A;
  line-height: 1.45;
  font-family: "Inter", sans-serif !important;
}

.payopt-modal__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin-top: 20px;
}

.payopt-btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  font-family: "bree", sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.payopt-btn i {
  font-size: 14px;
}

.payopt-btn--ghost {
  background: #ffffff;
  color: #002E4A;
  border: 1px solid #C9D3DD;
}

.payopt-btn--ghost:hover {
  background: #ffffff;
  color: #002E4A;
  border-color: #C9D3DD;
}

.payopt-btn--active {
  background: #FFCD5A;
  border: 1px solid #FFCD5A;
  color: #002E4A;
}

.payopt-btn--active:hover {
  background: #FFCD5A;
  color: #002E4A;
  border-color: #FFCD5A;
}

.editapp-modal .modal-dialog {
  max-width: 470px;
}

.editapp-modal__body {
  padding-bottom: 30px;
}

.editapp-modal__icon {
  margin-bottom: 10px;
}

.editapp-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.editapp-option {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #D7E2EA;
  background: #F8FBFD;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.editapp-option__title {
  font-family: "bree", sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: #002E4A;
  line-height: 1.2;
}

.editapp-option__text {
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 400;
  color: #4D6171;
  line-height: 1.4;
}

.editapp-option:hover,
.editapp-option:focus-visible,
.editapp-option:active {
  background: #F8FBFD;
  border-color: #C4D6E3;
  box-shadow: none;
}

.editapp-modal__footer {
  margin-top: 16px;
}

@media (max-width: 575.98px) {
  .payopt-modal .modal-dialog {
    max-width: 92vw;
  }


.form2-sidebar {
    margin-top: 0px;
}
.form2-cards.form2-card-stack {
    margin-top: 0px;
}
  .wizard-edit {
    margin: 8px 0 16px;
  }

  .wizard-edit__btn {
    width: auto;
    min-height: 32px;
    padding: 0 12px;
    justify-content: flex-start;
    font-size: 13px;
  }
  .payopt-modal__body {
    padding: 34px 22px 24px;
  }

  .payopt-modal__subtitle {
    margin-bottom: 24px;
  }

  .payopt-modal__actions {
    flex-direction: column;
    gap: 12px;
  }

  .payopt-btn {
    width: 100%;
  }
}

/* ---------------------------------------------------------
   Step 4 – Pay into bank account modal
--------------------------------------------------------- */
.paybank-modal .modal-dialog.paybank-modal__dialog {
  max-width: 900px;
}

.paybank-modal__content {
  border-radius: 24px;
  border: 1px solid rgba(4, 26, 44, 0.08);
  box-shadow: 0 24px 70px rgba(4, 26, 44, 0.22);
  overflow: hidden;
}

.paybank-modal__body {
  padding: 28px 28px 22px;
}

.paybank-modal__head {
  text-align: center;
  margin-bottom: 20px;
}

.paybank-modal__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: rgba(11, 45, 69, 0.05);
  border: 1px solid rgba(11, 45, 69, 0.08);
  color: #061b2c;
}

.paybank-modal__icon i {
  font-size: 28px;
}

.paybank-modal__title {
  font-size: 15px;
  font-weight: 800;
  color: #061b2c;
  margin: 0 0 8px;
}

.paybank-modal__lead {
  font-size: 11px;
  font-weight: 600;
  color: rgba(11, 45, 69, 0.52);
  line-height: 1.45;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.paybank-account {
  background: #eef7ff;
  border: 1px solid rgba(43, 143, 203, 0.2);
  border-radius: 12px;
  padding: 14px 14px 12px;
  height: 100%;
}

.paybank-account__title {
  font-size: 12px;
  font-weight: 800;
  color: #0b4a7a;
}

.paybank-account__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paybank-account__row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 11px;
}

.paybank-account__row dt {
  margin: 0;
  font-weight: 600;
  color: rgba(11, 45, 69, 0.72);
}

.paybank-account__row dd {
  margin: 0;
  font-weight: 800;
  color: rgba(11, 45, 69, 0.92);
}

.paybank-account__note {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(11, 45, 69, 0.68);
  line-height: 1.45;
}

.paybank-account__note i {
  margin-right: 6px;
  vertical-align: -0.1em;
}

.paybank-slip {
  border: 1px solid rgba(4, 26, 44, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  height: 100%;
}

.paybank-slip__img {
  display: block;
  width: 100%;
  height: auto;
}

.paybank-modal__footer {
  margin-top: 20px;
}

.paybank-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 10px;
}

.paybank-modal__actions .payopt-btn {
  flex: 1 1 0;
}

.paybank-modal__fine {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: rgba(11, 45, 69, 0.72);
}

@media (max-width: 575.98px) {
  .paybank-modal .modal-dialog.paybank-modal__dialog {
    max-width: 94vw;
    margin-left: auto;
    margin-right: auto;
  }

  .paybank-modal__body {
    padding: 22px 16px 18px;
  }

  .paybank-modal__actions {
    flex-direction: column;
    max-width: none;
  }

  .paybank-account__row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.paybank-modal--bank .modal-dialog.paybank-modal__dialog {
  max-width: 812px;
}

.paybank-modal--bank .paybank-modal__content {
  background: #ffffff;
  border: 1px solid #c7d7e5;
  border-radius: 22px;
  box-shadow: 0 0 0 4px rgba(45, 141, 227, 0.16), 0 22px 58px rgba(0, 46, 74, 0.16);
}

.paybank-modal--bank .paybank-modal__body {
  padding: 34px 40px 26px;
}

.paybank-modal--bank .paybank-modal__head {
  margin-bottom: 30px;
}

.paybank-modal--bank .paybank-modal__icon {
  width: auto;
  height: auto;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0a3657;
}

.paybank-modal--bank .paybank-modal__icon svg {
  display: block;
}

.paybank-modal--bank .paybank-modal__title {
  font-family: "bree", sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
  color: #0a3657;
  margin-bottom: 10px;
}

.paybank-modal--bank .paybank-modal__lead {
  max-width: 420px;
  font-family: "Inter", sans-serif !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: #173d5b;
}

.paybank-modal--bank .paybank-modal__grid {
  align-items: stretch;
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.paybank-modal--bank .paybank-account {
  display: flex;
  flex-direction: column;
  min-height: 326px;
  padding: 22px 20px 18px;
  background: #dff0ff;
  border: 0;
  border-radius: 22px;
}

.paybank-modal--bank .paybank-account__title {
  margin-bottom: 24px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: #123d5c;
}

.paybank-modal--bank .paybank-account__rows {
  gap: 18px;
}

.paybank-modal--bank .paybank-account__row {
  grid-template-columns: minmax(108px, 1fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
}

.paybank-modal--bank .paybank-account__row dt {
  font-weight: 500;
  color: #163f5f;
}

.paybank-modal--bank .paybank-account__row dd {
  justify-self: end;
  max-width: 190px;
  text-align: right;
  font-weight: 800;
  color: #123d5c;
}

.paybank-modal--bank .paybank-account__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
  font-family: "Inter", sans-serif !important;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
  color: #6a7f92;
}

.paybank-modal--bank .paybank-account__note i {
  flex: 0 0 auto;
  margin-right: 0;
  font-size: 13px;
  line-height: 1.2;
  color: #6a7f92;
}

.paybank-modal--bank .paybank-slip {
  min-height: 326px;
  border: 0;
  border-radius: 22px;
  background: #f2f2f0;
  box-shadow: inset 0 0 0 1px rgba(0, 46, 74, 0.06);
}

.paybank-modal--bank .paybank-slip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paybank-modal--bank .paybank-modal__footer {
  margin-top: 22px;
}

.paybank-modal--bank .paybank-modal__actions {
  max-width: none;
  margin: 0 0 12px;
  gap: 18px;
}

.paybank-modal--bank .paybank-modal__actions .payopt-btn {
  min-height: 42px;
  border-radius: 6px;
  font-size: 14px;
}

.paybank-modal--bank .paybank-modal__fine {
  font-family: "Inter", sans-serif !important;
  font-size: 11px;
  font-weight: 600;
  color: #123d5c;
}

@media (max-width: 991.98px) {
  .paybank-modal--bank .paybank-modal__body {
    padding: 28px 24px 22px;
  }

  .paybank-modal--bank .paybank-account,
  .paybank-modal--bank .paybank-slip {
    min-height: 290px;
  }
}

@media (max-width: 575.98px) {
  .paybank-modal--bank .paybank-modal__body {
    padding: 22px 16px 18px;
  }

  .paybank-modal--bank .paybank-modal__title {
    font-size: 20px;
  }

  .paybank-modal--bank .paybank-modal__lead {
    font-size: 13px;
  }

  .paybank-modal--bank .paybank-account,
  .paybank-modal--bank .paybank-slip {
    min-height: 0;
  }

  .paybank-modal--bank .paybank-account__row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .paybank-modal--bank .paybank-account__row dd {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .paybank-modal--bank .paybank-modal__actions {
    gap: 12px;
  }
}

@media (max-width: 991.98px) {
  .id-strip {
    grid-template-columns: 28px 1fr;
    grid-auto-rows: auto;
    row-gap: 6px;
  }

  .id-strip__info {
    grid-column: 1 / -1;
  }

  .coin-card__row {
    flex-direction: column;
    align-items: stretch;
  }

  .coin-card__cta {
    width: 100%;
  }
}

/* ---------------------------------------------------------
   Extended sections (form-2.html)
--------------------------------------------------------- */
.form-soft-panel {
  background: #E5F5FF;
  border-radius: 16px;
  padding: 14px;
}

.form-soft-panel__title {
  font-size: 14px;
  font-weight: 400;
  color:#002E4A;
}

.form-file {
  position: relative;
}

.form-file__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-file__control {
  height: 32px;
  border-radius: 4px;
  border: 1px solid rgba(11, 45, 69, 0.22);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  cursor: pointer;
}

.form-file__placeholder {
  font-size: 11px;
  color: rgba(11, 45, 69, 0.42);
  font-weight: 500;
}

.form-file__icon {
  color: rgba(11, 45, 69, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-file__icon i {
  font-size: 13px;
}

.form-file__control:focus-within {
  border-color: var(--form2-accent);
}

.assistance__title {
  font-size: 11px;
  font-weight: 800;
  color: rgba(11, 45, 69, 0.92);
}

.assistance__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.assistance__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.assistance__text {
  font-size: 12px;
  line-height:16px;
  color: #3E4549;
  font-weight: 400;
  max-width: 520px;
  font-family: "Inter", sans-serif !important;
}
.assistance__text span{
font-weight: 700 !important;
font-weight: 500;
}
.toggle-btn-group {
  display: inline-flex;
  gap: 30px;
  align-items: center;
}

.toggle-btn {
  min-width:46px;
  height:32px;
  padding: 0 10px;
  border-radius:4px;
  border: 1px solid #224155;
  background:transparent;
  color:#224155;
  font-size: 14px;
  font-weight:700;
}

.toggle-btn.active {
  background: var(--form2-toggle-yellow);
  border-color: var(--form2-toggle-yellow);
  color: rgba(11, 45, 69, 0.95);
}

/* ---------------------------------------------------------
   Medical questions (form-2.html)
--------------------------------------------------------- */
.question-card {
  background: var(--form2-soft-bg);
  border: 1px solid var(--form2-soft-border);
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  margin-top: 25px;
}

.question-count {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(11, 45, 69, 0.55);
  font-family: "Inter", sans-serif !important;
}

.question-title {
  font-size: 18px;
  font-weight: 700;
  color:#002E4A;
  line-height: 1.25;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.question-detail {
  width: min(100%, 300px);
  margin: 18px auto 0;
  text-align: left;
}

.question-detail__label {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  color: #6C7F90;
}

.question-detail__input {
  height: 36px;
  border: 0px solid #8FAEFF;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(143, 174, 255, 0.2);
}

.question-detail__input:focus {
  border-color: #8FAEFF;
  box-shadow: 0 0 0 1px rgba(143, 174, 255, 0.32) !important;
}

.question-detail__group {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.question-detail__group .question-detail__input {
  flex: 1 1 auto;
}

.question-detail__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #FFC629;
  color: #1A2B43;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 0 1px rgba(255, 198, 41, 0.35);
}

.question-detail__submit:hover {
  background: #FFB800;
}

.question-detail__submit:active {
  transform: translateY(1px);
}

.question-detail__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 198, 41, 0.45);
}

.question-detail__submit i {
  font-weight: 700;
}

/* -----------------------------------------------------------------------
   Previously-uploaded ID document preview
   ----------------------------------------------------------------------- */
.id-proof-preview {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 28px 6px 6px;
  border: 1px solid #DDE5F1;
  border-radius: 8px;
  background: #F7F9FE;
  max-width: 100%;
}

.id-proof-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0C3C5A;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
}

.id-proof-preview__link:hover,
.id-proof-preview__link:focus {
  color: #002E4A;
  text-decoration: none;
}

.id-proof-preview__thumb {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #DDE5F1;
  background: #fff;
  flex: 0 0 auto;
  cursor: zoom-in;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.id-proof-preview__thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(12, 60, 90, 0.18);
}

.id-proof-preview__doc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid #DDE5F1;
  font-size: 12px;
  color: #0C3C5A;
  cursor: pointer;
}

.id-proof-preview__doc i {
  font-size: 22px;
  color: #FFC629;
}

.id-proof-preview__doc-label {
  text-decoration: underline;
}

.id-proof-preview__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #6C7F90;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(143, 174, 255, 0.35);
}

.id-proof-preview__remove:hover {
  background: #ffe5e5;
  color: #c0392b;
}

.id-proof-preview__remove i {
  pointer-events: none;
}

#idProofZoomModal .modal-body img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.option-btn {
  height: 32px;
  min-width: 38px;
  padding: 0 10px;
  border-radius: 4px;
 border: 1px solid #002E4A7A;
  background: #FFFFFF33;
  color: #224155;
  font-size: 14px;
  font-weight: 700;
}

.option-btn.active {
  background: #FFCB5B;
  border-color: #FFCB5B;
  color: #002E4A;
  box-shadow: none;
}

.option-btn:focus-visible {
  outline: 2px solid rgba(43, 143, 203, 0.55);
  outline-offset: 2px;
}

.question-done {
  margin-top: 8px;
}

.question-done-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.question-done--review {
  background: #dcedfa;
  border-radius: 22px;
  padding: 18px 18px 22px;
}

.question-review {
  max-width: 590px;
  margin: 0 auto;
}

.question-review__title {
  margin: 0 0 16px;
  color: #002e4a;
  font-family: "bree", sans-serif !important;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.question-review__grid {
  align-items: stretch;
}

.question-review__card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  max-width: 100%;
  height: 100%;
  min-height: 60px;
  margin-top: 10px !important;
  padding: 10px 12px 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 46, 74, 0.03), 0 10px 18px rgba(0, 46, 74, 0.04);
  box-sizing: border-box;
}

.question-review__text {
  min-width: 0;
  flex: 1 1 auto;
}

.question-review__label {
  display: block;
  margin-bottom: 3px;
  color: #8c96a1;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

.question-review__value {
  color: #002e4a;
  font-family: "bree", sans-serif !important;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
  word-break: break-word;
}

.question-review__detail {
  display: block;
  margin-top: 4px;
  color: #5f6d7b;
  font-family: "Inter", sans-serif !important;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 500;
}

.question-review__edit {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 5px;
  background: #d7efff;
  color: #0b5c8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 4px;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.question-review__edit i {
  font-size: 13px;
  line-height: 1;
}

.question-review__edit:hover {
  background: #c8e7ff;
  transform: translateY(-1px);
}

.question-review__footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.question-review__cta {
  min-height: 32px;
  border: 0;
  border-radius: 4px;
  padding: 6px 18px;
  background: #ffcb5b;
  color: #002e4a;
  font-family: "bree", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.question-confirm {
  max-width: 590px;
  margin: 18px auto 0;
  background: #ffffff;
  border: 1px solid rgba(0, 46, 74, 0.12);
  border-radius: 20px;
  padding: 20px 22px 18px;
  box-shadow: 0 1px 0 rgba(0, 46, 74, 0.03), 0 10px 18px rgba(0, 46, 74, 0.04);
}

.question-confirm__title {
  font-family: "bree", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #002E4A;
  text-align: center;
}

.question-confirm__list {
  margin: 0;
  padding-left: 18px;
  text-align: left;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  line-height: 1.45;
  color: #3E4549;
}

.question-confirm__list li + li {
  margin-top: 4px;
}

.question-confirm__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.question-confirm__btn {
  min-width: 84px;
  height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid #002E4A33;
  font-family: "bree", sans-serif !important;
  font-size: 14px;
  font-weight: 700;
}

.question-confirm__btn--secondary {
  background: #ffffff;
  color: #002E4A;
}

.question-confirm__btn--primary {
  background: #FFCB5B;
  border-color: #FFCB5B;
  color: #002E4A;
}

.question-confirm__btn:disabled {
  opacity: 0.8;
  cursor: default;
}

.question-confirm__status {
  margin-top: 14px;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #002E4A;
  text-align: center;
}

.question-edit-modal .modal-dialog {
  max-width: 720px;
}

.question-edit-modal__content {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #dcedfa;
  box-shadow: 0 20px 60px rgba(0, 46, 74, 0.22);
}

.question-edit-modal__header {
  padding: 24px 24px 8px;
  text-align: center;
}

.question-edit-modal__title {
  margin: 0 0 6px;
  color: #002e4a;
  font-family: "bree", sans-serif !important;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.question-edit-modal__question {
  color: #5f6d7b;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.question-edit-modal__body {
  padding: 6px 24px 22px;
}

.question-edit-modal__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.question-edit-modal__option {
  min-height: 30px;
  min-width: 0;
  width: auto;
  border: 1px solid rgba(0, 46, 74, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #002e4a;
  font-family: "bree", sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.question-edit-modal__option.is-active {
  background: #ffcb5b;
  border-color: #ffcb5b;
}

.question-edit-modal__detail {
  width: min(100%, 380px);
  margin-top: 16px;
}

.question-edit-modal__detail-label {
  display: block;
  margin-bottom: 6px;
  color: #6c7f90;
  font-family: "Inter", sans-serif !important;
  font-size: 12px;
  font-weight: 500;
}

.question-edit-modal__detail-input {
  height: 32px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(143, 174, 255, 0.2);
}

.question-edit-modal__footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 24px 24px;
}

.question-edit-modal__btn {
  min-height: 28px;
  min-width: 76px;
  border-radius: 4px;
  border: 1px solid rgba(0, 46, 74, 0.2);
  font-family: "bree", sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
}

.question-edit-modal__btn--ghost {
  background: #ffffff;
  color: #002e4a;
}

.question-edit-modal__btn--primary {
  background: #ffcb5b;
  border-color: #ffcb5b;
  color: #002e4a;
}

@media (max-width: 767.98px) {
  .question-done--review {
    padding: 16px 14px 18px;
  }

  .question-confirm {
    width: 100%;
    padding: 18px 16px 16px;
  }

  .question-review__card,
  .question-review__card.col-md-6 {
    min-height: 60px;
  }

  .question-review__title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .question-review__value {
    font-size: 15px;
  }

  .question-edit-modal__header,
  .question-edit-modal__body,
  .question-edit-modal__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .question-edit-modal__btn {
    min-width: 72px;
    padding: 4px 10px;
  }
}

/* ---------------------------------------------------------
   Step footer (form-2.html)
--------------------------------------------------------- */
.step-footer {
  position: sticky;
  bottom: 0;
  z-index: 1020;
  background: #ffffff;
  border-top: 1px solid rgba(11, 45, 69, 0.08);
}

.step-footer__container {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 71px;
}

.step-footer__left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.step-footer__next-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(11, 45, 69, 0.06);
  color: rgba(11, 45, 69, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-footer__next-icon i {
  font-size: 12px;
}

.step-footer__next-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.step-footer__kicker {
  font-size: 10px;
  font-weight: 400;
  color:#74A7C6;
}

.step-footer__title {
  font-size: 12px;
  font-weight: 400;
  color:#002E4A;
  letter-spacing: 0.4px;
}

.step-footer__right {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.step-footer__prev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color:#002E4A;
  font-size: 12px;
  background-color: transparent;
  font-weight: 700;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.step-footer__prev i {
  font-size: 12px;
}

.step-footer__prev:hover {
  text-decoration: none;
}

/* Primary CTA: same as home .btn-hero-cta (custom.css); footer sizing only */
.step-footer .btn-hero-cta.step-footer__cta {
  height: auto;
  min-height: 32px;
 /* width: 160px; */
 padding:0px 22px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #002E4A;
  letter-spacing: 0.16px;
  box-shadow: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: none;
  background-color: #D0D6D9 !important;
 font-family: "bree", sans-serif !important;
}

.step-footer .btn-hero-cta.step-footer__cta:hover,
.step-footer .btn-hero-cta.step-footer__cta:focus-visible,
.step-footer .btn-hero-cta.step-footer__cta:active {
  background: #ffcb5b;
  color: var(--inme-text-dark);
  transform: none;
}

.step-footer .btn-hero-cta.step-footer__cta i {
  font-size: 1.1rem;
  color: var(--inme-text-dark);
}

.step-footer .btn-hero-cta.step-footer__cta:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 575.98px) {
  .step-footer__container {
           padding-left: 8px;
        padding-right: 6px;
  }

  .step-footer__right {
    gap: 10px;
  }
  .step-footer__container {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding: 10px 4px;
}
.step-footer__title {
    font-size: 10px;
    font-weight: 400;
    color: #002E4A;
    letter-spacing: 0.4px;
}
.form-banner{
  margin-top: 10px;
}

  .step-footer__prev span {
    display: none;
  }
}

/* ---------------------------------------------------------
   Responsive (shared)
--------------------------------------------------------- */
@media (max-width: 991.98px) {
  .form-banner__inner {
    padding: 20px 18px;
  }

  body.page-form .form-banner,
  body.page-form2 .form-banner {
    background-image: none;
  }

  .form-main__left {
    min-height: 340px;
    padding-left: 96px;
  }

  .form-main__left::before {
    top: 12px;
    left: -70px;
    width: 435px;
    height: 300px;
  }

  .form-main__copy {
    max-width: 310px;
  }
}

@media (max-width: 767.98px) {
  .form-main__left {
    min-height: 0;
    padding: 0;
  }

  .form-main__left::before {
    display: none;
  }

  .form-main__copy {
    max-width: 320px;
  }
}

@media (max-width: 575.98px) {
  /* Form-1 mobile background + layout */
  body.page-form {
    background: #eef2f5;
    background-image: none;
  }

  .app-form {
    padding: 0 0 26px;
  }

  .app-form__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-banner {
    border-radius: 0;
    box-shadow: none;
  }
.form-card__header {
    padding: 12px 12px 5px 12px;

}

body.page-form2 #wizardSteps .form-card > .form-card__body.form-card__body--ready > .form-card__anim {
    padding: 0px 12px 14px 12px;
}
  .form-banner__inner {
    padding: 18px 16px 5px;
    background-color: #002E4A;
  }
  .form-card__anim .col-md-6 {
    margin-top: 15px;
}

  .form-banner__kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 0px !important;
  }

  .form-banner__title {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 6px !important;
  }

  .form-banner__subtitle {
    font-size: 11px;
  }

  .form-steps {
    display: none;
  }

  .form-reminder {
    margin-top: 14px;
    box-shadow: none;
    border-radius: 12px;
  }

  .form-reminder__inner {
    padding: 16px;
  }

  .form-reminder__kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 0px !important;
  }

  .form-reminder__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 0px !important;
  }

  .form-reminder__subtitle {
            font-size: 10px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.82);
        line-height: 24px;
        display: none;
  }

    .form-reminder__subtitle-2 {
            font-size: 10px;

        color: rgba(255, 255, 255, 0.82);
        line-height: 24px;
        display: block;
        letter-spacing: 1.2px;
         font-family: "Inter", sans-serif !important;
  }
   .form-reminder__subtitle-2 span{
    font-weight: 600;
  }
  .form-reminder__actions {
    justify-content: flex-start;
    margin-top: 12px;
    margin-top: -6px;
  }

  .form-reminder__btn--discard,
  .form-reminder__btn--icon {
    display: none;
  }

  .form-reminder__btn--continue {
    width: 100%;
   min-height: 40px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 800;
        width: 62%;
  }

  .form-main {
    margin-top: 18px;
  }

  .form-main__left {
    color: #0b2d45;
    min-height: 0;
    padding-top: 0;
  }

  .form-main__copy {
    max-width: 320px;
    margin-left: 0;
    padding-top: 0;
  }

  .form-main__step {
    font-size: 12px;
        letter-spacing: 0.18em;
        margin-bottom: 10px !important;
        margin-top: 15px;

  }

  .form-main__title {
    color: #0b2d45;
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 8px !important;
  }

  .form-main__desc {
    color: rgba(11, 45, 69, 0.6);
    font-size: 11px;
    line-height: 1.55;
    margin-bottom: 14px !important;
    max-width: 320px;
  }

  .form-main__add-btn {

    min-height: 38px;
    padding: 9px 12px;
  }

  .form-main__add-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: transparent;
    color: #0b2d45;
    box-shadow: none;
    font-size: 14px;
  }

  body.page-form2 .coin-card {
    margin-top: 0;
    padding: 14px;
    border-radius: 14px;
  }

  body.page-form2 .coin-card__head {
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
  }

  body.page-form2 .coin-card__head svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  body.page-form2 .coin-card__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }

  body.page-form2 .coin-card__sub {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.35;
  }

  body.page-form2 .coin-card .form2-label,
  body.page-form2 .coin-card__ref .form2-label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  body.page-form2 .coin-card__row {
    gap: 0;
  }

  body.page-form2 .coin-card__action-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  body.page-form2 .coin-card__controls {
    width: 100%;
    gap: 8px;
    align-items: stretch;
  }

  body.page-form2 .coin-card__controls #coinsToRedeem {
    width: 100%;
    min-width: 0;
  }

  body.page-form2 .coin-card__select,
  body.page-form2 .coin-card__ref-input {
    min-width: 0;
    flex: 1 1 auto;
  }

  body.page-form2 .coin-card__btn,
  body.page-form2 .coin-card__apply {
    flex: 0 0 auto;
    min-width: 72px;
    padding: 0 10px;
    font-size: 12px;
  }

  body.page-form2 .coin-card__hint {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.4;
  }

  body.page-form2 .coin-card__cta {
    width: 100%;
    min-height: 36px;
    font-size: 13px;
    border-radius: 6px;
  }

  body.page-form2 .coin-card__divider {
    margin: 12px 0;
  }

  body.page-form2 .coin-card__ref {
    margin-top: 12px !important;
  }

  body.page-form2 .coin-card__ref-row {
    gap: 8px;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .participants {
    margin-top: 14px;
    box-shadow: none;
    border-radius: 12px;
    padding: 14px 12px 12px;
  }

  .participants__header {
    padding: 6px 6px 10px;
  }

  .participants__title {
    font-size: 13px;
    font-weight: 800;
  }

  .participant-card {
    box-shadow: 0 8px 18px rgba(4, 24, 40, 0.08);
    border-radius: 16px;
    min-height: 0;
  }

  .participant-card__cover {
    height: 60px;
  }

  .participant-card__body {
    padding: 0 12px 14px;
  }

  .participant-card__avatar-wrap {
    margin-top: -24px;
    margin-bottom: 8px;
    width: 56px;
    height: 56px;
  }

  .participant-card__avatar {
    width: 56px;
    height: 56px;
  }

  .participant-card__avatar i {
    font-size: 22px;
  }

  .participant-card__camera {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .participant-card__type {
    font-size: 11px;
  }

  .participant-card__name,
  .participant-card__age,
  .participant-card__meta {
    font-size: 12px;
    color: #0b2d45;
  }

  .participant-card__meta--email {
    margin-bottom: 8px;
  }

  .participant-card__action {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .participant-card--recommended {
    border-color: rgba(0, 46, 74, 0.12);
    background: #ffffff;
  }

  .participant-card__badge {
    top: 10px;
    right: 10px;
    padding: 3px 10px;
    font-size: 10px;
  }

  /* Form-2 responsive: sidebar on top, cards full width */
  body.page-form2 .app-form--v2 {
    padding-top: 0;
  }

  body.page-form2 .form2-layout {
    margin-top: 14px;
  }

  body.page-form2 .selected-participant {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    grid-auto-rows: auto;
    column-gap: 10px;
    row-gap: 8px;
    align-items: start;
  }

  body.page-form2 .selected-participant__meta {
    min-width: 0;
  }

  body.page-form2 .selected-participant__action {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  body.page-form2 .selected-participant__info {
    grid-column: 1 / -1;
    min-width: 0;
  }

  body.page-form2 .assistance__row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.page-form2 .toggle-btn-group {
    justify-content: flex-start;
  }
}

/* =========================================================
   Thank You page (thank-you.html)
   ========================================================= */
.page-thankyou {
  min-height: 100vh;
  margin: 0;
  background-color: #f0f7ff;
  font-family: "Bree Serif", Georgia, "Times New Roman", serif !important;
  color: #002d4b;
}

.thankyou-deco {
  position: fixed;
  inset: 0 0 auto 0;
  height: min(52vh, 440px);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.thankyou-deco__svg {
  display: block;
  width: 100%;
  min-width: 1100px;
  height: 100%;
  margin: 0 auto;
}

.thankyou-deco__path {
  stroke: #2b87f0;
  stroke-width: 2.5;
  stroke-dasharray: 9 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0.95;
}

.thankyou-deco__path--2 {
  stroke-width: 2;
  stroke-dasharray: 7 10;
  opacity: 0.55;
}

.thankyou-page {
  position: relative;
  z-index: 1;
  padding: 48px 0 72px;
}

.thankyou-page__inner {
  max-width: 920px;
}

.thankyou-hero {
  text-align: center;
  padding-top: 40px;
}

.thankyou-logo {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-logo__mark {
  font-family: "bree", sans-serif !important;
  font-weight: 800;
  font-size: 36px;
  color: #002d4b;
  line-height: 1;
  letter-spacing: -0.04em;
}

.thankyou-logo__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #2b87f0;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 10px rgba(43, 135, 240, 0.4);
}

.thankyou-logo__badge i {
  font-size: 12px;
  line-height: 1;
}

.thankyou-hero__title {
  font-size:40px;
  font-weight: 700;
  color:#002E4A;
  letter-spacing:0px;
  margin: 0 0 10px;
}

.thankyou-hero__lead {
  font-size: 16px;
  font-weight: 400;
  color:#3E4549;
   font-family: "Inter", sans-serif !important;
  line-height: 1.45;
  margin: 0 auto 22px;
  max-width: 420px;
}

.thankyou-cards {
  max-width: 1100px;
  margin: 0 auto;
}

.thankyou-card {
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 22px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  box-shadow: none;
}

.thankyou-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.thankyou-card__art {
  flex: 0 0 auto;
  width: 88px;
  min-height: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-card__art svg,
.thankyou-card__art img {
  display: block;
  width: 88px;
  height: 88px;
  max-width: 100%;
  object-fit: contain;
}

.thankyou-card__copy {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.thankyou-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #002E4A;
  margin: 0 0 6px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.thankyou-card__sub {
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  color: #42493E;
  line-height: 1.45;
  margin: 0;
  max-width: none;
}

.thankyou-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: auto;
}

.thankyou-card__actions--row {
  gap: 12px;
}

.thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  font-family: "Inter", sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.thankyou-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.thankyou-btn--invoice {
  background: #ffffff;
  border: 1px solid #D5DCE2;
  color: #002E4A;
}

.thankyou-btn--invoice:hover {
  background: #ffffff;
  color: #002E4A;
}

.thankyou-btn--outline {
  background: #ffffff;
  border: 1px solid #D5DCE2;
  color: #002E4A;
}

.thankyou-btn--outline:hover {
  background: #ffffff;
  color: #002E4A;
  border-color: #D5DCE2;
}

.thankyou-btn--copy {
  background: #FFCC5C;
  border: none;
  color: #002E4A;
}

.thankyou-btn--copy:hover {
  background: #FFCC5C;
  color: #002E4A;
}

.thankyou-btn i {
  font-size: 14px;
  line-height: 1;
}

.thankyou-btn:focus-visible {
  outline: 2px solid rgba(43, 135, 240, 0.55);
  outline-offset: 2px;
}

.thankyou-card__btn {
  margin-top: 0;
  width: auto;
}

.thankyou-card__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 0;
  width: 100%;
}

.thankyou-card__btn--half {
  flex: 0 0 auto;
  min-width: 0;
  max-width: none;
  margin-top: 0;
}

@media (max-width: 575.98px) {
  .thankyou-page {
    padding: 36px 0 56px;
  }

  .thankyou-hero {
    padding-bottom: 28px;
  }

  .thankyou-card__top {
    align-items: flex-start;
  }

  .thankyou-card__actions,
  .thankyou-card__actions--row {
    flex-direction: column;
    align-items: stretch;
  }

  .thankyou-btn {
    width: 100%;
  }

  .thankyou-card__btn--half {
    flex: 1 1 100%;
  }
}

/* =========================================================
   Disable hover effects (forms)
   ========================================================= */
body.page-form .btn,
body.page-form2 .btn,
body.page-form3 .btn,
body.page-form4 .btn,
body.page-wizard .btn,
body.page-form button,
body.page-form2 button,
body.page-form3 button,
body.page-form4 button,
body.page-wizard button {
  transition: none !important;
}

body.page-form .btn,
body.page-form2 .btn,
body.page-form3 .btn,
body.page-form4 .btn,
body.page-wizard .btn {
  --bs-btn-hover-color: var(--bs-btn-color);
  --bs-btn-hover-bg: var(--bs-btn-bg);
  --bs-btn-hover-border-color: var(--bs-btn-border-color);
  --bs-btn-active-color: var(--bs-btn-color);
  --bs-btn-active-bg: var(--bs-btn-bg);
  --bs-btn-active-border-color: var(--bs-btn-border-color);
}

body.page-form .btn:hover,
body.page-form2 .btn:hover,
body.page-form3 .btn:hover,
body.page-form4 .btn:hover,
body.page-wizard .btn:hover,
body.page-form button:hover,
body.page-form2 button:hover,
body.page-form3 button:hover,
body.page-form4 button:hover,
body.page-wizard button:hover {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

body.page-form a.btn:hover,
body.page-form2 a.btn:hover,
body.page-form3 a.btn:hover,
body.page-form4 a.btn:hover,
body.page-wizard a.btn:hover {
  text-decoration: none !important;
}
.iti{
  display: block !important;
}

.btn.question-detail__submit {
  min-height: 36px !important;
}

.form-control.is-valid, .was-validated .form-control:valid {
  background-image:none !important;
}
