:where(.sof) span {
  font-size: inherit;
}

:where(.sof) b,
:where(.sof) strong {
  font-size: inherit;
  font-weight: 700;
}

.student-onboarding-section {
  font-family: "Outfit", sans-serif;
  color: #233330;
  background: radial-gradient(1200px 600px at 50% -200px, #ffffff 0%, #eef6f4 60%, #eef6f4 100%);
  padding: clamp(28px, 5vw, 72px) 16px clamp(48px, 7vw, 96px);
}
.student-onboarding-section *,
.student-onboarding-section *::before,
.student-onboarding-section *::after {
  box-sizing: border-box;
}
.student-onboarding-section .sof-hero {
  max-width: 900px;
  margin: 0 auto clamp(26px, 4vw, 44px);
  text-align: center;
}
.student-onboarding-section .sof-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: #2e8378;
  margin-bottom: clamp(10px, 1.3vw, 14px);
}
.student-onboarding-section .sof-title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 3.5vw, 48px);
  white-space: nowrap;
  color: #1e2422;
  margin: 0 0 16px;
}
.student-onboarding-section .sof-title span {
  color: #2e8378;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.student-onboarding-section .sof-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  color: #6c807c;
  max-width: 600px;
  margin: 0 auto;
}
.student-onboarding-section .sof-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 14px;
}
.student-onboarding-section .sof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid #e0eeeb;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #1b7061;
  box-shadow: 0 4px 14px rgba(27, 112, 97, 0.05);
}
.student-onboarding-section .sof-badge svg {
  width: 15px;
  height: 15px;
  stroke: #2e8378;
  flex: none;
}
.student-onboarding-section .sof-tip {
  font-size: 13px;
  color: #6c807c;
  font-style: italic;
}
.student-onboarding-section .sof-tip b {
  font-size: inherit;
  color: #1b7061;
  font-style: inherit;
}
.student-onboarding-section .sof-card {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e0eeeb;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(27, 112, 97, 0.1);
  overflow: hidden;
}
.student-onboarding-section .sof-sticky-progress {
  background: #ffffff;
  border-bottom: 1px solid #e0eeeb;
}
.student-onboarding-section .sof-pbar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 40px) 12px;
}
.student-onboarding-section .sof-step-label {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e2422;
}
.student-onboarding-section .sof-step-label b {
  font-size: inherit;
  color: #2e8378;
  font-weight: inherit;
}
.student-onboarding-section .sof-step-label span {
  font-size: inherit;
}
.student-onboarding-section .sof-percent {
  font-size: 13px;
  font-weight: 600;
  color: #2e8378;
  white-space: nowrap;
}
.student-onboarding-section .sof-percent span {
  font-size: inherit;
}
.student-onboarding-section .sof-track {
  height: 6px;
  background: #d6e6e3;
  margin: 0 clamp(20px, 4vw, 40px) clamp(18px, 3vw, 26px);
  border-radius: 999px;
  overflow: hidden;
}
.student-onboarding-section .sof-fill {
  height: 100%;
  width: 33%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b7061, #46a598);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.student-onboarding-section .sof-steps {
  display: flex;
  gap: 0;
  padding: clamp(26px, 4vw, 38px) clamp(16px, 4vw, 44px) clamp(22px, 3vw, 30px);
  border-bottom: 1px solid #e0eeeb;
  background: linear-gradient(180deg, #f6fbfa 0%, #ffffff 100%);
  box-shadow: 0 8px 24px -8px rgba(27, 112, 97, 0.08);
  z-index: 10;
}
.student-onboarding-section .sof-step {
  flex: 1;
  position: relative;
  text-align: center;
  min-width: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.student-onboarding-section .sof-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 3px;
  background: #d6e6e3;
  border-radius: 99px;
  z-index: 0;
  transition: background 0.4s ease;
}
.student-onboarding-section .sof-step.is-done:not(:last-child)::after {
  background: linear-gradient(90deg, #1b7061, #5dcaa5);
}
.student-onboarding-section .sof-dot {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 2px solid #d6e6e3;
  color: #6c807c;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.student-onboarding-section .sof-dot .num {
  font-size: inherit;
}
.student-onboarding-section .sof-dot svg {
  width: 18px;
  height: 18px;
  display: none;
  stroke: #ffffff;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}
.student-onboarding-section .sof-step.is-active .sof-dot {
  border-color: #2e8378;
  color: #1b7061;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(46, 131, 120, 0.1), 0 0 0 10px rgba(46, 131, 120, 0.05), 0 6px 14px rgba(46, 131, 120, 0.1);
  animation: sof-pulse 2.2s ease-in-out infinite;
}
.student-onboarding-section .sof-step.is-active .sof-step-name {
  color: #1b7061;
}
.student-onboarding-section .sof-step.is-done .sof-dot {
  background: linear-gradient(135deg, #1b7061 0%, #46a598 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(27, 112, 97, 0.22);
}
.student-onboarding-section .sof-step.is-done .sof-dot .num {
  display: none;
}
.student-onboarding-section .sof-step.is-done .sof-dot svg {
  display: block;
}
.student-onboarding-section .sof-step-name {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e2422;
  line-height: 1.3;
  transition: color 0.2s ease;
}
.student-onboarding-section .sof-step-name span {
  font-size: inherit;
}
.student-onboarding-section .sof-step-desc {
  display: block;
  font-size: 12px;
  color: #6c807c;
  margin-top: 3px;
}
.student-onboarding-section .sof-step.is-clickable {
  cursor: pointer;
}
.student-onboarding-section .sof-step.is-clickable:hover .sof-dot {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 131, 120, 0.14);
}
.student-onboarding-section .sof-step.is-clickable:hover .sof-step-name {
  color: #2e8378;
}
.student-onboarding-section .sof-step.is-skipped {
  cursor: default;
  pointer-events: none;
}
.student-onboarding-section .sof-step.is-skipped .sof-dot {
  opacity: 0.4;
  border: 2px dashed #c2d5d1;
  background: #f6fbfa;
  color: #b0c4bf;
  box-shadow: none;
  animation: none;
}
.student-onboarding-section .sof-step.is-skipped .sof-step-name {
  opacity: 0.45;
  text-decoration: line-through;
  text-decoration-color: #b0c4bf;
  color: #6c807c;
}
.student-onboarding-section .sof-step.is-skipped .sof-step-desc {
  display: none;
}
.student-onboarding-section .sof-step.is-skipped::before {
  content: "Skipped";
  display: block;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Montserrat, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a0b5b0;
  background: #eef6f4;
  padding: 2px 10px;
  border-radius: 99px;
  border: 1px solid #d6e6e3;
  white-space: nowrap;
}
.student-onboarding-section .sof-step.is-skipped:not(:last-child)::after {
  background: #d6e6e3 !important;
  opacity: 0.45;
}
.student-onboarding-section .sof-hp-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.student-onboarding-section .sof-panels {
  padding: clamp(24px, 4vw, 42px);
}
.student-onboarding-section .sof-panel {
  display: none;
  animation: sof-fade 0.4s ease;
}
.student-onboarding-section .sof-panel.is-active {
  display: block;
}
.student-onboarding-section .sof-section {
  margin-bottom: 30px;
}
.student-onboarding-section .sof-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.student-onboarding-section .sof-section-head .ico {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(46, 131, 120, 0.1);
  display: grid;
  place-items: center;
  flex: none;
}
.student-onboarding-section .sof-section-head .ico svg {
  width: 19px;
  height: 19px;
  stroke: #2e8378;
}
.student-onboarding-section .sof-section-head h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: #1e2422;
  margin: 0;
}
.student-onboarding-section .sof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.student-onboarding-section .sof-grid.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.student-onboarding-section .sof-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.student-onboarding-section .sof-field.full {
  grid-column: 1/-1;
}
.student-onboarding-section .sof-field label {
  font-size: 13px;
  font-weight: 600;
  color: #233330;
  margin-bottom: 7px;
}
.student-onboarding-section .sof-field label em {
  color: #d8584f;
  font-style: normal;
  margin-left: 2px;
}
.student-onboarding-section .sof-field label .hint {
  color: #6c807c;
  font-weight: 400;
  font-size: 12px;
}
.student-onboarding-section .sof-input,
.student-onboarding-section .sof-select,
.student-onboarding-section .sof-textarea {
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 14.5px;
  color: #233330;
  padding: 10px 12px;
  border: 1.5px solid #e0eeeb;
  border-radius: 11px;
  background: #f6fbfa;
  outline: 0;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.student-onboarding-section .sof-input::placeholder,
.student-onboarding-section .sof-select::placeholder,
.student-onboarding-section .sof-textarea::placeholder {
  color: #a7b6b2;
}
.student-onboarding-section .sof-input:focus,
.student-onboarding-section .sof-select:focus,
.student-onboarding-section .sof-textarea:focus {
  border-color: #2e8378;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46, 131, 120, 0.1);
}
.student-onboarding-section .sof-input.is-uc {
  text-transform: uppercase;
}
.student-onboarding-section .sof-input.is-uc::placeholder {
  text-transform: none;
}
.student-onboarding-section .iti {
  width: 100%;
  display: block;
}
.student-onboarding-section .iti--separate-dial-code .iti__selected-flag {
  background: transparent;
  border-radius: 11px 0 0 11px;
}
.student-onboarding-section .sof-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='%232e8378' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.student-onboarding-section .sof-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}
.student-onboarding-section .sof-input.input-err,
.student-onboarding-section .sof-select.input-err,
.student-onboarding-section .sof-textarea.input-err {
  border-color: #d8584f;
  background: #fff6f5;
}
.student-onboarding-section .sof-field-desc {
  font-size: 13.5px;
  color: #6c807c;
  margin-top: -3px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.student-onboarding-section .sof-err {
  color: #d8584f;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}
.student-onboarding-section .sof-field.has-err .sof-err {
  display: block;
}
.student-onboarding-section .sof-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.student-onboarding-section .sof-radio {
  position: relative;
  cursor: pointer;
}
.student-onboarding-section .sof-radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.student-onboarding-section .sof-radio span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border: 1.5px solid #e0eeeb;
  border-radius: 999px;
  background: #fff;
  color: #1e2422;
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s;
}
.student-onboarding-section .sof-radio span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1.5px solid #d6e6e3;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  transition: all 0.2s;
  background: #fff;
}
.student-onboarding-section .sof-radio input:checked + span {
  border-color: #2e8378;
  background: rgba(46, 131, 120, 0.04);
  color: #1b7061;
}
.student-onboarding-section .sof-radio input:checked + span::before {
  border-color: #2e8378;
  background-color: #2e8378;
  box-shadow: inset 0 0 0 3.5px #fff;
}
.student-onboarding-section .sof-radio input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(46, 131, 120, 0.18);
}
.student-onboarding-section .sof-decl {
  background: #ffffff;
  border: 1.5px solid #e0eeeb;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(27, 112, 97, 0.02);
}
.student-onboarding-section .sof-decl p.lead {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1e2422;
  margin: 0 0 20px;
  line-height: 1.5;
  border-bottom: 1.5px solid #e0eeeb;
  padding-bottom: 12px;
}
.student-onboarding-section .sof-decl ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: decl-counter;
}
.student-onboarding-section .sof-decl li {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: #3b4d49;
  margin-bottom: 16px;
  padding-left: 36px;
  counter-increment: decl-counter;
}
.student-onboarding-section .sof-decl li::before {
  content: counter(decl-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #2e8378;
  background: rgba(46, 131, 120, 0.08);
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
}
.student-onboarding-section .sof-decl li b {
  color: #1b7061;
}
.student-onboarding-section .sof-decl li:last-child {
  margin-bottom: 0;
}
.student-onboarding-section .sof-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid #e0eeeb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.student-onboarding-section .sof-agree:hover {
  border-color: #5dcaa5;
}
.student-onboarding-section .sof-agree.checked {
  border-color: #2e8378;
  background: rgba(46, 131, 120, 0.05);
}
.student-onboarding-section .sof-agree input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: #2e8378;
  flex: none;
  cursor: pointer;
}
.student-onboarding-section .sof-agree span {
  font-size: 14px;
  line-height: 1.5;
  color: #233330;
}
.student-onboarding-section .sof-agree span b {
  font-size: inherit;
  color: #1b7061;
}
.student-onboarding-section .sof-sign-wrap {
  border: 1.5px dashed #d6e6e3;
  border-radius: 12px;
  background: #f6fbfa;
  padding: 6px;
  position: relative;
}
.student-onboarding-section .sof-sign {
  display: block;
  width: 100%;
  height: 170px;
  border-radius: 8px;
  background: #fff;
  touch-action: none;
  cursor: crosshair;
}
.student-onboarding-section .sof-sign-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #bcccc8;
  font-size: 14px;
  pointer-events: none;
}
.student-onboarding-section .sof-sign-wrap.has-ink .sof-sign-hint {
  display: none;
}
.student-onboarding-section .sof-sign-clear {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid #e0eeeb;
  background: #fff;
  color: #6c807c;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.student-onboarding-section .sof-sign-clear:hover {
  color: #d8584f;
  border-color: #f0c9c5;
}
.student-onboarding-section .sof-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0eeeb;
}
.student-onboarding-section .sof-btn {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.15s, box-shadow 0.25s, background 0.25s, opacity 0.2s;
}
.student-onboarding-section .sof-btn svg {
  width: 17px;
  height: 17px;
}
.student-onboarding-section .sof-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.student-onboarding-section .sof-btn-primary {
  background: #2e8378;
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 131, 120, 0.28);
}
.student-onboarding-section .sof-btn-primary:hover:not(:disabled) {
  background: #1b7061;
  transform: translateY(-2px);
}
.student-onboarding-section .sof-btn-ghost {
  background: #fff;
  color: #1b7061;
  border-color: #e0eeeb;
}
.student-onboarding-section .sof-btn-ghost:hover:not(:disabled) {
  border-color: #5dcaa5;
  background: #f6fbfa;
}
.student-onboarding-section .sof-btn-back {
  margin-right: auto;
}
.student-onboarding-section .sof-btn[hidden] {
  display: none;
}
.student-onboarding-section .sof-alert {
  margin: 0 0 18px;
  padding: 13px 16px;
  border-radius: 11px;
  font-size: 14px;
  display: none;
}
.student-onboarding-section .sof-alert.err {
  background: #fdeceb;
  color: #b23b33;
  border: 1px solid #f4c7c3;
  display: block;
}
.student-onboarding-section .sof-alert.ok {
  background: rgba(46, 131, 120, 0.1);
  color: #1b7061;
  border: 1px solid #5dcaa5;
  display: block;
}
.student-onboarding-section .sof-consent {
  text-align: center;
  font-size: 12.5px;
  color: #6c807c;
  margin: 16px 0 0;
}
.student-onboarding-section .sof-consent svg {
  width: 13px;
  height: 13px;
  stroke: #2e8378;
  vertical-align: -2px;
  margin-right: 4px;
}

.sof-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sof-overlay.is-active {
  display: flex;
  animation: sof-fade 0.25s ease;
}

.sof-overlay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 36px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.sof-spinner {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgba(46, 131, 120, 0.18);
  border-top-color: #2e8378;
  animation: sof-spin 0.8s linear infinite;
  will-change: transform;
}

.sof-overlay-text {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #1b7061;
}

@keyframes sof-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sof-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sof-pulse {
  0%, 100% {
    box-shadow: 0 0 0 5px rgba(46, 131, 120, 0.1), 0 0 0 10px rgba(46, 131, 120, 0.05), 0 6px 14px rgba(46, 131, 120, 0.1);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(46, 131, 120, 0.14), 0 0 0 14px rgba(46, 131, 120, 0.06), 0 6px 14px rgba(46, 131, 120, 0.12);
  }
}
@media (max-width: 768px) {
  .student-onboarding-section .sof-grid,
  .student-onboarding-section .sof-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .student-onboarding-section .sof-title {
    white-space: normal;
  }
  .student-onboarding-section .sof-pbar-head {
    align-items: center;
    gap: 10px;
  }
  .student-onboarding-section .sof-step-label {
    font-size: 13px;
  }
  .student-onboarding-section .sof-percent {
    font-size: 12px;
    flex: none;
  }
  .student-onboarding-section .sof-step-desc {
    display: none;
  }
  .student-onboarding-section .sof-dot {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .student-onboarding-section .sof-step:not(:last-child)::after {
    top: 19px;
    left: calc(50% + 23px);
    width: calc(100% - 46px);
  }
  .student-onboarding-section .sof-step-name {
    font-size: 12px;
    line-height: 1.25;
  }
  .student-onboarding-section .sof-panels {
    padding: 24px 18px;
  }
  .student-onboarding-section .sof-decl {
    padding: 20px 18px;
  }
  .student-onboarding-section .sof-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .student-onboarding-section .sof-btn {
    padding: 12px 18px;
    font-size: 13.5px;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .student-onboarding-section .sof-name-rest {
    display: none;
  }
}
@media (max-width: 480px) {
  .student-onboarding-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .student-onboarding-section .sof-pbar-head {
    padding-left: 18px;
    padding-right: 18px;
  }
  .student-onboarding-section .sof-track {
    margin-left: 18px;
    margin-right: 18px;
  }
  .student-onboarding-section .sof-steps {
    padding-left: 8px;
    padding-right: 8px;
  }
  .student-onboarding-section .sof-dot {
    width: 34px;
    height: 34px;
    font-size: 13px;
    margin-bottom: 8px;
  }
  .student-onboarding-section .sof-step:not(:last-child)::after {
    top: 17px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
  }
  .student-onboarding-section .sof-step-name {
    font-size: 11px;
  }
  .student-onboarding-section .sof-step.is-skipped::before {
    bottom: -2px;
    font-size: 9px;
    padding: 2px 8px;
  }
  .student-onboarding-section .sof-section-head h3 {
    font-size: 15px;
  }
  .student-onboarding-section .sof-panels {
    padding: 20px 14px;
  }
  .student-onboarding-section .sof-actions {
    gap: 10px;
  }
  .student-onboarding-section .sof-btn {
    flex: 1 1 auto;
    justify-content: center;
    padding: 13px 16px;
    font-size: 13px;
  }
  .student-onboarding-section .sof-btn-back {
    margin-right: 0;
    flex: 0 1 auto;
  }
}

/*# sourceMappingURL=student-onboarding.css.map */
