/*# sourceMappingURL=https://webbureau.nu/Templates/Pages/Offerte/Css/main.scss.map*/.cw1 {
  --cw:1;
}
.cw2 {
  --cw:2;
}
.cw3 {
  --cw:3;
}
.cw4 {
  --cw:4;
}
.cw5 {
  --cw:5;
}
.cw6 {
  --cw:6;
}
.cw7 {
  --cw:7;
}
.cw8 {
  --cw:8;
}
.cw9 {
  --cw:9;
}
.cw10 {
  --cw:10;
}
.cw11 {
  --cw:11;
}
.cw12 {
  --cw:12;
}
/* --- 1. Variabelen (Thema configuratie) --- */
:root {
  /* Primaire kleuren */
  --color-primary: var(--primary);
  --color-white: #ffffff;
  /* Achtergronden */
  --bg-body: #ffffff;
  --bg-section: #f7f7fb;
  --bg-input: #ffffff;
  --bg-secondary: #eeeeee;
  --bg-card: #f7f7f7;
  /* Voor image radio */
  --bg-progress: #e4e4e4;
  --bg-toggle-off: #dddddd;
  /* Randen */
  --border-section: #e2e2ee;
  --border-default: #dddddd;
  --border-input: #cccccc;
  /* Tekstkleuren */
  --text-main: #111111;
  --text-dark: #444444;
  --text-muted: #666666;
  --text-toggle: #555555;
  /* Lettertypes */
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Overig */
  --shadow-inset: #111122;
  /* Specifieke schaduwkleur uit origineel */
  --button-hover-background: var(--primary-hover)
}

header, footer{
  display: none!important;
}
main {
  margin-top: 0 !important;
}
/* --- 2. Algemene Layout & Typografie --- */
.quote-section {
  max-width: 720px;
  margin: 15px auto 3rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--bg-section);
  border: 1px solid var(--border-section);
  font-family: var(--font-stack);
  --button-height:40px;
}
.quote-section .form-block + .form-block {
  margin-top: 15px;
}
.quote-section form, .quote-section grid {
  gap: 5px !important;
}
.quote-section .row label {
  min-width: 40%;
}
.quote-section .row input {
  min-width: 50%;
  flex-grow: 1;
}
.quote-section .radio-row label {
  display: flex;
  align-items: center;
  gap: 15px;
}
.quote-section .radio-row label input {
  min-width: 30px;
  max-width: 30px;
}
.quote-section h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.quote-section p {
  margin-top: 0;
  --custom-font-size: 14px;
}
/* --- 3. Formulier Elementen --- */
form fieldset {
  border: none;
  margin: 1.5rem 0;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid var(--border-default);
}
form legend {
  font-weight: 600;
  padding: 0 0.25rem;
}
.form-group {
  margin-bottom: 1rem;
}
label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 16px;
  line-height: 20px;
}
/* Input Styles */
input[type="text"], input[type="email"], input[type="tel"], input[type="file"], textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--border-input);
  background: var(--bg-input);
  box-sizing: border-box;
  font: inherit;
}
textarea {
  resize: vertical;
  min-height: 90px;
}
small, .hint, .small-print {
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* --- 4. Knoppen & Acties --- */
.form-actions {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-default);
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
button[type="submit"], .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  /* Specifieke override voor submit button als je de ronde vorm wilt behouden */
}
button[type="submit"][type="submit"], .btn-primary[type="submit"] {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
}
.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-main);
}
/* --- 5. Progress & Steps --- */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-progress {
  margin-bottom: 1rem;
}
.progress-text {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-progress);
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar .progress-fill {
  height: 100%;
  background: var(--color-primary);
  width: 0;
  transition: width 0.3s ease;
}
/* --- 6. Image Radio Cards --- */
.image-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.image-radio {
  display: block;
  cursor: pointer;
  position: relative;
  /* Verberg de default radio button */
  /* Hover state */
  /* Checked state */
}
.image-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.image-radio__content {
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 0.5rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
  background: var(--bg-card);
}
.image-radio__content img {
  display: block;
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.image-radio__content span {
  display: block;
  font-size: 0.9rem;
}
.image-radio:hover .image-radio__content {
  box-shadow: 0 0 0 1px var(--border-default);
  transform: translateY(-1px);
}
.image-radio input[type="radio"]:checked + .image-radio__content {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--shadow-inset) inset;
  background: var(--color-white);
}
/* --- 7. Toggle Switch (Yes/No) --- */
.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.toggle-wrapper .toggle-label {
  font-size: 1rem;
  font-weight: 500;
}
.yesno-toggle {
  cursor: pointer;
  position: relative;
  display: inline-block;
  /* Checked state (Yes) */
}
.yesno-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.yesno-toggle .toggle-box {
  width: 60px;
  height: 34px;
  background: var(--bg-toggle-off);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  font-size: 0.8rem;
  color: var(--text-toggle);
  transition: background 0.25s ease;
  position: relative;
}
.yesno-toggle .toggle-box::after {
  content: "";
  width: 28px;
  height: 28px;
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.yesno-toggle input:checked + .toggle-box {
  background: var(--color-primary);
  color: var(--color-white);
}
.yesno-toggle input:checked + .toggle-box::after {
  transform: translateX(36px);
}
.error {
  border: 2px solid #d9534f !important;
  background: #ffe6e6 !important;
}
