.pdf__wizzard .hidden {
  display: none !important;
}

.pdf__wizzard {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;

}

.pdf__wizzard:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 405px;
  background: -webkit-linear-gradient(270.73deg, #5AC8FF .62%, #FFFFFF 79.26%);
  background: linear-gradient(179.27deg, #5AC8FF .62%, #FFFFFF 79.26%);
  top: 0;
  left: 0;
  z-index: -1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pdf__wizzard .nodera-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 40px;
  background: #FFFF1E;
  padding: 20px;
  animation: fadeIn 0.8s ease;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.pdf__wizzard .nodera-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pdf__wizzard .nodera-logo:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.pdf__wizzard .nodera-logo:active {
  transform: scale(0.98);
}

.pdf__wizzard .nodera-logo-overlay {
  width: 180px;
  height: auto;
  margin: 0 auto 30px;
  background: #FFFF1E;
  padding: 20px;
  display: block;
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

.pdf__wizzard .nodera-logo-overlay img {
  width: 100%;
  height: auto;
}

.pdf__wizzard .nodera-btn {
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 18px 36px;
  position: relative;
}

.pdf__wizzard .nodera-btn.primary {
  background: #FFFF1E;
  color: #000;
  box-shadow: 0 8px 30px rgba(255, 255, 30, 0.3);
}

.pdf__wizzard .nodera-btn.primary:hover:not(:disabled) {
  background: #EFEF0E;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 30, 0.5);
}

.pdf__wizzard .nodera-btn.primary:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
}

.pdf__wizzard .nodera-btn.secondary {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.pdf__wizzard .nodera-btn.secondary:hover {
  background: #222;
  border-color: #222;
  transform: translateY(-2px);
}

.pdf__wizzard .nodera-btn.large {
  padding: 24px 48px;
  font-size: 16px;
}

.pdf__wizzard #step-1 {
  background: linear-gradient(135deg, #5AC8FF 0%, #ffffff 100%);
}

.pdf__wizzard #step-2 {
  background: linear-gradient(135deg, #5AC8FF 0%, #ffffff 100%);
}

.pdf__wizzard #step-3 {
  background: linear-gradient(135deg, #5AC8FF 0%, #ffffff 100%);
}

.pdf__wizzard #step-4 {
  background: linear-gradient(135deg, #5AC8FF 0%, #E8F7FF 100%);
}

.pdf__wizzard .step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  animation: fadeIn 0.8s ease;
}

.pdf__wizzard .step-content.wide {
  max-width: 900px;
}

.pdf__wizzard .step-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #000;
  text-align: center;
  margin-bottom: 20px;

}

.pdf__wizzard .step-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  animation: slideIn 0.8s ease 0.2s both;
}

.pdf__wizzard .address-search-box {
  width: 100%;
  max-width: 600px;
  position: relative;
  margin-bottom: 40px;
}

.pdf__wizzard .address-input-main {
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pdf__wizzard .address-input-main::placeholder {
  color: #999;
}

.pdf__wizzard .address-input-main:focus {
  border-color: #000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.pdf__wizzard .search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #e0e0e0;
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

}

.pdf__wizzard #step-3 {
  height: fit-content;
  padding-bottom: 100px;
}

.pdf__wizzard #step-4 {
  height: fit-content;
  padding-bottom: 100px;
}

.pdf__wizzard .search-results-dropdown.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.pdf__wizzard .result-item {
  padding: 16px 24px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  color: #333;
}

.pdf__wizzard .result-item:hover {
  background: #f8f8f8;
  padding-left: 28px;
}

.pdf__wizzard .result-item:last-child {
  border-bottom: none;
}

.pdf__wizzard .result-item strong {
  color: #000;
}

.pdf__wizzard .map-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.pdf__wizzard .map {
  width: 100%;
  height: 100%;
}

.pdf__wizzard .ol-zoom {
  display: none !important;
}

.pdf__wizzard .ol-attribution {
  display: none !important;
}

.pdf__wizzard .floating-instructions {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFF1E;
  color: #000;
  padding: 24px 40px;
  z-index: 1000;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.8s ease;
}

.pdf__wizzard .floating-instructions h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pdf__wizzard .floating-instructions p {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

.pdf__wizzard .back-to-step1-btn {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #000;
  color: #000;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pdf__wizzard .back-to-step1-btn:hover {
  background: #5AC8FF;
  border-color: #5AC8FF;
  color: #fff;
  transform: translateX(-4px);
}

.pdf__wizzard .legend {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
}

.pdf__wizzard .legend-title {
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pdf__wizzard .legend-gradient {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pdf__wizzard .gradient-bar {
  width: 160px;
  height: 20px;
  background: linear-gradient(to right, #d73027 0%, #FF4500 33%, #FFFF00 66%, #00BFFF 100%);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.pdf__wizzard .legend-label {
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
}

.pdf__wizzard .confirm-selection-floating {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 1500;
  animation: fadeIn 0.3s ease;
}

.pdf__wizzard .map-instruction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(90, 200, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.5s ease;
}

.pdf__wizzard .map-instruction-overlay.hidden {
  display: none;
}

.pdf__wizzard .instruction-content {
  background: rgba(90, 200, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem 4rem;
  text-align: center;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideIn 0.6s ease;
}

.pdf__wizzard .instruction-content h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.pdf__wizzard .instruction-content p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pdf__wizzard .dismiss-instruction {
  background: #FFFF1E;
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdf__wizzard .dismiss-instruction:hover {
  background: #EFEF0E;
  transform: translateY(-2px);
}

.pdf__wizzard .summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
}

.pdf__wizzard .summary-card {
  background: #FFFF1E;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease;
}

.pdf__wizzard .summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pdf__wizzard .card-label {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pdf__wizzard .card-icon {
  display: block;
}

.pdf__wizzard .card-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pdf__wizzard .card-value span:first-child {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 4px;
}






.pdf__wizzard .card-unit {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  opacity: 0.7;
}

.pdf__wizzard .calculator-section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #000;
  text-align: center;
  margin: 3rem 0 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdf__wizzard .calculator-inputs-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.pdf__wizzard .input-box-yellow {
  background: #FFFF1E;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pdf__wizzard .input-box-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pdf__wizzard .input-box-yellow.insurance-box {
  /* Versicherung - rechts neben Anschaffungskosten */
  grid-column: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.pdf__wizzard .label-with-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pdf__wizzard .input-box-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdf__wizzard .label-with-toggle .input-box-label {
  margin-bottom: 0;
}

.pdf__wizzard .input-box-field {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-family: inherit;
  transition: all 0.3s ease;
}

.pdf__wizzard .input-box-field:focus {
  outline: none;
  border-color: #5AC8FF;
  box-shadow: 0 0 0 3px rgba(90, 200, 255, 0.2);
}

.pdf__wizzard .input-box-field::placeholder {
  color: #999;
  font-weight: 400;
}

.pdf__wizzard .checkbox-label-new {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.pdf__wizzard .checkbox-input-new {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #000;
  flex-shrink: 0;
}

.pdf__wizzard .checkbox-text {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.pdf__wizzard .checkbox-icon {
  display: block;
  flex-shrink: 0;
}

.pdf__wizzard .toggle-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdf__wizzard .toggle-label {
  font-size: 0.75rem;
  color: #000;
  font-weight: 600;
}

.pdf__wizzard .toggle-switch {
  position: relative;
  width: 3rem;
  height: 1.5rem;
}

.pdf__wizzard .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pdf__wizzard .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 1.5rem;
}

.pdf__wizzard .toggle-slider:before {
  position: absolute;
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  left: 0.188rem;
  bottom: 0.188rem;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.pdf__wizzard input:checked+.toggle-slider {
  background-color: #000;
}

.pdf__wizzard input:checked+.toggle-slider:before {
  transform: translateX(1.5rem);
}

.pdf__wizzard .insurance-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pdf__wizzard .insurance-toggle-label {
  font-size: 0.875rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdf__wizzard .slider-new {
  width: 100%;
  height: 8px;
  margin: 0.5rem 0;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(0, 0, 0, 0.1);
  outline: none;
  border-radius: 4px;
}

.pdf__wizzard .slider-new::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #000;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}

.pdf__wizzard .slider-new::-webkit-slider-thumb:hover {
  background: #333;
  transform: scale(1.1);
}

.pdf__wizzard .slider-new::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #000;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  transition: all 0.2s;
}

.pdf__wizzard .slider-new::-moz-range-thumb:hover {
  background: #333;
  transform: scale(1.1);
}

.pdf__wizzard .slider-hint {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
  font-style: italic;
  text-align: center;
}

.pdf__wizzard .info-text-new {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
}

.pdf__wizzard .info-text-new.hidden {
  display: none;
}

.pdf__wizzard .offer-page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.pdf__wizzard .offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.pdf__wizzard .offer-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin: 0;
}

.pdf__wizzard .nodera-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.pdf__wizzard .offer-main-box {
  background: #FFFF1E;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.pdf__wizzard .offer-intro {
  font-size: 1rem;
  color: #000;
  margin-bottom: 1rem;
}

.pdf__wizzard .offer-price-big {
  font-size: 4rem;
  font-weight: 900;
  color: #000;
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  margin: 1rem 0;
}

.pdf__wizzard .offer-subtitle {
  font-size: 0.875rem;
  color: #000;
  margin-top: 1rem;
}

.pdf__wizzard .offer-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pdf__wizzard .metric-card {
  padding: 1.5rem;
  text-align: center;
}

.pdf__wizzard .metric-card.yellow {
  background: #FFFF1E;
}

.pdf__wizzard .metric-card.pink {
  background: #FF69B4;
}

.pdf__wizzard .metric-label {
  font-size: 0.75rem;
  color: #000;
  margin-bottom: 1rem;
  font-weight: 500;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf__wizzard .metric-value,
.pdf__wizzard .param-value {
  background-color: transparent;
  font-size: 8.5mm;

  font-weight: 800;
  max-width: 42.2mm;

  line-height: 1;
  margin-bottom: 0mm;
  padding-bottom: 0mm;

  word-break: break-word;
  position: relative;




}

.pdf__wizzard #pdf-template-root .metric-value,
.pdf__wizzard #pdf-template-root .param-value {
  margin-top: -6mm;
  padding-bottom: 2mm;
}



.pdf__wizzard .param-unit,
.pdf__wizzard .metric-unit {

  font-size: 2.8mm;
  font-weight: 700;
  position: relative;

}



.pdf__wizzard .metric-chart {
  padding: 1rem;
}

.pdf__wizzard .risk-bar {
  width: 100%;
  height: 30px;
  background: linear-gradient(to right, #10b981 0%, #fbbf24 50%, #ef4444 100%);
  border-radius: 15px;
  position: relative;
  margin: 1rem 0;
}

.pdf__wizzard .risk-indicator {
  position: absolute;
  width: 4px;
  height: 40px;
  background: #000;
  top: -5px;
}

.pdf__wizzard .risk-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000;
}

.pdf__wizzard .risk-text {
  font-size: 0.75rem;
  color: #000;
  margin-top: 1rem;
}

.pdf__wizzard .offer-next-steps {
  padding: 2rem;
  margin-bottom: 2rem;
}

.pdf__wizzard .next-steps-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 2rem;
}

.pdf__wizzard .steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pdf__wizzard .step-item {
  text-align: center;
}

.pdf__wizzard .step-number {
  width: 60px;
  height: 60px;
  background: #5AC8FF;
  color: white;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pdf__wizzard .step-item .step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.pdf__wizzard .step-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.4;
}

.pdf__wizzard .offer-parameters {
  padding: 2rem;
  margin-bottom: 2rem;
}

.pdf__wizzard .parameters-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 2rem;
}

.pdf__wizzard .highlight-text {
  color: #5AC8FF;
}

.pdf__wizzard .parameters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pdf__wizzard .param-card {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pdf__wizzard .param-card.yellow {
  background: #FFFF1E;
}

.pdf__wizzard .param-card.pink {
  background: #FF69B4;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf__wizzard .param-card.pink .param-label {
  display: none;
}

.pdf__wizzard .param-card.pink img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.pdf__wizzard .param-label {
  margin: 0;
  font-size: 2.8mm;
  margin-bottom: 2mm;
  font-weight: 700;
  position: relative;
}



.pdf__wizzard .param-image-placeholder {
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.pdf__wizzard .offer-chart-section {

  padding: 2rem;
  margin-bottom: 2rem;
}

.pdf__wizzard .chart-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 2rem;
}

.pdf__wizzard .chart-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf__wizzard .offer-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.pdf__wizzard .btn-back {
  padding: 1rem 2rem;
  background: white;
  color: #000;
  border: 2px solid #000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.pdf__wizzard .btn-back:hover {
  background: #f0f0f0;
}

.pdf__wizzard .btn-accept {
  padding: 1rem 2rem;
  background: #FFFF1E;
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.pdf__wizzard .btn-accept:hover {
  background: #EFEF0E;
  transform: translateY(-2px);
}

.pdf__wizzard .error-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(90, 200, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.pdf__wizzard .error-modal-content {
  background: rgba(90, 200, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem 4rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideIn 0.4s ease;
}

.pdf__wizzard .error-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.pdf__wizzard .error-icon::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #FF69B4;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.pdf__wizzard .error-icon::after {
  content: "!";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.pdf__wizzard .contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.pdf__wizzard .contact-icon::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #FFFF1E;
  border-radius: 50%;
  top: 0;
  left: 0;
}

.pdf__wizzard .contact-icon::after {
  content: "✉";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.pdf__wizzard .error-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.pdf__wizzard .error-message {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pdf__wizzard .missing-fields {
  background: rgba(255, 255, 255, 0.2);
  border-left: 4px solid #FFFF1E;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
  backdrop-filter: blur(10px);
}

.pdf__wizzard .missing-fields ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pdf__wizzard .missing-fields li {
  padding: 0.5rem 0;
  color: white;
  font-weight: 500;
}

.pdf__wizzard .missing-fields li:before {
  content: "→ ";
  color: #FFFF1E;
  font-weight: 900;
  margin-right: 0.5rem;
}

.pdf__wizzard .error-close-btn {
  background: #FFFF1E;
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdf__wizzard .error-close-btn:hover {
  background: #EFEF0E;
  transform: translateY(-2px);
}

.pdf__wizzard .contact-form {
  width: 100%;
  margin-top: 2rem;
}

.pdf__wizzard .contact-input-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.pdf__wizzard .contact-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pdf__wizzard .contact-input {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-family: inherit;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pdf__wizzard .contact-input:focus {
  outline: none;
  border-color: #FFFF1E;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 30, 0.2);
}

.pdf__wizzard .contact-input::placeholder {
  color: #999;
  font-weight: 400;
}

.pdf__wizzard .contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.pdf__wizzard .secondary-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.pdf__wizzard .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

.pdf__wizzard .loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pdf__wizzard .loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 30, 0.2);
  border-top-color: #FFFF1E;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.pdf__wizzard .loading-overlay p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}


.pdf__wizzard .calculation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(90, 200, 255, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.pdf__wizzard .calculation-overlay.hidden {
  display: none;
}

.pdf__wizzard .calculation-overlay.fade-out {
  animation: fadeOut 0.3s ease forwards;
}

.pdf__wizzard .calculation-modal {
  background: #fff;
  padding: 60px 80px;
  text-align: center;
  width: 500px;
  max-width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.5s ease;
  border-radius: 0px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pdf__wizzard .calculation-spinner {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top-color: #000;
  border-radius: 50%;
  margin: 0 auto 30px;
  animation: spin 1s linear infinite;
}

.pdf__wizzard .calculation-title {
  font-size: 28px;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdf__wizzard .calculation-step {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  min-height: 48px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.pdf__wizzard .calculation-progress {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.pdf__wizzard .calculation-progress-bar {
  height: 100%;
  width: 0%;
  background: #000;
  transition: width 0.8s ease;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .pdf__wizzard .offer-page {
    padding: 2rem 1.5rem;
  }

  .pdf__wizzard .calculator-inputs-wrapper {
    gap: 15px;
  }

  .pdf__wizzard .input-box-yellow {
    padding: 20px;
  }
}

@media (max-width: 768px) {

  .pdf__wizzard .step-content {
    padding: 30px 15px;
  }

  .pdf__wizzard .step-content.wide {
    max-width: 100%;
    padding: 30px 15px;
  }

  .pdf__wizzard .step-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }

  .pdf__wizzard .step-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .pdf__wizzard .nodera-logo {
    width: 150px;
    margin-bottom: 30px;
    padding: 15px;
  }

  .pdf__wizzard .nodera-btn {
    width: 100%;
    padding: 16px 28px;
    font-size: 13px;
  }

  .pdf__wizzard .nodera-btn.large {
    padding: 20px 32px;
    font-size: 14px;
  }

  .pdf__wizzard .address-search-box {
    margin-bottom: 30px;
  }

  .pdf__wizzard .address-input-main {
    padding: 16px 20px;
    font-size: 16px;
  }

  .pdf__wizzard .result-item {
    padding: 14px 20px;
    font-size: 14px;
  }

  .pdf__wizzard .floating-instructions {
    padding: 20px 30px;
    top: 15px;
    max-width: calc(100% - 30px);
  }

  .pdf__wizzard .floating-instructions h3 {
    font-size: 18px;
  }

  .pdf__wizzard .floating-instructions p {
    font-size: 13px;
  }

  .pdf__wizzard .back-to-step1-btn {
    bottom: 20px;
    left: 15px;
    padding: 12px 20px;
    font-size: 13px;
  }

  .pdf__wizzard .legend {
    bottom: 100px;
    padding: 12px 16px;
    font-size: 0.85rem;
    flex-direction: column;
    gap: 12px;
  }

  .pdf__wizzard .gradient-bar {
    width: 100px;
  }

  .pdf__wizzard .confirm-selection-floating {
    bottom: 20px;
    right: 15px;
    left: 15px;
  }

  .pdf__wizzard .confirm-selection-floating .nodera-btn {
    width: 100%;
  }

  .pdf__wizzard .instruction-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .pdf__wizzard .instruction-content h2 {
    font-size: 1.5rem;
  }

  .pdf__wizzard .instruction-content p {
    font-size: 0.9rem;
  }

  .pdf__wizzard .summary-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .pdf__wizzard .summary-card {
    padding: 28px 18px;
  }

  .pdf__wizzard .card-value span:first-child {
    font-size: 48px;
  }

  .pdf__wizzard .calculator-section-title {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin: 2rem 0 1.5rem;
  }

  .pdf__wizzard .calculator-inputs-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 30px 0;
  }

  .pdf__wizzard .input-box-yellow {
    padding: 16px;
  }

  .pdf__wizzard .input-box-yellow.checkbox-box {
    padding: 20px;
  }

  .pdf__wizzard .input-box-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .pdf__wizzard .input-box-field {
    padding: 12px;
    font-size: 16px;
  }

  .pdf__wizzard .toggle-container {
    gap: 0.4rem;
  }

  .pdf__wizzard .toggle-label {
    font-size: 0.65rem;
  }

  .pdf__wizzard .toggle-switch {
    width: 2.5rem;
    height: 1.25rem;
  }

  .pdf__wizzard .toggle-slider:before {
    height: 0.9rem;
    width: 0.9rem;
    left: 0.15rem;
    bottom: 0.15rem;
  }

  .pdf__wizzard input:checked+.toggle-slider:before {
    transform: translateX(1.25rem);
  }

  .pdf__wizzard .slider-hint {
    font-size: 0.65rem;
  }

  .pdf__wizzard .checkbox-label-new {
    font-size: 14px;
    gap: 10px;
  }

  .pdf__wizzard .checkbox-text {
    gap: 6px;
  }

  .pdf__wizzard .checkbox-icon {
    width: 24px;
    height: 24px;
  }

  .pdf__wizzard .checkbox-input-new {
    width: 20px;
    height: 20px;
  }

  .pdf__wizzard .offer-page {
    padding: 1.5rem 1rem;
  }

  .pdf__wizzard .offer-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .pdf__wizzard .offer-title {
    font-size: 2rem;
  }

  .pdf__wizzard .offer-price-big {
    font-size: 2.5rem;
    padding: 0.75rem 1.5rem;
  }

  .pdf__wizzard .offer-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pdf__wizzard .steps-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdf__wizzard .parameters-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pdf__wizzard .offer-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .pdf__wizzard .btn-back,
  .pdf__wizzard .btn-accept {
    width: 100%;
  }

  .pdf__wizzard .error-modal-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .pdf__wizzard .error-icon,
  .pdf__wizzard .contact-icon {
    width: 50px;
    height: 50px;
  }

  .pdf__wizzard .error-icon::before,
  .pdf__wizzard .contact-icon::before {
    width: 50px;
    height: 50px;
  }

  .pdf__wizzard .error-icon::after {
    font-size: 2rem;
  }

  .pdf__wizzard .error-title {
    font-size: 1.5rem;
  }

  .pdf__wizzard .error-message {
    font-size: 0.9rem;
  }

  .pdf__wizzard .contact-form {
    margin-top: 1.5rem;
  }

  .pdf__wizzard .contact-input-group {
    margin-bottom: 1rem;
  }

  .pdf__wizzard .contact-input {
    padding: 0.875rem;
    font-size: 16px;
    /* Prevents auto-zoom on iOS */
  }

  .pdf__wizzard .contact-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .pdf__wizzard .error-close-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .pdf__wizzard .secondary-btn {
    width: 100%;
  }

  .pdf__wizzard {
    /* Calculation Overlay */
  }

  .pdf__wizzard .calculation-modal {
    padding: 40px 30px;
    max-width: 90%;
    width: auto;
  }

  .pdf__wizzard .nodera-logo-overlay {
    width: 100px;
    margin-bottom: 20px;
    padding: 12px;
  }

  .pdf__wizzard .calculation-spinner {
    width: 60px;
    height: 60px;
    border-width: 6px;
    margin-bottom: 25px;
  }

  .pdf__wizzard .calculation-title {
    font-size: 22px;
  }

  .pdf__wizzard .calculation-step {
    font-size: 14px;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .pdf__wizzard .step-content {
    padding: 20px 12px;
  }

  .pdf__wizzard .nodera-logo {
    width: 120px;
    margin-bottom: 25px;
    padding: 12px;
  }

  .pdf__wizzard .step-title {
    font-size: clamp(22px, 7vw, 32px);
  }

  .pdf__wizzard .step-subtitle {
    font-size: 14px;
  }

  .pdf__wizzard .nodera-btn {
    padding: 14px 24px;
    font-size: 12px;
  }

  .pdf__wizzard .address-input-main {
    padding: 14px 18px;
    font-size: 16px;
  }

  .pdf__wizzard .floating-instructions {
    padding: 18px 25px;
    top: 10px;
  }

  .pdf__wizzard .floating-instructions h3 {
    font-size: 16px;
  }

  .pdf__wizzard .floating-instructions p {
    font-size: 12px;
  }

  .pdf__wizzard .back-to-step1-btn {
    bottom: 20px;
    left: 15px;
    padding: 10px 18px;
    font-size: 12px;
  }

  .pdf__wizzard .legend {
    bottom: 90px;
  }

  .pdf__wizzard .summary-card {
    padding: 25px 15px;
  }

  .pdf__wizzard .card-value span:first-child {
    font-size: 42px;
  }

  .pdf__wizzard .calculator-section-title {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
  }

  .pdf__wizzard .calculator-inputs-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pdf__wizzard .input-box-yellow {
    padding: 14px;
  }

  .pdf__wizzard .input-box-label {
    font-size: 10px;
  }

  .pdf__wizzard .input-box-field {
    padding: 10px;
    font-size: 16px;
  }

  .pdf__wizzard .insurance-toggle-label {
    font-size: 12px;
  }

  .pdf__wizzard .offer-title {
    font-size: 1.75rem;
  }

  .pdf__wizzard .offer-price-big {
    font-size: 2rem;
    padding: 0.5rem 1rem;
  }

  .pdf__wizzard .metric-value {
    font-size: 2rem;
    padding: 0.5rem 1rem;

  }

  .pdf__wizzard .param-value {
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
  }

  .pdf__wizzard .contact-actions {
    gap: 0.5rem;
  }

  .pdf__wizzard .error-close-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .pdf__wizzard .calculation-modal {
    padding: 35px 25px;
  }

  .pdf__wizzard .nodera-logo-overlay {
    width: 80px;
    margin-bottom: 20px;
    padding: 10px;
  }

  .pdf__wizzard .calculation-spinner {
    width: 50px;
    height: 50px;
    border-width: 5px;
  }

  .pdf__wizzard .calculation-title {
    font-size: 20px;
  }

  .pdf__wizzard .calculation-step {
    min-height: 72px;
    font-size: 14px;
  }

}

.pdf__wizzard #pdf-template-root.__rendering__ {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
}

.pdf__wizzard .pdf-a4-page {
  box-sizing: border-box;
  width: 210mm;
  height: 297mm;
  padding: 7.5mm 27.5mm 14mm;
  background: linear-gradient(179.27deg, #5AC8FF 0.62%, #FFFFFF 79.26%);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6.4mm;
}

.pdf__wizzard #pdf-template-root .offer-main-box {
  margin-bottom: 0;
}

.pdf__wizzard #pdf-template-root .offer-metrics {
  gap: 6.4mm;
  margin-bottom: 0mm;
}

.pdf__wizzard #pdf-template-root .metric-card {
  padding: 2.1mm;
  aspect-ratio: 1.1;
  display: flex;
  flex-direction: column;
  max-width: 48.2mm;
}

.pdf__wizzard #pdf-template-root .next-steps-title {
  font-size: 7.14mm;
  margin-bottom: 10mm;
}

.pdf__wizzard #pdf-template-root .step-number {

  line-height: 0.1;
  padding-bottom: 5mm;
}

.pdf__wizzard #pdf-template-root .offer-next-steps {
  padding: 0;
  gap: 6.4mm;
}

.pdf__wizzard #pdf-template-root .step-item {
  padding: 0mm;
}

.pdf__wizzard .circle {
  position: relative;
  height: 30mm;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2mm;
  width: 100%;
  margin: auto;


}

.pdf__wizzard .bg-circle {
  max-width: 30mm;
  position: absolute;
  aspect-ratio: 1;
  width: 100%;
  background-color: #fff;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pdf__wizzard .metric-label {
  margin: 0;
  font-size: 2.8mm;
  margin-bottom: 2mm;
  font-weight: 700;
}





.pdf__wizzard #pdf-template-root .steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.4mm;
}

.pdf__wizzard #pdf-template-root .step-item:not(:last-of-type):before {
  right: -3.4mm;
}

.pdf__wizzard #pdf-template-root .step-item {
  max-width: 48.2mm;
}

.pdf__wizzard #pdf-template-root .step-title {
  font-size: 3.57mm;
  text-align: center;
  color: #000;
  margin-bottom: 1mm;
}

.pdf__wizzard #pdf-template-root .step-desc {
  font-size: 2.85mm;
  color: #000;
}

.pdf__wizzard #pdf-template-root .parameters-grid {
  gap: 6.4mm;
  margin-bottom: 0mm;
}

.pdf__wizzard #pdf-template-root .param-card {
  padding: 2.1mm;
  aspect-ratio: 1.1;
  display: flex;
  flex-direction: column;
  max-width: 48.2mm;
}





.pdf__wizzard .pdf-topbar {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  margin-bottom: 5mm;

}

.pdf__wizzard .pdf-topbar .left {
  font-size: 10.8mm;
  color: #fff;
  font-weight: 700;
  line-height: 0.8;
}

.pdf__wizzard .pdf-topbar .right {
  font-size: 6mm;
  color: #fff;
  font-weight: 700;
}

.pdf__wizzard .pdf-notes .title {
  font-size: 3.2mm;
  font-weight: 800;
}

.pdf__wizzard .pdf-notes ul {
  margin-left: 20px;
}

.pdf__wizzard .pdf-notes li {
  font-size: 2.5mm;
  list-style: decimal;
}

.pdf__wizzard .pdf-notes span {
  font-size: 2.5mm;
  font-weight: 800;
}

.pdf__wizzard #pdf-template-root .offer-main-box {
  padding: 2.4mm 7.14mm;
}

.pdf__wizzard #pdf-template-root .offer-intro {
  font-size: 4.28mm;
  font-weight: 700;
  margin-bottom: 0;
  margin-bottom: 4mm;
}

.pdf__wizzard #pdf-template-root .offer-price-big {
  font-size: 16mm;
  width: 100%;
  text-align: center;
  margin: 0;
  padding-bottom: 5mm;

  padding: 0;
  margin: 0;

  height: 20mm;
  line-height: 0.4;






}

.pdf__wizzard #pdf-template-root .offer-subtitle {
  margin: 0;
  font-weight: 700;
  font-size: 2.8mm;
  margin-top: 4mm;
}

.pdf__wizzard #pdf-template-root .offer-parameters {
  padding: 0;
  margin-bottom: 12.4mm;
}

.pdf__wizzard #pdf-template-root .parameters-title {
  font-size: 7.14mm;
  font-weight: 800;
}

.pdf__wizzard #pdf-template-root .parameters-title .highlight-text {
  font-size: 7.14mm;
  font-weight: 800;
}

.pdf__wizzard #pdf-template-root .offer-chart-section {
  padding: 0;
}

.pdf__wizzard #pdf-template-root .chart-title {
  margin: 0;
  font-size: 7.14mm;
  font-weight: 800;
}

.pdf__wizzard #pdf-template-root .risk-bar {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7cd67c, #ffd166, #ff6b6b);
  position: relative;
  padding: 0;
  margin: 0;
}

.pdf__wizzard #pdf-template-root .metric-chart {
  padding: 0;
  width: 100%;
}

.pdf__wizzard #pdf-template-root .risk-indicator {
  height: 26px;
}

.pdf__wizzard #pdf-template-root .pdf-notes {
  display: flex;
}

.pdf__wizzard .pdf-sticker {
  right: -10px;
  bottom: 0px;
  position: relative;
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #FFFF1E;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  float: right;
  font-size: 3.6mm;
  font-weight: 800;
  transform: rotate(12deg);
  padding: 18mm;
}

.pdf__wizzard .step-container {

  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 150px);
  display: none;
  overflow-y: auto;

}

.pdf__wizzard .step-container.active {
  display: flex;
  flex-direction: column;
}

.pdf__wizzard .step-item {
  position: relative;
}

.pdf__wizzard .step-item:not(:last-of-type):before {
  position: absolute;
  content: "";
  right: -1rem;
  top: 50%;
  transform: translate(0%, -50%);
  width: 2px;
  height: 100%;
  background-color: #000;
}

.pdf__wizzard .risk-text {
  position: relative;
}

.pdf__wizzard .risk-labels {
  position: relative;
}


@media (max-width: 991px) {
  .pdf__wizzard {
    padding-top: 100px;
  }



  .pdf__wizzard .step-container {
    height: calc(100dvh - 90px);
	 

  }
	.pdf__wizzard .map-wrapper {
		  height: calc(100dvh - 90px);
	}
  .pdf__wizzard .step-item:not(:last-of-type):before {
    display: none;
  }
}