.calc-spinner {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(255,255,255,.7);
}
.calc-spinner img {
  width: 4.8rem;
  height: 4.8rem;
}
.calc-label-hint--desktop {
  display: none !important;
}
.calc-label-hint--mobile {
  display: block;
}
.calc-label-hint {
  display: block;
  margin-left: 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0;
  color: #999;
  opacity: 0;
  transition: opacity .6s ease;
  margin-left: auto;
}
.calc-label-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@keyframes calc-spin {
  to { transform: rotate(360deg); }
}
.calc-inline-loader {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-block;
  vertical-align: middle;
  animation: calc-spin .8s linear infinite;
}

/* ─── Container ─── */
.c {
  max-width: 644px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ─── Form wrapper ─── */
.fw { padding: 32px 0; }
.flds { display: flex; flex-direction: column; gap: 32px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg-r { gap: 12px; }

/* ─── Label (mirrors LabelQuestion: 18px 600) ─── */
.ql {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #2F2F2F;
}

/* ─── Select (mirrors react-select control: inset shadow, 18px) ─── */
select.s {
  width: 100%;
  padding: 16px 44px 16px 12px;
  font-family: inherit;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: inset 0 0 0 1px #E3E3E3;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%232F2F2F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #2F2F2F;
}
select.s:focus { box-shadow: inset 0 0 0 2px #2F2F2F; }
select.s:hover:not(:disabled) { box-shadow: inset 0 0 0 1px #17B0AD; }
select.s:disabled { background-color: #F3F3F3; color: #999; cursor: not-allowed; }

/* ─── Input ─── */
input.n {
  width: 100%;
  padding: 16px 12px;
  font-family: inherit;
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: inset 0 0 0 1px #E3E3E3;
  background: #fff;
  color: #2F2F2F;
}
input.n:focus { box-shadow: inset 0 0 0 2px #2F2F2F; }
input.n::placeholder { color: #737373; }
.val-err { color: #D13C15; font-size: 12px; margin-top: 4px; display: none; }

/* ─── Radio (mirrors RadioList + Option) ─── */
.ropts { display: flex; gap: 12px; }
.ro {
  display: flex;
  align-items: flex-start;
  border: 1px solid #E3E3E3;
  padding: 14px 12px;
  flex: 1;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.ro input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.rm {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #F3F3F3;
  border: 1px solid #999;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
}
.ro:has(input:checked) { border-color: #055A60; background: #EDF9F9; color: #055A60; }
.ro:has(input:checked) .rm { background: #055A60; border-color: #055A60; }
.ro:has(input:checked) .rm::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ─── Buttons (mirrors MainButtons: secondary + primaryBlack) ─── */
.btns { display: flex; gap: 12px; margin-top: 32px; }
.btns button {
  height: 52px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  flex: 1;
  min-width: 128px;
}
/* secondary */
.bb {
  background: #fff;
  color: #181818;
  border: 2px solid #E3E3E3;
}
.bb:hover { border-color: #055A60; color: #055A60; }
/* primaryBlack */
.bc { background: #181818; color: #fff; }
.bc:hover:not(:disabled) { background: #055A60; }
.bc:disabled { background: #78ADB0; cursor: not-allowed; }

/* ─── CalculationSummary (primary10 bg, mt-80px) ─── */
.cs { margin-top: 80px; padding: 48px 0; background: #EDF9F9; }
.csi { display: flex; flex-direction: column; gap: 24px; }
.cs-sep { border-top: 1px solid #D1D1D1; }
.cs-ttl { font-size: 24px; font-weight: 600; line-height: 28px; color: #2F2F2F; margin: 0; }
.cs-plus { font-size: 24px; font-weight: 600; text-align: center; color: #2F2F2F; }

/* AmountSummary card */
.ac { padding: 24px; background: #fff; display: flex; flex-direction: column; gap: 24px; }
.al2 { font-size: 20px; font-weight: 600; line-height: 28px; color: #2F2F2F; }
.av2 { font-size: 56px; font-weight: 700; line-height: 76px; color: #181818; align-self: flex-end; }

/* SubPremium rows (prot only) */
.sr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  margin: 48px 0 24px;
  border-bottom: 1px solid #D1D1D1;
}
.sr:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sl { font-size: 20px; font-weight: 600; line-height: 28px; color: #2F2F2F; }
.sv { font-size: 32px; font-weight: 700; line-height: 44px; color: #055A60; white-space: nowrap; padding: 12px 24px; }

/* ─── MainCalculationResult (teal bar) ─── */
.mr { background: #055A60; padding: 26px 0; }
.mri { display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 12px; }
.mrl { font-size: 20px; font-weight: 600; line-height: 28px; color: #fff; }
.mrv { font-size: 56px; font-weight: 700; line-height: 76px; color: #fff; white-space: nowrap; }

/* ─── AdditionalCalculations ─── */
.aco { display: flex; flex-direction: column; gap: 24px; padding-top: 40px; }
.acttl { font-size: 24px; font-weight: 600; line-height: 28px; color: #2F2F2F; margin: 0; }
.acg {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
}
/* AdditionalCalculation item (H4 primary100 + 48px value) */
.add-item { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.add-item .al { font-size: 20px; font-weight: 600; line-height: 28px; color: #055A60; }
.add-item .av { font-size: 48px; font-weight: 700; line-height: 65px; color: #181818; }

/* ─── Misc ─── */
.hidden { display: none !important; }
.err-box {
  background: #FBEFEC;
  border: 1px solid rgba(209,60,21,.3);
  padding: 12px;
  color: #D13C15;
  margin-top: 24px;
  font-size: 14px;
}
.disclaimer {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #464646;
  padding: 24px 0 40px;
  text-align: justify;
}

/* ─── Subform: Prompt ("lub oblicz ile będziesz potrzebować") ─── */
/* mirrors Prompt.tsx: background primary20 + text + link */
.sf-prompt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 8px;
  background: #DCF3F3;
}
.sf-pt {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #2F2F2F;
}
.sf-pl {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #055A60;
  cursor: pointer;
  text-decoration: underline;
}
.sf-pl:hover { color: #17B0AD; }

/* ─── Subform: Result (SubFormResult.tsx) ─── */
.sf-result { margin-top: 32px; }
.sf-rt {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #2F2F2F;
}
.sf-rv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  border: 1px solid #D1D1D1;
}
.sf-rfv {
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #2F2F2F;
}
.sf-rbw { padding: 8px; flex-shrink: 0; }

/* ─── Subform: Overlay (SumSubForm.tsx — full page) ─── */
.sf-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  overflow-y: auto;
  z-index: 100;
  flex-direction: column;
  margin-bottom: 32px;
}
.sf-overlay:not(.hidden) { display: flex; }

/* Bar = background primary10 */
.sf-bar { background: #EDF9F9; width: 100%; }
.sf-bi {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
/* CancelText: padding 16px 0; grayDark; font 20px 600 */
.sf-ct {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #181818;
}
/* CancelLink: padding 16px 0; bg primary10; link button style */
.sf-cl {
  padding: 16px 0;
  background: #EDF9F9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sf-cl button {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #055A60;
  cursor: pointer;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sf-cl button:hover { color: #17B0AD; }

/* SubFormHeader: bg primary100; centered; padding 24px */
.sf-hdr {
  display: flex;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: #055A60;
}
.sf-hdr-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin: 0;
}

/* Steps: box-shadow elevation2 */
.sf-steps {
  box-shadow: 0px 1px 2px rgba(10,27,56,.08), 0px 2px 4px rgba(10,27,56,.12);
}

/* StepsCounter */
.sf-ctr {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #737373;
  border-bottom: 1px solid #EDEDED;
}

/* SubFormContainer */
.sf-sub { padding: 0 12px; }

/* StepHeader: H4 question */
.sf-sq {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #2F2F2F;
  margin: 0;
}

/* OptionsContainer (isOdd=true for 3 opts: nowrap, space-between) */
.sf-opts {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 12px 0;
  justify-content: space-between;
}

/* Option (isOdd=true: width 100%, gap 16px, centered column) */
.sf-opt {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  text-align: center;
  gap: 16px;
  width: 100%;
  border: 1px solid #D1D1D1;
  user-select: none;
}
.sf-opt:hover { background: #DCF3F3; }
.sf-opt.sel {
  border: 2px solid #17B0AD;
  background: #DCF3F3;
  padding: 15px 11px;
}
.sf-opt input[type=radio] { display: none; }

/* CheckedIcon: absolute teal circle top-right */
.sf-chk {
  display: none;
  position: absolute;
  width: 24px;
  height: 24px;
  right: -11px;
  top: -11px;
  background: #17B0AD;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 1px 2px rgba(10,27,56,.08), inset 0px 2px 4px rgba(10,27,56,.12);
}
.sf-opt.sel .sf-chk { display: flex; }
/* checkmark SVG inside */
.sf-chk::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 6l3 3 6-6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Option icon */
.sf-opt img { width: 60px; height: 60px; object-fit: contain; }

/* OptionLabel: 16px 600 gray100 */
.sf-ol { font-size: 16px; font-weight: 600; line-height: 20px; color: #2F2F2F; }

/* OptionValue: 24px 700 primary100 */
.sf-ov { font-size: 24px; font-weight: 700; line-height: 24px; color: #055A60; }

/* SumContainer */
.sf-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #2F2F2F;
}
.sf-sum-v { color: #055A60; }

/* new design css start here */
.m-b-20 {
  margin-bottom: 2rem;
}
.m-b-24 {
  margin-bottom: 2.4rem;
}
.p-b-24 {
  padding-bottom: 2.4rem;
}
.calc-block {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.calc-box,
.calc-col {
  flex-grow: 1;
  flex-basis: 0;
}
.calc-col {
  min-width: calc(50% - 1rem);
}
.calc-box {
  border: 1px solid #E5EAF0;
  background: #F8FAFC;
  padding: 2.4rem;
}
.calc-box-head {
  border-bottom: 1px solid #E5EAF0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: space-between;
}
.calc-box-head-text {
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: #000000;
}
.calc-box-title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: bold;
  color: #000000;
}
.calc-input-row:last-child {
  margin-bottom: 0;
}
.calc-input-row.border-1 {
  border: 1px solid #E5EAF0;
  background: #fff;
  padding: 2rem;
}
.calc-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 0 0.8rem;
  font-weight: 600;
  color: #000000;
}
.calc-slider-box {
  position: relative;
  display: flex;
  align-items: center;
}
.calc-slider-box .step-btn {
  height: 5.6rem;
  width: 5.6rem;
  border: 1px solid #E5EAF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: #ffffff;
}
.calc-slider-box .step-btn:hover {
  background: #F8FAFC;
  border-color: #D9DFE8;
}
.calc-slider-box .step-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.calc-slider-box .step-btn img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* Prevent selection, tap highlight and image dragging on +/- step buttons */
.calc-slider-box .step-btn,
.calc-slider-box .step-btn img,
.calc-slider-box .step-btn svg {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: manipulation;
}
.range-wrapper {
  flex-grow: 1;
  position: relative;
  padding: 1.2rem 0;
}
.range-wrapper-input {
  width: 100%;
  border: 1px solid #E5EAF0;
  border-left-width: 0;
  border-right-width: 0;
  height: 5.6rem;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 600;
  color: #000;
  gap: 0.4rem;
  cursor: pointer;
}
.range-wrapper input[type="range"] {
  width: 100%;
  height: 3px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 1.125rem;
  left: 0;
}
.range-wrapper input[type="range"]::-webkit-slider-runnable-track {
  height: 6rem;
  background: transparent;
}
.range-wrapper input[type="range"]::-moz-range-track {
  height: 6rem;
  background: transparent;
}
.range-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance:none;
  width:2.3rem;
  height:2.3rem;
  border-radius:50%;
  background:#fff;
  border:0.3rem solid #055A60;
  margin-top: calc((4.3rem - 0.75rem) / 2);
  box-shadow:0 2px 5px rgba(0,0,0,.15);
}
.range-wrapper input[type="range"]::-moz-range-thumb {
  width:2.3rem;
  height:2.3rem;
  border-radius:50%;
  background:#fff;
  border:0.3rem solid #055A60;
}
.calc-input-toggle:last-child {
  margin-bottom: 0;
}
.calc-input-toggle {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 600;
  color: #000000;
}
.calc-switch {
  flex-shrink: 0;
  position: relative;
  width: 4.4rem;
  height: 2.4rem;
}
.calc-switch input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.calc-switch-slider {
  position: absolute;
  inset: 0;
  background: #D9DFE8;
  border-radius: 99rem;
  cursor: pointer;
  box-shadow: 0px 1px 2px 0px #0000000F inset;
  transition: .3s;
}
.calc-switch-slider:before {
  content: "";
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  left: 0.3rem;
  top: 0.3rem;
  background: #ffffff;
  box-shadow: 0px 2px 2px 0px #1819211A;
  border-radius: 50%;
  transition: .3s;
  outline-offset: 2px !important;
}
.calc-switch input:focus + .calc-switch-slider {
  outline: 2px solid #000000;
}
.calc-switch input:checked + .calc-switch-slider {
  background: #055A60;
}
.calc-switch input:checked + .calc-switch-slider:before {
  transform: translateX(2rem);
}
.calc-input-toggle.is-disabled {
  opacity: .4;
  pointer-events: none;
  user-select: none;
}
.hide-item {
  display: none !important;
}
.calc-radio {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.calc-radio.list-rows {
  flex-direction: column;
}
.calc-radio-item {
  position: relative;
  width: calc(50% - 0.4rem);
  background: #FFFFFF;
  border: 1px solid #E5EAF0;
  padding: 1.5rem 1.6rem 1.5rem 5.6rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #000000;
  font-weight: 600;
}
.calc-radio.list-rows .calc-radio-item {
  width: 100%;
}
.calc-radio-item::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 1.6rem;
  margin: auto 0;
  width: 2.8rem;
  height: 2.8rem;
  background-image: url(../img/icon-circle.svg);
  background-size: 100%;
  background-position: center;
}
.calc-radio-item:has(input:checked)::before {
  background-image: url(../img/icon-check-circle.svg);
}
.calc-radio-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.6rem;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.calc-radio-item.is-disabled {
  opacity: 0.45;
  background: #F5F5F5;
  cursor: not-allowed;
  pointer-events: none;
}
.calc-radio-item.is-disabled input {
  cursor: not-allowed;
  pointer-events: none;
}
.calc-row-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
  background: #DCF3F3;
  padding: 0.8rem 0.8rem 0.8rem 1.2rem;
  gap: 1.6rem;
}
.calc-row-box-txt {
  font-size: 1.4rem;
  line-height: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #2F2F2F;
  font-weight: 600;
}
.calc-row-box-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.calc-row-box-txt span {
  display: block;
}
.calc-row-box-txt strong {
  flex-shrink: 0;
  display: block;
  color: #055A60;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.calc-row-box-btn {
  flex-shrink: 0;
}
.calc-row-box-btn .c-btn {
  background: #181818;
  color: #fff;
}
.calc-row-box-btn .c-btn:hover {
  background: #EB5C37;
}
.calc-col-box {
  background: #FFFFFF;
  border: 1px solid #E5EAF0;
  margin-bottom: 4rem;
  padding: 2.4rem;
}
.calc-col-box:last-child {
  margin-bottom: 0;
}
.calc-col-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1rem;
  justify-content: space-between;
}
.calc-col-row:last-child {
  margin-bottom: 0;
}
.calc-col-row span {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.c-tooltip {
  position: relative;
  flex-shrink: 0;
}
.c-tooltip img {
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
  display: block;
}
.c-tooltip-box {
  position: absolute;
  background: #fff;
  border: 1px solid #E5EAF0;
  width: max-content;
  max-width: 26.4rem;
  box-shadow: 0px 20px 24px -8px #1213140A, 0px 24px 32px -12px #1213140A;
  border-radius: 1.2rem;
  padding: 1.2rem;
  left: -1.6rem;
  z-index: 2;
  top: 0;
  transform: translateY(calc(-100% + -8px));
  display: none;
}
.c-tooltip:hover .c-tooltip-box {
  display: block;
}
.c-tooltip-box:after {
  position: absolute;
  content: "";
  left: 1.4rem;
  bottom: -0.8rem;
  width: 2rem;
  height: 0.9rem;
  background-image: url(../img/icon-tail.svg);
}
.c-tooltip-box p {
  font-size: 1.2rem !important;
  line-height: 1.6rem !important;
  margin: 0 !important;
  color: #000000 !important;
}
.calc-col-price {
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: bold;
  color: #000000;
  flex-shrink: 0;
}
.calc-col-price.large {
  color: #EB5C37;
  font-size: 4rem;
  line-height: 4.8rem;
}
.calc-col-box-inner {
  background: #ffffff;
  border: 1px solid #E5EAF0;
  padding: 2rem;
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.calc-col-box-inner:last-child {
  margin-bottom: 0;
}
.calc-col-items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.calc-box-sub-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.calc-box-sub-title {
  margin: 0;
  font-size: 1.37rem;
  line-height: 2.2rem;
  font-weight: bold;
  letter-spacing: -2%;
  color: #000000;
}
.calc-col-item {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid #E5EAF0;
}
.calc-col-item span {
  display: block;
  color: #50576B;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 600;
}
.calc-col-txt {
  margin: 0;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #13151A;
  font-weight: bold;
}
.calc-col-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.calc-col-btn .c-btn,
.calc-form-btn .c-btn {
  padding: 1.6rem 3.6rem !important;
  line-height: 2rem !important;
}
.c-btn-link {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  line-height: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: bold;
  color: #13151A;
}
.c-btn-link:hover {
  text-decoration: underline !important;
}
.c-btn-link:disabled,
.c-btn-link:disabled:hover {
  color: #8f959f;
  cursor: not-allowed;
  text-decoration: none !important;
  opacity: 0.55;
}
.c-btn-link:disabled img {
  opacity: 0.55;
}
.calc-col-link-mobile {
  display: none;
}
.calc-col-info p {
  font-size: 1.1rem;
  line-height: 1.5em;
  color: #464646;
  margin: 0;
}
.calc-col-info a {
  color: #464646;
  text-decoration: underline !important;
}
.calc-col-info a:hover {
  color: #000000;
  text-decoration: none !important;
}
.calc-col-info.is-expanded > *:not(.calc-col-info-expanded) {
  display: none !important;
}
.js-calc-info-collapse {
  display: block;;
}
.pdf-footer .js-calc-info-collapse{
  display: none;
}
.calc-multi {
  content-visibility: initial;
  padding-top: 0 !important;
}
body:has(.calc-form.show) {
  overflow: hidden;
}
.calc-form {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 70rem;
  z-index: 999;
  pointer-events: none;
}
.calc-form.show {
  pointer-events: auto;
}
.calc-form.show::before {
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.calc-form-block {
  position: relative;
  background: #fff;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.calc-form.show .calc-form-block {
  transform: translateX(0);
}
.calc-form-head {
  padding: 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  justify-content: space-between;
}
.calc-form-title {
  position: relative;
  padding-left: 2.8rem;
}
.calc-form-title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 100%;
  background: linear-gradient(180deg, #00AD9D 0%, #005656 100%);
}
.calc-form-title :is(h1,h2,h3,h4,h5,h6) {
  margin: 0;
  font-size: 3rem;
  line-height: 3.6rem;
  letter-spacing: -2%;
  font-weight: 600;
  color: #000000;
}
.calc-form-title p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #000000;
  letter-spacing: -2%;
  margin: 0;
}
.btn-from-close {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  min-width: 2.4rem;
  min-height: 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-from-close img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
.calc-form-body {
  overflow: hidden;
  overflow-y: auto;
  flex-grow: 1;
  padding: 0.2rem 2.4rem 2.4rem;
}
.calc-form-block .form-input {
  margin-bottom: 2.4rem;
}
.calc-form-block .form-control {
  line-height: 5.6rem;
  font-size: 1.8rem;
  padding-left: 2rem;
}
.calc-form-block .calc-input-toggle {
  font-size: 1.6rem;
  line-height: 2rem;
}
.select{
  position: relative;
}
.select-input{
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.custom-select-trigger{
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 2rem;
  height: 5.6rem;
  padding-right: 5.6rem;
  background: #f3fbfb !important;
  border: 1px solid #78adb0 !important;
}
.custom-select-trigger:hover {
  outline: 2px solid #1197df !important;
}
.custom-select-trigger.placeholder{
  color: #757575;
}
.custom-select-trigger::after{
  position: absolute;
  content: "";
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../img/icon-arrow-down.svg);
  background-size: cover;
  background-position: center right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-select-trigger.show::after{
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.custom-options {
  position: absolute;
  background: #fff;
  border-radius: 0rem;
  width: 100%;
  border: 1px solid #E5EAF0;
  display: none;
  z-index: 10;
  max-height: 28rem;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0px 20px 24px -8px #1213140A,
  0px 24px 32px -12px #1213140A;
}
.select-auto .custom-options{
  min-width: 100%;
  width: initial;
}
.custom-option {
  padding: 1.6rem 2rem;
  position: relative;
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: -1%;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #20242B;
  font-weight: 600;
  border-bottom: 1px solid #E5EAF0;
}
.custom-option:last-child {
  border: 0;
}
.custom-option:hover,
.custom-option.selected {
  background-color: #f3fbfb;
  outline: 1px solid #1197df;
}
.calc-form-text {
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: -1%;
  color: #2F2F2F;
  margin-bottom: 1.2rem;
}
.c-chk {
  display: block;
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: -1%;
  color: #2F2F2F;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.c-chk input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.c-chk .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-image: url(../img/icons/checkbox.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.c-chk .checkmark:hover {
  background-image: url(../img/icons/checkbox-hover.svg);
}
.c-chk input:checked ~ .checkmark {
  background-image: url(../img/icons/checkbox-checked.svg);
}
.sticky-btn {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 9;
  background: #055A60;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  width: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0 1.6rem;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  border: 0;
}
.sticky-btn:hover {
  background: #EB5C37;
}
.sticky-btn img {
  transform: rotate(180deg);
  width: 2.4rem;
  height: 2.4rem;
}
.page-break {
  break-before: page;
  page-break-before: always;
}
#pdf {
  width: 1190px;
  min-height: 1684px;
  background: #fff;
  padding: 80px;
  box-sizing: border-box;
  position: absolute;
  left: -9999px;
  top: 0;
  display: flex;
  flex-direction: column;
}
.pdf-logo {
  margin-bottom: 48px;
}
.pdf-logo img {
  width: 105px;
  height: auto;
  display: block;
}
.pdf-title {
  margin: 0 0 64px 0;
  color: #13151A;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
}
.pdf-title strong,
.pdf-title b {
  font-weight: 900;
  color: #EA5C37;
  text-transform: uppercase;
}
.pdf-list {
  background: #FFFFFF;
  border: 1px solid #E5EAF0;
  padding: 24px;
  margin-bottom: 20px;
}
.pdf-list.mb-72 {
  margin-bottom: 72px;
}
.pdf-list.mb-24 {
  margin-bottom: 24px;
}
.pdf-sub-title {
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid #E5EAF0;
}
.pdf-sub-title h4 {
  font-size: 20px;
  line-height: 28px;
  color: #13151A;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.pdf-sub-title p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  color: #000000;
}
.pdf-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E5EAF0;
  padding: 24px 0;
  gap: 2rem;
}
.pdf-list-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.pdf-list-row span {
  display: block;
  font-size: 18px;
  line-height: 32px;
  font-weight: normal;
  color: #000000;
}
.pdf-list-row small {
  display: block;
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.8rem;
  font-weight: normal;
}
.pdf-list-value {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  color: #13151A;
  flex-shrink: 0;
}
.pdf-list-value.large {
  font-size: 40px;
  line-height: 48px;
  color: #EB5C37;
}
.pdf-list,
.pdf-list-row {
  break-inside: avoid;
  page-break-inside: avoid;
}
.pdf-footer {
  margin-top: auto;
  break-inside: avoid;
}
.pdf-footer p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: #464646;
}
.pdf-footer.sm p {
  font-size: 11px;
}
.pdf-list-cols {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.pdf-list-col {
  flex-grow: 1;
  flex-basis: 0;
  padding: 10px;
  border: 1px solid #E5EAF0;
  text-align: center;
}
.pdf-list-col span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #50576B;
}
.pdf-col-value {
  color: #13151A;
  font-size: 20px;
  line-height: 28px;
  display: block;
  font-weight: bold;
}
.pdf-info {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 20px;
  color: #000000;
}
.calc-col-box-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  z-index: 2;
  display: none;
}
.calc-col-box-panel::before {
  /* invisible expanded hit-area around the panel */
  content: "";
  position: absolute;
  top: -4rem;
  left: -4rem;
  right: -4rem;
  bottom: 0;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
}

.calc-col-box-handle {
  width: 3.6rem;
  height: 0.5rem;
  background: #CCCCCC;
  margin: 0.5rem auto 0;
  border-radius: 100rem;
}
.calc-col-mobile-btn {
  display: none;
}
@media (min-width: 960px) and (max-width: 1279.98px) {
  .calc-block {
    gap: 2rem;
  }
  .calc-box {
    padding: 2rem;
  }
  .calc-col-box {
    padding: 2rem;
  }
  .calc-col-price {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .calc-col-price.large {
    font-size: 3rem;
    line-height: 3.8rem;
  }
  .calc-col-row span {
    font-size: 1.3rem;
    line-height: 1.9rem;
  }
  .calc-col-box-inner {
    padding: 1.6rem;
    padding-bottom: 0;
    margin-bottom: 1.6rem;
  }
  .calc-col-items {
    gap: 1.4rem;
  }
  .calc-box-sub-title {
    font-size: 1.3rem;
    line-height: 2.4rem;
  }
  .calc-col-item span {
    font-size: 1.3rem;
  }
  .calc-col-txt {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .calc-col-btn .c-btn {
    padding: 1.6rem 2.4rem !important;
  }
  .c-btn-link {
    font-size: 1.3rem;
  }
  .calc-col-row br {
    display: none;
  }
  .sticky-btn {
    width: 4rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 959.98px) {
  .calc-block {
    gap: 1rem;
  }
  .calc-box {
    padding: 1.6rem;
  }
  .calc-box-title {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .calc-col-box {
    padding: 1.6rem;
  }
  .calc-col-row span {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .calc-col-price {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .calc-col-price.large {
    font-size: 3rem;
    line-height: 3.8rem;
  }
  .calc-col-box-inner {
    padding: 1.4rem;
    padding-bottom: 0;
    margin-bottom: 1.4rem;
  }
  .calc-box-sub-title {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
  .calc-col-items {
    gap: 1rem;
  }
  .calc-col-item span {
    font-size: 1.3rem;
  }
  .calc-col-txt {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .calc-radio-item {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .calc-row-box-info {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .calc-col-row br {
    display: none;
  }
  .sticky-btn {
    width: 4rem;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
@media(max-width:767px) {
  .p-b-24 {
    padding-bottom: 2.4rem;
  }
  .m-b-24 {
    margin-bottom: 2rem;
  } 
  .calc-block {
    display: block;
  } 
  .calc-box {
    border: 0;
    background: transparent;
    padding: 0;
    margin-bottom: 6rem;
  }
  .calc-box:last-child {
    margin-bottom: 0;
  }
  .calc-box-title {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .calc-box-head {
    border-bottom: 0;
    padding: 0;
  }
  .calc-input-toggle {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .calc-col-link-mobile {
    display: block;
    text-align: center;
    margin-bottom: 4rem;
  }
  .calc-col-link-mobile .c-btn-link {
    margin: 0 auto;
  } 
  .calc-col-link .c-btn-link {
    display: none;
  }
  .calc-col-box {
    background: #fff;
    border: 0;
    top: 0;
    margin-bottom: 0;
    padding: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    border-radius: 3.8rem 3.8rem 0 0;
    box-shadow: 0px 15px 75px 0px #0000002E;
    max-height: 100vh;
    max-height: 100dvh;
    /* overflow: hidden; */
    will-change: transform;
    transition: transform .3s ease;
  }
  body:has(.l-header__nav.is-active) .calc-col-box {
    z-index: 99;
  }
  .calc-col-box.expanded {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .calc-col-box.is-loading {
    visibility: hidden;
    opacity: 0;
  }
  .calc-col-box.is-loading .calc-spinner {
    display: flex;
  }
  .calc-col-box-top {
    padding: 3.8rem 1rem 5.7rem;
  }
  .calc-col-box-top
  .calc-col-box.expanded .calc-col-box-top,
  .calc-col-box.is-dragging .calc-col-box-top {
    padding-bottom: 4rem;
  }
  .calc-col-box-panel {
    display: block;
  }
  .calc-col .calc-box-head,
  .calc-box-sub-head,
  .calc-col-items {
    display: none;
  }
  .calc-col-box-top .calc-col-rows {
    margin-bottom: 0;
  }
  .calc-col-box-top {
    transition: max-height .35s ease, opacity .35s ease, padding .35s ease, margin .35s ease;
    /* overflow: hidden; */
    max-height: 1000px;
  }
  .calc-col-box-top.rows-hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .calc-col-row span {
    font-size: 1.2rem;
  }
  .calc-col-price {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .calc-col-price.large {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .calc-col-box-inner {
    background: transparent;
    border: 0;
    padding: 0;
    display: none;
  }
  .calc-col-bottom {
    display: none;
  }
  .calc-col-box.expanded .calc-col-bottom {
    display: none;
  }
  .calc-col-btn .c-btn, 
  .calc-form-btn .c-btn {
    width: 100%;
  }
  body:has(.calc-form.show) .calc-col-btn .c-btn {
    display: none;
  }
  .calc-form.show::before {
    content: none;
  }
  .calc-form {
    position: initial;
    right: 0;
    max-width: 100%;
    display: block;
    padding: 0 2rem 2rem;
    pointer-events: initial;
  }
  .calc-form-block {
    height: initial;
    transform: translateX(0);
  }
  .calc-form-head {
    padding: 0 0 2rem;
  }
  .calc-form-title :is(h1,h2,h3,h4,h5,h6) {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .calc-form-title p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .calc-form-body {
    padding: 0;
    overflow: initial;
  }
  .btn-from-close {
    position: absolute;
    top: 0;
    right: 0;
  }
  .calc-col-row .c-tooltip img {
    width: 1.6rem;
    height: 1.6rem;
  }
  .calc-input-row.border-1 {
    background: #F8FAFC;
    padding: 1.6rem;
  }
  .calc-row-box {
    gap: 1.6rem;
  }
  .calc-row-box-txt {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .calc-row-box-info {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .calc-row-box-txt strong {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .calc-col-row .c-tooltip-box {
    top: 2.4rem;
    transform: none;
  }
  .calc-col-row .c-tooltip-box:after {
    left: 1.2rem;
    top: -0.8rem;
    bottom: auto;
    transform: rotate(180deg);
  }
  .calc-col-row br {
    display: none;
  }
  .sticky-btn {
    display: none;
  }
  .btn-from-close {
    display: none;
  }
  .calc-form-body form {
    display: block;
    margin-bottom: 0;
  }
  .calc-col-mobile-btn {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    padding: 0.5rem 2rem;
    background: #fff;
    paddting-top: 0rem;
  }
  body:has(.calc-col-box.expanded) .calc-col-mobile-btn {
    display: none;
  }
  body:has(.l-header__nav.is-active) .calc-col-mobile-btn {
    z-index: 99;
  }
  .calc-col-mobile-btn .c-btn {
    width: 100%;
    padding: 1.6rem 3.6rem !important;
    line-height: 2rem !important;
  }
  .calc-col-box.expanded .calc-col-box-top{
    padding-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .calc-col-box:not(.expanded) .calc-col-row .c-tooltip-box.top {
    top: auto;
    bottom: calc(100% + 0.8rem);
    left: -1.2rem;
    transform: none;
    z-index: 1003;
  }

  .calc-col-box:not(.expanded) .calc-col-row .c-tooltip-box.top::after {
    top: auto;
    bottom: -0.8rem;
    transform: none;
  }

  .calc-col-box .calc-col-row span:hover .c-tooltip-box  {
    display: block;
  }
  .calc-col-box-top.rows-hidden ~ #calcForm{
    min-height: calc(100% + 1px);
  }
  .calc-col-box-top.rows-hidden ~ #calcForm .calc-form-head {
    margin-top: 2rem;
  }
  .calc-col-box:not(.expanded) .c-tooltip-box {
    max-width: 36.4rem;
  }
  #calcChildErrBox,
  #calcPensErrBox,
  #calcErrBox,
  #calcSavErrBox {
    top: 2rem;
    position: absolute;
  }
  .calc-col-row {
    margin-bottom: 0.3rem;
  }
}
#pdfProtInfo > p {
  display: block !important;
}
/* new design css end here */