/* ================================================================
   WIDGET.CSS — Paris Prestige Drive — Modern Premium Design
   ================================================================ */

/* ─── Layout ──────────────────────────────────────────────────── */
.widgetLayout{
  display: grid !important;
  grid-template-columns: 1.35fr .65fr !important;
  gap: 18px !important;
  align-items: start;
}
.widgetLayout > aside{
  position: sticky;
  top: 18px;
  height: fit-content;
}
@media (max-width: 980px){
  .widgetLayout{ grid-template-columns: 1fr !important; }
  .widgetLayout > aside{ position: static !important; top: auto !important; }
}
@media (max-width: 860px){
  .widgetLayout{ display: block !important; }
  aside.card.sticky{ position: static !important; top: auto !important; }
}

/* ─── Card body ───────────────────────────────────────────────── */
.card .body{ padding: 20px !important; }
.grid{ gap: 12px !important; }

/* ─── Topbar override ─────────────────────────────────────────── */
.topbar-inner{
  max-width: none !important;
  margin: 0 !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.brand{ margin-left: 0 !important; }
@media (min-width: 900px){
  .topbar-inner{ padding-left: 12px !important; padding-right: 12px !important; }
}

/* ─── Typography ──────────────────────────────────────────────── */
.bigTitle{
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.3px;
  margin: 0 0 4px 0;
  background: linear-gradient(135deg, #fff 60%, rgba(212,175,55,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subTitle{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
#panel1 label{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  display: block;
  margin-bottom: 6px;
  letter-spacing: .02em;
}

/* ─── 2-step progress bar ────────────────────────────────────── */
.wProgressWrap{
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 20px;
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.wProgressStep{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  opacity: .40;
  transition: opacity .25s;
}
.wProgressStep.wStepActive{ opacity: 1; }
.wProgressStep.wStepDone{ opacity: .85; }
.wProgressStep.wStepDone .wProgressCircle{
  background: rgba(74,222,128,.90);
  color: #0a1a0a;
}
.wProgressStep.wStepDone .wProgressCircle::after{
  content: '✓';
}
.wProgressCircle{
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.70);
  font-size: 14px;
  font-weight: 900;
  display: grid;
  place-items: center;
  transition: background .25s, border-color .25s, color .25s;
}
.wProgressStep.wStepActive .wProgressCircle{
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(168,134,43,.90));
  border-color: transparent;
  color: #111;
  box-shadow: 0 2px 10px rgba(212,175,55,.30);
}
.wProgressText{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wProgressMain{
  font-size: 14px;
  font-weight: 850;
  color: rgba(255,255,255,.95);
  line-height: 1.1;
}
.wProgressSub{
  font-size: 11px;
  color: rgba(255,255,255,.50);
  letter-spacing: .02em;
}
.wProgressLine{
  flex: 1;
  height: 1px;
  margin: 0 14px;
  background: linear-gradient(90deg, rgba(212,175,55,.35), rgba(255,255,255,.08), rgba(212,175,55,.15));
}
/* wCircleGold — used in panel2 header */
.wCircleGold{
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(168,134,43,.90)) !important;
  border-color: transparent !important;
  color: #111 !important;
  box-shadow: 0 2px 10px rgba(212,175,55,.30);
}

/* ─── Panel 2 header ──────────────────────────────────────────── */
.wPanel2Header{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 22px;
}
.wPanel2Title{
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.2px;
  color: #fff;
}
.wPanel2Sub{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}

/* ─── Route connector (middle column) ────────────────────────── */
.routeMid{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px; /* aligns with the select field (after label ~22px) */
  pointer-events: none;
}
.routeDotTop, .routeDotBottom, .routeMidLine{ display: none; }
.routeMidArrow{
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: rgba(212,175,55,.85);
}
@media (max-width: 980px){
  .routeMid{ display: none !important; }
}

/* ─── Date/time/pax full-width row ───────────────────────────── */
.dateTimeRow{
  margin-top: 18px !important;
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
}

/* ─── tripGrid with centre connector column ──────────────────── */
.tripGrid{
  display: grid !important;
  grid-template-columns: 1fr 28px 1fr !important;
  gap: 0 12px !important;
  align-items: start;
}
.tripGrid .colL,
.tripGrid .colR{ min-width: 0; }
@media (max-width: 980px){
  .tripGrid{
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .dateTimeRow{ margin-top: 14px !important; }
}

/* ─── Step badges (numbered flow indicator) ──────────────────── */
.stepBadge{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.stepNum{
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(168,134,43,.90));
  color: #111;
  font-size: 12px;
  font-weight: 1000;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(212,175,55,.25);
}
.stepLabel{
  font-size: 13px;
  font-weight: 850;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ─── Section header (step badge style) ──────────────────────── */
.sectionHeader{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.25);
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.04));
  margin: 14px 0 16px;
}
.sectionHeader .txt{ min-width: 0; }
.sectionHeader .t{
  font-weight: 900;
  font-size: 14px;
  line-height: 1.15;
  color: #fff;
}
.sectionHeader .d{
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.2;
}
.sectionHeader.compact{ margin-bottom: 14px; }
#asideVehicles .sectionHeader.compact,
#asideSummary .sectionHeader.compact{ margin-top: 4px; }
#asideVehicles, #asideSummary{ padding-top: 14px; }

/* ─── Fields ──────────────────────────────────────────────────── */
.field, .fieldW{
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,.055);
  border: 1.5px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px 16px;
  color: rgba(255,255,255,.92);
  outline: none;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  line-height: normal;
}
.field:focus, .fieldW:focus{
  border-color: rgba(212,175,55,.65);
  box-shadow: 0 0 0 3px rgba(212,175,55,.10);
  background: rgba(255,255,255,.075);
}
input.field, input.fieldW,
textarea.field, textarea.fieldW{
  padding: 14px 16px;
}
select.field, select.fieldW{
  height: 52px;
  padding: 0 44px 0 16px;
  line-height: normal;
  cursor: pointer;
}
select:invalid{ color: rgba(255,255,255,.40); }
select option{ background: #1a1c24; color: #fff; }
select.field{ color: #fff !important; -webkit-text-fill-color: #fff !important; }
select.fieldW{ color: #fff !important; -webkit-text-fill-color: #fff !important; }
input.field, input.fieldW, textarea.field{
  color: #fff; -webkit-text-fill-color: #fff;
}
.bigField{
  height: 52px !important;
  font-size: 15px !important;
}
select.bigField{ padding-right: 44px; }
.field, .fieldW{ min-width: 0; }

/* ─── Field group / Grids ─────────────────────────────────────── */
.fieldGroup{ margin-bottom: 14px; }

.tripGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 980px){ .tripGrid{ grid-template-columns: 1fr; } }

.mini3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 700px){ .mini3{ grid-template-columns: 1fr; } }

.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}
.full{ grid-column: 1 / -1; }
#w_routeGrid .full{ grid-column: 1 / -1; }

@media (max-width: 640px){
  .grid{ grid-template-columns: 1fr !important; gap: 14px; }
  .grid .full{ grid-column: 1 / -1; }
  .mini3{ grid-template-columns: 1fr !important; gap: 14px; }
  .actionsRow{ display: grid; grid-template-columns: 1fr; gap: 10px; }
  .actionsRow .btn{ width: 100%; }
}

/* ─── Vehicle section header ──────────────────────────────────── */
.vehHeaderW{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.vehTitleW{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.2px;
  color: #fff;
}
.vehDescW{
  margin-top: 4px;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  font-size: 13px;
}
.vehPillW{
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.30);
  background: rgba(212,175,55,.08);
  color: rgba(255,255,255,.90);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
#vehicleSection .rowW{ display: flex; width: 100%; }
#vehicleSection .vehHeaderW{ width: 100%; }
@media (max-width: 700px){
  .vehHeaderW{ flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }
  .vehTitleW{ font-size: 18px !important; line-height: 1.15 !important; max-width: 100% !important; white-space: normal !important; }
  .vehDescW{ max-width: 100% !important; white-space: normal !important; }
  .vehPillW{ width: 100% !important; white-space: normal !important; line-height: 1.25 !important; padding: 10px 14px !important; }
  .vehPillW b{ white-space: nowrap; }
  #vehicleSection .vehTitleW,
  #vehicleSection .vehDescW{ max-width: 100%; white-space: normal; }
  #vehicleSection .vehPillW{ width: 100%; white-space: normal; line-height: 1.25; }
  #vehicleSection .vehPillW b{ white-space: nowrap; }
}

/* ─── Vehicle cards grid ──────────────────────────────────────── */
.vehGridW{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
#vehicleSection .vehGridW{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (min-width: 1200px){ #vehicleSection .vehGridW{ grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 980px){
  .vehGridW{ grid-template-columns: 1fr; }
  #vehicleSection .vehGridW{ grid-template-columns: 1fr; }
  .vehCardW{ min-height: 200px; }
}
@media (max-width: 900px){
  .vehGridW{ grid-template-columns: 1fr; }
  .vehCardW{ min-height: 200px; }
}

/* ─── Vehicle card ────────────────────────────────────────────── */
.vehCardW{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  padding: 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,.09);
  background: linear-gradient(160deg, rgba(255,255,255,.055) 0%, rgba(0,0,0,.20) 100%);
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
  color: #fff !important;
}
.vehCardW::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.03), transparent 60%);
  pointer-events: none;
}
.vehCardW:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(0,0,0,.22) 100%);
}
.vehCardW.active{
  border-color: rgba(212,175,55,.70);
  box-shadow: 0 0 0 3px rgba(212,175,55,.14), 0 8px 32px rgba(0,0,0,.30);
  background: linear-gradient(160deg, rgba(212,175,55,.10) 0%, rgba(0,0,0,.22) 100%);
}
.vehCardW.error{
  border-color: rgba(255,90,90,.75) !important;
  box-shadow: 0 0 0 3px rgba(255,90,90,.18) !important;
}

/* Card interior */
.vehTopW{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
}
.vehNameW{
  font-weight: 950;
  font-size: 16px;
  line-height: 1.15;
  color: #fff;
}
.vehSubW{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.3;
  max-width: 18ch;
  color: rgba(255,255,255,.62);
}
.vehCardW .vehNameW,
.vehCardW .name{ color: rgba(255,255,255,.95) !important; }
.vehCardW .vehSubW,
.vehCardW .sub{ color: rgba(255,255,255,.60) !important; }

/* Gold badge */
.vehBadgeW{
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 900;
  font-size: 12.5px;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(212,175,55,.95), rgba(168,134,43,.95));
  color: #111;
  border: none;
  letter-spacing: .01em;
}
.vehCardW.active .vehBadgeW{
  background: linear-gradient(135deg, #d4af37, #c49b2a);
  box-shadow: 0 2px 8px rgba(212,175,55,.30);
}

/* Car image */
.vehImgW{
  width: 100%;
  height: 90px;
  max-height: 105px;
  object-fit: contain;
  margin-top: 12px;
  opacity: .95;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.40));
  transition: opacity .2s, transform .2s;
}
.vehCardW:hover .vehImgW{ opacity: 1; transform: scale(1.02); }
.vehCountW{
  margin-top: 10px;
  font-weight: 800;
  font-size: 14px;
  opacity: .9;
}
.vehCardW .roundBtn,
.vehCardW .vehMinusBtn,
.vehCardW .vehPlusBtn{
  position: absolute;
  top: 14px;
  right: 14px;
}

/* ─── Custom / group vehicle panel ───────────────────────────── */
.customPanelW{
  border: 1.5px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 16px;
}
.vehCustomGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
@media (max-width: 900px){ .vehCustomGrid{ grid-template-columns: 1fr; } }
.vehCustomCard{
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.07);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
}
.vehCustomCard .vehImgW{ height: 110px; width: 100%; object-fit: contain; margin: 12px 0; }
.vehQtyLabel{ margin-top: 6px; font-size: 13px; opacity: .8; }
.vehQtyInput{ width: 100%; max-width: 120px; text-align: center; margin-top: 4px; }
.vehUnitPrice{ margin-top: auto; padding-top: 10px; font-size: 14px; opacity: .9; }

/* Legacy custom panel (inline custom inputs) */
#vehCustom.active .customGrid{ display: grid; gap: 10px; margin-top: 10px; }
#vehCustom.active .customRow{ display: flex; align-items: center; justify-content: space-between; gap: 12px; }
#vehCustom.active .stepperNum{ display: flex; align-items: center; gap: 8px; }

/* Legacy .vehCard (non-W) */
.vehCard.active,
#vehCustom.active{
  border-color: rgba(214,170,60,.9);
  box-shadow: 0 0 0 2px rgba(214,170,60,.25);
}
.vehCard.active .vehName,
#vehCustom.active .vehName{ color: #d6aa3c; }
.vehCard.active .badge,
#vehCustom.active .badge{
  background: rgba(214,170,60,.18);
  border: 1px solid rgba(214,170,60,.35);
  color: #d6aa3c;
}

/* ─── Vehicle error ───────────────────────────────────────────── */
#vehicleError, #customError{
  border: 1px solid rgba(255,92,92,.35);
  background: rgba(255,92,92,.10);
  color: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
}
#vehicleSection{ width: 100%; }

/* ─── Kids / child seats ──────────────────────────────────────── */
.kids2col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px){ .kids2col{ grid-template-columns: 1fr; } }
@media (max-width: 640px){ .kids2col{ grid-template-columns: 1fr !important; gap: 14px; } }

.kidsCol{
  border: 1.5px solid rgba(255,255,255,.09);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(0,0,0,.16));
  border-radius: 18px;
  padding: 16px;
}
.kidsColTitle{
  font-weight: 850;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.90);
  letter-spacing: .01em;
}

/* ─── Quote bar ───────────────────────────────────────────────── */
.quoteBar{
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  border: 1.5px solid rgba(212,175,55,.30);
  background: linear-gradient(160deg, rgba(212,175,55,.11) 0%, rgba(0,0,0,.30) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quoteBar::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.50), transparent);
}
.quoteTop{ display: flex; flex-direction: column; gap: 6px; }
.quoteLabel{
  color: rgba(255,255,255,.60);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.quoteValue{
  color: #fff;
  font-weight: 1000;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.5px;
  background: linear-gradient(135deg, #fff 50%, rgba(212,175,55,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quoteNote{
  color: rgba(255,255,255,.55);
  font-weight: 600;
  font-size: 13px;
}
.quoteBtn{
  width: 100%;
  height: 52px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* ─── Summary aside ───────────────────────────────────────────── */
.sumList{ display: flex; flex-direction: column; gap: 10px; }
.sumRow{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
}
.sumRow .label{ font-size: 12px; opacity: .65; font-weight: 800; line-height: 1.2; }
.sumRow .value{ font-size: 12.5px; font-weight: 800; line-height: 1.3; word-break: break-word; overflow-wrap: anywhere; }

/* ─── Segmented buttons ───────────────────────────────────────── */
.segBtn.active{
  background: linear-gradient(180deg, rgba(212,175,55,.95), rgba(168,134,43,.95));
  color: #161616;
}

/* ─── Actions row ─────────────────────────────────────────────── */
.actionsRow{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.actionsRow .btn{ min-width: 160px; }

/* ─── Error block ─────────────────────────────────────────────── */
.error{
  display: block;
  background: rgba(255,77,77,.12);
  border: 1px solid rgba(255,77,77,.40);
  color: #ff9999;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 13.5px;
}

/* ─── Confirm modal ───────────────────────────────────────────── */
.confirmModal{
  width: min(520px, 100%);
  background: rgba(16, 20, 28, 0.97);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.60);
  padding: 24px 22px 18px;
  text-align: center;
}
.confirmIcon{ font-size: 36px; margin-bottom: 8px; }
.confirmModal h2{ margin: 6px 0 10px; }
.confirmTxt{ margin: 0 0 16px; color: rgba(255,255,255,.80); line-height: 1.4; }
.confirmActions{ display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.confirmHint{ margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── Policy card ─────────────────────────────────────────────── */
.policyCard{
  margin-top: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.policyList{
  list-style: disc;
  margin: 10px 18px 16px 34px;
  padding: 0;
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
  line-height: 1.4;
}
.policyList li{ margin: 10px 0; }
.policyList b{ color: #fff; font-weight: 800; }

/* ─── Date/time placeholder overlay (from inline style) ───────── */
/* (kept here as fallback — inline <style> in widget.html takes precedence) */
.dateInputWrap{ position: relative; }
.fieldPlaceholder{
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 16px;
  pointer-events: none;
  color: rgba(255,255,255,.38);
  font-size: 15px;
  font-family: inherit;
  background: rgba(255,255,255,.055);
  border: 1.5px solid rgba(255,255,255,.10);
  border-radius: 14px;
  z-index: 2; gap: 8px;
  white-space: nowrap; overflow: hidden;
}
.fieldPlaceholder svg{ flex-shrink: 0; opacity: .5; }
.dateInputWrap.has-value .fieldPlaceholder{ display: none; }
.dateInputWrap:focus-within .fieldPlaceholder{ display: none; }
.dateInputWrap:not(.has-value) input[type="date"],
.dateInputWrap:not(.has-value) input[type="time"]{
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  caret-color: transparent !important;
}
.dateInputWrap:focus-within input[type="date"],
.dateInputWrap:focus-within input[type="time"]{
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  caret-color: inherit !important;
}
