/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/*
 * Every style defined here must be mirrored with `writing-mode-horizontal-tb` mixin.
   Because writing-mode can be defined on 2 levels: a) item, b) text block or interaction;
     so if there's a horizontal block inside vertical item, vertical styles should *not* be used for it.
 */
/* Do not edit */
.dropdown-form {
  position: relative;
}
.dropdown-form .trigger-button [data-control=trigger] .label:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "tao" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e611";
  padding-left: 1rem;
}
.dropdown-form .form-panel {
  display: none;
  position: absolute;
  z-index: 1;
  padding: 0;
  background: #f3f1ef;
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  border-top: 2px solid #ddd;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dropdown-form .form-panel .form-component {
  border: none;
  margin: 0;
}
.dropdown-form .form-panel .form-component .fieldset {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.dropdown-form.open-on-left .form-panel {
  left: 0;
}
.dropdown-form.open-on-right .form-panel {
  right: 0;
}
.dropdown-form.open .trigger-button [data-control=trigger] .label:after {
  content: "\e610";
}
.dropdown-form.open .form-panel {
  display: block;
}
/*# sourceMappingURL=dropdownForm.css.map */