/* =========================================================
   PREREGISTER - WEB (picker + forms)
   - 좌측 정보패널 + 우측 폼 (모바일: 좌측 숨김 + 하단 고정 CTA)
   - NOTE: 같은 selector가 여러 번 정의되어 엉킨 상태를 "최종값 기준"으로 정리한 버전
   ========================================================= */

/* =========================================================
   0) Section spacing
   ========================================================= */

.pre-web {
  padding: 24px 0 72px;
}

/* WEB 폼 (general/group/buyer 공통)
   - .pre(공통)가 기본 padding을 가지고 있어서, 이중 padding 방지 */
.pre-webForm {
  padding: 0;
}
.pre.pre-webForm {
  padding: 40px 0 78px;
}

/* =========================================================
   1) Picker (type select) page
   ========================================================= */

.pre-web__top {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(
    180deg,
    rgba(var(--pre-accent-rgb), 0.05),
    #fff 54%
  );
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pre-web__badgeRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.pre-web__title {
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin: 0;
}

.pre-web__sub {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.55;
}

.pre-web__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.pre-webChoice {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
  padding: 16px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.pre-webChoice::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pre-accent), var(--pre-accent-3));
  opacity: 0.75;
}

.pre-webChoice:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--pre-accent-rgb), 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

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

.pre-webChoice__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pre-accent);
  box-shadow: 0 0 0 4px rgba(var(--pre-accent-rgb), 0.12);
}

.pre-webChoice__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.pre-webChoice__desc {
  margin: 6px 0 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.5;
  font-size: 14px;
}

.pre-webChoice__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pre-webPill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  color: rgba(0, 0, 0, 0.72);
}

.pre-webPill__i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--pre-accent-rgb), 0.75);
}

.pre-webNote {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(var(--pre-accent-rgb), 0.05);
  border: 1px dashed rgba(var(--pre-accent-rgb), 0.24);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
}

/* Picker extras */
.pre-webChoice__go {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--pre-accent);
  letter-spacing: -0.01em;
}
.pre-webChoice:hover .pre-webChoice__go {
  transform: translateX(2px);
}

.pre-webNote__ico {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--pre-accent-rgb), 0.12);
  color: var(--pre-accent);
  font-weight: 900;
}
.pre-webNote__txt {
  line-height: 1.6;
}

.pre-webSupport {
  margin-top: 16px;
}
.pre-webSupport__card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.pre-webSupport__title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.pre-webSupport__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pre-webSupport__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(var(--pre-accent-rgb), 0.06);
  color: var(--pre-text);
  font-weight: 800;
  text-decoration: none;
}
.pre-webSupport__link:hover {
  border-color: rgba(var(--pre-accent-rgb), 0.42);
  background: rgba(var(--pre-accent-rgb), 0.1);
}
.pre-webSupport__desc {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

/* =========================================================
   2) Form page - Policy (top)
   ========================================================= */

.pre-webPolicy {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  padding: 18px 18px 16px;
  margin: 0 0 16px;
}

.pre-webPolicy__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pre-webPolicy__title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pre-webPolicy__mini {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.62);
}

.pre-webPolicy__body {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.pre-webPolicy__agree {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.pre-webPolicy__agree input {
  margin-top: 3px;
}

/* privacy content blocks (from partial include) */
.pre-policy__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.76);
  line-height: 1.55;
}
.pre-policy__list li {
  margin: 6px 0;
}
.pre-policy__note {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
}
.pre-policy__muted {
  margin: 6px 0 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 12px;
}

/* =========================================================
   3) Form page - 2 column layout (left info + right panel)
   ========================================================= */

.pre-webGrid {
  display: grid;
  grid-template-columns: minmax(320px, 3fr) 7fr;
  gap: 20px;
  align-items: start;
}

/* Left side (sticky) */
.pre-webSide {
  position: sticky;
  top: 86px; /* nav 높이 + 여유 */
}

.pre-webSide__poster {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.pre-webSide__poster img {
  display: block;
  width: 100%;
  height: auto;
}

.pre-webSide__posterFallback {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pre-webSide__body {
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  padding: 16px 16px 8px;
}

.pre-webSide__event {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding-bottom: 15px;
}

.pre-webSide__desc {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.66);
  line-height: 1.55;
}

/* Overview table (simple version) */
.pre-ov {
  margin: 0;
}

.pre-ov__row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pre-ov__row:first-child {
  border-top: 0;
  padding-top: 2px;
}

.pre-ov dt {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.78);
  position: relative;
  padding-left: 14px;
}
.pre-ov dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pre-accent);
  transform: translateY(-50%);
}

.pre-ov dd {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.86);
  line-height: 1.5;
}

.pre-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 12px 0;
}

/* Contact chips */
.pre-webSupportMini {
  padding: 12px 14px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pre-webSupportMini__k {
  flex: 0 0 100%;
  font-weight: 900;
  margin: 0 0 2px;
}

.pre-webSupportMini__a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  margin: 0;
}

.pre-webSupportMini__a:hover {
  border-color: rgba(var(--pre-accent-rgb), 0.42);
  background: rgba(var(--pre-accent-rgb), 0.1);
}

/* Right panel */
.pre-webPanel {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.pre-webPanel__head {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pre-webPanel__title {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.pre-webPanel__sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.55;
}

.pre-webPanel__body {
  padding: 16px 16px 20px;
}

/* =========================================================
   4) Form components (inputs / radios / checks / actions)
   ========================================================= */

.pre-form {
  display: grid;
  gap: 14px;
}

/* WEB: preregister.css의 .pre-form 스타일 무력화 */
.pre-webForm .pre-form {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.pre-fieldset {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px;
}

.pre-fieldset__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-size: 14px;
}

.pre-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pre-grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.pre-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 6px;
}

.pre-req {
  color: #d84a2b;
  margin-left: 4px;
}

.pre-field input[type="text"],
.pre-field input[type="email"],
.pre-field input[type="tel"],
.pre-field input[type="password"],
.pre-field input[type="number"],
.pre-field select,
.pre-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  font-size: 14px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.pre-field textarea {
  min-height: 92px;
  resize: vertical;
}

.pre-field input:focus,
.pre-field select:focus,
.pre-field textarea:focus {
  border-color: rgba(var(--pre-accent-rgb), 0.45);
  box-shadow: 0 0 0 4px rgba(var(--pre-accent-rgb), 0.12);
}

.pre-help {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.45;
}

/* gender radio */
.pre-radioRow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pre-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}
.pre-radio input {
  margin: 0;
}

/* dyn/sample box */
.pre-dyn {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.pre-dyn__hint {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
}

/* DB 마운트: 비어있으면 자동 숨김 */
.pre-dyn:empty {
  display: none;
}

/* checks */
.pre-checkGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pre-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
}

.pre-check input {
  margin: 0;
}

.pre-check span {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.74);
  line-height: 1.35;
}

/* actions */
.pre-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;
}

.pre-btnPrimary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(var(--pre-accent-rgb), 0.3);
  background: linear-gradient(
    180deg,
    rgba(var(--pre-accent-rgb), 0.92),
    rgba(var(--pre-accent-rgb), 0.8)
  );
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.pre-btnPrimary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.pre-btnGhost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.78);
  font-weight: 800;
  text-decoration: none;
}

/* =========================================================
   5) Optional section (disabled)
   - "추가정보(선택)" 섹터는 현재 요구사항 기준으로 사용하지 않음
   ========================================================= */

.pre-opt {
  display: none !important;
}

/* =========================================================
   6) Mobile sticky CTA
   ========================================================= */

.pre-stickyBar {
  display: none;
}

/* =========================================================
   7) Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .pre-web__choices {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .pre-webGrid {
    grid-template-columns: 340px 1fr;
  }
  .pre-webSide {
    top: 76px;
  }
  .pre-checkGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pre-web {
    padding: 18px 0 56px;
  }

  .pre-webSupport__card {
    padding: 16px 14px 14px;
  }
  .pre-webSupport__link {
    width: 100%;
    justify-content: center;
  }

  .pre-webGrid {
    grid-template-columns: 1fr;
  }
  .pre-webSide {
    display: none;
  }

  .pre-webPolicy {
    border-radius: 18px;
    padding: 16px 14px 14px;
  }
  .pre-webPanel__head {
    padding: 16px 14px 10px;
  }
  .pre-webPanel__body {
    padding: 14px;
  }

  .pre-actions {
    display: none;
  }

  .pre-stickyBar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 10px 0 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .pre-stickyBar__inner {
    display: flex;
  }
  .pre-stickyBar__inner .pre-btnPrimary {
    width: 100%;
    justify-content: center;
  }

  .pre-checkGrid {
    grid-template-columns: 1fr;
  }

  .pre-ov__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pre-web__title {
    font-size: 22px;
  }
  .pre-grid2,
  .pre-grid3 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WEB: form control normalize (url/date 등 브라우저 기본 UI로 깨지는 것 정리)
   - group/buyer 포함 preregister.web 톤 통일
   ========================================================= */
.pre-webPanel input[type="text"],
.pre-webPanel input[type="tel"],
.pre-webPanel input[type="email"],
.pre-webPanel input[type="number"],
.pre-webPanel input[type="url"],
.pre-webPanel input[type="password"],
.pre-webPanel input[type="date"],
.pre-webPanel select {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
  font: inherit;
  line-height: 1.2;
  vertical-align: top;
}

/* date는 기본 UI 때문에 높이가 어긋나는 경우가 있어 보정 */
.pre-webPanel input[type="date"] {
  padding-right: 12px; /* 캘린더 아이콘 공간 */
}

/* textarea도 톤 맞추기 */
.pre-webPanel textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 110px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
  font: inherit;
  line-height: 1.35;
  resize: vertical;
}

/* 그리드 아이템 축소 허용(가끔 input이 튀어나오는 것 방지) */
.pre-webPanel .pre-grid2 > * {
  min-width: 0;
}

/* =========================================================
   WEB: 2-col form alignment polish (group/buyer)
   - 한쪽만 help가 있는 경우 행 시작선이 어긋나는 현상 해결
   ========================================================= */

/* 1) 라벨 줄바꿈으로 인풋 시작선이 어긋나는 것 방지 */
.pre-webPanel .pre-field > label,
.pre-webPanel .pre-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 2) help 라인 높이를 “한 줄”로 통일해서 그리드 행 정렬 맞추기 */
.pre-webPanel .pre-help {
  min-height: 16px; /* 한 줄 공간 확보 */
}

/* 3) help가 아예 없는 필드는 가짜 한 줄을 만들어서 좌/우 높이 맞추기
   - Chrome/Whale(크로미움)에서는 :has 지원됨 */
.pre-webPanel .pre-grid2 .pre-field:not(:has(.pre-help))::after {
  content: "";
  display: block;
  height: 16px;
}

/* 4) 그리드 아이템 튀어나옴 방지(특히 긴 placeholder/URL에서 가끔 발생) */
.pre-webPanel .pre-grid2 > * {
  min-width: 0;
}

/* =========================================================
   Preregister: split inputs + date/url/file normalize
   ========================================================= */

.pre-form input[type="url"],
.pre-form input[type="date"],
.pre-form input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--pre-border);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  line-height: 1.2;
  outline: none;
}

.pre-split {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pre-split__dash,
.pre-split__at,
.pre-split__sep {
  color: var(--pre-muted);
  font-size: 14px;
  flex: 0 0 auto;
}

.pre-split input,
.pre-split select {
  min-width: 0;
}

.pre-split--phone select {
  flex: 0 0 92px;
}
.pre-split--phone input {
  flex: 1 1 0;
}

.pre-split--email input {
  flex: 1 1 0;
}
.pre-split--email select {
  flex: 0 0 140px;
}

.pre-split--visit input[type="date"] {
  flex: 1 1 0;
  min-width: 180px;
}
.pre-split--visit select {
  flex: 0 0 88px;
}

.pre-uploadBar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pre-uploadBar input[type="file"] {
  flex: 1 1 auto;
}

.pre-hintNote {
  color: var(--pre-muted);
  font-size: 13px;
  margin: 0 0 12px;
}

.pre-noteList {
  margin: 0;
  padding-left: 18px;
  color: var(--pre-muted);
  font-size: 13px;
  line-height: 1.6;
}

.pre-noteWarn {
  color: #b45309;
}
.pre-noteDanger {
  color: #b91c1c;
}

/* =========================================================
   GROUP PAGE helpers (SmartFarm-compatible)
   ========================================================= */
.pre-form--group .pre-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pre-form--group .pre-inline select {
  width: auto;
  min-width: 84px;
}
.pre-form--group .pre-inline .pre-unit {
  white-space: nowrap;
  font-size: 13px;
  opacity: 0.75;
}
.pre-form--group .pre-uploadRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pre-form--group .pre-uploadActions {
  margin-left: auto;
}
.pre-form--group .pre-noteList {
  margin: 10px 0 0;
  padding-left: 18px;
  line-height: 1.6;
  font-size: 13px;
  opacity: 0.9;
}
.pre-form--group .pre-field--pin input {
  max-width: 280px;
}

.pre-webNote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pre-webNote__txt {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}
.pre-webNote__k {
  flex: 0 0 auto;
  white-space: nowrap;
}
.pre-webNote__v {
  flex: 1 1 auto;
  min-width: 0;
}
