/*
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 */
.form-widget {
  margin: 10px 0;
}
.form-widget .widget-label {
  display: inline-block;
  margin-top: 8px;
  width: 34%;
  vertical-align: top;
}
.form-widget .widget-field {
  display: inline-block;
  min-width: 150px;
  width: 65%;
}
.form-widget .widget-field .widget-input, .form-widget .widget-field .widget-input-inline {
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  background-color: white;
  color: #222;
  font-family: "Source Sans Pro", sans-serif;
  padding: 8px;
  width: 100%;
}
.form-widget .widget-field .widget-input-inline {
  font: inherit;
  height: 36px;
}
.form-widget .widget-field .check-box-input, .form-widget .widget-field .radio-box-input {
  color: #222;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  padding: 4px;
  width: 100%;
}
.form-widget .widget-field .check-box-input .option, .form-widget .widget-field .radio-box-input .option {
  padding-top: 4px;
}
.form-widget.error .widget-field .widget-input,
.form-widget.error .widget-field .widget-input-inline,
.form-widget.error .widget-field .check-box-input, .form-widget.invalid .widget-field .widget-input,
.form-widget.invalid .widget-field .widget-input-inline,
.form-widget.invalid .widget-field .check-box-input {
  border-color: rgb(186, 18, 43);
  color: rgb(186, 18, 43);
}
/*# sourceMappingURL=widget.css.map */