#offerte {
  transition: 0.25s;
  height: 100vh;
  width: 100%;
  background-color: var(--bg-1);
  display: flex;
}

/* form */
#offerte .form {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

#offerte .form .wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 640px;
}

#offerte .form .title {
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

#offerte .form .title h2 {
  margin-top: 8px;
}

#offerte .form .form-options {
  z-index: 1;
  position: relative;
}

#offerte .form .form-options-buttons {
  transform: translateY(8px);
  transition: 0.25s;
  position: absolute;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
}

#offerte .form .form-options-buttons.active {
  transform: translateY(0);
  position: relative;
  pointer-events: all;
  opacity: 1;
}

#offerte .form .buttons {
  width: 100%;
  display: flex;
  gap: 8px;
}

#offerte .form .buttons button:nth-child(1)  {
  width: 100%;
}


/* preview */
#offerte .preview {
  transition: 0.25s;
  width: 100%;
  height: 100%;
  background-color: var(--bg-2);
  overflow: hidden;
}

#offerte.completed .preview {
  width: 0%;
}

/* map */
#map {
  scale: 1.1;
}

/* address list */
.address-list {
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--white-opacity-3);
  border-radius: 8px;
  width: 100%;
  position: absolute;
  top: 60px;
  left: -1px;
  display: none;
}

.address-list .address-item {
  transition: 0.25s;
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 40px;
  background-color: var(--bg-1);
}

.address-list .address-item:hover {
  gap: 16px 18px;
  background-color: var(--bg-2);
}

.address-list .address-item h3 {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
}

.address-list .address-item p {
  opacity: 0.75;
  color: var(--white);
  font-size: 18px;
}

/* samenvatting */
#options-6 {
  gap: 0px !important;
}
.summary {
  transition: 0.25s;
  cursor: pointer;
  padding: 14px 20px 18px 20px;
  border-bottom: 1px solid var(--white-opacity-3);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.summary:hover {
  padding: 14px 20px 18px 24px;
  background-color: var(--white-opacity-2);
}

.summary .name {
  align-items: center;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
}

.summary .name span {
  transition: 0.25s;
  color: var(--white);
  font-size: 22px;
  opacity: 0.45;
}

.summary:hover .name span {
  color: var(--purple-2);
  opacity: 1;
}

.summary .answer p  {
  line-height: 24px;
  font-size: 22px;
}

/* step value */
#step-value {
  transition: 0.25s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--purple);
}

/* inputs */
#overig-input-container {
  transition: 0.25s;
  display: none;
  opacity: 0;
  pointer-events: none;
}

#overig-input-container input {
  border-radius: 24px;
  padding: 17px 16px;
}

#overig-input-container p {
  top: -32px;
  font-size: 18px;
}

#overig-input-container.active {
  display: flex;
}


/* media queries */
@media (max-width: 1400px) {
  #offerte .form .wrapper {
    width: 90%;
  }
}

@media (max-width: 1250px) {
  #offerte .preview {
    display: none;
  }
}

@media (max-width: 750px) {
  .summary .answer p {
    font-size: 20px;
  }

  .checkbox-item p {
    font-size: 20px;
  }
}