@charset "UTF-8";
/* ==========================================================================
   INUITCSS
   ========================================================================== */
/**
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/**
 * This is an example inuitcss manifest file. DO NOT MODIFY THIS FILE DIRECTLY.
 * Instead, copy and paste it into your own CSS directory and make additions,
 * extensions, and modifications there.
 */
/**
 * CONTENTS
 *
 * SETTINGS
 * Config...............Project-level configuration and feature switches.
 * Core.................inuitcss’ core and setup settings.
 * Global...............Project-wide variables and settings.
 *
 * TOOLS
 * Font-size............A mixin which guarantees baseline-friendly line-heights.
 * Clearfix.............Micro clearfix mixin.
 * Hidden...............Mixin for hiding elements.
 * Sass MQ..............inuitcss’ default media query manager.
 *
 * GENERIC
 * Box-sizing...........Better default `box-sizing`.
 * Normalize.css........A level playing field using @necolas’ Normalize.css.
 * Reset................A tiny reset to complement Normalize.css.
 * Shared...............Sensibly and tersely share some global commonalities
 *                      (particularly useful when managing vertical rhythm).
 *
 * ELEMENTS
 * Page.................Set up our document’s default `font-size` and
 *                      `line-height`.
 * Headings.............Very minimal (i.e. only font-size information) for
 *                      headings 1 through 6.
 * Images...............Base image styles.
 * Tables...............Simple table styles.
 *
 * OBJECTS
 * Wrapper..............Page constraint object.
 * Layout...............Generic layout module.
 * Media................Image- and text-like content side by side. The
 *                      poster-child of OOCSS.
 * Flag.................Table-layout-based advancement on the Media object.
 * List-bare............Lists with no bullets or indents.
 * List-inline..........A list whose items all site in a line.
 * Box..................Simple boxing abstraction.
 * Block................Image-on-top-of-text object.
 * Ratio................A container for maintaining aspect ratio of content.
 * Crop.................Provide a cropping context for media (images, etc.).
 * Table................Classes for manipulating `table`s.
 * Pack.................Pack items into available horizontal space.
 *
 * COMPONENTS
 * Buttons..............An example button component, and how it fits into the
 *                      inuitcss framework.
 *
 * UTILITIES
 * Clearfix.............Bind our clearfix onto a utility class.
 * Widths...............Simple width helper classes.
 * Headings.............Reassigning our heading styles to helper classes.
 * Spacings.............Nudge bits of the DOM around with these spacing
 *                      classes.
 * Responsive-Spacings..Enhances the function of normal spacings for
 *                      responsive usage.
 * Print................Reset-like styles taken from the HTML5 Boilerplate.
 * Hide.................Helper classes to hide content
 */
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0; }

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0; }

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0; }

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 24px; }

/**
 * Consistent indentation for lists.
 */
dd, ol, ul {
  margin-left: 24px; }

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */ }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.16667; }
  h1.page-header {
    border: none;
    text-transform: uppercase;
    color: #004878;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 1rem; }

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.28571; }

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25; }

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5; }

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333; }

h6 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

@media screen and (max-width: 1023px) {
  h1.page-header {
    font-size: 1rem;
    margin: 0 0 1rem; } }

.page-header-with-back {
  display: flex;
  align-items: center;
  margin-bottom: 2rem; }
  .page-header-with-back a.btn {
    text-decoration: none;
    margin-right: 3rem; }
  .page-header-with-back h1.page-header {
    white-space: nowrap;
    margin: 0;
    padding: 0; }
  .page-header-with-back .field--label-inline .field--label::after {
    content: ""; }

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */ }

/**
   * If a `width` and/or `height` attribute has been explicitly defined, let’s
   * not make the image fluid.
   */
img[width],
img[height] {
  max-width: none; }

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
table {
  width: 100%;
  /* [1] */ }

a {
  text-decoration: underline;
  color: #00c48c; }

.footer {
  padding: 0; }

body {
  background-color: #fcfcfc;
  color: #141517;
  font-family: "Roboto", Arial, Sans-Serif; }

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.o-wrapper {
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px; }
  .o-wrapper:after {
    content: "" !important;
    display: block !important;
    clear: both !important; }

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/**
 * Grid-like layout system.
 *
 * The layout object provides us with a column-style layout system. This file
 * contains the basic structural elements, but classes should be complemented
 * with width utilities, for example:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *     <div class="o-layout__item  u-1/2">
 *     </div>
 *   </div>
 *
 * The above will create a two-column structure in which each column will
 * fluidly fill half of the width of the parent. We can have more complex
 * systems:
 *
 *   <div class="o-layout">
 *     <div class="o-layout__item  u-1/1  u-1/3@medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3@medium">
 *     </div>
 *     <div class="o-layout__item  u-1/2  u-1/3@medium">
 *     </div>
 *   </div>
 *
 * The above will create a system in which the first item will be 100% width
 * until we enter our medium breakpoint, when it will become 33.333% width. The
 * second and third items will be 50% of their parent, until they also become
 * 33.333% width at the medium breakpoint.
 *
 * We can also manipulate entire layout systems by adding a series of modifiers
 * to the `.o-layout` block. For example:
 *
 *   <div class="o-layout  o-layout--reverse">
 *
 * This will reverse the displayed order of the system so that it runs in the
 * opposite order to our source, effectively flipping the system over.
 *
 *   <div class="o-layout  o-layout--[right|center]">
 *
 * This will cause the system to fill up from either the centre or the right
 * hand side. Default behaviour is to fill up the layout system from the left.
 *
 * There are plenty more options available to us: explore them below.
 */
/* Default/mandatory classes
   ========================================================================== */
/**
 * 1. Allows us to use the layout object on any type of element.
 * 2. We need to defensively reset any box-model properties.
 * 3. Use the negative margin trick for multi-row grids:
 *    http://csswizardry.com/2011/08/building-better-grid-systems/
 */
.o-layout {
  display: block;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  list-style: none;
  /* [1] */
  margin-left: -24px;
  /* [3] */
  font-size: 0; }

/**
   * 1. Required in order to combine fluid widths with fixed gutters.
   * 2. Allows us to manipulate grids vertically, with text-level properties,
   *    etc.
   * 3. Default item alignment is with the tops of each other, like most
   *    traditional grid/layout systems.
   * 4. By default, all layout items are full-width (mobile first).
   * 5. Gutters provided by left padding:
   *    http://csswizardry.com/2011/08/building-better-grid-systems/
   * 6. Fallback for old IEs not supporting `rem` values.
   */
.o-layout__item {
  box-sizing: border-box;
  /* [1] */
  display: inline-block;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  padding-left: 24px;
  /* [5] */
  font-size: 16px;
  /* [6] */
  font-size: 1rem; }

/* Gutter size modifiers
   ========================================================================== */
.o-layout--flush {
  margin-left: 0; }
  .o-layout--flush > .o-layout__item {
    padding-left: 0; }

.o-layout--tiny {
  margin-left: -6px; }
  .o-layout--tiny > .o-layout__item {
    padding-left: 6px; }

.o-layout--small {
  margin-left: -12px; }
  .o-layout--small > .o-layout__item {
    padding-left: 12px; }

.o-layout--large {
  margin-left: -48px; }
  .o-layout--large > .o-layout__item {
    padding-left: 48px; }

.o-layout--huge {
  margin-left: -96px; }
  .o-layout--huge > .o-layout__item {
    padding-left: 96px; }

/* Vertical alignment modifiers
   ========================================================================== */
/**
 * Align all grid items to the middles of each other.
 */
.o-layout--middle > .o-layout__item {
  vertical-align: middle; }

/**
 * Align all grid items to the bottoms of each other.
 */
.o-layout--bottom > .o-layout__item {
  vertical-align: bottom; }

/**
 * Stretch all grid items of each row to have an equal-height.
 * Please be aware that this modifier class doesn’t take any effect in IE9 and
 * below and other older browsers due to the lack of `display: flex` support.
 */
.o-layout--stretch {
  display: flex;
  flex-wrap: wrap; }
  .o-layout--stretch > .o-layout__item {
    display: flex; }
  .o-layout--stretch.o-layout--center {
    justify-content: center; }
  .o-layout--stretch.o-layout--right {
    justify-content: flex-end; }
  .o-layout--stretch.o-layout--left {
    justify-content: flex-start; }

/* Fill order modifiers
   ========================================================================== */
/**
 * Fill up the layout system from the centre.
 */
.o-layout--center {
  text-align: center; }
  .o-layout--center > .o-layout__item {
    text-align: left; }

/**
 * Fill up the layout system from the right-hand side.
 */
.o-layout--right {
  text-align: right; }
  .o-layout--right > .o-layout__item {
    text-align: left; }

/**
 * Fill up the layout system from the left-hand side. This will likely only be
 * needed when using in conjunction with `.o-layout--reverse`.
 */
.o-layout--left {
  text-align: left; }
  .o-layout--left > .o-layout__item {
    text-align: left; }

/**
 * Reverse the rendered order of the grid system.
 */
.o-layout--reverse {
  direction: rtl; }
  .o-layout--reverse > .o-layout__item {
    direction: ltr; }

/* Auto-widths modifier
   ========================================================================== */
/**
 * Cause layout items to take up a non-explicit amount of width.
 */
.o-layout--auto > .o-layout__item {
  width: auto; }

@media screen and (max-width: 992px) {
  .layout-region-checkout-main,
  .layout-region-checkout-footer {
    width: 100%;
    padding-right: 0; }
  .layout-region-checkout-secondary {
    width: 100%; } }

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.o-media {
  display: block; }
  .o-media:after {
    content: "" !important;
    display: block !important;
    clear: both !important; }

.o-media__img {
  float: left;
  margin-right: 24px; }
  .o-media__img > img {
    display: block; }

.o-media__body {
  overflow: hidden;
  display: block; }
  .o-media__body,
  .o-media__body > :last-child {
    margin-bottom: 0; }

/* Size variants
   ========================================================================== */
/**
 * Modify the amount of space between our image and our text. We also have
 * reversible options for all available sizes.
 */
.o-media--flush > .o-media__img {
  margin-right: 0;
  margin-left: 0; }

.o-media--tiny > .o-media__img {
  margin-right: 6px; }

.o-media--tiny.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 6px; }

.o-media--small > .o-media__img {
  margin-right: 12px; }

.o-media--small.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 12px; }

.o-media--large > .o-media__img {
  margin-right: 48px; }

.o-media--large.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 48px; }

.o-media--huge > .o-media__img {
  margin-right: 96px; }

.o-media--huge.o-media--reverse > .o-media__img {
  margin-right: 0;
  margin-left: 96px; }

/* Reversed media objects
   ========================================================================== */
.o-media--reverse > .o-media__img {
  float: right;
  margin-right: 0;
  margin-left: 24px; }

/* ==========================================================================
   #FLAG
   ========================================================================== */
/**
 * The flag object is a design pattern similar to the media object, however it
 * utilises `display: table[-cell];` to give us control over the vertical
 * alignments of the text and image.
 *
 * http://csswizardry.com/2013/05/the-flag-object/
 *
 * 1. Allows us to control vertical alignments.
 * 2. Force the object to be the full width of its parent. Combined with [1],
 *    this makes the object behave in a quasi-`display: block;` manner.
 * 3. Reset inherited `border-spacing` declarations.
 */
.o-flag {
  display: table;
  /* [1] */
  width: 100%;
  /* [2] */
  border-spacing: 0;
  /* [3] */ }

/**
   * Items within a flag object. There should only ever be one of each.
   *
   * 1. Default to aligning content to their middles.
   */
.o-flag__img,
.o-flag__body {
  display: table-cell;
  vertical-align: middle;
  /* [1] */ }

/**
   * Flag images have a space between them and the body of the object.
   *
   * 1. Force `.flag__img` to take up as little space as possible:
   *    https://pixelsvsbytes.com/2012/02/this-css-layout-grid-is-no-holy-grail/
   */
.o-flag__img {
  width: 1px;
  /* [1] */
  padding-right: 24px;
  /**
     * 1. Fixes problem with images disappearing.
     *
     *    The direct child selector '>' needs to remain in order for nested flag
     *    objects to not inherit their parent’s formatting. In case the image tag
     *    is wrapped into another tag, e.g. an anchor for linking reasons, it will
     *    disappear. In that case try wrapping the whole o-flag__img object into
     *    an anchor tag.
     *
     *    E.g.:
     *
     *      <a href="/">
     *        <div class="o-flag__img">
     *          <img src="./link/to/image.jpg" alt="image alt text">
     *        </div>
     *      </a>
     */ }
  .o-flag__img > img {
    max-width: none;
    /* [1] */ }

/**
   * The container for the main content of the flag object.
   *
   * 1. Forces the `.flag__body` to take up all remaining space.
   */
.o-flag__body {
  width: auto;
  /* [1] */ }
  .o-flag__body,
  .o-flag__body > :last-child {
    margin-bottom: 0; }

/* Size variants
   ========================================================================== */
.o-flag--flush > .o-flag__img {
  padding-right: 0;
  padding-left: 0; }

.o-flag--tiny > .o-flag__img {
  padding-right: 6px; }

.o-flag--tiny.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 6px; }

.o-flag--small > .o-flag__img {
  padding-right: 12px; }

.o-flag--small.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 12px; }

.o-flag--large > .o-flag__img {
  padding-right: 48px; }

.o-flag--large.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 48px; }

.o-flag--huge > .o-flag__img {
  padding-right: 96px; }

.o-flag--huge.o-flag--reverse > .o-flag__img {
  padding-right: 0;
  padding-left: 96px; }

/* Reversed flag
   ========================================================================== */
/**
 * 1. Swap the rendered direction of the object…
 * 2. …and reset it.
 * 3. Reassign margins to the correct sides.
 */
.o-flag--reverse {
  direction: rtl;
  /* [1] */ }
  .o-flag--reverse > .o-flag__img,
  .o-flag--reverse > .o-flag__body {
    direction: ltr;
    /* [2] */ }
  .o-flag--reverse > .o-flag__img {
    padding-right: 0;
    /* [3] */
    padding-left: 24px;
    /* [3] */ }

/* Alignment variants
   ========================================================================== */
/**
 * Vertically align the image- and body-content differently. Defaults to middle.
 */
.o-flag--top > .o-flag__img,
.o-flag--top > .o-flag__body {
  vertical-align: top; }

.o-flag--bottom > .o-flag__img,
.o-flag--bottom > .o-flag__body {
  vertical-align: bottom; }

/* ==========================================================================
   #LIST-BARE
   ========================================================================== */
/**
 * Strip list-like appearance from lists by removing their bullets and any
 * indentation.
 *
 * Note: Declaring the item class might not be necessary everywhere,
 * but is for example in <dl> lists for the <dd> children.
 */
.o-list-bare {
  list-style: none;
  margin-left: 0; }

.o-list-bare__item {
  margin-left: 0; }

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */
/**
 * The list-inline object simply displays a list of items in one line.
 */
.o-list-inline {
  margin-left: 0;
  list-style: none; }

.o-list-inline__item {
  display: inline-block; }

/* ==========================================================================
   #BOX
   ========================================================================== */
/**
 * The box object simply boxes off content. Extend with cosmetic styles in the
 * Components layer.
 *
 * 1. So we can apply the `.o-box` class to naturally-inline elements.
 */
.o-box {
  display: block;
  /* [1] */
  padding: 24px; }
  .o-box:after {
    content: "" !important;
    display: block !important;
    clear: both !important; }
  .o-box > :last-child {
    margin-bottom: 0; }

/* Size variants
   ========================================================================== */
.o-box--flush {
  padding: 0; }

.o-box--tiny {
  padding: 6px; }

.o-box--small {
  padding: 12px; }

.o-box--large {
  padding: 48px; }

.o-box--huge {
  padding: 96px; }

/* ==========================================================================
   #BLOCK
   ========================================================================== */
/**
 * Stacked image-with-text object. A simple abstraction to cover a very commonly
 * occurring design pattern.
 */
.o-block {
  display: block;
  text-align: center; }

.o-block__img {
  margin-bottom: 24px;
  /* Size variants
       ====================================================================== */ }
  .o-block--flush > .o-block__img {
    margin-bottom: 0; }
  .o-block--tiny > .o-block__img {
    margin-bottom: 6px; }
  .o-block--small > .o-block__img {
    margin-bottom: 12px; }
  .o-block--large > .o-block__img {
    margin-bottom: 48px; }
  .o-block--huge > .o-block__img {
    margin-bottom: 96px; }

.o-block__body {
  display: block; }

/* Alignment variants
   ========================================================================== */
.o-block--right {
  text-align: right; }

.o-block--left {
  text-align: left; }

.view-term-block .field--type-image + .field--name-description {
  margin-top: 1rem; }

.field--name-field-brand-logo {
  margin-bottom: 20px; }

@media (min-width: 767px) {
  .field--name-field-brand-logo {
    width: 25%;
    float: left;
    margin-right: 20px; }
    .field--name-field-brand-logo img {
      max-width: 100%; } }

.view-term-block.view-id-term_block .views-row.o-list-flex__element {
  max-width: 100%; }

/* ==========================================================================
   #RATIO
   ========================================================================== */
/**
 * Create ratio-bound content blocks, to keep media (e.g. images, videos) in
 * their correct aspect ratios.
 *
 * http://alistapart.com/article/creating-intrinsic-ratios-for-video
 *
 * 1. Default is a 1:1 ratio (i.e. a perfect square).
 */
.o-ratio {
  position: relative;
  display: block; }
  .o-ratio:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
    /* [1] */ }

.o-ratio__content,
.o-ratio > iframe,
.o-ratio > embed,
.o-ratio > object {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%; }

/* Ratio variants.
   ========================================================================== */
/**
 * Generate a series of ratio classes to be used like so:
 *
 *   <div class="o-ratio  o-ratio--golden-ratio">
 *
 */
.o-ratio--2\:1:before {
  padding-bottom: 50%; }

.o-ratio--4\:3:before {
  padding-bottom: 75%; }

.o-ratio--16\:9:before {
  padding-bottom: 56.25%; }

/* Contain modifier.
   ========================================================================== */
/**
 * Only works with image content.
 * Contains the image to the boundaries, without cropping or stretching it.
 */
.o-ratio--img-contain > .o-ratio__content:before {
  height: auto;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto; }

/* ==========================================================================
   #CROP
   ========================================================================== */
/**
 * Provide a cropping container in order to display media (usually images)
 * cropped to certain ratios.
 *
 * 1. Set up a positioning context in which the image can sit.
 * 2. This is the crucial part: where the cropping happens.
 */
.o-crop {
  position: relative;
  /* [1] */
  display: block;
  overflow: hidden;
  /* [2] */ }

/**
   * Apply this class to the content (usually `img`) that needs cropping.
   *
   * 1. Image’s default positioning is top-left in the cropping box.
   * 2. Make sure the media doesn’t stop itself too soon.
   */
.o-crop__content {
  position: absolute;
  top: 0;
  /* [1] */
  left: 0;
  /* [1] */
  max-width: none;
  /* [2] */ }

/**
   * We can position the media in different locations within the cropping area.
   */
.o-crop__content--left-top {
  left: 0; }

.o-crop__content--left-center {
  top: 50%;
  transform: translateY(-50%); }

.o-crop__content--left-bottom {
  top: auto;
  bottom: 0; }

.o-crop__content--right-top {
  right: 0;
  left: auto; }

.o-crop__content--right-center {
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%); }

.o-crop__content--right-bottom {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto; }

.o-crop__content--center-top {
  left: 50%;
  transform: translateX(-50%); }

.o-crop__content--center,
.o-crop__content--center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.o-crop__content--center-bottom {
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); }

/* Crop-ratio variants
   ========================================================================== */
/**
 * Generate a series of crop classes to be used like so:
 *
 *   <div class="o-crop  o-crop--golden-ratio">
 *
 */
.o-crop--2\:1 {
  padding-bottom: 50%; }

.o-crop--4\:3 {
  padding-bottom: 75%; }

.o-crop--16\:9 {
  padding-bottom: 56.25%; }

/* Fill modifier
   ========================================================================== */
/**
 * Content stretches to fill it's container while maintaining aspect-ratio.
 */
.o-crop--fill > .o-crop__content {
  min-height: 100%;
  min-width: 100%; }

/* ==========================================================================
   #TABLE
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML `table`s.
 */
.o-table {
  width: 100%; }

/* Equal-width table cells
   ========================================================================== */
/**
 * `table-layout: fixed` forces all cells within a table to occupy the same
 * width as each other. This also has performance benefits: because the browser
 * does not need to (re)calculate cell dimensions based on content it discovers,
 * the table can be rendered very quickly. Further reading:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
 */
.o-table--fixed {
  table-layout: fixed; }

/* Size variants
   ========================================================================== */
.o-table--tiny th,
.o-table--tiny td {
  padding: 6px; }

.o-table--small th,
.o-table--small td {
  padding: 12px; }

.o-table--large th,
.o-table--large td {
  padding: 48px; }

.o-table--huge th,
.o-table--huge td {
  padding: 96px; }

.o-tabs {
  margin-bottom: 2rem; }
  .o-tabs ul {
    margin-left: 0;
    border: none; }
  .o-tabs .nav-tabs > li {
    margin-right: 1rem; }
    .o-tabs .nav-tabs > li a {
      border: 1px solid #ddd;
      border-radius: 3px;
      text-decoration: none;
      color: #444444; }
    .o-tabs .nav-tabs > li.active a {
      border-bottom-color: #ddd;
      color: #ffffff;
      background-color: #00c48c; }
    .o-tabs .nav-tabs > li:not(.active):hover a {
      background-color: #efefef; }
  .o-tabs__content {
    margin: 0 0 1rem;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 3px; }

@media screen and (max-width: 1023px) {
  .o-tabs ul {
    display: flex;
    overflow: auto;
    white-space: nowrap; }
    .o-tabs ul li {
      margin-bottom: 0; } }

/* ==========================================================================
   #PACK
   ========================================================================== */
/**
 * The pack object simply causes any number of elements pack up horizontally to
 * automatically fill an equal, fluid width of their parent.
 *
 * 1. Fill all available space.
 * 2. Remove any leftover styling from lists.
 * 3. Cause children to be automatically equally sized.
 */
.o-pack {
  width: 100%;
  /* [1] */
  margin-left: 0;
  /* [2] */
  display: table;
  table-layout: fixed;
  /* [3] */ }

/**
   * 1. Cause children to adopt table-like structure.
   * 2. Default item alignment is with the tops of each other.
   */
.o-pack__item {
  display: table-cell;
  /* [1] */
  vertical-align: top;
  /* [2] */
  /* Vertical alignment variants
       ====================================================================== */ }
  .o-pack--middle > .o-pack__item {
    vertical-align: middle; }
  .o-pack--bottom > .o-pack__item {
    vertical-align: bottom; }

/* Unequal-width items
   ========================================================================== */
.o-pack--auto {
  table-layout: auto; }

/* Size variants
   ========================================================================== */
.o-pack--tiny {
  border-spacing: 6px; }

.o-pack--small {
  border-spacing: 12px; }

.o-pack--default {
  border-spacing: 24px; }

.o-pack--large {
  border-spacing: 48px; }

.o-pack--huge {
  border-spacing: 96px; }

/* Reversed order packs
   ========================================================================== */
.o-pack--reverse {
  direction: rtl; }
  .o-pack--reverse > .o-pack__item {
    direction: ltr; }

.o-navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.o-navbar-top-menu {
  display: flex; }

.o-list-flex,
.view-catalog .o-list-flex > div,
.view-search .o-list-flex > div {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin: 0; }

.view-banners .o-list-flex {
  display: block; }

.view-catalog .o-list-flex {
  flex-wrap: wrap;
  justify-content: space-between; }
  .view-catalog .o-list-flex .views-row.o-list-flex__element {
    width: 32.33%;
    margin-bottom: 2rem; }

.view-blog .o-list-flex {
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%; }
  .view-blog .o-list-flex .views-row.o-list-flex__element {
    width: 30.33%;
    margin: 0 1% 2rem 1%; }

.view-catalog .o-list-flex,
.view-search .o-list-flex {
  padding: 0 1rem; }
  .view-catalog .o-list-flex > .form-group,
  .view-search .o-list-flex > .form-group {
    justify-content: flex-start;
    margin-left: -1rem;
    margin-right: -1rem;
    min-width: 100%; }
    .view-catalog .o-list-flex > .form-group:before, .view-catalog .o-list-flex > .form-group:after,
    .view-search .o-list-flex > .form-group:before,
    .view-search .o-list-flex > .form-group:after {
      content: none; }
  .view-catalog .o-list-flex .views-row.o-list-flex__element,
  .view-search .o-list-flex .views-row.o-list-flex__element {
    width: 32%;
    margin-bottom: 1rem;
    margin-right: 2%; }
    .view-catalog .o-list-flex .views-row.o-list-flex__element:nth-child(3n), .view-catalog .o-list-flex .views-row.o-list-flex__element:last-child,
    .view-search .o-list-flex .views-row.o-list-flex__element:nth-child(3n),
    .view-search .o-list-flex .views-row.o-list-flex__element:last-child {
      margin-right: 0; }
    .view-catalog .o-list-flex .views-row.o-list-flex__element > .views-field,
    .view-search .o-list-flex .views-row.o-list-flex__element > .views-field {
      height: 100%; }

.view-brand-view {
  position: relative; }
  .view-brand-view:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px; }
  .view-brand-view .o-list-flex {
    flex-direction: column;
    max-height: 200px;
    overflow-y: auto;
    position: relative; }
    .view-brand-view .o-list-flex a {
      text-decoration: none; }
    .view-brand-view .o-list-flex::-webkit-scrollbar {
      -webkit-appearance: none; }
    .view-brand-view .o-list-flex::-webkit-scrollbar:vertical {
      width: 6px; }
    .view-brand-view .o-list-flex::-webkit-scrollbar-thumb {
      height: 40px;
      border-radius: 8px;
      background-color: #00c48c; }

@media screen and (max-width: 1023px) {
  .view-wishlist .o-list-flex .views-form,
  .view-blog .o-list-flex .views-row.o-list-flex__element {
    width: 100%; }
  .view-catalog .o-list-flex,
  .view-search .o-list-flex {
    padding: 0; }
    .view-catalog .o-list-flex .views-row.o-list-flex__element,
    .view-search .o-list-flex .views-row.o-list-flex__element {
      width: 50%;
      margin: 0; } }

button.button, button.button.btn-success, button.button.btn-primary, a.button, a.button.btn-success, a.button.btn-primary {
  transition: 150ms background-color ease-out;
  background-color: #00c48c;
  border-color: #00a777;
  border: none;
  color: #ffffff;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.6rem 1.2rem; }
  button.button:hover, button.button:focus, button.button:active, button.button:hover:focus, button.button.btn-success:hover, button.button.btn-success:focus, button.button.btn-success:active, button.button.btn-success:hover:focus, button.button.btn-primary:hover, button.button.btn-primary:focus, button.button.btn-primary:active, button.button.btn-primary:hover:focus, a.button:hover, a.button:focus, a.button:active, a.button:hover:focus, a.button.btn-success:hover, a.button.btn-success:focus, a.button.btn-success:active, a.button.btn-success:hover:focus, a.button.btn-primary:hover, a.button.btn-primary:focus, a.button.btn-primary:active, a.button.btn-primary:hover:focus {
    color: #fff;
    background-color: #00a777;
    border-color: #00a777;
    outline: 0; }
  button.button.is-disabled, button.button.btn-success.is-disabled, button.button.btn-primary.is-disabled, a.button.is-disabled, a.button.btn-success.is-disabled, a.button.btn-primary.is-disabled {
    background-color: transparent;
    border-color: #c8c8c8;
    color: #c8c8c8; }
    button.button.is-disabled:hover, button.button.is-disabled:focus, button.button.is-disabled:active, button.button.is-disabled:hover:focus, button.button.btn-success.is-disabled:hover, button.button.btn-success.is-disabled:focus, button.button.btn-success.is-disabled:active, button.button.btn-success.is-disabled:hover:focus, button.button.btn-primary.is-disabled:hover, button.button.btn-primary.is-disabled:focus, button.button.btn-primary.is-disabled:active, button.button.btn-primary.is-disabled:hover:focus, a.button.is-disabled:hover, a.button.is-disabled:focus, a.button.is-disabled:active, a.button.is-disabled:hover:focus, a.button.btn-success.is-disabled:hover, a.button.btn-success.is-disabled:focus, a.button.btn-success.is-disabled:active, a.button.btn-success.is-disabled:hover:focus, a.button.btn-primary.is-disabled:hover, a.button.btn-primary.is-disabled:focus, a.button.btn-primary.is-disabled:active, a.button.btn-primary.is-disabled:hover:focus {
      color: #c8c8c8;
      border-color: #c8c8c8;
      background-color: transparent; }
  button.button--inverted:not(.is-disabled), button.button.btn-success--inverted:not(.is-disabled), button.button.btn-primary--inverted:not(.is-disabled), a.button--inverted:not(.is-disabled), a.button.btn-success--inverted:not(.is-disabled), a.button.btn-primary--inverted:not(.is-disabled) {
    color: #00c48c;
    border-color: #00c48c;
    background-color: #ffffff; }
    button.button--inverted:not(.is-disabled):hover, button.button.btn-success--inverted:not(.is-disabled):hover, button.button.btn-primary--inverted:not(.is-disabled):hover, a.button--inverted:not(.is-disabled):hover, a.button.btn-success--inverted:not(.is-disabled):hover, a.button.btn-primary--inverted:not(.is-disabled):hover {
      color: #fff;
      background-color: #00a777;
      border-color: #00a777; }
  button.button--uppercase, button.button.btn-success--uppercase, button.button.btn-primary--uppercase, a.button--uppercase, a.button.btn-success--uppercase, a.button.btn-primary--uppercase {
    text-transform: uppercase; }

.modal-content {
  border-radius: 0;
  margin: 0 auto; }

.modal-body {
  overflow: auto !important; }
  .modal-body .alert-success {
    background: none;
    border: none;
    padding: 0;
    margin: 0; }
    .modal-body .alert-success button {
      display: none; }

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  text-align: center;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 12px 24px;
  transition: all 300ms ease-in-out;
  border-radius: 3px; }

/* Style variants
   ========================================================================== */
.c-btn--primary {
  background-color: #4a8ec2; }
  .c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
    text-decoration: none;
    /* [4] */
    color: #fff; }
  .c-btn--primary:hover, .c-btn--primary:focus {
    background-color: #3774a2; }

.c-btn--back {
  padding: 0.7rem 1.6rem 0.7rem 3rem;
  color: #888;
  background: url("../images/backArrow.png") 1rem 50% no-repeat;
  text-decoration: none; }
  .c-btn--back:active {
    box-shadow: none;
    background-color: #ccc; }

.c-btn--secondary {
  background-color: #2f4054; }
  .c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:active, .c-btn--secondary:focus {
    text-decoration: none;
    color: #fff; }
  .c-btn--secondary:hover, .c-btn--secondary:focus {
    background-color: #1d2733; }

.c-btn--tertiary {
  background-color: #fff;
  color: #4a8ec2; }
  .c-btn--tertiary, .c-btn--tertiary:hover, .c-btn--tertiary:active, .c-btn--tertiary:focus {
    text-decoration: none;
    color: #4a8ec2; }
  .c-btn--tertiary:hover, .c-btn--tertiary:focus {
    color: #3774a2; }

/* Size variants
   ========================================================================== */
.c-btn--small {
  padding: 6px 12px; }

.c-btn--large {
  padding: 24px 48px; }

.c-btn-checkout-return {
  color: #ccc;
  text-decoration: none; }

/* Ghost buttons
   ========================================================================== */
/**
 * Ghost buttons have see-through backgrounds and are bordered.
 */
.c-btn--ghost {
  border: 2px solid currentColor;
  padding: 10px 22px; }
  .c-btn--ghost, .c-btn--ghost:hover, .c-btn--ghost:active, .c-btn--ghost:focus {
    background: none; }
  .c-btn--ghost.c-btn--small {
    padding: 4px 10px; }
  .c-btn--ghost.c-btn--large {
    padding: 22px 46px; }
  .c-btn--ghost.c-btn--primary {
    color: #4a8ec2; }
    .c-btn--ghost.c-btn--primary:hover, .c-btn--ghost.c-btn--primary:focus {
      color: #3774a2; }
  .c-btn--ghost.c-btn--secondary {
    color: #2f4054; }
    .c-btn--ghost.c-btn--secondary:hover, .c-btn--ghost.c-btn--secondary:focus {
      color: #1d2733; }
  .c-btn--ghost.c-btn--tertiary {
    color: #fff; }
    .c-btn--ghost.c-btn--tertiary:hover, .c-btn--ghost.c-btn--tertiary:focus {
      color: #fff; }

button.close {
  outline: none; }
  button.close > span {
    background: none;
    background-color: transparent; }

.c-main-menu {
  float: none;
  display: flex;
  align-items: stretch; }
  .c-main-menu__element a {
    color: #eee;
    text-align: center;
    font-size: 0.8rem;
    height: 100%;
    text-decoration: none; }
  .c-main-menu__element--active a {
    background-color: #00c48c;
    pointer-events: none; }

.c-main-menu > .c-main-menu__element a {
  line-height: 1.3;
  display: flex;
  align-items: center; }
  .c-main-menu > .c-main-menu__element a:hover, .c-main-menu > .c-main-menu__element a:focus {
    color: #444444; }
  @media (max-width: 1200px) {
    .c-main-menu > .c-main-menu__element a {
      padding: 10px; } }

.c-navbar__site-branding {
  background-color: #ffffff;
  padding: 1rem 0; }
  .c-navbar__site-branding .burger {
    display: none; }
  .c-navbar__site-branding .logo__img {
    height: 50px;
    max-width: 280px; }
  .c-navbar__site-branding .input-group .form-control {
    height: 50px;
    font-size: 1rem; }
  .c-navbar__site-branding .region-site-branding > ul {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    list-style: none; }
    .c-navbar__site-branding .region-site-branding > ul > li {
      margin-left: 2rem; }
  .c-navbar__site-branding .region-site-branding .block-title {
    display: flex;
    text-decoration: none;
    color: #888;
    padding: 6px 0; }

.c-navbar__navigation {
  background-color: #004878; }

.c-navbar__top-menu h2 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  height: 40px;
  padding: 1rem;
  font-weight: 400;
  font-size: 0.7rem;
  white-space: nowrap;
  transition: 150ms border-color ease-out; }

.c-navbar__top-menu a, .c-navbar__top-menu h2 {
  color: #999; }

.c-navbar__top-menu a.button {
  color: #ffffff; }

.c-navbar__top-menu__badge {
  position: absolute;
  top: 7px;
  left: 0.9rem;
  z-index: 10;
  background-color: #00c48c;
  color: #ffffff;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  text-align: center;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; }

.c-navbar__top-menu .custom-icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  margin-right: 0.4rem;
  background-repeat: no-repeat; }
  .c-navbar__top-menu .custom-icon__cart {
    background-image: url("../images/header-icons/cart.svg"); }
  .c-navbar__top-menu .custom-icon__favorite {
    background-image: url("../images/header-icons/heart.svg"); }
  .c-navbar__top-menu .custom-icon__user {
    background-image: url("../images/header-icons/profile.svg"); }

.c-navbar__top-menu--with-dropdown {
  position: relative;
  z-index: 20;
  padding: 0.5rem 0; }
  .c-navbar__top-menu--with-dropdown .block-title {
    cursor: pointer;
    position: relative;
    z-index: 2; }
    .c-navbar__top-menu--with-dropdown .block-title__direct-link {
      display: flex; }
    .c-navbar__top-menu--with-dropdown .block-title .glyphicon-chevron-down {
      margin: 0 0 0 5px;
      font-size: 0.4rem;
      display: inline-flex;
      align-items: center; }
    .c-navbar__top-menu--with-dropdown .block-title a {
      text-decoration: none; }
  .c-navbar__top-menu--with-dropdown .commerce-cart-block__heading {
    padding: 0.4rem 1rem;
    border-bottom: 1px solid #efefef; }
  .c-navbar__top-menu--with-dropdown .commerce-cart-block, .c-navbar__top-menu--with-dropdown .wishlist-block__container, .c-navbar__top-menu--with-dropdown .menu {
    display: none;
    position: absolute;
    top: 85%;
    right: -9999px;
    left: -9999px;
    margin: 1px auto auto;
    max-width: 400px;
    background-color: #fff;
    min-width: 200px;
    border: 1px solid #ccc;
    z-index: 1;
    box-shadow: 0 0 15px -10px #004878; }
    .c-navbar__top-menu--with-dropdown .commerce-cart-block:before, .c-navbar__top-menu--with-dropdown .wishlist-block__container:before, .c-navbar__top-menu--with-dropdown .menu:before {
      content: "";
      position: absolute;
      background-color: #fff;
      display: inline-block;
      width: 10px;
      height: 10px;
      left: 0;
      right: 0;
      top: -6px;
      margin: auto;
      border-left: 1px solid #ccc;
      border-top: 1px solid #ccc;
      transform: rotate(45deg); }
  .c-navbar__top-menu--with-dropdown.open > .menu {
    display: block; }

@media (min-width: 1024px) {
  .c-navbar__top-menu--with-dropdown:hover .commerce-cart-block,
  .c-navbar__top-menu--with-dropdown:hover .wishlist-block__container,
  .c-navbar__top-menu--with-dropdown:hover .menu {
    display: block; } }

@media (min-width: 767px) {
  .c-navbar__site-branding .region-site-branding > ul > li .form-control {
    width: 100%;
    border-radius: 4px 0 0 4px; } }

@media (max-width: 1200px) {
  .c-navbar__site-branding .logo__img {
    max-width: 150px;
    height: 30px; }
  .c-navbar__site-branding .region-site-branding > ul > li {
    margin-left: 1rem; } }

@media (max-width: 1023px) {
  .c-navbar__top-menu--with-dropdown .menu {
    position: fixed;
    top: 64px;
    left: 4px;
    right: 4px;
    z-index: 1000; }
    .c-navbar__top-menu--with-dropdown .menu:before {
      right: 18px;
      left: auto; }
    .c-navbar__top-menu--with-dropdown .menu > li > a {
      text-align: center; }
  .c-navbar__navigation .container {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: 100ms max-height ease-out; }
  .c-navbar__navigation--is-open .container {
    max-height: 100vh; }
  .c-navbar__navigation .c-main-menu {
    flex-direction: column;
    margin: 0; }
  .c-navbar__site-branding {
    position: relative;
    box-shadow: 0 3px 5px -5px #444;
    padding: 0.6rem 0; }
    .c-navbar__site-branding .burger {
      padding: 0;
      margin-right: 15px;
      display: flex;
      flex-direction: column;
      border: none;
      background: none; }
      .c-navbar__site-branding .burger span {
        display: inline-block;
        width: 25px;
        height: 3px;
        margin: 2px 0;
        background-color: #004878; }
    .c-navbar__site-branding .logo__img {
      max-width: 150px;
      height: 30px; }
    .c-navbar__site-branding .c-block-search span.mobile-icon {
      background-image: url("../images/header-icons/search.svg");
      width: 21px;
      height: 21px;
      display: inline-block;
      background-repeat: no-repeat; }
    .c-navbar__site-branding .c-block-search form {
      display: none;
      position: absolute;
      top: 101%;
      left: 0;
      margin: 0;
      z-index: 10;
      right: 0;
      padding: 0.6rem 1rem;
      background-color: #fff;
      border-bottom: 1px solid #888;
      box-shadow: 0 5px 10px -7px #888; }
    .c-navbar__site-branding .region-site-branding > ul > li {
      margin-left: 1rem; }
      .c-navbar__site-branding .region-site-branding > ul > li.c-block-search {
        margin-left: 1.5rem; }
        .c-navbar__site-branding .region-site-branding > ul > li.c-block-search .form-inline .form-item {
          margin-bottom: 0; }
        .c-navbar__site-branding .region-site-branding > ul > li.c-block-search--is-open form {
          display: block; }
    .c-navbar__site-branding .region-site-branding .block-title {
      font-size: 0; }
      .c-navbar__site-branding .region-site-branding .block-title .glyphicon-chevron-down {
        display: none; }
      .c-navbar__site-branding .region-site-branding .block-title .custom-icon {
        margin-right: 0; } }

.cart-block .o-list-flex {
  display: block; }
  .cart-block .o-list-flex .views-form {
    position: relative; }

.cart-block form {
  flex-direction: column; }

.cart-block .form-actions {
  display: none; }

.c-cart-item {
  display: block;
  padding: 1rem; }

.c-cart-item-details {
  display: flex;
  align-items: flex-start;
  width: 100%; }
  .c-cart-item-details img {
    margin-right: 1rem; }
  .c-cart-item-details .delete-order-item {
    font-size: 0;
    border: none;
    background: none;
    padding: 0;
    margin-left: auto;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .c-cart-item-details .delete-order-item:after {
      content: "\e014";
      font-size: 1rem;
      color: #555; }
    .c-cart-item-details .delete-order-item:hover {
      background: none; }
    .c-cart-item-details .delete-order-item span {
      display: none; }
  .c-cart-item-details__info {
    font-weight: 700;
    font-size: 0.8rem; }
  .c-cart-item-details__title {
    font-size: 0.8rem;
    margin: 0 0 0.4rem;
    padding-right: 2rem;
    font-weight: 400; }
    .c-cart-item-details__title a {
      color: #00c48c; }

.add-cart-nico .modal-header {
  text-align: center;
  text-transform: uppercase;
  color: #004878;
  font-size: 1.6rem;
  font-weight: 700; }

.add-cart-nico .modal-body__title {
  font-size: 1rem; }

.add-cart-nico .modal-body__content {
  display: flex; }
  .add-cart-nico .modal-body__content > * {
    margin-right: 1rem; }

.add-cart-nico .modal-body__quantity .gras {
  font-weight: 700; }

.add-cart-nico .modal-body__price .field--name-price {
  display: flex; }
  .add-cart-nico .modal-body__price .field--name-price .field--label:after {
    content: ":";
    display: inline-block;
    margin: 0 0.2rem; }

.input-group .form-control {
  float: none;
  position: static;
  height: 40px; }

.input-group-btn .btn {
  font-size: 0.7rem;
  height: 40px;
  background-color: #00c48c;
  border: none;
  position: relative; }
  .input-group-btn .btn .glyphicon {
    font-size: 1rem;
    vertical-align: middle; }

.c-article {
  border: 1px solid #efefef;
  box-shadow: 0 0 15px -10px #999;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 350ms box-shadow ease-out; }
  .c-article__image a {
    display: flex;
    height: 225px;
    align-items: center;
    justify-content: center;
    overflow: hidden; }
  .c-article__image img {
    max-height: 100%;
    max-width: 100%;
    width: auto; }
  .c-article__body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column; }
    .c-article__body h2 {
      line-height: 1;
      margin: 0 0 0.8rem; }
      .c-article__body h2 a {
        color: #004878;
        font-weight: 700;
        font-size: 1.4rem;
        text-decoration: none; }
    .c-article__body .content {
      margin-top: auto;
      font-size: 0.9rem;
      font-weight: 400;
      color: #5f6d74; }
  .c-article__footer .date {
    padding: 1rem;
    color: #C8C8C8; }
  .c-article:hover {
    box-shadow: 0 0 15px -10px #004878; }
  .c-article--full {
    box-shadow: none;
    border: none; }
    .c-article--full .content p {
      text-align: justify; }
    .c-article--full__body {
      margin: 0 auto;
      margin-bottom: 2rem;
      line-height: 1.8rem;
      width: 70%; }
      @media screen and (max-width: 757px) {
        .c-article--full__body {
          width: 90%; } }
      @media screen and (max-width: 1023px) {
        .c-article--full__body {
          width: 80%; } }
      .c-article--full__body p, .c-article--full__body li {
        font-size: 120%; }
    .c-article--full__footer {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #eee; }
    .c-article--full__share {
      margin-left: 0.6rem;
      font-size: 20px; }
    .c-article--full__header {
      padding-bottom: 1rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      position: relative;
      font-size: 0.8rem;
      display: flex; }
      .c-article--full__header .author {
        color: #00c48c;
        border-right: 1px solid #c8c8c8;
        padding-right: 1rem;
        margin-right: 1rem; }
      .c-article--full__header .date {
        color: #c8c8c8; }
      .c-article--full__header:after {
        content: "";
        border-bottom: 1px solid #aaa;
        display: inline-block;
        width: 73px;
        position: absolute;
        bottom: 0; }

.c-more-link,
.pager .c-more-link {
  text-align: center; }
  .c-more-link a,
  .pager .c-more-link a {
    display: inline-block;
    padding: 0.8rem 1rem;
    border: 1px solid currentColor;
    color: #ccc;
    text-transform: uppercase;
    min-width: 200px;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #ffffff;
    transition: 150ms box-shadow ease-out;
    text-decoration: none; }
    .c-more-link a:hover,
    .pager .c-more-link a:hover {
      box-shadow: 0 0 15px -10px #004878; }

.c-details-section {
  font-size: 0.7rem;
  background-color: #f7f7f7;
  padding: 2rem 0; }

.c-blue-band {
  background-color: #004878;
  color: #ffffff;
  padding: 1rem 0;
  margin-bottom: 4rem; }
  .c-blue-band > .container > * {
    margin: 0; }
  .c-blue-band > .container > h2 {
    text-transform: uppercase;
    margin-left: 2rem;
    font-weight: 700; }

.o-list-flex .c-banner__top {
  width: 49%;
  margin-bottom: 0; }

.o-list-flex .c-banner__bottom {
  width: 32.33%; }

.c-banner__top article {
  position: relative; }

.c-banner__top a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0; }

.c-banner__bottom article {
  border: 1px solid #ccc;
  padding: 2rem; }

.c-category-filter {
  padding-top: 1rem;
  margin-bottom: 1rem; }
  .c-category-filter .block-title {
    font-size: 0.8rem; }
  .c-category-filter.block-facets {
    position: relative; }
    .c-category-filter.block-facets .facet-item {
      position: relative; }
    .c-category-filter.block-facets .facets-reset {
      position: absolute;
      top: 0;
      right: 0;
      padding-top: 20px; }
      .c-category-filter.block-facets .facets-reset label:before {
        content: none; }
      .c-category-filter.block-facets .facets-reset .checkmark {
        display: none; }
  .c-category-filter .menu--catalogue {
    margin: 0; }
    .c-category-filter .menu--catalogue li {
      list-style: none;
      background-color: transparent !important; }
      .c-category-filter .menu--catalogue li > a {
        background-color: transparent !important;
        font-size: 0.9rem;
        color: #141517;
        padding: 0.4rem 0;
        text-decoration: none; }
        .c-category-filter .menu--catalogue li > a .caret {
          position: absolute;
          top: 50%;
          right: 0;
          width: 0.8rem;
          height: 0.8rem;
          margin: 0;
          padding: 0;
          border: none;
          background-image: url("../images/open-icons/svg/chevron.svg");
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
          box-sizing: content-box;
          transform: rotate(-90deg) translateX(50%);
          z-index: -1; }
      .c-category-filter .menu--catalogue li.active-trail > a,
      .c-category-filter .menu--catalogue li a.is-active {
        color: #00c48c; }
        .c-category-filter .menu--catalogue li.active-trail > a .caret,
        .c-category-filter .menu--catalogue li a.is-active .caret {
          z-index: 1; }
      .c-category-filter .menu--catalogue li.expanded > a .caret {
        transform: rotate(0deg) translateY(-50%); }
      .c-category-filter .menu--catalogue li.expanded .subcategory-menu {
        max-height: 1000px; }
    .c-category-filter .menu--catalogue .subcategory-menu {
      margin-left: 1rem;
      margin-bottom: .5rem;
      max-height: 0;
      overflow: hidden;
      transition: 500ms max-height ease; }
      .c-category-filter .menu--catalogue .subcategory-menu a {
        color: #999999;
        padding: 0.2rem 0; }
        .c-category-filter .menu--catalogue .subcategory-menu a:hover {
          text-decoration: none;
          color: #00c48c; }
    .c-category-filter .menu--catalogue .active-trail > .subcategory-menu {
      display: block; }

.col-sm-9 > .active_filters {
  padding-top: 1rem; }

@media screen and (max-width: 1023px) {
  .c-category-filter {
    margin-bottom: 0; }
    .c-category-filter .menu--catalogue, .c-category-filter .c-facets-widget-checkbox {
      max-height: 0;
      overflow: hidden;
      transition: 150ms max-height ease-out; }
    .c-category-filter.block-facet-blockbrand .facets-reset {
      display: none;
      position: static; }
  .view-catalog .o-list-flex .views-row.o-list-flex__element {
    margin-bottom: 1rem; } }

.c-double-underlined-title {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem; }
  .c-double-underlined-title .block-title {
    display: inline-block;
    text-transform: uppercase;
    margin: 0 0 -1.5px 0;
    font-weight: 400;
    border-bottom: 3px solid #004878;
    padding-bottom: 0.4rem;
    font-size: 0.9rem; }

@media screen and (max-width: 1023px) {
  .region-sidebar-first .c-double-underlined-title {
    position: relative; }
    .region-sidebar-first .c-double-underlined-title:after {
      content: "+";
      width: 20px;
      height: 20px;
      position: absolute;
      display: flex;
      justify-content: center;
      right: 0;
      top: 3px;
      line-height: 1; }
    .region-sidebar-first .c-double-underlined-title--is-open:after {
      content: "-"; }
    .region-sidebar-first .c-double-underlined-title--is-open + .menu--catalogue,
    .region-sidebar-first .c-double-underlined-title--is-open + .c-facets-widget-checkbox {
      max-height: 100vh; } }

.c-block-search,
.views-exposed-form {
  flex-grow: 1;
  margin-left: 2rem; }
  .c-block-search form,
  .views-exposed-form form {
    width: 100%; }
  .c-block-search .form-inline .form-item,
  .c-block-search .form-inline .input-group,
  .views-exposed-form .form-inline .form-item,
  .views-exposed-form .form-inline .input-group {
    width: 100%; }
  .c-block-search .form-inline,
  .views-exposed-form .form-inline {
    display: flex;
    align-items: stretch; }
  .c-block-search .form-actions,
  .views-exposed-form .form-actions {
    margin-bottom: 0; }
  .c-block-search .form-actions button,
  .views-exposed-form .form-actions button {
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    color: #ffffff;
    margin-right: 0; }
    .c-block-search .form-actions button:before,
    .views-exposed-form .form-actions button:before {
      content: "\e003";
      margin-right: 10px;
      font-family: 'Glyphicons Halflings';
      vertical-align: bottom; }
    .c-block-search .form-actions button:after,
    .views-exposed-form .form-actions button:after {
      content: "";
      position: absolute;
      right: 100%;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-right: 7px solid #00c48c;
      border-bottom: 5px solid transparent;
      transition: 150ms border-right-color ease-in; }
    .c-block-search .form-actions button:hover:after,
    .views-exposed-form .form-actions button:hover:after {
      border-right-color: #00a777; }
  .c-block-search .form-group:last-child,
  .views-exposed-form .form-group:last-child {
    margin-bottom: 0; }
  .c-block-search .form-item label,
  .views-exposed-form .form-item label {
    display: none; }
  .c-block-search .input-group input,
  .views-exposed-form .input-group input {
    border-radius: 4px;
    border-right: none; }
  .c-block-search .input-group .input-group-addon,
  .views-exposed-form .input-group .input-group-addon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: none;
    padding: 6px;
    margin-right: 6px;
    box-shadow: none;
    border: none; }
    .c-block-search .input-group .input-group-addon .glyphicon.icon,
    .views-exposed-form .input-group .input-group-addon .glyphicon.icon {
      opacity: 0;
      transition: 250ms opacity ease-in; }
      .c-block-search .input-group .input-group-addon .glyphicon.icon.glyphicon-spin,
      .views-exposed-form .input-group .input-group-addon .glyphicon.icon.glyphicon-spin {
        opacity: 1; }

@media (max-width: 1023px) {
  #views-exposed-form-search-page {
    width: 98vw;
    left: calc(-50vw + 50%); } }

.c-popin-block {
  width: 60%;
  margin: 2rem auto 0;
  box-shadow: 0 0 20px -7px #ccc;
  padding-top: 2rem; }
  .c-popin-block h1 {
    margin: 0;
    padding: 0 2rem; }
  .c-popin-block > .region-content {
    padding: 2rem 5rem; }
  .c-popin-block .page-header {
    text-align: center;
    text-transform: uppercase;
    border-bottom: none;
    padding-bottom: 0; }
  .c-popin-block button {
    text-transform: uppercase;
    font-weight: 600;
    width: 100%; }
    .c-popin-block button span {
      display: none; }
  .c-popin-block__intro-txt {
    text-align: center;
    color: #888888; }
  .c-popin-block__footer {
    text-align: center;
    padding: 0.8rem 0;
    background-color: #f1f2f4; }
    .c-popin-block__footer .o-tabs .nav-tabs {
      margin: 0;
      display: flex;
      justify-content: flex-end;
      border: none; }
      .c-popin-block__footer .o-tabs .nav-tabs > li a {
        border: none;
        color: #00c48c; }
        .c-popin-block__footer .o-tabs .nav-tabs > li a:hover {
          background: none;
          text-decoration: underline; }
    .c-popin-block__footer li.active {
      display: none; }

@media screen and (max-width: 1023px) {
  .c-popin-block {
    width: 100%;
    margin: 0; }
    .c-popin-block > .region-content {
      padding: 2rem 1rem; } }

.c-social-auth {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 2rem 0 0; }
  .c-social-auth a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    width: 48%;
    text-align: center;
    color: #ffffff;
    border-radius: 4px;
    padding: 0.4rem 0;
    transition: 150ms filter ease-out; }
    .c-social-auth a img {
      max-height: 40px;
      max-width: 40px; }
    .c-social-auth a:hover {
      filter: sepia(30%); }
  .c-social-auth__google {
    background-color: #f44335;
    margin-left: auto; }
  .c-social-auth__facebook {
    background-color: #3a5998; }
  .c-social-auth__forgotpass {
    margin-top: 1rem;
    text-align: center; }
  .c-social-auth__separator {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1rem 0;
    position: relative;
    color: #cccccc;
    font-style: italic; }
    .c-social-auth__separator:before, .c-social-auth__separator:after {
      content: "";
      position: absolute;
      top: 10px;
      width: 39%;
      border-bottom: 1px solid #ddd; }
    .c-social-auth__separator:before {
      left: 0; }
    .c-social-auth__separator:after {
      right: 0; }

@media screen and (max-width: 1023px) {
  .c-social-auth__separator:before, .c-social-auth__separator:after {
    width: 25%; } }

.c-hero-banner {
  position: relative; }
  .c-hero-banner__txt, .c-hero-banner__container {
    display: flex; }
  .c-hero-banner__container {
    max-height: 400px;
    z-index: 2;
    position: relative; }
  .c-hero-banner__txt {
    height: 100%;
    max-width: 60%;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 1rem; }
    .c-hero-banner__txt p {
      padding: 1rem;
      background-color: rgba(255, 255, 255, 0.6); }
  .c-hero-banner__img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; }
  .c-hero-banner__link {
    width: auto;
    margin-top: 1rem;
    align-self: flex-start; }

@media screen and (max-width: 1023px) {
  .c-hero-banner__txt {
    max-width: 100%; } }

.c-promo-sticker__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 4rem 0; }

.c-promo-sticker__element {
  width: 48%; }
  .c-promo-sticker__element > a {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: unset; }

.c-promo-sticker__image-container {
  text-align: center; }

.c-promo-sticker__image-container, .c-promo-sticker__text {
  width: 50%; }

.c-promo-sticker__text .label {
  display: inline-block;
  background-color: #f44335;
  border-radius: 3px;
  padding: 0.4rem 1rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px; }

.c-promo-sticker__text p {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.6rem 0;
  min-height: 100px;
  color: #38466E; }

.c-promo-sticker__link {
  color: #f44335;
  text-decoration: underline; }
  .c-promo-sticker__link:hover {
    color: #23527c; }

@media screen and (max-width: 1023px) {
  .c-promo-sticker__list {
    flex-direction: column; }
    .c-promo-sticker__list li {
      width: 100%;
      margin-bottom: 2rem; }
      .c-promo-sticker__list li:last-child {
        margin-bottom: 0; } }

.c-block-subscribe {
  padding: 1.4rem 1rem;
  background-color: #004878;
  color: #ffffff; }
  .c-block-subscribe__container {
    display: flex;
    align-items: center;
    justify-content: center; }
  .c-block-subscribe__head {
    margin-right: 2rem; }
    .c-block-subscribe__head .header {
      color: #00c48c;
      font-size: 1.4rem;
      line-height: 1;
      font-weight: 500; }
  .c-block-subscribe__content form {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap; }
    .c-block-subscribe__content form .form-group {
      margin-bottom: 0; }
    .c-block-subscribe__content form #result-message {
      display: block;
      width: 100%; }
    .c-block-subscribe__content form > .form-item {
      margin-bottom: 0; }
      .c-block-subscribe__content form > .form-item .input-group {
        height: 100%; }
        .c-block-subscribe__content form > .form-item .input-group-addon {
          position: absolute;
          top: 0;
          left: 1px;
          bottom: 1px;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: transparent;
          border: none;
          color: #cccccc;
          background-image: url("../images/footer-icons/mail.jpg");
          background-size: 50%;
          background-position: center;
          background-repeat: no-repeat;
          padding: 0;
          width: 40px;
          height: 40px; }
        .c-block-subscribe__content form > .form-item .input-group-input {
          padding-left: 40px;
          border-top-left-radius: 3px;
          border-bottom-left-radius: 3px;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0;
          font-size: 0.9rem;
          font-weight: 400; }
    .c-block-subscribe__content form > .form-actions button {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      height: 100%;
      margin-right: 0;
      font-weight: 500; }
    @media screen and (min-width: 1023px) {
      .c-block-subscribe__content form .form-item .form-text {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      .c-block-subscribe__content form .form-submit {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; } }

@media screen and (max-width: 1023px) {
  .c-block-subscribe__container {
    flex-direction: column;
    align-items: center; }
  .c-block-subscribe__head {
    margin-right: 0;
    margin-bottom: 1rem; }
    .c-block-subscribe__head .header {
      text-align: center; }
  .c-block-subscribe__content form {
    flex-direction: column; }
    .c-block-subscribe__content form .form-item {
      margin-bottom: 0.625rem; }
  .c-block-subscribe__content form > .form-item {
    margin-bottom: 0.4rem; }
  .c-block-subscribe__content .form-actions button {
    width: 100%;
    border-radius: 0;
    margin-right: 0;
    margin-bottom: 1rem; } }

.c-lastrow {
  background-color: #013151;
  color: #ffffff;
  padding: 13px 0px; }
  .c-lastrow__container {
    display: flex;
    align-items: center; }
  .c-lastrow__copyright {
    color: #899aa4;
    text-transform: uppercase;
    font-size: 0.7rem; }
  .c-lastrow__pay {
    margin-left: auto; }
    .c-lastrow__pay ul {
      margin: 0;
      padding: 0;
      height: 20px; }
      .c-lastrow__pay ul li {
        display: inline-block;
        width: 50px;
        height: 20px;
        margin-left: 0.2rem;
        border: 1px solid #eee;
        border-radius: 3px;
        background-color: #ffffff;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
        .c-lastrow__pay ul li:first-child {
          margin-left: 0; }
        .c-lastrow__pay ul li.bank_transfer {
          background-image: url("../images/payments/banktransfer.png"); }
        .c-lastrow__pay ul li.paypal {
          background-image: url("../images/payments/paypal.png"); }
        .c-lastrow__pay ul li.payplug {
          background-image: url("../images/payments/payplug.png"); }
        .c-lastrow__pay ul li.alipay {
          background-image: url("../images/payments/alipay.png"); }
        .c-lastrow__pay ul li.wechat_pay {
          background-image: url("../images/payments/wechatpay.png"); }
        .c-lastrow__pay ul li.payplug, .c-lastrow__pay ul li.alipay, .c-lastrow__pay ul li.wechat_pay {
          width: 70px; }

@media screen and (max-width: 1023px) {
  .c-lastrow__container {
    flex-direction: column;
    align-items: center; }
  .c-lastrow__pay {
    margin-left: 0;
    margin-top: 1rem; } }

.c-footer-links {
  display: flex;
  justify-content: space-between;
  margin: 3rem auto; }
  .c-footer-links > * {
    flex-grow: 1; }
  .c-footer-links .sociallink {
    flex-grow: 0; }
    .c-footer-links .sociallink img {
      max-width: 25px;
      margin-right: 0.4rem; }
  .c-footer-links h2 {
    color: #004878;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem; }
  .c-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; }
    .c-footer-links ul a {
      text-decoration: none;
      color: #5F6D74;
      padding: 0.4rem 0;
      display: inline-block; }
      .c-footer-links ul a:hover {
        color: #00c48c;
        background: none; }
  .c-footer-links:before, .c-footer-links:after {
    content: none; }

@media screen and (max-width: 1023px) {
  .c-footer-links {
    flex-direction: column; }
  .c-footer-cols {
    border-top: 1px solid #eee; }
    .c-footer-cols h2 {
      font-weight: 500;
      font-size: 18px;
      margin-bottom: 0;
      padding: 0.2rem 0 0.6rem;
      display: flex;
      justify-content: space-between;
      align-items: baseline; }
      .c-footer-cols h2:after {
        content: "+";
        font-size: 2rem; }
      .c-footer-cols h2 + ul.nav,
      .c-footer-cols h2 + div.block-content {
        max-height: 0;
        overflow: hidden;
        transition: 150ms max-height ease-out; }
    .c-footer-cols--is-open h2:after {
      content: "-"; }
    .c-footer-cols--is-open h2 + ul.nav,
    .c-footer-cols--is-open h2 + div.block-content {
      max-height: 100vh; }
    .c-footer-cols ul.nav li.last,
    .c-footer-cols div.block-content ul li:last-child {
      margin-bottom: 1rem; }
    .c-footer-cols:last-child {
      border-bottom: 1px solid #eee; } }

.c-page-404 {
  margin: 5rem 0 4rem; }
  .c-page-404 h1 {
    font-size: 10rem;
    color: #00c48c;
    margin-bottom: 0; }
  .c-page-404 .description {
    font-size: 1.6rem;
    font-weight: 300; }
  .c-page-404 .actions {
    margin-top: 3rem; }
    .c-page-404 .actions .button {
      margin: 0 1rem;
      padding: 0.4rem 2rem; }

.c-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0; }
  .c-breadcrumb__container {
    border-bottom: 1px solid #eee;
    margin: 0 0 3rem; }
  .c-breadcrumb li {
    display: inline-block;
    color: #888;
    vertical-align: middle; }
    .c-breadcrumb li:after {
      content: ">";
      margin: 0 0.4rem;
      display: inline-block;
      vertical-align: middle; }
    .c-breadcrumb li:last-child {
      margin-right: 1rem; }
      .c-breadcrumb li:last-child:after {
        content: none; }
    .c-breadcrumb li a {
      display: inline-block;
      vertical-align: middle;
      text-decoration: none;
      padding: 0.6rem 0; }

.page-403 .c-breadcrumb li:first-child {
  display: none; }

@media screen and (max-width: 1023px) {
  .c-breadcrumb {
    white-space: nowrap; }
    .c-breadcrumb__container {
      margin: 0 0 1rem; }
      .c-breadcrumb__container .container {
        overflow: auto; } }

.c-facets-widget-checkbox ul {
  list-style: none;
  margin: 0; }

.c-facets-widget-checkbox input {
  display: none; }
  .c-facets-widget-checkbox input:checked + label:before {
    border-color: #00c48c; }
  .c-facets-widget-checkbox input:checked + label:after {
    display: block; }

.c-facets-widget-checkbox label {
  margin-bottom: 0;
  position: relative; }
  .c-facets-widget-checkbox label:before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 1px solid #ccc;
    vertical-align: middle;
    margin-right: 0.4rem;
    border-radius: 2px; }
  .c-facets-widget-checkbox label:after {
    content: "";
    display: none;
    height: 10px;
    width: 6px;
    position: absolute;
    left: 5px;
    top: 5px;
    border-right: 2px solid #00c48c;
    border-bottom: 2px solid #00c48c;
    transform: rotate(45deg); }

.c-facets-widget-checkbox .facets-checkbox, .c-facets-widget-checkbox label {
  cursor: pointer; }

.c-facets-widget-checkbox .facet-item__value {
  font-size: 0.9rem;
  font-weight: 400;
  color: #444;
  padding: 0.4rem 0; }

.c-facets-widget-checkbox [data-drupal-facet-id=brand] {
  max-height: 140px;
  overflow-y: auto; }

.c-active-filters {
  margin-bottom: 2rem;
  position: relative; }
  .c-active-filters .facet-summary-item--clear {
    position: absolute;
    top: 0;
    right: 0; }
    .c-active-filters .facet-summary-item--clear a {
      color: #444444;
      text-decoration: none; }
  .c-active-filters .facet-summary-item--facet {
    margin: 0 1rem 1rem 0; }
    .c-active-filters .facet-summary-item--facet a {
      text-decoration: none;
      color: #888;
      padding: 0.4rem 2rem 0.4rem 1rem;
      background-color: #efefef;
      border-radius: 2px;
      position: relative;
      display: block; }
      .c-active-filters .facet-summary-item--facet a:after, .c-active-filters .facet-summary-item--facet a:before {
        content: "";
        position: absolute;
        right: 5px;
        top: 14px;
        border-top: 1px solid #888;
        width: 7px; }
      .c-active-filters .facet-summary-item--facet a:after {
        transform: rotate(45deg); }
      .c-active-filters .facet-summary-item--facet a:before {
        transform: rotate(-45deg); }
      .c-active-filters .facet-summary-item--facet a .js-facet-deactivate {
        display: none; }
  .c-active-filters ul {
    list-style: none;
    margin: 0; }
    .c-active-filters ul li {
      display: inline-block; }

.c-commerce-item {
  position: relative;
  background-color: #ffffff;
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column; }
  .c-commerce-item > .text-align-center {
    margin-top: 2rem;
    height: 90%;
    display: flex;
    flex-direction: column; }
  .c-commerce-item--is-discounted .c-commerce-item__badge {
    background-color: #f44335; }
  .c-commerce-item--is-discounted .field--name-price .price-with-discount .price, .c-commerce-item--is-discounted .field--name-price .price-with-discount .old-price {
    display: inline-block;
    vertical-align: middle; }
  .c-commerce-item--is-discounted .field--name-price .price-with-discount .price {
    color: #f44335; }
  .c-commerce-item--is-discounted .field--name-price .price-with-discount .old-price {
    color: #ddd;
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 1rem; }
  .c-commerce-item--is-out-of-stock .c-commerce-item__badge {
    background-color: #ccc; }
  .c-commerce-item__clickable {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0; }
  .c-commerce-item__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #ffffff;
    font-weight: 300;
    padding: 0.4rem 0.6rem;
    text-transform: uppercase;
    border-radius: 3px;
    font-size: 0.6rem;
    letter-spacing: 1px; }
  .c-commerce-item__title {
    font-size: 1rem;
    min-height: 40px;
    margin-bottom: 1rem; }
    .c-commerce-item__title a {
      text-decoration: none;
      color: #444444; }
  .c-commerce-item__short-description {
    margin-bottom: auto;
    color: #ababab; }
  .c-commerce-item__price {
    display: flex;
    justify-content: center;
    font-weight: 500;
    margin: 1rem 0;
    font-size: 1.2rem; }
    .c-commerce-item__price > div {
      margin: 0 0.4rem; }
    .c-commerce-item__price .field--name-field-promo-price {
      color: #f44335; }
  .c-commerce-item__variations {
    position: relative;
    z-index: 2; }
    .c-commerce-item__variations .form-actions button {
      margin-top: 1rem;
      width: 100%;
      text-transform: uppercase;
      font-size: 0.8rem; }
    .c-commerce-item__variations .form-group {
      margin-bottom: 0.4rem; }
    .c-commerce-item__variations .form-type-number,
    .c-commerce-item__variations .form-type-select {
      display: flex;
      align-items: center; }
      .c-commerce-item__variations .form-type-number label,
      .c-commerce-item__variations .form-type-select label {
        margin-right: 1rem;
        font-weight: 400;
        min-width: 80px;
        text-align: left; }
      .c-commerce-item__variations .form-type-number input,
      .c-commerce-item__variations .form-type-select input {
        text-align: center;
        max-width: 100px; }
    .c-commerce-item__variations .input-group {
      width: 100%; }
  .c-commerce-item .field__type-image {
    min-height: 150px; }
    .c-commerce-item .field__type-image img {
      margin: 0 auto;
      max-height: 150px;
      max-width: 100%;
      width: auto; }
  .c-commerce-item .form-actions {
    margin-bottom: 0;
    display: flex;
    align-items: stretch; }
    .c-commerce-item .form-actions .button--add-to-cart {
      margin-top: 0;
      color: #00c48c;
      border: 1px solid #00c48c;
      background-color: #ffffff;
      margin-right: 5px; }
      .c-commerce-item .form-actions .button--add-to-cart:not(.is-disabled):hover {
        background-color: #00c48c;
        color: #ffffff; }
      .c-commerce-item .form-actions .button--add-to-cart.is-disabled {
        border-color: #c8c8c8;
        color: #c8c8c8; }
    .c-commerce-item .form-actions .btn-link {
      text-indent: -9999px;
      background-image: url("../images/header-icons/heart.svg");
      background-position: center;
      background-repeat: no-repeat;
      background-color: transparent !important;
      background-size: 50%;
      padding: 0;
      width: 50px;
      margin-right: 0;
      border: 1px solid #fcc;
      transition: 100ms border-color ease-in;
      margin-top: 0;
      outline: none; }
      .c-commerce-item .form-actions .btn-link:disabled, .c-commerce-item .form-actions .btn-link.already-in-wishlist {
        background-image: url("../images/header-icons/heart-full.svg"); }
      .c-commerce-item .form-actions .btn-link:not(.already-in-wishlist):hover {
        border-color: #f77; }
    .c-commerce-item .form-actions .btn-link-wrap > .btn-link {
      height: 100%; }

.commerce-order-item-add-to-cart-form .field--name-quantity label {
  display: none; }

@media screen and (max-width: 1023px) {
  .c-commerce-item {
    padding: 0.4rem; }
    .c-commerce-item__variations .form-actions button {
      font-size: 0.6rem;
      padding: 10px; }
    .c-commerce-item .form-actions .btn-link {
      width: 34px; } }

.c-home-description {
  background-color: #F7F7F7;
  margin-top: 2rem;
  padding: 3rem 0;
  font-weight: 400;
  color: #5F6D74; }

.c-bottom-static-stickers ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 2rem 0; }
  .c-bottom-static-stickers ul li {
    width: 32.33%;
    border: 1px solid #eee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem; }
    .c-bottom-static-stickers ul li img {
      height: 110px;
      width: auto; }
    .c-bottom-static-stickers ul li a {
      flex-grow: 1;
      text-align: center; }

@media screen and (max-width: 1023px) {
  .c-bottom-static-stickers ul {
    flex-direction: column; }
    .c-bottom-static-stickers ul li {
      width: 100%;
      margin-bottom: 2rem; }
      .c-bottom-static-stickers ul li:last-child {
        margin-bottom: 0; } }

.c-product__slideshow img[width], .c-product__slideshow img[height] {
  max-width: 100%;
  margin: 0 auto; }

.c-product__slideshow .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 0;
  list-style: none; }
  .c-product__slideshow .slick-dots li > button {
    border: none;
    background-color: #004878;
    opacity: 0.3;
    width: 30px;
    height: 5px;
    margin: 0 2px;
    text-indent: -9999px;
    outline: none;
    border-radius: 10px; }
  .c-product__slideshow .slick-dots li.slick-active > button {
    background-color: #004878;
    height: 5px;
    width: 35px;
    opacity: 1; }

.c-product__slideshow__nav .item {
  border: 1px solid #ccc !important; }

.c-product__slideshow__nav .slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: none;
  width: 40px;
  height: 40px;
  padding: 1rem;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70%;
  border: none;
  border-radius: 50%;
  text-indent: -9999px;
  z-index: 1; }

.c-product__slideshow__nav .slick-prev {
  left: -2.5rem;
  background-image: url("../images/open-icons/svg/arrow-left.svg"); }

.c-product__slideshow__nav .slick-next {
  left: auto;
  right: -2.5rem;
  background-image: url("../images/open-icons/svg/arrow-right.svg"); }

.c-product__slideshow__nav.no-scroll .slick-track {
  transform: translate3d(0px, 0px, 0px) !important; }

@media (min-width: 992px) {
  .c-product__slideshow__nav {
    width: 100%;
    max-width: 180px;
    max-height: 400px;
    overflow: hidden;
    padding: 0 1rem; }
    .c-product__slideshow__nav .item {
      margin: 0.5rem auto;
      padding: 0.5rem 1rem;
      border: 1px solid #ccc !important; }
      .c-product__slideshow__nav .item img {
        width: 80px !important;
        height: 80px; } }

@media (max-width: 991px) {
  .c-product__slideshow__nav .item {
    margin: 0 1rem; }
  .c-product__slideshow__nav .slick-arrow {
    display: block; }
  .c-product__slideshow__nav .slick-prev {
    left: -1.5rem; }
  .c-product__slideshow__nav .slick-next {
    right: -1.5rem; } }

@media (min-width: 992px) {
  .c-product__slideshow__viewing {
    display: flex;
    flex-direction: row-reverse; }
  .c-product__slideshow__items {
    width: 100%;
    max-width: 400px;
    overflow: hidden; } }

.c-product__info-tabs {
  margin-top: 4rem; }
  .c-product__info-tabs__tabs {
    border-bottom: 1px solid #eee;
    margin: 0;
    display: flex;
    justify-content: center; }
    .c-product__info-tabs__tabs li {
      float: none;
      display: inline-block;
      margin: 0; }
    .c-product__info-tabs__tabs a {
      text-decoration: none;
      color: #444444;
      text-transform: uppercase;
      font-weight: 700; }
    .c-product__info-tabs__tabs.nav-tabs > li.active > a {
      border: none;
      border-bottom: 2px solid #004878; }
  .c-product__info-tabs__description, .c-product__info-tabs__posology, .c-product__info-tabs__ingredients {
    padding-top: 2rem; }
  .c-product__info-tabs__ingredients table.table caption {
    visibility: hidden;
    height: 0;
    padding: 0; }
  .c-product__info-tabs__ingredients table.table > thead > tr > th {
    border: none;
    color: #444444;
    font-weight: 700;
    text-transform: none;
    font-size: 1rem; }
  .c-product__info-tabs__ingredients table.table > tbody > tr:nth-of-type(odd) {
    background-color: #e5f9f3; }
  .c-product__info-tabs__ingredients table.table > tbody > tr td {
    border: none;
    color: #999; }
  .c-product__info-tabs .field--name-field-medicament {
    padding: 1rem 0;
    margin: 1rem 0; }

@media screen and (max-width: 1023px) {
  .c-product__info-tabs {
    margin-top: 1.5rem; }
    .c-product__info-tabs > .container {
      padding: 0;
      overflow: hidden; }
    .c-product__info-tabs .field--name-field-medicament {
      padding: 1rem; }
    .c-product__info-tabs .tab-pane {
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 1rem;
      display: block; }
      .c-product__info-tabs .tab-pane .c-product__info-tabs__mobile-title {
        text-transform: uppercase;
        font-size: 20px;
        display: flex;
        justify-content: space-between; }
        .c-product__info-tabs .tab-pane .c-product__info-tabs__mobile-title:after {
          content: "+";
          color: #004878; }
        .c-product__info-tabs .tab-pane .c-product__info-tabs__mobile-title + .field--item,
        .c-product__info-tabs .tab-pane .c-product__info-tabs__mobile-title + table.tablefield {
          margin-top: 1rem;
          display: none; }
        .c-product__info-tabs .tab-pane .c-product__info-tabs__mobile-title--clicked + .field--item {
          display: block; }
        .c-product__info-tabs .tab-pane .c-product__info-tabs__mobile-title--clicked + table.tablefield {
          display: table; }
        .c-product__info-tabs .tab-pane .c-product__info-tabs__mobile-title--clicked:after {
          content: "-"; } }

.c-product__title {
  font-size: 1.4rem; }

.c-product__price {
  display: flex;
  align-items: flex-end;
  font-size: 1.2rem;
  margin-bottom: 2rem; }
  .c-product__price .field--name-field-promo-price {
    color: #f44335;
    margin-right: 1rem;
    font-size: 1.4rem; }
  .c-product__price .field--name-price .price-with-discount > div,
  .c-product__price .field--name-price .price-without-discount > div {
    display: inline-block;
    margin-right: 1rem;
    vertical-align: baseline; }
  .c-product__price .field--name-price .price-without-discount .price {
    color: #1A1C19; }
  .c-product__price .field--name-price .price-with-discount .price {
    color: #f44335; }
  .c-product__price .field--name-price .price-with-discount .old-price {
    text-decoration: line-through;
    color: #cccccc; }

.c-product--is-discounted .c-product__badge {
  background-color: #f44335;
  z-index: 9; }

.c-product__short-description, .c-product__brand-cat, .c-product__variations, .c-product__stock {
  margin-bottom: 1rem; }

.c-product__brand-cat .field--items, .c-product__brand-cat .field--label {
  float: none;
  display: inline-block; }

.c-product__brand-cat .field--item {
  display: inline-block;
  margin-right: 0.4rem; }

.c-product__stock {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
  color: #00c48c; }
  .c-product__stock .c-product--is-out-of-stock {
    color: #f44335; }

.c-product__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  font-weight: 300;
  padding: 0.4rem 0.6rem;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 0.6rem;
  letter-spacing: 1px; }

.c-product__variations form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap; }
  .c-product__variations form div[data-drupal-messages] {
    width: 100%; }
  .c-product__variations form .field--name-quantity {
    padding-top: 30px;
    order: 2;
    margin-bottom: 0;
    margin-right: 1rem; }
    .c-product__variations form .field--name-quantity button[class^=js-action-] {
      height: 100%;
      background: none;
      border: 1px solid currentcolor;
      font-size: 1.6rem;
      font-weight: 300;
      color: #cccccc;
      border-radius: 3px;
      width: 40px;
      line-height: 1;
      text-align: center;
      outline: none;
      display: block; }
      .c-product__variations form .field--name-quantity button[class^=js-action-]:hover {
        border-color: #444; }
    .c-product__variations form .field--name-quantity .form-disabled button[class^=js-action-] {
      background-color: #eeeeee;
      cursor: not-allowed; }
    .c-product__variations form .field--name-quantity > .form-inline {
      display: flex; }
      .c-product__variations form .field--name-quantity > .form-inline > * {
        margin-right: 3px; }
    .c-product__variations form .field--name-quantity > .form-inline, .c-product__variations form .field--name-quantity > .form-inline > input {
      height: 100%;
      margin-bottom: 0; }
    .c-product__variations form .field--name-quantity > .form-inline > input {
      width: 55px;
      padding: 2px;
      text-align: center;
      outline: none;
      border-radius: 3px; }
      .c-product__variations form .field--name-quantity > .form-inline > input:hover {
        border-color: #444; }
  .c-product__variations form .field--type-entity-reference {
    order: 1;
    margin-bottom: 0;
    width: 100%; }
    .c-product__variations form .field--type-entity-reference > .form-wrapper {
      display: flex;
      flex-direction: column; }
      .c-product__variations form .field--type-entity-reference > .form-wrapper > * {
        margin: 0; }
        .c-product__variations form .field--type-entity-reference > .form-wrapper > * span {
          color: #00a777;
          font-size: 14px; }
          .c-product__variations form .field--type-entity-reference > .form-wrapper > * span::after {
            display: none; }
        .c-product__variations form .field--type-entity-reference > .form-wrapper > *:last-child {
          padding-bottom: 1em;
          border-bottom: 1px solid #eeeeee; }
        .c-product__variations form .field--type-entity-reference > .form-wrapper > * legend {
          border: none; }
        .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper > div {
          display: flex;
          flex-wrap: wrap; }
        .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper .form-item {
          position: relative;
          margin-top: 0;
          margin-bottom: 0; }
          .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper .form-item:first-child label {
            margin-left: 0; }
          .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper .form-item label {
            display: block;
            text-align: center;
            width: 10em;
            color: black;
            padding: 0.5em 3em;
            margin: 0.5em 0.5rem 0.5rem 0;
            cursor: pointer;
            border-radius: 0.25em;
            transition: 0.3s;
            user-select: none;
            background: #ECFAF6; }
            .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper .form-item label:before {
              display: none; }
          .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper .form-item input:checked + label {
            color: white;
            background: #00C48C; }
          .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper .form-item input {
            display: none; }
          .c-product__variations form .field--type-entity-reference > .form-wrapper > * .fieldset-wrapper .form-item .glyphicon-spin {
            position: absolute;
            top: 1.1rem;
            left: 0.5rem; }
      .c-product__variations form .field--type-entity-reference > .form-wrapper .attribute-value {
        height: 40px;
        width: 60px;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        border-radius: 3px;
        border: 1px solid #e1e1e1;
        background: #eeeeee; }
      .c-product__variations form .field--type-entity-reference > .form-wrapper .input-group .select-wrapper select {
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px; }
      .c-product__variations form .field--type-entity-reference > .form-wrapper .input-group-addon {
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px; }
  .c-product__variations form .form-actions {
    padding-top: 30px;
    order: 3;
    display: flex;
    margin-bottom: 0; }
    .c-product__variations form .form-actions button {
      border-radius: 3px;
      text-transform: uppercase;
      margin-right: 15px; }
      .c-product__variations form .form-actions button.is-disabled {
        background: #00a777; }
        .c-product__variations form .form-actions button.is-disabled:hover {
          background: #00a777; }
      .c-product__variations form .form-actions button[data-drupal-selector="edit-wishlist"] {
        text-indent: -9999px;
        background-image: url("data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMsaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0MCA3OS4xNjA0NTEsIDIwMTcvMDUvMDYtMDE6MDg6MjEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCOEM5M0Y5ODgzQjExMUVBQUZGQ0Y3RTg5MDlENEM0NCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCOEM5M0Y5OTgzQjExMUVBQUZGQ0Y3RTg5MDlENEM0NCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkI4QzkzRjk2ODNCMTExRUFBRkZDRjdFODkwOUQ0QzQ0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkI4QzkzRjk3ODNCMTExRUFBRkZDRjdFODkwOUQ0QzQ0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoKDBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgAYwBlAwERAAIRAQMRAf/EAKgAAQADAQEBAAAAAAAAAAAAAAAGBwgEBQMBAQACAwEBAAAAAAAAAAAAAAAFBgMEBwIBEAABAwIEAwQGCQMFAQAAAAABAgMEAAURIQYHMVESQWEyE3GBkaEiQrFSYnKCIzMVCKJDFPDhkrJjFhEAAQMBAwgJAgQEBwAAAAAAAQACAwQRMQUhQVFhsRIiBvBxgZGhwdEyE0IU4VJicvHCIzOCktJDUxUW/9oADAMBAAIRAxEAPwDVNESiJREoiURKIlESiJREoiURKIlESiJRFWmtN9tM2F5yFbkG8XBslKw0oJYQoZYKdwV1Eckg+kVGVGJsYbG8R8FbsK5PqKkB8h+Jh0+49nqq8c3/ANxJzqjb4UVDY4IaYcdIH2iVn6BWgcUlN1itLeS6CMf1HOt1uA8l0Wz+Rmqokjy71bI8lsEBaWwuO8OfiLif6a9MxaQHiAPgsVRyNTPbbC9zTrscPLarh0XuHprV0Yrtj5TKbGL8F7BLyO/pxIUn7SSRUvT1bJRw36FRMVwSooXWSDhNzhcemgqRvPNMtLeeWltpsFTjiyEpSkZkknIAVsEgC0qKa0uIAFpKqLV38iLNAeXF09F/c3UEpVLcUW4+I+oAOtf9I5GomfFWjIwW61eMM5IllAdO74x+UZXduYeKho333NkYvx4kbyf/ADjOKQPxFavprT/7OY6O5T//AI7DmcLnOt1uFuxerYv5J3FDqW79amnWscFvQyptYHPy3CsKP4hWWLF3fULRqWlWchxkWwSEHQ7KO8WbCrl0zqyw6mt4nWeUmQ0MA6jwuNqPyuIOaT/oVMQzslFrSqDiGGz0j9yVu6fA9RXr1mWilESiKld9dypUZw6SsrpTIcSP3N9s/GA4PhYThnioHFXdgOdQuJVZB+Nvb6LoPJ+AtePuphwj2A6vq7My6NtNi7bEiM3TVTIlT3AFt21f6TIPAOj518wfhHfXujw0Ab0l+hYse5vke4x0x3WD6s56tA8Vb0aLGjMpZjNIYZRklttIQkegJwFSzWgCwKjPkc82uJJ1rhvmmrDfYqo13gszGiMB5iR1J70LHxJPek1jlgZILHC1bFJXz0zt6J5adXmLis97gbeXjbu7Mah09Id/bQ4PIkDNyO4f7bmGSkq4AnjwPfAVdI6Bwc08OnQuo4LjcWKRGCdo+SzKMzhpGgjwvGr4ax3R1Jr1u22C3RlseeEIlRWTiZEkn3NjiAfSeFeaisfPY0Ds0lZML5ep8NL55HW2W2E/S3/V0CtTb/ZTT+n4zUq7st3O8kBS1ujrZaP1W0KyOH1lDHlhUpS4cxgtdxO8FTMa5rnqXFsRMcWq89Z8h4qyEpSlISkBKQMAkZACpJVMm29eDqfQeldSsKbusBtx1QwTLQAh9B5pcHxeo5d1a81LHIOIdudSWH4xU0jrYnkDRe3uWf71ZtUbSauYmwXi9BeJMd8ght9oEFbDyR8w/wBx3QMkb6WQEXbV06kqqbG6UseLHi8Z2nM5ur+BWjNNaggahscS8QTjHlo6uk+JChktCsO1KgQasMMokYHDOuVV9E+lmdE/3NPfoPavTrKtNfCfMahQZEx7JqM0t5w/ZbSVH3CvL3BoJOZZIYjI8MF7iB3rOezlrc1buRJvtzHmiIV3B0KzBkOL/KGfYkkqH3ar1BH8s287Nl7V1bmioFFh7YY8m9YwftAy993atJ1Y1yVKIlEXJdrVBu1tk22e2HYktstvNntB5HsI4g868SRh7S03FZ6aofBI2Rhsc02hQ/Quz+ntI3N25x3npstSS2wt/p/KQrxdISB8R4FXKtSmoGRO3rbSp7GOZ566MRuAY282W5T6alO63lWkoiURRbc3TDOotGXGEUBUlpsyYSu0PMgqTh97NJ7jWpWw/JGRnGUKZwDEDS1bH28JO67qPpf2Kt/4135xSbtYXFYoR0zYySeGJ8t31eCo/CJcrmdvr5K2c+0YBjnH7TtHmrxqbXOlHtxFLToPUBRx/b5I9RaUD7q16v8AtO6ipTAwPvYbf+Ru1Vf/ABkS15eolf3cYgP3cHsPfUZg/wBXZ5q48/k2wjNx/wAqvGptc6SiJREoiURKIlESiIQCMDmDxoizdsBgjceWln9H/DkJGH1A63h9AquYV/d7F1nnTLh7Sb99uwrSNWNcmXLdYDdxtcy3u/pzGHGF/ddQUH6a8SM3mlukLNTTGKRsgva4HuNqz3sRdl2DXs2wT/ylzkriqSeyTGUSlPs6x6agMNk3JS058nauo84UwqaJs7MoZY7/AAu6BaOqxLlCURKIlESiJREoiUReBr3ULWntI3O5rUEuNsqRGHN5wdDYH4jj6K16qX44y5SeDUJqqpkYuJy9QynwVTfxqsizLu98WnBtCEwmVc1LIdcHq6Ue2orCI8rndiu/PtWN2OEX27x2DzV8VOrmqURZ/wB99Gy7RfGdZ2oKbafcQZS2+LMpGHQ73BfSPxDvqAxKnLH/ACNuO1dO5OxVs8JpJcpANludpvHZs6laW2mvoesLCiR1JRdIwS3cYwyKV4eNI+oviPZ2VJ0dUJWfqF6p2P4M+hnLf9t2Vp1aOsfipdW4oJKIlESiJREoiEgAknADMk0QBZu3Y1pK1zqaLprT+MiAw95TARwkSVfCXPuIGISeWJ4VXK2oM7wxmUZtZXWeW8Kbh1O6on4XuFp/S3R1nP2BXronS0bS+modnZIWplPVIdH9x5ebi/bw7sKnKaARMDVzjFsRdWVDpTnuGgZh0zr3KzqNSiLnuVuhXKA/AnNJfiSUFt5pXBSTXl7A4EG4rLBO+J4ew2OabQVmvUVg1NtPq1q6WtxTltdURFkKBKHGzmqO+B82A9fiHdW5Yn0sm8Lsx8iut0NbT41SmOQWSC8ZwfzN6ajrvjQ2u7Nq+1CZBX0SWwBMhKI8xlZ580n5VdvpyqdpqpszbRfnC5ri+DzUMu4/K0+12Yj10hSStlRKURKIlEQkAEk4AZkmiKhN3d3V3Na9L6XcU4w4ryZkxnEqeUT0+SzhmUk5EjxcBlxga6u3+Bl23p4rpfLPLIhAqakWEZWtP0/qdr2dd0u2d2rGmIgu92QFX6UjBLfERm1fIPtq+Y+oduO3QUXxjed7j4KD5o5i+7d8UR/otP8AmOnq0d/VZtSaqCURKIlEXFebNbL1bXrbcmEyIchPS42r3EHiFDiCKxyRte3dcMi2KWqkp5BJGd1zVnLVWjtV7XX5u92WQtdtK8GJgGIAJ/QkpGWfsPZgeFemp5KZ+805NPkV1bDsUpsYgMMwHyWZW/zN6ZOpXPt1udZ9YwghJEW8NJxlQFHPLitonxI947e+YpK1swsudoVBxzl+Wgfb7ojc7yOg7VM63VX0oi+cmTHix3JMl1LMdlJW664QlKUjMkk5AV8c4NFpuXuONz3BrRa43BZ73K3auWqpf/zWk0u/4D6vJU40D50tRy6UgZpb7uJ7csqr9ZXGU7jPbtXUMB5ajom/cVVm+MuW5n47MynW1Oz8XTKG7teEokX5QxbTkpuMCOCOa+avUOZ3qGg+Pid7tn4qucx8zuqyYouGHxd16tXerOqTVPSiJREoiURKIvjNhRJsV2JMZRIivpKHmXAFJUk8QQa8uaHCw3LJFK6Nwew7rhcQs9bibUXfR00al0q46bcwvzfyyS/EPPEZqb7+weLnVfqqF0J32e3xC6jgfMcVez7epA+Q5Mvtf6O6BT7a3eOFqVLdqvBRFvwHShXhak4dqPqr5p9nIb9FiAk4XZHbVWuYeV30lssXFD4t69WvvU/vd8tVktr1yukhMaGyMVuK7T2JSOKlHsArfllaxu842BVikpJaiQRxjecVnTVut9VbnXtuxWOO4i2FeLMJJwKwk/rSVDIAccOCe81Xp6mSpdutGTR6rqmG4RTYRCZpiDJndo/S3paepXDtvtZaNHRg+vpl3t1OEiaRkgHi2yD4U8zxPuqXo6JsQtOV3S5UXHuYpa526OGEXN83a9inFbyriURKIlESiJREoiURFJCgUqGKTkQeBFEBsVHbo7IuJcXftINFKwfMkWtrIgjPrjYf9P8AjyqDrMOs4ox2enoui8vc2ggQVRyXB52O9e/SoZHs+6O4dwh264/5JYhJDapMttTTLKRkVrxCetwj8RrUbHNO4NNuTTm6d6n31WG4XG6SPd3n5bGm0nUNDfALQWidCWPSFsEO3N9T6wDLmrA815Q7SexI7EjIVPU1K2IWC/SuYYtjE1dJvyHILm5h00qRVsqKSiJREoiURKIlESiJREoiURKIlESiJREoiURKIlESiJREoiURKIlESiJREoiURKIlEX//2Q==");
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        background-size: 50%;
        padding: 0;
        width: 50px;
        margin-right: 0;
        border: 1px solid #fcc;
        transition: 100ms border-color ease-in;
        height: 100%; }
        .c-product__variations form .form-actions button[data-drupal-selector="edit-wishlist"]:disabled, .c-product__variations form .form-actions button[data-drupal-selector="edit-wishlist"].already-in-wishlist {
          background-image: url("../images/header-icons/heart-full.svg"); }
        .c-product__variations form .form-actions button[data-drupal-selector="edit-wishlist"]:not(.already-in-wishlist):hover {
          border-color: #f77; }

@media screen and (max-width: 1023px) {
  .c-product__price {
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee; }
  .c-product__variations form {
    flex-wrap: wrap; }
    .c-product__variations form .form-actions,
    .c-product__variations form .form-actions button {
      width: 100%; }
    .c-product__variations form .field--type-entity-reference > .form-wrapper {
      flex-direction: column; }
      .c-product__variations form .field--type-entity-reference > .form-wrapper > .form-type-select {
        margin-bottom: 1rem; }
    .c-product__variations form .field--type-entity-reference.field--widget-commerce-product-variation-attributes {
      margin-bottom: 1rem;
      width: 100%; }
      .c-product__variations form .field--type-entity-reference.field--widget-commerce-product-variation-attributes > .form-wrapper > .form-type-select {
        width: 100%;
        margin-right: 0; }
    .c-product__variations form .field--name-quantity {
      width: 100%;
      margin: 0;
      padding-top: 0.5rem; }
      .c-product__variations form .field--name-quantity > .form-inline > input {
        padding-left: 2px;
        width: 100%;
        margin: 0; }
      .c-product__variations form .field--name-quantity button[class^=js-action-] {
        min-width: 50px;
        height: 40px;
        margin-right: 0;
        box-sizing: border-box; }
      .c-product__variations form .field--name-quantity button.js-action-increment {
        margin-left: 10px; }
      .c-product__variations form .field--name-quantity button.js-action-decrement {
        margin-right: 10px; } }

@media screen and (max-width: 992px) {
  .product-detail {
    position: relative; }
    .product-detail__static {
      position: static; }
      .product-detail__static .c-product__title {
        position: absolute;
        top: 0; }
    .product-detail__slider {
      margin-top: 3rem;
      overflow-x: hidden; } }

.c-product-search {
  display: flex; }
  .c-product-search__info {
    margin-left: 1rem; }
  .c-product-search__price {
    font-weight: 700; }
  .c-product-search__image {
    min-width: 64px; }

.search-api-autocomplete-search {
  padding: 0; }
  .search-api-autocomplete-search .ui-menu-item-wrapper.ui-state-active .search-api-autocomplete-suggestion {
    background: none;
    color: #444444; }
  .search-api-autocomplete-search li:hover .c-product-search__title a {
    color: #00c48c; }
  .search-api-autocomplete-search .c-product-search__title a {
    color: #00c48c;
    text-decoration: underline; }

.page-cart .btn-checkout-return,
.page-wishlist .btn-checkout-return {
  align-self: flex-start;
  text-decoration: none;
  color: #ccc;
  text-transform: uppercase;
  transition: 150ms color ease-out;
  display: inline-block; }
  .page-cart .btn-checkout-return:hover,
  .page-wishlist .btn-checkout-return:hover {
    color: #444; }

.page-cart__title,
.page-wishlist__title {
  background-color: #f6f6f6;
  padding: 2rem 0; }
  .page-cart__title h1,
  .page-wishlist__title h1 {
    border-bottom: none;
    text-align: center;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 2rem; }
  .page-cart__title .c-breadcrumb__container,
  .page-wishlist__title .c-breadcrumb__container {
    border: none;
    text-align: center;
    margin-bottom: 0; }

.page-cart .o-list-flex .views-form,
.page-wishlist .o-list-flex .views-form {
  width: 100%;
  margin-top: 1rem; }
  .page-cart .o-list-flex .views-form > form,
  .page-wishlist .o-list-flex .views-form > form {
    display: flex;
    flex-direction: column; }

.page-cart .field--name-total-price,
.page-wishlist .field--name-total-price {
  text-transform: uppercase;
  width: 40%;
  margin-left: auto; }
  .page-cart .field--name-total-price > div,
  .page-wishlist .field--name-total-price > div {
    display: flex;
    flex-direction: column; }
  .page-cart .field--name-total-price .field--label,
  .page-wishlist .field--name-total-price .field--label {
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 1.4rem;
    display: block; }

.page-cart .views-field-move-to-cart button.is-disabled,
.page-wishlist .views-field-move-to-cart button.is-disabled {
  background: #00a777; }
  .page-cart .views-field-move-to-cart button.is-disabled:hover,
  .page-wishlist .views-field-move-to-cart button.is-disabled:hover {
    background: #00a777; }

.page-cart .order-total-line,
.page-wishlist .order-total-line {
  border-bottom: 1px solid #ccc;
  padding: 0.6rem 0;
  display: flex;
  justify-content: space-between; }
  .page-cart .order-total-line-label,
  .page-wishlist .order-total-line-label {
    font-weight: 400;
    color: #aaa; }

.page-cart .table th,
.page-wishlist .table th {
  text-transform: uppercase;
  font-weight: 400;
  color: #aaa; }
  .page-cart .table th.views-field-remove-button,
  .page-wishlist .table th.views-field-remove-button {
    text-indent: -9999px; }

.page-cart .table td,
.page-wishlist .table td {
  vertical-align: middle; }
  .page-cart .table td > .form-group,
  .page-wishlist .table td > .form-group {
    margin-bottom: 0; }
  .page-cart .table td.views-field-remove-button,
  .page-wishlist .table td.views-field-remove-button {
    padding-left: 0; }
    .page-cart .table td.views-field-remove-button button,
    .page-wishlist .table td.views-field-remove-button button {
      font-size: 0;
      background: none;
      border: none; }
      .page-cart .table td.views-field-remove-button button span,
      .page-wishlist .table td.views-field-remove-button button span {
        color: #ccc;
        font-size: initial;
        text-indent: 0;
        margin: 0; }

.page-cart .price-with-discount,
.page-wishlist .price-with-discount {
  display: flex;
  flex-direction: column; }
  .page-cart .price-with-discount .old-price,
  .page-wishlist .price-with-discount .old-price {
    order: 0;
    color: #cccccc;
    text-decoration: line-through; }
  .page-cart .price-with-discount .price,
  .page-wishlist .price-with-discount .price {
    order: 1;
    color: #f44335; }

.page-cart .views-field-edit-quantity,
.page-cart .views-field-total-price__number,
.page-wishlist .views-field-edit-quantity,
.page-wishlist .views-field-total-price__number {
  text-align: right; }

.page-cart .views-field-field-variation-images,
.page-wishlist .views-field-field-variation-images {
  vertical-align: middle; }
  .page-cart .views-field-field-variation-images a,
  .page-wishlist .views-field-field-variation-images a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    text-decoration: none;
    color: #444444; }

.page-cart .form-actions,
.page-wishlist .form-actions {
  margin: 2rem 0 2rem auto;
  width: 40%; }
  .page-cart .form-actions button,
  .page-wishlist .form-actions button {
    width: 100%;
    margin: 0.4rem 0;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.8rem;
    border-radius: 3px; }

.page-cart__payment-methods,
.page-wishlist__payment-methods {
  width: 40%;
  margin-left: auto;
  display: flex;
  align-items: center; }
  .page-cart__payment-methods .title,
  .page-wishlist__payment-methods .title {
    text-transform: uppercase;
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 400;
    flex-grow: 1;
    min-width: 150px; }
  .page-cart__payment-methods ul,
  .page-wishlist__payment-methods ul {
    list-style: none;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap; }
  .page-cart__payment-methods li,
  .page-wishlist__payment-methods li {
    width: 3.4rem;
    height: 2rem;
    margin-left: 0.2rem;
    border: 1px solid #eee;
    border-radius: 3px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
    .page-cart__payment-methods li:first-child,
    .page-wishlist__payment-methods li:first-child {
      margin-left: 0; }
    .page-cart__payment-methods li.bank_transfer,
    .page-wishlist__payment-methods li.bank_transfer {
      background-image: url("../images/payments/banktransfer2.png"); }
    .page-cart__payment-methods li.paypal,
    .page-wishlist__payment-methods li.paypal {
      background-image: url("../images/payments/paypal.png"); }
    .page-cart__payment-methods li.payzen,
    .page-wishlist__payment-methods li.payzen {
      background-image: url("../images/payments/payzen.png"); }
    .page-cart__payment-methods li.alipay,
    .page-wishlist__payment-methods li.alipay {
      background-image: url("../images/payments/alipay.png"); }
    .page-cart__payment-methods li.wechat_pay,
    .page-wishlist__payment-methods li.wechat_pay {
      background-image: url("../images/payments/wechatpay.png"); }

.page-cart .cart-empty-page,
.page-wishlist .cart-empty-page {
  text-align: center; }
  .page-cart .cart-empty-page h2,
  .page-wishlist .cart-empty-page h2 {
    font-size: 2.25rem;
    margin-bottom: 5px; }
  .page-cart .cart-empty-page .button,
  .page-wishlist .cart-empty-page .button {
    margin-top: 30px;
    text-transform: uppercase; }

.page-cart .views-field-edit-quantity .form-item,
.page-wishlist .views-field-edit-quantity .form-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  .page-cart .views-field-edit-quantity .form-item .js-action-increment__text,
  .page-wishlist .views-field-edit-quantity .form-item .js-action-increment__text {
    position: absolute;
    top: 100%;
    width: 300px;
    padding: 8px 0;
    color: red; }

.page-cart .views-field-edit-quantity .form-control,
.page-wishlist .views-field-edit-quantity .form-control {
  margin: 0 3px;
  text-align: center; }

.page-cart .views-field-edit-quantity button[class^=js-action-],
.page-wishlist .views-field-edit-quantity button[class^=js-action-] {
  height: 100%;
  background: none;
  border: 1px solid currentcolor;
  font-size: 1.6rem;
  font-weight: 300;
  color: #cccccc;
  border-radius: 3px;
  width: 40px;
  line-height: 1;
  text-align: center;
  outline: none;
  display: block;
  height: 2.5rem; }
  .page-cart .views-field-edit-quantity button[class^=js-action-]:hover,
  .page-wishlist .views-field-edit-quantity button[class^=js-action-]:hover {
    border-color: #444; }

.page-cart .views-field-edit-quantity .form-disabled button[class^=js-action-],
.page-wishlist .views-field-edit-quantity .form-disabled button[class^=js-action-] {
  background-color: #eeeeee;
  cursor: not-allowed; }

.only-on-cart {
  display: none; }

@media screen and (max-width: 1023px) {
  .page-cart .field--name-total-price {
    width: 100%; }
  .page-cart .btn-checkout-return {
    margin-bottom: 1rem; }
  .page-cart__payment-methods, .page-cart .btn-checkout-return, .page-cart .form-actions {
    width: 100%; }
  .page-cart__payment-methods {
    flex-direction: column; }
    .page-cart__payment-methods ul {
      margin-left: 0; } }

.commerce-cart-block .cart-block form {
  max-height: 280px;
  overflow: auto; }

.commerce-cart-block .cart-block .o-list-flex .views-form:after {
  content: "";
  background: linear-gradient(rgba(255, 255, 225, 0), #fff);
  display: block;
  height: 65px;
  position: absolute;
  left: 0;
  right: 15px;
  bottom: 0;
  pointer-events: none; }

.commerce-cart-block--contents__links {
  margin: 1rem 0 0; }
  .commerce-cart-block--contents__links a {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 3px; }
  .commerce-cart-block--contents__links .viewCart, .commerce-cart-block--contents__links .checkout {
    color: #00c48c;
    background-color: #ffffff;
    border: 1px solid currentColor; }

.commerce-cart-block__footer {
  border-top: 1px solid #eee;
  margin: 0 1rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.commerce-cart-block__total-block {
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.7rem; }
  .commerce-cart-block__total-block__total {
    font-weight: 700;
    font-size: 1.6rem;
    display: block;
    text-align: left; }
  .commerce-cart-block__total-block + .commerce-cart-block__checkout-btn {
    margin-left: 2rem; }

.commerce-cart-block__checkout-btn {
  text-transform: uppercase;
  height: auto;
  text-align: center;
  flex-grow: 1; }

.c-wishlist-block {
  margin: 0; }
  .c-wishlist-block__img {
    width: 25%; }
  .c-wishlist-block__title {
    font-size: 0.8rem;
    margin: 0 0 0.4rem;
    padding-right: 2rem;
    font-weight: 400; }
    .c-wishlist-block__title a {
      color: #00c48c; }
  .c-wishlist-block__price {
    font-weight: 700;
    font-size: 0.8rem; }
  .c-wishlist-block__info {
    margin-left: 1rem;
    flex-grow: 1;
    width: 75%; }
  .c-wishlist-block li {
    display: flex;
    padding: 1rem; }

.c-wishlist-block__links-anonymous {
  display: flex;
  align-items: center;
  justify-content: center; }
  .c-wishlist-block__links-anonymous a.c-wishlist-block__link-inline {
    display: inline-block;
    width: auto;
    padding: 0.4rem;
    color: #00c48c; }
    .c-wishlist-block__links-anonymous a.c-wishlist-block__link-inline:hover {
      background: none; }

.c-wishlist-block__links-connected {
  padding: 0.4rem 1rem;
  border-bottom: 1px solid #eee; }
  .c-wishlist-block__links-connected a {
    display: block;
    text-align: center;
    color: #00c48c; }

.wishlist-block__container {
  display: block;
  position: relative; }

.wishlist-block--is-scrolling .wishlist-block__container:after {
  content: "";
  background: linear-gradient(transparent, #fff);
  display: inline-block;
  height: 50px;
  position: absolute;
  left: 0;
  right: 15px;
  bottom: 0;
  pointer-events: none; }

.wishlist-block--is-scrolling .c-wishlist-block {
  max-height: 280px;
  overflow: auto; }

.wishlist-item__image img {
  max-width: 100px; }

.wishlist-item__quantity {
  text-align: center; }

.wishlist-item__actions {
  text-align: right; }
  .wishlist-item__actions a {
    color: #ffffff;
    background: #00c48c;
    display: inline-block;
    border-radius: 3px;
    transition: 150ms background-color ease-out;
    text-decoration: none;
    padding: 0.6rem 1.2rem; }
    .wishlist-item__actions a:hover {
      background-color: #00a777; }
    .wishlist-item__actions a + div {
      display: inline-block; }
  .wishlist-item__actions .form-group button {
    display: inline-block;
    width: auto;
    margin-left: 1rem; }

.wishlist-user-form > .form-group {
  text-align: right;
  margin-top: 2rem; }

.wishlist-user-form ~ .form-actions {
  display: none; }

.address-book__profiles {
  flex-direction: column;
  clear: both; }

.address-book__profile {
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 3px; }
  .address-book__profile--default {
    background: rgba(112, 199, 140, 0.2); }

.address-book__add-link {
  background-color: #00c48c;
  transition: 150ms background-color ease-out;
  border: none;
  color: #ffffff;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.6rem 1.2rem;
  margin: 0 0 1rem;
  float: right; }
  .address-book__add-link:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #00a777; }
  .address-book__add-link:focus {
    color: #fff;
    outline: none;
    text-decoration: none; }

.address-book__operations a {
  background-color: #00c48c;
  transition: 150ms background-color ease-out;
  border: none;
  color: #ffffff;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.6rem 1.2rem;
  margin: 0 0 1rem;
  margin: 0 1rem 0 0;
  display: inline-block; }
  .address-book__operations a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #00a777; }
  .address-book__operations a.address-book__set-default-link {
    margin-right: 0;
    background-color: #004878;
    float: right; }
  .address-book__operations a.address-book__delete-link, .address-book__operations a.address-book__set-default-link {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
    color: #444444; }
    .address-book__operations a.address-book__delete-link:hover, .address-book__operations a.address-book__set-default-link:hover {
      background-color: #eeeeee; }
  @media screen and (max-width: 767px) {
    .address-book__operations a {
      width: 100%;
      text-align: center;
      margin-bottom: 10px; } }

.user-form {
  width: 65%; }

.profile-customer-address-book-edit-form label,
.profile-customer-address-book-add-form label {
  margin-bottom: 10px; }

.profile-customer-address-book-edit-form .field--type-address #edit-address-0-address-country-code,
.profile-customer-address-book-add-form .field--type-address #edit-address-0-address-country-code {
  width: 49%;
  display: inline-block; }

.profile-customer-address-book-edit-form .field--type-address .form-item-address-0-address-organization,
.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-organization {
  width: 49%;
  display: inline-block;
  float: right; }

.profile-customer-address-book-edit-form .field--type-address .address-container-inline,
.profile-customer-address-book-add-form .field--type-address .address-container-inline {
  width: 100%;
  display: inline-block; }
  .profile-customer-address-book-edit-form .field--type-address .address-container-inline .form-item,
  .profile-customer-address-book-add-form .field--type-address .address-container-inline .form-item {
    width: 49%;
    display: inline-block;
    margin-right: 0; }
    .profile-customer-address-book-edit-form .field--type-address .address-container-inline .form-item.form-item-address-0-address-family-name,
    .profile-customer-address-book-add-form .field--type-address .address-container-inline .form-item.form-item-address-0-address-family-name {
      float: right; }

.profile-customer-address-book-edit-form .field--type-address .form-item-address-0-address-address-line1,
.profile-customer-address-book-edit-form .field--type-address .form-item-address-0-address-address-line2,
.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-address-line1,
.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-address-line2 {
  width: 49%;
  display: inline-block; }

.profile-customer-address-book-edit-form .field--type-address .form-item-address-0-address-address-line2,
.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-address-line2 {
  float: right;
  margin-top: 30px; }

.profile-customer-address-book-edit-form .field--type-address .form-item-address-0-address-locality,
.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-locality {
  float: right; }

.profile-customer-address-book-edit-form .field--type-address .form-item-address-0-address-sorting-code.form-item,
.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-sorting-code.form-item {
  width: 100%; }

.profile-customer-address-book-edit-form .field--type-address div[id^="edit-address"],
.profile-customer-address-book-add-form .field--type-address div[id^="edit-address"] {
  margin: 0; }

.profile-customer-address-book-edit-form .field--type-telephone,
.profile-customer-address-book-add-form .field--type-telephone {
  width: 49%;
  display: inline-block; }
  .profile-customer-address-book-edit-form .field--type-telephone label,
  .profile-customer-address-book-add-form .field--type-telephone label {
    margin-bottom: 10px; }
  .profile-customer-address-book-edit-form .field--type-telephone input,
  .profile-customer-address-book-add-form .field--type-telephone input {
    width: 100%; }
  .profile-customer-address-book-edit-form .field--type-telephone.field--name-field-fax,
  .profile-customer-address-book-add-form .field--type-telephone.field--name-field-fax {
    float: right; }

.profile-customer-address-book-edit-form .form-actions a,
.profile-customer-address-book-add-form .form-actions a {
  display: inline-block;
  vertical-align: top;
  background-color: #00c48c;
  transition: 150ms background-color ease-out;
  border: none;
  color: #ffffff;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.6rem 1.2rem;
  margin: 0 0 1rem;
  background-color: #fff;
  color: #444444;
  border: 1px solid #ddd; }
  .profile-customer-address-book-edit-form .form-actions a:hover,
  .profile-customer-address-book-add-form .form-actions a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #00a777; }
  .profile-customer-address-book-edit-form .form-actions a:hover,
  .profile-customer-address-book-add-form .form-actions a:hover {
    text-decoration: none;
    background-color: #efefef;
    color: #444444; }

@media screen and (max-width: 757px) {
  .profile-customer-address-book-edit-form .form-actions button,
  .profile-customer-address-book-edit-form .form-actions a,
  .profile-customer-address-book-add-form .form-actions button,
  .profile-customer-address-book-add-form .form-actions a {
    width: 100%;
    text-align: center;
    margin-bottom: 10px; } }

.profile-customer-address-book-add-form .field--type-address #edit-address-0-address-country-code {
  width: 100%; }

.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-organization {
  float: unset;
  width: 100%; }

.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-locality {
  width: 49%; }

.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-address-line2 {
  margin-top: 30px; }

.profile-customer-address-book-add-form .field--type-address .form-item-address-0-address-postal-code {
  width: 49%;
  display: inline-block; }

.user-register-form.user-form {
  width: 100%;
  border: none;
  padding: 0; }

@media screen and (max-width: 1023px) {
  .profile-form[class^=profile-customer-address-book-], .user-form {
    width: 100%;
    padding: 1rem; } }

.table-responsive {
  width: 100%;
  margin-top: 1rem; }

.table thead tr th {
  text-transform: uppercase;
  font-weight: 400;
  color: #aaa; }

.table tr:hover td {
  background-color: #f5f5f5; }

.table td {
  padding: 8px;
  vertical-align: middle; }

.view-catalog .pager {
  border: 1px solid #ddd; }
  .view-catalog .pager .pager__item {
    display: none; }
  .view-catalog .pager .ajax-progress {
    padding: 0.6rem 0; }
    .view-catalog .pager .ajax-progress:before {
      content: "\e030";
      position: relative;
      top: 1px;
      display: inline-block;
      font-family: 'Glyphicons Halflings';
      font-style: normal;
      font-weight: 400;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      margin-right: 0.6rem;
      vertical-align: baseline;
      animation: 1s rotate infinite ease-out; }
    .view-catalog .pager .ajax-progress:after {
      content: "Loading"; }

.pagination .pager__item a {
  border: none;
  background: none;
  color: #888; }
  .pagination .pager__item a:hover {
    background: none;
    color: #00c48c; }
  .pagination .pager__item a:focus {
    color: #00c48c;
    background: none;
    outline: none; }

.pagination .pager__item.is-active a {
  color: #00c48c; }

.pagination .pager__item.pager__item--next a {
  padding-left: 0;
  padding-right: 0; }

@keyframes rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.checkout-complete__payment-instructions {
  margin: 1rem auto !important;
  background-color: #f3efb5;
  width: 80%;
  padding: 20px; }

.c-top-static-stickers ul {
  display: flex;
  list-style: none;
  margin: 4rem 0 0;
  padding: 0; }
  .c-top-static-stickers ul li {
    flex-grow: 1;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    line-height: 1.8;
    width: 25%;
    padding: 0 1rem;
    color: #38466e; }
  .c-top-static-stickers ul img {
    max-height: 90px;
    display: block;
    margin: 0 auto 1rem; }
  .c-top-static-stickers ul.contextual-links.links {
    display: none; }

@media screen and (max-width: 1023px) {
  .c-top-static-stickers ul {
    flex-direction: column; }
    .c-top-static-stickers ul li {
      width: 100%;
      margin-bottom: 2.4rem;
      font-size: 1rem; }
      .c-top-static-stickers ul li:last-child {
        margin-bottom: 0; } }

.c-password-container {
  position: relative; }
  .c-password-container__revealer {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    height: 40px;
    outline: none; }

.c-popin-block .c-password-container__revealer {
  width: 40px; }

.c-order__informations__block {
  margin-bottom: 1.5rem; }

.c-order__informations__list .field--label {
  float: none; }

.c-order__informations__title, .c-order__informations__list .field--label {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1A1C19; }

.c-order__informations__title + .c-order__informations__list .field--label {
  font-size: 1rem; }

.c-order__informations__title + .c-order__informations__list .field--label-inline {
  display: flex;
  align-items: baseline; }

.c-order__informations__title + .c-order__informations__list .field--label, .c-order__informations__title + .c-order__informations__list .field--item {
  margin-bottom: 0; }

.c-order__informations__list,
.c-order__informations__list .field--label,
.c-order__informations__list .field--item, .c-order__informations__title {
  margin-bottom: 1rem; }

.c-order__informations__list .items {
  display: flex; }

.c-order__informations__list .item {
  display: flex;
  align-items: center; }
  .c-order__informations__list .item:not(:last-child) {
    margin-right: 1rem; }
  .c-order__informations__list .item__title {
    margin-right: 0.5rem; }

.c-order__items .table {
  margin-bottom: 0; }
  .c-order__items .table th {
    color: #444444;
    font-weight: 700; }
  .c-order__items .table tbody tr:hover,
  .c-order__items .table tbody tr:hover td, .c-order__items .table tbody tr:nth-of-type(odd) {
    background: transparent; }
  .c-order__items .table td, .c-order__items .table th {
    vertical-align: middle; }
    .c-order__items .table td:last-child, .c-order__items .table th:last-child {
      text-align: right; }
    .c-order__items .table td a, .c-order__items .table th a {
      font-weight: 500;
      text-decoration: none; }
      .c-order__items .table td a:hover, .c-order__items .table th a:hover {
        color: #00c48c;
        text-decoration: underline; }
  .c-order__items .table .views-field-field-variation-images {
    width: 100px;
    height: 100px; }
  .c-order__items .table .views-field-quantity, .c-order__items .table .views-field-unit-price__number {
    text-align: center; }

.c-order__price {
  margin-bottom: 2rem; }
  .c-order__price .order-total-line {
    align-items: center;
    display: flex;
    height: 5rem;
    justify-content: space-between;
    padding: 0.8rem 8px;
    border-bottom: 2px solid #ddd;
    font-size: 14px;
    text-transform: uppercase; }
    .c-order__price .order-total-line:first-child {
      border-top: 2px solid #ddd; }
    .c-order__price .order-total-line-label {
      color: #444;
      font-weight: 700; }

.c-order__download-invoice {
  text-decoration: none; }

.c-blog-list-hero {
  margin-top: -3rem;
  margin-bottom: 2rem;
  height: 400px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center; }
  .c-blog-list-hero img {
    margin: 0 auto; }
  .c-blog-list-hero .container {
    position: relative;
    height: 100%; }
  .c-blog-list-hero .page-header {
    position: absolute;
    height: 100%;
    left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    max-width: 600px;
    font-size: 49px;
    text-transform: none; }

.c-checkout-progress {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
  border-bottom: 1px solid #ccc; }
  .c-checkout-progress--step__current {
    border-bottom: 1px solid currentcolor;
    color: #00a777; }
  .c-checkout-progress li {
    text-transform: uppercase;
    text-align: center;
    list-style: none;
    white-space: nowrap;
    padding: 1rem 2rem;
    font-weight: 500; }

.checkout-return-link {
  float: left; }
  .checkout-return-link + h1.page-header {
    margin-top: 2px;
    margin-left: 130px;
    font-weight: 500; }

.page-checkout-complete {
  text-align: center; }
  .page-checkout-complete h1.page-header {
    font-size: 4rem;
    font-weight: 500; }
  .page-checkout-complete .button--primary {
    text-transform: uppercase;
    padding: 0.6rem 4rem; }
  .page-checkout-complete .checkout-complete__payment-instructions {
    margin: 1rem 0; }

.profile--type--customer {
  margin-bottom: 1rem; }
  .profile--type--customer .field--name-field-telephone .field--label, .profile--type--customer .field--name-field-telephone .field--item {
    font-weight: normal; }

#edit-shipping-information-shipments {
  margin-top: 3rem;
  margin-bottom: 0; }

.layout-region-checkout-secondary {
  background-color: #F8FAFB;
  padding: 2rem; }
  .layout-region-checkout-secondary h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 10px; }
  .layout-region-checkout-secondary .view-commerce-checkout-order-summary {
    border-top: 1px solid #ccc;
    margin-top: 1rem; }
    .layout-region-checkout-secondary .view-commerce-checkout-order-summary .table-responsive {
      margin-top: 0;
      padding-top: 0; }
    .layout-region-checkout-secondary .view-commerce-checkout-order-summary .table tr {
      display: flex;
      align-items: center; }
    .layout-region-checkout-secondary .view-commerce-checkout-order-summary .table td {
      border: none; }
    .layout-region-checkout-secondary .view-commerce-checkout-order-summary .table .views-field-title {
      align-self: flex-start; }
      .layout-region-checkout-secondary .view-commerce-checkout-order-summary .table .views-field-title a {
        text-decoration: none; }
    .layout-region-checkout-secondary .view-commerce-checkout-order-summary .table .views-field-total-price__number {
      align-self: flex-end;
      font-weight: 700; }
  .layout-region-checkout-secondary .view-footer {
    padding-top: 1rem; }
    .layout-region-checkout-secondary .view-footer .field--label {
      border-bottom: 2px solid #004878;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 1rem;
      padding-bottom: 10px;
      margin-bottom: 1rem; }
    .layout-region-checkout-secondary .view-footer .order-total-line {
      padding: 10px 0;
      text-transform: uppercase;
      border-bottom: 1px solid #ccc;
      display: flex;
      justify-content: space-between; }
      .layout-region-checkout-secondary .view-footer .order-total-line-label {
        font-weight: 400;
        color: #aaa; }
      .layout-region-checkout-secondary .view-footer .order-total-line:last-child {
        border: none; }

.form-item-payment-information-billing-information-select-address {
  margin-top: 1rem; }

.page-checkout .only-on-cart {
  display: block; }

.layout-region-checkout-footer .button {
  display: block;
  margin-left: auto; }

@media screen and (max-width: 1023px) {
  .block-commerce-checkout-progress {
    margin: -1rem -1rem 1rem;
    padding: 1rem;
    background-color: #f8fafb; }
  .c-checkout-progress {
    flex-direction: column;
    border-bottom: none;
    margin-bottom: 0;
    border-left: 2px solid #ccc; }
    .c-checkout-progress li {
      padding: 3px 0 3px 1rem;
      border-bottom: none;
      text-align: left;
      font-weight: 400; }
    .c-checkout-progress--step__current {
      border-left: 2px solid currentcolor;
      color: #00a777;
      margin-left: -2px; }
  .layout-region-checkout-main .checkout-pane, .layout-region-checkout-main .panel-heading, .layout-region-checkout-main .panel-default {
    background: none;
    border: none; }
  .layout-region-checkout-main .panel-title {
    font-size: 1rem; }
  .layout-region-checkout-main .panel-heading, .layout-region-checkout-main .panel-body {
    padding-left: 0;
    padding-right: 0; }
  .layout-region-checkout-secondary {
    padding: 1rem; }
    .layout-region-checkout-secondary h3 {
      font-weight: 400;
      text-transform: uppercase;
      font-size: 1.2rem;
      border-bottom: 1px solid #ccc;
      padding-bottom: 1rem; }
    .layout-region-checkout-secondary .table-responsive {
      margin-top: 0; }
  .layout-region-checkout-footer .form-actions .btn {
    margin-top: 1rem;
    margin-right: 0;
    width: 100%; }
  .layout-region-checkout-secondary .view-commerce-checkout-order-summary {
    border-top: none;
    padding-top: 0; } }

.layout-region-checkout-secondary h3 {
  position: relative; }

.layout-region-checkout-secondary__count {
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  padding: 0.25rem 0.5rem;
  color: #fff;
  background-color: #00c48c;
  border-radius: 50%;
  font-size: 0.75rem; }

.view-content__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%; }
  .view-content__wrapper .card {
    display: flex;
    min-height: 4.375rem;
    padding: 0.5rem 0; }
    .view-content__wrapper .card .image {
      display: flex;
      align-items: center; }
      .view-content__wrapper .card .image img {
        padding: 0 0.5rem; }
    .view-content__wrapper .card .content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-left: 1rem;
      width: 100%; }
      .view-content__wrapper .card .content__price {
        display: flex;
        justify-content: space-between; }
        .view-content__wrapper .card .content__price p {
          margin-bottom: 0; }
          .view-content__wrapper .card .content__price p:last-child {
            font-weight: 500; }

.layout-region .form-actions {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between; }
  .layout-region .form-actions button {
    text-transform: uppercase; }

.layout-region .link--previous {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.7rem 1.6rem 0.7rem 3rem;
  color: #888;
  background: url(../images/backArrow.png) 1rem 50% no-repeat;
  border: 1px solid #ccc;
  font-size: 14px;
  line-height: 1.42857143;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 4px;
  user-select: none; }
  .layout-region .link--previous:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad; }

@media (max-width: 1023px) {
  .layout-region .form-actions {
    flex-direction: column-reverse;
    align-items: flex-start; }
  .layout-region .link--previous {
    margin-top: 1rem; } }

.checkout-pane {
  border: none;
  margin-bottom: 2rem;
  box-shadow: none; }
  .checkout-pane.panel-default {
    background: transparent; }
  .checkout-pane .panel {
    background: transparent; }
    .checkout-pane .panel-heading, .checkout-pane .panel-body {
      border: none; }
    .checkout-pane .panel-heading {
      padding: 0;
      background: transparent;
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1rem; }
    .checkout-pane .panel-body {
      padding: 0; }
  .checkout-pane button[data-drupal-selector="edit-shipping-information-recalculate-shipping"][disabled]:hover {
    background-color: #00a777; }
  .checkout-pane div[id^="edit-shipping-information-shipments--"] {
    margin-top: 3rem; }
  .checkout-pane #edit-payment-information-billing-information,
  .checkout-pane #edit-shipping-information-shipping-profile {
    position: relative; }
    .checkout-pane #edit-payment-information-billing-information .profile--view-mode--full,
    .checkout-pane #edit-shipping-information-shipping-profile .profile--view-mode--full {
      padding: 20px;
      background-color: rgba(0, 196, 140, 0.1);
      border: 1px solid rgba(0, 196, 140, 0.1); }
    .checkout-pane #edit-payment-information-billing-information .field--name-field-telephone .field--label, .checkout-pane #edit-payment-information-billing-information .field--name-field-telephone .field--item,
    .checkout-pane #edit-shipping-information-shipping-profile .field--name-field-telephone .field--label,
    .checkout-pane #edit-shipping-information-shipping-profile .field--name-field-telephone .field--item {
      display: inline-block;
      font-weight: normal; }
    .checkout-pane #edit-payment-information-billing-information .field--name-field-telephone .field--label:after,
    .checkout-pane #edit-shipping-information-shipping-profile .field--name-field-telephone .field--label:after {
      content: ":";
      display: inline-block;
      margin: 0 5px; }
    .checkout-pane #edit-payment-information-billing-information .address-book-edit-button,
    .checkout-pane #edit-shipping-information-shipping-profile .address-book-edit-button {
      position: absolute;
      top: 110px;
      right: 20px;
      border: none;
      background: transparent;
      color: #00c48c;
      padding: 0; }
      .checkout-pane #edit-payment-information-billing-information .address-book-edit-button span,
      .checkout-pane #edit-shipping-information-shipping-profile .address-book-edit-button span {
        display: none; }
  .checkout-pane #edit-payment-information-billing-information .address-book-edit-button {
    top: 150px; }
  .checkout-pane.checkout-pane-payment-information .panel-heading {
    display: none; }
  .checkout-pane.checkout-pane-payment-information, .checkout-pane.checkout-pane-shipping-information {
    position: relative; }
    .checkout-pane.checkout-pane-payment-information .form-type-radio span.glyphicon, .checkout-pane.checkout-pane-shipping-information .form-type-radio span.glyphicon {
      position: absolute;
      left: -20px;
      top: 18px; }
    .checkout-pane.checkout-pane-payment-information .form-type-radio .control-label, .checkout-pane.checkout-pane-shipping-information .form-type-radio .control-label {
      display: flex; }
    .checkout-pane.checkout-pane-payment-information .form-type-radio .control-label, .checkout-pane.checkout-pane-shipping-information .form-type-radio .control-label {
      padding: 15px;
      border: 1px solid #cccccc;
      background-size: auto 20px;
      background-position: right 15px top 15px;
      background-repeat: no-repeat; }
    .checkout-pane.checkout-pane-payment-information .form-type-radio .form-radio:checked + .glyphicon + .control-label,
    .checkout-pane.checkout-pane-payment-information .form-type-radio .form-radio:checked + .control-label, .checkout-pane.checkout-pane-shipping-information .form-type-radio .form-radio:checked + .glyphicon + .control-label,
    .checkout-pane.checkout-pane-shipping-information .form-type-radio .form-radio:checked + .control-label {
      background-color: rgba(0, 196, 140, 0.1);
      border-color: rgba(0, 196, 140, 0.1); }
    .checkout-pane.checkout-pane-payment-information div[id^="edit-payment-information-billing-information-address"], .checkout-pane.checkout-pane-shipping-information div[id^="edit-payment-information-billing-information-address"] {
      margin: 1.875rem 0 0; }
  .checkout-pane.checkout-pane-shipping-information .option-value--dhl .control-label {
    background-image: url(../images/DHL.png); }
  .checkout-pane.checkout-pane-shipping-information .option-value--tnt .control-label {
    background-image: url(../images/TNT.png); }
  .checkout-pane.checkout-pane-payment-information .option-value--payzen .control-label {
    background-image: url(../images/payments/visa.png), url(../images/payments/mc.png);
    background-position: right 15px top 15px, right 55px top 15px; }
  .checkout-pane.checkout-pane-payment-information .option-value--bank-transfer .control-label {
    background-image: url(../images/payments/banktransfer2.png); }
  .checkout-pane.checkout-pane-payment-information .option-value--new--paypal-checkout--paypal .control-label {
    background-image: url(../images/payments/paypal.png); }
  .checkout-pane.checkout-pane-payment-information .option-value--alipay .control-label {
    background-image: url(../images/payments/alipay.png); }
  .checkout-pane.checkout-pane-payment-information .option-value--wechat-pay .control-label {
    background-image: url(../images/payments/wechatpay.png); }
  .checkout-pane .fieldgroup legend {
    border: none;
    font-size: 1rem;
    font-weight: 700; }
  .checkout-pane > .form-wrapper {
    border: none; }
  .checkout-pane #edit-payment-information-billing-information,
  .checkout-pane #edit-shipping-information-shipments {
    margin-bottom: 0; }
    .checkout-pane #edit-payment-information-billing-information > .form-wrapper,
    .checkout-pane #edit-payment-information-billing-information fieldset,
    .checkout-pane #edit-payment-information-billing-information .checkbox,
    .checkout-pane #edit-payment-information-billing-information .field--name-shipping-method,
    .checkout-pane #edit-shipping-information-shipments > .form-wrapper,
    .checkout-pane #edit-shipping-information-shipments fieldset,
    .checkout-pane #edit-shipping-information-shipments .checkbox,
    .checkout-pane #edit-shipping-information-shipments .field--name-shipping-method {
      margin-bottom: 0; }
  .checkout-pane-review .form-item {
    box-shadow: none; }
    .checkout-pane-review .form-item .panel-body {
      background-color: rgba(0, 196, 140, 0.1);
      padding: 20px; }
    .checkout-pane-review .form-item:last-of-type {
      margin-bottom: 1.875rem; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  border: 1px solid #ccc;
  vertical-align: top;
  margin-top: -7px;
  border-radius: 2px; }

/* Show the checkmark when checked */
input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.checkmark:after {
  content: "";
  display: none;
  height: 10px;
  width: 6px;
  position: absolute;
  left: 4px;
  top: 0px;
  border-right: 2px solid #00c48c;
  border-bottom: 2px solid #00c48c;
  transform: rotate(45deg); }

.form-type-checkbox input {
  display: none; }
  .form-type-checkbox input:checked + label:before {
    border-color: #00c48c; }

.form-type-checkbox label {
  margin-bottom: 0;
  position: relative;
  padding-left: 1.5rem;
  min-height: 0; }

.form-type-radio input {
  display: none; }
  .form-type-radio input + .glyphicon + .control-label,
  .form-type-radio input + .control-label {
    display: flex; }
    .form-type-radio input + .glyphicon + .control-label:before,
    .form-type-radio input + .control-label:before {
      content: "";
      border: 2px solid #00c48c;
      margin-right: 10px;
      width: 18px;
      height: 18px;
      background-color: transparent;
      background-clip: content-box;
      padding: 3px; }
  .form-type-radio input:checked + .glyphicon + .control-label:before,
  .form-type-radio input:checked + .control-label:before {
    background-color: #00c48c; }

.form-type-radio .control-label {
  padding: 0; }
  .form-type-radio .control-label .placeholder {
    margin-left: 5px;
    display: inline-block; }

.form-type-radio .form-radio + .glyphicon + .control-label:before,
.form-type-radio .form-radio + .control-label:before {
  border-radius: 100%; }

.form-type-checkbox .form-checkbox + .glyphicon + .control-label:before,
.form-type-checkbox .form-checkbox + .control-label:before {
  padding: 2px; }

.form-type-select .input-group {
  display: flex; }
  .form-type-select .input-group .select-wrapper {
    width: 100%; }
  .form-type-select .input-group .form-select {
    border-radius: 3px; }
  .form-type-select .input-group .input-group-addon {
    display: none; }

.form-group {
  margin-bottom: 0; }
  .form-group:last-child {
    margin-bottom: 1.875rem; }

.form-item {
  margin-bottom: 30px; }
  .form-item.radio {
    margin-bottom: 10px; }
  .form-item .control-label {
    font-weight: 400;
    color: #888;
    display: block; }

.form-item-shipping-information-shipping-profile-select-address .input-group .input-group-addon,
.form-item-payment-information-billing-information-select-address .input-group .input-group-addon {
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  border-radius: 0; }
  .form-item-shipping-information-shipping-profile-select-address .input-group .input-group-addon .glyphicon,
  .form-item-payment-information-billing-information-select-address .input-group .input-group-addon .glyphicon {
    color: #333 !important;
    opacity: 1 !important; }
  @media screen and (max-width: 767px) {
    .form-item-shipping-information-shipping-profile-select-address .input-group .input-group-addon,
    .form-item-payment-information-billing-information-select-address .input-group .input-group-addon {
      left: -28px; } }

.form-item-shipping-information-shipping-profile-select-address .input-group.disabled .input-group-addon,
.form-item-payment-information-billing-information-select-address .input-group.disabled .input-group-addon {
  display: block; }

.form-item-shipping-information-shipping-profile-select-address .select-wrapper.disabled + .input-group .input-group-addon,
.form-item-payment-information-billing-information-select-address .select-wrapper.disabled + .input-group .input-group-addon {
  display: block !important; }

.form-item-payment-information-billing-information-copy-fields-enable .glyphicon {
  position: absolute;
  top: 20%;
  left: -32px;
  transform: translateY(-50%); }
  @media screen and (max-width: 767px) {
    .form-item-payment-information-billing-information-copy-fields-enable .glyphicon {
      left: -28px; } }

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  #block-useraccountmenu-menu {
    align-items: center; }
    #block-useraccountmenu-menu .custom-icon__user {
      display: table; } }

.block-brand-list-filter {
  padding-top: 1rem;
  margin-bottom: 1rem; }
  .block-brand-list-filter .block-title {
    font-size: 0.8rem; }
  .block-brand-list-filter.block-facets {
    position: relative; }
    .block-brand-list-filter.block-facets .facet-item {
      position: relative; }
    .block-brand-list-filter.block-facets .facets-reset {
      position: absolute;
      top: 0;
      right: 0;
      padding-top: 10px; }
      .block-brand-list-filter.block-facets .facets-reset label:before {
        content: none; }
      .block-brand-list-filter.block-facets .facets-reset .checkmark {
        display: none; }
  .block-brand-list-filter ul.item-list__links {
    margin: 0; }
    .block-brand-list-filter ul.item-list__links li {
      list-style: none;
      background-color: transparent !important;
      position: relative; }
      .block-brand-list-filter ul.item-list__links li > a {
        background-color: transparent !important;
        font-size: 0.9rem;
        color: #141517;
        padding: 0.4rem 0;
        text-decoration: none;
        display: block;
        position: relative; }
      .block-brand-list-filter ul.item-list__links li .caret-brand {
        position: absolute;
        top: 7px;
        right: 0;
        width: 14px;
        height: 30px;
        margin: 0;
        padding: 0;
        border: none;
        background-image: url("../images/open-icons/svg/chevron.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        box-sizing: content-box;
        transform: rotate(-90deg) translateX(50%);
        z-index: 99;
        content: " ";
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
      .block-brand-list-filter ul.item-list__links li.active-trail > a,
      .block-brand-list-filter ul.item-list__links li a.is-active {
        color: #00c48c; }
        .block-brand-list-filter ul.item-list__links li.active-trail > a .caret,
        .block-brand-list-filter ul.item-list__links li a.is-active .caret {
          z-index: 1; }
      .block-brand-list-filter ul.item-list__links li.expanded > a .caret {
        transform: rotate(0deg) translateY(-50%); }
      .block-brand-list-filter ul.item-list__links li.expanded .subcategory-menu {
        max-height: 1000px; }
      .block-brand-list-filter ul.item-list__links li .facets-widget- {
        display: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .block-brand-list-filter ul.item-list__links li .facets-widget- ul {
          margin-left: 1rem;
          margin-bottom: .5rem; }
          .block-brand-list-filter ul.item-list__links li .facets-widget- ul li a {
            color: #999999;
            padding: 0.2rem 0; }
            .block-brand-list-filter ul.item-list__links li .facets-widget- ul li a:hover {
              text-decoration: none;
              color: #00c48c; }
      .block-brand-list-filter ul.item-list__links li.open .facets-widget- {
        display: block; }
      .block-brand-list-filter ul.item-list__links li.open .caret-brand {
        transform: rotate(0deg) translateY(-50%);
        top: 15px; }
    .block-brand-list-filter ul.item-list__links .subcategory-menu {
      margin-left: 1rem;
      margin-bottom: .5rem;
      max-height: 0; }
      .block-brand-list-filter ul.item-list__links .subcategory-menu a {
        color: #999999;
        padding: 0.2rem 0; }
        .block-brand-list-filter ul.item-list__links .subcategory-menu a:hover {
          text-decoration: none;
          color: #00c48c; }
    .block-brand-list-filter ul.item-list__links .active-trail > .subcategory-menu {
      display: block; }

@media screen and (max-width: 1023px) {
  .block-brand-list-filter {
    margin-bottom: 0; }
    .block-brand-list-filter .item-list__links {
      max-height: 0;
      overflow: hidden;
      transition: 150ms max-height ease-out; }
    .block-brand-list-filter.block-facet-blockbrand .facets-reset {
      display: none;
      position: static; }
  .view-catalog .o-list-flex .views-row.o-list-flex__element {
    margin-bottom: 1rem; } }

.block-menu-block.c-category-filter .menu--brand.menu--catalogue {
  max-height: 400px;
  overflow-y: scroll; }
  @media (min-width: 1200px) {
    .block-menu-block.c-category-filter .menu--brand.menu--catalogue {
      max-height: 700px; } }
  .block-menu-block.c-category-filter .menu--brand.menu--catalogue li a:hover {
    color: #00c48c; }

.block-facet--links-brand.c-category-filter {
  padding-top: 1rem;
  margin-bottom: 1rem; }
  .block-facet--links-brand.c-category-filter .block-title {
    font-size: 0.8rem; }
  .block-facet--links-brand.c-category-filter .facets-widget-links_brand > h3 {
    display: none; }
  .block-facet--links-brand.c-category-filter.block-facets {
    position: relative; }
    .block-facet--links-brand.c-category-filter.block-facets .facet-item {
      position: relative; }
    .block-facet--links-brand.c-category-filter.block-facets .facets-reset {
      position: absolute;
      top: 0;
      right: 0;
      padding-top: 20px; }
      .block-facet--links-brand.c-category-filter.block-facets .facets-reset label:before {
        content: none; }
      .block-facet--links-brand.c-category-filter.block-facets .facets-reset .checkmark {
        display: none; }
  .block-facet--links-brand.c-category-filter .input-group-filter-brand-name {
    position: relative;
    margin-bottom: 10px; }
    .block-facet--links-brand.c-category-filter .input-group-filter-brand-name .glyphicon {
      position: absolute;
      left: 8px;
      top: 13px;
      color: #e1e1e1; }
    .block-facet--links-brand.c-category-filter .input-group-filter-brand-name input {
      padding-left: 25px; }
  .block-facet--links-brand.c-category-filter ul.item-list__links_brand {
    max-height: 400px;
    overflow-y: scroll;
    margin: 0; }
    @media (min-width: 1200px) {
      .block-facet--links-brand.c-category-filter ul.item-list__links_brand {
        max-height: 700px; } }
    .block-facet--links-brand.c-category-filter ul.item-list__links_brand li {
      list-style: none;
      background-color: transparent !important; }
      .block-facet--links-brand.c-category-filter ul.item-list__links_brand li > a {
        background-color: transparent !important;
        font-size: 0.9rem;
        color: #141517;
        padding: 0.4rem 0;
        text-decoration: none;
        display: block;
        text-transform: lowercase; }
        .block-facet--links-brand.c-category-filter ul.item-list__links_brand li > a:first-letter {
          text-transform: uppercase; }
        .block-facet--links-brand.c-category-filter ul.item-list__links_brand li > a .caret {
          position: absolute;
          top: 50%;
          right: 0;
          width: 0.8rem;
          height: 0.8rem;
          margin: 0;
          padding: 0;
          border: none;
          background-image: url("../images/open-icons/svg/chevron.svg");
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
          box-sizing: content-box;
          transform: rotate(-90deg) translateX(50%);
          z-index: -1; }
      .block-facet--links-brand.c-category-filter ul.item-list__links_brand li.active-trail > a,
      .block-facet--links-brand.c-category-filter ul.item-list__links_brand li a.is-active {
        color: #00c48c; }
        .block-facet--links-brand.c-category-filter ul.item-list__links_brand li.active-trail > a .caret,
        .block-facet--links-brand.c-category-filter ul.item-list__links_brand li a.is-active .caret {
          z-index: 1; }
      .block-facet--links-brand.c-category-filter ul.item-list__links_brand li.expanded > a .caret {
        transform: rotate(0deg) translateY(-50%); }
      .block-facet--links-brand.c-category-filter ul.item-list__links_brand li.expanded .subcategory-menu {
        max-height: 1000px; }
    .block-facet--links-brand.c-category-filter ul.item-list__links_brand .subcategory-menu {
      margin-left: 1rem;
      margin-bottom: .5rem;
      max-height: 0;
      overflow: hidden;
      transition: 500ms max-height ease; }
      .block-facet--links-brand.c-category-filter ul.item-list__links_brand .subcategory-menu a {
        color: #999999;
        padding: 0.2rem 0; }
        .block-facet--links-brand.c-category-filter ul.item-list__links_brand .subcategory-menu a:hover {
          text-decoration: none;
          color: #00c48c; }
    .block-facet--links-brand.c-category-filter ul.item-list__links_brand .active-trail > .subcategory-menu {
      display: block; }

/* ==========================================================================
   #CLEARFIX
   ========================================================================== */
/**
 * Attach our clearfix mixin to a utility class.
 */
.u-clearfix:after {
  content: "" !important;
  display: block !important;
  clear: both !important; }

/* ==========================================================================
   #WIDTHS
   ========================================================================== */
/**
 * inuitcss generates a series of utility classes that give a fluid width to
 * whichever element they’re applied, e.g.:
 *
 *   <img src="" alt="" class="u-1/2" />
 *
 * These classes are most commonly used in conjunction with our layout system,
 * e.g.:
 *
 *   <div class="o-layout__item  u-1/2">
 *
 * By default, inuitcss will also generate responsive variants of each of these
 * classes by using your Sass MQ configuration, e.g.:
 *
 *   <div class="o-layout__item  u-1/1  u-1/2@tablet  u-1/3@desktop">
 *
 * Optionally, inuitcss can generate offset classes which can push and pull
 * elements left and right by a specified amount, e.g.:
 *
 *   <div class="o-layout__item  u-2/3  u-pull-1/3">
 *
 * This is useful for making very granular changes to the rendered order of
 * items in a layout.
 *
 * N.B. This option is turned off by default.
 */
/**
 * A series of width helper classes that you can use to size things like grid
 * systems. Classes take a fraction-like format (e.g. `.u-2/3`). Use these in
 * your markup:
 *
 * <div class="u-7/12">
 *
 * The following will generate widths helper classes based on the fractions
 * defined in the `$inuit-fractions` list.
 */
.u-1\/1 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/1 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-1\/1 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/2 {
  width: 50% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/2 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 50% !important; }

.u-pull-1\/2 {
  position: relative !important;
  right: 50% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/2 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/2 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-2\/2 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/3 {
  width: 33.33333% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 33.33333% !important; }

.u-pull-1\/3 {
  position: relative !important;
  right: 33.33333% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/3 {
  width: 66.66667% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 66.66667% !important; }

.u-pull-2\/3 {
  position: relative !important;
  right: 66.66667% !important;
  left: auto !important;
  /* [1] */ }

.u-3\/3 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-3\/3 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-3\/3 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/4 {
  width: 25% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 25% !important; }

.u-pull-1\/4 {
  position: relative !important;
  right: 25% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/4 {
  width: 50% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 50% !important; }

.u-pull-2\/4 {
  position: relative !important;
  right: 50% !important;
  left: auto !important;
  /* [1] */ }

.u-3\/4 {
  width: 75% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-3\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 75% !important; }

.u-pull-3\/4 {
  position: relative !important;
  right: 75% !important;
  left: auto !important;
  /* [1] */ }

.u-4\/4 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-4\/4 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-4\/4 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

.u-1\/5 {
  width: 20% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-1\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 20% !important; }

.u-pull-1\/5 {
  position: relative !important;
  right: 20% !important;
  left: auto !important;
  /* [1] */ }

.u-2\/5 {
  width: 40% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-2\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 40% !important; }

.u-pull-2\/5 {
  position: relative !important;
  right: 40% !important;
  left: auto !important;
  /* [1] */ }

.u-3\/5 {
  width: 60% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-3\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 60% !important; }

.u-pull-3\/5 {
  position: relative !important;
  right: 60% !important;
  left: auto !important;
  /* [1] */ }

.u-4\/5 {
  width: 80% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-4\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 80% !important; }

.u-pull-4\/5 {
  position: relative !important;
  right: 80% !important;
  left: auto !important;
  /* [1] */ }

.u-5\/5 {
  width: 100% !important; }

/**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
.u-push-5\/5 {
  position: relative !important;
  right: auto !important;
  /* [1] */
  left: 100% !important; }

.u-pull-5\/5 {
  position: relative !important;
  right: 100% !important;
  left: auto !important;
  /* [1] */ }

/**
 * If we’re using Sass-MQ, automatically generate grid system(s) for each of our
 * defined breakpoints, and give them a Responsive Suffix, e.g.:
 *
 * <div class="u-3/12@mobile">
 */
@media (min-width: 20em) {
  .u-1\/1\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@mobile {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@mobile {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@mobile {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@mobile {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@mobile {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@mobile {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@mobile {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@mobile {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@mobile {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@mobile {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@mobile {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@mobile {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@mobile {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@mobile {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@mobile {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@mobile {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@mobile {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@mobile {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@mobile {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@mobile {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@mobile {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@mobile {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@mobile {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@mobile {
    left: auto !important; }
  .u-pull-none\@mobile {
    right: auto !important; } }

@media (min-width: 46.25em) {
  .u-1\/1\@tablet {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@tablet {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@tablet {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@tablet {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@tablet {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@tablet {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@tablet {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@tablet {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@tablet {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@tablet {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@tablet {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@tablet {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@tablet {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@tablet {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@tablet {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@tablet {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@tablet {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@tablet {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@tablet {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@tablet {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@tablet {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@tablet {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@tablet {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@tablet {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@tablet {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@tablet {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@tablet {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@tablet {
    left: auto !important; }
  .u-pull-none\@tablet {
    right: auto !important; } }

@media (min-width: 61.25em) {
  .u-1\/1\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@desktop {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@desktop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@desktop {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@desktop {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@desktop {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@desktop {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@desktop {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@desktop {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@desktop {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@desktop {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@desktop {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@desktop {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@desktop {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@desktop {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@desktop {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@desktop {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@desktop {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@desktop {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@desktop {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@desktop {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@desktop {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@desktop {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@desktop {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@desktop {
    left: auto !important; }
  .u-pull-none\@desktop {
    right: auto !important; } }

@media (min-width: 81.25em) {
  .u-1\/1\@wide {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/1\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-1\/1\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/2\@wide {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/2\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-1\/2\@wide {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/2\@wide {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/2\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-2\/2\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/3\@wide {
    width: 33.33333% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/3\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 33.33333% !important; }
  .u-pull-1\/3\@wide {
    position: relative !important;
    right: 33.33333% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/3\@wide {
    width: 66.66667% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/3\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 66.66667% !important; }
  .u-pull-2\/3\@wide {
    position: relative !important;
    right: 66.66667% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/3\@wide {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/3\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-3\/3\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/4\@wide {
    width: 25% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 25% !important; }
  .u-pull-1\/4\@wide {
    position: relative !important;
    right: 25% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/4\@wide {
    width: 50% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 50% !important; }
  .u-pull-2\/4\@wide {
    position: relative !important;
    right: 50% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/4\@wide {
    width: 75% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 75% !important; }
  .u-pull-3\/4\@wide {
    position: relative !important;
    right: 75% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/4\@wide {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/4\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-4\/4\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-1\/5\@wide {
    width: 20% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-1\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 20% !important; }
  .u-pull-1\/5\@wide {
    position: relative !important;
    right: 20% !important;
    left: auto !important;
    /* [1] */ }
  .u-2\/5\@wide {
    width: 40% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-2\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 40% !important; }
  .u-pull-2\/5\@wide {
    position: relative !important;
    right: 40% !important;
    left: auto !important;
    /* [1] */ }
  .u-3\/5\@wide {
    width: 60% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-3\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 60% !important; }
  .u-pull-3\/5\@wide {
    position: relative !important;
    right: 60% !important;
    left: auto !important;
    /* [1] */ }
  .u-4\/5\@wide {
    width: 80% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-4\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 80% !important; }
  .u-pull-4\/5\@wide {
    position: relative !important;
    right: 80% !important;
    left: auto !important;
    /* [1] */ }
  .u-5\/5\@wide {
    width: 100% !important; }
  /**
         * 1. Reset any leftover or conflicting `left`/`right` values.
         */
  .u-push-5\/5\@wide {
    position: relative !important;
    right: auto !important;
    /* [1] */
    left: 100% !important; }
  .u-pull-5\/5\@wide {
    position: relative !important;
    right: 100% !important;
    left: auto !important;
    /* [1] */ }
  .u-push-none\@wide {
    left: auto !important; }
  .u-pull-none\@wide {
    right: auto !important; } }

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Redefine all of our basic heading styles against utility classes so as to
 * allow for double stranded heading hierarchy, e.g. we semantically need an H2,
 * but we want it to be sized like an H1:
 *
 *   <h2 class="u-h1"></h2>
 *
 */
.u-h1 {
  font-size: 36px !important;
  font-size: 2.25rem !important;
  line-height: 1.16667 !important; }

.u-h2 {
  font-size: 28px !important;
  font-size: 1.75rem !important;
  line-height: 1.28571 !important; }

.u-h3 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.25 !important; }

.u-h4 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.5 !important; }

.u-h5 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.33333 !important; }

.u-h6 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important; }

/* ==========================================================================
   #SPACINGS
   ========================================================================== */
/**
 * Utility classes to put specific spacing values onto elements. The below loop
 * will generate us a suite of classes like:
 *
 *   .u-margin-top {}
 *   .u-padding-left-large {}
 *   .u-margin-right-small {}
 *   .u-padding {}
 *   .u-padding-right-none {}
 *   .u-padding-horizontal {}
 *   .u-padding-vertical-small {}
 */
.u-padding {
  padding: 24px !important; }

.u-padding-tiny {
  padding: 6px !important; }

.u-padding-small {
  padding: 12px !important; }

.u-padding-large {
  padding: 48px !important; }

.u-padding-huge {
  padding: 96px !important; }

.u-padding-none {
  padding: 0 !important; }

.u-padding-top {
  padding-top: 24px !important; }

.u-padding-top-tiny {
  padding-top: 6px !important; }

.u-padding-top-small {
  padding-top: 12px !important; }

.u-padding-top-large {
  padding-top: 48px !important; }

.u-padding-top-huge {
  padding-top: 96px !important; }

.u-padding-top-none {
  padding-top: 0 !important; }

.u-padding-right {
  padding-right: 24px !important; }

.u-padding-right-tiny {
  padding-right: 6px !important; }

.u-padding-right-small {
  padding-right: 12px !important; }

.u-padding-right-large {
  padding-right: 48px !important; }

.u-padding-right-huge {
  padding-right: 96px !important; }

.u-padding-right-none {
  padding-right: 0 !important; }

.u-padding-bottom {
  padding-bottom: 24px !important; }

.u-padding-bottom-tiny {
  padding-bottom: 6px !important; }

.u-padding-bottom-small {
  padding-bottom: 12px !important; }

.u-padding-bottom-large {
  padding-bottom: 48px !important; }

.u-padding-bottom-huge {
  padding-bottom: 96px !important; }

.u-padding-bottom-none {
  padding-bottom: 0 !important; }

.u-padding-left {
  padding-left: 24px !important; }

.u-padding-left-tiny {
  padding-left: 6px !important; }

.u-padding-left-small {
  padding-left: 12px !important; }

.u-padding-left-large {
  padding-left: 48px !important; }

.u-padding-left-huge {
  padding-left: 96px !important; }

.u-padding-left-none {
  padding-left: 0 !important; }

.u-padding-horizontal {
  padding-left: 24px !important;
  padding-right: 24px !important; }

.u-padding-horizontal-tiny {
  padding-left: 6px !important;
  padding-right: 6px !important; }

.u-padding-horizontal-small {
  padding-left: 12px !important;
  padding-right: 12px !important; }

.u-padding-horizontal-large {
  padding-left: 48px !important;
  padding-right: 48px !important; }

.u-padding-horizontal-huge {
  padding-left: 96px !important;
  padding-right: 96px !important; }

.u-padding-horizontal-none {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.u-padding-vertical {
  padding-top: 24px !important;
  padding-bottom: 24px !important; }

.u-padding-vertical-tiny {
  padding-top: 6px !important;
  padding-bottom: 6px !important; }

.u-padding-vertical-small {
  padding-top: 12px !important;
  padding-bottom: 12px !important; }

.u-padding-vertical-large {
  padding-top: 48px !important;
  padding-bottom: 48px !important; }

.u-padding-vertical-huge {
  padding-top: 96px !important;
  padding-bottom: 96px !important; }

.u-padding-vertical-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.u-margin {
  margin: 24px !important; }

.u-margin-tiny {
  margin: 6px !important; }

.u-margin-small {
  margin: 12px !important; }

.u-margin-large {
  margin: 48px !important; }

.u-margin-huge {
  margin: 96px !important; }

.u-margin-none {
  margin: 0 !important; }

.u-margin-top {
  margin-top: 24px !important; }

.u-margin-top-tiny {
  margin-top: 6px !important; }

.u-margin-top-small {
  margin-top: 12px !important; }

.u-margin-top-large {
  margin-top: 48px !important; }

.u-margin-top-huge {
  margin-top: 96px !important; }

.u-margin-top-none {
  margin-top: 0 !important; }

.u-margin-right {
  margin-right: 24px !important; }

.u-margin-right-tiny {
  margin-right: 6px !important; }

.u-margin-right-small {
  margin-right: 12px !important; }

.u-margin-right-large {
  margin-right: 48px !important; }

.u-margin-right-huge {
  margin-right: 96px !important; }

.u-margin-right-none {
  margin-right: 0 !important; }

.u-margin-bottom {
  margin-bottom: 24px !important; }

.u-margin-bottom-tiny {
  margin-bottom: 6px !important; }

.u-margin-bottom-small {
  margin-bottom: 12px !important; }

.u-margin-bottom-large {
  margin-bottom: 48px !important; }

.u-margin-bottom-huge {
  margin-bottom: 96px !important; }

.u-margin-bottom-none {
  margin-bottom: 0 !important; }

.u-margin-left {
  margin-left: 24px !important; }

.u-margin-left-tiny {
  margin-left: 6px !important; }

.u-margin-left-small {
  margin-left: 12px !important; }

.u-margin-left-large {
  margin-left: 48px !important; }

.u-margin-left-huge {
  margin-left: 96px !important; }

.u-margin-left-none {
  margin-left: 0 !important; }

.u-margin-horizontal {
  margin-left: 24px !important;
  margin-right: 24px !important; }

.u-margin-horizontal-tiny {
  margin-left: 6px !important;
  margin-right: 6px !important; }

.u-margin-horizontal-small {
  margin-left: 12px !important;
  margin-right: 12px !important; }

.u-margin-horizontal-large {
  margin-left: 48px !important;
  margin-right: 48px !important; }

.u-margin-horizontal-huge {
  margin-left: 96px !important;
  margin-right: 96px !important; }

.u-margin-horizontal-none {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.u-margin-vertical {
  margin-top: 24px !important;
  margin-bottom: 24px !important; }

.u-margin-vertical-tiny {
  margin-top: 6px !important;
  margin-bottom: 6px !important; }

.u-margin-vertical-small {
  margin-top: 12px !important;
  margin-bottom: 12px !important; }

.u-margin-vertical-large {
  margin-top: 48px !important;
  margin-bottom: 48px !important; }

.u-margin-vertical-huge {
  margin-top: 96px !important;
  margin-bottom: 96px !important; }

.u-margin-vertical-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

/* ==========================================================================
   #RESPONSIVE-SPACINGS
   ========================================================================== */
/**
 * Utility classes enhancing the normal spacing classes by adding responsiveness
 * to them. By default, there are not responsive spacings defined. You can
 * generate responsive spacings by adding entries to the following three Sass
 * maps, e.g.:
 *
 *   $inuit-responsive-spacing-directions: (
 *     null: null,
 *     bottom: bottom,
 *   );
 *
 *   $inuit-responsive-spacing-properties: (
 *     "margin": "margin",
 *   );
 *
 *   $inuit-responsive-spacing-sizes: (
 *     "-small": $inuit-global-spacing-unit-small,
 *   );
 *
 * This would bring us the following classes:
 *
 *   .u-margin-small@mobile {}
 *   .u-margin-small@tablet {}
 *   .u-margin-small@desktop {}
 *   .u-margin-small@wide {}
 *   .u-margin-bottom-small@mobile {}
 *   .u-margin-bottom-small@tablet {}
 *   .u-margin-bottom-small@desktop {}
 *   .u-margin-bottom-small@wide {}
 *
 * You can change the generated CSS classes by further extending the Sass maps.
 * If you want every ‘normal’ spacing (those from `utilities.spacings`) also as
 * a responsive version, you can just mirror the ‘normal’ spacings:
 *
 *   $inuit-responsive-spacing-directions: $inuit-spacing-directions !default;
 *
 *   $inuit-responsive-spacing-properties: $inuit-spacing-properties !default;
 *
 *   $inuit-responsive-spacing-sizes: $inuit-spacing-sizes !default;
 *
 * BUT BE AWARE: This can generate a huge chunk of extra CSS, depending on the
 * amount of breakpoints you defined. So please check your CSS’ output and
 * filesize!
 */
/* stylelint-disable max-nesting-depth */
/* stylelint-enable max-nesting-depth */
/* ==========================================================================
   #PRINT
   ========================================================================== */
/**
 * Very crude, reset-like styles taken from the HTML5 Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/5.3.0/dist/doc/css.md#print-styles
 * https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css#L205-L282
 */
@media print {
  /**
   * 1. Black prints faster: http://www.sanbeiji.com/archives/953
   */
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* [1] */
    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) ")"; }
  /**
   * Don’t show links that are fragment identifiers, or use the `javascript:`
   * pseudo protocol.
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /**
   * Printing Tables: http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  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; } }

/* ==========================================================================
   #HIDE
   ========================================================================== */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important; }

/**
 * Hide visually and from screen readers.
 */
.u-hidden {
  display: none !important; }

.form-control {
  height: 40px;
  border-color: #e1e1e1; }
