/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/2815083
 * @preserve
 */

/**
 * @file
 * Visual styles for autocomplete input field.
 */

/*
  Media query breakpoints.
  Processed by postcss/postcss-custom-media.
*/

/* Navigation related breakpoints */

/* Grid related breakpoints */

/* Grid shifts from 6 to 14 columns. */

/* Width of the entire grid maxes out. */

/*
  Custom CSS properties.

  These are "compiled" by postcss/postcss-custom-properties for IE11 compatibility.
*/

:root {

  /* Typography */

  /* Layout */

  /* Drupal administrative toolbar heights and width. */

  /*
    Grid helpers.

    These variables help authors apply widths and negative margins to break items out of
    the grid, while still conforming to the larger grid system.

    Note we cannot change the values of these custom properties within media queries,
    as they are processed by postcss/postcss-custom-properties (for IE11 compatibility),
    which does not support that functionality. Therefore, we need a separate custom
    property for each breakpoint. 😭
  */ /* Approximate width of a scrollbar. Doesn't have to be perfect. */

  /* Grid gap across various breakpoints. */

  /* Column counts at various breakpoints. */

  /* Count of grid-gaps at various breakpoints. */

  /* Width of the entire grid at various breakpoints. */

  /* Width of a grid column at various breakpoints */

  /* Layout helpers */ /* Black */ /* Black 1 */ /* Black 2 */ /* Black 3 */ /* Gray Dark */ /* Gray medium */ /* Gray medium 1 */ /* Gray medium 2 */ /* Black 4 */ /* Gray light */ /* Gray light 1 */ /* Gray light 2 */ /* Blue dark */ /* Blue dark 2 */ /* Blue medium */ /* Blue bright */ /* Blue bright 5 */ /* White */ /* Red */ /* Gold */ /* Green */

  /* Shadows */

  /* Radius */

  /* Outlines */

  /* Header */

  /* Width of slide out navigation */

  /* Border radius */

  /* Form */
}

html[dir=ltr].js .form-autocomplete {
  padding-right: 54px;
  background:
      url("../../images/magnifying-glass.svg") no-repeat right 18px top 16px,
      linear-gradient(to right, #7e96a7 6px, transparent 6px, transparent 100%) #f7f9fa;
  }

html[dir=rtl].js .form-autocomplete {
    padding-left: 54px;
    background:
      url("../../images/magnifying-glass.svg") no-repeat left 18px top 16px,
      linear-gradient(to left, #7e96a7 6px, transparent 6px, transparent 100%) #f7f9fa;
  }

html[dir=ltr].js .form-autocomplete:hover {
  background:
        url("../../images/magnifying-glass.svg") no-repeat right 18px top 16px,
        linear-gradient(to right, #53b0eb 6px, transparent 6px, transparent 100%),
        linear-gradient(to left, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
    }

html[dir=rtl].js .form-autocomplete:hover {
      background:
        url("../../images/magnifying-glass.svg") no-repeat left 18px top 16px,
        linear-gradient(to left, #53b0eb 6px, transparent 6px, transparent 100%),
        linear-gradient(to right, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
    }

html[dir=ltr].js .form-autocomplete:focus {
  background:
        url("../../images/magnifying-glass.svg") no-repeat right 18px top 16px,
        linear-gradient(to right, #53b0eb 6px, transparent 6px, transparent 100%),
        linear-gradient(to left, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
    }

html[dir=rtl].js .form-autocomplete:focus {
      background:
        url("../../images/magnifying-glass.svg") no-repeat left 18px top 16px,
        linear-gradient(to left, #53b0eb 6px, transparent 6px, transparent 100%),
        linear-gradient(to right, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
    }

html[dir=ltr].js .form-autocomplete.ui-autocomplete-loading {
  background:
        url("../../images/throbber.svg") no-repeat right 18px top 16px,
        linear-gradient(to right, #7e96a7 6px, transparent 6px, transparent 100%) #f7f9fa;
    }

html[dir=rtl].js .form-autocomplete.ui-autocomplete-loading {
      background:
        url("../../images/throbber.svg") no-repeat left 18px top 16px,
        linear-gradient(to left, #7e96a7 6px, transparent 6px, transparent 100%) #f7f9fa;
    }

html[dir=ltr].js .form-autocomplete.ui-autocomplete-loading:hover {
  background:
          url("../../images/throbber.svg") no-repeat right 18px top 16px,
          linear-gradient(to right, #53b0eb 6px, transparent 6px, transparent 100%),
          linear-gradient(to left, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
      }

html[dir=rtl].js .form-autocomplete.ui-autocomplete-loading:hover {
        background:
          url("../../images/throbber.svg") no-repeat left 18px top 16px,
          linear-gradient(to left, #53b0eb 6px, transparent 6px, transparent 100%),
          linear-gradient(to right, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
      }

html[dir=ltr].js .form-autocomplete.ui-autocomplete-loading:focus {
  background:
          url("../../images/throbber.svg") no-repeat right 18px top 16px,
          linear-gradient(to right, #53b0eb 6px, transparent 6px, transparent 100%),
          linear-gradient(to left, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
      }

html[dir=rtl].js .form-autocomplete.ui-autocomplete-loading:focus {
        background:
          url("../../images/throbber.svg") no-repeat left 18px top 16px,
          linear-gradient(to left, #53b0eb 6px, transparent 6px, transparent 100%),
          linear-gradient(to right, #53b0eb 2px, transparent 2px, transparent 100%) #f7f9fa;
      }
