/* GVision calculator wizard */

body #calculator [data-gvision-calculator] {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
  gap: 18px !important;
  align-items: start !important;
  transition: grid-template-columns 0.65s ease, gap 0.65s ease !important;
}

body #calculator .gv-wizard-main,
body #calculator .gv-wizard-summary {
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(18px);
}

body #calculator .gv-wizard-main {
  min-width: 0;
  width: 100%;
  padding: 22px;
}

body #calculator .gv-wizard-summary {
  position: sticky;
  top: 104px;
  min-width: 0;
  width: 100%;
  max-width: 360px;
  padding: 18px;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.65s ease,
    max-width 0.65s ease,
    width 0.65s ease,
    padding 0.65s ease,
    border-width 0.65s ease;
}

body #calculator .gv-wizard-summary .gv-calc-cta {
  display: none !important;
}

body #calculator .gv-wizard-top {
  margin-bottom: 18px;
}

body #calculator .gv-wizard-top h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

body #calculator .gv-wizard-top p:not(.gv-eyebrow) {
  color: #a8b7cc;
  line-height: 1.7;
  font-weight: 600;
}

body #calculator .gv-wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

body #calculator .gv-wizard-steps span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.46);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
}

body #calculator .gv-wizard-steps span.is-active {
  border-color: rgba(56, 189, 248, 0.52);
  background: rgba(56, 189, 248, 0.14);
  color: #e0f2fe;
}

body #calculator .gv-wizard-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body #calculator .gv-wizard-topic {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 0%, rgba(56, 189, 248, 0.16), transparent 14rem),
    rgba(2, 6, 23, 0.5);
  color: #f8fafc;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

body #calculator .gv-wizard-topic:hover {
  border-color: rgba(56, 189, 248, 0.58);
  transform: translateY(-1px);
}

body #calculator .gv-wizard-topic strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 8px;
}

body #calculator .gv-wizard-topic span {
  color: #94a3b8;
  font-weight: 800;
}

body #calculator .gv-wizard-slider-wrap {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
}

body #calculator .gv-wizard-slider {
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 14px;
  cursor: grab;
  scrollbar-width: thin;
}

body #calculator .gv-wizard-slider.is-dragging {
  cursor: grabbing;
}

body #calculator .gv-wizard-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.92);
  color: #e0f2fe;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body #calculator .gv-wizard-product {
  flex: 0 0 240px;
  min-height: 215px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.5);
  color: #f8fafc;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

body #calculator .gv-wizard-product:hover {
  border-color: rgba(56, 189, 248, 0.58);
  transform: translateY(-1px);
}

body #calculator .gv-wizard-product img,
body #calculator .gv-wizard-product .gv-calc-placeholder {
  width: 100%;
  height: 92px;
  min-height: 92px;
  max-height: 92px;
  display: grid;
  place-items: center;
  object-fit: contain;
  padding: 9px;
  border-radius: 15px;
  background: #f8fafc;
  color: #0284c7;
  font-weight: 900;
}

body #calculator .gv-wizard-product small {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  color: #bae6fd;
  font-size: 11px;
  font-weight: 900;
}

body #calculator .gv-wizard-product strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}

body #calculator .gv-wizard-skip {
  align-items: center;
  justify-content: center;
  text-align: center;
}

body #calculator .gv-wizard-no-icon {
  width: 74px;
  height: 74px;
  display: block;
  border: 3px solid rgba(148, 163, 184, 0.42);
  border-radius: 50%;
  position: relative;
}

body #calculator .gv-wizard-no-icon::after {
  content: "";
  position: absolute;
  width: 94px;
  height: 3px;
  left: -12px;
  top: 35px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.72);
  transform: rotate(-35deg);
}

body #calculator .gv-wizard-number-card,
body #calculator .gv-wizard-final {
  padding: 20px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.5);
}

body #calculator .gv-wizard-number-card h3,
body #calculator .gv-wizard-final h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

body #calculator .gv-wizard-number-card p {
  color: #a8b7cc;
  line-height: 1.6;
}

body #calculator .gv-wizard-number-card label {
  max-width: 260px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

body #calculator .gv-wizard-number-card input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.64);
  color: white;
  padding: 0 14px;
  font: inherit;
  outline: none;
}

body #calculator .gv-wizard-next {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

body #calculator .gv-wizard-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body #calculator .gv-wizard-summary-head h3 {
  margin: 0;
  font-size: 22px;
}

body #calculator .gv-wizard-summary-head button {
  min-height: 38px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: #dbeafe;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

body #calculator .gv-wizard-picked-list,
body #calculator .gv-wizard-totals {
  display: grid;
  gap: 10px;
}

body #calculator .gv-wizard-picked {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

body #calculator .gv-wizard-picked strong {
  color: #f8fafc;
}

body #calculator .gv-wizard-picked span {
  color: #94a3b8;
  font-size: 13px;
}

body #calculator .gv-wizard-totals {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

body #calculator .gv-wizard-totals div,
body #calculator .gv-wizard-final div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body #calculator .gv-wizard-totals span,
body #calculator .gv-wizard-final span {
  color: #a8b7cc;
  font-weight: 700;
}

body #calculator .gv-wizard-totals strong,
body #calculator .gv-wizard-final strong {
  color: #f8fafc;
}

body #calculator .gv-wizard-grand {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(125, 211, 252, 0.18);
}

body #calculator .gv-wizard-grand strong {
  color: #7dd3fc;
  font-size: 26px;
}

body #calculator .gv-calc-cta,
body #request .gv-request-form button[type="submit"] {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #22c55e, #0284c7);
  color: white;
  text-align: center;
  font-weight: 900;
  cursor: pointer;
}

body #calculator .gv-wizard-product,
body #calculator .gv-wizard-topic,
body #calculator .gv-wizard-next,
body #calculator .gv-wizard-arrow {
  pointer-events: auto;
  cursor: pointer;
}

body #calculator .gv-wizard-product > *,
body #calculator .gv-wizard-topic > * {
  pointer-events: none;
}

body #calculator [data-gvision-calculator].is-wizard-final {
  grid-template-columns: minmax(0, 1fr) 0 !important;
  gap: 0 !important;
}

body #calculator [data-gvision-calculator].is-wizard-final .gv-wizard-summary {
  opacity: 0 !important;
  transform: translateX(24px) scale(0.96) !important;
  max-width: 0 !important;
  width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-width: 0 !important;
  pointer-events: none !important;
}

body #calculator [data-gvision-calculator].is-wizard-final .gv-wizard-main,
body #calculator [data-gvision-calculator].is-wizard-final .gv-wizard-final {
  width: 100% !important;
  max-width: 100% !important;
}

/* Request form calculation preview */

body #request .gv-request-calculation-preview {
  margin-top: 8px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.46);
  color: #e2e8f0;
  max-height: 132px;
  overflow: auto;
}

body #request .gv-request-calculation-preview strong {
  display: block;
  margin-bottom: 8px;
  color: #7dd3fc;
  font-size: 13px;
}

body #request .gv-request-calculation-lines {
  display: grid;
  gap: 5px;
}

body #request .gv-request-calculation-lines span {
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: #dbeafe;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body #request [data-status-type="success"] {
  color: #86efac !important;
}

body #request [data-status-type="error"] {
  color: #fca5a5 !important;
}

body #request [data-status-type="loading"] {
  color: #7dd3fc !important;
}

/* Request panel layout */

body #request .gv-request-panel {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.12fr) !important;
  align-items: start !important;
  gap: 38px !important;
}

body #request .gv-request-panel > div:first-child {
  align-self: start !important;
  padding-top: 28px !important;
  min-height: 0 !important;
}

body #request .gv-request-panel > div:first-child h2 {
  margin-top: 16px !important;
  margin-bottom: 14px !important;
  max-width: 380px !important;
}

body #request .gv-request-panel > div:first-child p:not(.gv-eyebrow) {
  max-width: 390px !important;
  line-height: 1.65 !important;
}

body #request .gv-request-form {
  align-self: start !important;
  gap: 12px !important;
}

/* Date range picker */

body #request .gv-date-range-field {
  display: grid;
  gap: 14px;
  margin: 8px 0 10px;
}

body #request .gv-date-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

body #request .gv-date-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 16px;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  font-size: 22px;
  font-weight: 900;
}

body #request .gv-date-section-head strong {
  display: block;
  color: #f8fafc;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

body #request .gv-date-section-head p {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 800;
}

body #request .gv-date-selected-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  width: 100%;
}

body #request .gv-date-selected-box {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.72);
}

body #request .gv-date-selected-box span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 950;
}

body #request .gv-date-selected-box strong {
  display: block;
  color: #f8fafc;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

body #request .gv-date-range-picker {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 26px;
  background: #020617;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(2, 6, 23, 0.24);
}

body #request .gv-date-picker-head {
  width: 100%;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

body #request .gv-date-picker-head strong {
  width: 100%;
  display: block;
  text-align: center;
  color: #f8fafc;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

body #request .gv-date-picker-head button {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #38bdf8 !important;
  font-size: 38px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

body #request .gv-date-picker-head button[data-date-prev] {
  justify-self: start;
}

body #request .gv-date-picker-head button[data-date-next] {
  justify-self: end;
}

body #request .gv-date-weekdays,
body #request .gv-date-days {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

body #request .gv-date-weekdays {
  margin-bottom: 14px;
}

body #request .gv-date-weekdays span {
  height: 28px;
  display: grid;
  place-items: center;
  color: #a8b7cc;
  font-size: 14px;
  font-weight: 600;
}

body #request .gv-date-days {
  row-gap: 14px !important;
}

body #request .gv-date-empty {
  min-height: 42px;
}

body #request .gv-date-day {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #e5e7eb !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-indent: 0 !important;
  overflow: visible !important;
  cursor: pointer !important;
}

body #request .gv-date-day:hover {
  background: rgba(56, 189, 248, 0.12) !important;
  color: #ffffff !important;
}

body #request .gv-date-day.is-today {
  background: transparent !important;
  color: #38bdf8 !important;
}

body #request .gv-date-day.is-range {
  width: 100% !important;
  max-width: none !important;
  border-radius: 0 !important;
  background: rgba(56, 189, 248, 0.16) !important;
  color: #f8fafc !important;
}

body #request .gv-date-day.is-start {
  width: 100% !important;
  max-width: none !important;
  border-radius: 999px 0 0 999px !important;
  background: #0ea5e9 !important;
  color: #ffffff !important;
}

body #request .gv-date-day.is-end {
  width: 100% !important;
  max-width: none !important;
  border-radius: 0 999px 999px 0 !important;
  background: #2563eb !important;
  color: #ffffff !important;
}

body #request .gv-date-day.is-start.is-end {
  width: 42px !important;
  max-width: 42px !important;
  border-radius: 999px !important;
}

body #request .gv-date-picker-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

body #request .gv-date-picker-actions button {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  background: rgba(15, 23, 42, 0.72) !important;
  border: 1px solid rgba(125, 211, 252, 0.16) !important;
  border-radius: 999px !important;
  color: #cbd5e1 !important;
  box-shadow: none !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

/* Calculation toast */

body .gv-calc-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 99999;
  max-width: min(380px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.46);
  backdrop-filter: blur(18px);
  color: #0f172a;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body .gv-calc-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body .gv-calc-toast-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.38);
  color: #16a34a;
  font-size: 26px;
  font-weight: 950;
}

body .gv-calc-toast strong {
  display: block;
  margin-bottom: 3px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

body .gv-calc-toast small {
  display: block;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

/* Terms popup */

body.gv-terms-open {
  overflow: hidden;
}

body .gv-terms-popup[hidden] {
  display: none !important;
}

body .gv-terms-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

body .gv-terms-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body .gv-terms-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

body .gv-terms-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.62);
  overflow: hidden;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.22s ease;
}

body .gv-terms-popup.is-visible .gv-terms-modal {
  transform: translateY(0) scale(1);
}

body .gv-terms-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

body .gv-terms-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.42);
  color: #22c55e;
  font-size: 27px;
  font-weight: 950;
}

body .gv-terms-head strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

body .gv-terms-head small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
}

body .gv-terms-head button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.44);
  color: #e2e8f0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body .gv-terms-scroll {
  overflow: auto;
  padding: 18px 22px;
  color: #cbd5e1;
  line-height: 1.65;
}

body .gv-terms-scroll h3 {
  margin: 0 0 12px;
  color: #f8fafc;
  font-size: 24px;
}

body .gv-terms-scroll p {
  margin: 0 0 14px;
  color: #a8b7cc;
  font-weight: 700;
}

body .gv-terms-scroll ol {
  margin: 0;
  padding-left: 22px;
}

body .gv-terms-scroll li {
  margin-bottom: 12px;
}

body .gv-terms-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  color: #e2e8f0;
  font-weight: 900;
  cursor: pointer;
}

body .gv-terms-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #22c55e;
}

body .gv-terms-check input:disabled + span {
  color: #64748b;
}

body .gv-terms-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 22px 20px;
}

body .gv-terms-actions button {
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 950;
  cursor: pointer;
}

body .gv-terms-cancel {
  border: 1px solid rgba(125, 211, 252, 0.2);
  background: rgba(2, 6, 23, 0.42);
  color: #cbd5e1;
}

body .gv-terms-submit {
  border: 0;
  background: linear-gradient(135deg, #22c55e, #0284c7);
  color: white;
}

body .gv-terms-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Responsive */

@media (max-width: 1100px) {
  body #request .gv-request-panel {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 920px) {
  body #calculator [data-gvision-calculator] {
    grid-template-columns: 1fr !important;
  }

  body #calculator .gv-wizard-summary {
    position: static;
    max-width: none;
  }

  body #calculator .gv-wizard-topic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body #calculator .gv-wizard-main,
  body #calculator .gv-wizard-summary {
    border-radius: 22px;
  }

  body #calculator .gv-wizard-main {
    padding: 16px;
  }

  body #calculator .gv-wizard-slider-wrap {
    grid-template-columns: 1fr;
  }

  body #calculator .gv-wizard-arrow {
    display: none;
  }

  body #calculator .gv-wizard-product {
    flex-basis: 82%;
  }

  body #request .gv-date-range-picker {
    padding: 12px;
    border-radius: 22px;
  }

  body #request .gv-date-picker-head strong {
    font-size: 18px;
  }

  body #request .gv-date-weekdays span {
    font-size: 11px;
  }

  body #request .gv-date-day {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    font-size: 15px !important;
  }

  body #request .gv-date-day.is-range,
  body #request .gv-date-day.is-start,
  body #request .gv-date-day.is-end {
    width: 100% !important;
    max-width: none !important;
  }

  body #request .gv-date-day.is-start.is-end {
    width: 34px !important;
    max-width: 34px !important;
  }

  body #request .gv-date-selected-row {
    gap: 10px;
  }

  body #request .gv-date-selected-box {
    min-height: 64px;
    padding: 12px;
  }

  body #request .gv-date-selected-box strong {
    font-size: 15px;
  }

  body .gv-calc-toast {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: none;
  }

  body .gv-terms-popup {
    padding: 12px;
  }

  body .gv-terms-modal {
    border-radius: 24px;
  }

  body .gv-terms-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
