/* =========================================
   Register Program Page Styles
   ========================================= */

/* Page Wrapper */
.register-program-page-wrapper {
  margin: 3.75rem auto 0;
  padding-bottom: 3.75rem;
  position: relative;
  max-width: 100%;
}

/* =========================================
   Step Container
   ========================================= */
.register-step-container {
  max-width: 118.125rem; /* 1890px */
  margin: 0 auto;
  background: #ebf3f4;
  border-radius: 1.25rem; /* 20px */
  min-height: 61.25rem; /* 980px */
  position: relative;
  overflow: hidden;
}

/* Individual Step */
.register-step {
  display: none;
  width: 100%;
  min-height: 61.25rem;
  animation: fadeIn 0.5s ease;
}

.register-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   STEP 1 & 3: INTRO LAYOUT (Image + Info)
   ========================================= */

.btn.register-cta {
  cursor: pointer;
}

.register-intro {
  display: flex;
  align-items: stretch;
  min-height: 61.25rem;
  width: 100%;
}

/* Left Image Area */
.register-intro__image {
  width: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.125rem; /* 50px */
}

.register-intro__image-bg {
  position: absolute;
  inset: 3.125rem;
  background: #cab397;
  border-radius: 1.875rem; /* 30px */
  z-index: 1;
}

.register-intro__image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.875rem;
  max-height: 55rem; /* 880px */
}

/* Right Info Panel */
.register-intro__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.75rem; /* 60px */
  padding-left: 2.5rem;
}

.register-intro__title {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 3.125rem; /* 50px */
  line-height: 4.625rem; /* 74px */
  letter-spacing: -0.0625rem;
  color: #37818d;
  margin: 0 0 0.75rem;
}

.register-intro__desc {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 1.5rem; /* 24px */
  line-height: 1.875rem; /* 30px */
  color: #000000;
  margin: 0 0 2.5rem;
  max-width: 33.5rem; /* 536px */
}

/* =========================================
   Checklist
   ========================================= */
.register-intro__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.register-intro__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem; /* 10px */
}

.checklist-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4375rem; /* 23px */
  height: 1.4375rem;
  min-width: 1.4375rem;
  background: #37818d;
  border-radius: 0.5625rem; /* 9px */
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.5625rem; /* 9px */
  line-height: 140%;
  color: #ffffff;
}

.checklist-text {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.5rem; /* 24px */
  line-height: 1; /* 30px */
  color: #000000;
}

/* =========================================
   Checkbox
   ========================================= */
.register-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  margin-top: 1.5rem;
}

.register-checkbox input {
  display: none;
}

.register-checkbox__box {
  width: 1.125rem; /* 18px */
  height: 1.125rem;
  min-width: 1.125rem;
  border: 1px solid #37818d;
  border-radius: 0.25rem; /* 4px */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.register-checkbox__box svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.register-checkbox input:checked + .register-checkbox__box {
  background: rgba(55, 129, 141, 0.1);
}

.register-checkbox input:checked + .register-checkbox__box svg {
  opacity: 1;
}

.register-checkbox__label {
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.375rem; /* 22px */
  line-height: 1.875rem; /* 30px */
  color: #0d111a;
}

/* =========================================
   STEP 2: Center Message (UAE Pass)
   ========================================= */
.register-center-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 61.25rem;
  padding: 3.75rem;
  text-align: center;
}

.register-center-title {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 3.125rem; /* 50px */
  line-height: 4.625rem; /* 74px */
  letter-spacing: -0.0625rem;
  color: #37818d;
  margin: 0;
}

/* =========================================
   STEP 4 & 6: Status Screen (Eligible / Submitted)
   ========================================= */
.register-status-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 61.25rem;
  padding: 3.75rem;
  gap: 1.875rem; /* 30px */
  text-align: center;
}

.register-status__icon {
  width: 10rem; /* 160px */
  height: 10rem;
  background: #ffffff;
  border-radius: 2.0625rem; /* 33px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-status__icon svg {
  width: 4.333rem; /* ~69px */
  height: 4.333rem;
}

.register-status__title {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 3.125rem; /* 50px */
  line-height: 4.625rem; /* 74px */
  letter-spacing: -0.0625rem;
  color: #37818d;
  margin: 0;
}

.register-status__desc {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 1.5rem; /* 24px */
  line-height: 1.875rem; /* 30px */
  color: #000000;
  margin: 0;
  max-width: 33.5rem;
}

/* =========================================
   STEP 5: STEPS BAR
   ========================================= */
.register-steps-bar {
  display: flex;
  gap: 1.25rem; /* 20px */
  padding: 3.125rem 3.75rem 0; /* 50px 60px 0 */
}

.register-steps-bar__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1875rem; /* 19px */
}

.register-steps-bar__step .step-label {
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.25rem; /* 20px */
  color: #acacab;
}

.register-steps-bar__step.active .step-label {
  color: #000000;
}

.register-steps-bar__step .step-line {
  width: 100%;
  height: 0.625rem; /* 10px */
  border-radius: 0.3125rem;
  background: #707070;
  opacity: 0.1;
}

.register-steps-bar__step.active .step-line {
  background: #37818d;
  opacity: 1;
}

.register-steps-bar__step .step-title {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 1.5rem; /* 24px */
  line-height: 1.875rem; /* 30px */
  color: #acacab;
}

.register-steps-bar__step.active .step-title {
  color: #37818d;
}

/* Completed step (step 1 done) */
.register-steps-bar__step.completed .step-label {
  color: #000000;
}

.register-steps-bar__step.completed .step-line {
  background: #37818d;
  opacity: 1;
}

.register-steps-bar__step.completed .step-title {
  color: #37818d;
}

/* Form actions split (Back + Submit) */
.register-form__actions--split {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

/* =========================================
   STEP 5: FORM
   ========================================= */
.register-form {
  padding: 2.5rem 3.75rem 3.75rem; /* 40px 60px 60px */
}

.register-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.875rem; /* 20px row, 30px column */
}

.register-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem; /* 9px */
}

.register-form__field label {
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.25rem; /* 20px */
  color: #464647;
}

.register-form__field label .required {
  color: #e74c3c;
}

.register-form__field input,
.register-form__field select {
  width: 100%;
  height: 3.125rem; /* 50px */
  padding: 0 1.32rem; /* ~21px */
  background: #ffffff;
  border: none;
  border-radius: 0.5rem; /* 8px */
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.125rem;
  letter-spacing: -0.0625rem;
  color: #464647;
  outline: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease;
}

.register-form__field input:focus,
.register-form__field select:focus {
  box-shadow: 0 0 0 2px rgba(55, 129, 141, 0.3);
}

.register-form__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23464647' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
}

/* Upload Section */
.register-form__upload-section {
  margin-top: 1.875rem; /* 30px */
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
  width: 33.33%;
}

.register-form__upload-section > label {
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: #464647;
}

.register-form__upload-section > label .required {
  color: #e74c3c;
}

.register-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.875rem; /* 20px 14px */
  gap: 0.5rem;
  background: #ffffff;
  border: 1px dashed rgba(55, 129, 141, 0.4);
  border-radius: 0.75rem; /* 12px */
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  min-height: 8.3125rem; /* 133px */
}

.register-upload-area:hover,
.register-upload-area.dragover {
  border-color: #37818d;
  background: rgba(55, 129, 141, 0.03);
}

.register-upload-area__icon {
  margin-bottom: 0.25rem;
}

.register-upload-area__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1875rem; /* 3px */
}

.register-upload-area__row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.upload-text {
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.375rem; /* 22px */
  line-height: 1.875rem;
  color: #000000;
}

.upload-browse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125rem 0.75rem;
  background: linear-gradient(
    90deg,
    #00818d -13.84%,
    #0b828d 3.25%,
    #288790 33.49%,
    #588e94 72.94%,
    #97989a 117.64%
  );
  border-radius: 0.5rem;
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.upload-browse-btn:hover {
  opacity: 0.9;
}

.upload-hint {
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.625rem; /* 26px */
  color: #37818d;
  opacity: 0.5;
}

.upload-file-name {
  font-family: "Lexend", sans-serif;
  font-size: 0.875rem;
  color: #37818d;
  margin-top: 0.25rem;
}

/* Form Actions */
.register-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
  gap: 0.625rem;
}

/* =========================================
   Validation Errors
   ========================================= */
.register-form__upload-section label.error,
.register-form__field label.error {
  color: #dc3545; /* Bootstrap danger color or theme error color */
  font-family: "Lexend", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.25rem;
  display: block;
}

input.error,
select.error {
  border-color: #dc3545 !important;
}

/* =========================================
   Ownership Radio Group
   ========================================= */
.register-form__ownership {
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}

.register-form__ownership-label {
  font-family: "Dubai", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: #464647;
  margin-bottom: 1rem;
  display: block;
}

.register-form__ownership-label .required {
  color: #dc3545; /* Red asterisk for ownership label as per common practice, or user can override */
}

.register-radio-group {
  display: flex;
  gap: 1rem;
}

.register-radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border-radius: 8px; /* Assuming some container style or transparent */
  padding: 0.5rem 1rem;
  cursor: pointer;
  /* If design has boxes around them: */
  width: 140px;
  height: 50px;
  border: none;
  font-family: "Dubai", sans-serif;
  font-size: 1.125rem;
  color: #464647;
}

.register-radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #464647;
  border-radius: 50%;
  margin: 0;
  display: grid;
  place-content: center;
  transition: all 0.2s ease;
}

.register-radio-option input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.12s transform ease-in-out;
  box-shadow: inset 1em 1em black; /* Dot color */
}

.register-radio-option input[type="radio"]:checked {
  border-color: black;
}

.register-radio-option input[type="radio"]:checked::before {
  transform: scale(1);
}

/* Actions Split */
.register-form__actions--split {
  display: flex;
  justify-content: flex-end; /* Align to right */
  gap: 1rem;
  align-items: center;
}

/* Inputs & Labels */
.register-form__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px; /* From calculations */
  row-gap: 30px; /* From calculations */
}

.register-form__field label {
  font-family: "Dubai", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.25rem; /* 20px */
  color: #464647;
  margin-bottom: 9px; /* Gap between label and input */
  display: block;
}

.register-form__field label .required {
  color: black; /* User requested black asterisk */
}

.register-form__field input,
.register-form__field select {
  width: 100%;
  height: 50px;
  background: #ffffff;
  border-radius: 8px;
  border: none; /* User didn't specify border, implied none or default unless focused */
  padding: 0 1rem;
  font-family: "Dubai", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1.125rem; /* 18px */
  letter-spacing: -1px;
  color: #464647;
}

/* Specific Field overrides if needed based on absolute positioning logic */
/* Group 2072752271 - Upload Section */
.register-form__upload-section {
  grid-column: 1 / -1; /* Span all 4 columns */
  margin-top: 30px; /* Consistent spacing */
}

.register-upload-area {
  width: 100%;
  /* height: 158px;  Min-height allows flexibility */
  min-height: 158px;
  background: #ffffff;
  border: 1px solid rgba(98, 76, 121, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 14px;
  gap: 8px;
}

/* Upload Text */
.upload-text {
  font-family: "Dubai", sans-serif;
  font-weight: 400;
  font-size: 1.375rem; /* 22px */
  line-height: 1.875rem; /* 30px */
  text-align: center;
  color: #000000;
}

/* Browse Button inside Upload */
.upload-browse-btn {
  width: 80px;
  height: 40px;
  background: linear-gradient(
    90deg,
    #00818d -13.84%,
    #0b828d 3.25%,
    #288790 33.49%,
    #588e94 72.94%,
    #97989a 117.64%
  );
  border-radius: 8px;
  font-family: "Dubai", sans-serif;
  font-weight: 400;
  font-size: 1.375rem; /* 22px */
  line-height: 1.875rem; /* 30px */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0;
}

/* Upload Hint */
.upload-hint {
  font-family: "Dubai", sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1.625rem; /* 26px */
  color: #37818d;
  opacity: 0.5;
}

/* Actions */
.register-form__actions {
  margin-top: 2.5rem;
  gap: 9px; /* Gap from specific frame */
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* Tablet */
@media (max-width: 1200px) {
  .register-step-container {
    min-height: auto;
    margin: 0 1rem;
  }

  .register-step {
    min-height: auto;
  }

  .register-intro {
    flex-direction: column;
    min-height: auto;
  }

  .register-intro__image {
    width: 100%;
    height: 25rem;
    padding: 1.5rem;
  }

  .register-intro__image-bg {
    inset: 1.5rem;
  }

  .register-intro__info {
    width: 100%;
    padding: 2.5rem;
  }

  .register-intro__title {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }

  .register-center-message,
  .register-status-screen {
    min-height: 30rem;
  }

  .register-form__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }

  .register-steps-bar {
    padding: 2rem 2rem 0;
  }

  .register-form {
    padding: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .register-program-page-wrapper {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }

  .register-step-container {
    border-radius: 1rem;
    margin: 0 0.5rem;
  }

  .register-intro__image {
    height: 18rem;
    padding: 1rem;
  }

  .register-intro__image-bg {
    inset: 1rem;
  }

  .register-intro__info {
    padding: 1.5rem;
  }

  .register-intro__title {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }

  .register-intro__desc {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .checklist-text {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .register-center-title {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }

  .register-status__icon {
    width: 6rem;
    height: 6rem;
    border-radius: 1.25rem;
  }

  .register-status__icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .register-status__title {
    font-size: 2rem;
    line-height: 3rem;
  }

  .register-status__desc {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .register-center-message,
  .register-status-screen {
    min-height: 22rem;
    padding: 2rem 1.5rem;
  }

  .register-steps-bar {
    flex-direction: column;
    padding: 1.5rem 1.5rem 0;
    gap: 1rem;
  }

  .register-steps-bar__step .step-title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .register-form {
    padding: 1.5rem;
  }

  .register-form__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .register-form__actions {
    justify-content: center;
  }
  .register-checkbox__label {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

/* =========================================
   Loader Overlay
   ========================================= */
.register-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.register-loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #ebf3f4;
  border-top-color: #37818d;
  border-radius: 50%;
  animation: register-spin 0.8s linear infinite;
}

@keyframes register-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================
   Uploads Grid (3 columns)
   ========================================= */
.register-form__uploads-grid {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .register-form__uploads-grid {
    flex-direction: column;
  }
}

/* =========================================
   jQuery Repeater - Dependents
   ========================================= */

/* Repeater Item */
[data-repeater-item] {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(55, 129, 141, 0.15);
  margin-bottom: 1rem;
}

[data-repeater-item]:last-child {
  border-bottom: none;
}

/* Item Header */
.repeater-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

/* When collapsed, remove bottom margin */
[data-repeater-item].is-collapsed .repeater-item-header {
  margin-bottom: 0;
}

.repeater-item-header__left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* Toggle Button */
.repeater-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: rgba(55, 129, 141, 0.08);
  border: none;
  border-radius: 0.375rem;
  color: #37818d;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.2s ease;
}

.repeater-toggle-btn:hover {
  background: rgba(55, 129, 141, 0.15);
}

.repeater-toggle-btn svg {
  transition: transform 0.25s ease;
}

.repeater-toggle-btn.collapsed svg {
  transform: rotate(-90deg);
}

.repeater-item-title {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #37818d;
  margin: 0;
}

/* Remove Button */
.repeater-remove-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid #dc3545;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: "Dubai", "Lexend", sans-serif;
  font-size: 1rem;
  color: #dc3545;
  cursor: pointer;
  transition: all 0.2s ease;
}

.repeater-remove-btn:hover {
  background: #dc3545;
  color: #ffffff;
}

.repeater-remove-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Add Dependent Wrapper */
.repeater-add-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

/* Add Dependent Button */
.repeater-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(
    90deg,
    #00818d -13.84%,
    #0b828d 3.25%,
    #288790 33.49%,
    #588e94 72.94%,
    #97989a 117.64%
  );
  border: none;
  border-radius: 0.5rem;
  font-family: "Dubai", "Lexend", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #ffffff;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.repeater-add-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.repeater-add-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* =========================================
   Repeater Responsive
   ========================================= */
@media (max-width: 768px) {
  .repeater-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .repeater-add-btn {
    width: 100%;
    justify-content: center;
  }
}
