/*!*****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/form-dropdown/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************/
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 22px;
  right: 16px;
  width: 12px;
  height: 7px;
  background: var(--gray);
  transition: transform ease-out 200ms;
  transform-origin: center;
  transform: rotate(180deg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=%2713%27 height=%279%27 viewBox=%270 0 13 9%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0.664062 8.07004L6.4974 1.92969L12.3307 8.07004%27 stroke=%27black%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width=%2713%27 height=%279%27 viewBox=%270 0 13 9%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0.664062 8.07004L6.4974 1.92969L12.3307 8.07004%27 stroke=%27black%27 stroke-width=%271.5%27/%3E%3C/svg%3E%0A");
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  transform: rotate(0deg);
}

.form-style-secondary .form-element:has(.select-arrow-active) {
  border-color: var(--accent) !important;
}

/*style the items (options), including the selected item:*/
.select-items div {
  color: var(--gray);
  padding: 10px 15px;
  background-color: transparent;
  border-radius: var(--radius, 5px);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
}

.form-style-secondary .select-items div {
  padding-inline: 0;
  color: var(--dark);
  opacity: 0.6;
}

.select-selected {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: var(--gray);
  line-height: 19px;
}

.select-selected.changed-initial-option {
  color: var(--dark);
}

/*style items (options):*/
.select-items {
  position: absolute;
  display: grid;
  gap: 2px;
  background: var(--background, white);
  border: 1px solid var(--light);
  border-top: 0;
  border-radius: 0 0 var(--radius, 5px) var(--radius, 5px);
  top: 100%;
  left: -1px;
  right: -1px;
  z-index: 99;
  transform: translateY(-3px);
  padding: 10px;
  transition: border-color ease-out 200ms;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.05);
}

.form-style-secondary .select-items {
  background: transparent;
  position: relative;
  top: 0;
  box-shadow: none;
  border: 0;
  padding-inline: 0;
}

.form-element:hover .select-items {
  border-color: var(--gray);
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.select-items .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

.form-style-secondary .select-items div:hover,
.form-style-secondary .select-items .same-as-selected {
  background-color: transparent;
  color: var(--accent);
  opacity: 1;
}

.form-element:has(select.disabled) {
  border-color: var(--light) !important;
  background-color: transparent !important;
  pointer-events: none;
}

.form-element:has(select.disabled) .select-selected {
  color: var(--gray) !important;
}

/*# sourceMappingURL=style-index.css.map*/