@charset "UTF-8";
/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to 'false':
 */
/**
 * Is this build mobile first? Setting to 'true' means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass' silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to 'true'.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin'!
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can't take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns' gutters.
 */
.grid {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -1.25em;
  /* [3] */ }

/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */
.grid__item {
  display: inline-block;
  /* [1] */
  padding-left: 1.25em;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */ }

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left; }

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right; }
  .grid--right > .grid__item {
    text-align: left; }

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center; }
  .grid--center > .grid__item {
    text-align: left; }

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle; }

.grid--bottom > .grid__item {
  vertical-align: bottom; }

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -0.625em; }
  .grid--narrow > .grid__item {
    padding-left: 0.625em; }

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -2.5em; }
  .grid--wide > .grid__item {
    padding-left: 2.5em; }

/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
 * Whole
 */
.one-whole {
  width: 100%; }

/**
 * Halves
 */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/**
 * Thirds
 */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
 * Quarters
 */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

/**
 * Fifths
 */
.one-fifth, .two-tenths {
  width: 20%; }

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

/**
 * Sixths
 */
.one-sixth, .two-twelfths {
  width: 16.666%; }

.five-sixths, .ten-twelfths {
  width: 83.333%; }

/**
 * Eighths
 */
.one-eighth {
  width: 12.5%; }

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/**
 * Tenths
 */
.one-tenth {
  width: 10%; }

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

/**
 * Twelfths
 */
.one-twelfth {
  width: 8.333%; }

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (min-width: 31.25em) {
  /**
   * Whole
   */
  .phablet--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .phablet--one-half, .phablet--two-quarters, .phablet--three-sixths, .phablet--four-eighths, .phablet--five-tenths, .phablet--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .phablet--one-third, .phablet--two-sixths, .phablet--four-twelfths {
    width: 33.333%; }

  .phablet--two-thirds, .phablet--four-sixths, .phablet--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .phablet--one-quarter, .phablet--two-eighths, .phablet--three-twelfths {
    width: 25%; }

  .phablet--three-quarters, .phablet--six-eighths, .phablet--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .phablet--one-fifth, .phablet--two-tenths {
    width: 20%; }

  .phablet--two-fifths, .phablet--four-tenths {
    width: 40%; }

  .phablet--three-fifths, .phablet--six-tenths {
    width: 60%; }

  .phablet--four-fifths, .phablet--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .phablet--one-sixth, .phablet--two-twelfths {
    width: 16.666%; }

  .phablet--five-sixths, .phablet--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .phablet--one-eighth {
    width: 12.5%; }

  .phablet--three-eighths {
    width: 37.5%; }

  .phablet--five-eighths {
    width: 62.5%; }

  .phablet--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .phablet--one-tenth {
    width: 10%; }

  .phablet--three-tenths {
    width: 30%; }

  .phablet--seven-tenths {
    width: 70%; }

  .phablet--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .phablet--one-twelfth {
    width: 8.333%; }

  .phablet--five-twelfths {
    width: 41.666%; }

  .phablet--seven-twelfths {
    width: 58.333%; }

  .phablet--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 48em) {
  /**
   * Whole
   */
  .portrait--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .portrait--one-half, .portrait--two-quarters, .portrait--three-sixths, .portrait--four-eighths, .portrait--five-tenths, .portrait--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .portrait--one-third, .portrait--two-sixths, .portrait--four-twelfths {
    width: 33.333%; }

  .portrait--two-thirds, .portrait--four-sixths, .portrait--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .portrait--one-quarter, .portrait--two-eighths, .portrait--three-twelfths {
    width: 25%; }

  .portrait--three-quarters, .portrait--six-eighths, .portrait--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .portrait--one-fifth, .portrait--two-tenths {
    width: 20%; }

  .portrait--two-fifths, .portrait--four-tenths {
    width: 40%; }

  .portrait--three-fifths, .portrait--six-tenths {
    width: 60%; }

  .portrait--four-fifths, .portrait--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .portrait--one-sixth, .portrait--two-twelfths {
    width: 16.666%; }

  .portrait--five-sixths, .portrait--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .portrait--one-eighth {
    width: 12.5%; }

  .portrait--three-eighths {
    width: 37.5%; }

  .portrait--five-eighths {
    width: 62.5%; }

  .portrait--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .portrait--one-tenth {
    width: 10%; }

  .portrait--three-tenths {
    width: 30%; }

  .portrait--seven-tenths {
    width: 70%; }

  .portrait--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .portrait--one-twelfth {
    width: 8.333%; }

  .portrait--five-twelfths {
    width: 41.666%; }

  .portrait--seven-twelfths {
    width: 58.333%; }

  .portrait--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (max-width: 899px) {
  /**
   * Whole
   */
  .less-med-small--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .less-med-small--one-half, .less-med-small--two-quarters, .less-med-small--three-sixths, .less-med-small--four-eighths, .less-med-small--five-tenths, .less-med-small--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .less-med-small--one-third, .less-med-small--two-sixths, .less-med-small--four-twelfths {
    width: 33.333%; }

  .less-med-small--two-thirds, .less-med-small--four-sixths, .less-med-small--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .less-med-small--one-quarter, .less-med-small--two-eighths, .less-med-small--three-twelfths {
    width: 25%; }

  .less-med-small--three-quarters, .less-med-small--six-eighths, .less-med-small--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .less-med-small--one-fifth, .less-med-small--two-tenths {
    width: 20%; }

  .less-med-small--two-fifths, .less-med-small--four-tenths {
    width: 40%; }

  .less-med-small--three-fifths, .less-med-small--six-tenths {
    width: 60%; }

  .less-med-small--four-fifths, .less-med-small--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .less-med-small--one-sixth, .less-med-small--two-twelfths {
    width: 16.666%; }

  .less-med-small--five-sixths, .less-med-small--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .less-med-small--one-eighth {
    width: 12.5%; }

  .less-med-small--three-eighths {
    width: 37.5%; }

  .less-med-small--five-eighths {
    width: 62.5%; }

  .less-med-small--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .less-med-small--one-tenth {
    width: 10%; }

  .less-med-small--three-tenths {
    width: 30%; }

  .less-med-small--seven-tenths {
    width: 70%; }

  .less-med-small--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .less-med-small--one-twelfth {
    width: 8.333%; }

  .less-med-small--five-twelfths {
    width: 41.666%; }

  .less-med-small--seven-twelfths {
    width: 58.333%; }

  .less-med-small--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 900px) {
  /**
   * Whole
   */
  .med-small--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .med-small--one-half, .med-small--two-quarters, .med-small--three-sixths, .med-small--four-eighths, .med-small--five-tenths, .med-small--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .med-small--one-third, .med-small--two-sixths, .med-small--four-twelfths {
    width: 33.333%; }

  .med-small--two-thirds, .med-small--four-sixths, .med-small--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .med-small--one-quarter, .med-small--two-eighths, .med-small--three-twelfths {
    width: 25%; }

  .med-small--three-quarters, .med-small--six-eighths, .med-small--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .med-small--one-fifth, .med-small--two-tenths {
    width: 20%; }

  .med-small--two-fifths, .med-small--four-tenths {
    width: 40%; }

  .med-small--three-fifths, .med-small--six-tenths {
    width: 60%; }

  .med-small--four-fifths, .med-small--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .med-small--one-sixth, .med-small--two-twelfths {
    width: 16.666%; }

  .med-small--five-sixths, .med-small--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .med-small--one-eighth {
    width: 12.5%; }

  .med-small--three-eighths {
    width: 37.5%; }

  .med-small--five-eighths {
    width: 62.5%; }

  .med-small--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .med-small--one-tenth {
    width: 10%; }

  .med-small--three-tenths {
    width: 30%; }

  .med-small--seven-tenths {
    width: 70%; }

  .med-small--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .med-small--one-twelfth {
    width: 8.333%; }

  .med-small--five-twelfths {
    width: 41.666%; }

  .med-small--seven-twelfths {
    width: 58.333%; }

  .med-small--eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 68.75em) {
  /**
   * Whole
   */
  .landscape--one-whole {
    width: 100%; }

  /**
   * Halves
   */
  .landscape--one-half, .landscape--two-quarters, .landscape--three-sixths, .landscape--four-eighths, .landscape--five-tenths, .landscape--six-twelfths {
    width: 50%; }

  /**
   * Thirds
   */
  .landscape--one-third, .landscape--two-sixths, .landscape--four-twelfths {
    width: 33.333%; }

  .landscape--two-thirds, .landscape--four-sixths, .landscape--eight-twelfths {
    width: 66.666%; }

  /**
   * Quarters
   */
  .landscape--one-quarter, .landscape--two-eighths, .landscape--three-twelfths {
    width: 25%; }

  .landscape--three-quarters, .landscape--six-eighths, .landscape--nine-twelfths {
    width: 75%; }

  /**
   * Fifths
   */
  .landscape--one-fifth, .landscape--two-tenths {
    width: 20%; }

  .landscape--two-fifths, .landscape--four-tenths {
    width: 40%; }

  .landscape--three-fifths, .landscape--six-tenths {
    width: 60%; }

  .landscape--four-fifths, .landscape--eight-tenths {
    width: 80%; }

  /**
   * Sixths
   */
  .landscape--one-sixth, .landscape--two-twelfths {
    width: 16.666%; }

  .landscape--five-sixths, .landscape--ten-twelfths {
    width: 83.333%; }

  /**
   * Eighths
   */
  .landscape--one-eighth {
    width: 12.5%; }

  .landscape--three-eighths {
    width: 37.5%; }

  .landscape--five-eighths {
    width: 62.5%; }

  .landscape--seven-eighths {
    width: 87.5%; }

  /**
   * Tenths
   */
  .landscape--one-tenth {
    width: 10%; }

  .landscape--three-tenths {
    width: 30%; }

  .landscape--seven-tenths {
    width: 70%; }

  .landscape--nine-tenths {
    width: 90%; }

  /**
   * Twelfths
   */
  .landscape--one-twelfth {
    width: 8.333%; }

  .landscape--five-twelfths {
    width: 41.666%; }

  .landscape--seven-twelfths {
    width: 58.333%; }

  .landscape--eleven-twelfths {
    width: 91.666%; } }
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
@font-face {
  font-family: 'fontello';
  src: url("../../../fonts/fontello.eot?66746799");
  src: url("../../../fonts/fontello.eot?66746799#iefix") format("embedded-opentype"), url("../../../fonts/fontello.woff?66746799") format("woff"), url("../../../fonts/fontello.ttf?66746799") format("truetype"), url("../../../fonts/fontello.svg?66746799#fontello") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?66746799#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.icon-search:before {
  content: '\e800'; }

/* '' */
.icon-left-dir:before {
  content: '\e801'; }

/* '' */
.icon-right-dir:before, .button:after, .big-block.has-arrow:after {
  content: '\e802'; }

/* '' */
.icon-down-open:before {
  content: '\e803'; }

/* '' */
.icon-menu:before {
  content: '\e804'; }

/* '' */
.icon-up-dir:before, .menu-subcategory-list:before {
  content: '\e805'; }

/* '' */
.icon-down-dir:before, .menu-list .menu-item .subcategory-link:after {
  content: '\e806'; }

/* '' */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.4.2
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2015 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); }

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

.chosen-container a {
  cursor: pointer; }

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999; }

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("../../../Images/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../../../Images/chosen-sprite.png") no-repeat 0px 2px; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: white url("../../../Images/chosen-sprite.png") no-repeat 100% -20px;
  background: url("../../../Images/chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("../../../Images/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
  background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
  background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
  box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url("../../../Images/chosen-sprite.png") no-repeat -30px -20px;
  background: url("../../../Images/chosen-sprite.png") no-repeat -30px -20px;
  direction: rtl; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url("../../../Images/chosen-sprite.png") !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }
/* @end */
@media only screen and (max-width: 499px) {
  .less-phablet-hide {
    display: none; } }
@media only screen and (min-width: 31.25em) {
  .phablet-hide {
    display: none; } }
@media only screen and (max-width: 47.9375em) {
  .less-portrait-hide {
    display: none; } }
@media only screen and (min-width: 48em) {
  .portrait-hide {
    display: none; } }
@media only screen and (max-width: 899px) {
  .less-med-small-hide {
    display: none; } }
@media only screen and (min-width: 900px) {
  .med-small-hide {
    display: none; } }
@media only screen and (max-width: 68.6875em) {
  .less-landscape-hide {
    display: none; } }
@media only screen and (min-width: 68.75em) {
  .landscape-hide {
    display: none; } }
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 400; }

.menu-list .menu-item .subcategory-link:after, .menu-subcategory-list:before, .button:after, .big-block.has-arrow:after {
  font-family: 'fontello'; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .visuallyhidden.focusable:active, .visuallyhidden.focusable:active {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

.invisible {
  visibility: hidden; }

.uppercase {
  text-transform: uppercase; }

.clearfix,
.page-width {
  *zoom: 1; }
  .clearfix:after, .clearfix:before,
  .page-width:after,
  .page-width:before {
    content: " ";
    display: table; }
  .clearfix:after,
  .page-width:after {
    clear: both; }

.text-centered {
  text-align: center; }

.media .media-text {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }
.media img.media-img {
  float: left;
  margin-right: 10px; }

.text-right {
  text-align: right; }

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4; }

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

textarea {
  resize: vertical; }

body {
  font-size: 16px;
  line-height: 26px;
  color: #5c6b66; }

a {
  color: #35A7DB;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }
  a:active {
    color: black; }

h2, .h2 {
  color: #35A7DB;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.08333;
  font-weight: bold;
  border-bottom: solid 1px #ccc;
  padding-bottom: 5px; }

h3, .h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44444;
  font-weight: bold; }

.page-width {
  max-width: 973px;
  margin: 0 auto;
  padding-left: 0.625em;
  padding-right: 0.625em; }

.header-container {
  background-color: white; }

.header-bar {
  height: 100px;
  background-color: white; }
  .header-bar .logo {
    padding: 0;
    margin: 0; }
    .header-bar .logo img {
      height: 60px;
      margin-top: 20px; }

header {
  position: relative; }
  header .menu-icon {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.3; }

nav {
  display: none; }
  nav.isOpen {
    display: block; }
  @media only screen and (min-width: 900px) {
    nav {
      display: block;
      position: absolute;
      right: 0;
      bottom: 0; } }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  nav input[type=submit] {
    width: 90px; }
  nav .search-header {
    position: absolute;
    right: 0;
    top: -35px; }
    nav .search-header input[type=search] {
      width: 40%;
      margin-left: 20px;
      height: initial;
      color: #5c6b66;
      padding: 5px;
      font-size: 13px; }
    nav .search-header button {
      padding: 0;
      font-size: 16px;
      border: none;
      background-color: #35A7DB;
      color: white; }

.menu-list .menu-item {
  margin: 0;
  background-color: white;
  border-right: 1px solid #F7F6F1; }
  @media only screen and (min-width: 900px) {
    .menu-list .menu-item {
      position: relative;
      margin: 0 0.5em;
      float: left;
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 1.85714; } }
  .menu-list .menu-item.active {
    background-color: #35A7DB; }
    .menu-list .menu-item.active a {
      color: white; }
  .menu-list .menu-item a {
    padding: 1em;
    display: block; }
    @media only screen and (max-width: 899px) {
      .menu-list .menu-item a:hover {
        background-color: #35A7DB;
        color: white;
        text-decoration: none; } }
  .menu-list .menu-item .subcategory-link {
    margin-right: 0; }
    @media only screen and (min-width: 900px) {
      .menu-list .menu-item .subcategory-link {
        margin-right: 10px; } }
    .menu-list .menu-item .subcategory-link:after {
      position: absolute;
      right: 10px;
      top: 15px;
      display: none; }
      @media only screen and (min-width: 900px) {
        .menu-list .menu-item .subcategory-link:after {
          display: block; } }
  .menu-list .menu-item:last-child {
    border: none; }

.menu-subcategory-list {
  background-color: #6B737C;
  z-index: 50;
  display: none; }
  @media only screen and (max-width: 899px) {
    .menu-subcategory-list.isOpen {
      display: block; } }
  @media only screen and (min-width: 900px) {
    .menu-list .menu-item:hover .menu-subcategory-list {
      display: block; } }
  .menu-subcategory-list:before {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.85714;
    position: absolute;
    right: 25px;
    top: -30px;
    color: #6B737C;
    display: none; }
    @media only screen and (min-width: 900px) {
      .menu-subcategory-list:before {
        display: block; } }
  @media only screen and (min-width: 900px) {
    .menu-subcategory-list {
      position: absolute;
      right: 0;
      width: 200px; } }
  .menu-subcategory-list .menu-subcategory-item:hover {
    background-color: #35A7DB; }
  .menu-subcategory-list .menu-subcategory-item a {
    color: white; }

.button {
  background-color: #35A7DB;
  color: white;
  padding: 5px 50px 5px 10px;
  position: relative;
  display: inline-block;
  border: solid 1px #35A7DB; }
  .button:after {
    position: absolute;
    right: 10px; }
  .button:hover {
    background-color: white;
    color: #35A7DB;
    text-decoration: none; }
  .button:active {
    background-color: #35A7DB;
    border: solid 1px #35A7DB;
    color: black;
    text-decoration: none; }
  .button.search-side {
    padding: 0; }
  .button.submit {
    padding: 0;
    width: 20%; }

.footer-container {
  background-color: #6B737C; }

footer {
  padding: 1.25em 0; }
  footer ul {
    padding: 0;
    margin: 0;
    list-style: none; }
    footer ul li a {
      color: white; }
  footer .category-block {
    margin-bottom: 0.625em;
    padding-bottom: 0.625em; }
    @media only screen and (max-width: 899px) {
      footer .category-block:not(:last-child) {
        border-bottom: solid 1px #CCC; } }
    footer .category-block .category-name {
      color: #00BEEE; }
  footer .copyright {
    text-align: center;
    color: white; }

input {
  width: 100%;
  height: 30px;
  border-radius: 5px; }

textarea {
  width: 100%; }

.input-container {
  margin: 16px 0; }

.main-container .main-container-inner .grid .health-topics-search {
  overflow: visible; }

.article-block .inner {
  padding: 0 20px 0 0; }
.article-block.mobile-only {
  display: none; }
.article-block .article-description {
  color: #5c6b66; }
.article-block .article-author {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.85714; }
.article-block .article-related {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.85714; }
  .article-block .article-related ul {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0; }
    .article-block .article-related ul li {
      float: left;
      margin-right: 5px;
      padding-right: 5px; }
      .article-block .article-related ul li:not(:last-child) {
        border-right: solid 1px #5c6b66 y; }

.main-container-inner table th {
  text-align: left; }

.no-js .slider-block > img:not(:first-child) {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../../../Images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../../../fonts/slick.eot");
  src: url("../../../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../../../fonts/slick.woff") format("woff"), url("../../../fonts/slick.ttf") format("truetype"), url("../../../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -16px;
  background-color: rgba(0, 0, 0, 0.5);
  list-style: none;
  display: block;
  text-align: right;
  padding: 0;
  padding-bottom: 5px;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: white;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: white;
      opacity: 0.75; }

.box-container {
  padding-bottom: 1.25em; }
  .box-container .inner {
    background-color: white;
    padding: 0.5em;
    border: solid 1px #CCC;
    border-radius: 5px; }
  .box-container .box-author {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.85714; }
  .box-container .box-related {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.85714; }
    .box-container .box-related ul {
      list-style: none;
      display: inline-block;
      padding: 0;
      margin: 0; }
      .box-container .box-related ul li {
        float: left;
        margin-right: 5px;
        padding-right: 5px; }
        .box-container .box-related ul li:not(:last-child) {
          border-right: solid 1px #CCC; }

.pagination-block .inner {
  float: right; }
.pagination-block .pagination-list {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0; }
  .pagination-block .pagination-list > li {
    display: inline; }
    .pagination-block .pagination-list > li a {
      position: relative;
      float: left;
      padding: 6px 12px;
      margin-left: -1px;
      line-height: 1.42857143;
      text-decoration: none;
      background-color: white;
      border: 1px solid #CCC;
      width: 10px;
      height: 20px; }
      .pagination-block .pagination-list > li a.active {
        background-color: #35A7DB;
        color: white; }
      .pagination-block .pagination-list > li a:hover {
        background-color: #9ad3ed;
        color: white; }
    .pagination-block .pagination-list > li:first-child > a {
      margin-left: 0; }
    .pagination-block .pagination-list > li .icon:before {
      margin: 0 -5px;
      font-size: 1.5em; }

.chosen-container .chosen-results li.highlighted {
  background: none;
  background-color: #35A7DB; }

.chosen-container-single .chosen-single {
  border-radius: 0;
  box-shadow: none;
  background-image: none;
  background-color: #9ad3ed;
  border: 0; }

.chosen-container-single .chosen-default {
  color: black; }

.side-menu {
  background-color: #35A7DB;
  margin-bottom: 16px;
  color: white; }
  .side-menu .side-menu-item {
    background-color: #c2e4f4;
    padding: 10px; }
    .side-menu .side-menu-item.active {
      background-color: #71c1e5; }
      .side-menu .side-menu-item.active a {
        color: white; }
  .side-menu h2 {
    color: white;
    margin: 0;
    border: 0;
    padding: 10px; }
  .side-menu input[type=text] {
    color: #5c6b66; }

.page-homepage .ourservices-block img {
  margin-right: 10px; }
  @media only screen and (min-width: 48em) {
    .page-homepage .ourservices-block img {
      float: left; } }
.page-homepage .ourservices-block .ourservices-content {
  clear: both;
  overflow: hidden; }
.page-homepage .ourservices-block .button {
  margin-top: 5px; }

.main-container {
  background-color: #35A7DB;
  background-image: -webkit-linear-gradient(#35A7DB, #aedbf0);
  background-image: linear-gradient(#35A7DB, #aedbf0); }
  @media only screen and (min-width: 68.75em) {
    .main-container {
      padding-bottom: 1.25em; } }

.main-container-inner {
  background-color: #F7F6F1;
  background-image: -webkit-linear-gradient(#F7F6F1, white);
  background-image: linear-gradient(#F7F6F1, white);
  padding-top: 1.25em;
  padding-bottom: 1.25em; }
  .main-container-inner > .grid > .grid__item {
    overflow: hidden; }
    @media only screen and (min-width: 48em) {
      .main-container-inner > .grid > .grid__item {
        padding: 0.625em; } }

.opening-hours ul {
  padding: 0;
  margin: 0;
  list-style: none; }

section {
  margin-bottom: 1.25em; }

.big-block {
  display: block;
  position: relative;
  background-color: #35A7DB;
  margin-bottom: 16px;
  width: 100%;
  color: white; }
  .big-block > .inner {
    display: block;
    padding: 10px; }
  .big-block .sub-block {
    background-color: #85cae9; }
  .big-block h2 {
    color: white;
    margin: 0;
    border: 0; }
  .big-block.has-arrow:after {
    position: absolute;
    right: 10px;
    top: 30px; }

.rigth-container h2 {
  margin-top: 0; }

.hero-image img {
  width: 100%; }

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/*# sourceMappingURL=main.css.map */
