#snx_calc .step-nav {
  position: sticky;
  top: 20px;
}

#snx_calc .step-nav .nav-link {
  color: #000;
  font-weight: normal;
  padding-left: 10px;
  position: relative;
}

#snx_calc .step-nav .nav-link.active {
  font-weight: bold;
}

#snx_calc .step-nav .nav-link.active::before {
  content: "";
  position: absolute;
  left: -20px;
  color: #000;
}

#snx_calc .step-content {
  display: none;
}

#snx_calc .step-content.active {
  display: block;
}

#snx_calc .btn-custom {
  background-color: #f39201;
  border-color: #f39201;
  color: #0c406c;
}

#snx_calc .btn-custom:hover {
  background-color: #e68100;
  border-color: #e68100;
  color: #0c406c;
}

@media (max-width: 767px) {
  #snx_calc .step-nav {
    display: none;
  }
}

#snx_calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  padding: 0 !important;
  background: #ccc;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

#snx_calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  padding: 0 !important;
  background: #124470;
  cursor: pointer;
  border-radius: 50%;
}

#snx_calc input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  padding: 0 !important;
  background: #124470;
  cursor: pointer;
  border-radius: 50%;
}

#snx_calc input[type="range"]:hover {
  opacity: 1;
}

#snx_calc input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #124470;
  cursor: pointer;
  margin-right: 10px;
  position: relative;
}

#snx_calc input[type="radio"]:checked::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #124470;
  position: absolute;
  top: 2px;
  left: 2px;
}

#snx_calc input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 146, 1, 0.3);
}

#snx_calc input[type="text"],
#snx_calc input[type="number"] {
  border: 2px solid #124470;
  padding: 5px !important;
  border-radius: 4px;
  outline: none;
}

#snx_calc input[type="text"]:focus,
#snx_calc input[type="number"]:focus {
  border-color: #124470;
  box-shadow: 0 0 5px rgba(18, 68, 112, 0.5);
}

#snx_calc .bg-dark {
  background-color: #124470;
}

#snx_calc .nav-link.disabled {
  pointer-events: none;
  opacity: 0.6;
}

#snx_calc #berechnungForm {
  background-color: #f0f0f0;
  color: #000000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#snx_calc .options-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

#snx_calc .option {
  position: relative;
  width: 48%;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
}

#snx_calc .option-image {
  height: 150px;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid #ddd;
}

#snx_calc .option-text {
  padding: 10px;
  text-align: center;
  background-color: #f9f9f9;
  position: relative;
}

#snx_calc .option-bullet {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background-color: #fff;
}

#snx_calc .option-bullet-inner {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 50%;
  margin: 3px auto;
  transition: background-color 0.3s ease;
}

#snx_calc .option input[type="radio"] {
  display: none;
}

#snx_calc
  .option
  input[type="radio"]:checked
  + .option-image
  + .option-text
  .option-bullet
  .option-bullet-inner {
  background-color: #007bff;
}

#snx_calc .option input[type="radio"]:checked + .option-image + .option-text {
  border-color: #007bff;
}

#snx_calc .form-check {
  margin-bottom: 10px;
}

#snx_calc .form-check-input {
  margin-right: 10px;
}

#snx_calc .form-check-label {
  font-size: 16px;
}

#snx_calc .step-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#snx_calc .step-image {
  width: 40%;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-right: 20px;
}

#snx_calc .step-input {
  width: 55%;
  display: flex;
  flex-direction: column;
}

#snx_calc .step-input .form-control {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border: 2px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

#snx_calc .step-input .btn-custom {
  align-self: flex-start;
}

#snx_calc .step-options {
  width: 55%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  #snx_calc .step-image {
    display: none;
  }
  #snx_calc .step-input,
  #snx_calc .step-options {
    width: 100%;
  }
  #snx_calc .step-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1930px) {
  #snx_calc input[type="number"] {
    width: 65px;
  }
}
#snx_calc .highlighted-notice {
  background-color: #f39201;
  color: #ffffff;
  border: 1px solid #f39201;
  border-radius: 5px;
  padding: 15px;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

#snx_calc .small-footer-text {
  font-size: 0.875rem;
}

#snx_calc .form-check {
  margin-bottom: 15px;
}

#snx_calc .form-check-input {
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

#snx_calc .form-check-label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 0;
  line-height: 1.5;
}

#snx_calc .step-image {
  background-color: #f0f0f0;
  min-height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#snx_calc .form-range {
  margin-bottom: 20px;
}

#snx_calc .step {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

#snx_calc .step-line {
  display: block;
  width: 5px;
  height: 20px;
  margin-left: 12px;
  border-radius: 5px;
  background-color: #909090;
}

#snx_calc .bullet {
  display: block;
  width: 30px;
  min-width: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: white;
  border-radius: 100%;
  border: 5px solid #909090;
}

#snx_calc .bullet svg {
  margin-left: -1px;
  margin-top: -1px;
}

#snx_calc .step-nav .nav-link.active + .bullet {
  border: 5px solid #eb872f;
}
#snx_calc .hidden {
  display: none;
}
#snx_calc .visible {
  display: block;
}
#snx_calc .range-bars {
  padding-right: 10px;
  padding-left: 10px;
}
#snx_calc .berechnungForm-options-container {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #snx_calc .berechnungForm-options-container {
    flex-direction: column;
  }
}
#snx_calc .berechnungForm-options-container .berechnungForm-options {
  flex-grow: 1;
}
#snx_calc .berechnungForm-options-container .range-bars {
  flex-grow: 1;
}
#snx_calc .info-icon {
  background-color: #F39304;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 0.2em;
  width: 1.5em;
  height: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9em;
  margin-left: 5px;
}

#snx_calc .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

#snx_calc .modal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
}

#snx_calc .modal .modal-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

#snx_calc .modal .modal-content .modal-footer {
  padding: 0;
}

#snx_calc .calc-results h3 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 15px;
}