/* ================================
   CUSTOM SELECT
   ================================ */

.zy_core_select_native_hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* native select onzichtbaar maar aanwezig */
.zy_select_native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* wrapper: full width */
.zy_select_wrapper {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  font-size: 14px;
  font-family: inherit;
}

/* zichtbare knop (basis) */
.zy_select_display {
  cursor: pointer;
}

/* zichtbare knop (layout + overrides) */
.zy_select_wrapper .zy_select_display {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;

  width: 100% !important;
  max-width: 100% !important;
  padding: 6px 10px;
  box-sizing: border-box;

  background-color: #fedc86 !important;
  color: #333333 !important;
  border: 1px solid #333333 !important;
  border-radius: 5px;
  text-align: left !important;
}

/* Tekstlabel links */
.zy_select_label {
  flex: 1 1 auto;
  text-align: left;
}

/* Arrow rechts */
.zy_select_arrow {
  flex: 0 0 auto;
  margin-left: 8px;
  font-size: 20px;
}

/* uitklaplijst */
.zy_select_list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fedc86 !important;
  border: 1px solid #333333 !important;
  border-top: none;
  z-index: 9999;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}

/* opties */
.zy_select_option {
  padding: 6px 10px;
  cursor: pointer;
  background-color: #fedc86 !important;
  color: #333333 !important;
}

.zy_select_option:hover,
.zy_select_option[aria-selected="true"] {
  background-color: #fedc86 !important; /* hoverkleur */
}

/* Globale einde-knoppen */
.zytool_btn_ending_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.zytool_btn_ending {
  box-sizing: border-box;
  min-width: 180px;
  max-width: 260px;
  height: 75px;
  background-color: #9bca89;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.02s ease-in-out,
    box-shadow 0.02s ease-in-out,
    background-color 0.15s;
}
.zytool_btn_ending:hover,
.zytool_btn_ending:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  background-color: #7cbd65;
  color: #fff;
}

/**/
/**/
/**/
/**/
/**/

.zytool_info_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

.zytool_info_step {
  display: flex;
  flex-direction: column;
  width: 20%;
}

/**/
/**/
/**/
/**/
/**/

@media (max-width: 900px) {
  .zytool_info_container {
    flex-direction: column;
  }
  .zytool_info_step {
    width: 100%;
  }
}
