/*========== gravity form css =========== */
.gform_heading{
  display:none;
}

form.gf-fest *,
form.gf-fest *::before,
form.gf-fest *::after {
  box-sizing: border-box;
}

form.gf-fest{
  padding: 30px 0px;
/*   background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;  
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(2,6,23,.08); */
  
}

form.gf-fest .gsection_title{
  display:none;
}

.gf-fest .gform_fields.top_label{
  gap:12px;
}

form.gf-fest .gform_fields .gfield{
  margin-bottom:10px !important;
}

form.gf-fest .gform_fields .gfield--type-section:not(:first-child){
  margin-top:35px !important;
}

form.gf-fest .gform_fields .gfield--type-section{
  margin-bottom:5px !important;
}

/* Section cards (JS wraps each Section + fields into this container) */
form.gf-fest .gform_fields {
  grid-column: 1 / -1; /* when GF fields container is a grid */
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

/* Reset default GF field “cards” (we want the section card to be the box) */
form.gf-fest .gfield,
form.gf-fest fieldset.gfield {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

/* Make most fields span full width by default inside a section card */
/* form.gf-fest .gform_fields > .gfield,
form.gf-fest .gform_fields > fieldset.gfield {
  grid-column: 1 / -1;
} */

/* Re-apply common GF width helpers inside our section grid */
form.gf-fest .gform_fields > .gfield--width-half {
  grid-column: span 6;
}
form.gf-fest .gform_fields > .gfield--width-full {
  grid-column: 1 / -1;
}

/* Section headers */
form.gf-fest .gform_fields > .gfield--type-section {
  grid-column: 1 / -1;
  margin: 0;
}

/* ====== custom section header block ========*/
form.gf-fest .section-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

form.gf-fest .badge-num,
form.gf-fest .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: rgba(30,58,138,.10);
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
  margin-top:0px;
}

form.gf-fest .section-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 600;
  color: #0C3C60;
  font-family: "Cormorant Garamond" !important;
}

form.gf-fest .section-sub{
  margin: 6px 0 7px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
}
form.gf-fest h4.section-title{
  font-size:22px;
}

/*======== label css ===========*/
form.gf-fest label.gform-field-label{
  font-size: 14px;
  color: #000000;
  margin-bottom:7px;
  font-weight:600;
}
.gfield_label{
 display:block !important;  
}


.gfield_label .gfield_required{
  margin-left:4px;
}

/*============= Inputs fields css=========== */
form.gf-fest ::placeholder {
  color: #334155;
  opacity: 0.85; /* Firefox */
}

form.gf-fest :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #334155;
  opacity: 0.85;
}

form.gf-fest ::-ms-input-placeholder { /* Microsoft Edge (legacy) */
  color: #334155;
  opacity: 0.85;
}

form.gf-fest input[type="text"],
form.gf-fest input[type="email"],
form.gf-fest input[type="tel"],
form.gf-fest textarea,
form.gf-fest select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  background: #fff;
  min-height:46px;
}

form.gf-fest textarea {
  height: 110px;
}

form.gf-fest input:focus,
form.gf-fest textarea:focus,
form.gf-fest select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.35);
}

form.gf-fest .gfield_description {
  margin-top: 8px !important;
  color: #64748b;
  font-size: 13px;
}

/* Attendance radio buttons (inline pill cards) */
form.gf-fest .gfield--type-radio .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  cursor:pointer;
}

form.gf-fest .gfield--type-radio .gchoice {
  display: flex;
  align-items: start;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12.2px 12px;
  background: #fff;
}

form.gf-fest .gfield--type-radio .gchoice input {
  margin: 0;
  min-width:20px;
}

form.gf-fest .gfield--type-radio .gchoice label {
  margin: 0;
font-weight:normal;
  font-size:14px;
  color:#000000;
}

@media (min-width: 640px) {
    .gform-theme--foundation .gfield.gf_list_inline:where(:not(.gfield--type-image_choice)) .gfield_checkbox, .gform-theme--foundation .gfield.gf_list_inline:where(:not(.gfield--type-image_choice)) .gfield_radio {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 16px;
    }
}

/* notes css */
form.gf-fest .note{
  margin-top: 14px;
    padding: 14px 14px;
    border: 1px dashed rgba(37, 99, 235, .35);
    border-radius: 14px;
    background: rgba(37, 99, 235, .06);
}

form.gf-fest .help {
    font-size: 12px;
    color: #64748b;
}

/* Programme day separators */
form.gf-fest .gof-program-day {
  background: transparent;
  padding: 0;
  margin: 0;
}

form.gf-fest .program-day {
  font-weight: 800;
  margin-bottom:-7px;
}

/* Programme item list */
form.gf-fest fieldset.program-item legend {
  display: none;
}

form.gf-fest fieldset.program-item .gchoice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
cursor:pointer;
}

form.gf-fest fieldset.program-item .gchoice:hover{
  background:#fafafa;
}

form.gf-fest fieldset.program-item input[type="checkbox"] {
  margin: 4px 0 0;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

form.gf-fest fieldset.program-item label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  margin:0;
}

form.gf-fest .program-title {
  font-weight: 900;
font-size:14px;
}

form.gf-fest .program-time {
  margin-top: 5px;
  color: #64748b;
  font-size: 13px;
}

form.gf-fest .program-desc {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight:normal
}

/* Partner dropdown inside Programme items */
form.gf-fest .program-partner-select {
  margin-top: 10px;
  display: none; /* shown via JS when partner mode + item checked */
}

form.gf-fest .partner-select {
  width: 100%;
  max-width: 280px;
  border-radius: 999px;
  padding: 10px 12px;
}

/* Price pill */
form.gf-fest .price-pill {
  border: 1px solid #000000;
  background:#f4f4f4;

  border-radius: 100px;
  padding: 6px 19px;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  align-self: flex-start;
  
}

form.gf-fest .price-pill.free {
  color: #b91c1c;
    border-color: rgba(185, 28, 28, .25);
    background: rgba(185, 28, 28, .06);
}

/* Hide all pricing engine fields (products/options/total/VAT) */
/* GF-safe hide: keeps elements measurable so GF pricing JS still updates */
.gof-hidden-pricing{
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* Accommodation “note” button */
form.gf-fest .btn.btn-primary {
  display: inline-block;
  border-radius: 100px;
  padding: 12px 14px;
  background: #1e3a8a;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(30, 58, 138, .22);
}

form.gf-fest .btn.btn-primary:hover {
  filter: brightness(1.05);
}

/* Summary block (your HTML field) */
form.gf-fest .summary {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

form.gf-fest .summary-head,
form.gf-fest .summary-row {
  display: grid;
  grid-template-columns: 1fr 40px 140px;
  gap: 10px;
  align-items: center;
}

form.gf-fest .summary-head {
  padding: 12px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}

form.gf-fest .summary-row {
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

form.gf-fest .summary-row:last-child {
  border-bottom: 0;
}

form.gf-fest .right {
  text-align: right;
}

form.gf-fest .totals {
  padding: 14px;
  display: flex;
  justify-content: flex-end;
}

form.gf-fest .totals-inner{
  max-width:320px;
  width:100%;
}

form.gf-fest .tot-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}

form.gf-fest .muted {
  color: #64748b;
}

form.gf-fest .big {
  font-size: 20px;
  font-weight: 900;
}

/* Submit button */

form.gf-fest .gform_footer input[type="submit"] , form.gf-fest .gform-page-footer .button{
  width: 100%;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  border: 0;
  background: #0A1551 !important;
  color: #fff !important;
  font-weight: 900;
  font-size: 16px !important;
  cursor: pointer;
}

form.gf-fest .gform_footer input[type="submit"]:hover ,
form.gf-fest .gform-page-footer .button:hover{
  filter: brightness(1.05);
}

.gform-theme--foundation #field_submit{
  flex-direction: column;
    align-items: center;
}

form.gf-fest .gform-page-footer .gform_previous_button + .gform_next_button,
form.gf-fest .gform-page-footer .gform_previous_button + .gform_button {
  margin-left:auto !important;
}

form.gf-fest .gform-page-footer .button{
  margin-top:15px !important;
}

/* =============Responsive css ==========*/
@media (max-width: 640px) {
  form.gf-fest{
     padding:22px 0px;
  }

  form.gf-fest .gform_fields {
    gap: 12px;
  }

  form.gf-fest .gform_fields > .gfield--width-half {
    grid-column: 1 / -1;
  }

  form.gf-fest .summary-head,
  form.gf-fest .summary-row {
    grid-template-columns: 1fr 10px 110px;
  }
  
  form.gf-fest fieldset.program-item label{
    flex-direction:column;
  }
  
  form.gf-fest .price-pill{
        align-self: flex-end;
  }
  form.gf-fest .gfield--type-radio .gchoice{
    align-self:flex-start;
  }
  form.gf-fest .gsection_title{
    font-size:22px;
  }
}

/* =========================================================
   Ordensfest – Gravity Forms UX fixes (Form ID: 12)
   Append this at the END of your current CSS
   ========================================================= */

/* -----------------------------
   1) FIX: GOF section cards hidden (inline display:none)
   We only force-show when JS adds .gof-force-show-cards
------------------------------ */
form.gf-fest.gof-force-show-cards .gform_fields {
  display: grid !important;        /* overrides inline display:none */
  visibility: visible !important;
  opacity: 1 !important;
}

/* Helpful for dropdown clipping inside cards */
form.gf-fest .gform_fields {
  overflow: visible;
}

/* -----------------------------
   2a) Dropdown UX: text cut-off + layering
------------------------------ */
form.gf-fest .program-partner-select,
form.gf-fest .ginput_container_select {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

/* Make selects tall enough so the selected option isn't visually clipped */
form.gf-fest .program-partner-select select,
form.gf-fest .ginput_container_select select {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  height: auto;
  line-height: 1.5;
  padding: 12px 25px 10px 16px; /* extra right padding to avoid arrow overlap */
  border-radius: 12px;         /* keeps your pill look */
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: 97% center;
}

/* Ensure the card you're interacting with sits above neighbors
   (helps when dropdown panels get clipped/hidden) */
form.gf-fest .gof-program-card {
  position: relative;
  overflow: visible;
  z-index: 1;
}
form.gf-fest .gof-program-card:focus-within {
  z-index: 50;
}

/* If Select2/Chosen/Choices is used anywhere, keep dropdown above everything */
.select2-container--open,
.select2-dropdown,
.chosen-container .chosen-drop,
.choices__list--dropdown {
  z-index: 999999 !important;
}

/* -----------------------------
   2b) Order Summary totals alignment
   (moves "Subtotal/VAT/Total" closer to the value column)
------------------------------ */
form.gf-fest table tfoot td:first-child {
  text-align: right;
  padding-right: 20px;
  white-space: nowrap;
}
form.gf-fest table tfoot td:last-child {
  text-align: right;
  white-space: nowrap;
}
form.gf-fest table tfoot tr td {
  padding-top: 8px;
  padding-bottom: 8px;
}
form.gf-fest table tfoot tr:last-child td {
  font-weight: 700;
  font-size: 1.05em;
}

/* -----------------------------
   2c) Accommodation block cleanup
------------------------------ */
form.gf-fest .gform_fields figure,
form.gf-fest .gform_fields .wp-block-image,
form.gf-fest .gform_fields .wp-block-gallery {
  margin: 0 0 16px;
}

form.gf-fest .gform_fields img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* -----------------------------
   2d) Mobile / responsive fixes
------------------------------ */
@media (max-width: 640px) {

  /* 2dii) Make program text blocks full width */
  form.gf-fest .gof-program-card .program-title,
  form.gf-fest .gof-program-card .program-time,
  form.gf-fest .gof-program-card .program-desc,
  form.gf-fest .gof-program-card .program-partner-select {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    flex: 0 0 100%;
    grid-column: 1 / -1;
    box-sizing: border-box;
  }

  /* 2di) Price pill bottom-right on mobile */
  form.gf-fest .gof-program-card {
    padding-bottom: 58px; /* room for the pill */
  }

  form.gf-fest .gof-program-card .price-pill {
    position: absolute;
    right: 18px;
    bottom: 18px;
    margin: 0;
  }

  /* leave room so the pill doesn't overlap the dropdown content */
  form.gf-fest .gof-program-card .program-partner-select {
    padding-right: 120px;
  }
}
/* === GOF scope safety: if wrapper has gf-fest_wrapper* but not gf-fest, still apply styles === */
.gform_wrapper[class*="gf-fest_wrapper"]{
  /* do nothing here—JS will add .gf-fest to wrapper */
}

/* === Safety: NEVER allow cards to stay hidden globally (only partner card should hide via GF) === */
form.gf-fest .gform_fields{
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* Hide section-card only when JS marks it hidden */
form.gf-fest .gform_fields.gof-card-hidden{
  display: none !important;
}
form.gf-fest .gform_fields.gof-card-hidden{
  display:none !important;
}
/*======= consent css========  */
form.gf-fest .ginput_container_consent{
  padding: 15px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
  width:100%;
}
form.gf-fest .ginput_container_consent input{
  margin-top:0px;
}
form.gf-fest .ginput_container_consent label{
  margin-bottom:0;
  font-weight:normal;
  font-size:14px;
}

form.gf-fest .ginput_container_consent label a{
  color: #1e3a8a;
}
form.gf-fest .gform-button{
  background:#1e3a8a !important;
    color: #ffffff !important;
    box-shadow: 0 14px 26px rgba(30, 58, 138, .22) !important;
  padding: 14px 18px !important;
    font-weight: 700 !important;
    font-size: 14px !important; 
  border-radius:100px !important;
  margin:20px auto !important;
}

form.gf-fest .gform_fields .section-partner-wrapper{
  border-left: 6px solid rgba(245, 158, 11, .9);
}

form.gf-fest .gform_fields .section-partner-wrapper .badge-num, 
form.gf-fest .gform_fields .section-partner-wrapper .badge-icon{
  background: rgba(245, 158, 11, .15);
    color:#f59e0b;
}

.gform-theme--framework .gfield_validation_message:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)){
  color:#c02b0a !important;
}

.gform-theme--framework .gfield_error .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)), .gform-theme--framework .gfield_error textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)){
  border-color:#c02b0a !important;
}
.gof-form-copyright{
  color: #64748b;
    font-size: 13px;
    line-height: 1.35;
}

form.gf-fest .gform_fields .gform-footer .button{
  background:#0A1551 !important;
}

.gform_required_legend{
  display:none;
}

/* ==========================================
   SELECT2 – CLEAN FINAL (MATCH GF INPUT)
========================================== */

/* Width */
.gfield.gf-select2 .select2-container,
select.gf-select2 + .select2-container {
    width: 100% !important;
}

/* ======================
   CLOSED FIELD (DEFAULT)
====================== */
.gfield.gf-select2 .select2-container--default .select2-selection--single,
select.gf-select2 + .select2-container--default .select2-selection--single {
    height: 46px;
    min-height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 38px 0 12px;

    /* 👇 THIS is the important shadow you wanted */
    box-shadow: 0 2px 6px rgba(2, 6, 23, 0.06);

    transition: all 0.2s ease;
}

/* TEXT */
.gfield.gf-select2 .select2-selection__rendered,
select.gf-select2 + .select2-container .select2-selection__rendered {
    color: #0f172a;
    font-size: 14px;
    line-height: 44px;
    padding: 0 !important;
}

/* ARROW */
.gfield.gf-select2 .select2-selection__arrow,
select.gf-select2 + .select2-container .select2-selection__arrow {
    height: 44px;
    width: 28px;
    right: 8px;
    top: 1px;
}

/* REMOVE CLEAR BUTTON */
.select2-selection__clear {
    display: none !important;
}

/* ======================
   FOCUS STATE (MATCH GF)
====================== */
.gfield.gf-select2 .select2-container--default.select2-container--focus .select2-selection--single,
.gfield.gf-select2 .select2-container--default.select2-container--open .select2-selection--single,
select.gf-select2 + .select2-container--default.select2-container--focus .select2-selection--single,
select.gf-select2 + .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.35);
}

/* ======================
   DROPDOWN (NO SHADOW)
====================== */
.select2-dropdown {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;

    /* ❌ NO SHADOW */
    box-shadow: none;
}

/* SEARCH BOX */
.select2-search--dropdown {
    padding: 8px;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #3b82f6;
}

/* OPTIONS */
.select2-results__option {
    padding: 10px 14px;
    font-size: 14px;
    color: #0f172a;
}

/* HOVER */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #1f4c8f;
    color: #ffffff;
}

/* SELECTED */
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #f8fafc;
    color: #0f172a;
}
/* Remove blue focus glow from Select2 */
.gfield.gf-select2 .select2-container--default.select2-container--focus .select2-selection--single,
.gfield.gf-select2 .select2-container--default.select2-container--open .select2-selection--single,
select.gf-select2 + .select2-container--default.select2-container--focus .select2-selection--single,
select.gf-select2 + .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #e5e7eb !important;
    box-shadow: none !important;
}

/* set icon color css */
.gform_wrapper .gfli-label-icon{
  color:#0C3C60 !important;
  font-size: 18px;
  margin-top: -2px;
}


.gform-datepicker{
  cursor:pointer; 
}

/*============ css for field extar info==========  */
.field-meta{
  display:flex;
  align-items:start;
  gap:5px;
}

.field-meta .field-icon{
  color:rgba(0,0,0,0.4);
  font-size:18px;
  min-width:20px;
  line-height:1;
}

.field-meta .field-title{
  font-size:16px;
  color:#0C3C60;
  margin-top:-4px;
}

.field-meta .field-detail{
  margin-top:6px;
  color:rgba(0,0,0,0.4);
}

.gchoice.active .field-meta .field-icon{
  color:#0C3C60;
}

form.gf-fest .gfield--type-radio .gchoice.active{
  border-color:#0C3C60;
}

.html-notice{
  border:1px solid #B9D3EA;
  background:#E9F2FB; 
  padding:12px;
  border-radius:10px;
}

.html-notice .field-icon{
  color:#0C3C60;
  font-size:20px;
  min-width:24px;
}

.html-notice .field-title{
  font-weight:600;
  margin-top:-2px;
}

/*============= steps css ===============  */
form.gf-fest .gf_page_steps {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    margin-bottom: 60px;
}

form.gf-fest .gf_step {
    position: relative;
    z-index: 1;
    text-align: center !important;
    flex: 1;
  flex-direction: column;
  gap:10px;
}

form.gf-fest .gf_page_steps .gf_step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 56%;
    width: 100%;
    height: 2px;
    background: #e1e5ea;
    z-index: -1;
}

form.gf-fest .gf_step_number {
    width: 32px;
    height: 32px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d0d7e2;
    color: #6b778c;
    font-weight: 600;
  position:relative;
}


form.gf-fest .gf_step_active .gf_step_number {
    background: #0C3C60;
    border-color: #0C3C60;
    color: #ffffff;
}

form.gf-fest .gf_step_label {
    display: block ;
    font-size: 14px;
    color: #6b778c;
  text-transform: capitalize;
}


form.gf-fest .gf_step_active .gf_step_label {
    color:#0C3C60;
}

form.gf-fest .gf_step_completed .gf_step_number {
    background:#0C3C60;
    border-color: #0C3C60;
    color: #ffffff;
}

form.gf-fest .gf_step_completed .gf_step_label {
      color:#0C3C60;
}


form.gf-fest .gf_page_steps .gf_step.gf_step_active:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 55%;
    height: 2px;
    background:#0C3C60;
    width: 40%; /* adjust dynamically per step */
    z-index: -1;
}

form.gf-fest .gf_page_steps .gf_step.gf_step_completed:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 56%;
    height: 2px;
    background:#0C3C60;
    width: 100%; /* adjust dynamically per step */
    z-index: -1;
}

form.gf-fest .gf_step_completed .gf_step_number::after{
  left:-1px;
  top:-1px;
  background:#0C3C60;
  border-color:#0C3C60;
}

@media(max-width:640px){
  form.gf-fest .gf_step_label{
    font-size:12px;
  }
  form.gf-fest .gf_page_steps .gf_step:not(:last-child)::before{
    left:63%;
  }
  form.gf-fest .gf_page_steps .gf_step.gf_step_completed:not(:last-child)::after{
    left:63%;
  }
}

@media(max-width:767px){
  form.gf-fest  .gf_step_label{
    display:none;
  }
}

.gf-fest.gform_confirmation_wrapper{
  border: 1px solid #B9D3EA;
    background: #E9F2FB;
    padding: 20px;
    border-radius: 10px;
  font-size:20px;
  text-align:center;
}