/* ================================
   GLOBAL TOOL SETTINGS (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;
}

.zy_select_wrapper {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  font-size: 14px;
  font-family: inherit;
}

.zy_select_display {
  cursor: pointer;
}

.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: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #333333 !important;
  border-radius: 5px;
  text-align: left !important;
}

.zy_select_label {
  flex: 1 1 auto;
  text-align: left;
}

.zy_select_arrow {
  flex: 0 0 auto;
  margin-left: 8px;
  font-size: 20px;
}

.zy_select_list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #ffffff !important;
  border: 1px solid #333333 !important;
  border-top: none;
  z-index: 9999;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}

.zy_select_option {
  padding: 6px 10px;
  cursor: pointer;
  background-color: #ffffff !important;
  color: #333333 !important;
}

.zy_select_option:hover,
.zy_select_option[aria-selected="true"] {
  background-color: #ffffff !important;
}

.zy_select_option--disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
