.sticky{
  position: sticky;
  top: 110px; /* Houdt een afstand van 110px van de bovenkant van de browser */
/*   z-index: 100; */
  padding: 10px;
}

/* Algemene container */
.custom-container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Section styling */
.custom-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.custom-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.custom-content {
  padding-bottom: 3rem;
}

/* Header */
.custom-header {
  font-size: 2rem;
  font-weight: 800;
  color: #011049;
  margin-bottom: 1rem;
}

/* Subheader styling */
.custom-subheader {
  color: #011049;
  font-size: 1rem;
  line-height: 1.5;
}

/* Flexbox layout */
.custom-flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-left-column,
.custom-right-column {
  padding: 1.5rem;
}

.custom-left-column {
  flex: 1 1 23.3333%;
  background-color: #d8efff;
  position: relative; /* Zodat we de lijn en bolletjes kunnen plaatsen */
}

/* Verticale lijn */
.custom-step-list::before {
  content: '';
  position: absolute;
  top: 15px; /* Start boven het eerste bolletje */
  left: 19px; /* Exacte positie waar de bolletjes zitten */
  height: calc(100% - 30px); /* Lijn loopt van eerste bolletje tot laatste */
  width: 2px;
  background-color: #011049;
}

/* Rechterkolom */
.custom-right-column {
  flex: 1 1 76.6667%;
  background-color: #ffffff;
}

/* Step list styling */
.custom-step-list {
  list-style-type: none;
  padding-left: 40px;
  margin: 26px 0px 0px 0px;
  position: relative;
}

/* Stappenlijst items */
.custom-step-list li {
  font-size: 13px;
  color: #a2b3d1;
  line-height: 30px;
  font-weight: 400;
  position: relative;
}

/* Stappenlijst items */
.custom-step-list li.active {
  color: #011049;
}


/* Bolletjes op de verticale lijn */
.custom-step-list li::before {
  content: '';
  position: absolute;
  left: -25px; /* Zorg ervoor dat de bolletjes precies op de lijn liggen */
  top: 11px; /* Hoogte afstemmen op de tekst */
  width: 10px;
  height: 10px;
  background-color: #ffffff; /* Witte kleur voor de binnenkant van de bolletjes */
  border: 2px solid #011049; /* Randkleur zoals de lijn */
  border-radius: 50%; /* Zodat het een bolletje wordt */
}

.custom-step-list li.active::before { 
    align-items: center;
    background-color: #011049;
    border-radius: 50%;
    color: #fff;
    content: "\2713";
    display: flex;
    font-size: 8px;
    font-weight: 400;
    height: 12px;
    justify-content: center;
    top: 9px;
    width: 12px;
    margin-left: -1px;
}

/* Form styling */
#simpleForm {
  margin-top: 1.5rem;
}

#simpleForm label {
  font-weight: bold;
  color: #011049;
  display: block;
  margin-bottom: 0.5rem;
  margin-top:20px;
}

/* Zorg dat input- en select velden 100% breed zijn en onder de labels vallen */
#simpleForm input,
#simpleForm select {
  width: 100%; /* Volledige breedte */
  padding: 0.5rem;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  font-size: 1rem;
/*   margin-bottom: 1rem; /* Zorg voor ruimte tussen velden */ */
  display: block; /* Plaats het veld onder het label */
  box-sizing: border-box;
}



#simpleForm input:focus,
#simpleForm select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

.inactive{
  display:none;
}
.active{
  display:block;
}
#setsubmit,
#startBerekening{
  margin:20px 0px;
}
/* Verborgen velden */
.NotVisible {
  visibility: hidden;
  height: 0;
}

.hideItem {
  display: none;
}

label:after {
  content: " *";
  color: red; 
}

/* Error message styling */
.error-message {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 30px;
}

/* Submit knop */
button[type="submit"],
#startBerekening{
  background-color: #a93cb4;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #bb38c8;
}

/* Responsive styling */
@media (max-width: 768px) {
  .custom-flex {
    flex-direction: column;
  }
  
  .custom-left-column,
  .custom-right-column {
    flex: 1 1 100%;
    padding: 1rem;
  }
}
.input-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #ebebeb;
  padding-right: 20px;
}

.input-wrapper input {
  outline: none;
  text-align: right;
  width: 100px; /* Pas aan op basis van de gewenste breedte */
}

.unit {
  margin-left: 5px;
  white-space: nowrap; /* Zorgt ervoor dat het niet op een nieuwe regel breekt */
}


@media only screen and (max-width: 768px) {
  .custom-left-column {
    display: none;
  }
}

