/**
 * @file
 * better_exposed_filters.css
 *
 * Basic styling for features added by Better Exposed Filters
 */
.bef-exposed-form .form--inline .form-item {
  float: none;
}
.bef-exposed-form .form--inline > .form-item {
  float: left; /* LRT */
}

/*
 * Visually hiding the autosubmit button if the setting is set.
 * We're doing it this way, instead of the regular .js-hide dispay: none;
 * core way for two reasons:
 * - This way, the button is still visible for screenreaders
 * - There is an issue with Safari, where pressing enter in an textfield that
 *   has display: none; does not trigger a ajax submit.
 */
.js .js-bef-hide {
  position: absolute;
  left: -99999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Commenting out CSS additions until they are proven to be needed in D8. */

/*
 * Prevents collapsed filters from disappearing completely
fieldset.bef-select-as-radios-fieldset.collapsed legend,
fieldset.bef-select-as-checkboxes-fieldset.collapsed legend
{
  position: relative;
}
 */

/*
 * Styles for the jQuery UI slider widgets.
.bef-slider.ui-slider-horizontal {
  margin-top: 6px;
}
.bef-slider.ui-slider-vertical {
  margin-top: 12px;
}
*/
