/**
 * =======================================================================
 * Dorel
 * =======================================================================
 * Add layout styling to this frontend. Design styling should be added to the shop-specific frontend.
 **/
/**
 * SASS extensions
 * =======================================================================
 * [1] Modular scale is used to generate a set of font sizes.
 **/
/**
 * Globals
 * =======================================================================
 * Code in globals does not produce any output. Think about things like mixins and variables.
 **/
/**
 * EM
 * =======================================================================
 * Transform px value to em value. Uses $browser-context as base-font-size.
 **/
/**
 * Strip Unit
 * =======================================================================
 * Strip the unit out of a CSS value. Required by rem mixin.
 */
/**
 * Base
 * ==========================================================================
 **/
/**
 * Grid
 * ==========================================================================
 **/
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 **/
/**
 * Unset inline-block grid whitespace.
 **/
/**
 * Helpers
 * ==========================================================================
 **/
/**
 * Breakpoints
 * ==========================================================================
 **/
/**
 * Font
 * ==========================================================================
 **/
/**
 * Modular scale
 * With modular scale a set of font-sizes is generated.
 * More info:
 * - modularscale.com/
 * - github.com/Team-Sass/modular-scale
 **/
/**
 * More info csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 *
 * Modular scale used: minor-third    5 : 6
 **/
/**
 * Colors
 * ==========================================================================
 **/
/**
 * Design colors
 **/
/**
 * Message colors
 **/
/**
 * Base colors
 **/
/**
 * Lines
 **/
/**
 * Element colors
 * When there is a number like 1 of 2, this can be used for gradient.
 **/
/*
$background-body: $gray-lightest;
$background-nav-mobile: $gray;

$background-button-1: $yellow;
$background-button-2: $yellow-dark;
$color-button: $gray;
$border-color-button: $orange;

$background-button-minor-1: $gray;
$background-button-minor-2: $gray;
$color-button-minor: $gray;
$border-color-button-minor: $gray;
*/
/**
 * Transition speeds
 * ==========================================================================
 **/
/**
 * Clearfix
 * =======================================================================
 */
/**
 * REM
 * =======================================================================
 * Return REM with px fallback from given EM/REM value(s).
 * http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
 */
/**
 * Visibilty
 * =======================================================================
 */
/**
 * Gradient
 * =======================================================================
 */
/**
 * Triangle
 * =======================================================================
 * Borrowed from Sass Toolkit: https://github.com/Team-Sass/toolkit#triangles
 */
/**
 * Grid
 * =======================================================================
 */
/**
 * Font-face
 * =======================================================================
 * http://compass-style.org/reference/compass/css3/font_face/
 */
/**
 * Sprites
 * =======================================================================
 */
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/* Base
   ========================================================================== */
/* Code in globals does not produce any output. Think about
 * thing like mixins, variables and functions.
 */
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
 * Let's make the box model all nice, shall we...?
 */
/* line 12, ../src/scss/base/_reset.scss */
* {
  /* Remove 300ms tap delay WP */
  -ms-touch-action: manipulation;
  /* IE10  */
  touch-action: manipulation;
  /* IE11+ */
}
/* line 17, ../src/scss/base/_reset.scss */
*, *:before, *:after {
  box-sizing: border-box;
}

/**
 * The usual...
 */
/* line 27, ../src/scss/base/_reset.scss */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
/* line 41, ../src/scss/base/_reset.scss */
abbr[title], dfn[title] {
  cursor: help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */
/* line 48, ../src/scss/base/_reset.scss */
u, ins {
  text-decoration: none;
}

/**
 * Apply faux underline via `border-bottom`.
 */
/* line 55, ../src/scss/base/_reset.scss */
ins {
  border-bottom: 1px solid;
}

/**
 * So that `alt` text is visually offset if images don't load.
 */
/* line 62, ../src/scss/base/_reset.scss */
img {
  font-style: italic;
}

/**
 * Give form elements some cursor interactions...
 */
/* line 69, ../src/scss/base/_reset.scss */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer;
}

/* line 77, ../src/scss/base/_reset.scss */
.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
}

/* Reset the button element so it can be used as a trigger for JS */
/* line 85, ../src/scss/base/_reset.scss */
button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

/* line 93, ../src/scss/base/_reset.scss */
fieldset {
  padding: 0;
  border: 0;
}

/* line 98, ../src/scss/base/_reset.scss */
address {
  font-style: normal;
}

/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
/* line 11, ../src/scss/base/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 30, ../src/scss/base/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 41, ../src/scss/base/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Address styling not present in IE 8/9.
 */
/* line 50, ../src/scss/base/_normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 64, ../src/scss/base/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Remove default margin.
 */
/* line 74, ../src/scss/base/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 86, ../src/scss/base/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/*
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 94, ../src/scss/base/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 108, ../src/scss/base/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/*
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 117, ../src/scss/base/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 125, ../src/scss/base/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/*
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 134, ../src/scss/base/_normalize.scss */
dfn {
  font-style: italic;
}

/*
 * Address differences between Firefox and other browsers.
 */
/* line 142, ../src/scss/base/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * Address styling not present in IE 8/9.
 */
/* line 152, ../src/scss/base/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 161, ../src/scss/base/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 173, ../src/scss/base/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/*
 * Set consistent quote types.
 */
/* line 181, ../src/scss/base/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Address inconsistent and variable font size in all browsers.
 */
/* line 189, ../src/scss/base/_normalize.scss */
small {
  font-size: 80%;
}

/*
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 197, ../src/scss/base/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 205, ../src/scss/base/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 209, ../src/scss/base/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 221, ../src/scss/base/_normalize.scss */
img {
  border: 0;
}

/*
 * Correct overflow displayed oddly in IE 9.
 */
/* line 229, ../src/scss/base/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 241, ../src/scss/base/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
/* fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
} */
/*
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 264, ../src/scss/base/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Add custom focus style.
 */
/* line 276, ../src/scss/base/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  outline: 0;
  /* 4 */
}

/*
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 291, ../src/scss/base/_normalize.scss */
button,
input {
  line-height: normal;
}

/*
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 303, ../src/scss/base/_normalize.scss */
button,
select {
  text-transform: none;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 316, ../src/scss/base/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */
/* line 328, ../src/scss/base/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/*
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
/* line 338, ../src/scss/base/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 350, ../src/scss/base/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 362, ../src/scss/base/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and border in Firefox 4+.
 */
/* line 371, ../src/scss/base/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 382, ../src/scss/base/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
/* line 395, ../src/scss/base/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 403, ../src/scss/base/_normalize.scss */
dd, ol, ul {
  list-style-type: none;
}

/* line 407, ../src/scss/base/_normalize.scss */
p {
  margin-bottom: 0.8125em;
}

/*------------------------------------*\
    $FONT IMPORTS 
\*------------------------------------*/
/**
  * Cross-browser support for @font-face. Supports IE, Gecko, Webkit, Opera.

  * $name is required, arbitrary, and what you will use in font stacks.
  * $font-files is required using font-files('relative/location', 'format'). for best results use this order: woff, opentype/truetype, svg
  * $eot is required by IE, and is a relative location of the eot file.
  * $weight shows if the font is bold, defaults to normal
  * $style defaults to normal, might be also italic
  * For android 2.2 Compatiblity, please ensure that your web page has a meta viewport tag.
  * To support iOS < 4.2, an SVG file must be provided

  * Syntax: more info: https://github.com/Compass/compass/issues/906
*/
@font-face {
  font-family: "Precioussanslightregular";
  src: url('../fonts/precioussanslightregular-webfont.eot?1459253477');
  src: url('../fonts/precioussanslightregular-webfont.eot?&1459253477#iefix') format('embedded-opentype'), url('../fonts/precioussanslightregular-webfont.woff?1459253477') format('woff'), url('../fonts/precioussanslightregular-webfont.ttf?1459253477') format('truetype'), url('../fonts/precioussanslightregular-webfont.svg?1459253477') format('svg');
}
@font-face {
  font-family: "Precioussansbook";
  src: url('../fonts/precioussansbook-webfont.eot?1459253477');
  src: url('../fonts/precioussansbook-webfont.eot?&1459253477#iefix') format('embedded-opentype'), url('../fonts/precioussansbook-webfont.woff?1459253477') format('woff'), url('../fonts/precioussansbook-webfont.ttf?1459253477') format('truetype'), url('../fonts/precioussansbook-webfont.svg?1459253477') format('svg');
}
@font-face {
  font-family: "Precioussansbold";
  src: url('../fonts/precioussansbold-webfont.eot?1459253477');
  src: url('../fonts/precioussansbold-webfont.eot?&1459253477#iefix') format('embedded-opentype'), url('../fonts/precioussansbold-webfont.woff?1459253477') format('woff'), url('../fonts/precioussansbold-webfont.ttf?1459253477') format('truetype'), url('../fonts/precioussansbold-webfont.svg?1459253477') format('svg');
}
@font-face {
  font-family: "Precioussansmedium";
  src: url('../fonts/precioussansmedium-webfont.eot?1459253477');
  src: url('../fonts/precioussansmedium-webfont.eot?&1459253477#iefix') format('embedded-opentype'), url('../fonts/precioussansmedium-webfont.woff?1459253477') format('woff'), url('../fonts/precioussansmedium-webfont.ttf?1459253477') format('truetype'), url('../fonts/precioussansmedium-webfont.svg?1459253477') format('svg');
}
@font-face {
  font-family: "Kgbestillknow";
  src: url('../fonts/kgbestillknow-webfont.eot?1459253477');
  src: url('../fonts/kgbestillknow-webfont.eot?&1459253477#iefix') format('embedded-opentype'), url('../fonts/kgbestillknow-webfont.woff?1459253477') format('woff'), url('../fonts/kgbestillknow-webfont.ttf?1459253477') format('truetype'), url('../fonts/kgbestillknow-webfont.svg?1459253477') format('svg');
}
/**
 * Headings
 * =======================================================================
 * csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 **/
/* line 69, ../src/scss/base/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1em;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-weight: 300;
  line-height: 1.25;
  color: #000;
}

/* line 77, ../src/scss/base/_typography.scss */
h1, .alpha {
  font-size: 33.1776px;
  font-size: 2.0736rem;
}

/* line 81, ../src/scss/base/_typography.scss */
h2, .beta {
  font-size: 27.648px;
  font-size: 1.728rem;
}

/* line 85, ../src/scss/base/_typography.scss */
h3, .gamma {
  font-size: 23.04px;
  font-size: 1.44rem;
}

/* line 89, ../src/scss/base/_typography.scss */
h4, .delta {
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 93, ../src/scss/base/_typography.scss */
h5, .epsilon {
  font-size: 16px;
  font-size: 1rem;
}

/* line 97, ../src/scss/base/_typography.scss */
h6, .zeta {
  font-size: 13.33333px;
  font-size: 0.83333rem;
}

/* line 101, ../src/scss/base/_typography.scss */
.giga {
  font-size: 57.33089px;
  font-size: 3.58318rem;
}

/* line 105, ../src/scss/base/_typography.scss */
.mega {
  font-size: 47.77574px;
  font-size: 2.98598rem;
}

/* line 109, ../src/scss/base/_typography.scss */
.kilo {
  font-size: 39.81312px;
  font-size: 2.48832rem;
}

/**
 * Hyperlinks
 * =======================================================================
 **/
/* line 119, ../src/scss/base/_typography.scss */
a {
  color: #000;
}

/* line 123, ../src/scss/base/_typography.scss */
a:hover,
a:focus {
  color: #6ba124;
}

/**
 * Bold
 * =======================================================================
 **/
/* line 133, ../src/scss/base/_typography.scss */
b, strong {
  font-weight: normal;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}

/* line 1, ../src/scss/base/_tables.scss */
table,
.table {
  width: 100%;
}
/* line 5, ../src/scss/base/_tables.scss */
table th, table td,
.table th,
.table td {
  padding: 6.5px;
  padding: 0.40625rem;
  text-align: left;
}

/* line 11, ../src/scss/base/_tables.scss */
.table--text {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  max-width: 100%;
}
/* line 15, ../src/scss/base/_tables.scss */
.table--text th, .table--text td {
  padding: 0.40625em;
  text-align: left;
  vertical-align: top;
}
/* line 19, ../src/scss/base/_tables.scss */
.table--text th:first-child, .table--text td:first-child {
  padding-left: 0;
}
/* line 22, ../src/scss/base/_tables.scss */
.table--text th:last-child, .table--text td:last-child {
  padding-right: 0;
}

/* line 28, ../src/scss/base/_tables.scss */
.icons-list {
  width: auto;
}
/* line 31, ../src/scss/base/_tables.scss */
.icons-list th, .icons-list td {
  display: inline-block;
  padding: 0.8125em;
  vertical-align: middle;
  text-align: center;
}

/* line 41, ../src/scss/base/_tables.scss */
.icons-list--small th, .icons-list--small td {
  padding: 0.40625em;
}

/* line 46, ../src/scss/base/_tables.scss */
.table--bordered {
  width: auto;
}
/* line 49, ../src/scss/base/_tables.scss */
.table--bordered th, .table--bordered td {
  border: 1px solid #000;
}

/* line 54, ../src/scss/base/_tables.scss */
.table--striped {
  width: auto;
}
/* line 57, ../src/scss/base/_tables.scss */
.table--striped th, .table--striped td {
  padding: 0.40625em 0.8125em;
}
/* line 61, ../src/scss/base/_tables.scss */
.table--striped th {
  background: #000;
  color: #fff;
}
/* line 66, ../src/scss/base/_tables.scss */
.table--striped tr:nth-child(odd) td {
  background: #ddd;
}
/* line 70, ../src/scss/base/_tables.scss */
.table--striped tr:nth-child(even) td {
  background: #f3f3f5;
}

/* line 76, ../src/scss/base/_tables.scss */
[colspan] {
  text-align: center;
}

/* line 79, ../src/scss/base/_tables.scss */
[colspan="1"] {
  text-align: left;
}

/* line 82, ../src/scss/base/_tables.scss */
[rowspan] {
  vertical-align: middle;
}

/* line 85, ../src/scss/base/_tables.scss */
[rowspan="1"] {
  vertical-align: top;
}

/* line 88, ../src/scss/base/_tables.scss */
.numerical {
  text-align: right;
}

/* line 92, ../src/scss/base/_tables.scss */
.t5 {
  width: 5%;
}

/* line 93, ../src/scss/base/_tables.scss */
.t10 {
  width: 10%;
}

/* line 94, ../src/scss/base/_tables.scss */
.t12 {
  width: 12.5%;
}

/* line 95, ../src/scss/base/_tables.scss */
.t15 {
  width: 15%;
}

/* line 96, ../src/scss/base/_tables.scss */
.t20 {
  width: 20%;
}

/* line 97, ../src/scss/base/_tables.scss */
.t25 {
  width: 25%;
}

/* line 98, ../src/scss/base/_tables.scss */
.t30 {
  width: 30%;
}

/* line 99, ../src/scss/base/_tables.scss */
.t33 {
  width: 33.333%;
}

/* line 100, ../src/scss/base/_tables.scss */
.t35 {
  width: 35%;
}

/* line 101, ../src/scss/base/_tables.scss */
.t37 {
  width: 37.5%;
}

/* line 102, ../src/scss/base/_tables.scss */
.t40 {
  width: 40%;
}

/* line 103, ../src/scss/base/_tables.scss */
.t45 {
  width: 45%;
}

/* line 104, ../src/scss/base/_tables.scss */
.t50 {
  width: 50%;
}

/* line 105, ../src/scss/base/_tables.scss */
.t55 {
  width: 55%;
}

/* line 106, ../src/scss/base/_tables.scss */
.t60 {
  width: 60%;
}

/* line 107, ../src/scss/base/_tables.scss */
.t62 {
  width: 62.5%;
}

/* line 108, ../src/scss/base/_tables.scss */
.t65 {
  width: 65%;
}

/* line 109, ../src/scss/base/_tables.scss */
.t66 {
  width: 66.666%;
}

/* line 110, ../src/scss/base/_tables.scss */
.t70 {
  width: 70%;
}

/* line 111, ../src/scss/base/_tables.scss */
.t75 {
  width: 75%;
}

/* line 112, ../src/scss/base/_tables.scss */
.t80 {
  width: 80%;
}

/* line 113, ../src/scss/base/_tables.scss */
.t85 {
  width: 85%;
}

/* line 114, ../src/scss/base/_tables.scss */
.t87 {
  width: 87.5%;
}

/* line 115, ../src/scss/base/_tables.scss */
.t90 {
  width: 90%;
}

/* line 116, ../src/scss/base/_tables.scss */
.t95 {
  width: 95%;
}

/* The styling for this table is optimized for tables with content like products or order info */
/* line 122, ../src/scss/base/_tables.scss */
.records-table {
  display: block;
}
/* line 125, ../src/scss/base/_tables.scss */
.records-table colgroup {
  display: none;
}
/* line 129, ../src/scss/base/_tables.scss */
.records-table tr {
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  border-bottom: 1px solid #eeeef0;
}
/* line 134, ../src/scss/base/_tables.scss */
.records-table th, .records-table td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}
/* line 140, ../src/scss/base/_tables.scss */
.records-table thead {
  display: none;
}
/* line 144, ../src/scss/base/_tables.scss */
.records-table tbody, .records-table tfoot {
  display: block;
}
/* line 147, ../src/scss/base/_tables.scss */
.records-table tbody tr, .records-table tbody td, .records-table tfoot tr, .records-table tfoot td {
  display: block;
  width: 100%;
}
/* line 153, ../src/scss/base/_tables.scss */
.records-table tbody {
  /* Show a label on palm. Uses value of data attribute
   * Only show the label when the attribute is set */
}
/* line 158, ../src/scss/base/_tables.scss */
.records-table tbody td[data-cell-label]:not([data-cell-label=""]):before {
  display: inline-block;
  content: attr(data-cell-label);
  font-weight: 700;
}
/* line 166, ../src/scss/base/_tables.scss */
.records-table tfoot {
  /* Footer has always bigger spacing then body td */
}
/* line 168, ../src/scss/base/_tables.scss */
.records-table tfoot td {
  padding: 13px;
  padding: 0.8125rem;
}

@media (min-width: 375px) {
  /* line 178, ../src/scss/base/_tables.scss */
  .records-table tbody td[data-cell-label]:not([data-cell-label=""]):before {
    min-width: 15em;
  }

  /* line 185, ../src/scss/base/_tables.scss */
  .table--text {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 675px) {
  /* line 194, ../src/scss/base/_tables.scss */
  .records-table {
    display: table;
    border: 0;
  }
  /* line 198, ../src/scss/base/_tables.scss */
  .records-table colgroup {
    display: table-column-group;
  }
  /* line 202, ../src/scss/base/_tables.scss */
  .records-table th, .records-table td {
    padding: 13px;
    padding: 0.8125rem;
    border-right: 0;
    text-align: left;
  }
  /* line 207, ../src/scss/base/_tables.scss */
  .records-table th:first-child, .records-table td:first-child {
    text-align: left;
  }
  /* line 211, ../src/scss/base/_tables.scss */
  .records-table th:last-child, .records-table td:last-child {
    text-align: right;
  }
  /* line 215, ../src/scss/base/_tables.scss */
  .records-table th.number, .records-table td.number {
    text-align: right;
  }
  /* line 220, ../src/scss/base/_tables.scss */
  .records-table thead {
    display: table-header-group;
  }
  /* line 225, ../src/scss/base/_tables.scss */
  .records-table tbody tr, .records-table tfoot tr {
    display: table-row;
  }
  /* line 229, ../src/scss/base/_tables.scss */
  .records-table tbody td, .records-table tfoot td {
    display: table-cell;
    width: auto;
  }
  /* line 235, ../src/scss/base/_tables.scss */
  .records-table tbody {
    display: table-row-group;
  }
  /* line 239, ../src/scss/base/_tables.scss */
  .records-table tbody td[data-cell-label]:not([data-cell-label=""]):before {
    display: none;
  }
  /* line 245, ../src/scss/base/_tables.scss */
  .records-table tfoot {
    display: table-footer-group;
  }
}
/* Global messages on top of page etc. */
/* line 2, ../src/scss/base/_messages.scss */
.messages,
.std .messages {
  padding: 0;
  margin: 0;
}
/* line 7, ../src/scss/base/_messages.scss */
.messages ul, .messages li,
.std .messages ul,
.std .messages li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
/* line 13, ../src/scss/base/_messages.scss */
.messages > li,
.std .messages > li {
  max-width: 1020px;
  margin: 0 auto;
}
/* line 16, ../src/scss/base/_messages.scss */
.messages > li:first-child,
.std .messages > li:first-child {
  padding-top: 0;
}
/* line 19, ../src/scss/base/_messages.scss */
.messages > li:last-child,
.std .messages > li:last-child {
  padding-bottom: 1.625em;
}
/* line 23, ../src/scss/base/_messages.scss */
.messages > li li,
.std .messages > li li {
  margin-bottom: 0.8125em;
}
/* line 27, ../src/scss/base/_messages.scss */
.messages > li span,
.std .messages > li span {
  display: block;
  position: relative;
  padding: 0.8125em;
  padding-left: 70px;
  color: #fff;
}
/* line 34, ../src/scss/base/_messages.scss */
.messages > li span a,
.std .messages > li span a {
  color: #fff;
}
/* line 38, ../src/scss/base/_messages.scss */
.messages > li span:before,
.std .messages > li span:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  content: "";
}
/* line 47, ../src/scss/base/_messages.scss */
.messages > li span:after,
.std .messages > li span:after {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -10px;
  content: "";
}
/* line 57, ../src/scss/base/_messages.scss */
.messages .error-msg span,
.std .messages .error-msg span {
  background: #d45151;
}
/* line 60, ../src/scss/base/_messages.scss */
.messages .error-msg span:before,
.std .messages .error-msg span:before {
  background: #c23030;
}
/* line 63, ../src/scss/base/_messages.scss */
.messages .error-msg span:after,
.std .messages .error-msg span:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -790px -98px;
  width: 20px;
  height: 20px;
  content: "";
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 63, ../src/scss/base/_messages.scss */
  .messages .error-msg span:after,
  .std .messages .error-msg span:after {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1579px -196px;
    width: 40px;
    height: 40px;
    background-position: -790px -98px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .messages .error-msg span:after, .lt-ie9
.std .messages .error-msg span:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -790px -98px;
  width: 20px;
  height: 20px;
}
/* line 69, ../src/scss/base/_messages.scss */
.messages .notice-msg span,
.std .messages .notice-msg span {
  background: #ffd74a;
  color: #fff;
}
/* line 73, ../src/scss/base/_messages.scss */
.messages .notice-msg span a,
.std .messages .notice-msg span a {
  color: #fff;
}
/* line 77, ../src/scss/base/_messages.scss */
.messages .notice-msg span:before,
.std .messages .notice-msg span:before {
  background: #ffcc17;
}
/* line 80, ../src/scss/base/_messages.scss */
.messages .notice-msg span:after,
.std .messages .notice-msg span:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -485px -164px;
  width: 20px;
  height: 20px;
  content: "";
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 80, ../src/scss/base/_messages.scss */
  .messages .notice-msg span:after,
  .std .messages .notice-msg span:after {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -969px -328px;
    width: 40px;
    height: 40px;
    background-position: -485px -164px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .messages .notice-msg span:after, .lt-ie9
.std .messages .notice-msg span:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -485px -164px;
  width: 20px;
  height: 20px;
}
/* line 86, ../src/scss/base/_messages.scss */
.messages .success-msg span,
.std .messages .success-msg span {
  background: #b5d092;
}
/* line 89, ../src/scss/base/_messages.scss */
.messages .success-msg span:before,
.std .messages .success-msg span:before {
  background: #90bf52;
}
/* line 92, ../src/scss/base/_messages.scss */
.messages .success-msg span:after,
.std .messages .success-msg span:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -811px -77px;
  width: 20px;
  height: 20px;
  content: "";
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 92, ../src/scss/base/_messages.scss */
  .messages .success-msg span:after,
  .std .messages .success-msg span:after {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1621px -154px;
    width: 40px;
    height: 40px;
    background-position: -811px -77px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .messages .success-msg span:after, .lt-ie9
.std .messages .success-msg span:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -811px -77px;
  width: 20px;
  height: 20px;
}

/* Inline message. Like product not on stock. */
/* line 100, ../src/scss/base/_messages.scss */
.item-msg {
  border-radius: 3px;
  font-size: 13.33333px;
  display: inline-block;
  padding: 3px;
  margin: 0.8125em 0;
}
/* line 106, ../src/scss/base/_messages.scss */
.item-msg.notice {
  background: #ffd74a;
  color: #000;
}
/* line 110, ../src/scss/base/_messages.scss */
.item-msg.success {
  background: #b5d092;
  color: #fff;
}
/* line 114, ../src/scss/base/_messages.scss */
.item-msg.error {
  background: #d45151;
  color: #fff;
}

/* Demo notice on top on page on test environment */
/* line 121, ../src/scss/base/_messages.scss */
.demo-notice {
  background: #ffd74a;
  padding: 1.625em;
  text-align: center;
  font-weight: 700;
  color: #000;
}

/**
 * Validation
 * =======================================================================
 * General style for default Magento validation elements in the frontend.
 **/
/* line 7, ../src/scss/base/_forms.scss */
.validation-advice {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  padding: 6.5px;
  padding: 0.40625rem;
  border-radius: 0.40625em;
  position: relative;
  display: inline-block;
  margin-top: 0.8125em;
  background: #f7e0e0;
  font-style: italic;
  color: #c23030;
  line-height: 1.25;
  /**
   * Add an arrow to the top to let the validation advice look like a balloon and make sure it isn't confused with a button.
   **/
}
/* line 22, ../src/scss/base/_forms.scss */
.validation-advice:before {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-color: #f7e0e0;
  border-width: 0 0.5em 0.5em 0.5em;
  top: -6.4px;
  top: -0.4rem;
  display: inline-block;
  position: absolute;
  left: 0.8125em;
  content: "";
}

/**
 * Override the style of input fields when validation is failed.
 **/
/* line 35, ../src/scss/base/_forms.scss */
.validation-failed {
  border-color: #d45151 !important;
  color: #d45151 !important;
}

/**
 * Form
 * =======================================================================
 * Style of the default Magento form elements.
 **/
/**
 * Elements in an form are aligned within a grid. Also add white-space between lines.
 **/
/* line 51, ../src/scss/base/_forms.scss */
.form-list {
  /**
   * Form legend should be informative and shouldn't attract to much attention.
   **/
}
/* line 52, ../src/scss/base/_forms.scss */
.form-list > li,
.form-list .wide {
  margin-bottom: 0.8125em;
}
/* line 56, ../src/scss/base/_forms.scss */
.form-list > li input, .form-list > li textarea, .form-list > li select, .form-list > li .custom-select,
.form-list .wide input,
.form-list .wide textarea,
.form-list .wide select,
.form-list .wide .custom-select {
  margin-top: 0.40625em;
  width: 100%;
  height: 40px;
}
/* line 62, ../src/scss/base/_forms.scss */
.form-list > li .radio,
.form-list > li .checkbox,
.form-list > li input[type=checkbox],
.form-list > li input[type=radio],
.form-list .wide .radio,
.form-list .wide .checkbox,
.form-list .wide input[type=checkbox],
.form-list .wide input[type=radio] {
  width: auto;
}
/* line 69, ../src/scss/base/_forms.scss */
.form-list > li .radio + label,
.form-list > li .checkbox + label,
.form-list > li input[type=radio] + label,
.form-list > li input[type=checkbox] + label,
.form-list .wide .radio + label,
.form-list .wide .checkbox + label,
.form-list .wide input[type=radio] + label,
.form-list .wide input[type=checkbox] + label {
  margin-left: 0.40625em;
}
/* line 77, ../src/scss/base/_forms.scss */
.form-list .fields {
  margin-bottom: 0;
}
/* line 80, ../src/scss/base/_forms.scss */
.form-list .fields .field.field_small {
  width: 25%;
}
/* line 85, ../src/scss/base/_forms.scss */
.form-list .field,
.form-list .field--wide {
  margin-bottom: 0.8125em;
}
/* line 94, ../src/scss/base/_forms.scss */
.form-list .legend {
  opacity: .8;
  font-size: 13.33333px;
  font-size: 0.83333rem;
  margin-top: 0.40625em;
}

/* line 101, ../src/scss/base/_forms.scss */
.form-text {
  font-size: 3.72109px;
  font-size: 0.23257rem;
  color: #000;
}

/* line 106, ../src/scss/base/_forms.scss */
.control label {
  display: inline-block;
}

/**
 * Position the required asterisk at the right of the label field.
 **/
/* line 113, ../src/scss/base/_forms.scss */
label.required {
  /*@extend .clearfix;*/
  position: relative;
  display: inline-block;
  padding-right: 0.8125em;
}
/* line 118, ../src/scss/base/_forms.scss */
label.required em {
  position: absolute;
  right: 0;
  top: 0;
  color: #d45151;
}

/* line 126, ../src/scss/base/_forms.scss */
p.required {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  text-align: right;
}

@media (min-width: 600px) {
  /* line 136, ../src/scss/base/_forms.scss */
  .form-list .fields .field {
    width: 50%;
  }
  /* line 139, ../src/scss/base/_forms.scss */
  .form-list .fields .field-wide {
    width: 100%;
  }
  /* line 145, ../src/scss/base/_forms.scss */
  .form-list > li.inline label {
    margin-top: 0.8125em;
    margin-bottom: 0;
    max-width: 33.333333%;
  }
  /* line 151, ../src/scss/base/_forms.scss */
  .form-list > li.inline .input-box {
    width: 66.66667%;
    float: right;
    clear: none;
  }
}
/* individual style changes */
/* line 168, ../src/scss/base/_forms.scss */
.account-create #form-validate .fieldset .form-list .control .input-box {
  display: block;
  float: left;
}
/* line 172, ../src/scss/base/_forms.scss */
.account-create #form-validate .fieldset .form-list .control .checkbox {
  height: 14px;
  margin-right: 12px;
}
/* line 182, ../src/scss/base/_forms.scss */
.account-create #form-validate .field__country .input-box .field-row .jqTransformSelectWrapper {
  margin-top: 0.40625em;
}

/**
 * customer create account form 
 **/
/* line 196, ../src/scss/base/_forms.scss */
#change_password {
  height: 16px;
}

@media (min-width: 600px) {
  /* line 203, ../src/scss/base/_forms.scss */
  .customer-account-create .customer-name-prefix-middlename .name-prefix,
  .customer-account-edit .customer-name-prefix-middlename .name-prefix,
  .customer-address-form .customer-name-prefix-middlename .name-prefix {
    width: 40%;
  }
  /* line 204, ../src/scss/base/_forms.scss */
  .customer-account-create .customer-name-prefix-middlename .name-firstname,
  .customer-account-edit .customer-name-prefix-middlename .name-firstname,
  .customer-address-form .customer-name-prefix-middlename .name-firstname {
    clear: both;
    width: 40%;
  }
  /* line 205, ../src/scss/base/_forms.scss */
  .customer-account-create .customer-name-prefix-middlename .name-middlename,
  .customer-account-edit .customer-name-prefix-middlename .name-middlename,
  .customer-address-form .customer-name-prefix-middlename .name-middlename {
    width: 20%;
  }
  /* line 206, ../src/scss/base/_forms.scss */
  .customer-account-create .customer-name-prefix-middlename .name-lastname,
  .customer-account-edit .customer-name-prefix-middlename .name-lastname,
  .customer-address-form .customer-name-prefix-middlename .name-lastname {
    width: 40%;
  }
}
/* line 211, ../src/scss/base/_forms.scss */
.grid__item, .form-list .field,
.form-list .field--wide, .grid--full__item, .minicart__detail .product__image,
.minicart__detail .product__name,
.minicart__detail .product__price, .footer__usp li, .breadcrumbs, .products-grid .item, .pager .amount, .pager .limiter, .pager .pages, .col2-set .col-1,
.col2-set .col-2, .col-main,
.col-left,
.col-right, .footer__title,
.footer__contact,
.footer__links,
.footer__copyright,
.footer__social, .footer__links .left, .footer__links .right, .cart__banner,
.cart__coupon,
.cart__totals, .imagebox__large-image, .imagebox__thumbnails, .onestepcheckout-column, .form-list .field, .form-list .field--wide, .grid--full__item, .minicart__detail .product__image,
.minicart__detail .product__name,
.minicart__detail .product__price, .footer__usp li, .minicart__detail .product__image, .minicart__detail .product__name, .minicart__detail .product__price, .footer__usp li, .breadcrumbs, .products-grid .item, .pager .amount, .pager .limiter, .pager .pages, .col2-set .col-1, .col2-set .col-2, .col-main, .col-left, .col-right, .footer__title, .footer__contact, .footer__links, .footer__copyright, .footer__social, .footer__links .left, .footer__links .right, .cart__banner, .cart__coupon, .cart__totals, .imagebox__large-image, .imagebox__thumbnails, .onestepcheckout-column {
  float: left;
  padding-left: 1.625rem;
}

/**
 * Buttons
 * =======================================================================
 * General buttons which can be used across the whole frontend.
 **/
/**
 * The default button. Most buttons accross the frontend will be based on this style.
 * [1] Button can never be bigger then his parent.
 * [2] Add border so buttons have the same height is input-text.
 **/
/* line 12, ../src/scss/base/_buttons.scss */
.button, .btn-cart,
.btn-checkout, .cms-home .intro a, .button-minor {
  font-size: 16px;
  font-size: 1rem;
  transition: background 0.2s ease-out, border 0.2s ease-out;
  position: relative;
  display: inline-block;
  padding: 0.60938em;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  outline: 0;
}

/**
 * [1] Don't override large padding-right for icons.
 **/
/* line 31, ../src/scss/base/_buttons.scss */
.button, .btn-cart,
.btn-checkout, .cms-home .intro a {
  padding-right: 3.25em !important;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  /* Border between text and icon */
  /* The icon */
}
/* line 37, ../src/scss/base/_buttons.scss */
.button:focus, .btn-cart:focus,
.btn-checkout:focus, .cms-home .intro a:focus, .button:hover, .btn-cart:hover,
.btn-checkout:hover, .cms-home .intro a:hover {
  background-color: #6ba124;
  color: #fff;
  border-color: #6ba124;
}
/* line 46, ../src/scss/base/_buttons.scss */
.button:before, .btn-cart:before,
.btn-checkout:before, .cms-home .intro a:before {
  top: 6px;
  top: 0.375rem;
  bottom: 6px;
  bottom: 0.375rem;
  display: block;
  position: absolute;
  width: 1px;
  right: 2.3125em;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  content: "";
}
/* line 59, ../src/scss/base/_buttons.scss */
.button:after, .btn-cart:after,
.btn-checkout:after, .cms-home .intro a:after {
  font-size: 16px;
  font-size: 1rem;
  position: absolute;
  top: 0.8125em;
  right: 0.875em;
  content: "\e604";
}

/**
 * A clean button without any style. This button can be used an icon with a JS trigger.
 **/
/* line 72, ../src/scss/base/_buttons.scss */
.button-clean {
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  box-shadow: none;
  background: none;
}

/**
 * A button with minor styling so it doesn't attract as much attention is the default button does.
 **/
/* line 82, ../src/scss/base/_buttons.scss */
.button-minor {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
/* line 87, ../src/scss/base/_buttons.scss */
.button-minor:focus, .button-minor:hover {
  background: #6ba124;
  color: #fff;
  border-color: #6ba124;
}
/* line 94, ../src/scss/base/_buttons.scss */
.button-minor:before {
  background: #000;
}
/* line 98, ../src/scss/base/_buttons.scss */
.button-minor:hover::before {
  background: rgba(255, 255, 255, 0.5);
}

/**
 * A button which will look like it's a link.
 **/
/* line 106, ../src/scss/base/_buttons.scss */
.button-text {
  font-size: 16px;
  font-size: 1rem;
  background: none;
  border: 0;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  color: #000 !important;
  text-decoration: none;
  white-space: nowrap;
  outline: 0;
}
/* line 117, ../src/scss/base/_buttons.scss */
.button-text:focus, .button-text:hover {
  color: #414141 !important;
}

/**
 * Extend default buttons with these classes to make them bigger or smaller.
 **/
/* line 126, ../src/scss/base/_buttons.scss */
.button--small {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  padding: 6.5px;
  padding: 0.40625rem;
}

/* Use these spacing units so padding is same as repair */
/* line 132, ../src/scss/base/_buttons.scss */
.button--big, .btn-cart,
.btn-checkout, .cms-home .intro a {
  font-size: 23.04px;
  font-size: 1.44rem;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
}

/**
 * Add style to buttons with default Magento classes.
 **/
/* line 140, ../src/scss/base/_buttons.scss */
.btn-cart,
.btn-checkout {
  background: #6ba124;
  border-color: #6ba124;
}
/* line 147, ../src/scss/base/_buttons.scss */
.btn-cart:hover,
.btn-checkout:hover {
  background: #90bf52;
  border-color: #90bf52;
}
/* line 156, ../src/scss/base/_buttons.scss */
.btn-cart:after,
.btn-checkout:after {
  font-size: 23.04px;
  font-size: 1.44rem;
  top: 0.5625em;
  right: 0.625em;
  content: "\e60d";
}

/**
 * Style when a button is disabled.
 **/
/* line 167, ../src/scss/base/_buttons.scss */
button.disabled,
button[disabled="disabled"] {
  background: #f3f3f5 !important;
  color: #fff !important;
  text-decoration: line-through;
}

/**
 * Buttons-set
 * =======================================================================
 * Container which hold the button elements. Add some general styling like padding and align.
 **/
/* line 180, ../src/scss/base/_buttons.scss */
.buttons-set {
  /*@extend .clearfix;*/
  text-align: right;
}
/* line 184, ../src/scss/base/_buttons.scss */
.buttons-set button:not(.button-minor) {
  display: block;
  width: 100%;
  margin-bottom: 0.8125em;
}
/* line 190, ../src/scss/base/_buttons.scss */
.buttons-set .back-link {
  display: inline-block;
  float: left;
  margin-top: 1.625em;
}

@media (min-width: 600px) {
  /* line 201, ../src/scss/base/_buttons.scss */
  .buttons-set button:not(.button-minor) {
    display: inline-block;
    width: auto;
  }
}
/* line 1, ../src/scss/base/_images.scss */
img {
  max-width: 100%;
}

/* line 5, ../src/scss/base/_images.scss */
img[width],
img[height] {
  max-width: 100%;
  height: auto;
}

/**
 * [1] Remove FF mobile gradient.
 * [2] Remove Webkit mobile rounded corners.
 * [3] Remove browser native style.
 **/
/* line 8, ../src/scss/base/_input-fields.scss */
.input-text {
  font-size: 16px;
  font-size: 1rem;
  transition: border 0.2s ease-in-out;
  appearance: none;
  max-width: 100%;
  padding: 0.60938em;
  background: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: 0;
  color: #000;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  cursor: auto;
}
/* line 22, ../src/scss/base/_input-fields.scss */
.input-text:focus {
  border-color: #6ba124;
}
/* line 25, ../src/scss/base/_input-fields.scss */
.lt-ie9 .input-text {
  font-family: Arial, serif;
}

/* line 30, ../src/scss/base/_input-fields.scss */
input[readonly="readonly"],
input[readonly] {
  background: #fefefe;
  color: #000;
}
/* line 34, ../src/scss/base/_input-fields.scss */
input[readonly="readonly"]:focus,
input[readonly]:focus {
  color: #000;
}

/* line 39, ../src/scss/base/_input-fields.scss */
input[type=password] {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 2px;
  letter-spacing: 0.1rem;
}

/* line 46, ../src/scss/base/_input-fields.scss */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 51, ../src/scss/base/_input-fields.scss */
input[type=file] {
  margin-bottom: 12px;
  transition: all 0.5s;
}
/* line 54, ../src/scss/base/_input-fields.scss */
input[type=file]:hover {
  box-shadow: #ccc 0 0 4px;
  color: #000;
}

/*@import "base/list";*/
/*
@import "base/radio-checkbox";
@import "base/select-fields";
*/
/**
 * Components
 * =======================================================================
 **/
/**
 * The default grid uses a left negative margin to make sure all the child elements
 * have the same width while having left padding.
 **/
/* line 5, ../src/scss/components/_grid.scss */
.grid, .form-list .fields, .grid--full, .minicart__detail .product, .footer__usp ul, .grid--nested, .products-grid, .pager .pager__grid, .col2-set, .wrapper, .footer__grid, .footer__links .links-grid, .cart__collaterals, .imagebox, .onestepcheckout-threecolumns {
  margin-left: -26px;
  margin-left: -1.625rem;
  list-style: none;
  margin-bottom: 0;
}
/* line 7, ../src/scss/globals/_mixins.scss */
.grid:after, .form-list .fields:after, .grid--full:after, .minicart__detail .product:after, .footer__usp ul:after, .grid--nested:after, .products-grid:after, .pager .pager__grid:after, .col2-set:after, .wrapper:after, .footer__grid:after, .footer__links .links-grid:after, .cart__collaterals:after, .imagebox:after, .onestepcheckout-threecolumns:after, .grid:before, .form-list .fields:before, .grid--full:before, .minicart__detail .product:before, .footer__usp ul:before, .grid--nested:before, .products-grid:before, .pager .pager__grid:before, .col2-set:before, .wrapper:before, .footer__grid:before, .footer__links .links-grid:before, .cart__collaterals:before, .imagebox:before, .onestepcheckout-threecolumns:before {
  content: "";
  display: table;
}
/* line 11, ../src/scss/globals/_mixins.scss */
.grid:after, .form-list .fields:after, .grid--full:after, .minicart__detail .product:after, .footer__usp ul:after, .grid--nested:after, .products-grid:after, .pager .pager__grid:after, .col2-set:after, .wrapper:after, .footer__grid:after, .footer__links .links-grid:after, .cart__collaterals:after, .imagebox:after, .onestepcheckout-threecolumns:after {
  clear: both;
}

/* line 12, ../src/scss/components/_grid.scss */
.grid__item, .form-list .field,
.form-list .field--wide, .grid--full__item, .minicart__detail .product__image,
.minicart__detail .product__name,
.minicart__detail .product__price, .footer__usp li, .breadcrumbs, .products-grid .item, .pager .amount, .pager .limiter, .pager .pages, .col2-set .col-1,
.col2-set .col-2, .col-main,
.col-left,
.col-right, .footer__title,
.footer__contact,
.footer__links,
.footer__copyright,
.footer__social, .footer__links .left, .footer__links .right, .cart__banner,
.cart__coupon,
.cart__totals, .imagebox__large-image, .imagebox__thumbnails, .onestepcheckout-column {
  padding-left: 26px;
  padding-left: 1.625rem;
  width: 100%;
  float: left;
}

/**
 * Inline grid. Child elements are inline-block which provide more flexibility to
 * align grid items. Inline block elements render white-space so this type of grid is not suitable for all
 * purposes.
 * [1] Reset for webkit.
 * [2] Reset for <IE8 and Gecko (Firefox).
 **/
/* line 25, ../src/scss/components/_grid.scss */
.inline-grid, .inline-grid--full {
  margin-left: -26px;
  margin-left: -1.625rem;
  list-style: none;
  margin-bottom: 0;
}
/* line 7, ../src/scss/globals/_mixins.scss */
.inline-grid:after, .inline-grid--full:after, .inline-grid:before, .inline-grid--full:before {
  content: "";
  display: table;
}
/* line 11, ../src/scss/globals/_mixins.scss */
.inline-grid:after, .inline-grid--full:after {
  clear: both;
}

/* line 36, ../src/scss/components/_grid.scss */
.inline-grid__item, .inline-grid--full__item {
  display: inline-block;
  vertical-align: top;
  padding-left: 26px;
  padding-left: 1.625rem;
}

/**
 * Varation to default grids. Has no padding between columns.
 **/
/* line 49, ../src/scss/components/_grid.scss */
.grid--full, .minicart__detail .product, .footer__usp ul {
  margin-left: 0;
}

/* line 54, ../src/scss/components/_grid.scss */
.grid--full__item, .minicart__detail .product__image,
.minicart__detail .product__name,
.minicart__detail .product__price, .footer__usp li {
  padding-left: 0;
}

/* line 59, ../src/scss/components/_grid.scss */
.inline-grid--full {
  margin-left: 0;
}

/* line 64, ../src/scss/components/_grid.scss */
.inline-grid--full__item {
  padding-left: 0;
}

/**
 * Varation to default grid. Use to nest grids.
 **/
/* line 73, ../src/scss/components/_grid.scss */
.grid--nested {
  margin-left: 0;
}

/* line 1, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs {
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  color: #999;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 7, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs li {
  display: inline-block;
  font-weight: normal;
  line-height: 1.5;
}
/* line 12, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs li:after {
  padding: 0 6.5px;
  padding: 0 0.40625rem;
  display: inline-block;
  content: "\003E";
  color: #999;
}
/* line 19, ../src/scss/components/_breadcrumbs.scss */
.lt-ie9 .breadcrumbs li {
  margin-right: 1px;
}
/* line 24, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs a {
  color: #999;
}
/* line 28, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs li:last-of-type {
  color: #000;
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
}
/* line 32, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs li:last-of-type:after {
  content: '';
}
/* line 41, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs a {
  text-decoration: none;
}

@media (min-width: 600px) {
  /* line 48, ../src/scss/components/_breadcrumbs.scss */
  .breadcrumbs {
    font-size: 19.2px;
    font-size: 1.2rem;
  }
  /* line 51, ../src/scss/components/_breadcrumbs.scss */
  .breadcrumbs ul {
    padding: 13px 0;
    padding: 0.8125rem 0;
  }
}
/*@import "components/clearfix";*/
/**
 * Use the container element to vertically center it's content and limit the width.
 * Ideal to use in combination with elements which use the full width of the page like a nav bar.
 *
 * ---------------------------------
 *         |  .container  |
 * ---------------------------------
 *
 **/
/* line 10, ../src/scss/components/_container.scss */
.container, .main {
  max-width: 1020px;
  margin: 0 auto;
}

/**
 * Align
 * ==========================================================================
 **/
/**
 * Add/remove floats
 */
/* line 11, ../src/scss/components/_helpers.scss */
.float--right, .f-right {
  float: right !important;
}

/* line 15, ../src/scss/components/_helpers.scss */
.float--left, .f-left {
  float: left !important;
}

/* line 19, ../src/scss/components/_helpers.scss */
.float--none, .f-none {
  float: none !important;
}

/**
 * Text alignment
 */
/* line 26, ../src/scss/components/_helpers.scss */
.text--left, .a-left {
  text-align: left  !important;
}

/* line 30, ../src/scss/components/_helpers.scss */
.text--center, .a-center {
  text-align: center !important;
}

/* line 34, ../src/scss/components/_helpers.scss */
.text--right, .a-right {
  text-align: right !important;
}

/**
 * Style
 * ==========================================================================
 **/
/**
 * Font decoration
 **/
/* line 51, ../src/scss/components/_helpers.scss */
.style--italic {
  font-style: italic;
}

/* line 55, ../src/scss/components/_helpers.scss */
.style--underline {
  text-decoration: underline;
}

/* line 59, ../src/scss/components/_helpers.scss */
.style--striketrough {
  text-decoration: line-through;
}

/**
 * Font weights
 */
/* line 66, ../src/scss/components/_helpers.scss */
.weight--light {
  font-weight: 300 !important;
}

/* line 70, ../src/scss/components/_helpers.scss */
.weight--normal {
  font-weight: 400 !important;
}

/* line 74, ../src/scss/components/_helpers.scss */
.weight--semibold {
  font-weight: 600 !important;
}

/* line 78, ../src/scss/components/_helpers.scss */
.weight--bold {
  font-weight: 700 !important;
}

/**
 * Spacing
 * ==========================================================================
 **/
/**
 * Add/remove margins
 */
/* line 95, ../src/scss/components/_helpers.scss */
.margin {
  margin: 1.625em !important;
}

/* line 99, ../src/scss/components/_helpers.scss */
.margin--top {
  margin-top: 1.625em !important;
}

/* line 103, ../src/scss/components/_helpers.scss */
.margin--right {
  margin-right: 1.625em !important;
}

/* line 107, ../src/scss/components/_helpers.scss */
.margin--bottom {
  margin-bottom: 1.625em !important;
}

/* line 111, ../src/scss/components/_helpers.scss */
.margin--left {
  margin-left: 1.625em !important;
}

/* line 115, ../src/scss/components/_helpers.scss */
.margin--ends {
  margin-top: 1.625em !important;
  margin-bottom: 1.625em !important;
}

/* line 120, ../src/scss/components/_helpers.scss */
.margin--sides {
  margin-right: 1.625em !important;
  margin-left: 1.625em !important;
}

/* line 125, ../src/scss/components/_helpers.scss */
.margin-half {
  margin: 0.8125em !important;
}

/* line 129, ../src/scss/components/_helpers.scss */
.margin-half--top {
  margin-top: 0.8125em !important;
}

/* line 133, ../src/scss/components/_helpers.scss */
.margin-half--right {
  margin-right: 0.8125em !important;
}

/* line 137, ../src/scss/components/_helpers.scss */
.margin-half--bottom {
  margin-bottom: 0.8125em !important;
}

/* line 141, ../src/scss/components/_helpers.scss */
.margin-half--left {
  margin-left: 0.8125em !important;
}

/* line 145, ../src/scss/components/_helpers.scss */
.margin-half--ends {
  margin-top: 0.8125em !important;
  margin-bottom: 0.8125em !important;
}

/* line 150, ../src/scss/components/_helpers.scss */
.margin-half--sides {
  margin-right: 0.8125em !important;
  margin-left: 0.8125em !important;
}

/* line 155, ../src/scss/components/_helpers.scss */
.margin-double {
  margin: 3.25em !important;
}

/* line 159, ../src/scss/components/_helpers.scss */
.margin-double--top {
  margin-top: 3.25em !important;
}

/* line 163, ../src/scss/components/_helpers.scss */
.margin-double--right {
  margin-right: 3.25em !important;
}

/* line 167, ../src/scss/components/_helpers.scss */
.margin-double--bottom {
  margin-bottom: 3.25em !important;
}

/* line 171, ../src/scss/components/_helpers.scss */
.margin-double--left {
  margin-left: 3.25em !important;
}

/* line 175, ../src/scss/components/_helpers.scss */
.margin-double--ends {
  margin-top: 3.25em !important;
  margin-bottom: 3.25em !important;
}

/* line 180, ../src/scss/components/_helpers.scss */
.margin-double--sides {
  margin-right: 3.25em !important;
  margin-left: 3.25em !important;
}

/* line 185, ../src/scss/components/_helpers.scss */
.no-margin {
  margin: 0 !important;
}

/* line 189, ../src/scss/components/_helpers.scss */
.no-margin--top {
  margin-top: 0 !important;
}

/* line 193, ../src/scss/components/_helpers.scss */
.no-margin--right {
  margin-right: 0 !important;
}

/* line 197, ../src/scss/components/_helpers.scss */
.no-margin--bottom {
  margin-bottom: 0 !important;
}

/* line 201, ../src/scss/components/_helpers.scss */
.no-margin--left {
  margin-left: 0 !important;
}

/* line 205, ../src/scss/components/_helpers.scss */
.no-margin--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 210, ../src/scss/components/_helpers.scss */
.no-margin--sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/**
 * Add/remove paddings
 */
/* line 219, ../src/scss/components/_helpers.scss */
.padding {
  padding: 1.625em !important;
}

/* line 223, ../src/scss/components/_helpers.scss */
.padding--top {
  padding-top: 1.625em !important;
}

/* line 227, ../src/scss/components/_helpers.scss */
.padding--right {
  padding-right: 1.625em !important;
}

/* line 231, ../src/scss/components/_helpers.scss */
.padding--bottom {
  padding-bottom: 1.625em !important;
}

/* line 235, ../src/scss/components/_helpers.scss */
.padding--left {
  padding-left: 1.625em !important;
}

/* line 239, ../src/scss/components/_helpers.scss */
.padding--ends {
  padding-top: 1.625em !important;
  padding-bottom: 1.625em !important;
}

/* line 244, ../src/scss/components/_helpers.scss */
.padding--sides {
  padding-right: 1.625em !important;
  padding-left: 1.625em !important;
}

/* line 249, ../src/scss/components/_helpers.scss */
.padding-half {
  padding: 0.8125em !important;
}

/* line 253, ../src/scss/components/_helpers.scss */
.padding-half--top {
  padding-top: 0.8125em !important;
}

/* line 257, ../src/scss/components/_helpers.scss */
.padding-half--right {
  padding-right: 0.8125em !important;
}

/* line 261, ../src/scss/components/_helpers.scss */
.padding-half--bottom {
  padding-bottom: 0.8125em !important;
}

/* line 265, ../src/scss/components/_helpers.scss */
.padding-half--left {
  padding-left: 0.8125em !important;
}

/* line 269, ../src/scss/components/_helpers.scss */
.padding-half--ends {
  padding-top: 0.8125em !important;
  padding-bottom: 0.8125em !important;
}

/* line 274, ../src/scss/components/_helpers.scss */
.padding-half--sides {
  padding-right: 0.8125em !important;
  padding-left: 0.8125em !important;
}

/* line 279, ../src/scss/components/_helpers.scss */
.padding-double {
  padding: 3.25em !important;
}

/* line 283, ../src/scss/components/_helpers.scss */
.padding-double--top {
  padding-top: 3.25em !important;
}

/* line 287, ../src/scss/components/_helpers.scss */
.padding-double--right {
  padding-right: 3.25em !important;
}

/* line 291, ../src/scss/components/_helpers.scss */
.padding-double--bottom {
  padding-bottom: 3.25em !important;
}

/* line 295, ../src/scss/components/_helpers.scss */
.padding-double--left {
  padding-left: 3.25em !important;
}

/* line 299, ../src/scss/components/_helpers.scss */
.padding-double--ends {
  padding-top: 3.25em !important;
  padding-bottom: 3.25em !important;
}

/* line 304, ../src/scss/components/_helpers.scss */
.padding-double--sides {
  padding-right: 3.25em !important;
  padding-left: 3.25em !important;
}

/* line 309, ../src/scss/components/_helpers.scss */
.no-padding {
  padding: 0 !important;
}

/* line 313, ../src/scss/components/_helpers.scss */
.no-padding--top {
  padding-top: 0 !important;
}

/* line 317, ../src/scss/components/_helpers.scss */
.no-padding--right {
  padding-right: 0 !important;
}

/* line 321, ../src/scss/components/_helpers.scss */
.no-padding--bottom {
  padding-bottom: 0 !important;
}

/* line 325, ../src/scss/components/_helpers.scss */
.no-padding--left {
  padding-left: 0 !important;
}

/* line 329, ../src/scss/components/_helpers.scss */
.no-padding--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* line 334, ../src/scss/components/_helpers.scss */
.no-padding--sides {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/**
 * Visiblity
 * ==========================================================================
 **/
/* line 267, ../src/scss/globals/_mixins.scss */
.visuallyhidden, .breadcrumbs .home, .price-box .price-label, .products-grid .product__actions .button-minor .label, .header__logo .alt, .header__logo strong, .block-account-nav.s-collapsed .block-content {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* line 271, ../src/scss/globals/_mixins.scss */
.unset-visuallyhidden {
  border: 0 !important;
  clip: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  position: static !important;
  width: auto !important;
}

/* line 275, ../src/scss/globals/_mixins.scss */
.hidden {
  display: none !important;
}

/* line 279, ../src/scss/globals/_mixins.scss */
.visible {
  display: block !important;
}

/* line 283, ../src/scss/globals/_mixins.scss */
.text-hidden, .sprite, .footer__contact .icon span, .cms-home .intro .help .arrow, .toolbar__pages .previous, .toolbar__pages .next, .footer__social .arrow span {
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

@media (min-width: 600px) and (max-width: 975px) {
  /* line 267, ../src/scss/globals/_mixins.scss */
  .visuallyhidden--m {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }

  /* line 271, ../src/scss/globals/_mixins.scss */
  .unset-visuallyhidden--m {
    border: 0 !important;
    clip: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    position: static !important;
    width: auto !important;
  }

  /* line 275, ../src/scss/globals/_mixins.scss */
  .hidden--m {
    display: none !important;
  }

  /* line 279, ../src/scss/globals/_mixins.scss */
  .visible--m {
    display: block !important;
  }

  /* line 283, ../src/scss/globals/_mixins.scss */
  .text-hidden--m {
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
  }
}
@media (min-width: 600px) {
  /* line 267, ../src/scss/globals/_mixins.scss */
  .visuallyhidden--m-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }

  /* line 271, ../src/scss/globals/_mixins.scss */
  .unset-visuallyhidden--m-up {
    border: 0 !important;
    clip: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    position: static !important;
    width: auto !important;
  }

  /* line 275, ../src/scss/globals/_mixins.scss */
  .hidden--m-up {
    display: none !important;
  }

  /* line 279, ../src/scss/globals/_mixins.scss */
  .visible--m-up {
    display: block !important;
  }

  /* line 283, ../src/scss/globals/_mixins.scss */
  .text-hidden--m-up {
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
  }
}
@media (min-width: 975px) {
  /* line 267, ../src/scss/globals/_mixins.scss */
  .visuallyhidden--l-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }

  /* line 271, ../src/scss/globals/_mixins.scss */
  .unset-visuallyhidden--l-up {
    border: 0 !important;
    clip: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    position: static !important;
    width: auto !important;
  }

  /* line 275, ../src/scss/globals/_mixins.scss */
  .hidden--l-up {
    display: none !important;
  }

  /* line 279, ../src/scss/globals/_mixins.scss */
  .visible--l-up {
    display: block !important;
  }

  /* line 283, ../src/scss/globals/_mixins.scss */
  .text-hidden--l-up {
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
  }
}
/**
 * Scroll
 * ==========================================================================
 **/
/* line 372, ../src/scss/components/_helpers.scss */
.scroll-disabled {
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

/**
 * Grid
 * ==========================================================================
 * Basic grid-helpers for use in static blocks or pages.
 **/
/* line 232, ../src/scss/globals/_mixins.scss */
.one-whole {
  width: 100%;
}

/* line 236, ../src/scss/globals/_mixins.scss */
.one-quarter {
  width: 25%;
}

/* line 240, ../src/scss/globals/_mixins.scss */
.one-half,
.two-quarters {
  width: 50%;
}

/* line 245, ../src/scss/globals/_mixins.scss */
.one-third {
  width: 33.33333%;
}

/* line 249, ../src/scss/globals/_mixins.scss */
.two-thirds {
  width: 66.66667%;
}

/* line 253, ../src/scss/globals/_mixins.scss */
.three-quarters {
  width: 75%;
}

@media (min-width: 600px) and (max-width: 975px) {
  /* line 232, ../src/scss/globals/_mixins.scss */
  .m-one-whole {
    width: 100%;
  }

  /* line 236, ../src/scss/globals/_mixins.scss */
  .m-one-quarter {
    width: 25%;
  }

  /* line 240, ../src/scss/globals/_mixins.scss */
  .m-one-half,
  .m-two-quarters {
    width: 50%;
  }

  /* line 245, ../src/scss/globals/_mixins.scss */
  .m-one-third {
    width: 33.33333%;
  }

  /* line 249, ../src/scss/globals/_mixins.scss */
  .m-two-thirds {
    width: 66.66667%;
  }

  /* line 253, ../src/scss/globals/_mixins.scss */
  .m-three-quarters {
    width: 75%;
  }
}
@media (min-width: 600px) {
  /* line 232, ../src/scss/globals/_mixins.scss */
  .m-up-one-whole {
    width: 100%;
  }

  /* line 236, ../src/scss/globals/_mixins.scss */
  .m-up-one-quarter {
    width: 25%;
  }

  /* line 240, ../src/scss/globals/_mixins.scss */
  .m-up-one-half,
  .m-up-two-quarters {
    width: 50%;
  }

  /* line 245, ../src/scss/globals/_mixins.scss */
  .m-up-one-third {
    width: 33.33333%;
  }

  /* line 249, ../src/scss/globals/_mixins.scss */
  .m-up-two-thirds {
    width: 66.66667%;
  }

  /* line 253, ../src/scss/globals/_mixins.scss */
  .m-up-three-quarters {
    width: 75%;
  }
}
@media (min-width: 975px) {
  /* line 232, ../src/scss/globals/_mixins.scss */
  .l-up-one-whole {
    width: 100%;
  }

  /* line 236, ../src/scss/globals/_mixins.scss */
  .l-up-one-quarter {
    width: 25%;
  }

  /* line 240, ../src/scss/globals/_mixins.scss */
  .l-up-one-half,
  .l-up-two-quarters {
    width: 50%;
  }

  /* line 245, ../src/scss/globals/_mixins.scss */
  .l-up-one-third {
    width: 33.33333%;
  }

  /* line 249, ../src/scss/globals/_mixins.scss */
  .l-up-two-thirds {
    width: 66.66667%;
  }

  /* line 253, ../src/scss/globals/_mixins.scss */
  .l-up-three-quarters {
    width: 75%;
  }
}
/*@import "components/nav";*/
/* line 1, ../src/scss/components/_price-box.scss */
.price-box {
  /* @extend .clearfix; */
}
/* line 8, ../src/scss/components/_price-box.scss */
.price-box .old-price, .price-box .special-price, .price-box .regular-price {
  float: left;
  margin: 0;
}
/* line 13, ../src/scss/components/_price-box.scss */
.price-box .old-price {
  margin-right: 0.40625em;
  text-decoration: line-through;
}
/* line 18, ../src/scss/components/_price-box.scss */
.price-box .special-price {
  font-weight: bold;
}

/* line 9, ../src/scss/components/_products.scss */
.products-grid {
  margin-top: 1.625em;
}
/* line 20, ../src/scss/components/_products.scss */
.products-grid .product {
  /*@extend .clearfix;*/
  padding-bottom: 0.125em;
  margin-bottom: 3.25em;
  text-align: center;
  border-bottom: 1px solid #eeeef0;
  overflow: hidden;
}
/* line 29, ../src/scss/components/_products.scss */
.no-js .products-grid .product {
  min-height: 28.125em;
}
/* line 34, ../src/scss/components/_products.scss */
.products-grid .product__image {
  text-align: center;
}
/* line 37, ../src/scss/components/_products.scss */
.products-grid .product__image a {
  display: inline-block;
}
/* line 42, ../src/scss/components/_products.scss */
.products-grid .product__name {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  text-transform: none;
  text-align: left;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 49, ../src/scss/components/_products.scss */
.products-grid .product__name a {
  text-decoration: none;
}
/* line 54, ../src/scss/components/_products.scss */
.products-grid .product__reviews {
  min-height: 1.625em;
  margin-bottom: 0.8125em;
}
/* line 59, ../src/scss/components/_products.scss */
.products-grid .product__actions {
  display: inline-block;
}
/* line 62, ../src/scss/components/_products.scss */
.products-grid .product__actions .button-minor {
  font-size: 23.04px;
  font-size: 1.44rem;
  padding: 6.5px 13px;
  padding: 0.40625rem 0.8125rem;
  background: #eeeef0;
  border-color: #ccc;
  line-height: 1;
}
/* line 69, ../src/scss/components/_products.scss */
.products-grid .product__actions .button-minor:hover {
  background: #6ba124;
  border-color: #6ba124;
}
/* line 80, ../src/scss/components/_products.scss */
.products-grid .product__read-more {
  display: none;
}
/* line 84, ../src/scss/components/_products.scss */
.products-grid .product__price {
  font-size: 19.2px;
  font-size: 1.2rem;
  margin-top: 22px;
  margin-top: 1.375rem;
  display: inline-block;
  min-width: 3.64583em;
  vertical-align: bottom;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 92, ../src/scss/components/_products.scss */
.products-grid .product__price .price-box {
  margin-left: 0.40625em;
  line-height: 1;
}
/* line 97, ../src/scss/components/_products.scss */
.products-grid .product__price p:empty {
  display: none;
}

@media (min-width: 375px) {
  /* line 111, ../src/scss/components/_products.scss */
  .crosssell .products-grid .item,
  .block-related .products-grid .item,
  .category-products .products-grid .item {
    width: 50%;
  }
}
@media (min-width: 600px) {
  /* line 123, ../src/scss/components/_products.scss */
  .crosssell .products-grid .item,
  .block-related .products-grid .item,
  .category-products .products-grid .item {
    width: 33%;
  }
}
@media (min-width: 975px) {
  /* line 132, ../src/scss/components/_products.scss */
  .products-grid {
    margin-left: -52px;
    margin-left: -3.25rem;
  }
  /* line 135, ../src/scss/components/_products.scss */
  .products-grid .item {
    padding-left: 52px;
    padding-left: 3.25rem;
  }
  /* line 139, ../src/scss/components/_products.scss */
  .products-grid .product__name {
    font-size: 19.2px;
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  /* line 144, ../src/scss/components/_products.scss */
  .products-grid .product__actions {
    float: left;
  }
  /* line 148, ../src/scss/components/_products.scss */
  .products-grid .product__price {
    float: left;
  }
  /* line 152, ../src/scss/components/_products.scss */
  .products-grid .product__read-more {
    margin-top: 27px;
    margin-top: 1.6875rem;
    display: inline-block;
    float: right;
    text-decoration: none;
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
    line-height: 1;
  }
  /* line 160, ../src/scss/components/_products.scss */
  .products-grid .product__read-more:after {
    display: block;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-color: #000;
    border-width: 0.3125em 0 0.3125em 0.375em;
    display: inline-block;
    content: "";
  }
  /* line 167, ../src/scss/components/_products.scss */
  .products-grid .product__read-more:hover::after {
    display: block;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-color: #6ba124;
    border-width: 0.3125em 0 0.3125em 0.375em;
    display: inline-block;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* line 13, ../src/scss/components/_spinner.scss */
.spinner, .loading-ajax:before, .onestepcheckout-place-order-loading:before {
  width: 2.5em;
  height: 2.5em;
  display: inline-block;
  vertical-align: top;
  background: url(../images/spinner.gif);
}
/* line 20, ../src/scss/components/_spinner.scss */
.cssanimations .spinner, .cssanimations .loading-ajax:before, .cssanimations .onestepcheckout-place-order-loading:before {
  border-radius: 50%;
  animation: spin 1s linear infinite;
  background: none;
  border: 0.125em solid #6ba124;
  border-right-color: transparent;
}

/**
 * [1] Initial size of most icons. Override this per icon.
 */
/* line 5, ../src/scss/components/_sprite.scss */
.sprite, .footer__contact .icon span, .cms-home .intro .help .arrow {
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  zoom: 1;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  width: 16px;
  height: 16px;
  overflow: hidden;
}

/**
 * Icons
 **/
/* line 5, ../src/scss/components/_sprite-icons.scss */
.sprite--dorel-division {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -525px -119px;
  width: 264px;
  height: 29px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 5, ../src/scss/components/_sprite-icons.scss */
  .sprite--dorel-division {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1049px -238px;
    width: 528px;
    height: 58px;
    background-position: -525px -119px;
    height: 29px;
    width: 264px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--dorel-division {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -525px -119px;
  width: 264px;
  height: 29px;
}

/* line 7, ../src/scss/components/_sprite-icons.scss */
.sprite--magnifier {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -363px -272px;
  width: 20px;
  height: 20px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 7, ../src/scss/components/_sprite-icons.scss */
  .sprite--magnifier {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -726px -543px;
    width: 40px;
    height: 40px;
    background-position: -363px -272px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--magnifier {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -363px -272px;
  width: 20px;
  height: 20px;
}

/* line 8, ../src/scss/components/_sprite-icons.scss */
.sprite--magnifier:hover {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -342px -293px;
  width: 20px;
  height: 20px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 8, ../src/scss/components/_sprite-icons.scss */
  .sprite--magnifier:hover {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -684px -585px;
    width: 40px;
    height: 40px;
    background-position: -342px -293px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--magnifier:hover {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -342px -293px;
  width: 20px;
  height: 20px;
}

/* line 10, ../src/scss/components/_sprite-icons.scss */
.sprite--bin {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -853px -35px;
  width: 20px;
  height: 20px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 10, ../src/scss/components/_sprite-icons.scss */
  .sprite--bin {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1705px -70px;
    width: 40px;
    height: 40px;
    background-position: -853px -35px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--bin {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -853px -35px;
  width: 20px;
  height: 20px;
}

/* line 11, ../src/scss/components/_sprite-icons.scss */
.sprite--bin:hover {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -832px -56px;
  width: 20px;
  height: 20px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 11, ../src/scss/components/_sprite-icons.scss */
  .sprite--bin:hover {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1663px -112px;
    width: 40px;
    height: 40px;
    background-position: -832px -56px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--bin:hover {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -832px -56px;
  width: 20px;
  height: 20px;
}

/* line 13, ../src/scss/components/_sprite-icons.scss */
.sprite--truck {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -41px -512px;
  width: 42px;
  height: 28px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 13, ../src/scss/components/_sprite-icons.scss */
  .sprite--truck {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -82px -1022px;
    width: 84px;
    height: 55px;
    background-position: -41px -512px;
    height: 28px;
    width: 42px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--truck {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -41px -512px;
  width: 42px;
  height: 28px;
}

/* line 14, ../src/scss/components/_sprite-icons.scss */
.sprite--time-day {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -84px -473px;
  width: 42px;
  height: 38px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 14, ../src/scss/components/_sprite-icons.scss */
  .sprite--time-day {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -168px -945px;
    width: 84px;
    height: 75px;
    background-position: -84px -473px;
    height: 38px;
    width: 42px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--time-day {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -84px -473px;
  width: 42px;
  height: 38px;
}

/* line 15, ../src/scss/components/_sprite-icons.scss */
.sprite--screen-maintenance {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -220px -395px;
  width: 42px;
  height: 35px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 15, ../src/scss/components/_sprite-icons.scss */
  .sprite--screen-maintenance {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -440px -789px;
    width: 84px;
    height: 70px;
    background-position: -220px -395px;
    height: 35px;
    width: 42px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--screen-maintenance {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -220px -395px;
  width: 42px;
  height: 35px;
}

/* line 17, ../src/scss/components/_sprite-icons.scss */
.sprite--hamburger {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -450px -185px;
  width: 34px;
  height: 20px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 17, ../src/scss/components/_sprite-icons.scss */
  .sprite--hamburger {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -900px -370px;
    width: 67px;
    height: 39px;
    background-position: -450px -185px;
    height: 20px;
    width: 34px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--hamburger {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -450px -185px;
  width: 34px;
  height: 20px;
}

/* line 19, ../src/scss/components/_sprite-icons.scss */
.sprite--paypal {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -280px -335px;
  width: 40px;
  height: 40px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 19, ../src/scss/components/_sprite-icons.scss */
  .sprite--paypal {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -560px -669px;
    width: 80px;
    height: 80px;
    background-position: -280px -335px;
    height: 40px;
    width: 40px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--paypal {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -280px -335px;
  width: 40px;
  height: 40px;
}

/* line 20, ../src/scss/components/_sprite-icons.scss */
.sprite--visa-mastercard {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: 0px -541px;
  width: 40px;
  height: 40px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 20, ../src/scss/components/_sprite-icons.scss */
  .sprite--visa-mastercard {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: 0px -1079px;
    width: 80px;
    height: 80px;
    background-position: 0px -541px;
    height: 40px;
    width: 40px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--visa-mastercard {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: 0px -541px;
  width: 40px;
  height: 40px;
}

/* line 21, ../src/scss/components/_sprite-icons.scss */
.sprite--ideal {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -384px -231px;
  width: 40px;
  height: 40px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 21, ../src/scss/components/_sprite-icons.scss */
  .sprite--ideal {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -768px -461px;
    width: 80px;
    height: 80px;
    background-position: -384px -231px;
    height: 40px;
    width: 40px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--ideal {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -384px -231px;
  width: 40px;
  height: 40px;
}

@font-face {
  font-family: 'quinnyicons';
  src: url("../fonts/quinnyicons.eot?cejw64");
  src: url("../fonts/quinnyicons.eot?#iefixcejw64") format("embedded-opentype"), url("../fonts/quinnyicons.woff?cejw64") format("woff"), url("../fonts/quinnyicons.ttf?cejw64") format("truetype"), url("../fonts/quinnyicons.svg?cejw64#quinnyicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 12, ../src/scss/components/_font-icons.scss */
.button:after, .btn-cart:after,
.btn-checkout:after, .cms-home .intro a:after, .minicart__detail .link-to-cart:after, .mfp-arrow:after, .jqTransformSelectWrapper a.jqTransformSelectOpen:after, [class^="icon-"], [class*=" icon-"] {
  font-family: 'quinnyicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 24, ../src/scss/components/_font-icons.scss */
.icon-l:before {
  content: "\51";
}

/* line 27, ../src/scss/components/_font-icons.scss */
.icon-a-b:before {
  content: "\2192";
}

/* line 30, ../src/scss/components/_font-icons.scss */
.icon-a-b2:before {
  content: "\e602";
}

/* line 33, ../src/scss/components/_font-icons.scss */
.icon-a-back:before {
  content: "\e603";
}

/* line 36, ../src/scss/components/_font-icons.scss */
.icon-a-f:before {
  content: "\e604";
}

/* line 39, ../src/scss/components/_font-icons.scss */
.icon-ar-round:before {
  content: "\e605";
}

/* line 42, ../src/scss/components/_font-icons.scss */
.icon-ar-rot-left:before {
  content: "\e606";
}

/* line 45, ../src/scss/components/_font-icons.scss */
.icon-a-rot-r:before {
  content: "\e607";
}

/* line 48, ../src/scss/components/_font-icons.scss */
.icon-check:before {
  content: "\e608";
}

/* line 51, ../src/scss/components/_font-icons.scss */
.icon-share:before {
  content: "\e609";
}

/* line 54, ../src/scss/components/_font-icons.scss */
.icon-plus:before {
  content: "\e60a";
}

/* line 57, ../src/scss/components/_font-icons.scss */
.icon-close:before {
  content: "\e60b";
}

/* line 60, ../src/scss/components/_font-icons.scss */
.icon-heart:before {
  content: "\e60c";
}

/* line 63, ../src/scss/components/_font-icons.scss */
.icon-cart:before {
  content: "\e60d";
}

/* line 66, ../src/scss/components/_font-icons.scss */
.icon-phone:before {
  content: "\e60e";
}

/* line 69, ../src/scss/components/_font-icons.scss */
.icon-mail:before {
  content: "\e60f";
}

/* line 72, ../src/scss/components/_font-icons.scss */
.icon-fb:before {
  content: "\66";
}

/* line 75, ../src/scss/components/_font-icons.scss */
.icon-tw:before {
  content: "\74";
}

/* line 78, ../src/scss/components/_font-icons.scss */
.icon-yt:before {
  content: "\79";
}

/* line 81, ../src/scss/components/_font-icons.scss */
.icon-pin:before {
  content: "\70";
}

/* line 84, ../src/scss/components/_font-icons.scss */
.icon-li:before {
  content: "\6c";
}

/* line 87, ../src/scss/components/_font-icons.scss */
.icon-inst:before {
  content: "\69";
}

/* line 4, ../src/scss/components/_toolbar.scss */
.toolbar .custom-select select, .pager .custom-select select {
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  font-size: 13.33333px;
  font-size: 0.83333rem;
}
/* line 10, ../src/scss/components/_toolbar.scss */
.toolbar .custom-select:after, .pager .custom-select:after {
  font-size: 11.11111px;
  font-size: 0.69444rem;
}

/* line 16, ../src/scss/components/_toolbar.scss */
.toolbar__pages {
  text-align: center;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 20, ../src/scss/components/_toolbar.scss */
.toolbar__pages .pages, .toolbar__pages ol, .toolbar__pages li {
  display: inline-block;
}
/* line 24, ../src/scss/components/_toolbar.scss */
.toolbar__pages strong {
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 32, ../src/scss/components/_toolbar.scss */
.toolbar__pages li {
  vertical-align: middle;
  line-height: 1;
}
/* line 36, ../src/scss/components/_toolbar.scss */
.toolbar__pages li span, .toolbar__pages li a {
  text-decoration: none;
  display: block;
  padding: 0.1875em 0.375em;
}
/* line 41, ../src/scss/components/_toolbar.scss */
.no-touch .toolbar__pages li span, .no-touch .toolbar__pages li a {
  padding: 0.1875em;
}
/* line 47, ../src/scss/components/_toolbar.scss */
.toolbar__pages .current {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 51, ../src/scss/components/_toolbar.scss */
.toolbar__pages .previous, .toolbar__pages .next {
  line-height: 0;
}
/* line 56, ../src/scss/components/_toolbar.scss */
.toolbar__pages .previous::after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-color: #000;
  border-width: 5px 6px 5px 0;
  content: "";
}
/* line 61, ../src/scss/components/_toolbar.scss */
.toolbar__pages .next::after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-color: #000;
  border-width: 5px 0 5px 6px;
  content: "";
}

/* line 80, ../src/scss/components/_toolbar.scss */
.pager .limiter label, .pager .limiter select, .pager .limiter span {
  display: inline-block;
  vertical-align: middle;
}
/* line 90, ../src/scss/components/_toolbar.scss */
.pager .pages, .pager .amount, .pager .limiter {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  margin-bottom: 0.8125em;
  vertical-align: middle;
}

@media (min-width: 600px) {
  /* line 100, ../src/scss/components/_toolbar.scss */
  .pager .pages, .pager .amount, .pager .limiter {
    width: 33%;
    margin-bottom: 0;
  }
  /* line 105, ../src/scss/components/_toolbar.scss */
  .pager .pages {
    text-align: center;
  }
  /* line 109, ../src/scss/components/_toolbar.scss */
  .pager .limiter {
    float: right;
  }
}
/* line 1, ../src/scss/components/_border.scss */
.footer__usp:after, .product-view .product__short-description:before, .product-view .product__availability:before, .product-view .additional-info__title:after {
  position: absolute;
  display: block;
  background: #000;
}

/* line 7, ../src/scss/components/_border.scss */
.product-view .product__short-description:before {
  left: 26px;
  left: 1.625rem;
  right: 0;
  top: 0;
  height: 1px;
}

/* line 14, ../src/scss/components/_border.scss */
.footer__usp:after, .product-view .product__availability:before {
  left: 26px;
  left: 1.625rem;
  right: 0;
  bottom: 0;
  height: 1px;
}

/* line 28, ../src/scss/components/_border.scss */
.product-view .additional-info__title:after {
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
}

/* line 1, ../src/scss/components/_spacer.scss */
.spacer {
  margin: 26px 0;
  margin: 1.625rem 0;
  position: relative;
  text-align: center;
}
/* line 6, ../src/scss/components/_spacer.scss */
.spacer a {
  width: 31px;
  width: 1.9375rem;
  height: 31px;
  height: 1.9375rem;
  position: relative;
  display: inline-block;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 10;
  content: "";
}
/* line 16, ../src/scss/components/_spacer.scss */
.spacer a:before {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top-color: #999;
  border-width: 7px 6px 0 6px;
  margin: 12px 0 0 8px;
  margin: 0.75rem 0 0 0.5rem;
  position: absolute;
  content: "";
}
/* line 24, ../src/scss/components/_spacer.scss */
.spacer a:hover {
  background: #6ba124;
}
/* line 27, ../src/scss/components/_spacer.scss */
.spacer a:hover:before {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top-color: #fff;
  border-width: 7px 6px 0 6px;
  content: "";
}
/* line 33, ../src/scss/components/_spacer.scss */
.spacer:before {
  left: -13px;
  left: -0.8125rem;
  right: -13px;
  right: -0.8125rem;
  display: block;
  position: absolute;
  top: 0.8125em;
  background: #ccc;
  height: 1px;
  content: "";
}

@media (min-width: 600px) {
  /* line 48, ../src/scss/components/_spacer.scss */
  .spacer:before {
    left: -26px;
    left: -1.625rem;
    right: -26px;
    right: -1.625rem;
  }
}
@media (min-width: 780px) {
  /* line 57, ../src/scss/components/_spacer.scss */
  .spacer:before {
    left: 0;
    right: 0;
  }
}
/* line 2, ../src/scss/components/_header-underlined.scss */
.header-underlined, .related-products h2 {
  text-align: center;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 6, ../src/scss/components/_header-underlined.scss */
.header-underlined span, .related-products h2 span {
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  display: inline-block;
  border-bottom: 1px solid #000;
}

@media (min-width: 600px) {
  /* line 15, ../src/scss/components/_header-underlined.scss */
  .header-underlined, .related-products h2 {
    /* Don't break the header on larger screens */
  }
  /* line 17, ../src/scss/components/_header-underlined.scss */
  .header-underlined br, .related-products h2 br {
    display: none;
  }
}
/* line 1, ../src/scss/components/_col.scss */
.col2-set {
  margin-left: -52px;
  margin-left: -3.25rem;
}
/* line 5, ../src/scss/components/_col.scss */
.col2-set .col-1,
.col2-set .col-2 {
  padding-left: 52px;
  padding-left: 3.25rem;
}
/* line 11, ../src/scss/components/_col.scss */
.col2-set .col-2 {
  margin-top: 3.25em;
}

@media (min-width: 675px) {
  /* line 18, ../src/scss/components/_col.scss */
  .col2-set .col-1,
  .col2-set .col-2 {
    width: 50%;
  }
  /* line 23, ../src/scss/components/_col.scss */
  .col2-set .col-2 {
    margin-top: 0;
  }
}
/*
@import "components/modal";
@import "components/loz";
@import "components/tooltip";
@import "components/tabs";
@import "components/layered-nav";
@import "components/storefront";
@import "components/carousel";
*/
/**
 * Layout
 * =======================================================================
 **/
/* line 1, ../src/scss/layout/_global.scss */
html {
  font: 16px/1.625 Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  overflow-y: scroll;
  min-height: 100%;
}

/* Move to normalize */
/* line 12, ../src/scss/layout/_global.scss */
::selection {
  background: #ccc;
  color: #fff;
  text-shadow: none;
}

/* line 18, ../src/scss/layout/_global.scss */
.main-container {
  padding: 13px;
  padding: 0.8125rem;
}

/**
 * Main is the container.
 **/
/**
 * Wrapper wraps the main content of the shop.
 **/
/**
 * Extend the default Magento columns to the grid.
 **/
/* line 44, ../src/scss/layout/_global.scss */
.col-main,
.col-left,
.col-right {
  min-height: 1px;
}

/* line 86, ../src/scss/layout/_global.scss */
.col-right {
  margin-top: 52px;
  margin-top: 3.25rem;
}

/* line 103, ../src/scss/layout/_global.scss */
.col-left:empty,
.col-right:empty,
.col-left:empty + .col-main {
  margin-top: 0;
}

@media (min-width: 600px) {
  /* line 110, ../src/scss/layout/_global.scss */
  .main-container {
    padding: 26px;
    padding: 1.625rem;
  }
}
/*@import "layout/print";*/
/**
 * Icons and text-links have very specific top/bottom padding. The height of the header is determined by the heigh of
 * the text-links and icons. Because text-links and the different icons (icon-font and sprite) have different height,
 * the also have different top/bottom padding. The total-height (incl. padding) has to be the same so that's why there is
 * a difference in padding between these elements.
 **/
/* line 8, ../src/scss/layout/_header.scss */
.header {
  padding-top: 6.5px;
  padding-top: 0.40625rem;
  position: relative;
  border-bottom: 1px solid #eeeef0;
  /* Set style for alle font-icons */
}
/* line 13, ../src/scss/layout/_header.scss */
.header a {
  text-decoration: none;
}
/* line 18, ../src/scss/layout/_header.scss */
.header [class^="icon-"], .header [class*=" icon-"] {
  font-size: 19px;
  font-size: 1.1875rem;
  vertical-align: middle;
  line-height: 1;
}
/* line 24, ../src/scss/layout/_header.scss */
.header button {
  vertical-align: middle;
}
/* line 28, ../src/scss/layout/_header.scss */
.header .header-icon {
  padding: 13px;
  padding: 0.8125rem;
  display: inline-block;
  position: relative;
  line-height: 1;
  outline: 0;
  /* Border-left */
}
/* line 36, ../src/scss/layout/_header.scss */
.header .header-icon:before {
  top: 6.5px;
  top: 0.40625rem;
  bottom: 6.5px;
  bottom: 0.40625rem;
  display: block;
  position: absolute;
  width: 1px;
  background: #eeeef0;
  content: "";
  left: 0;
}

/* Default align is to the right. Nav has float: left */
/* line 50, ../src/scss/layout/_header.scss */
.header__grid {
  text-align: right;
}

/**
 * [1] Don't know why but it needs zero line-height to prevent unwanted margin.
 **/
/* line 57, ../src/scss/layout/_header.scss */
.header__back-link {
  float: left;
  line-height: 0;
  margin-right: 0.8125em;
  /* Green arrow icon on hover */
}
/* line 62, ../src/scss/layout/_header.scss */
.header__back-link .header-icon {
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  /* Arrow icon */
}
/* line 67, ../src/scss/layout/_header.scss */
.header__back-link .header-icon:after {
  display: block;
  content: "";
}
/* line 74, ../src/scss/layout/_header.scss */
.header__back-link a:hover::after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-color: #6ba124;
  border-width: 5px 10px 5px 0;
}

/* line 79, ../src/scss/layout/_header.scss */
.header__logo {
  float: left;
  /* Hide the alt text */
  /* Size of the logo (is a icon-font) */
}
/* line 87, ../src/scss/layout/_header.scss */
.header__logo h1 {
  margin: 0;
  padding: 0;
}
/* line 92, ../src/scss/layout/_header.scss */
.header__logo a {
  display: inline-block;
}
/* line 97, ../src/scss/layout/_header.scss */
.header__logo .icon-l {
  font-size: 40px;
  font-size: 2.5rem;
}

/* line 103, ../src/scss/layout/_header.scss */
.header__nav-trigger {
  float: left;
  /* Different arrows based on current state of element */
}
/* line 106, ../src/scss/layout/_header.scss */
.header__nav-trigger .header-icon {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  /* Don't show border */
}
/* line 111, ../src/scss/layout/_header.scss */
.header__nav-trigger .header-icon:before {
  display: none;
}
/* line 115, ../src/scss/layout/_header.scss */
.header__nav-trigger .header-icon:after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top-color: #000;
  border-width: 10px 5px 0 5px;
  display: inline-block;
  content: "";
}
/* line 123, ../src/scss/layout/_header.scss */
.header__nav-trigger .header-icon:hover::after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top-color: #6ba124;
  border-width: 10px 5px 0 5px;
  display: inline-block;
}
/* line 127, ../src/scss/layout/_header.scss */
.header__nav-trigger .header-icon.skip-active::after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-color: #000;
  border-width: 0 5px 10px 5px;
  display: inline-block;
}
/* line 131, ../src/scss/layout/_header.scss */
.header__nav-trigger .header-icon.skip-active:hover::after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-color: #6ba124;
  border-width: 0 5px 10px 5px;
  display: inline-block;
}

/* line 137, ../src/scss/layout/_header.scss */
.header__nav {
  clear: left;
  width: 100%;
  text-align: left;
  /* Don't show nav when client has JS. Nav will be showed after click on menu-icon */
  /* State when clicked on menu icon */
}
/* line 143, ../src/scss/layout/_header.scss */
.js .header__nav {
  display: none;
}
/* line 148, ../src/scss/layout/_header.scss */
.header__nav.skip-active {
  display: block;
}

/* line 153, ../src/scss/layout/_header.scss */
.header__cart,
.header__search {
  float: right;
}

/* line 161, ../src/scss/layout/_header.scss */
.header__account-link .arrow,
.header__cart .arrow,
.header__search .arrow {
  display: none;
}
/* line 166, ../src/scss/layout/_header.scss */
.header__account-link .skip-active .arrow,
.header__cart .skip-active .arrow,
.header__search .skip-active .arrow {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -3px;
  z-index: 101;
  margin-left: -15px;
}
/* line 174, ../src/scss/layout/_header.scss */
.header__account-link .skip-active .arrow:before,
.header__cart .skip-active .arrow:before,
.header__search .skip-active .arrow:before {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-color: #ccc;
  border-width: 0 15px 20px 15px;
  display: block;
  position: absolute;
  z-index: 1;
  content: "";
}
/* line 182, ../src/scss/layout/_header.scss */
.header__account-link .skip-active .arrow:after,
.header__cart .skip-active .arrow:after,
.header__search .skip-active .arrow:after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-color: #fff;
  border-width: 0 15px 20px 15px;
  display: block;
  position: relative;
  margin-top: 2px;
  z-index: 2;
  content: "";
}

/* language flags in header */
/* only shown in .be store */
/* line 196, ../src/scss/layout/_header.scss */
.header__flags {
  margin-right: 12px;
}
/* line 198, ../src/scss/layout/_header.scss */
.header__flags .flags {
  margin-top: 8px;
}
/* line 200, ../src/scss/layout/_header.scss */
.header__flags .flags a {
  margin-left: 12px;
}

@media (min-width: 1025px) {
  /* line 206, ../src/scss/layout/_header.scss */
  .header__flags .flags {
    margin-top: 19px;
  }
}
/* Not visible on small. Fav and contact is visible on small in the expanded menu */
/* line 215, ../src/scss/layout/_header.scss */
.header__account-link,
.header__fav,
.header__contact-link {
  display: none;
}

/* line 221, ../src/scss/layout/_header.scss */
.header__contact-link {
  padding: 13px;
  padding: 0.8125rem;
}

@media (min-width: 1025px) {
  /* line 227, ../src/scss/layout/_header.scss */
  .header {
    padding: 0;
  }
  /* line 230, ../src/scss/layout/_header.scss */
  .header .header-icon {
    padding: 24px 13px;
    padding: 1.5rem 0.8125rem;
    /* Other position of border */
  }
  /* line 234, ../src/scss/layout/_header.scss */
  .header .header-icon:before {
    top: 13px;
    top: 0.8125rem;
    bottom: 13px;
    bottom: 0.8125rem;
  }

  /* line 241, ../src/scss/layout/_header.scss */
  .header__logo {
    /* Increase logo size */
  }
  /* line 242, ../src/scss/layout/_header.scss */
  .header__logo a {
    padding: 6.5px 13px;
    padding: 0.40625rem 0.8125rem;
  }
  /* line 247, ../src/scss/layout/_header.scss */
  .header__logo .icon-l {
    font-size: 50px;
    font-size: 3.125rem;
  }

  /* line 252, ../src/scss/layout/_header.scss */
  .header__nav {
    display: inline-block;
    clear: none;
    width: auto;
    float: left;
  }
  /* line 258, ../src/scss/layout/_header.scss */
  .js .header__nav {
    display: inline-block;
  }

  /* Not visible on large */
  /* line 264, ../src/scss/layout/_header.scss */
  .header__back-link,
  .header__nav-trigger {
    display: none;
  }

  /* Visible on large */
  /* line 270, ../src/scss/layout/_header.scss */
  .header__fav,
  .header__contact-link {
    display: inline-block;
  }

  /* line 275, ../src/scss/layout/_header.scss */
  .header__fav {
    float: right;
  }

  /* line 279, ../src/scss/layout/_header.scss */
  .header__account-link,
  .header__contact-link {
    display: inline-block;
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
    padding: 0;
    float: right;
  }
  /* line 286, ../src/scss/layout/_header.scss */
  .header__account-link a,
  .header__contact-link a {
    padding: 26px 13px;
    padding: 1.625rem 0.8125rem;
    display: block;
    position: relative;
    background: none;
    border: 0;
    line-height: 1;
  }
  /* line 295, ../src/scss/layout/_header.scss */
  .header__account-link a:hover,
  .header__contact-link a:hover {
    color: #6ba124;
  }

  /* Border */
  /* line 302, ../src/scss/layout/_header.scss */
  .header__account-link:before {
    top: 13px;
    top: 0.8125rem;
    bottom: 13px;
    bottom: 0.8125rem;
    display: block;
    position: absolute;
    width: 1px;
    background: #eeeef0;
    content: "";
  }
}
/* header in form */
/* line 316, ../src/scss/layout/_header.scss */
.fieldset h2.legend {
  font-size: 19px;
}

/* line 1, ../src/scss/layout/_header.dropdown.scss */
.header__dropdown {
  padding: 13px;
  padding: 0.8125rem;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  text-align: left;
  background: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

/* line 14, ../src/scss/layout/_header.dropdown.scss */
.header__dropdown.skip-active {
  display: block;
}

@media (min-width: 1025px) {
  /* line 19, ../src/scss/layout/_header.dropdown.scss */
  .header__dropdown {
    border: 1px solid #ccc;
  }
}
/* line 1, ../src/scss/layout/_header.search.scss */
.search-mini {
  /**
   * [1] Overrule inline style.
   **/
}
/* line 3, ../src/scss/layout/_header.search.scss */
.search-mini .input-text {
  width: calc(100% - 8em);
}
/* line 7, ../src/scss/layout/_header.search.scss */
.search-mini .button, .search-mini .btn-cart,
.search-mini .btn-checkout, .search-mini .cms-home .intro a, .cms-home .intro .search-mini a {
  float: right;
}
/* line 10, ../src/scss/layout/_header.search.scss */
.search-mini .button:after, .search-mini .btn-cart:after,
.search-mini .btn-checkout:after, .search-mini .cms-home .intro a:after, .cms-home .intro .search-mini a:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -321px -314px;
  width: 20px;
  height: 20px;
  content: "";
  right: 0.5em;
  top: 0.6875em;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 10, ../src/scss/layout/_header.search.scss */
  .search-mini .button:after, .search-mini .btn-cart:after,
  .search-mini .btn-checkout:after, .search-mini .cms-home .intro a:after, .cms-home .intro .search-mini a:after {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -642px -627px;
    width: 40px;
    height: 40px;
    background-position: -321px -314px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .search-mini .button:after, .lt-ie9 .search-mini .btn-cart:after,
.lt-ie9 .search-mini .btn-checkout:after, .lt-ie9 .search-mini .cms-home .intro a:after, .cms-home .intro .lt-ie9 .search-mini a:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -321px -314px;
  width: 20px;
  height: 20px;
}
/* line 22, ../src/scss/layout/_header.search.scss */
.search-mini .search-autocomplete {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: auto !important;
  margin-top: 0.8125em;
}
/* line 30, ../src/scss/layout/_header.search.scss */
.search-mini .search-autocomplete li {
  padding: 6.5px;
  padding: 0.40625rem;
  display: relative;
  cursor: pointer;
  border-bottom: 1px solid #eeeef0;
  text-align: left;
}
/* line 38, ../src/scss/layout/_header.search.scss */
.search-mini .search-autocomplete .amount {
  right: 26px;
  right: 1.625rem;
  position: absolute;
}

@media (min-width: 1025px) {
  /* line 48, ../src/scss/layout/_header.search.scss */
  .header__search {
    position: relative;
  }

  /**
   * [1] Align right border with border of icon of trigger.
   **/
  /* line 55, ../src/scss/layout/_header.search.scss */
  .search-mini {
    left: auto;
    right: -1px;
    width: 25em;
  }
}
/* line 1, ../src/scss/layout/_header.minicart.scss */
.minicart__summary__info {
  position: relative;
}
/* line 4, ../src/scss/layout/_header.minicart.scss */
.minicart__summary__info .amount {
  display: none;
}
/* line 7, ../src/scss/layout/_header.minicart.scss */
.minicart--hasproducts .minicart__summary__info .amount {
  font-size: 7.71605px;
  font-size: 0.48225rem;
  padding: 4px 3px 0px 3px;
  padding: 0.25rem 0.1875rem 0px 0.1875rem;
  display: inline-block;
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 2.75em;
  min-height: 2.75em;
  background: #6ba124;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  border: 3px solid #fff;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}

/* line 27, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .title {
  font-size: 33.1776px;
  font-size: 2.0736rem;
  display: block;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 33, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .close {
  position: absolute;
  top: 1.625em;
  right: 0;
  padding-right: 0.8125em;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 40, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .close:after {
  content: "\0058";
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 46, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .link-to-cart {
  position: relative;
  padding-right: 0.8125em;
  text-decoration: underline;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 52, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .link-to-cart:after {
  font-size: 11.11111px;
  font-size: 0.69444rem;
  position: absolute;
  right: 0;
  top: 0.4375em;
  margin-left: 0.40625em;
  content: "\e604";
  text-decoration: none;
}
/* line 64, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .totals {
  margin-top: 13px;
  margin-top: 0.8125rem;
  padding-top: 13px;
  padding-top: 0.8125rem;
  border-top: 1px solid #eeeef0;
  border-bottom: 1px solid #eeeef0;
  line-height: 1;
}
/* line 73, ../src/scss/layout/_header.minicart.scss */
.minicart__detail #shopping-cart-totals-table td:last-child {
  padding-right: 0;
}
/* line 77, ../src/scss/layout/_header.minicart.scss */
.minicart__detail #shopping-cart-totals-table tr:last-child td:last-child {
  font-size: 16px;
  font-size: 1rem;
}
/* line 82, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .products {
  margin-top: 13px;
  margin-top: 0.8125rem;
  padding-top: 13px;
  padding-top: 0.8125rem;
  border-top: 1px solid #eeeef0;
}
/* line 98, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .product__image,
.minicart__detail .product__price {
  width: 20%;
}
/* line 103, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .product__name {
  width: 60%;
}
/* line 107, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .product__price {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  text-align: right;
}

/* line 113, ../src/scss/layout/_header.minicart.scss */
.minicart__actions {
  margin-top: 1.625em;
}
/* line 117, ../src/scss/layout/_header.minicart.scss */
.minicart__actions .button:after, .minicart__actions .btn-cart:after,
.minicart__actions .btn-checkout:after, .minicart__actions .cms-home .intro a:after, .cms-home .intro .minicart__actions a:after {
  font-size: 19.2px;
  font-size: 1.2rem;
  top: 0.75em;
  right: 0.375em;
  content: "\e60d";
}

@media (min-width: 1025px) {
  /* line 127, ../src/scss/layout/_header.minicart.scss */
  .minicart {
    position: relative;
  }

  /* line 133, ../src/scss/layout/_header.minicart.scss */
  .minicart__summary__info .amount {
    top: 0.8125em;
  }

  /**
   * [2] Align top border with header border-bottom.
   **/
  /* line 141, ../src/scss/layout/_header.minicart.scss */
  .minicart__detail {
    left: auto;
    width: 25em;
    margin-top: 1px;
  }
}
/* Parent nav element */
/* line 2, ../src/scss/layout/_header.navigation.scss */
.navigation {
  background: #fff;
  border-top: 1px solid #eeeef0;
}

/* <ul> which holds the <li> children */
/* line 8, ../src/scss/layout/_header.navigation.scss */
.navigation__list {
  /* @extend .clearfix; */
  font-size: 16px;
  font-size: 1rem;
  /* All top items */
  /* Top item which has children */
  /* Expanded parent item */
  /* 1st level sub items */
  /* 1st level sub items with expanded parent */
  /* Mobile only 1nd level sub items */
}
/* line 13, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.level0 > a {
  padding: 6.5px 13px;
  padding: 0.40625rem 0.8125rem;
  display: block;
  border-bottom: 1px solid #eeeef0;
  background: #fff;
  text-decoration: none;
  text-transform: none;
  color: #000;
}
/* line 22, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.level0 > a:hover, .navigation__list li.level0 > a:focus {
  color: #6ba124;
}
/* line 29, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.parent {
  position: relative;
  /* Show triangle to indicate there are children */
}
/* line 33, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.parent:after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-left-color: #000;
  border-width: 5px 0 5px 10px;
  right: 13px;
  right: 0.8125rem;
  top: 16px;
  top: 1rem;
  display: inline-block;
  position: absolute;
  content: "";
}
/* line 45, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.s-active:after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top-color: #000;
  border-width: 10px 5px 0 5px;
}
/* line 51, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.level0 ul.level0,
.navigation__list li.level0 ul.level1 {
  /* Hide when client has JS */
}
/* line 55, ../src/scss/layout/_header.navigation.scss */
.js .navigation__list li.level0 ul.level0, .js
.navigation__list li.level0 ul.level1 {
  display: none;
}
/* line 60, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.level0 ul.level0 li > a,
.navigation__list li.level0 ul.level1 li > a {
  padding: 6.5px 13px;
  padding: 0.40625rem 0.8125rem;
  padding-left: 39px;
  padding-left: 2.4375rem;
  display: block;
  background: #f3f3f5;
}
/* line 72, ../src/scss/layout/_header.navigation.scss */
.js .navigation__list li.level0.s-active ul.level0, .js
.navigation__list li.level0.s-active ul.level1 {
  display: block;
}

@media (min-width: 1025px) {
  /* Parent nav element */
  /* line 85, ../src/scss/layout/_header.navigation.scss */
  .navigation {
    font-size: 19.2px;
    font-size: 1.2rem;
    border-top: 0;
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  }

  /* <ul> which holds the <li> children */
  /* line 92, ../src/scss/layout/_header.navigation.scss */
  .navigation__list {
    /* Parent */
    /* All top items */
    /* Active page. Show border on bottom. */
    /* Don't show active arrows from mobile. */
    /* Top item mobile only */
    /* 1st level sub parent */
    /* 1st level sub items */
    /* 1st level sub items on hover */
  }
  /* line 95, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 {
    float: left;
  }
  /* line 100, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 > a {
    padding: 26px 6.5px;
    padding: 1.625rem 0.40625rem;
    position: relative;
    background: none;
    border: 0;
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
    line-height: 1;
  }
  /* line 108, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 > a:hover, .navigation__list li.level0 > a:focus {
    color: #6ba124;
  }
  /* line 116, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0.s-current > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    content: "";
    background: #000;
  }
  /* line 128, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.s-active,
  .navigation__list li.parent {
    position: static;
  }
  /* line 132, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.s-active:after,
  .navigation__list li.parent:after {
    display: none;
  }
  /* line 138, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.mobile-nav {
    display: none;
  }
  /* line 143, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0,
  .navigation__list li.level0 ul.level1 {
    position: absolute;
    z-index: 200;
    margin-top: -0.125em;
    border: 1px solid #eeeef0;
    border-top: 0;
    /* Hide when client has no S. Show on native CSS hover. */
    /* Black border at top. Don't use border because it's not rendered nice i.c.m. with 1px gray border on other sides. */
  }
  /* line 152, ../src/scss/layout/_header.navigation.scss */
  .no-js .navigation__list li.level0 ul.level0, .no-js
  .navigation__list li.level0 ul.level1 {
    display: none;
  }
  /* line 157, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0:before,
  .navigation__list li.level0 ul.level1:before {
    display: block;
    left: -1px;
    top: 0;
    right: -1px;
    height: 3px;
    background: #000;
    content: "";
  }
  /* line 168, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0:hover ul.level0,
  .navigation__list li.level0:hover ul.level1 {
    /* Show when client has JS. Show on mouse over. */
  }
  /* line 171, ../src/scss/layout/_header.navigation.scss */
  .no-js .navigation__list li.level0:hover ul.level0, .no-js
  .navigation__list li.level0:hover ul.level1 {
    display: block;
  }
  /* line 177, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li,
  .navigation__list li.level0 ul.level1 li {
    display: block;
    float: none;
  }
  /* line 182, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li a,
  .navigation__list li.level0 ul.level1 li a {
    padding: 13px;
    padding: 0.8125rem;
    background: #fff;
    line-height: 1;
  }
  /* line 190, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li > a:hover,
  .navigation__list li.level0 ul.level1 li > a:hover {
    color: #6ba124;
  }
  /* line 194, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li > a:hover:after,
  .navigation__list li.level0 ul.level1 li > a:hover:after {
    display: none;
  }
}
@media (min-width: 1199px) {
  /* line 204, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 > a,
  .navigation__list li.level0.s-active > a {
    padding-left: 13px;
    padding-left: 0.8125rem;
    padding-right: 13px;
    padding-right: 0.8125rem;
  }
}
@media (min-width: 1025px) {
  /* line 2, ../src/scss/layout/_header.account.scss */
  .header__account-link {
    position: relative;
  }

  /**
   * [1] Align right border with border of icon of trigger.
   **/
  /* line 9, ../src/scss/layout/_header.account.scss */
  .my-account-nav {
    left: auto;
    right: -1px;
    width: 12.5em;
  }
  /* line 14, ../src/scss/layout/_header.account.scss */
  .my-account-nav a {
    padding: 6.5px 0;
    padding: 0.40625rem 0;
  }
}
/* line 1, ../src/scss/layout/_footer.scss */
.footer {
  padding: 0 1.625em;
  margin-bottom: 1.625em;
  border-top: 1px solid #eeeef0;
}
/* line 6, ../src/scss/layout/_footer.scss */
.footer .title {
  font-size: 19.2px;
  font-size: 1.2rem;
  margin-bottom: .35em;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}

/* line 13, ../src/scss/layout/_footer.scss */
.footer__usp {
  position: relative;
  padding: 0.8125em 0 1.625em 0;
  margin-bottom: 0.8125em;
}
/* line 18, ../src/scss/layout/_footer.scss */
.footer__usp:after {
  left: -26px;
  left: -1.625rem;
  right: -26px;
  right: -1.625rem;
  background: #eeeef0;
  content: "";
}
/* line 35, ../src/scss/layout/_footer.scss */
.footer__usp .usp {
  padding: 13px 0;
  padding: 0.8125rem 0;
  position: relative;
  line-height: 1;
}
/* line 40, ../src/scss/layout/_footer.scss */
.footer__usp .usp:before {
  left: 60px;
  left: 3.75rem;
  display: block;
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #eeeef0;
  content: "";
}
/* line 51, ../src/scss/layout/_footer.scss */
.footer__usp .usp:after {
  display: none;
  left: auto;
}
/* line 56, ../src/scss/layout/_footer.scss */
.footer__usp .usp .sprite, .footer__usp .usp .footer__contact .icon span, .footer__contact .icon .footer__usp .usp span, .footer__usp .usp .cms-home .intro .help .arrow, .cms-home .intro .help .footer__usp .usp .arrow {
  margin-top: -12px;
  margin-top: -0.75rem;
  position: absolute;
  top: 50%;
}
/* line 62, ../src/scss/layout/_footer.scss */
.footer__usp .usp .text {
  display: inline-block;
  padding-left: 5em;
}
/* line 66, ../src/scss/layout/_footer.scss */
.footer__usp .usp .maintenance-belgium {
  background: url("../images/bedenktermijn.gif") 0 -3px no-repeat;
  height: 38px;
}

/* footer txt in service */
/* line 74, ../src/scss/layout/_footer.scss */
.footer__title .home-text {
  display: none;
}

/* line 75, ../src/scss/layout/_footer.scss */
.footer__title .main-text {
  display: block;
}

/* line 76, ../src/scss/layout/_footer.scss */
.cms-home .footer__title .main-text {
  display: none;
}

/* line 77, ../src/scss/layout/_footer.scss */
.cms-home .footer__title .home-text {
  display: block;
}

/* line 93, ../src/scss/layout/_footer.scss */
.footer__title {
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  padding-left: 48px;
  /* TEMP */
}
/* line 97, ../src/scss/layout/_footer.scss */
.footer__title .title {
  font-size: 33.1776px;
  font-size: 2.0736rem;
  display: inline-block;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  border-bottom: 1px solid #000;
}
/* line 105, ../src/scss/layout/_footer.scss */
.footer__title h2 {
  font-size: 44px;
  display: inline-block;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  border-bottom: 1px solid #000;
  margin-bottom: 13.824px;
  line-height: 82.754753112793px;
}
/* line 113, ../src/scss/layout/_footer.scss */
.footer__title h2.smaller {
  font-size: 36px;
}
/* line 117, ../src/scss/layout/_footer.scss */
.footer__title h3 {
  font-size: 16px;
  font-size: 1rem;
}
/* line 121, ../src/scss/layout/_footer.scss */
.footer__title p {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 2;
}

/* line 127, ../src/scss/layout/_footer.scss */
.footer__contact {
  font-size: 16px;
  font-size: 1rem;
}
/* line 130, ../src/scss/layout/_footer.scss */
.footer__contact li {
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
/* line 134, ../src/scss/layout/_footer.scss */
.footer__contact .icon {
  padding: 6px;
  padding: 0.375rem;
  margin-right: 6.5px;
  margin-right: 0.40625rem;
  display: inline-block;
  position: absolute;
  border: 1px solid #ccc;
  line-height: 1;
  vertical-align: top;
}
/* line 143, ../src/scss/layout/_footer.scss */
.footer__contact .icon span {
  display: inline-block;
}
/* line 149, ../src/scss/layout/_footer.scss */
.footer__contact .telephone .icon span {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -263px -376px;
  width: 16px;
  height: 18px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 149, ../src/scss/layout/_footer.scss */
  .footer__contact .telephone .icon span {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -526px -751px;
    width: 32px;
    height: 36px;
    background-position: -263px -376px;
    height: 18px;
    width: 16px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .footer__contact .telephone .icon span {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -263px -376px;
  width: 16px;
  height: 18px;
}
/* line 153, ../src/scss/layout/_footer.scss */
.footer__contact .contact .icon span {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -506px -149px;
  width: 18px;
  height: 14px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 153, ../src/scss/layout/_footer.scss */
  .footer__contact .contact .icon span {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1011px -298px;
    width: 36px;
    height: 28px;
    background-position: -506px -149px;
    height: 14px;
    width: 18px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .footer__contact .contact .icon span {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -506px -149px;
  width: 18px;
  height: 14px;
}
/* line 157, ../src/scss/layout/_footer.scss */
.footer__contact .text {
  padding-left: 45px;
  padding-left: 2.8125rem;
  display: block;
  margin: 0;
  line-height: 1.25;
}
/* line 164, ../src/scss/layout/_footer.scss */
.footer__contact .contact .text {
  padding-top: 0.3125em;
}

/* line 169, ../src/scss/layout/_footer.scss */
.footer__links {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  margin-top: 26px;
  margin-top: 1.625rem;
}
/* line 181, ../src/scss/layout/_footer.scss */
.footer__links a {
  display: inline-block;
  text-decoration: none;
  padding: 0.1875em 0;
}
/* line 187, ../src/scss/layout/_footer.scss */
.footer__links .trust-icons {
  margin-top: 26px;
  margin-top: 1.625rem;
  text-align: right;
}

/* line 193, ../src/scss/layout/_footer.scss */
.footer__social {
  margin-top: 26px;
  margin-top: 1.625rem;
  text-align: center;
}
/* line 197, ../src/scss/layout/_footer.scss */
.footer__social .social-icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2.375em;
  text-align: center;
}
/* line 204, ../src/scss/layout/_footer.scss */
.footer__social .social-icon [class^="icon-"], .footer__social .social-icon [class*=" icon-"] {
  font-size: 19.2px;
  display: inline-block;
  color: #fff;
}
/* line 211, ../src/scss/layout/_footer.scss */
.footer__social .arrow {
  display: inline-block;
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -127px -431px;
  width: 92px;
  height: 41px;
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 211, ../src/scss/layout/_footer.scss */
  .footer__social .arrow {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -254px -861px;
    width: 184px;
    height: 82px;
    background-position: -127px -431px;
    height: 41px;
    width: 92px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .footer__social .arrow {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -127px -431px;
  width: 92px;
  height: 41px;
}

/* line 223, ../src/scss/layout/_footer.scss */
.footer__social .social-icons {
  display: block;
  float: right;
}
/* line 226, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .arrow {
  font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
  font-size: 15px;
  background: url("../images/home-sprite.gif") 82.55649px -285px no-repeat;
  height: 47.77574px;
  padding-left: 39.81312px;
  float: left;
  min-width: 140px;
  margin-right: 12px;
  text-align: left;
}
/* line 236, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .arrow span {
  text-indent: 0;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
/* line 243, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .icon-fb {
  background: url("../images/home-sprite.gif") -14px -205px no-repeat;
  display: inline-block;
  width: 30px;
  height: 40px;
  text-indent: -1000%;
  white-space: nowrap;
  overflow: hidden;
}
/* line 251, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .icon-fb:before {
  content: '';
}
/* line 252, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .icon-fb a {
  text-indent: -1000%;
  display: block;
  white-space: nowrap;
  color: transparent;
  font-size: 1px;
  line-height: 0;
  width: 30px;
  height: 40px;
}
/* line 263, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .icon-yt {
  background: url("../images/home-sprite.gif") -14px -246px no-repeat;
  display: inline-block;
  width: 30px;
  height: 40px;
  text-indent: -1000%;
  white-space: nowrap;
  overflow: hidden;
}
/* line 271, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .icon-yt:before {
  content: '';
}
/* line 272, ../src/scss/layout/_footer.scss */
.footer__social .social-icons .icon-yt a {
  text-indent: -1000%;
  display: block;
  white-space: nowrap;
  color: transparent;
  font-size: 1px;
  line-height: 0;
  width: 30px;
  height: 40px;
}

/**
 * [1] To position the border.
 **/
/* line 289, ../src/scss/layout/_footer.scss */
.footer__copyright {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  margin-top: 26px;
  margin-top: 1.625rem;
  position: relative;
  text-align: center;
}
/* line 295, ../src/scss/layout/_footer.scss */
.footer__copyright:before {
  left: -13px;
  left: -0.8125rem;
  right: -26px;
  right: -1.625rem;
  top: -13px;
  top: -0.8125rem;
  display: block;
  position: absolute;
  height: 1px;
  background: #eeeef0;
  content: "";
}
/* line 306, ../src/scss/layout/_footer.scss */
.footer__copyright .links, .footer__copyright .copyright {
  display: inline-block;
}
/* line 311, ../src/scss/layout/_footer.scss */
.footer__copyright .links a {
  text-decoration: none;
}
/* line 314, ../src/scss/layout/_footer.scss */
.footer__copyright .links a:after {
  margin-left: 0.40625em;
  content: "\007C";
}
/* line 321, ../src/scss/layout/_footer.scss */
.footer__copyright .sprite, .footer__copyright .footer__contact .icon span, .footer__contact .icon .footer__copyright span, .footer__copyright .cms-home .intro .help .arrow, .cms-home .intro .help .footer__copyright .arrow {
  margin-top: 0.8125em;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 375px) {
  /* line 330, ../src/scss/layout/_footer.scss */
  .footer__links .left, .footer__links .right {
    width: 50%;
  }
}
@media (min-width: 600px) {
  /**
   * [1] To position the border of the copyright element.
   **/
  /* line 341, ../src/scss/layout/_footer.scss */
  .footer {
    position: relative;
  }

  /* line 345, ../src/scss/layout/_footer.scss */
  .footer__usp {
    padding-top: 26px;
    padding-top: 1.625rem;
    padding-bottom: 26px;
    padding-bottom: 1.625rem;
    position: relative;
  }
  /* line 350, ../src/scss/layout/_footer.scss */
  .footer__usp li {
    width: 33.33333%;
  }
  /* line 354, ../src/scss/layout/_footer.scss */
  .footer__usp .usp {
    font-size: 16px;
    font-size: 1rem;
    position: static;
    min-height: 7.91667em;
    border-left: 1px solid #eeeef0;
    text-align: center;
  }
  /* line 361, ../src/scss/layout/_footer.scss */
  .footer__usp .usp:before {
    display: none;
  }
  /* line 365, ../src/scss/layout/_footer.scss */
  .footer__usp .usp .sprite, .footer__usp .usp .footer__contact .icon span, .footer__contact .icon .footer__usp .usp span, .footer__usp .usp .cms-home .intro .help .arrow, .cms-home .intro .help .footer__usp .usp .arrow {
    position: static;
    top: auto;
    margin: 0;
  }
  /* line 371, ../src/scss/layout/_footer.scss */
  .footer__usp .usp .text {
    margin-top: 13px;
    margin-top: 0.8125rem;
    font-size: 19.2px;
    font-size: 1.2rem;
    display: block;
    padding: 0 1.625em;
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
    line-height: 1.25;
  }
  /* line 381, ../src/scss/layout/_footer.scss */
  .footer__usp li:last-child {
    border-right: 1px solid #eeeef0;
  }

  /* line 386, ../src/scss/layout/_footer.scss */
  .footer__title,
  .footer__contact,
  .footer__links {
    width: 50%;
  }

  /* line 392, ../src/scss/layout/_footer.scss */
  .footer__copyright,
  .footer__social {
    width: 50%;
  }

  /* line 397, ../src/scss/layout/_footer.scss */
  .footer__contact {
    margin-top: 80px;
    margin-top: 5rem;
  }

  /**
   * [1] Position border relative to .footer.
   **/
  /* line 404, ../src/scss/layout/_footer.scss */
  .footer__copyright {
    position: static;
    clear: left;
    text-align: left;
  }
  /* line 409, ../src/scss/layout/_footer.scss */
  .footer__copyright:before {
    margin-top: -13px;
    margin-top: -0.8125rem;
    top: auto;
    left: 0;
    right: 0;
  }

  /* line 417, ../src/scss/layout/_footer.scss */
  .footer__social {
    text-align: right;
  }

  /* line 422, ../src/scss/layout/_footer.scss */
  .footer__links .trust-icons {
    margin-top: 3.25em;
  }
}
@media (min-width: 975px) {
  /* line 431, ../src/scss/layout/_footer.scss */
  .footer__title,
  .footer__contact,
  .footer__links {
    width: 33.33333%;
  }

  /* line 438, ../src/scss/layout/_footer.scss */
  .footer__usp .usp {
    min-height: 6.45833em;
  }

  /* line 443, ../src/scss/layout/_footer.scss */
  .footer__contact,
  .footer__links {
    margin-top: 80px;
    margin-top: 5rem;
  }
}
/**
 * Sections
 * =======================================================================
 **/
/* line 2, ../src/scss/section/_cart.scss */
.checkout-cart h1 {
  text-align: center;
}

/* line 7, ../src/scss/section/_cart.scss */
.cart-table {
  border-bottom: 1px solid #eeeef0;
}
/* line 10, ../src/scss/section/_cart.scss */
.cart-table tbody {
  position: relative;
}
/* line 14, ../src/scss/section/_cart.scss */
.cart-table h2 {
  font-size: 19.2px;
  font-size: 1.2rem;
  margin: 0;
}
/* line 18, ../src/scss/section/_cart.scss */
.cart-table h2 a {
  text-decoration: none;
}
/* line 23, ../src/scss/section/_cart.scss */
.cart-table .remove {
  position: absolute;
  display: inline-block;
  margin: 0;
  right: 0;
  width: auto;
}
/* line 35, ../src/scss/section/_cart.scss */
.cart-table .product__info {
  padding-bottom: 0.8125em;
  margin-bottom: 0.8125em;
}
/* line 40, ../src/scss/section/_cart.scss */
.cart-table .product__image {
  text-align: center;
}
/* line 44, ../src/scss/section/_cart.scss */
.cart-table .product__actions {
  margin-top: 0.8125em;
}
/* line 48, ../src/scss/section/_cart.scss */
.cart-table .product__subscription-info {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  margin-top: 0.8125em;
  line-height: 1.25;
}
/* line 54, ../src/scss/section/_cart.scss */
.cart-table .product__unit-price,
.cart-table .product__qty,
.cart-table .product__subtotal {
  line-height: 2;
}
/* line 60, ../src/scss/section/_cart.scss */
.cart-table .qty {
  padding-top: 6.5px;
  padding-top: 0.40625rem;
  padding-bottom: 6.5px;
  padding-bottom: 0.40625rem;
  max-width: 5em;
  text-align: center;
}
/* line 68, ../src/scss/section/_cart.scss */
.cart-table tbody tr {
  /*@extend .clearfix;*/
}
/* line 72, ../src/scss/section/_cart.scss */
.cart-table tbody td[data-cell-label]:not([data-cell-label=""]) {
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}
/* line 75, ../src/scss/section/_cart.scss */
.cart-table tbody td[data-cell-label]:not([data-cell-label=""]):before {
  min-width: 6.25em;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-weight: 300;
}
/* line 84, ../src/scss/section/_cart.scss */
.cart-table tfoot tr {
  border: 0;
}
/* line 88, ../src/scss/section/_cart.scss */
.cart-table tfoot td, .cart-table tfoot td:first-child {
  text-align: right;
}

/* line 94, ../src/scss/section/_cart.scss */
.cart__coupon,
.cart__totals {
  border-bottom: 1px solid #eeeef0;
  padding-bottom: 1.625em;
  margin-bottom: 1.625em;
}

/* line 101, ../src/scss/section/_cart.scss */
.checkout-types {
  text-align: right;
}

/* line 105, ../src/scss/section/_cart.scss */
.checkout-types--top {
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  border-bottom: 1px solid #eeeef0;
}

/* line 111, ../src/scss/section/_cart.scss */
#shopping-cart-totals-table tfoot tr:last-child td:last-child {
  font-size: 23.04px;
}

@media (min-width: 375px) {
  /* line 127, ../src/scss/section/_cart.scss */
  .cart-table {
    /* Make sure doesn't conflict with bin icon */
  }
  /* line 130, ../src/scss/section/_cart.scss */
  .cart-table tbody .col-image {
    width: 33.33333%;
    float: left;
    min-height: 12.5em;
  }
  /* line 136, ../src/scss/section/_cart.scss */
  .cart-table tbody .col-product {
    width: 66.66667%;
    float: right;
  }
  /* line 141, ../src/scss/section/_cart.scss */
  .cart-table tbody td[data-cell-label]:not([data-cell-label=""]) {
    width: 66.66667%;
    float: right;
  }
  /* line 145, ../src/scss/section/_cart.scss */
  .cart-table tbody td[data-cell-label]:not([data-cell-label=""]):before {
    min-width: 0;
  }
  /* line 152, ../src/scss/section/_cart.scss */
  .cart-table .product__name {
    padding-right: 1.625em;
  }
}
@media (min-width: 600px) {
  /* line 161, ../src/scss/section/_cart.scss */
  .checkout-cart-additional .btn-continue {
    float: left;
  }
}
@media (min-width: 675px) {
  /* line 173, ../src/scss/section/_cart.scss */
  .cart-table .remove {
    position: static;
    display: table-cell;
    margin: 0;
    right: auto;
  }
  /* line 179, ../src/scss/section/_cart.scss */
  .cart-table .remove .sprite, .cart-table .remove .footer__contact .icon span, .footer__contact .icon .cart-table .remove span, .cart-table .remove .cms-home .intro .help .arrow, .cms-home .intro .help .cart-table .remove .arrow {
    margin-top: 2.1875em;
  }
  /* line 184, ../src/scss/section/_cart.scss */
  .cart-table tbody {
    /* Clear the clearfix =) */
  }
  /* line 185, ../src/scss/section/_cart.scss */
  .cart-table tbody .col-image,
  .cart-table tbody .col-product,
  .cart-table tbody .col-price {
    width: auto;
    float: none;
    clear: none;
  }
  /* line 194, ../src/scss/section/_cart.scss */
  .cart-table tbody tr:before,
  .cart-table tbody tr:after {
    display: none;
  }
  /* line 199, ../src/scss/section/_cart.scss */
  .cart-table tbody td[data-cell-label]:not([data-cell-label=""]) {
    margin: 0;
    width: auto;
    float: none;
  }
  /* line 206, ../src/scss/section/_cart.scss */
  .cart-table .product__name {
    padding-right: 0;
  }

  /* line 211, ../src/scss/section/_cart.scss */
  .checkout-types--top {
    display: none;
  }

  /* line 215, ../src/scss/section/_cart.scss */
  .checkout-types--bottom {
    padding-top: 26px;
    padding-top: 1.625rem;
    border-top: 1px solid #eeeef0;
  }

  /* line 220, ../src/scss/section/_cart.scss */
  .cart__collaterals {
    margin-top: 26px;
    margin-top: 1.625rem;
    margin-bottom: 26px;
    margin-bottom: 1.625rem;
  }

  /* line 225, ../src/scss/section/_cart.scss */
  .cart__coupon,
  .cart__totals {
    border: 0;
    margin: 0;
    padding-bottom: 0;
  }

  /* line 232, ../src/scss/section/_cart.scss */
  .cart__coupon {
    width: 50%;
  }

  /* line 236, ../src/scss/section/_cart.scss */
  .cart__totals {
    width: 50%;
    float: right;
  }
}
@media (min-width: 975px) {
  /* line 244, ../src/scss/section/_cart.scss */
  .cart__coupon {
    width: 33.33333%;
  }
}
/* line 249, ../src/scss/section/_cart.scss */
.tab-pane.your-selection {
  min-width: 300px;
  position: absolute;
  z-index: 1000;
}
/* line 253, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes {
  font-size: 12px;
  padding: 0px 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  display: none;
}
/* line 259, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .table-grid {
  display: table;
  width: 100%;
}
/* line 264, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr .title {
  padding: 5px 0px;
}
/* line 267, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr ul {
  overflow: hidden;
}
/* line 269, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr ul li {
  clear: both;
}
/* line 271, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr ul li .cell {
  display: table-cell;
  vertical-align: middle;
}
/* line 274, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr ul li .cell .name {
  display: inline-block;
  margin-left: 10px;
}
/* line 278, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr ul li .cell .pull-right {
  float: right !important;
}
/* line 282, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr ul li .cell-max-45 {
  width: 45px;
}
/* line 285, ../src/scss/section/_cart.scss */
.tab-pane.your-selection .product-tab-boxes .tab-box.customisation-attr ul li .cell-8 {
  display: table-cell;
  width: 66.66667%;
  vertical-align: middle;
}

/* line 5, ../src/scss/section/_category-view.scss */
.vertical-nav {
  margin-bottom: 1.625em;
}

/* line 9, ../src/scss/section/_category-view.scss */
.vertical-nav__item {
  margin-bottom: 1.625em;
}
/* line 12, ../src/scss/section/_category-view.scss */
.vertical-nav__item .custom-select, .vertical-nav__item select {
  width: 100%;
}

/* line 17, ../src/scss/section/_category-view.scss */
.category-products {
  /*
   * [1] Show at lap-up. Cat image is lazy loading.
   */
}
/* line 19, ../src/scss/section/_category-view.scss */
.category-products .category {
  position: relative;
  border: 1px solid #eeeef0;
  text-align: center;
}
/* line 25, ../src/scss/section/_category-view.scss */
.category-products .category__image {
  padding: 0.8125em;
  max-width: 80%;
}
/* line 30, ../src/scss/section/_category-view.scss */
.category-products .category__name {
  font-size: 19.2px;
  font-size: 1.2rem;
  bottom: 26px;
  bottom: 1.625rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
}
/* line 42, ../src/scss/section/_category-view.scss */
.category-products .item--category {
  display: none;
}

@media (min-width: 600px) {
  /* line 50, ../src/scss/section/_category-view.scss */
  .vertical-nav__item {
    width: 50%;
    margin-bottom: 0;
  }

  /* line 56, ../src/scss/section/_category-view.scss */
  .category-products .item--category {
    display: block;
  }
}
@media (min-width: 675px) {
  /* line 65, ../src/scss/section/_category-view.scss */
  .vertical-nav__item {
    width: 33%;
  }
}
@media (min-width: 975px) {
  /* line 72, ../src/scss/section/_category-view.scss */
  .vertical-nav {
    margin-left: -52px;
    margin-left: -3.25rem;
  }

  /* line 76, ../src/scss/section/_category-view.scss */
  .vertical-nav__item {
    padding-left: 52px;
    padding-left: 3.25rem;
  }
}
/* line 1, ../src/scss/section/_frontpage.scss */
.cms-home {
  /* Remove background when the storeview is belgian (be_nl or be_fr) */
}
/* line 3, ../src/scss/section/_frontpage.scss */
.cms-home .main-container {
  background: none;
}
/* line 10, ../src/scss/section/_frontpage.scss */
.cms-home[class*="default"] .main-container, .cms-home[class*="repair"] .main-container {
  background: url(../images/background-intro-3.jpg) no-repeat 50% 0;
  background-size: cover;
}
/* line 17, ../src/scss/section/_frontpage.scss */
.cms-home .content {
  /*@extend .clearfix;*/
}
/* line 21, ../src/scss/section/_frontpage.scss */
.cms-home .intro {
  padding: .7em 0;
  /*
   * [1] Show at desk.
   */
}
/* line 24, ../src/scss/section/_frontpage.scss */
.cms-home .intro h2 {
  font-size: 39.81312px;
  font-size: 2.48832rem;
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
  line-height: 1;
}
/* line 30, ../src/scss/section/_frontpage.scss */
.cms-home .intro .light {
  font-size: 23.04px;
  font-size: 1.44rem;
  line-height: normal;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  margin-bottom: .5em;
}
/* line 37, ../src/scss/section/_frontpage.scss */
.cms-home .intro .padded {
  padding-top: 1.45em;
}
/* line 41, ../src/scss/section/_frontpage.scss */
.cms-home .intro a {
  width: 14.62674em;
  max-width: 100%;
  text-align: left;
}
/* line 48, ../src/scss/section/_frontpage.scss */
.cms-home .intro a:after {
  right: 1.4375em;
  top: 1.25em;
  content: "\e604";
}
/* line 59, ../src/scss/section/_frontpage.scss */
.cms-home .intro .help {
  display: none;
}
/* line 67, ../src/scss/section/_frontpage.scss */
.cms-home .intro .tv-wrapper {
  float: right;
  width: 174px;
  height: 157px;
  margin: 16px;
  background: url(../images/tv-home-3.png) no-repeat 0 0;
  background-size: cover;
}

@media (min-width: 780px) {
  /* line 86, ../src/scss/section/_frontpage.scss */
  .cms-home .main-container {
    background-size: cover;
    background-position: center;
  }
  /* line 91, ../src/scss/section/_frontpage.scss */
  .cms-home .intro {
    position: relative;
    padding: 2.875em 0 12em 0;
  }
  /* line 95, ../src/scss/section/_frontpage.scss */
  .cms-home .intro h2 {
    font-size: 47.77574px;
    font-size: 2.98598rem;
    margin-bottom: 34px;
    margin-bottom: 2.125rem;
  }
  /* line 100, ../src/scss/section/_frontpage.scss */
  .cms-home .intro .light {
    font-size: 33.1776px;
    font-size: 2.0736rem;
    line-height: 32px;
    line-height: 2rem;
    margin-bottom: .72em;
  }
  /* line 106, ../src/scss/section/_frontpage.scss */
  .cms-home .intro .portal {
    padding-left: 10.1875em;
  }
  /* line 110, ../src/scss/section/_frontpage.scss */
  .cms-home .intro a {
    position: relative;
    z-index: 2;
    min-width: 14.62674em;
    width: auto;
  }
  /* line 117, ../src/scss/section/_frontpage.scss */
  .cms-home .intro .help {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 31.25em;
    margin-top: 1.625em;
    font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
    text-align: center;
    line-height: 1.25;
  }
  /* line 127, ../src/scss/section/_frontpage.scss */
  .cms-home .intro .help .arrow {
    background-image: url(../images/png-sprite-icons-1x.png);
    background-position: -874px 0px;
    width: 39px;
    height: 34px;
  }
}
@media (min-width: 780px) and (min-resolution: 1.5dppx), (min-width: 780px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 780px) and (min--moz-device-pixel-ratio: 1.5), (min-width: 780px) and (min-resolution: 144dpi) {
  /* line 127, ../src/scss/section/_frontpage.scss */
  .cms-home .intro .help .arrow {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1747px 0px;
    width: 78px;
    height: 68px;
    background-position: -874px 0px;
    height: 34px;
    width: 39px;
    background-size: 913px 581px;
  }
}
@media (min-width: 780px) {
  /* line 20, ../src/scss/globals/mixins/_sprite.scss */
  .lt-ie9 .cms-home .intro .help .arrow {
    background-image: url(../images/png-sprite-icons-1x.png);
    background-position: -874px 0px;
    width: 39px;
    height: 34px;
  }
  /* line 132, ../src/scss/section/_frontpage.scss */
  .cms-home .intro .tv-wrapper {
    position: absolute;
    z-index: 1;
    top: 23.4375em;
    right: 2.4375em;
    width: 297px;
    height: 271px;
  }
}
/* line 3, ../src/scss/section/_product-view.scss */
.product-view .product__info {
  margin-top: 1.625em;
}
/* line 7, ../src/scss/section/_product-view.scss */
.product-view .product__name {
  text-align: center;
}
/* line 10, ../src/scss/section/_product-view.scss */
.product-view .product__name h1 {
  font-size: 27.648px;
  font-size: 1.728rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}
/* line 16, ../src/scss/section/_product-view.scss */
.product-view .product__short-description {
  padding-top: 13px;
  padding-top: 0.8125rem;
  font-size: 19.2px;
  font-size: 1.2rem;
  position: relative;
  text-align: center;
  /* Border, can't use CSS border because element is a grid_item */
}
/* line 23, ../src/scss/section/_product-view.scss */
.product-view .product__short-description:before {
  content: "";
}
/* line 30, ../src/scss/section/_product-view.scss */
.product-view .product__availability {
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  font-size: 19.2px;
  font-size: 1.2rem;
  position: relative;
  text-align: center;
  /* Border, can't use CSS border because element is a grid_item */
}
/* line 38, ../src/scss/section/_product-view.scss */
.product-view .product__availability:before {
  content: "";
}
/* line 44, ../src/scss/section/_product-view.scss */
.product-view .product__availability p {
  margin: 0;
}
/* line 49, ../src/scss/section/_product-view.scss */
.product-view .product__price {
  font-size: 33.1776px;
  font-size: 2.0736rem;
  text-align: center;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 54, ../src/scss/section/_product-view.scss */
.product-view .product__price p:empty {
  display: none;
}
/* line 59, ../src/scss/section/_product-view.scss */
.product-view .product__add-to-box {
  /*@extend .clearfix;*/
  font-size: 19.2px;
  font-size: 1.2rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
/* line 64, ../src/scss/section/_product-view.scss */
.product-view .product__add-to-box label {
  margin-top: 7.5px;
  margin-top: 0.46875rem;
  float: left;
}
/* line 69, ../src/scss/section/_product-view.scss */
.product-view .product__add-to-box .qty {
  font-size: 19.2px;
  font-size: 1.2rem;
  max-width: 3.75em;
  padding-top: .4em;
  padding-bottom: .4em;
  text-align: center;
  clear: left;
  float: left;
}
/* line 79, ../src/scss/section/_product-view.scss */
.product-view .product__add-to-box .button, .product-view .product__add-to-box .btn-cart,
.product-view .product__add-to-box .btn-checkout, .product-view .product__add-to-box .cms-home .intro a, .cms-home .intro .product-view .product__add-to-box a {
  float: right;
  margin-top: -0.25em;
}
/* line 86, ../src/scss/section/_product-view.scss */
.product-view .product-collateral .data {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 95, ../src/scss/section/_product-view.scss */
.product-view .additional-info__title {
  display: none;
  /* Have to extend outside of mq. Only visible at desk */
}
/* line 99, ../src/scss/section/_product-view.scss */
.product-view .additional-info__title:after {
  content: "";
}

@media (min-width: 600px) {
  /* line 110, ../src/scss/section/_product-view.scss */
  .product-view .product__images {
    width: 50%;
  }
  /* line 113, ../src/scss/section/_product-view.scss */
  .product-view .product__images li {
    float: left;
  }
  /* line 117, ../src/scss/section/_product-view.scss */
  .product-view .product__name,
  .product-view .product__short-description,
  .product-view .product__availability,
  .product-view .product__price,
  .product-view .product__add-to-box {
    width: 50%;
    float: right;
    clear: right;
  }
  /* line 127, ../src/scss/section/_product-view.scss */
  .product-view .product__price {
    margin-bottom: 26px;
    margin-bottom: 1.625rem;
  }
  /* line 131, ../src/scss/section/_product-view.scss */
  .product-view .product-collateral {
    width: 100%;
    clear: left;
  }
}
@media (min-width: 975px) {
  /* line 143, ../src/scss/section/_product-view.scss */
  .product-view .product__name h1 {
    font-size: 33.1776px;
    font-size: 2.0736rem;
  }
  /* line 149, ../src/scss/section/_product-view.scss */
  .product-view .product__add-to-box .qty {
    margin-left: 13px;
    margin-left: 0.8125rem;
    max-width: 5.625em;
    clear: none;
  }
  /* line 155, ../src/scss/section/_product-view.scss */
  .product-view .product__add-to-box .button, .product-view .product__add-to-box .btn-cart,
  .product-view .product__add-to-box .btn-checkout, .product-view .product__add-to-box .cms-home .intro a, .cms-home .intro .product-view .product__add-to-box a {
    margin-top: 0;
  }
  /* line 160, ../src/scss/section/_product-view.scss */
  .product-view .additional-info__title {
    width: 33.33333%;
    font-size: 27.648px;
    font-size: 1.728rem;
    position: relative;
    display: block;
  }
  /* line 166, ../src/scss/section/_product-view.scss */
  .product-view .additional-info__title:after {
    right: 52px;
    right: 3.25rem;
  }
  /* line 171, ../src/scss/section/_product-view.scss */
  .product-view .additional-info__table {
    width: 66.66667%;
  }
}
/* line 8, ../src/scss/section/_product-view.images.scss */
.imagebox__large-image a {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

@media (min-width: 375px) {
  /* line 21, ../src/scss/section/_product-view.images.scss */
  .imagebox__large-image {
    width: 75%;
  }

  /* line 25, ../src/scss/section/_product-view.images.scss */
  .imagebox__thumbnails {
    width: 25%;
  }
}
@media (min-width: 600px) {
  /* line 31, ../src/scss/section/_product-view.images.scss */
  .imagebox__large-image {
    width: 100%;
  }

  /* line 35, ../src/scss/section/_product-view.images.scss */
  .imagebox__thumbnails {
    width: 100%;
  }
}
@media (min-width: 975px) {
  /* line 41, ../src/scss/section/_product-view.images.scss */
  .imagebox__large-image {
    width: 75%;
    float: right;
  }

  /* line 46, ../src/scss/section/_product-view.images.scss */
  .imagebox__thumbnails {
    width: 25%;
    float: left;
  }
}
/* line 2, ../src/scss/section/_product-view.related.scss */
.related-products h2 {
  font-size: 23.04px;
  font-size: 1.44rem;
  margin-bottom: 52px;
  margin-bottom: 3.25rem;
}

/* line 3, ../src/scss/section/_customer.scss */
.account-login .forgot-password-link {
  margin-bottom: 1.625em;
}

/* make header same as repair: */
/* line 10, ../src/scss/section/_customer.scss */
.customer-account-login .account-login .page-title h1 {
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  font-size: 45px;
  border-bottom: 1px solid #000;
  line-height: 82.55649px;
  display: inline-block;
  margin-top: 16px;
  max-width: 800px;
}

/* Account create */
/* line 3, ../src/scss/section/_myaccount.scss */
.account-create h1 {
  font-size: 45px;
}

/* DASHBOARD */
/* line 10, ../src/scss/section/_myaccount.scss */
#my-orders-table {
  margin-bottom: 1.625em;
}

/* line 14, ../src/scss/section/_myaccount.scss */
.addresses-list,
.box-account {
  margin-top: 1.625em;
}

/* line 20, ../src/scss/section/_myaccount.scss */
.my-account .pager {
  margin: 0.8125em 0;
}
/* line 24, ../src/scss/section/_myaccount.scss */
.my-account .box {
  margin-bottom: 1.625em;
}
/* line 28, ../src/scss/section/_myaccount.scss */
.my-account .page-title, .my-account .box-head, .my-account .box-title {
  margin-bottom: 1.625em;
}
/* line 34, ../src/scss/section/_myaccount.scss */
.my-account .box-content a,
.my-account .addresses-list .item a {
  display: inline-block;
  margin-top: 0.8125em;
}
/* line 40, ../src/scss/section/_myaccount.scss */
.my-account .addresses-list .item {
  margin-bottom: 1.625em;
}
/* line 43, ../src/scss/section/_myaccount.scss */
.my-account .addresses-list .item:last-child {
  margin-bottom: 0;
}

/* line 50, ../src/scss/section/_myaccount.scss */
.block-account-nav {
  display: inline-block;
  padding: 0.8125em;
  border: 1px solid #eeeef0;
}
/* line 55, ../src/scss/section/_myaccount.scss */
.block-account-nav button, .block-account-nav strong {
  vertical-align: middle;
}
/* line 63, ../src/scss/section/_myaccount.scss */
.block-account-nav .block-content {
  margin-top: 0.8125em;
}

/* ORDER DETAIL */
/* line 76, ../src/scss/section/_myaccount.scss */
.order-info dt {
  margin-bottom: 0.8125em;
  font-weight: 700;
}

/* line 82, ../src/scss/section/_myaccount.scss */
.order-date {
  margin-bottom: 1.625em;
  font-weight: 700;
}

/* line 88, ../src/scss/section/_myaccount.scss */
.order-info-box .col-2 {
  margin-top: 0;
}

/* line 12, ../src/scss/section/_models.scss */
.list-models .model {
  display: block;
  margin-bottom: 3.25em;
  text-decoration: none;
  text-align: center;
}
/* line 19, ../src/scss/section/_models.scss */
.list-models .model__image {
  display: block;
}
/* line 23, ../src/scss/section/_models.scss */
.list-models .model__title {
  margin-top: 13px;
  margin-top: 0.8125rem;
  font-size: 19.2px;
  font-size: 1.2rem;
  display: block;
}

/* line 32, ../src/scss/section/_models.scss */
.list-models__header {
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}
/* line 35, ../src/scss/section/_models.scss */
.list-models__header h1 {
  margin: 0;
}
/* line 39, ../src/scss/section/_models.scss */
.list-models__header h2 {
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  display: block;
  border-bottom: 1px solid #000;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 48, ../src/scss/section/_models.scss */
.list-models__header .custom-select {
  margin: 0 26px 26px 0;
  margin: 0 1.625rem 1.625rem 0;
  display: inline-block;
  max-width: 21.875em;
  width: 100%;
  vertical-align: middle;
}
/* line 56, ../src/scss/section/_models.scss */
.list-models__header .title {
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  font-size: 19.2px;
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 255px) {
  /* line 67, ../src/scss/section/_models.scss */
  .list-models .models__item {
    width: 50%;
  }
}
@media (min-width: 600px) {
  /* line 79, ../src/scss/section/_models.scss */
  .list-models .models__item {
    width: 33.33333%;
  }
}
@media (min-width: 975px) {
  /* line 91, ../src/scss/section/_models.scss */
  .list-models .models__item {
    width: 25%;
  }
}
/*
@import "section/checkout";
@import "section/product-related";
@import "section/product-reviews";
*/
/**
 * Vendor
 * =======================================================================
 * Styling for 3rd party extensions. Usually CSS code written by the 3rd party.
 **/
/**
 * Blocks general
 **/
/* line 5, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-threecolumns {
  margin-top: 1.625em;
}

/* line 14, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-title,
.onestepcheckout-description {
  text-align: center;
}

/* line 19, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-description {
  font-size: 19.2px;
  font-size: 1.2rem;
  margin-bottom: 3.25em;
}

/* line 25, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-login-link .button-minor {
  white-space: normal;
}

/* line 30, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-index-index .shipping-address-title,
.onestepcheckout-numbers {
  font-size: 27.648px;
  font-size: 1.728rem;
  position: relative;
}

/* line 36, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-numbers {
  padding-bottom: 0.40625em;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 40, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-numbers .title {
  display: inline-block;
  border-bottom: 1px solid #000;
}
/* line 45, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-numbers .number {
  display: inline-block;
  position: absolute;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  vertical-align: top;
}
/* line 52, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-numbers .text {
  padding-left: 26px;
  padding-left: 1.625rem;
  display: inline-block;
  vertical-align: top;
}

/* line 59, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-index-index select, .onestepcheckout-index-index .custom-select {
  width: 100%;
}

/*** prefixes and names ***/
/* line 67, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .fields .input-prefix,
#shipping_address_list .fields .input-prefix {
  width: 40%;
  display: inline-block;
}
/* line 70, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .fields .input-prefix .jqtransform,
#shipping_address_list .fields .input-prefix .jqtransform {
  margin-top: 0.40625em;
}
/* line 72, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .fields .input-firstname,
#shipping_address_list .fields .input-firstname {
  width: 60%;
  display: inline-block;
}

/*** billing and shipping fields ***/
/* line 81, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .fields .input-email,
#shipping_address_list .fields .input-email {
  width: 100%;
}
/* line 82, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .fields .input-telephone,
#shipping_address_list .fields .input-telephone {
  width: 100%;
}
/* line 84, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .field--wide--1,
#billing_address_list .field--wide--2,
#billing_address_list .field--wide--3,
#shipping_address_list .field--wide--1,
#shipping_address_list .field--wide--2,
#shipping_address_list .field--wide--3 {
  padding-left: 26px;
  margin-bottom: 0.8125em;
}
/* line 87, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .field--wide--2,
#shipping_address_list .field--wide--2 {
  width: 70%;
  display: inline-block;
}
/* line 91, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .field--wide--3,
#shipping_address_list .field--wide--3 {
  width: 30%;
  display: inline-block;
}
/* line 94, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .field--wide--3 label,
#shipping_address_list .field--wide--3 label {
  margin-left: -10px;
}

/* checkbox create account */
/* line 101, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .create_account-checkbox input {
  height: auto;
}

/**
 * Popup
 **/
/* line 111, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup {
  padding: 0 0.8125em;
  width: 100%;
}
/* line 115, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .close {
  position: absolute;
  top: 0.8125em;
  right: 1.625em;
}
/* line 120, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .close .icon {
  width: 20px;
  height: 20px;
}
/* line 125, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .close a {
  text-decoration: none;
}
/* line 129, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .close a:hover {
  color: #000;
}
/* line 134, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .input-text {
  width: 100%;
}

/* line 139, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-popup-wrapper {
  padding: 0.8125em;
  background: #fff;
}

/* line 144, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-error {
  margin-bottom: 1.625em;
}

/* line 148, ../src/scss/vendors/_onestepcheckout.scss */
#control_overlay {
  background: #000;
}

/**
 * Summary
 **/
/* line 159, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-place-order-wrapper .button:after, .onestepcheckout-place-order-wrapper .btn-cart:after,
.onestepcheckout-place-order-wrapper .btn-checkout:after, .onestepcheckout-place-order-wrapper .cms-home .intro a:after, .cms-home .intro .onestepcheckout-place-order-wrapper a:after {
  top: 16px;
  top: 1rem;
  right: 21px;
  right: 1.3125rem;
}

/* line 165, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary {
  border-bottom: 1px solid #eeeef0;
}
/* line 168, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th {
  border-bottom: 1px solid #eeeef0;
}
/* line 172, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th, table.onestepcheckout-summary td {
  text-align: center;
}
/* line 176, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th:first-child,
table.onestepcheckout-summary td:first-child {
  text-align: left;
}
/* line 181, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary td:first-child {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 185, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th:last-child,
table.onestepcheckout-summary td:last-child {
  text-align: right;
}

/* line 191, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals {
  margin: 1.625em 0;
}
/* line 194, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals th, table.onestepcheckout-totals td {
  text-align: right;
  padding-top: 7px;
  padding-bottom: 7px;
}
/* line 201, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td:first-child:after {
  content: "\003A";
}
/* line 206, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td:last-child {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-weight: 700;
}
/* line 211, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td.title {
  width: 60%;
}
/* line 215, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td.value {
  width: 40%;
}
/* line 220, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals tr:last-child td {
  font-weight: 700;
}
/* line 224, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals tr:last-child td:last-child {
  font-size: 23.04px;
}

/* line 231, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-place-order-wrapper {
  padding-top: 1.625em;
  margin-top: 1.625em;
  border-top: 1px solid #eeeef0;
}

/* line 237, ../src/scss/vendors/_onestepcheckout.scss */
.loading-ajax {
  margin: 26px;
  margin: 1.625rem;
  display: block;
  text-align: center;
}
/* line 242, ../src/scss/vendors/_onestepcheckout.scss */
.loading-ajax:before {
  display: inline-block;
  content: "";
}

/* line 249, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-place-order-loading {
  margin-top: 1.625em;
  text-align: center;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 254, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-place-order-loading:before {
  display: inline-block;
  content: "";
}
/* line 260, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-place-order-loading .text {
  display: block;
  margin-top: 0.8125em;
  text-align: left;
}

/**
 * Error
 **/
/* line 272, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error {
  display: block;
  position: relative;
  padding: 0.8125em;
  padding-left: 70px;
  background: #d45151;
  color: #fff;
}
/* line 280, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error a {
  color: #fff;
}
/* line 284, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  content: "";
  background: #c23030;
}
/* line 294, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -790px -98px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -10px;
  content: "";
}
@media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 294, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-error:after {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -1579px -196px;
    width: 40px;
    height: 40px;
    background-position: -790px -98px;
    height: 20px;
    width: 20px;
    background-size: 913px 581px;
  }
}
/* line 20, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .onestepcheckout-error:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -790px -98px;
  width: 20px;
  height: 20px;
}

/**
 * Payment
 **/
/* line 308, ../src/scss/vendors/_onestepcheckout.scss */
.payment-methods .form-list {
  padding: 13px;
  padding: 0.8125rem;
  margin: 13px 0;
  margin: 0.8125rem 0;
  border: 1px solid #eeeef0;
  background: #fefefe;
}

/* line 315, ../src/scss/vendors/_onestepcheckout.scss */
#container_payment_method_bankpayment {
  font-size: 13.33333px;
  font-size: 0.83333rem;
}

/* @include breakpoint($m-3) {
    .onestepcheckout-index-index {

        .form-list > li .field,
        .form-list .wide .field {
            @include width(1);
        }
    }
} */
@media (min-width: 975px) {
  /* line 333, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-column-left,
  .onestepcheckout-column-right,
  .onestepcheckout-column-middle {
    width: 33%;
  }

  /* line 339, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-threecolumns {
    margin-left: -3.25em;
  }

  /* line 343, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-column {
    padding-left: 3.25em;
  }

  /* line 349, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-shipping-method,
  .onestepcheckout-index-index .block-account {
    padding-bottom: 1.625em;
    margin-bottom: 1.625em;
    border-bottom: 1px solid #eeeef0;
  }
  /* line 356, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index #shipping_address {
    padding-top: 1.625em;
    margin-top: 1.625em;
    border-top: 1px solid #eeeef0;
  }
  /* line 362, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .spacer {
    display: none;
  }

  /* line 367, ../src/scss/vendors/_onestepcheckout.scss */
  #onestepcheckout-login-popup {
    width: auto;
  }
}
/**
 * customer address OSC (shipping and billing)
 **/
@media (min-width: 600px) {
  /* line 379, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-column-left .input-firstname {
    width: 60%;
  }
  /* line 380, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-column-left .input-middlename {
    width: 40%;
    clear: both;
  }
  /* line 381, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-column-left .input-lastname {
    width: 60%;
  }
}
/* line 1, ../src/scss/vendors/_magnific-popup.scss */
.mfp-close {
  font-size: 23.04px;
  font-size: 1.44rem;
  margin: 26px 0;
  margin: 1.625rem 0;
  float: right;
  color: #fff;
}

/* line 8, ../src/scss/vendors/_magnific-popup.scss */
.mfp-arrow {
  position: fixed;
  z-index: 1046;
  top: 50%;
  margin-top: -21px;
  padding: 0.8125em;
}
/* line 15, ../src/scss/vendors/_magnific-popup.scss */
.mfp-arrow:after {
  font-size: 27.648px;
  font-size: 1.728rem;
  display: inline-block;
  content: "";
}

/* line 23, ../src/scss/vendors/_magnific-popup.scss */
.mfp-arrow-left {
  left: 0.8125em;
}
/* line 26, ../src/scss/vendors/_magnific-popup.scss */
.mfp-arrow-left:after {
  content: "\e603";
  color: #fff;
}

/* line 32, ../src/scss/vendors/_magnific-popup.scss */
.mfp-arrow-right {
  right: 1.625em;
}
/* line 35, ../src/scss/vendors/_magnific-popup.scss */
.mfp-arrow-right:after {
  content: "\e604";
  color: #fff;
}

/* line 41, ../src/scss/vendors/_magnific-popup.scss */
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

/* Magnific Popup CSS */
/* line 51, ../src/scss/vendors/_magnific-popup.scss */
.mfp-bg {
  opacity: 0.8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
}

/* line 63, ../src/scss/vendors/_magnific-popup.scss */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

/* line 74, ../src/scss/vendors/_magnific-popup.scss */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 0.8125em;
}

/* line 84, ../src/scss/vendors/_magnific-popup.scss */
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 91, ../src/scss/vendors/_magnific-popup.scss */
.mfp-align-top .mfp-container:before {
  display: none;
}

/* line 95, ../src/scss/vendors/_magnific-popup.scss */
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

/* line 104, ../src/scss/vendors/_magnific-popup.scss */
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

/* line 109, ../src/scss/vendors/_magnific-popup.scss */
.mfp-ajax-cur {
  cursor: progress;
}

/* line 113, ../src/scss/vendors/_magnific-popup.scss */
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

/* line 120, ../src/scss/vendors/_magnific-popup.scss */
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

/* line 124, ../src/scss/vendors/_magnific-popup.scss */
.mfp-loading.mfp-figure {
  display: none;
}

/* line 128, ../src/scss/vendors/_magnific-popup.scss */
.mfp-hide {
  display: none !important;
}

/* line 132, ../src/scss/vendors/_magnific-popup.scss */
.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

/* line 144, ../src/scss/vendors/_magnific-popup.scss */
.mfp-preloader a {
  color: #cccccc;
}

/* line 148, ../src/scss/vendors/_magnific-popup.scss */
.mfp-preloader a:hover {
  color: #fff;
}

/* line 152, ../src/scss/vendors/_magnific-popup.scss */
.mfp-s-ready .mfp-preloader {
  display: none;
}

/* line 156, ../src/scss/vendors/_magnific-popup.scss */
.mfp-s-error .mfp-content {
  display: none;
}

/* line 161, ../src/scss/vendors/_magnific-popup.scss */
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 168, ../src/scss/vendors/_magnific-popup.scss */
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 173, ../src/scss/vendors/_magnific-popup.scss */
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

/* line 180, ../src/scss/vendors/_magnific-popup.scss */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

/* line 187, ../src/scss/vendors/_magnific-popup.scss */
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/* Main image in popup */
/* line 198, ../src/scss/vendors/_magnific-popup.scss */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  margin: 0 auto;
}

/* The shadow behind the image */
/* line 208, ../src/scss/vendors/_magnific-popup.scss */
.mfp-figure {
  /* @extend .clearfix; */
  margin-bottom: 52px;
  margin-bottom: 3.25rem;
  line-height: 0;
}

/* line 214, ../src/scss/vendors/_magnific-popup.scss */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
}

/* line 227, ../src/scss/vendors/_magnific-popup.scss */
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

/* line 234, ../src/scss/vendors/_magnific-popup.scss */
.mfp-figure figure {
  margin: 0;
}

/* line 238, ../src/scss/vendors/_magnific-popup.scss */
.mfp-bottom-bar {
  margin-top: -2em;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

/* line 247, ../src/scss/vendors/_magnific-popup.scss */
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

/* line 255, ../src/scss/vendors/_magnific-popup.scss */
.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* line 259, ../src/scss/vendors/_magnific-popup.scss */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* line 1, ../src/scss/vendors/_cookielaw.scss */
.cookienotice {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 0.8125em 0;
  background: #999;
  color: #fff;
}
/* line 10, ../src/scss/vendors/_cookielaw.scss */
.no-touch .cookienotice {
  position: fixed;
}
/* line 14, ../src/scss/vendors/_cookielaw.scss */
.cookienotice.top {
  top: 0;
}
/* line 18, ../src/scss/vendors/_cookielaw.scss */
.cookienotice.bottom {
  bottom: 0;
}
/* line 22, ../src/scss/vendors/_cookielaw.scss */
.cookienotice a, .cookienotice a:hover {
  color: #fff;
}

/* line 26, ../src/scss/vendors/_cookielaw.scss */
.cookienotice__content {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.625em;
}

/* line 32, ../src/scss/vendors/_cookielaw.scss */
.cookienotice__actions {
  margin-top: 0.8125em;
}

/* line 37, ../src/scss/vendors/_cookielaw.scss */
.cookienotice__url {
  display: block;
  text-align: center;
}

/* line 42, ../src/scss/vendors/_cookielaw.scss */
.cookienotice__button {
  display: block;
  margin-bottom: 0.8125em;
}
/* line 46, ../src/scss/vendors/_cookielaw.scss */
.cookienotice__button .button, .cookienotice__button .btn-cart,
.cookienotice__button .btn-checkout, .cookienotice__button .cms-home .intro a, .cms-home .intro .cookienotice__button a {
  width: 100%;
}

@media (min-width: 600px) {
  /* line 54, ../src/scss/vendors/_cookielaw.scss */
  .cookienotice__url {
    display: inline-block;
    padding-top: 0.8125em;
    margin-left: 1.625em;
    text-align: left;
  }

  /* line 61, ../src/scss/vendors/_cookielaw.scss */
  .cookienotice__button {
    display: inline-block;
    margin: 0;
  }
  /* line 65, ../src/scss/vendors/_cookielaw.scss */
  .cookienotice__button .button, .cookienotice__button .btn-cart,
  .cookienotice__button .btn-checkout, .cookienotice__button .cms-home .intro a, .cms-home .intro .cookienotice__button a {
    width: auto;
  }
}
/**
 * Hidden
 * =======================================================================
 * Used to hide the original form elements
 **/
/* line 7, ../src/scss/vendors/_jqtransform.scss */
.jqTransformHidden {
  display: none;
}

/**
 * Select
 * =======================================================================
 **/
/**
 * [1] Select element may not be larger then it's parent
 * [2] Override inline width set by JS.
 * [3] Override z-index set by JS.
 **/
/* line 22, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper {
  font-size: 16px;
  font-size: 1rem;
  z-index: auto !important;
  max-width: 100%;
  width: 100% !important;
  position: relative;
  height: 2.625em;
  /* The current option text */
  /* The arrow icon */
  /* The option list */
}
/* line 31, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper:hover div span {
  background: #000;
  color: #fff;
}
/* line 36, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper:hover a.jqTransformSelectOpen {
  background-color: #000;
  border-color: #fff;
}
/* line 41, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper:hover a.jqTransformSelectOpen::after {
  color: #fff;
}
/* line 47, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper div span {
  padding: 8px;
  padding: 0.5rem;
  padding-right: 52px;
  padding-right: 3.25rem;
  position: absolute;
  max-width: 100%;
  width: 100% !important;
  height: 2.625em;
  background-color: #eeeef0;
  border: 1px solid #ccc;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
/* line 64, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper a.jqTransformSelectOpen {
  display: block;
  position: absolute;
  right: 1px;
  top: 0.25em;
  height: 2.125em;
  width: 2.625em;
  border-left: 1px solid #ccc;
  background-color: #eeeef0;
  text-decoration: none;
}
/* line 75, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper a.jqTransformSelectOpen:after {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  position: absolute;
  z-index: 1;
  right: 0.675em;
  top: 50%;
  margin-top: -0.3em;
  content: "\2192";
}
/* line 88, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper ul {
  display: none;
  position: absolute;
  top: 2.625em;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 0;
  height: auto !important;
  min-height: 2.625em;
  max-height: 15.625em;
  width: 100% !important;
  max-width: 100% !important;
  list-style: none;
  background-color: #fff;
  border: solid 1px #eeeef0;
  border-top: 0;
  overflow: auto;
}
/* line 108, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper ul a {
  display: block;
  padding: 0.40625em;
  text-decoration: none;
  color: #000;
  background-color: #fff;
}
/* line 116, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper ul a.selected,
.jqTransformSelectWrapper ul a:hover {
  background: #6ba124;
  color: #fff;
}

/*
@import "vendors/amshopby";
*/
