@charset "UTF-8";
/**
 * =======================================================================
 * 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
 * ==========================================================================
 **/
/* 26px */
/* 13px */
/*  8.67px */
/*  7.5px */
/* 52px */
/* 1.714285 */
/**
 * Grid
 * ==========================================================================
 **/
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 **/
/**
 * Extend grid with minor breakpoints
 * Note: `$responsive` variable above must be set to true before enabling this.
 **/
/**
 * Inline-block grid
 **/
/**
 * 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.
 **/
/**
 * Colors
 * ==========================================================================
 **/
/**
 * Design colors
 **/
/**
 * Message colors
 **/
/**
 * Base colors
 **/
/**
 * Lines
 **/
/**
 * Transition speeds
 * ==========================================================================
 **/
/**
 * Clearfix
 * =======================================================================
 */
/**
 * REM
 * =======================================================================
 * Return REM with px fallback from given EM/REM value(s).
 * http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
 */
/**
 * Font size
 * =======================================================================
 */
/**
 * Grid setup
 * =======================================================================
 */
/**
 * Media Query
 * =======================================================================
 */
/**
 * Vendor
 * =======================================================================
 */
/**
 * Visibilty
 * =======================================================================
 */
/**
 * Gradient
 * =======================================================================
 */
/**
 * Triangle
 * =======================================================================
 * Borrowed from Sass Toolkit: https://github.com/Team-Sass/toolkit#triangles
 */
/**
 * 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.
 */
/*! 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: 13px;
}

/*------------------------------------*\
    $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;
}

/* 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;
  text-align: left;
}

/* line 11, ../src/scss/base/_tables.scss */
.table--text {
  max-width: 100%;
}
/* line 14, ../src/scss/base/_tables.scss */
.table--text th, .table--text td {
  padding: 0 6.5px 6.5px 6.5px;
  text-align: left;
  vertical-align: top;
}
/* line 18, ../src/scss/base/_tables.scss */
.table--text th:first-child, .table--text td:first-child {
  padding-left: 0;
}
/* line 21, ../src/scss/base/_tables.scss */
.table--text th:last-child, .table--text td:last-child {
  padding-right: 0;
}

/* line 27, ../src/scss/base/_tables.scss */
.icons-list {
  width: auto;
}
/* line 30, ../src/scss/base/_tables.scss */
.icons-list th, .icons-list td {
  display: inline-block;
  padding: 13px;
  vertical-align: middle;
  text-align: center;
}

/* line 40, ../src/scss/base/_tables.scss */
.icons-list--small th, .icons-list--small td {
  padding: 6.5px;
}

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

/* line 53, ../src/scss/base/_tables.scss */
.table--striped {
  width: auto;
}
/* line 56, ../src/scss/base/_tables.scss */
.table--striped th, .table--striped td {
  padding: 6.5px 13px;
}
/* line 60, ../src/scss/base/_tables.scss */
.table--striped th {
  background: #000;
  color: #fff;
}
/* line 65, ../src/scss/base/_tables.scss */
.table--striped tr:nth-child(odd) td {
  background: #dddddd;
}
/* line 69, ../src/scss/base/_tables.scss */
.table--striped tr:nth-child(even) td {
  background: #cccccc;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* The styling for this table is optimized for tables with content like products or order info */
@media only screen and (min-width: 641px) {
  /* line 125, ../src/scss/base/_tables.scss */
  .cart-table,
  .records-table {
    border: 0;
  }
}
/* line 135, ../src/scss/base/_tables.scss */
.cart-table th, .cart-table td,
.records-table th,
.records-table td {
  padding: 6.5px 0;
  text-align: left;
  vertical-align: top;
}
@media only screen and (min-width: 641px) {
  /* line 135, ../src/scss/base/_tables.scss */
  .cart-table th, .cart-table td,
  .records-table th,
  .records-table td {
    padding: 13px;
  }
}
/* line 142, ../src/scss/base/_tables.scss */
.cart-table th:first-child, .cart-table td:first-child,
.records-table th:first-child,
.records-table td:first-child {
  padding-left: 0;
}
@media only screen and (min-width: 641px) {
  /* line 142, ../src/scss/base/_tables.scss */
  .cart-table th:first-child, .cart-table td:first-child,
  .records-table th:first-child,
  .records-table td:first-child {
    padding-left: 0;
    text-align: left;
  }
}
/* line 149, ../src/scss/base/_tables.scss */
.cart-table th:last-child, .cart-table td:last-child,
.records-table th:last-child,
.records-table td:last-child {
  padding-right: 0;
}
@media only screen and (min-width: 641px) {
  /* line 149, ../src/scss/base/_tables.scss */
  .cart-table th:last-child, .cart-table td:last-child,
  .records-table th:last-child,
  .records-table td:last-child {
    padding-right: 0;
    text-align: left;
  }
}
@media only screen and (min-width: 641px) {
  /* line 156, ../src/scss/base/_tables.scss */
  .cart-table th.number, .cart-table td.number,
  .records-table th.number,
  .records-table td.number {
    text-align: right;
  }
}
/* line 166, ../src/scss/base/_tables.scss */
.cart-table thead td, .cart-table thead th,
.records-table thead td,
.records-table thead th {
  font-weight: 400;
}
/* line 171, ../src/scss/base/_tables.scss */
.cart-table tbody,
.records-table tbody {
  /* Show a label on palm. Uses value of data attribute
   * Only show the label when the attribute is set */
}
/* line 172, ../src/scss/base/_tables.scss */
.cart-table tbody td,
.records-table tbody td {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  display: inline-block;
  width: 100%;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  font-weight: 400;
}
@media only screen and (min-width: 641px) {
  /* line 172, ../src/scss/base/_tables.scss */
  .cart-table tbody td,
  .records-table tbody td {
    display: table-cell;
    width: auto;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.625;
  }
}
/* line 188, ../src/scss/base/_tables.scss */
.cart-table tbody td[data-cell-label]:not([data-cell-label=""]):before,
.records-table tbody td[data-cell-label]:not([data-cell-label=""]):before {
  display: inline-block;
  padding-right: 10px;
  content: attr(data-cell-label);
  font-weight: 700;
}
@media only screen and (min-width: 641px) {
  /* line 188, ../src/scss/base/_tables.scss */
  .cart-table tbody td[data-cell-label]:not([data-cell-label=""]):before,
  .records-table tbody td[data-cell-label]:not([data-cell-label=""]):before {
    display: none;
    content: "";
  }
}
/* line 201, ../src/scss/base/_tables.scss */
.cart-table tfoot,
.records-table tfoot {
  /**
   * [1] Footer has always bigger spacing then body td
   **/
}
/* line 205, ../src/scss/base/_tables.scss */
.cart-table tfoot td,
.records-table tfoot td {
  padding: 13px 0;
}
/* line 210, ../src/scss/base/_tables.scss */
.cart-table .separator,
.records-table .separator {
  display: none;
}

/* 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: 1024px;
  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: 26px;
}
/* line 23, ../src/scss/base/_messages.scss */
.messages > li li,
.std .messages > li li {
  margin-bottom: 13px;
}
/* line 27, ../src/scss/base/_messages.scss */
.messages > li span,
.std .messages > li span {
  display: block;
  position: relative;
  padding: 13px;
  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: #c40606;
}
/* line 60, ../src/scss/base/_messages.scss */
.messages .error-msg span:before,
.std .messages .error-msg span:before {
  background: #930404;
}
/* 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: -56px -21px;
  width: 20px;
  height: 20px;
  content: "";
}
@media only screen and (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: -111px -42px;
    width: 40px;
    height: 40px;
    background-position: -56px -21px;
    height: 20px;
    width: 20px;
    background-size: 97px 83px;
  }
}
/* line 22, ../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: -56px -21px;
  width: 20px;
  height: 20px;
}
/* line 69, ../src/scss/base/_messages.scss */
.messages .notice-msg span,
.std .messages .notice-msg span {
  background: orange;
  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: #cc8400;
}
/* 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: -35px -42px;
  width: 20px;
  height: 20px;
  content: "";
}
@media only screen and (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: -69px -84px;
    width: 40px;
    height: 40px;
    background-position: -35px -42px;
    height: 20px;
    width: 20px;
    background-size: 97px 83px;
  }
}
/* line 22, ../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: -35px -42px;
  width: 20px;
  height: 20px;
}
/* line 86, ../src/scss/base/_messages.scss */
.messages .success-msg span,
.std .messages .success-msg span {
  background: #90bf52;
}
/* line 89, ../src/scss/base/_messages.scss */
.messages .success-msg span:before,
.std .messages .success-msg span:before {
  background: #76a23c;
}
/* 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: -77px 0px;
  width: 20px;
  height: 20px;
  content: "";
}
@media only screen and (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: -153px 0px;
    width: 40px;
    height: 40px;
    background-position: -77px 0px;
    height: 20px;
    width: 20px;
    background-size: 97px 83px;
  }
}
/* line 22, ../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: -77px 0px;
  width: 20px;
  height: 20px;
}

/* Inline message. Like product not on stock. */
/* line 100, ../src/scss/base/_messages.scss */
.item-msg {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  font-size: 13.33333px;
  display: inline-block;
  padding: 3px;
  margin: 13px 0;
}
/* line 106, ../src/scss/base/_messages.scss */
.item-msg.notice {
  background: orange;
  color: #000;
}
/* line 110, ../src/scss/base/_messages.scss */
.item-msg.success {
  background: #90bf52;
  color: #fff;
}
/* line 114, ../src/scss/base/_messages.scss */
.item-msg.error {
  background: #c40606;
  color: #fff;
}

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

/*------------------------------------*\
	$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: eot, 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
*/
/*@include font-face("Precioussanslightregular", font-files("../fonts/precioussanslightregular-webfont.woff", "../fonts/precioussanslightregular-webfont.eot", "../fonts/precioussanslightregular-webfont.ttf", "../fonts/precioussanslightregular-webfont.svg"));
@include font-face("Precioussansbook", font-files("../fonts/precioussansbook-webfont.woff", "../fonts/precioussansbook-webfont.eot", "../fonts/precioussansbook-webfont.ttf", "../fonts/precioussansbook-webfont.svg"));
@include font-face("Precioussansbold", font-files("../fonts/precioussansbold-webfont.woff", "../fonts/precioussansbold-webfont.eot", "../fonts/precioussansbold-webfont.ttf", "../fonts/precioussansbold-webfont.svg"));
@include font-face("Precioussansmedium", font-files("../fonts/precioussansmedium-webfont.woff", "../fonts/precioussansmedium-webfont.eot", "../fonts/precioussansmedium-webfont.ttf", "../fonts/precioussansmedium-webfont.svg"));
@include font-face("Kgbestillknow", font-files("../fonts/kgbestillknow-webfont.woff", "../fonts/kgbestillknow-webfont.eot", "../fonts/kgbestillknow-webfont.ttf", "../fonts/kgbestillknow-webfont.svg")) ;
@include font-face("quinnyicons", font-files("../fonts/quinnyicons.woff", "../fonts/quinnyicons.eot", "../fonts/quinnyicons.ttf", "../fonts/quinnyicons.svg"));*/
@font-face {
  font-family: "Precioussanslightregular";
  src: url('../fonts/precioussanslightregular-webfont.woff?1444377717') format('woff'), url('../fonts/precioussanslightregular-webfont.eot?1444377717') format('embedded-opentype'), url('../fonts/precioussanslightregular-webfont.ttf?1444377717') format('truetype'), url('../fonts/precioussanslightregular-webfont.svg?1444377717') format('svg');
}
@font-face {
  font-family: "Precioussansbook";
  src: url('../fonts/precioussansbook-webfont.woff?1444377717') format('woff'), url('../fonts/precioussansbook-webfont.eot?1444377717') format('embedded-opentype'), url('../fonts/precioussansbook-webfont.ttf?1444377717') format('truetype'), url('../fonts/precioussansbook-webfont.svg?1444377717') format('svg');
}
@font-face {
  font-family: "Precioussansbold";
  src: url('../fonts/precioussansbold-webfont.woff?1444377717') format('woff'), url('../fonts/precioussansbold-webfont.eot?1444377717') format('embedded-opentype'), url('../fonts/precioussansbold-webfont.ttf?1444377717') format('truetype'), url('../fonts/precioussansbold-webfont.svg?1444377717') format('svg');
}
@font-face {
  font-family: "Precioussansmedium";
  src: url('../fonts/precioussansmedium-webfont.woff?1444377717') format('woff'), url('../fonts/precioussansmedium-webfont.eot?1444377717') format('embedded-opentype'), url('../fonts/precioussansmedium-webfont.ttf?1444377717') format('truetype'), url('../fonts/precioussansmedium-webfont.svg?1444377717') format('svg');
}
@font-face {
  font-family: "Kgbestillknow";
  src: url('../fonts/kgbestillknow-webfont.woff?1444377717') format('woff'), url('../fonts/kgbestillknow-webfont.eot?1444377717') format('embedded-opentype'), url('../fonts/kgbestillknow-webfont.ttf?1444377717') format('truetype'), url('../fonts/kgbestillknow-webfont.svg?1444377717') format('svg');
}
@font-face {
  font-family: "quinnyicons";
  src: url('../fonts/quinnyicons.woff?1444377717') format('woff'), url('../fonts/quinnyicons.eot?1444377717') format('embedded-opentype'), url('../fonts/quinnyicons.ttf?1444377717') format('truetype'), url('../fonts/quinnyicons.svg?1444377717') format('svg');
}
/*------------------------------------*\
    $VIEWPORT
\*------------------------------------*/
/**
 * The Viewport Meta Tag:
 *
 * enables text-size to be rendered in proportion to the device width.
 *
 * goes together with the viewport meta tag in the head
 * 
 */
@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}
@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1.0;
}
/*------------------------------------*\
	$HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
/* line 65, ../src/scss/base/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-weight: 300;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #000;
}

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

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

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

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

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

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

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
/* line 103, ../src/scss/base/_typography.scss */
.giga {
  font-size: 57.33089px;
  font-size: 3.58318rem;
  line-height: 1.36052;
}

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

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

/* line 118, ../src/scss/base/_typography.scss */
h1 {
  margin-bottom: 16.5888px;
}

/* line 118, ../src/scss/base/_typography.scss */
h2 {
  margin-bottom: 13.824px;
}

/* line 118, ../src/scss/base/_typography.scss */
h3 {
  margin-bottom: 11.52px;
}

/* line 118, ../src/scss/base/_typography.scss */
h4 {
  margin-bottom: 9.6px;
}

/* line 118, ../src/scss/base/_typography.scss */
h5 {
  margin-bottom: 8px;
}

/* line 118, ../src/scss/base/_typography.scss */
h6 {
  margin-bottom: 6.66667px;
}

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

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

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

/**
 * Validation
 * =======================================================================
 * General style for default Magento validation elements in the frontend.
 **/
/* line 7, ../src/scss/base/_forms.scss */
.validation-advice {
  -webkit-border-radius: 6.5px;
  -moz-border-radius: 6.5px;
  -ms-border-radius: 6.5px;
  -o-border-radius: 6.5px;
  border-radius: 6.5px;
  font-size: 13.33333px;
  font-size: 0.83333rem;
  position: relative;
  display: inline-block;
  padding: 6.5px;
  margin-top: 13px;
  background: #c40606;
  font-style: italic;
  color: #fff;
  /**
   * 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 21, ../src/scss/base/_forms.scss */
.validation-advice:before {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-color: #c40606;
  border-width: 0 0.5em 0.5em 0.5em;
  display: inline-block;
  position: absolute;
  top: -.5em;
  left: 13px;
  content: "";
}

/**
 * Override the style of input fields when validation is failed.
 **/
/* line 34, ../src/scss/base/_forms.scss */
.validation-failed {
  border-color: #c40606 !important;
  color: #c40606 !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 50, ../src/scss/base/_forms.scss */
.form-list {
  /**
   * Form legend should be informative and shouldn't attract to much attention.
   **/
}
/* line 51, ../src/scss/base/_forms.scss */
.form-list > li,
.form-list .wide {
  margin-bottom: 13px;
}
/* line 55, ../src/scss/base/_forms.scss */
.form-list > li input, .form-list > li textarea, .form-list > li select, .form-list > li .jqTransformSelectWrapper,
.form-list .wide input,
.form-list .wide textarea,
.form-list .wide select,
.form-list .wide .jqTransformSelectWrapper {
  margin-top: 6.5px;
  width: 100%;
}
/* line 60, ../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 67, ../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: 6.5px;
}
/* line 75, ../src/scss/base/_forms.scss */
.form-list .fields {
  margin-bottom: 0;
}
/* line 78, ../src/scss/base/_forms.scss */
.form-list .fields .field.field_small {
  width: 25%;
}
/* line 83, ../src/scss/base/_forms.scss */
.form-list .field,
.form-list .field--wide {
  margin-bottom: 13px;
}
/* line 92, ../src/scss/base/_forms.scss */
.form-list .legend {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  -ms-opacity: 0.8;
  -o-opacity: 0.8;
  opacity: 0.8;
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 1.95;
  margin-top: 6.5px;
}

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

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

/**
 * Position the required asterisk at the right of the label field.
 **/
/* line 111, ../src/scss/base/_forms.scss */
label.required {
  position: relative;
  display: inline-block;
  padding-right: 13px;
}
/* line 116, ../src/scss/base/_forms.scss */
label.required em {
  position: absolute;
  right: 0;
  top: 0;
  color: #c40606;
}

/* line 124, ../src/scss/base/_forms.scss */
p.required {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 1.95;
  text-align: right;
  margin-bottom: 0;
}

@media only screen and (min-width: 641px) {
  /* line 132, ../src/scss/base/_forms.scss */
  .repair-products.repair-step-5 label {
    font-size: 15px;
  }

  /* line 139, ../src/scss/base/_forms.scss */
  .form-list > li .field,
  .form-list .wide .field {
    width: 50%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  /* line 148, ../src/scss/base/_forms.scss */
  .repair-products.repair-step-5 label {
    font-size: 13px;
  }
}
/**
 * customer create account form 
 **/
@media only screen and (min-width: 641px) {
  /* line 167, ../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 168, ../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 169, ../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 170, ../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%;
  }
}
/**
 * Buttons
 * =======================================================================
 * General buttons which can be used across the whole frontend.
 **/
/**
 * The default button. Most buttons accross the frontend will use this style.
 * [1] Button can never be bigger then his parent.
 **/
/* line 11, ../src/scss/base/_buttons.scss */
.button, .button-minor, .btn-cart, .btn-checkout,
#onestepcheckout-place-order,
#onestepcheckout-login-button {
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  padding: 9.75px;
  max-width: 100%;
  background: #000;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  text-align: left;
  padding-right: 52px;
  transition: all 0.2s ease;
}
/* line 29, ../src/scss/base/_buttons.scss */
.button:hover, .button-minor:hover, .btn-cart:hover, .btn-checkout:hover,
#onestepcheckout-place-order:hover,
#onestepcheckout-login-button:hover {
  background-color: #6ba124;
  color: #fff;
}
/* line 33, ../src/scss/base/_buttons.scss */
.button:before, .button-minor:before, .btn-cart:before, .btn-checkout:before,
#onestepcheckout-place-order:before,
#onestepcheckout-login-button:before {
  display: block;
  content: '';
  position: absolute;
  top: 15%;
  right: 40px;
  width: 0;
  height: 70%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
/* line 43, ../src/scss/base/_buttons.scss */
.button:after, .button-minor:after, .btn-cart:after, .btn-checkout:after,
#onestepcheckout-place-order:after,
#onestepcheckout-login-button:after {
  content: '';
  border-top: 8px solid transparent;
  border-left: 8px solid white;
  border-bottom: 8px solid transparent;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  margin-top: -8px;
  text-align: center;
}

/* line 57, ../src/scss/base/_buttons.scss */
#onestepcheckout-place-order {
  width: auto;
  font-size: 19px;
}

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

/**
 * A button with minor styling so it doesn't attract as much attention is the default button does.
 **/
/* line 76, ../src/scss/base/_buttons.scss */
.button-minor {
  background: #fff;
  border: 1px solid #999999;
  color: #333333;
  padding: 4px 15px;
}
/* line 82, ../src/scss/base/_buttons.scss */
.button-minor:hover {
  background: #6ba124;
}
/* line 85, ../src/scss/base/_buttons.scss */
.button-minor:before {
  border: none;
}
/* line 86, ../src/scss/base/_buttons.scss */
.button-minor:after {
  border: none;
}

/**
 * A button which will look like it's a link.
 **/
/* line 92, ../src/scss/base/_buttons.scss */
.button-text {
  -webkit-color: background 0.2s ease-in-out;
  -moz-color: background 0.2s ease-in-out;
  -ms-color: background 0.2s ease-in-out;
  -o-color: background 0.2s ease-in-out;
  color: background 0.2s ease-in-out;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  background: none;
  border: 0;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  color: #000 !important;
  text-decoration: none;
  white-space: nowrap;
}
/* line 101, ../src/scss/base/_buttons.scss */
.button-text:hover {
  color: #333333 !important;
}

/**
 * A button with an arrow to the left. Mostly used for backlinks.
 **/
/* line 109, ../src/scss/base/_buttons.scss */
.button-arrow--left {
  position: relative;
  padding-left: 1.25em;
}
/* line 114, ../src/scss/base/_buttons.scss */
.button-arrow--left:before {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-color: #999999;
  border-width: 0.4em 0.8em 0.4em 0;
  display: inline-block;
  margin-right: 6.5px;
  position: absolute;
  left: 0;
  top: 1px;
  content: "";
}
/* line 124, ../src/scss/base/_buttons.scss */
.button-arrow--left:hover {
  color: #333333 !important;
}

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

/* line 136, ../src/scss/base/_buttons.scss */
.button--big, .btn-cart, .btn-checkout {
  font-size: 19.2px;
  font-size: 1.2rem;
}

/**
 * Add style to buttons with default Magento classes.
 **/
/**
 * Style when a button is disabled.
 **/
/* line 155, ../src/scss/base/_buttons.scss */
button.disabled,
button[disabled="disabled"] {
  background: #cccccc !important;
  color: #fff !important;
  text-decoration: line-through;
  border: 1px solid #999999 !important;
}

/**
 * Buttons-set
 * =======================================================================
 * Container which hold the button elements. Add some general styling like padding and align.
 **/
/* line 170, ../src/scss/base/_buttons.scss */
.buttons-set button {
  display: block;
  margin-bottom: 13px;
}
/* line 175, ../src/scss/base/_buttons.scss */
.buttons-set .back-link {
  display: inline-block;
  float: left;
}

/**
 * Buttons in reparatie aanvraag
 * =======================================================================
 **/
/* black button with green hover */
/* line 188, ../src/scss/base/_buttons.scss */
.repair-previous-next .next button.button, .repair-previous-next .next button.button-minor, .repair-previous-next .next button.btn-cart, .repair-previous-next .next button.btn-checkout {
  position: relative;
  color: #fff;
  background: #333333;
  padding: 8.66667px 20px;
  padding-right: 82.55649px;
  font-size: 23.04px;
  transition: all 0.5s ease;
  text-decoration: none;
  float: right;
  border: 1px solid #333333;
}
/* line 199, ../src/scss/base/_buttons.scss */
.repair-previous-next .next button.button:hover, .repair-previous-next .next button.button-minor:hover, .repair-previous-next .next button.btn-cart:hover, .repair-previous-next .next button.btn-checkout:hover {
  background-color: #6ba124;
  border: none;
  border: 1px solid #6ba124;
}
/* line 204, ../src/scss/base/_buttons.scss */
.repair-previous-next .next button.button:before, .repair-previous-next .next button.button-minor:before, .repair-previous-next .next button.btn-cart:before, .repair-previous-next .next button.btn-checkout:before {
  display: block;
  content: '';
  position: absolute;
  top: 10%;
  right: 57.33089px;
  width: 0;
  height: 80%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
/* line 214, ../src/scss/base/_buttons.scss */
.repair-previous-next .next button.button:after, .repair-previous-next .next button.button-minor:after, .repair-previous-next .next button.btn-cart:after, .repair-previous-next .next button.btn-checkout:after {
  content: '';
  border-top: 8px solid transparent;
  border-left: 8px solid white;
  border-bottom: 8px solid transparent;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 33.1776px;
  margin-top: -8px;
  text-align: center;
}

/* white button with black hover */
/* line 229, ../src/scss/base/_buttons.scss */
.previous button.button, .previous button.button-minor, .previous button.btn-cart, .previous button.btn-checkout {
  position: relative;
  color: #000;
  background: #fff;
  padding: 8.66667px 20px;
  padding-left: 82.55649px;
  font-size: 23.04px;
  transition: all 0.5s ease;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #999999;
}
/* line 240, ../src/scss/base/_buttons.scss */
.previous button.button:before, .previous button.button-minor:before, .previous button.btn-cart:before, .previous button.btn-checkout:before {
  display: block;
  content: '';
  position: absolute;
  top: 10%;
  left: 57.33089px;
  width: 0;
  height: 80%;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  border-left: none;
}
/* line 251, ../src/scss/base/_buttons.scss */
.previous button.button:after, .previous button.button-minor:after, .previous button.btn-cart:after, .previous button.btn-checkout:after {
  content: '';
  border-top: 8px solid transparent;
  border-right: 8px solid #000;
  border-bottom: 8px solid transparent;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 33.1776px;
  margin-top: -8px;
  text-align: center;
  border-left: none;
}
/* line 265, ../src/scss/base/_buttons.scss */
.previous button.button:hover, .previous button.button-minor:hover, .previous button.btn-cart:hover, .previous button.btn-checkout:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
/* line 269, ../src/scss/base/_buttons.scss */
.previous button.button:hover:before, .previous button.button-minor:hover:before, .previous button.btn-cart:hover:before, .previous button.btn-checkout:hover:before {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-left: none;
  transition: all 0.5s ease;
}
/* line 274, ../src/scss/base/_buttons.scss */
.previous button.button:hover:after, .previous button.button-minor:hover:after, .previous button.btn-cart:hover:after, .previous button.btn-checkout:hover:after {
  border-right: 8px solid #fff;
  transition: all 0.5s ease;
  border-left: none;
}

/* line 284, ../src/scss/base/_buttons.scss */
#repair-previous-next .next input[type="submit"] {
  position: relative;
  color: white;
  background: black;
  padding: 8px 20px;
  padding-right: 72.23692px;
  font-size: 23.04px;
  transition: all 0.5s ease;
  text-decoration: none;
  display: inline-block;
}
/* line 294, ../src/scss/base/_buttons.scss */
#repair-previous-next .next input[type="submit"]:before {
  content: '';
  display: block;
  position: absolute;
  top: 10%;
  right: 50.16453px;
  width: 0;
  height: 80%;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
/* line 304, ../src/scss/base/_buttons.scss */
#repair-previous-next .next input[type="submit"]:after {
  content: '';
  border-top: 8px solid transparent;
  border-left: 8px solid white;
  border-bottom: 8px solid transparent;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 33.1776px;
  margin-top: -8px;
  text-align: center;
}

/* line 321, ../src/scss/base/_buttons.scss */
.add-another-complaint {
  margin-bottom: 24px;
  text-align: right;
  display: table;
  width: 100%;
}

/* line 327, ../src/scss/base/_buttons.scss */
.add-another-complaint button.button, .add-another-complaint button.button-minor, .add-another-complaint button.btn-cart, .add-another-complaint button.btn-checkout {
  position: relative;
  color: #000;
  background: #fff;
  padding: 8.66667px 20px;
  padding-right: 82.55649px;
  font-size: 23.04px;
  transition: all 0.5s ease;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #fff;
}
/* line 338, ../src/scss/base/_buttons.scss */
.add-another-complaint button.button:before, .add-another-complaint button.button-minor:before, .add-another-complaint button.btn-cart:before, .add-another-complaint button.btn-checkout:before {
  display: block;
  content: '';
  position: absolute;
  top: 10%;
  right: 57.33089px;
  width: 0;
  height: 80%;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
/* line 348, ../src/scss/base/_buttons.scss */
.add-another-complaint button.button:after, .add-another-complaint button.button-minor:after, .add-another-complaint button.btn-cart:after, .add-another-complaint button.btn-checkout:after {
  content: '';
  border-top: 4px solid transparent;
  border-left: 8px solid #000;
  border-bottom: 4px solid transparent;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 33.1776px;
  margin-top: -3.72109px;
  text-align: center;
}
/* line 361, ../src/scss/base/_buttons.scss */
.add-another-complaint button.button:hover, .add-another-complaint button.button-minor:hover, .add-another-complaint button.btn-cart:hover, .add-another-complaint button.btn-checkout:hover {
  background-color: #333333;
  border: 1px solid #000;
  color: #fff;
}
/* line 365, ../src/scss/base/_buttons.scss */
.add-another-complaint button.button:hover:before, .add-another-complaint button.button-minor:hover:before, .add-another-complaint button.btn-cart:hover:before, .add-another-complaint button.btn-checkout:hover:before {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
}
/* line 369, ../src/scss/base/_buttons.scss */
.add-another-complaint button.button:hover:after, .add-another-complaint button.button-minor:hover:after, .add-another-complaint button.btn-cart:hover:after, .add-another-complaint button.btn-checkout:hover:after {
  border-left: 8px solid #fff;
  transition: all 0.5s ease;
}

/* check buttons quinny style */
/* line 380, ../src/scss/base/_buttons.scss */
a.checkButton {
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
  width: 75px;
  height: 39px;
  background: #dfdfdf;
  border-radius: 20px;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
}

/* line 394, ../src/scss/base/_buttons.scss */
a.checkButton:before {
  transition: left .2s;
  content: '\e60a';
  color: #fff;
  text-indent: 0;
  font: 16px/35px 'quinnyicons';
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  left: 2px;
  top: 2px;
  background: #000;
  border-radius: 20px;
  box-shadow: 4px 0 0 #c8c8c8;
}

/* line 414, ../src/scss/base/_buttons.scss */
a.checkButton.checked {
  background: #6ba124;
}

/* line 417, ../src/scss/base/_buttons.scss */
a.checkButton.checked:before {
  background: #fff;
  color: #333;
  content: '\e60b';
  box-shadow: -4px 0 0 #5f911e;
  left: 38px;
}

/* BUTTONS in My Account pages */
/* line 429, ../src/scss/base/_buttons.scss */
.my-account #form-validate button.button, .my-account #form-validate button.button-minor, .my-account #form-validate button.btn-cart, .my-account #form-validate button.btn-checkout {
  width: auto;
  float: right;
}

@media only screen and (max-width: 359px) {
  /* line 438, ../src/scss/base/_buttons.scss */
  .buttons-set button {
    text-align: center;
  }
}
@media only screen and (max-width: 640px) {
  /* line 445, ../src/scss/base/_buttons.scss */
  .repair-previous-next .next button.button, .repair-previous-next .next button.button-minor, .repair-previous-next .next button.btn-cart, .repair-previous-next .next button.btn-checkout,
  .repair-previous-next .next button.button-minor,
  .repair-previous-next .next button.btn-cart,
  .repair-previous-next .next button.btn-checkout,
  .records-table button.btn-cart,
  .checkout-types--top button.btn-proceed-checkout,
  .checkout-cart-additional button.btn-proceed-checkout {
    font-size: 16px;
    padding-right: 34px;
  }
  /* line 454, ../src/scss/base/_buttons.scss */
  .repair-previous-next .next button.button:before, .repair-previous-next .next button.button-minor:before, .repair-previous-next .next button.btn-cart:before, .repair-previous-next .next button.btn-checkout:before,
  .repair-previous-next .next button.button-minor:before,
  .repair-previous-next .next button.btn-cart:before,
  .repair-previous-next .next button.btn-checkout:before,
  .records-table button.btn-cart:before,
  .checkout-types--top button.btn-proceed-checkout:before,
  .checkout-cart-additional button.btn-proceed-checkout:before {
    right: 24px;
  }
  /* line 457, ../src/scss/base/_buttons.scss */
  .repair-previous-next .next button.button:after, .repair-previous-next .next button.button-minor:after, .repair-previous-next .next button.btn-cart:after, .repair-previous-next .next button.btn-checkout:after,
  .repair-previous-next .next button.button-minor:after,
  .repair-previous-next .next button.btn-cart:after,
  .repair-previous-next .next button.btn-checkout:after,
  .records-table button.btn-cart:after,
  .checkout-types--top button.btn-proceed-checkout:after,
  .checkout-cart-additional button.btn-proceed-checkout:after {
    width: 16px;
  }

  /* line 461, ../src/scss/base/_buttons.scss */
  .repair-previous-next .add-another-complaint button {
    font-size: 16px;
    padding-right: 34px;
  }
  /* line 464, ../src/scss/base/_buttons.scss */
  .repair-previous-next .add-another-complaint button:before {
    right: 24px;
  }
  /* line 467, ../src/scss/base/_buttons.scss */
  .repair-previous-next .add-another-complaint button:after {
    width: 16px;
  }

  /* line 472, ../src/scss/base/_buttons.scss */
  .previous button.button, .previous button.button-minor, .previous button.btn-cart, .previous button.btn-checkout,
  .previous button.button-minor,
  .previous button.btn-cart,
  .previous button.btn-checkout {
    font-size: 16px;
  }

  /* line 478, ../src/scss/base/_buttons.scss */
  .previous button.button, .previous button.button-minor, .previous button.btn-cart, .previous button.btn-checkout,
  .previous button.button-minor,
  .previous button.btn-cart,
  .previous button.btn-checkout {
    font-size: 16px;
    padding-left: 34px;
  }
  /* line 484, ../src/scss/base/_buttons.scss */
  .previous button.button:before, .previous button.button-minor:before, .previous button.btn-cart:before, .previous button.btn-checkout:before,
  .previous button.button-minor:before,
  .previous button.btn-cart:before,
  .previous button.btn-checkout:before {
    left: 24px;
  }
  /* line 487, ../src/scss/base/_buttons.scss */
  .previous button.button:after, .previous button.button-minor:after, .previous button.btn-cart:after, .previous button.btn-checkout:after,
  .previous button.button-minor:after,
  .previous button.btn-cart:after,
  .previous button.btn-checkout:after {
    width: 16px;
  }
}
/* 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: 9.75px;
  background: none;
  background-color: #fff;
  border: 1px solid #999999;
  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: #f1f1f1;
  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: #999999 0 0 4px;
  color: #000;
}

/**
 * Custom checkbox and radio styling
 * =======================================================================
 * Custom style on checkboxes and radio buttons. These elements need to have a label sibling.
 * This is required to properly style the radio/checkbox.
 **/
/* line 8, ../src/scss/base/_radio-checkbox.scss */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
}

/**
 * [1] Don't show the checkbox but it still has to be clickable to select/deselect
 **/
/* line 17, ../src/scss/base/_radio-checkbox.scss */
input[type="checkbox"] {
  display: none;
}

/* line 21, ../src/scss/base/_radio-checkbox.scss */
input[type="checkbox"] + label {
  color: #000;
}

/* line 25, ../src/scss/base/_radio-checkbox.scss */
input[type="checkbox"] + label span {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  background: url(../images/check_radio_sheet.png) left top no-repeat;
  /* sprite not yet made */
  cursor: pointer;
}

/* line 35, ../src/scss/base/_radio-checkbox.scss */
input[type="checkbox"]:checked + label span {
  background: url(../images/check_radio_sheet.png) -19px top no-repeat;
  /* sprite not yet made */
}

/* line 39, ../src/scss/base/_radio-checkbox.scss */
input[type="radio"] {
  display: none;
}

/* line 43, ../src/scss/base/_radio-checkbox.scss */
input[type="radio"] + label {
  color: transparent;
  font-size: 0;
  text-indent: -1000%;
}

/* line 49, ../src/scss/base/_radio-checkbox.scss */
input[type="radio"] + label span {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: -5px 0 0 0;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #cccccc;
  cursor: pointer;
}

/* line 60, ../src/scss/base/_radio-checkbox.scss */
input[type="radio"]:checked + label span {
  /*background-color: #000;
  border: 1px solid $black;*/
  position: relative;
}

/* line 66, ../src/scss/base/_radio-checkbox.scss */
input[type="radio"]:checked + label span:after {
  font-family: quinnyicons;
  font-size: 17px;
  content: '\e608';
  color: #6ba124;
  position: absolute;
  right: -85px;
  top: -5px;
  width: 17px;
  height: 17px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
/* line 79, ../src/scss/base/_radio-checkbox.scss */
input[type="radio"]:checked + label span:after:before {
  font-family: quinnyicons;
  content: '\e608';
  width: 20px;
  height: 20px;
  display: block;
  font-size: 16px;
  color: #6ba124;
  position: relative;
  left: 84px;
  top: -5px;
}

/* reset checkboxes on certain pages */
/* CHECKOUT */
/**
 * Checkboxes shown on checkout page
 **/
/* line 101, ../src/scss/base/_radio-checkbox.scss */
#onestepcheckout-form input[type="checkbox"],
#form-validate input[type="checkbox"] {
  display: inline-block;
}
/* line 104, ../src/scss/base/_radio-checkbox.scss */
#onestepcheckout-form input[type="radio"],
#form-validate input[type="radio"] {
  display: inline-block;
}
/* line 106, ../src/scss/base/_radio-checkbox.scss */
#onestepcheckout-form input[type="radio"] + label,
#form-validate input[type="radio"] + label {
  color: #000;
  font-size: 16px;
  text-indent: 0;
}
/* line 112, ../src/scss/base/_radio-checkbox.scss */
#onestepcheckout-form input[type="radio"]:checked + label span,
#form-validate input[type="radio"]:checked + label span {
  background-color: transparent;
  border: none;
  transition: none;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  vertical-align: initial;
  background-color: transparent;
  border: none;
}
/* line 123, ../src/scss/base/_radio-checkbox.scss */
#onestepcheckout-form input[type="radio"]:checked + label span:after,
#form-validate input[type="radio"]:checked + label span:after {
  content: '';
}

/**
 * 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,
.grid--nested,
.category-products .products-grid,
.toolbar__pager,
.toolbar__sorter,
.wrapper,
.minicart__detail .product,
.product-view .product,
.onestepcheckout-threecolumns {
  margin-left: -26px;
  list-style: none;
  margin-bottom: 0;
}
/* line 7, ../src/scss/globals/_mixins.scss */
.grid:after,
.form-list .fields:after,
.grid--full:after,
.grid--nested:after,
.category-products .products-grid:after,
.toolbar__pager:after,
.toolbar__sorter:after,
.wrapper:after,
.minicart__detail .product:after,
.product-view .product:after,
.onestepcheckout-threecolumns:after,
.grid:before,
.form-list .fields:before,
.grid--full:before,
.grid--nested:before,
.category-products .products-grid:before,
.toolbar__pager:before,
.toolbar__sorter:before,
.wrapper:before,
.minicart__detail .product:before,
.product-view .product:before,
.onestepcheckout-threecolumns:before {
  content: "";
  display: table;
}
/* line 12, ../src/scss/globals/_mixins.scss */
.grid:after,
.form-list .fields:after,
.grid--full:after,
.grid--nested:after,
.category-products .products-grid:after,
.toolbar__pager:after,
.toolbar__sorter:after,
.wrapper:after,
.minicart__detail .product:after,
.product-view .product:after,
.onestepcheckout-threecolumns:after {
  clear: both;
}

/* line 13, ../src/scss/components/_grid.scss */
.breadcrumbs,
.grid__item,
.form-list .field,
.form-list .field--wide,
.grid--full__item,
.category-products .products-grid .item,
.toolbar__amount,
.toolbar__limiter,
.toolbar__pages,
.toolbar__view-mode,
.toolbar__sort-by,
.breadcrumbs,
.col-main,
.col-left,
.col-right,
.minicart__detail .product__image,
.minicart__detail .product__name,
.minicart__detail .product__price,
.product-view .product__images,
.product-view .product__info,
.onestepcheckout-column {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 26px;
  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 28, ../src/scss/components/_grid.scss */
.inline-grid,
.inline-grid--full {
  margin-left: -26px;
  list-style: none;
  margin-bottom: 0;
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
}
/* 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 12, ../src/scss/globals/_mixins.scss */
.inline-grid:after,
.inline-grid--full:after {
  clear: both;
}

/* line 40, ../src/scss/components/_grid.scss */
.inline-grid__item,
.inline-grid--full__item {
  display: inline-block;
  vertical-align: top;
  padding-left: 26px;
  letter-spacing: normal;
  word-spacing: normal;
}

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

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

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

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

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

/* line 1, ../src/scss/components/_advies.scss */
.repair-advies-container {
  padding: 0 8px;
}
/* line 3, ../src/scss/components/_advies.scss */
.repair-advies-container .advies-title {
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  font-size: 34px;
  line-height: 42px;
  border-bottom: 1px solid black;
  display: inline-block;
  margin-top: 16px;
  max-width: 800px;
  margin: 0 5px;
  padding: 12px 0;
}
/* line 14, ../src/scss/components/_advies.scss */
.repair-advies-container .repair-step-question {
  position: fixed;
  right: 0;
  top: 192px;
  width: 380px;
  padding: 10px;
  padding-right: 57.33089px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  line-height: 26px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 100;
}
/* line 26, ../src/scss/components/_advies.scss */
.repair-advies-container .repair-step-question:before {
  content: '';
  position: absolute;
  top: 20%;
  right: 52px;
  width: 1px;
  height: 60%;
  border-right: 1px solid #e5e5e5;
}
/* line 35, ../src/scss/components/_advies.scss */
.repair-advies-container .repair-step-question:after {
  content: '';
  background: url("../images/bg-telephone.png") 0 0 no-repeat #fff;
  position: absolute;
  top: 26px;
  right: 13px;
  width: 20px;
  height: 20px;
}
/* line 45, ../src/scss/components/_advies.scss */
.repair-advies-container .advies-subtitle {
  padding: 24px 0;
}
/* line 48, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list {
  margin-bottom: 48px;
  display: block;
}
/* line 51, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku {
  width: 100%;
  margin-bottom: 26px;
  border: 1px solid #999999;
  padding: 26px;
}
/* line 56, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku .product-problem {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  margin-bottom: 26px;
}
/* line 60, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku .product-problem .product-problem-summary {
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
}
/* line 64, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku .product-shop {
  text-align: right;
}
/* line 67, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku .f-fix {
  border: 1px solid #e5e5e5;
  padding: 16px;
  text-align: left;
  margin-bottom: 16px;
  width: 33%;
}
/* line 73, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku .f-fix .product-name {
  line-height: 24px;
}
/* line 75, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku .f-fix .product-name a {
  font-size: 19px;
  text-decoration: none;
  line-height: 24px;
}
/* line 81, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-sku .f-fix .product-image {
  text-align: center;
}
/* line 90, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-link {
  width: 100%;
}
/* line 92, ../src/scss/components/_advies.scss */
.repair-advies-container .form-list .advice-link .product-problem {
  padding-bottom: 12px;
}
/* line 95, ../src/scss/components/_advies.scss */
.repair-advies-container .repair-previous-next {
  margin-top: 26px;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  /* line 103, ../src/scss/components/_advies.scss */
  .repair-advies-container .repair-step-question {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  /* line 122, ../src/scss/components/_advies.scss */
  .repair-advies-container {
    padding: 26px 0 0 0;
  }
  /* line 124, ../src/scss/components/_advies.scss */
  .repair-advies-container .repair-step-question {
    top: 210px;
  }
  /* line 127, ../src/scss/components/_advies.scss */
  .repair-advies-container .advies-title,
  .repair-advies-container .advies-question {
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
    font-size: 44px;
    border-bottom: 1px solid black;
    line-height: 80px;
    display: inline-block;
    margin-top: 32px;
    max-width: 800px;
  }
  /* line 137, ../src/scss/components/_advies.scss */
  .repair-advies-container .advies-question {
    text-align: right;
    padding: 26px 0 0;
  }
}
/* line 1, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 1.95;
  width: 100%;
  margin-bottom: 26px;
}
/* line 11, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs li {
  display: inline-block;
}
/* line 14, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs li:after {
  content: "\003E" "\00A0";
}
/* line 18, ../src/scss/components/_breadcrumbs.scss */
.lt-ie9 .breadcrumbs li {
  margin-right: 1px;
}
/* line 23, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs li:last-child:after {
  content: "";
}
/* line 27, ../src/scss/components/_breadcrumbs.scss */
.breadcrumbs a {
  text-decoration: none;
}

/* line 2, ../src/scss/components/_cms-content.scss */
.cms-page-view .breadcrumbs {
  display: none;
}
/* line 4, ../src/scss/components/_cms-content.scss */
.cms-page-view .std hr {
  border: 1px solid #CCC;
  border-width: 1px 0 0;
  outline: none;
}
/* line 9, ../src/scss/components/_cms-content.scss */
.cms-page-view .std ul {
  list-style-type: disc;
}

@media only screen and (min-width: 769px) {
  /* line 31, ../src/scss/components/_cms-content.scss */
  .cms-page-view .page-title h1 {
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
    font: 600 42px/40px;
  }
  /* line 36, ../src/scss/components/_cms-content.scss */
  .cms-page-view .std h1, .cms-page-view .std h2, .cms-page-view .std h3, .cms-page-view .std h4, .cms-page-view .std h5, .cms-page-view .std h6 {
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  }
  /* line 40, ../src/scss/components/_cms-content.scss */
  .cms-page-view .std strong {
    font-weight: bold;
    font-size: 19px;
  }
}
/**
 * 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: 1024px;
  margin: 0 auto;
}

/* line 1, ../src/scss/components/_cookies.scss */
.cookienotice {
  background: rgba(0, 0, 0, 0.5);
  padding: 24px 0;
  display: inline-block;
  width: 100%;
}
/* line 7, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content {
  max-width: 1024px;
  margin: 0 auto;
}
/* line 10, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content .cookienotice__message {
  color: #fff;
  width: 60%;
  display: inline-block;
}
/* line 15, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content .cookienotice__actions {
  display: inline-block;
  float: right;
}
/* line 19, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content .cookienotice__actions .cookienotice__button button.button--major {
  position: relative;
  color: white;
  background: black;
  padding: 8.66667px 20px;
  padding-right: 82.55649px;
  font-size: 16px;
  transition: all 0.5s ease;
  text-decoration: none;
  display: inline-block;
}
/* line 29, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content .cookienotice__actions .cookienotice__button button.button--major:before {
  display: block;
  content: '';
  position: absolute;
  top: 10%;
  right: 57.33089px;
  width: 0;
  height: 80%;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
/* line 39, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content .cookienotice__actions .cookienotice__button button.button--major:after {
  content: '';
  border-top: 4px solid transparent;
  border-left: 8px solid white;
  border-bottom: 4px solid transparent;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 33.1776px;
  margin-top: -3.72109px;
  text-align: center;
}
/* line 55, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content .cookienotice__actions .cookienotice__url a {
  color: #fff;
  margin-top: 16px;
  float: right;
}
/* line 59, ../src/scss/components/_cookies.scss */
.cookienotice .cookienotice__content .cookienotice__actions .cookienotice__url a:hover {
  color: #000;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  /* line 72, ../src/scss/components/_cookies.scss */
  .cookienotice.bottom .cookienotice__content .cookienotice__message {
    width: 100%;
    padding: 12px 12px 24px;
  }
  /* line 73, ../src/scss/components/_cookies.scss */
  .cookienotice.bottom .cookienotice__content .cookienotice__actions {
    clear: both;
  }
}
@media only screen and (max-width: 359px) {
  /* line 8, ../src/scss/components/_dropdown.scss */
  .step-3-dropdown .wrapper .select .left label {
    font-size: 16px;
  }
  /* line 11, ../src/scss/components/_dropdown.scss */
  .step-3-dropdown .wrapper .select .left .dropdown li a {
    font-size: 14px;
    line-height: 14px;
  }
}
@media only screen and (max-width: 640px) {
  /* line 37, ../src/scss/components/_dropdown.scss */
  .select .collapse {
    font-size: 16px;
    padding-right: 34px;
  }
  /* line 40, ../src/scss/components/_dropdown.scss */
  .select .collapse:before {
    right: 24px;
  }
  /* line 43, ../src/scss/components/_dropdown.scss */
  .select .collapse:after {
    width: 8px;
    right: 8px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 52, ../src/scss/components/_dropdown.scss */
  .step-3-dropdown .collapse {
    width: 700px;
  }

  /* line 53, ../src/scss/components/_dropdown.scss */
  .step-3-dropdown .dropdown {
    width: 700px;
  }
}
/* individual heights based on number of questions in ul */
/* max-height = (X * 40px) - 20px */
/* line 59, ../src/scss/components/_dropdown.scss */
#repair-step-3 {
  /*  15questions * 40px - 20px (first li is empty) */
}
/* line 60, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown1 {
  max-height: 20px;
}
/* line 61, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown2 {
  max-height: 60px;
}
/* line 62, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown3 {
  max-height: 100px;
}
/* line 63, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown4 {
  max-height: 140px;
}
/* line 64, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown5 {
  max-height: 180px;
}
/* line 65, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown6 {
  max-height: 220px;
}
/* line 66, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown7 {
  max-height: 260px;
}
/* line 67, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown8 {
  max-height: 300px;
}
/* line 68, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown9 {
  max-height: 340px;
}
/* line 69, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown10 {
  max-height: 380px;
}
/* line 70, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown11 {
  max-height: 420px;
}
/* line 71, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown12 {
  max-height: 460px;
}
/* line 72, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown13 {
  max-height: 500px;
}
/* line 73, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown14 {
  max-height: 540px;
}
/* line 74, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .dropdown15 {
  max-height: 580px;
}
/* line 76, ../src/scss/components/_dropdown.scss */
#repair-step-3 .step-3-dropdown .collapse + input:checked + .dropdown .inactive {
  max-height: 0;
}

/* line 80, ../src/scss/components/_dropdown.scss */
.select .collapse {
  border: 1px solid #333333;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  font-size: 19px;
  border-radius: 0;
  padding: 5px 5px 5px 12px;
  display: block;
  transition: all 0.5s;
  position: relative;
  background-color: #333333;
  color: #fff;
  padding-right: 62px;
}
/* line 95, ../src/scss/components/_dropdown.scss */
.select .collapse:before {
  display: block;
  content: '';
  position: absolute;
  top: 10%;
  right: 50.16453px;
  width: 0;
  height: 80%;
  border-left: 1px solid #fff;
}
/* line 105, ../src/scss/components/_dropdown.scss */
.select .collapse:after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #fff;
  display: inline-block;
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  margin-top: -2px;
  text-align: center;
}
/* line 119, ../src/scss/components/_dropdown.scss */
.select .collapse + input {
  /* display: none; */
  height: 0px;
  overflow: hidden;
  transition: all 1s;
}
/* line 125, ../src/scss/components/_dropdown.scss */
.select .collapse + input + .dropdown > div {
  max-height: 0px;
  overflow: hidden;
  transition: all 1s;
}
/* line 131, ../src/scss/components/_dropdown.scss */
.select .collapse:hover {
  border: 1px solid #333333;
  background-color: #f1f1f1;
  color: #000;
}
/* line 136, ../src/scss/components/_dropdown.scss */
.select .collapse:hover:before {
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}
/* line 139, ../src/scss/components/_dropdown.scss */
.select .collapse:hover:after {
  border-top: 8px solid rgba(0, 0, 0, 0.75);
}
/* line 142, ../src/scss/components/_dropdown.scss */
.select .collapse + input:checked + .dropdown > div {
  display: block;
  max-height: 300px;
  transition: all 1s;
}
/* line 149, ../src/scss/components/_dropdown.scss */
.select .dropdown ul li {
  display: table;
  width: 100%;
}
/* line 152, ../src/scss/components/_dropdown.scss */
.select .dropdown ul li:first-of-type {
  height: 20px;
}
/* line 155, ../src/scss/components/_dropdown.scss */
.select .dropdown ul li a {
  font-size: 16px;
  line-height: 14px;
  height: 40px;
  text-decoration: none;
  display: table-cell;
  vertical-align: middle;
  padding: 5px 12px;
  transition: all 0.2s;
}
/* line 164, ../src/scss/components/_dropdown.scss */
.select .dropdown ul li a:hover {
  color: white;
  background-color: #6ba124;
}
/* line 168, ../src/scss/components/_dropdown.scss */
.select .dropdown ul li a.active {
  color: white;
  background-color: #6ba124;
}

/* line 3, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question,
.repair-advies-container .repair-step-question {
  transition: width 0.5s;
  overflow: hidden;
  height: 74px;
}
/* line 7, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.unscrolled,
.repair-advies-container .repair-step-question.unscrolled {
  width: 380px;
}
/* line 9, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.unscrolled .content,
.repair-advies-container .repair-step-question.unscrolled .content {
  display: block;
  overflow: hidden;
}
/* line 14, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.scrolled,
.repair-advies-container .repair-step-question.scrolled {
  width: 50px;
  height: 74px;
}
/* line 17, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.scrolled .content,
.repair-advies-container .repair-step-question.scrolled .content {
  display: none;
  overflow: hidden;
}
/* line 21, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.scrolled:before,
.repair-advies-container .repair-step-question.scrolled:before {
  display: none;
}
/* line 25, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.unfolded,
.repair-advies-container .repair-step-question.unfolded {
  width: 380px;
  height: 74px;
}
/* line 28, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.unfolded .content,
.repair-advies-container .repair-step-question.unfolded .content {
  display: block;
  overflow: hidden;
}
/* line 33, ../src/scss/components/_folding.scss */
.repair-container .repair-step-question.unfolded.scrolled:before,
.repair-advies-container .repair-step-question.unfolded.scrolled:before {
  display: block;
}

/* line 2, ../src/scss/components/_headers.scss */
.page-title h1 {
  font-size: 45px;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  border-bottom: 1px solid black;
  line-height: 80px;
  display: inline-block;
  margin-top: 16px;
  max-width: 800px;
}

/* line 13, ../src/scss/components/_headers.scss */
.fieldset h2.legend {
  font-size: 19px;
}

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesnÔÇÖt already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
/* line 17, ../src/scss/components/_helpers.scss */
.float--right, .f-right {
  float: right !important;
}

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

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

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

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

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

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

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

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

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

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

/**
 * Add/remove margins
 */
/* line 75, ../src/scss/components/_helpers.scss */
.push {
  margin: 26px !important;
}

/* line 79, ../src/scss/components/_helpers.scss */
.push--top {
  margin-top: 26px !important;
}

/* line 83, ../src/scss/components/_helpers.scss */
.push--right {
  margin-right: 26px !important;
}

/* line 87, ../src/scss/components/_helpers.scss */
.push--bottom {
  margin-bottom: 26px !important;
}

/* line 91, ../src/scss/components/_helpers.scss */
.push--left {
  margin-left: 26px !important;
}

/* line 95, ../src/scss/components/_helpers.scss */
.push--ends {
  margin-top: 26px !important;
  margin-bottom: 26px !important;
}

/* line 100, ../src/scss/components/_helpers.scss */
.push--sides {
  margin-right: 26px !important;
  margin-left: 26px !important;
}

/* line 105, ../src/scss/components/_helpers.scss */
.push-half {
  margin: 13px !important;
}

/* line 109, ../src/scss/components/_helpers.scss */
.push-half--top {
  margin-top: 13px !important;
}

/* line 113, ../src/scss/components/_helpers.scss */
.push-half--right {
  margin-right: 13px !important;
}

/* line 117, ../src/scss/components/_helpers.scss */
.push-half--bottom {
  margin-bottom: 13px !important;
}

/* line 121, ../src/scss/components/_helpers.scss */
.push-half--left {
  margin-left: 13px !important;
}

/* line 125, ../src/scss/components/_helpers.scss */
.push-half--ends {
  margin-top: 13px !important;
  margin-bottom: 13px !important;
}

/* line 130, ../src/scss/components/_helpers.scss */
.push-half--sides {
  margin-right: 13px !important;
  margin-left: 13px !important;
}

/* line 135, ../src/scss/components/_helpers.scss */
.flush {
  margin: 0 !important;
}

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

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

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

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

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

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

/**
 * Add/remove paddings
 */
/* line 168, ../src/scss/components/_helpers.scss */
.soft {
  padding: 26px !important;
}

/* line 172, ../src/scss/components/_helpers.scss */
.soft--top {
  padding-top: 26px !important;
}

/* line 176, ../src/scss/components/_helpers.scss */
.soft--right {
  padding-right: 26px !important;
}

/* line 180, ../src/scss/components/_helpers.scss */
.soft--bottom {
  padding-bottom: 26px !important;
}

/* line 184, ../src/scss/components/_helpers.scss */
.soft--left {
  padding-left: 26px !important;
}

/* line 188, ../src/scss/components/_helpers.scss */
.soft--ends {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

/* line 193, ../src/scss/components/_helpers.scss */
.soft--sides {
  padding-right: 26px !important;
  padding-left: 26px !important;
}

/* line 198, ../src/scss/components/_helpers.scss */
.soft-half {
  padding: 13px !important;
}

/* line 202, ../src/scss/components/_helpers.scss */
.soft-half--top {
  padding-top: 13px !important;
}

/* line 206, ../src/scss/components/_helpers.scss */
.soft-half--right {
  padding-right: 13px !important;
}

/* line 210, ../src/scss/components/_helpers.scss */
.soft-half--bottom {
  padding-bottom: 13px !important;
}

/* line 214, ../src/scss/components/_helpers.scss */
.soft-half--left {
  padding-left: 13px !important;
}

/* line 218, ../src/scss/components/_helpers.scss */
.soft-half--ends {
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

/* line 223, ../src/scss/components/_helpers.scss */
.soft-half--sides {
  padding-right: 13px !important;
  padding-left: 13px !important;
}

/* line 228, ../src/scss/components/_helpers.scss */
.hard {
  padding: 0 !important;
}

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

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

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

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

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

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

/*------------------------------------*\
    VISIBILITY
\*------------------------------------*/
/* line 262, ../src/scss/components/_helpers.scss */
.visuallyhidden, .price-box .price-label, .header__logo .alt, .header__logo strong, .block-account.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;
}

/* .visuallyvisible {
    @include visuallyvisible;
} */
/* line 270, ../src/scss/components/_helpers.scss */
.hidden {
  display: none !important;
}

/* line 274, ../src/scss/components/_helpers.scss */
.visible {
  display: block !important;
}

/* line 278, ../src/scss/components/_helpers.scss */
.text-hidden, .sprite {
  text-indent: -1000%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 640px) {
  /* line 285, ../src/scss/components/_helpers.scss */
  .visuallyhidden--palm, .cart-table colgroup,
  .records-table colgroup, .cart-table thead,
  .records-table thead {
    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;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  /* line 285, ../src/scss/components/_helpers.scss */
  .visuallyhidden--lap {
    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;
  }
}
@media only screen and (min-width: 641px) and (max-width: 699px) {
  /* line 285, ../src/scss/components/_helpers.scss */
  .visuallyhidden--lap-s {
    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;
  }
}
@media only screen and (min-width: 780px) and (max-width: 768px) {
  /* line 285, ../src/scss/components/_helpers.scss */
  .visuallyhidden--lap-l {
    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;
  }
}
@media only screen and (min-width: 641px) {
  /* line 285, ../src/scss/components/_helpers.scss */
  .visuallyhidden--lap-and-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;
  }
}
@media only screen and (max-width: 768px) {
  /* line 285, ../src/scss/components/_helpers.scss */
  .visuallyhidden--portable {
    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;
  }
}
@media only screen and (min-width: 769px) {
  /* line 285, ../src/scss/components/_helpers.scss */
  .visuallyhidden--desk {
    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;
  }
}
@media only screen and (max-width: 640px) {
  /* line 295, ../src/scss/components/_helpers.scss */
  .hidden--palm {
    display: none !important;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  /* line 295, ../src/scss/components/_helpers.scss */
  .hidden--lap {
    display: none !important;
  }
}
@media only screen and (min-width: 641px) {
  /* line 295, ../src/scss/components/_helpers.scss */
  .hidden--lap-and-up {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  /* line 295, ../src/scss/components/_helpers.scss */
  .hidden--portable {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  /* line 295, ../src/scss/components/_helpers.scss */
  .hidden--desk {
    display: none !important;
  }
}
/* Used in combination with SIDR menu to prevent scrolling when menu is active */
/* line 311, ../src/scss/components/_helpers.scss */
.scroll-disabled {
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

/* line 5, ../src/scss/components/_price-box.scss */
.price-box .old-price, .price-box .special-price, .price-box .regular-price {
  display: inline-block;
  margin: 0;
}
/* line 9, ../src/scss/components/_price-box.scss */
.price-box .old-price .decimals, .price-box .special-price .decimals, .price-box .regular-price .decimals {
  font-size: 0.75em;
}
/* line 13, ../src/scss/components/_price-box.scss */
.price-box .old-price {
  margin-right: 5px;
  text-decoration: line-through;
}
/* line 17, ../src/scss/components/_price-box.scss */
.price-box .special-price {
  font-weight: bold;
}

/* line 16, ../src/scss/components/_products.scss */
.products-grid .product {
  padding-bottom: 26px;
  text-align: center;
  color: #e5e5e5;
}
/* line 22, ../src/scss/components/_products.scss */
.products-grid .product__image {
  display: block;
}
/* line 25, ../src/scss/components/_products.scss */
.products-grid .product__image a {
  display: inline-block;
}
/* line 30, ../src/scss/components/_products.scss */
.products-grid .product__name {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 1.35417;
  font-weight: 300;
  text-transform: none;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  margin: 0;
}
/* line 37, ../src/scss/components/_products.scss */
.products-grid .product__name a {
  text-decoration: none;
}
/* line 42, ../src/scss/components/_products.scss */
.products-grid .product__reviews {
  min-height: 26px;
  margin-bottom: 13px;
}
/* line 47, ../src/scss/components/_products.scss */
.products-grid .product__price {
  margin-top: 13px;
}
/* line 51, ../src/scss/components/_products.scss */
.products-grid .product__attributes {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 1.95;
}
/* line 53, ../src/scss/components/_products.scss */
.products-grid .product__attributes span {
  display: inline-block;
  white-space: nowrap;
}
/* line 58, ../src/scss/components/_products.scss */
.products-grid .product__attributes span:last-of-type:after {
  content: "";
}
/* line 63, ../src/scss/components/_products.scss */
.products-grid .product__actions {
  margin-top: 13px;
}
/* line 66, ../src/scss/components/_products.scss */
.products-grid .product__actions .button, .products-grid .product__actions .button-minor, .products-grid .product__actions .btn-cart, .products-grid .product__actions .btn-checkout {
  padding-left: 52px;
  padding-right: 52px;
  max-width: 100%;
}

@media only screen and (min-width: 360px) {
  /* line 78, ../src/scss/components/_products.scss */
  .category-products .products-grid .item {
    width: 50%;
  }
}
@media only screen and (min-width: 641px) {
  /* line 88, ../src/scss/components/_products.scss */
  .category-products .products-grid .item {
    width: 33.33333%;
  }
}
@media only screen and (min-width: 700px) {
  /* line 98, ../src/scss/components/_products.scss */
  .category-products .products-grid .item {
    width: 25%;
  }
}
@media only screen and (min-width: 769px) {
  /* line 108, ../src/scss/components/_products.scss */
  .category-products .products-grid .item {
    width: 20%;
  }
}
/* line 1, ../src/scss/components/_repair-errors.scss */
#advice-validate-one-required-by-name-step-1-yezz,
#advice-validate-one-required-by-name-step-1a-buzz-xtra,
#advice-validate-one-required-by-name-step-1a-zapp-extra-2,
#advice-validate-one-required-by-name-step-2-option-4 {
  position: absolute;
  font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
  color: red;
  background: none;
}
/* line 9, ../src/scss/components/_repair-errors.scss */
#advice-validate-one-required-by-name-step-1-yezz:before,
#advice-validate-one-required-by-name-step-1a-buzz-xtra:before,
#advice-validate-one-required-by-name-step-1a-zapp-extra-2:before,
#advice-validate-one-required-by-name-step-2-option-4:before {
  content: '';
  background: url(../images/arrow-error.png) 0 0 no-repeat;
  background-size: 29px 18px;
  border: none;
  position: absolute;
  top: 0;
  left: 280px;
  width: 29px;
  height: 18px;
}

/* line 22, ../src/scss/components/_repair-errors.scss */
#advice-validate-one-required-by-name-step-1-yezz {
  top: 160px;
  right: 120px;
  width: 300px;
}

/* line 27, ../src/scss/components/_repair-errors.scss */
#advice-validate-one-required-by-name-step-1a-buzz-xtra {
  top: 120px;
  right: -300px;
  width: 300px;
}

/* line 32, ../src/scss/components/_repair-errors.scss */
#advice-validate-one-required-by-name-step-1a-zapp-extra-2 {
  top: 160px;
  right: -290px;
  width: 300px;
}

/* line 37, ../src/scss/components/_repair-errors.scss */
#advice-validate-one-required-by-name-step-2-option-4 {
  top: 100px;
  right: 80px;
  width: 300px;
}

@media only screen and (max-width: 640px) {
  /* line 44, ../src/scss/components/_repair-errors.scss */
  #advice-validate-one-required-by-name-step-1-yezz {
    top: 170px;
  }

  /* line 47, ../src/scss/components/_repair-errors.scss */
  #advice-validate-one-required-by-name-step-1a-buzz-xtra {
    top: 190px;
  }

  /* line 50, ../src/scss/components/_repair-errors.scss */
  #advice-validate-one-required-by-name-step-1a-zapp-extra-2 {
    top: 190px;
  }

  /* line 53, ../src/scss/components/_repair-errors.scss */
  #advice-validate-one-required-by-name-step-1-yezz,
  #advice-validate-one-required-by-name-step-1a-buzz-xtra,
  #advice-validate-one-required-by-name-step-1a-zapp-extra-2 {
    right: -140px;
    position: absolute;
  }

  /* line 59, ../src/scss/components/_repair-errors.scss */
  #advice-validate-one-required-by-name-step-2-option-4 {
    top: 90px;
    right: -140px;
    position: absolute;
  }
}
@media only screen and (min-width: 769px) {
  /* line 67, ../src/scss/components/_repair-errors.scss */
  #advice-validate-one-required-by-name-step-1a-buzz-xtra {
    right: -400px;
  }
}
/* line 1, ../src/scss/components/_repair-steps.scss */
.repair-container {
  padding-bottom: 26px;
}
/* line 2, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-title {
  display: none;
}
/* line 3, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-title {
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  font-size: 34px;
  line-height: 42px;
  border-bottom: 1px solid black;
  display: inline-block;
  margin-top: 16px;
  max-width: 800px;
  margin: 0 5px;
  padding: 12px 0;
}
/* line 14, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper {
  line-height: 40px;
  margin-top: 39.81312px;
  background-color: transparent;
}
/* line 18, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step {
  height: 40px;
  border: 1px solid #ccc;
  border-width: 1px 0;
  position: relative;
  text-align: center;
  float: left;
  width: 20%;
  background-color: #eeeeef;
}
/* line 27, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step:after {
  content: '';
  display: inline-block;
  background: url("../images/arrow-inactive.png") 0 0 no-repeat;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 38px;
}
/* line 38, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current {
  background-color: #333333;
  margin-left: 0;
}
/* line 41, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current:before {
  content: '';
  display: inline-block;
  background: url("../images/arrow-active-left.png") 0 0 no-repeat;
  float: right;
  position: absolute;
  top: 0;
  left: -14px;
  width: 14px;
  height: 38px;
}
/* line 52, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current:after {
  background: url("../images/arrow-active.png") 0 0 no-repeat;
  width: 13px;
}
/* line 56, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current label {
  padding: 0;
}
/* line 63, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current.done {
  background-color: #333333;
}
/* line 65, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current.done:first-of-type:before {
  background: none;
}
/* line 72, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step:first-of-type {
  border-width: 1px 0 1px 1px;
}
/* line 75, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step:first-of-type:before {
  background: none;
}
/* line 76, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step:last-of-type:after {
  background: url("../images/arrow-inactive-last.png") 0 0 no-repeat;
  background: url("../images/arrow-inactive-last.png") -1px 1px no-repeat #FFF;
  right: -2px;
  top: -1px;
  height: 40px;
  width: 14px;
}
/* line 86, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current:last-of-type label {
  margin-right: 0;
}
/* line 87, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper .repair-step.current:last-of-type:after {
  background: url("../images/arrow-active-last.jpg") 0 0 no-repeat;
  right: -2px;
}
/* line 94, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper label {
  margin: 0 !important;
}
/* line 100, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper {
  height: 40px;
  margin-right: 2px;
}
/* line 103, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper > div {
  float: left;
  text-align: center;
  width: 20%;
  height: 40px;
  position: relative;
}
/* line 109, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper > div label {
  cursor: default;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  line-height: 16px;
  word-spacing: 30px;
  text-align: center;
  padding: 0;
  position: absolute;
  width: 100%;
  height: 40px;
  display: table;
  z-index: 1;
}
/* line 121, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper > div label span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 1em;
  padding-right: 12px;
  padding-left: 3px;
}
/* line 132, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper > div#step-1 label span {
  padding-left: 3px;
}
/* line 137, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper > div.current {
  background-color: #333333;
  color: #fff;
}
/* line 143, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-wrapper #step-4 .mobile-break {
  display: none;
}
/* line 148, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-products {
  padding-top: 26px;
}
/* line 150, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-products .repair-previous-next {
  margin-top: 26px;
}
/* line 155, ../src/scss/components/_repair-steps.scss */
.repair-container .validation-advice {
  display: table;
}
/* line 157, ../src/scss/components/_repair-steps.scss */
.repair-container .validation-advice:before {
  left: 48%;
}
/* line 165, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-1 .block > label label .normal {
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  font-weight: normal;
}
/* line 173, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-1 .zoom-in .doodle {
  clear: both;
  font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
/* line 182, ../src/scss/components/_repair-steps.scss */
.repair-container #previous-step-2 {
  margin-top: -57px;
}
/* line 183, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 {
  padding: 0 5px;
}
/* line 186, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products > div {
  padding-bottom: 0;
}
/* line 187, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .step-3-title {
  font-size: 19px;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  margin-bottom: 13.33333px;
}
/* line 191, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .step-3-title + input {
  height: 45px;
  width: 700px;
}
/* line 196, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .wrapper {
  padding-bottom: 26px;
}
/* line 198, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .wrapper .step-3-choose {
  float: left;
  padding-bottom: 10px;
}
/* line 202, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .wrapper .select {
  clear: both;
}
/* line 206, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .step-3-comments {
  margin-bottom: 24px;
}
/* line 208, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .step-3-comments .step-3-title {
  text-align: left;
  padding-right: 33.1776px;
  line-height: 47.77574px;
}
/* line 213, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .step-3-comments textarea {
  border: 1px solid #cccccc;
  width: 700px;
}
/* line 219, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .step-3-photos hr {
  height: 1px;
  background-color: #cccccc;
  outline: none;
  border: none;
  margin: 0 0 26px 0;
}
/* line 226, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products .step-3-photos .step-3-title {
  font-size: 19px;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  margin-bottom: 13.33333px;
}
/* line 232, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-3 .repair-products #previous-step3 {
  margin-top: 0;
}
/* line 237, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-4 {
  /** REPAIR STEP 4 **/
}
/* line 240, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-4 .repair-products .step-4-radio .buttons {
  text-align: center;
}
/* line 243, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-4 .repair-products .step-4-radio label {
  width: 100%;
  text-align: center;
  display: inline-block;
  cursor: default;
  float: left;
  font-size: 19.2px;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  line-height: 40px;
}
/* line 253, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-4 .repair-products .step-4-radio .content {
  padding-top: 19px;
  padding-bottom: 48px;
}
/* line 258, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-4 .repair-products .step-4-radio #guarantee_document label {
  text-align: left;
  line-height: normal;
  width: initial;
  display: block;
  font-size: 16px;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  width: 100%;
}
/* line 267, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-4 .repair-products .step-4-radio #guarantee_document input {
  margin: 12px 0;
  clear: both;
  width: 100%;
}
/* line 275, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-4 + form .previous {
  margin-top: -57px;
}
/* line 279, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-5 {
  /** REPAIR STEP 5 **/
}
/* line 280, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-step-5 #newsletter {
  display: inline-block;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -ms-appearance: checkbox;
  -o-appearance: checkbox;
  appearance: checkbox;
}
/* line 293, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-5 .form-list .fields .input-box label[for=newsletter] {
  width: 100%;
}
/* line 301, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-5 .fieldset .actions .f-left {
  margin-top: 8px;
}
/* line 307, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 {
  /** REPAIR STEP 6 **/
  padding: 0 8px;
}
/* line 309, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products {
  display: inline-block;
}
/* line 311, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .left {
  width: 100%;
  display: inline-block;
  padding-bottom: 24px;
}
/* line 315, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .left .left-title {
  font-size: 19px;
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
}
/* line 319, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .left .form-list {
  display: block;
}
/* line 321, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .left .form-list .field {
  margin: 0;
  padding-left: 12px;
}
/* line 324, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .left .form-list .field .column1 {
  float: left;
  width: 40%;
  max-width: 200px;
}
/* line 325, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .left .form-list .field .column2 {
  float: left;
  width: 60%;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 329, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right {
  clear: both;
  width: 100%;
}
/* line 332, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .right-title {
  font-size: 19.2px;
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
  margin: 0 0 6.5px 0;
}
/* line 338, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .model {
  display: inline-block;
  font-size: 19.2px;
  padding-left: 12px;
}
/* line 339, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .type {
  display: inline-block;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 19.2px;
  padding-left: 13px;
}
/* line 342, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary tr th {
  background-color: #fff;
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
  font-size: 14px;
  padding-left: 12px;
}
/* line 349, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary tr:first-of-type {
  border-bottom: 1px solid #000;
}
/* line 350, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary tr:nth-child(odd) {
  background-color: #f1f1f1;
}
/* line 351, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary tr:nth-child(even) {
  background-color: #fff;
}
/* line 353, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary td {
  font-size: 13.33333px;
  padding-left: 12px;
}
/* line 359, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary td.picture img {
  max-width: 100px;
}
/* line 362, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary td .vinkje:before {
  font-family: quinnyicons;
  content: '\e608';
  color: #6ba124;
  margin-left: 8px;
}
/* line 371, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-products .right .repair-summary {
  display: block;
  padding: 24px 0;
}
/* line 377, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-previous-next {
  margin-top: 26px;
}
/* line 379, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-previous-next .previous {
  margin-top: -50px;
}
/* line 385, ../src/scss/components/_repair-steps.scss */
.repair-container form .previous {
  margin-left: 8px;
  margin-top: -83px;
  float: left;
}
/* line 391, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-previous-next {
  display: inline-block;
  width: 100%;
  padding-right: 8px;
}
/* line 395, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-previous-next .next {
  width: 100%;
}
/* line 398, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-previous-next .next .doodle-wrap .arrow {
  display: none;
}
/* line 401, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-previous-next .next .doodle-wrap .doodle {
  clear: both;
  float: left;
  font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
  font-size: 15px;
  padding: 0 12px 12px;
  text-align: left;
  width: 100%;
}
/* line 409, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-previous-next .next .doodle-wrap .doodle:after {
  content: '';
  text-indent: -1000%;
  display: block;
  background: url(../images/repair/arrow-down.png) 0 0 no-repeat;
  background-size: 31px 42px;
  width: 31px;
  height: 42px;
  position: relative;
  top: 30px;
  left: -250px;
  float: right;
  margin-bottom: -42px;
}
/* line 428, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-previous-next > form {
  clear: both;
}
/* line 437, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-products.repair-step-5 + form .previous {
  margin-top: 0;
}
/* line 440, ../src/scss/components/_repair-steps.scss */
.repair-container #repair-step-6 .repair-previous-next .next .doodle-wrap .doodle:after {
  left: -330px;
}
/* line 445, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper {
  padding-top: 45px;
}
/* line 447, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .left {
  float: left;
  width: 40%;
}
/* line 452, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .right {
  float: right;
  width: 60%;
  border-left: 1px solid #e5e5e5;
  padding-left: 26px;
}
/* line 457, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .right .repair-success-title {
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  font-size: 45px;
  border-bottom: 1px solid black;
  line-height: 80px;
  display: inline-block;
  margin-top: 16px;
  max-width: 800px;
}
/* line 466, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .right .success-title {
  padding: 0 0 26px 0;
  font-size: 19px;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 471, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .right .success-text {
  margin-bottom: 26px;
}
/* line 474, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .right .success-text ol li {
  list-style-type: decimal;
  margin-left: 45px;
}
/* line 481, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .summary {
  clear: both;
  padding: 26px 26px 0 26px;
  margin-left: 40%;
}
/* line 485, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .summary .summary-title {
  margin: 26px 0;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 16px;
}
/* line 490, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .summary .form-list {
  display: inline-block;
}
/* line 492, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .summary .form-list .field {
  padding-left: 0;
}
/* line 494, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .summary .form-list .field .column1 {
  display: inline-block;
  width: 120px;
}
/* line 495, ../src/scss/components/_repair-steps.scss */
.repair-container .repair-success-wrapper .summary .form-list .field .column2 {
  display: inline-block;
}

@media only screen and (max-width: 359px) {
  /* line 505, ../src/scss/components/_repair-steps.scss */
  #repair-step-wrapper .repair-step label {
    padding: 0;
  }

  /* line 513, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-3 .repair-products .step-3-title {
    font-size: 16px;
  }

  /* line 521, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-previous-next > form {
    padding-top: 52px;
  }
}
@media only screen and (max-width: 640px) {
  /* line 530, ../src/scss/components/_repair-steps.scss */
  .repair-container #previous-step-1 {
    margin-top: -48px;
  }
  /* line 531, ../src/scss/components/_repair-steps.scss */
  .repair-container #previous-step-2 {
    margin-top: -48px;
  }
  /* line 532, ../src/scss/components/_repair-steps.scss */
  .repair-container #previous-step-3 {
    margin-top: -48px;
  }
  /* line 533, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-question {
    display: none;
  }
  /* line 536, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-wrapper .repair-step label {
    padding: 0;
  }
  /* line 548, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-wrapper #step-2,
  .repair-container #repair-step-wrapper #step-4 {
    margin-top: 0 !important;
  }
  /* line 551, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-wrapper #step-2 .mobile-break,
  .repair-container #repair-step-wrapper #step-4 .mobile-break {
    display: initial !important;
  }
  /* line 556, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-subtitle {
    font-size: 16px;
    margin: 16px 5px 24px;
  }
  /* line 563, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products #repair-step-1 .block,
  .repair-container .repair-products #repair-step-2 .block {
    text-align: center;
    margin-bottom: 24px;
  }
  /* line 566, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products #repair-step-1 .block > label,
  .repair-container .repair-products #repair-step-2 .block > label {
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
    font-size: 16px;
    line-height: normal;
    display: block;
  }
  /* line 571, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products #repair-step-1 .block > label label,
  .repair-container .repair-products #repair-step-2 .block > label label {
    display: block;
  }
  /* line 575, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products #repair-step-1 .block .line,
  .repair-container .repair-products #repair-step-2 .block .line {
    text-indent: -1000%;
    border-bottom: 1px solid #cccccc;
    height: 1px;
    position: relative;
    top: 13px;
    width: 67%;
    margin: 0 auto;
    z-index: -1;
  }
  /* line 585, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products #repair-step-1 .block .title,
  .repair-container .repair-products #repair-step-2 .block .title {
    position: relative;
  }
  /* line 588, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products #repair-step-1 .block.zoom-in,
  .repair-container .repair-products #repair-step-2 .block.zoom-in {
    margin-bottom: 0;
    padding-bottom: 24px;
  }
  /* line 596, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products #repair-step-1 .repair-products-buzz .zoom-in {
    height: 100px;
    display: block;
  }
  /* line 603, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products.repair-step-5 .left {
    padding-top: 24px;
  }
  /* line 605, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products.repair-step-5 .left .actions {
    padding: 12px 0;
  }
  /* line 607, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products.repair-step-5 .right {
    padding-top: 24px;
  }
  /* line 611, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-3 .repair-products {
    position: relative;
  }
  /* line 613, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-3 .repair-products #previous-step-3 {
    margin-top: 0;
    position: absolute;
    bottom: 8px;
  }
  /* line 620, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-4 {
    padding: 0 8px;
  }
  /* line 623, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-4 + form .previous {
    margin-top: -48px;
  }
  /* line 629, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-previous-next .next .doodle-wrap .doodle:after {
    left: -220px;
  }
  /* line 632, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-previous-next .previous {
    margin-top: -41px;
  }

  /* line 636, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .left {
    float: none;
    width: 100%;
    text-align: center;
    padding-bottom: 24px;
  }
  /* line 642, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .right {
    float: none;
    width: 100%;
    clear: both;
    border: none;
    padding: 0 8px;
  }
  /* line 648, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .right .success-title {
    padding-bottom: 0;
  }
  /* line 652, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .summary {
    clear: both;
    padding: 0 8px;
    margin-left: 0;
  }
  /* line 656, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .summary .summary-title {
    margin: 26px 0 0;
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
    font-size: 16px;
  }
  /* line 661, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .summary .form-list {
    display: inline-block;
  }
  /* line 664, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .summary .form-list .field .column1 {
    display: inline-block;
    width: 120px;
  }
  /* line 665, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-success-wrapper .summary .form-list .field .column2 {
    display: inline-block;
  }
}
@media only screen and (max-width: 359px) {
  /* line 677, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-wrapper > div label span {
    font-size: 12px;
  }
}
@media only screen and (min-width: 360px) {
  /* line 690, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-wrapper > div label {
    word-spacing: 0px;
  }
  /* line 692, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-wrapper > div label span {
    font-size: 13px;
  }
  /* line 698, ../src/scss/components/_repair-steps.scss */
  .repair-container #step-2,
  .repair-container #step-4 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* line 710, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-3 .repair-products .step-3-sentence input[type='text'] {
    width: 100%;
    height: 47.77574px;
  }
  /* line 718, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-3 .repair-products .step-3-comments textarea {
    width: 100%;
  }
  /* line 724, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products.repair-step-5 {
    padding: 0 8px;
  }
}
@media only screen and (min-width: 641px) and (max-width: 699px) {
  /* line 735, ../src/scss/components/_repair-steps.scss */
  .repair-container #step-4 .mobile-break {
    display: initial !important;
  }
}
@media only screen and (min-width: 641px) {
  /*.repair-index-index .repair-title {
      display: block;
  }*/
  /* line 750, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-wrapper .repair-step label span {
    font-size: 1em;
  }
  /* line 755, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-wrapper #step-2,
  .repair-container #repair-step-wrapper #step-4 {
    margin-top: 0 !important;
  }
  /* line 760, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-question {
    position: fixed;
    right: 0;
    top: 192px;
    width: 380px;
    padding: 10px;
    padding-right: 57.33089px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    line-height: 26px;
    background: rgba(255, 255, 255, 0.7);
  }
  /* line 771, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-question:before {
    content: '';
    position: absolute;
    top: 20%;
    right: 52px;
    width: 1px;
    height: 60%;
    border-right: 1px solid #e5e5e5;
  }
  /* line 780, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-question:after {
    content: '';
    background: url("../images/bg-telephone.png") 0 0 no-repeat #fff;
    position: absolute;
    top: 26px;
    right: 13px;
    width: 20px;
    height: 20px;
  }
  /* line 791, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-step-title {
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
    font-size: 45px;
    border-bottom: 1px solid #000;
    line-height: 80px;
    display: inline-block;
    margin-top: 16px;
    max-width: 800px;
    margin: 0 5px;
  }
  /* line 801, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-subtitle {
    font-size: 16px;
    margin: 16px 5px 0;
  }
  /* line 805, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-text {
    color: #fff;
    background: #930404;
    padding: 0 24px;
    line-height: 40px;
    margin: 24px 0;
  }
  /* line 808, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 {
    /** REPAIR STEP 1 **/
    text-align: center;
  }
  /* line 810, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .block {
    width: 20%;
    display: inline-block;
    text-align: center;
    margin-left: -5px;
  }
  /* line 815, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .block > label {
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
    font-size: 16px;
    line-height: normal;
  }
  /* line 821, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .block > label label {
    display: block;
    height: 40px;
  }
  /* line 824, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .block > label label .normal {
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
    font-weight: normal;
  }
  /* line 831, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .block .title {
    position: relative;
  }
  /* line 833, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .block .line {
    text-indent: -1000%;
    border-bottom: 1px solid #cccccc;
    height: 1px;
    position: relative;
    top: 13px;
    width: 67%;
    margin: 0 auto;
    z-index: -1;
    overflow: hidden;
  }
  /* line 847, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .zoom-in {
    width: 50%;
    float: right;
  }
  /* line 850, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .zoom-in div {
    display: block;
  }
  /* line 852, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .zoom-in div img {
    max-width: 200px;
  }
  /* line 856, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .zoom-in .doodle {
    clear: both;
    font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
    text-align: center;
    position: relative;
    width: 100%;
    top: 50px;
  }
  /* line 863, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .zoom-in .doodle:before {
    content: '';
    text-indent: -1000%;
    display: block;
    background: url("../images/arrow-left.png") 0 0 no-repeat;
    background-size: 43px 34px;
    width: 43px;
    height: 34px;
    position: relative;
    top: -10px;
  }
  /* line 878, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products-buzz .zoom-in .doodle,
  .repair-container .repair-products-zapp .zoom-in .doodle {
    font-size: 16px;
  }
  /* line 882, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .repair-products-zapp .zoom-in {
    width: 40%;
    margin-right: 0;
  }
  /* line 885, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-1 .repair-products-zapp .zoom-in .doodle {
    font-size: 14px;
    float: none;
    position: relative;
    top: 24px;
  }
  /* line 892, ../src/scss/components/_repair-steps.scss */
  .repair-container .repair-products-wrapper,
  .repair-container .repair-products-buzz,
  .repair-container .repair-products-zapp {
    padding-bottom: 48px;
  }

  /* line 896, ../src/scss/components/_repair-steps.scss */
  .form-button-previous {
    clear: both;
    padding-left: 5px;
  }

  /* line 897, ../src/scss/components/_repair-steps.scss */
  #previous-step-1 {
    margin-top: -57px;
    float: left;
  }

  /* line 902, ../src/scss/components/_repair-steps.scss */
  .repair-previous-next .previous {
    float: left;
    margin-top: -49px;
  }
  /* line 907, ../src/scss/components/_repair-steps.scss */
  .repair-previous-next .arrow {
    text-indent: -1000%;
    display: block;
    height: 16px;
    width: 100px;
    background: url("../images/arrow-right-down.png") 100% 0 no-repeat;
    float: right;
    margin-top: 9px;
  }
  /* line 916, ../src/scss/components/_repair-steps.scss */
  .repair-previous-next .next {
    clear: both;
    float: right;
  }
  /* line 920, ../src/scss/components/_repair-steps.scss */
  .repair-previous-next .button, .repair-previous-next .button-minor, .repair-previous-next .btn-cart, .repair-previous-next .btn-checkout {
    padding-top: 24px;
  }

  /* line 923, ../src/scss/components/_repair-steps.scss */
  .repair-products {
    /** REPAIR STEP 2 **/
  }
  /* line 925, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper {
    display: block;
    width: 100%;
    text-align: center;
  }
  /* line 929, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio {
    display: inline-block;
    width: 20%;
    text-align: center;
  }
  /* line 934, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio label img,
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio label label {
    display: block;
    margin: 0 auto;
  }
  /* line 936, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio label label {
    text-align: center;
  }
  /* line 938, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio label label img,
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio label label label {
    display: block;
    margin: 0 auto;
  }
  /* line 940, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio label label label {
    text-align: center;
    height: 52px;
    display: table;
    vertical-align: middle;
  }
  /* line 945, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio label label label p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
  }
  /* line 953, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio .line {
    text-indent: -10000%;
    border-bottom: 1px solid #cccccc;
    height: 1px;
    position: relative;
    top: 13px;
    width: 67%;
    margin: 0 auto;
    z-index: -1;
  }
  /* line 963, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-2 .step-2-wrapper .step-2-radio .title {
    position: relative;
  }
  /* line 967, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 {
    /** REPAIR STEP 3 **/
    min-height: 235px;
  }
  /* line 972, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .wrapper {
    padding-bottom: 52px;
  }
  /* line 974, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .wrapper .step-3-choose {
    float: left;
  }
  /* line 977, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .wrapper .selectChange3 {
    border: 1px solid #cccccc;
    /* Removes / adds border */
    -webkit-appearance: none;
    /* Removes default chrome and safari style */
    -moz-appearance: none;
    /* Removes Default Firefox style */
    width: 440px;
    /* Width of select dropdown to give space for arrow image */
    text-indent: 0.01px;
    /* Removes default arrow from firefox */
    text-overflow: "";
    /* Removes default arrow from firefox */
    /* My custom style for fonts */
    height: 47.77574px;
    color: #fff;
    border-radius: 0;
    padding: 5px;
    background: #333333 url(../images/arrow-selectbox-down-white.jpg) no-repeat 95% center;
    display: block;
  }
  /* line 990, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .wrapper .selectChange3:before {
    display: block;
    content: '';
    position: absolute;
    top: 10%;
    right: 57.33089px;
    width: 0;
    height: 80%;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
  /* line 1000, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .wrapper .selectChange3:after {
    content: '';
    border-top: 4px solid transparent;
    border-left: 8px solid white;
    border-bottom: 4px solid transparent;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 33.1776px;
    margin-top: -3.72109px;
    text-align: center;
  }
  /* line 1014, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .wrapper .select {
    clear: both;
  }
  /* line 1016, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .wrapper .select .left {
    margin-left: 0;
  }
  /* line 1019, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 .repair-products .step-3-dropdown .step-3-comments {
    margin-top: -34px;
  }
  /* line 1024, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-3 form .previous {
    margin-top: -58px;
  }
  /* line 1028, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 {
    /** REPAIR STEP 4 **/
  }
  /* line 1030, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio {
    margin: 26px 0;
    width: 50%;
    float: left;
  }
  /* line 1034, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio.left {
    padding-bottom: 48px;
  }
  /* line 1035, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio.right {
    padding-left: 34px;
    padding-bottom: 48px;
  }
  /* line 1039, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio .buttons {
    float: left;
    margin-right: 19px;
  }
  /* line 1043, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio label {
    text-align: left;
    display: inline-block;
    float: left;
    line-height: 40px;
    width: initial;
  }
  /* line 1050, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio .content {
    clear: both;
    padding-top: 48px;
    padding-bottom: 0;
  }
  /* line 1054, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio .content input {
    width: 100%;
    line-height: 34px;
  }
  /* line 1058, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio .content #file {
    line-height: 12px;
    padding: 9px;
    margin-bottom: 0;
  }
  /* line 1064, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio.left .content {
    border-right: 1px solid #cccccc;
    padding-right: 34px;
    min-height: 180px;
  }
  /* line 1068, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio.left .content .label {
    font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
    font-size: 16px;
    margin-top: 24px;
  }
  /* line 1073, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio.left .content p {
    margin-top: 0;
  }
  /* line 1078, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio p {
    clear: both;
  }
  /* line 1079, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio .title {
    margin-bottom: 26px;
    display: block;
  }
  /* line 1083, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-4 .repair-products .step-4-radio .title label span {
    margin: -5px 0 0 16px;
  }
  /* line 1098, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 {
    /** REPAIR STEP 5 **/
  }
  /* line 1100, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .left {
    width: 50%;
    float: right;
    padding: 0 0 0 26px;
  }
  /* line 1101, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .right {
    width: 50%;
    float: left;
    padding: 0 26px 0 0;
  }
  /* line 1102, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .field.name-firstname {
    float: left;
  }
  /* line 1105, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .fields.email-address .field {
    width: 100%;
  }
  /* line 1108, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .fields.address .street {
    width: 70%;
  }
  /* line 1109, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .fields.address .number {
    width: 30%;
  }
  /* line 1112, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .fields.zipcity .zip {
    width: 30%;
  }
  /* line 1113, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .fields.zipcity .city {
    width: 70%;
  }
  /* line 1115, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 .fields .input-remark {
    width: 200%;
  }
  /* line 1117, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-step-5 #newsletter {
    display: inline-block;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    -ms-appearance: checkbox;
    -o-appearance: checkbox;
    appearance: checkbox;
  }
  /* line 1126, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-products.repair-step-5 {
    padding: 0 0 26px 0;
    display: inline-block;
    width: 100%;
  }
  /* line 1140, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-success-wrapper .summary .form-list field column1 {
    width: 150px;
    display: inline-block;
  }
  /* line 1144, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-success-wrapper .summary .form-list field column2 {
    display: inline-block;
  }
  /* line 1152, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-5 .form-list .fields .name-firstname {
    width: 40%;
  }
  /* line 1153, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-5 .form-list .fields .name-middlename {
    width: 20%;
  }
  /* line 1154, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-5 .form-list .fields .name-lastname {
    width: 40%;
  }
  /* line 1156, ../src/scss/components/_repair-steps.scss */
  .repair-products .repair-container #repair-step-5 .form-list .fields .newsletter-field .input-box {
    width: 200%;
  }
  /* line 1162, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-5-login .fieldset .form-list .fields .field {
    width: 100%;
  }
  /* line 1166, ../src/scss/components/_repair-steps.scss */
  .repair-products #repair-step-5-login .fieldset .buttons-set .button, .repair-products #repair-step-5-login .fieldset .buttons-set .button-minor, .repair-products #repair-step-5-login .fieldset .buttons-set .btn-cart, .repair-products #repair-step-5-login .fieldset .buttons-set .btn-checkout {
    float: right;
  }
}
@media only screen and (min-width: 641px) and (min-width: 641px) and (max-width: 768px) {
  /* line 1178, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-2 .repair-products .step-2-radio > label label {
    height: 42px;
    line-height: 16px;
  }
  /* line 1186, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-4 {
    padding: 0 8px;
  }
  /* line 1190, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-4 .repair-products .step-4-radio label {
    display: block;
    width: 100%;
    text-align: center;
  }
  /* line 1195, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-4 .repair-products .step-4-radio .buttons {
    float: none;
    margin-right: 0 !important;
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media only screen and (min-width: 641px) and (min-width: 769px) {
  /* line 1212, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-wrapper .repair-step label {
    font-size: 19px;
  }
  /* line 1218, ../src/scss/components/_repair-steps.scss */
  .repair-container form .previous {
    margin-left: 0;
  }
}
@media only screen and (min-width: 641px) and (min-width: 1025px) {
  /* line 1229, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-wrapper .repair-step label {
    font-size: 19px;
  }
  /* line 1236, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right {
    clear: none;
    width: 60%;
    float: left;
  }
  /* line 1241, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .left {
    width: 40%;
    float: left;
  }
  /* line 1247, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 {
    /** REPAIR STEP 6 **/
    padding: 0 8px;
  }
  /* line 1251, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .left .left-title {
    margin: 0 0 6.5px 0;
  }
  /* line 1256, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .left .form-list .field {
    margin: 0;
  }
  /* line 1258, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .left .form-list .field .column1 {
    float: left;
    width: 40%;
  }
  /* line 1259, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .left .form-list .field .column2 {
    float: left;
    width: 60%;
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  }
  /* line 1264, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .right-title {
    font-size: 19.2px;
    font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
    margin: 0 0 6.5px 0;
  }
  /* line 1269, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .model {
    display: inline-block;
    font-size: 19.2px;
    padding-left: 26px;
  }
  /* line 1270, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .type {
    display: inline-block;
    font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
    font-size: 19.2px;
    padding-left: 13px;
  }
  /* line 1274, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary tr th {
    background-color: #fff;
    font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
    font-size: 14px;
    padding-left: 26px;
  }
  /* line 1281, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary tr:first-of-type {
    border-bottom: 1px solid #000;
  }
  /* line 1282, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary tr:nth-child(odd) {
    background-color: #f1f1f1;
  }
  /* line 1283, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary tr:nth-child(even) {
    background-color: #fff;
  }
  /* line 1285, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary td {
    font-size: 13.33333px;
    padding-left: 26px;
  }
  /* line 1291, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary td.picture img {
    max-width: 100px;
  }
  /* line 1294, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary td .vinkje:before {
    font-family: quinnyicons;
    content: '\e608';
    color: #6ba124;
    margin-left: 8px;
  }
  /* line 1303, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-products .right .repair-summary {
    display: block;
    padding: 24px 0;
  }
  /* line 1312, ../src/scss/components/_repair-steps.scss */
  .repair-container #repair-step-6 .repair-previous-next .next .doodle-wrap .doodle {
    text-align: right;
  }
}
@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 {
  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 {
  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 {
  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--hamburger {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: 0px -63px;
  width: 34px;
  height: 20px;
}
@media only screen and (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--hamburger {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: 0px -126px;
    width: 67px;
    height: 39px;
    background-position: 0px -63px;
    height: 20px;
    width: 34px;
    background-size: 97px 83px;
  }
}
/* line 22, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .sprite--hamburger {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: 0px -63px;
  width: 34px;
  height: 20px;
}

/* line 1, ../src/scss/components/_font-icons.scss */
.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 13, ../src/scss/components/_font-icons.scss */
.icon-l:before {
  content: "\51";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 1, ../src/scss/components/_tabs.scss */
.tabs {
  margin-top: 26px;
}
/* line 3, ../src/scss/components/_tabs.scss */
.tabs .tab-links {
  background-color: #fff;
}
/* line 5, ../src/scss/components/_tabs.scss */
.tabs .tab-links li {
  border: 1px solid #e5e5e5;
  border-width: 1px 1px 0 1px;
  margin: 0;
  padding: 0;
}
/* line 10, ../src/scss/components/_tabs.scss */
.tabs .tab-links li a {
  font-size: 19px;
  text-decoration: none;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  color: #cccccc;
}
/* line 17, ../src/scss/components/_tabs.scss */
.tabs .tab-links li.active {
  border: 1px solid #999999;
  border-width: 1px 1px 0 1px;
  padding: 0;
  border-bottom: 1px solid #FFF;
  margin-bottom: -1px;
}
/* line 23, ../src/scss/components/_tabs.scss */
.tabs .tab-links li.active a {
  color: #000;
}
/* line 28, ../src/scss/components/_tabs.scss */
.tabs .tab-content {
  padding: 26px;
  border: 1px solid #999999;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}
/* line 35, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .top {
  display: inline-block;
  padding: 0 0 12px;
}
/* line 39, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .left {
  display: inline-block;
  width: 100%;
}
/* line 46, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li img {
  width: 100px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  /* For IE8 and earlier */
}
/* line 52, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li:first-of-type img {
  opacity: 1;
  filter: alpha(opacity=100);
  /* For IE8 and earlier */
}
/* line 58, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li.active img {
  opacity: 1;
  filter: alpha(opacity=100);
  /* For IE8 and earlier */
}
/* line 64, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li.inactive img {
  opacity: 0.5;
  filter: alpha(opacity=50);
  /* For IE8 and earlier */
}
/* line 69, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li#thumb4, .tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li#thumb5, .tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li#thumb6, .tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li#thumb7 {
  display: none;
}
/* line 79, ../src/scss/components/_tabs.scss */
.tabs .tab-content #tab1 .left #left-large-image {
  float: left;
}

@media only screen and (max-width: 640px) {
  /* line 89, ../src/scss/components/_tabs.scss */
  .tabs {
    margin-top: 0;
  }
  /* line 93, ../src/scss/components/_tabs.scss */
  .tabs .tab-links li a {
    font-size: 13px;
    padding: 5px;
  }
  /* line 97, ../src/scss/components/_tabs.scss */
  .tabs .tab-links li.active {
    margin-top: -6px;
    padding: 0 0 6px;
  }
  /* line 103, ../src/scss/components/_tabs.scss */
  .tabs .tab-content {
    padding: 26px 8px;
  }
  /* line 107, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-thumb-images {
    min-width: 100px;
    width: 100%;
    float: none;
  }
  /* line 112, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li {
    display: inline-block;
  }
  /* line 114, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li img {
    width: 80px;
  }
  /* line 120, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-large-image {
    width: 100%;
  }
  /* line 123, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-large-image .jTagContainer .desc {
    font-size: 14px;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  /* line 138, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left {
    padding-left: 0;
  }
  /* line 140, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-thumb-images {
    min-width: 100px;
    width: 100%;
    float: none;
    margin-left: 0;
  }
  /* line 146, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li {
    display: inline-block;
  }
  /* line 148, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-thumb-images #thumbs ul li img {
    width: 80px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 164, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left {
    padding-left: 100px;
  }
  /* line 166, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-thumb-images {
    margin-left: -100px;
    width: 80px;
    float: left;
  }
  /* line 171, ../src/scss/components/_tabs.scss */
  .tabs .tab-content #tab1 .left #left-large-image {
    width: 100%;
  }
}
/* line 11, ../src/scss/components/_toolbar.scss */
.toolbar__amount,
.toolbar__limiter,
.toolbar__pages {
  text-align: center;
}

/* line 18, ../src/scss/components/_toolbar.scss */
.toolbar__view-mode,
.toolbar__sort-by {
  text-align: center;
}

/* line 25, ../src/scss/components/_toolbar.scss */
.toolbar__pages {
  width: 100%;
  text-align: center;
}
/* line 29, ../src/scss/components/_toolbar.scss */
.toolbar__pages .pages, .toolbar__pages ol, .toolbar__pages li {
  display: inline-block;
}
/* line 38, ../src/scss/components/_toolbar.scss */
.toolbar__pages li span, .toolbar__pages li a {
  display: block;
  padding: 6.5px;
}

/* line 46, ../src/scss/components/_toolbar.scss */
.toolbar__view-mode label, .toolbar__view-mode strong, .toolbar__view-mode a {
  display: inline-block;
}

@media only screen and (min-width: 641px) {
  /* line 53, ../src/scss/components/_toolbar.scss */
  .toolbar__amount,
  .toolbar__limiter,
  .toolbar__pages {
    width: 33.33333%;
  }

  /* line 59, ../src/scss/components/_toolbar.scss */
  .toolbar__view-mode,
  .toolbar__sort-by {
    width: 50%;
  }

  /* line 64, ../src/scss/components/_toolbar.scss */
  .toolbar__amount {
    text-align: left;
  }

  /* line 68, ../src/scss/components/_toolbar.scss */
  .toolbar__pages {
    text-align: center;
  }

  /* line 72, ../src/scss/components/_toolbar.scss */
  .toolbar__limiter {
    text-align: right;
  }

  /* line 76, ../src/scss/components/_toolbar.scss */
  .toolbar__view-mode {
    text-align: left;
  }

  /* line 80, ../src/scss/components/_toolbar.scss */
  .toolbar__sort-by {
    text-align: right;
  }
}
/* line 1, ../src/scss/components/_tooltip.scss */
a.tooltips {
  position: relative;
  top: 5px;
  display: inline-block;
  background: url("../images/tooltip.png") 0 0 transparent;
  width: 18px;
  height: 18px;
}
/* line 9, ../src/scss/components/_tooltip.scss */
a.tooltips span {
  position: absolute;
  width: 250px;
  color: #FFFFFF;
  background: #000000;
  line-height: 18px;
  text-align: center;
  visibility: hidden;
  padding: 12px;
  font-size: 16px;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
}
/* line 20, ../src/scss/components/_tooltip.scss */
a.tooltips span:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 25%;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 8px solid #000000;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

/* line 34, ../src/scss/components/_tooltip.scss */
a:hover.tooltips span {
  visibility: visible;
  opacity: 0.8;
  bottom: 30px;
  left: 50%;
  margin-left: -76px;
  z-index: 999;
}

/* 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 #999999;
  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: #666666;
  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: #999999;
  height: 1px;
  content: "";
}

@media only screen and (max-width: 768px) {
  /* line 47, ../src/scss/components/_spacer.scss */
  .spacer:before {
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 769px) {
  /* line 56, ../src/scss/components/_spacer.scss */
  .spacer:before {
    left: -26px;
    left: -1.625rem;
    right: -26px;
    right: -1.625rem;
  }
}
/*
@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%;
}

/* line 7, ../src/scss/layout/_global.scss */
body {
  color: #333;
}

/* line 11, ../src/scss/layout/_global.scss */
::selection {
  background: #999999;
  color: #fff;
  text-shadow: none;
}

/**
 * Main is the container.
 **/
/**
 * Wrapper wraps the main content of the shop.
 **/
/* line 32, ../src/scss/layout/_global.scss */
.wrapper {
  margin-left: 0;
}

/* line 37, ../src/scss/layout/_global.scss */
.breadcrumbs {
  padding-left: 52px;
}

/**
 * Extend the default Magento columns to the grid.
 **/
/* line 46, ../src/scss/layout/_global.scss */
.col-main,
.col-left,
.col-right {
  min-height: 1px;
  padding-left: 0;
}

/* line 55, ../src/scss/layout/_global.scss */
.col-main .background {
  height: 0;
}
/* line 60, ../src/scss/layout/_global.scss */
.col2-left-layout .col-main {
  margin-top: 52px;
}
/* line 68, ../src/scss/layout/_global.scss */
.col3-layout .col-main {
  margin-top: 52px;
}

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

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

/* Mobile breaks - show only on mobile devices to shorten words */
/* add span class in translation file */
/* line 115, ../src/scss/layout/_global.scss */
.mobile-break {
  display: none;
}

@media only screen and (max-width: 359px) {
  /* line 120, ../src/scss/layout/_global.scss */
  .mobile-break {
    display: initial !important;
  }
}
@media only screen and (max-width: 768px) {
  /* line 128, ../src/scss/layout/_global.scss */
  .customer-account-create #form-validate {
    padding: 10px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 136, ../src/scss/layout/_global.scss */
  .main-container {
    padding: 10px;
    padding-bottom: 0;
    border-bottom: none;
    padding-top: 0;
    position: relative;
    z-index: 0;
  }

  /* line 144, ../src/scss/layout/_global.scss */
  .col-main {
    margin-top: 0;
  }
  /* line 147, ../src/scss/layout/_global.scss */
  .col2-left-layout .col-main {
    width: 80%;
  }
  /* line 151, ../src/scss/layout/_global.scss */
  .col2-right-layout .col-main {
    width: 80%;
  }
  /* line 155, ../src/scss/layout/_global.scss */
  .col3-layout .col-main {
    width: 60%;
  }

  /* line 160, ../src/scss/layout/_global.scss */
  .col-left {
    margin-top: 26px;
  }
  /* line 163, ../src/scss/layout/_global.scss */
  .col2-left-layout .col-left, .col2-right-layout .col-left, .col3-layout .col-left {
    width: 20%;
  }

  /* line 171, ../src/scss/layout/_global.scss */
  .col-right {
    margin-top: 26px;
  }
  /* line 174, ../src/scss/layout/_global.scss */
  .col2-left-layout .col-right, .col2-right-layout .col-right, .col3-layout .col-right {
    width: 20%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* line 184, ../src/scss/layout/_global.scss */
  .main-container {
    padding-top: 0;
  }
}
/**
 * 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: 12px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  /* 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: #e5e5e5;
  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;
  /* Green arrow icon on hover */
}
/* line 61, ../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 66, ../src/scss/layout/_header.scss */
.header__back-link .header-icon:after {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-color: #000;
  border-width: 5px 10px 5px 0;
  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,
.header__account-link {
  float: right;
}
/* line 159, ../src/scss/layout/_header.scss */
.header__cart .arrow,
.header__search .arrow,
.header__account-link .arrow {
  display: none;
}
/* line 164, ../src/scss/layout/_header.scss */
.header__cart .skip-active .arrow,
.header__search .skip-active .arrow,
.header__account-link .skip-active .arrow {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -3px;
  z-index: 101;
  margin-left: -15px;
}
/* line 172, ../src/scss/layout/_header.scss */
.header__cart .skip-active .arrow:before,
.header__search .skip-active .arrow:before,
.header__account-link .skip-active .arrow:before {
  display: block;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-color: #e5e5e5;
  border-width: 0 15px 20px 15px;
  display: block;
  position: absolute;
  z-index: 1;
  content: "";
}
/* line 180, ../src/scss/layout/_header.scss */
.header__cart .skip-active .arrow:after,
.header__search .skip-active .arrow:after,
.header__account-link .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: "";
}

/* Not visible on small. Fav and contact is visible on small in the expanded menu */
/* line 193, ../src/scss/layout/_header.scss */
.header__account-link,
.header__fav,
.header__contact-link {
  display: none;
}

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

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

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

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

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

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

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

  /* line 257, ../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 264, ../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 273, ../src/scss/layout/_header.scss */
  .header__account-link a:hover,
  .header__contact-link a:hover {
    color: #6ba124;
  }

  /* Border */
  /* line 280, ../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: #e5e5e5;
    content: "";
  }
}
/* line 1, ../src/scss/layout/_header.account.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;
}

@media only screen and (min-width: 1025px) {
  /* line 13, ../src/scss/layout/_header.account.scss */
  .header__account-link {
    position: relative;
  }

  /**
   * [1] Align right border with border of icon of trigger.
   **/
  /* line 20, ../src/scss/layout/_header.account.scss */
  .my-account-nav {
    left: auto;
    right: -1px;
    width: 12.5em;
  }
  /* line 25, ../src/scss/layout/_header.account.scss */
  .my-account-nav a {
    padding: 6.5px 13px;
    padding: 0.40625rem 0.8125rem;
  }
}
/* line 1, ../src/scss/layout/_header.dropdown.scss */
.header__dropdown {
  position: absolute;
  right: 0;
  margin-top: 6px;
  z-index: 100;
  text-align: left;
  background: #fff;
  max-height: 0;
  transition: max-height 0.15s ease-out;
  overflow: hidden;
}
/* line 13, ../src/scss/layout/_header.dropdown.scss */
.header__dropdown .links {
  padding: 12px;
  border: 1px solid #e5e5e5;
}
/* line 19, ../src/scss/layout/_header.dropdown.scss */
.header__dropdown#minicart-detail .minicart-wrapper {
  padding: 12px;
}

/* line 25, ../src/scss/layout/_header.dropdown.scss */
.header__dropdown.skip-active {
  display: block;
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}
/* line 29, ../src/scss/layout/_header.dropdown.scss */
.header__dropdown.skip-active#minicart-detail {
  border: 1px solid #e5e5e5;
  max-height: 200px;
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  /* line 37, ../src/scss/layout/_header.dropdown.scss */
  .header__dropdown {
    margin-top: 0;
  }

  /* line 42, ../src/scss/layout/_header.dropdown.scss */
  .header__dropdown.skip-active#minicart-detail {
    width: 400px;
  }
}
/* 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--has-products .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;
  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 26, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .title {
  font-size: 23.04px;
  font-size: 1.44rem;
  display: block;
}
/* line 31, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .link-to-cart {
  text-decoration: underline;
}
/* line 35, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .totals {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
  padding-top: 13px;
  padding-top: 0.8125rem;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1;
}
/* line 44, ../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 #e5e5e5;
}
/* line 60, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .product__image,
.minicart__detail .product__price {
  width: 20%;
}
/* line 65, ../src/scss/layout/_header.minicart.scss */
.minicart__detail .product__name {
  width: 60%;
}

/* line 70, ../src/scss/layout/_header.minicart.scss */
.minicart__actions {
  margin-top: 26px;
}

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

  /* line 85, ../src/scss/layout/_header.minicart.scss */
  .minicart__summary__info .amount {
    top: 13px;
  }

  /**
   * [2] Align top border with header border-bottom.
   **/
  /* line 93, ../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 #e5e5e5;
}

/* <ul> which holds the <li> children */
/* line 8, ../src/scss/layout/_header.navigation.scss */
.navigation__list {
  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 */
}
/* line 12, ../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 #e5e5e5;
  background: #fff;
  text-decoration: none;
  text-transform: none;
  color: #000;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out;
}
/* 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 {
  display: block;
  /* Hide when client has JS */
}
/* line 56, ../src/scss/layout/_header.navigation.scss */
.js .navigation__list li.level0 ul.level0 {
  display: none;
}
/* line 61, ../src/scss/layout/_header.navigation.scss */
.navigation__list li.level0 ul.level0 li > a {
  padding-left: 39px;
  padding-left: 2.4375rem;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
  border-bottom: 1px solid #eeeef0;
  text-decoration: none;
  text-transform: none;
  color: #000;
  background: #cccccc;
}
/* line 77, ../src/scss/layout/_header.navigation.scss */
.js .navigation__list li.level0.s-active ul.level0 {
  display: block;
}

@media only screen and (min-width: 1025px) {
  /* Parent nav element */
  /* line 87, ../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 94, ../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. */
    /* 1st level sub parent */
    /* 1st level sub items */
    /* 1st level sub items on hover */
  }
  /* line 97, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 {
    float: left;
  }
  /* line 99, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0.mobile-nav {
    display: none;
  }
  /* line 103, ../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 111, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 > a:hover, .navigation__list li.level0 > a:focus {
    color: #6ba124;
  }
  /* line 119, ../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 131, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.s-active,
  .navigation__list li.parent {
    position: static;
  }
  /* line 135, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.s-active:after,
  .navigation__list li.parent:after {
    display: none;
  }
  /* line 141, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 {
    max-height: 0;
    transition: max-height 0.15s ease-out;
    overflow: hidden;
    position: absolute;
    z-index: 200;
    margin-top: -0.125em;
    border-top: 0;
    min-width: 240px;
    /* 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 154, ../src/scss/layout/_header.navigation.scss */
  .no-js .navigation__list li.level0 ul.level0 {
    display: none;
  }
  /* line 159, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0:before {
    display: block;
    left: -1px;
    top: 0;
    right: -1px;
    height: 3px;
    background: #000;
    content: "";
  }
  /* line 170, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0:hover ul.level0 {
    display: block;
    min-width: 240px;
    border: 1px solid #e5e5e5;
    border-top: none;
    max-height: 500px;
    transition: max-height .7s;
    /* Show when client has JS. Show on mouse over. */
  }
  /* line 179, ../src/scss/layout/_header.navigation.scss */
  .no-js .navigation__list li.level0:hover ul.level0 {
    display: block;
  }
  /* line 182, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0:hover ul.level0 ul.level0 {
    border: 1px solid #e5e5e5;
    border-top: none;
  }
  /* line 189, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 {
    display: block;
    /* Hide when client has JS */
  }
  /* line 194, ../src/scss/layout/_header.navigation.scss */
  .js .navigation__list li.level0 ul.level0 {
    display: block;
  }
  /* line 199, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li {
    display: block;
    float: none;
    height: 40px;
  }
  /* line 204, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li a {
    padding: 10px;
    padding: 0.625rem;
    background: #fff;
    display: block;
  }
  /* line 209, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li.last {
    margin-bottom: 6px;
  }
  /* line 215, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li > a:hover {
    background-color: #6ba124;
    color: #fff;
  }
  /* line 219, ../src/scss/layout/_header.navigation.scss */
  .navigation__list li.level0 ul.level0 li > a:hover:after {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 228, ../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;
  }
}
/* line 1, ../src/scss/layout/_footer.scss */
.cms-home .usp {
  margin: 0;
  clear: both;
}

/* line 5, ../src/scss/layout/_footer.scss */
.usp {
  padding: 10px;
  padding-top: 16px;
  margin: 48px 0 0 0;
  border: 1px solid #e5e5e5;
  border-width: 1px 0;
  clear: both;
}
/* line 14, ../src/scss/layout/_footer.scss */
.usp ul li .usp-1 {
  background-position: 50% -40px;
}
/* line 17, ../src/scss/layout/_footer.scss */
.usp ul li .usp-2 {
  background-position: 50% -80px;
}
/* line 19, ../src/scss/layout/_footer.scss */
.usp ul li .usp-2 + span {
  top: -6px;
}
/* line 23, ../src/scss/layout/_footer.scss */
.usp ul li .usp-3 {
  background-position: 50% -118px;
}
/* line 26, ../src/scss/layout/_footer.scss */
.usp ul li div {
  background-image: url("../images/sprite-desktop.png");
  background-repeat: no-repeat;
  display: inline-block;
  width: 78px;
  height: 40px;
  border-right: 1px solid #e5e5e5;
}
/* line 34, ../src/scss/layout/_footer.scss */
.usp ul li div + span {
  position: relative;
  top: -16px;
  padding-left: 16px;
  display: inline-block;
  margin-top: 8.66667px;
  line-height: 16px;
}
/* line 43, ../src/scss/layout/_footer.scss */
.usp ul li:last-of-type span {
  top: -3px;
}

/* line 51, ../src/scss/layout/_footer.scss */
.pre-footer {
  padding: 10px;
  padding-top: 0;
}
/* line 54, ../src/scss/layout/_footer.scss */
.pre-footer .contact {
  padding: 45px 0;
}
/* line 58, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home h3 {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 19px;
}
/* line 63, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul .telephone {
  padding: 0;
  display: table;
  width: 100%;
  line-height: 16px;
  padding-bottom: 16px;
}
/* line 69, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul .telephone .icon {
  background-position: -13px -128px;
  float: left;
}
/* line 73, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul .telephone .text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
/* line 77, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul .telephone .text .number {
  font-size: 17px;
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
  padding-top: 5px;
}
/* line 84, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul .contact {
  padding: 0;
  display: table;
  line-height: 16px;
}
/* line 88, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul .contact .icon {
  background-position: -13px -169px;
}
/* line 91, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul .contact span {
  display: table-cell;
  line-height: 16px;
  vertical-align: middle;
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
}
/* line 98, ../src/scss/layout/_footer.scss */
.pre-footer .contact .contact-home ul li .icon {
  background: url("../images/home-sprite.gif") 0 0 no-repeat;
  width: 30px;
  height: 30px;
  box-sizing: initial;
  padding-right: 12px;
}
/* line 108, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter {
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
  width: 100%;
}
/* line 113, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter h5 {
  line-height: normal;
  margin-bottom: 0;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 19px;
}
/* line 114, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter > div {
  width: 50%;
}
/* line 117, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter .payment-icons {
  width: 100%;
  clear: both;
  text-align: right;
  padding: 24px 12% 24px 0;
}
/* line 124, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter .right .payment-icons {
  padding-top: 8px;
}
/* line 126, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter .right .payment-icons img {
  padding-right: 3px;
}
/* line 129, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter .right .payment-icons img:first-of-type {
  padding-right: 8px;
}
/* line 134, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter a {
  text-decoration: none;
  line-height: 18px;
}
/* line 137, ../src/scss/layout/_footer.scss */
.pre-footer .subfooter a:hover {
  text-decoration: underline;
}
/* line 140, ../src/scss/layout/_footer.scss */
.pre-footer .left {
  float: left;
  padding-right: 8px;
}
/* line 143, ../src/scss/layout/_footer.scss */
.pre-footer .left li {
  line-height: 14px;
  margin: 8px 0;
}
/* line 145, ../src/scss/layout/_footer.scss */
.pre-footer .right {
  float: right;
}
/* line 147, ../src/scss/layout/_footer.scss */
.pre-footer .right li {
  line-height: 14px;
  margin: 8px 0;
}
/* line 149, ../src/scss/layout/_footer.scss */
.pre-footer .footer-social {
  display: block;
  padding-top: 16px;
  float: right;
}
/* line 154, ../src/scss/layout/_footer.scss */
.pre-footer .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;
  margin-right: 10px;
  float: left;
  min-width: 140px;
}
/* line 165, ../src/scss/layout/_footer.scss */
.pre-footer .footer-social .text-hidden, .pre-footer .footer-social .sprite {
  display: inline-block;
  width: 40px;
  height: 40px;
}
/* line 169, ../src/scss/layout/_footer.scss */
.pre-footer .footer-social .text-hidden a, .pre-footer .footer-social .sprite a {
  display: block;
  width: 40px;
  height: 40px;
}
/* line 175, ../src/scss/layout/_footer.scss */
.pre-footer .footer-social .icon-fb {
  background: url("../images/home-sprite.gif") -14px -205px no-repeat;
}
/* line 176, ../src/scss/layout/_footer.scss */
.pre-footer .footer-social .icon-yt {
  background: url("../images/home-sprite.gif") -14px -246px no-repeat;
  margin-left: -6.5px;
}
/* line 179, ../src/scss/layout/_footer.scss */
.pre-footer .home-text h2 {
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  font-size: 26px;
  border-bottom: 1px solid #000;
}
/* line 184, ../src/scss/layout/_footer.scss */
.pre-footer .home-text h3 {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 16px;
}

/* line 190, ../src/scss/layout/_footer.scss */
.cms-home .home-text p {
  font-size: 13px;
  line-height: 26px;
  display: block;
}

/* line 192, ../src/scss/layout/_footer.scss */
.footer {
  padding: 10px 10px 26px;
  color: #000;
  clear: both;
}
/* line 196, ../src/scss/layout/_footer.scss */
.footer a {
  text-decoration: none;
  padding-right: 5px;
  /*&:hover {
      color: $green;
  }*/
}
/* line 202, ../src/scss/layout/_footer.scss */
.footer a:after {
  content: '|';
  padding-left: 5px;
}
/* line 209, ../src/scss/layout/_footer.scss */
.footer .container .footer__copyright .footer-links, .footer .main .footer__copyright .footer-links {
  display: inline-block;
  color: #000;
}
/* line 210, ../src/scss/layout/_footer.scss */
.footer .container .footer__copyright .copyright, .footer .main .footer__copyright .copyright {
  display: inline-block;
}
/* line 212, ../src/scss/layout/_footer.scss */
.footer .container .social-icons, .footer .main .social-icons {
  display: none;
}

/* line 216, ../src/scss/layout/_footer.scss */
.footer__copyright {
  font-size: 13px;
}
/* line 218, ../src/scss/layout/_footer.scss */
.footer__copyright img {
  margin-top: 6.5px;
  display: block;
}

@media only screen and (max-width: 359px) {
  /* line 227, ../src/scss/layout/_footer.scss */
  .usp span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 239, ../src/scss/layout/_footer.scss */
  .usp ul li {
    display: table;
    width: 100%;
    padding-bottom: 12px;
  }
  /* line 243, ../src/scss/layout/_footer.scss */
  .usp ul li > div {
    float: left;
  }
  /* line 246, ../src/scss/layout/_footer.scss */
  .usp ul li > div + span {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    top: 0;
  }
  /* line 252, ../src/scss/layout/_footer.scss */
  .usp ul li .usp-2 + span {
    top: 0;
  }
  /* line 255, ../src/scss/layout/_footer.scss */
  .usp ul li .usp-3 + span {
    top: 0;
  }

  /* line 262, ../src/scss/layout/_footer.scss */
  .pre-footer .contact .contact-home h3 {
    padding-bottom: 12px;
  }
  /* line 265, ../src/scss/layout/_footer.scss */
  .pre-footer .subfooter h5 {
    padding-bottom: 12px;
  }
  /* line 266, ../src/scss/layout/_footer.scss */
  .pre-footer .home-text {
    clear: both;
  }
  /* line 268, ../src/scss/layout/_footer.scss */
  .pre-footer .home-text h2 {
    font-size: 36px !important;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  /* line 281, ../src/scss/layout/_footer.scss */
  .pre-footer .home-right .contact .telephone .text .number {
    font-size: 14px;
  }
  /* line 289, ../src/scss/layout/_footer.scss */
  .pre-footer .home-text h2 {
    font-size: 30px !important;
  }
}
@media only screen and (min-width: 641px) and (max-width: 699px) {
  /* line 297, ../src/scss/layout/_footer.scss */
  .usp ul li div + span {
    font-size: 16px !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* line 305, ../src/scss/layout/_footer.scss */
  .usp ul li:last-of-type {
    border-right: none;
  }

  /* line 312, ../src/scss/layout/_footer.scss */
  .pre-footer .home-text h2 {
    font-size: 36px !important;
  }
}
@media only screen and (min-width: 769px) {
  /* line 320, ../src/scss/layout/_footer.scss */
  .usp {
    border-top: 1px solid #e5e5e5;
    left: 0;
    right: 0;
    width: 100%;
    margin: 48px 0 0 0;
    padding: 0;
    clear: both;
  }
  /* line 328, ../src/scss/layout/_footer.scss */
  .usp ul {
    max-width: 1024px;
    margin: 0 auto;
    padding: 34px 0;
    display: block;
    height: 160px;
  }
  /* line 334, ../src/scss/layout/_footer.scss */
  .usp ul li {
    float: left;
    vertical-align: top;
    width: 34%;
    height: 90px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
  }
  /* line 341, ../src/scss/layout/_footer.scss */
  .usp ul li div {
    background: url("../images/sprite-desktop.png") no-repeat 0 0;
    display: block;
    border: none;
    width: 100%;
  }
  /* line 347, ../src/scss/layout/_footer.scss */
  .usp ul li .usp-1 {
    background-position: 50% -40px;
  }
  /* line 350, ../src/scss/layout/_footer.scss */
  .usp ul li .usp-2 {
    background-position: 50% -80px;
  }
  /* line 353, ../src/scss/layout/_footer.scss */
  .usp ul li .usp-3 {
    background-position: 50% -118px;
  }
  /* line 356, ../src/scss/layout/_footer.scss */
  .usp ul li div {
    background-position: 50% 0;
  }
  /* line 357, ../src/scss/layout/_footer.scss */
  .usp ul li div + span {
    position: inherit;
    padding: 0;
    font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
    font-size: 18px;
    line-height: normal;
  }
  /* line 365, ../src/scss/layout/_footer.scss */
  .usp ul li:first-of-type {
    border-left: 1px solid #e5e5e5;
    width: 33%;
  }
  /* line 366, ../src/scss/layout/_footer.scss */
  .usp ul li:last-of-type {
    width: 33%;
  }

  /* line 372, ../src/scss/layout/_footer.scss */
  .pre-footer .home-right {
    width: 68%;
    float: right;
    padding: 100px 0 0 12px;
  }
  /* line 376, ../src/scss/layout/_footer.scss */
  .pre-footer .home-right div.contact {
    width: 50%;
    float: left;
    padding-top: 0;
    padding-left: 24px;
  }
  /* line 381, ../src/scss/layout/_footer.scss */
  .pre-footer .home-right div.contact .contact-home .telephone p {
    top: 3.72109px;
  }
  /* line 383, ../src/scss/layout/_footer.scss */
  .pre-footer .home-right div.contact .contact-home .telephone p .number {
    font-size: 18px;
  }
  /* line 386, ../src/scss/layout/_footer.scss */
  .pre-footer .home-right .subfooter {
    width: 50%;
    padding-left: 39.81312px;
    font-size: 13px;
    line-height: 26px;
  }
  /* line 393, ../src/scss/layout/_footer.scss */
  .pre-footer .footer-social {
    display: none;
  }
  /* line 394, ../src/scss/layout/_footer.scss */
  .pre-footer .home-text {
    width: 32%;
    float: left;
    padding-left: 24px;
    padding-right: 12px;
    clear: none;
  }
  /* line 400, ../src/scss/layout/_footer.scss */
  .pre-footer .home-text h2 {
    font-size: 44px;
    display: inline-block;
  }
  /* line 401, ../src/scss/layout/_footer.scss */
  .pre-footer .home-text h3 {
    font-size: 19px;
  }

  /* line 405, ../src/scss/layout/_footer.scss */
  .footer .inline-grid__item,
  .footer .inline-grid--full__item {
    width: 25%;
  }
  /* line 409, ../src/scss/layout/_footer.scss */
  .footer .container .footer__copyright, .footer .main .footer__copyright {
    display: inline-block;
    font-size: 13px;
  }
  /* line 410, ../src/scss/layout/_footer.scss */
  .footer .container .social-icons, .footer .main .social-icons {
    display: block;
    float: right;
    padding-top: 3.72109px;
  }
  /* line 414, ../src/scss/layout/_footer.scss */
  .footer .container .social-icons .arrow, .footer .main .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;
  }
  /* line 425, ../src/scss/layout/_footer.scss */
  .footer .container .text-hidden, .footer .main .text-hidden, .footer .container .sprite, .footer .main .sprite {
    display: inline-block;
    width: 40px;
    height: 40px;
  }
  /* line 429, ../src/scss/layout/_footer.scss */
  .footer .container .text-hidden a, .footer .main .text-hidden a, .footer .container .sprite a, .footer .main .sprite a {
    display: block;
    width: 40px;
    height: 40px;
  }
  /* line 435, ../src/scss/layout/_footer.scss */
  .footer .container .icon-fb, .footer .main .icon-fb {
    background: url("../images/home-sprite.gif") -14px -205px no-repeat;
  }
  /* line 436, ../src/scss/layout/_footer.scss */
  .footer .container .icon-yt, .footer .main .icon-yt {
    background: url("../images/home-sprite.gif") -14px -246px no-repeat;
    margin-left: -6.5px;
  }
}
/* do not show USP on Cart ad Checkout pages */
/* line 442, ../src/scss/layout/_footer.scss */
.onestepcheckout-index-index .usp,
.checkout-cart-index .usp {
  display: none;
}

/* line 445, ../src/scss/layout/_footer.scss */
.onestepcheckout-index-index .pre-footer,
.checkout-cart-index .pre-footer {
  border-top: 1px solid #e5e5e5;
  margin-top: 48px;
  padding-top: 48px;
}

/* line 1, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar {
  display: none !important;
}
/* line 3, ../src/scss/layout/_sidebar-blocks.scss */
.catalog-category-view .sidebar {
  display: block !important;
}
/* line 7, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .blocks__item {
  margin-bottom: 26px;
  /**
   * [1] 4th child should use whole width on lap s
   * [2] Override min-height
   **/
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  /* line 10, ../src/scss/layout/_sidebar-blocks.scss */
  .sidebar .blocks__item.blocks__item--filters {
    width: 100%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 699px) {
  /* line 18, ../src/scss/layout/_sidebar-blocks.scss */
  .sidebar .blocks__item.blocks__item:nth-child(4) {
    width: 100%;
  }
}
/* line 21, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .blocks__item.blocks__item:nth-child(4) .block {
  min-height: 0 !important;
}
/* line 27, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block {
  padding: 26px 8px;
}
/* line 30, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block:last-child {
  margin-bottom: 0;
}
/* line 33, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block h4 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
/* line 38, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block-title {
  color: #000;
  font-size: 19.2px;
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
  display: inline-block;
  margin-top: 16px;
}
/* line 45, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block-content {
  font-size: 13px;
  line-height: 26px;
}
/* line 48, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block-content li {
  line-height: 16px;
  padding: 5px 0;
}
/* line 51, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block-content li a {
  line-height: 16px;
}
/* line 55, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block-content .current {
  color: #6ba124;
}
/* line 57, ../src/scss/layout/_sidebar-blocks.scss */
.sidebar .block-content .current strong {
  font-family: Precioussansmedium, Arial, Tahoma, Verdana, sans-serif;
  line-height: 16px;
}

/*
@import "layout/header.search";
*/
/**
 * Sections
 * =======================================================================
 **/
/* line 5, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro {
  margin-bottom: 0;
  padding: 10px;
  background: url(../images/background-intro-3.jpg) no-repeat 0 0;
}
/* line 9, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro h2 {
  font-size: 39.81312px;
  line-height: 39px;
  font-weight: normal;
  padding: 13px 0 8.66667px 0;
}
/* line 15, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro .light {
  font-size: 23.04px;
  line-height: normal;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 20, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro .padded {
  padding-top: 34.66667px;
}
/* line 23, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro a {
  position: relative;
  color: #fff;
  background: #000;
  padding: 8.66667px 20px;
  padding-right: 82.55649px;
  font-size: 23.04px;
  transition: all 0.5s ease;
  text-decoration: none;
  width: 100%;
  display: block;
  max-width: 337px;
}
/* line 35, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro a:hover {
  background-color: #6ba124;
}
/* line 38, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro a:before {
  display: block;
  content: '';
  position: absolute;
  top: 10%;
  right: 57.33089px;
  width: 0;
  height: 80%;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
/* line 48, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro a:after {
  content: '';
  border-top: 4px solid transparent;
  border-left: 8px solid white;
  border-bottom: 4px solid transparent;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 33.1776px;
  margin-top: -3.72109px;
  text-align: center;
}
/* line 62, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro .help {
  display: none;
}
/* line 63, ../src/scss/section/_frontpage.scss */
.cms-home .main .col-main .std .intro .tv-wrapper {
  text-align: right;
  padding: 16px;
}

@media only screen and (min-width: 769px) {
  /* line 78, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .background {
    background: url(../images/background-intro-3.jpg) no-repeat 100% 100%;
    width: 100%;
    height: 816px;
    position: absolute;
    left: 0;
    right: 0;
    background-size: cover;
    z-index: -1;
  }
  /* line 88, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro {
    margin: 0;
    padding: 10px;
    background: none;
    height: 816px;
  }
  /* line 93, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content {
    margin: 0 auto;
    width: 100%;
    padding-top: 52px;
  }
  /* line 97, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content h2 {
    font-size: 47.77574px;
    padding-bottom: 26px;
  }
  /* line 98, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content .light {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 23.04px;
  }
  /* line 99, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content .padded {
    padding-top: 104px;
  }
  /* line 100, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content .portal {
    padding-left: 163px;
    width: 500px;
    position: absolute;
    z-index: 0;
  }
  /* line 101, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content .tv-wrapper {
    background: url("../images/tv-home-3.png") no-repeat 90% 0;
    height: 300px;
    padding: 0;
    margin-top: -256px;
  }
  /* line 106, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content .tv-wrapper img {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  /* line 117, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .content .tv-wrapper {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 123, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .help {
    display: block;
    width: 500px;
    padding: 78px 0;
  }
  /* line 127, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .help .arrow {
    background: url("../images/sprite-desktop.png") no-repeat 0 0;
    height: 40px;
    background-position: 50% 0;
    width: 100%;
  }
  /* line 133, ../src/scss/section/_frontpage.scss */
  .cms-home .main .col-main .std .intro .help p {
    font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    padding: 0 26px;
  }
}
/* line 1, ../src/scss/section/_product-view.scss */
.product-view {
  /* PRODUCT IMAGE */
}
/* line 12, ../src/scss/section/_product-view.scss */
.product-view .product__info {
  margin-top: 26px;
}
/* line 16, ../src/scss/section/_product-view.scss */
.product-view h1 {
  font-size: 27.648px;
  font-size: 1.728rem;
  margin: 0;
  text-transform: uppercase;
}
/* line 30, ../src/scss/section/_product-view.scss */
.product-view .imagebox__large-image a {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

@media only screen and (min-width: 641px) {
  /* line 42, ../src/scss/section/_product-view.scss */
  .product-view .product__images,
  .product-view .product__info {
    width: 50%;
  }
}
@media only screen and (min-width: 769px) {
  /* line 51, ../src/scss/section/_product-view.scss */
  .product-view .product__images {
    width: 33.33333%;
  }
  /* line 54, ../src/scss/section/_product-view.scss */
  .product-view .product__info {
    width: 66.66667%;
  }
}
/* line 2, ../src/scss/section/_cart.scss */
.checkout-cart-index .discount,
.checkout-cart-index .giftcard,
.checkout-cart-index .shipping {
  margin-bottom: 26px;
}
/* line 7, ../src/scss/section/_cart.scss */
.checkout-cart-index .checkout-cart {
  padding: 0 5px;
}

/* line 9, ../src/scss/section/_cart.scss */
.checkout-types--top {
  float: right;
  padding-right: 5px;
}

/* line 13, ../src/scss/section/_cart.scss */
.cart-table {
  margin: 26px 0;
}
/* line 17, ../src/scss/section/_cart.scss */
.cart-table colgroup .t20 {
  width: 57px;
}
/* line 18, ../src/scss/section/_cart.scss */
.cart-table colgroup .t60 {
  width: auto;
}
/* line 19, ../src/scss/section/_cart.scss */
.cart-table colgroup .t20:last-of-type {
  width: auto;
}
/* line 21, ../src/scss/section/_cart.scss */
.cart-table thead {
  border-bottom: 1px solid black;
}
/* line 24, ../src/scss/section/_cart.scss */
.cart-table thead tr th {
  font-weight: 700;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 16px;
}
/* line 33, ../src/scss/section/_cart.scss */
.cart-table tbody tr td {
  font-weight: 400;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  font-size: 16px;
}
/* line 37, ../src/scss/section/_cart.scss */
.cart-table tbody tr td.remove {
  padding-left: 12px;
}
/* line 39, ../src/scss/section/_cart.scss */
.cart-table tbody tr td.remove a {
  background: url("../images/trash_recyclebin_empty_closed.png") 0 0 no-repeat;
  width: 32px;
  height: 32px;
  display: block;
  text-indent: -1000%;
  font-size: 0px;
}
/* line 49, ../src/scss/section/_cart.scss */
.cart-table tbody tr.even {
  background-color: #f1f1f1;
}
/* line 52, ../src/scss/section/_cart.scss */
.cart-table h2 {
  font-weight: 400;
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
  font-size: 16px;
  margin: 0;
}
/* line 58, ../src/scss/section/_cart.scss */
.cart-table h2 a {
  text-decoration: none;
}
/* line 67, ../src/scss/section/_cart.scss */
.cart-table .product__info {
  /*padding-bottom: $half-spacing-unit;
  margin-bottom: $half-spacing-unit;*/
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 71, ../src/scss/section/_cart.scss */
.cart-table .product__info ul li {
  font-family: Precioussansbook, Arial, Tahoma, Verdana, sans-serif;
}
/* line 76, ../src/scss/section/_cart.scss */
.cart-table .product__image {
  text-align: center;
}
/* line 80, ../src/scss/section/_cart.scss */
.cart-table .product__actions {
  margin-top: 13px;
}
/* line 84, ../src/scss/section/_cart.scss */
.cart-table .product__subscription-info {
  font-size: 13.33333px;
  font-size: 0.83333rem;
  line-height: 1.95;
  margin-top: 13px;
  line-height: 1.25;
}
/* line 90, ../src/scss/section/_cart.scss */
.cart-table .product__unit-price,
.cart-table .product__qty,
.cart-table .product__subtotal {
  line-height: 2;
}
/* line 98, ../src/scss/section/_cart.scss */
.cart-table tfoot td, .cart-table tfoot td:first-child {
  padding: 0 0 13px 0;
  text-align: right;
}

/* line 106, ../src/scss/section/_cart.scss */
.cart__totals {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 26px;
}
/* line 113, ../src/scss/section/_cart.scss */
.cart__totals table tr td p button {
  float: right;
}
/* line 118, ../src/scss/section/_cart.scss */
.cart__totals .extra-products-title {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 19.2px;
  margin-bottom: 13px;
}
/* line 124, ../src/scss/section/_cart.scss */
.cart__totals .records-table .extra-products-name {
  position: relative;
}
/* line 126, ../src/scss/section/_cart.scss */
.cart__totals .records-table .extra-products-name #block_repair_extra_replacement_buggy {
  width: 207px;
  height: 207px;
  border: 1px solid #333333;
  position: absolute;
  top: -96px;
  left: 180px;
  z-index: 1;
}
/* line 134, ../src/scss/section/_cart.scss */
.cart__totals .records-table .extra-products-name #block_repair_extra_replacement_buggy:before {
  content: '';
  background: url("../images/repair/triangle-left.png") 0 0 no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -11px;
}
/* line 144, ../src/scss/section/_cart.scss */
.cart__totals .records-table .extra-products-name #block_repair_extra_replacement_stroller {
  width: 207px;
  height: 207px;
  border: 1px solid #333333;
  position: absolute;
  top: -96px;
  left: 230px;
  z-index: 1;
  background-color: #fff;
}
/* line 153, ../src/scss/section/_cart.scss */
.cart__totals .records-table .extra-products-name #block_repair_extra_replacement_stroller:before {
  content: '';
  background: url("../images/repair/triangle-left.png") 0 0 no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: -11px;
}

/* line 167, ../src/scss/section/_cart.scss */
.checkout-types {
  margin-top: 13px;
  text-align: right;
}
/* line 171, ../src/scss/section/_cart.scss */
.checkout-types .btn-continue {
  float: left;
  margin-left: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}
/* line 177, ../src/scss/section/_cart.scss */
.checkout-types .btn-continue:before {
  top: 13px;
}

/* line 182, ../src/scss/section/_cart.scss */
.checkout-cart-additional {
  text-align: right;
  padding: 0 5px;
}
/* line 185, ../src/scss/section/_cart.scss */
.checkout-cart-additional .checkout-types--bottom {
  display: inline-block;
}

@media only screen and (max-width: 640px) {
  /* line 194, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr.first .remove {
    display: none;
  }
  /* line 195, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr.first .col-product {
    margin-top: 0;
    text-align: left;
  }
  /* line 199, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr.first .col-subtotal {
    margin-top: 0;
    text-align: right;
  }
  /* line 205, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr .remove {
    text-align: right;
  }
  /* line 207, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr .remove a {
    float: right;
  }
  /* line 211, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr .col-product {
    margin-top: -45px;
    padding-left: 5px;
    width: 85%;
  }
  /* line 216, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr .col-subtotal {
    text-align: right;
    margin-top: -24px;
    padding-right: 5px;
  }

  /* line 226, ../src/scss/section/_cart.scss */
  .cart__collaterals .records-table tr {
    padding: 12px 0;
  }
  /* line 229, ../src/scss/section/_cart.scss */
  .cart__collaterals .records-table tr td .price {
    float: right;
  }
  /* line 232, ../src/scss/section/_cart.scss */
  .cart__collaterals .records-table tr td.price, .cart__collaterals .records-table tr td.last {
    padding: 0;
  }
  /* line 234, ../src/scss/section/_cart.scss */
  .cart__collaterals .records-table tr td .extra-products-name {
    padding-top: 26px;
  }

  /* line 239, ../src/scss/section/_cart.scss */
  .cart__totals .records-table .extra-products-name button {
    display: none;
  }
}
@media only screen and (min-width: 360px) {
  /* line 244, ../src/scss/section/_cart.scss */
  .cart-table .grid__item, .cart-table .form-list .field, .form-list .cart-table .field,
  .cart-table .form-list .field--wide,
  .form-list .cart-table .field--wide,
  .cart-table .grid--full__item, .cart-table .category-products .products-grid .item, .category-products .products-grid .cart-table .item, .cart-table .toolbar__amount,
  .cart-table .toolbar__limiter,
  .cart-table .toolbar__pages, .cart-table .toolbar__view-mode,
  .cart-table .toolbar__sort-by, .cart-table .breadcrumbs, .cart-table .col-main,
  .cart-table .col-left,
  .cart-table .col-right, .cart-table .minicart__detail .product__image, .minicart__detail .cart-table .product__image,
  .cart-table .minicart__detail .product__name,
  .minicart__detail .cart-table .product__name,
  .cart-table .minicart__detail .product__price,
  .minicart__detail .cart-table .product__price, .cart-table .product-view .product__images, .product-view .cart-table .product__images,
  .cart-table .product-view .product__info,
  .product-view .cart-table .product__info, .cart-table .onestepcheckout-column {
    width: 66.66667%;
    float: right;
  }
  /* line 249, ../src/scss/section/_cart.scss */
  .cart-table .product__image {
    width: 33.33333%;
    float: left;
    text-align: left;
  }
  /* line 255, ../src/scss/section/_cart.scss */
  .cart-table .product__subscription-info {
    width: 100%;
  }
}
@media only screen and (min-width: 641px) {
  /* line 262, ../src/scss/section/_cart.scss */
  .checkout-types.checkout-types--top {
    display: none;
  }

  /* line 266, ../src/scss/section/_cart.scss */
  .cart-table .grid__item, .cart-table .form-list .field, .form-list .cart-table .field,
  .cart-table .form-list .field--wide,
  .form-list .cart-table .field--wide,
  .cart-table .grid--full__item, .cart-table .category-products .products-grid .item, .category-products .products-grid .cart-table .item, .cart-table .toolbar__amount,
  .cart-table .toolbar__limiter,
  .cart-table .toolbar__pages, .cart-table .toolbar__view-mode,
  .cart-table .toolbar__sort-by, .cart-table .breadcrumbs, .cart-table .col-main,
  .cart-table .col-left,
  .cart-table .col-right, .cart-table .minicart__detail .product__image, .minicart__detail .cart-table .product__image,
  .cart-table .minicart__detail .product__name,
  .minicart__detail .cart-table .product__name,
  .cart-table .minicart__detail .product__price,
  .minicart__detail .cart-table .product__price, .cart-table .product-view .product__images, .product-view .cart-table .product__images,
  .cart-table .product-view .product__info,
  .product-view .cart-table .product__info, .cart-table .onestepcheckout-column {
    width: 66.66667%;
  }
  /* line 269, ../src/scss/section/_cart.scss */
  .cart-table .product__image {
    width: 33.33333%;
  }

  /* line 278, ../src/scss/section/_cart.scss */
  #shopping-cart-table thead tr th .product {
    margin-left: -69px;
  }
  /* line 281, ../src/scss/section/_cart.scss */
  #shopping-cart-table thead tr th.price {
    text-align: right;
    padding-right: 6.5px;
  }
  /* line 291, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr.first td.col-product .product {
    margin-left: -69px;
  }
  /* line 295, ../src/scss/section/_cart.scss */
  #shopping-cart-table tbody tr.first .col-subtotal {
    text-align: right;
    padding-right: 6.5px;
  }
}
/* line 2, ../src/scss/section/_contacts.scss */
.contacts-index-index .col-main {
  padding: 0 8px;
}

/* line 7, ../src/scss/section/_contacts.scss */
.contactform {
  margin-top: 26px;
}
@media only screen and (min-width: 641px) {
  /* line 7, ../src/scss/section/_contacts.scss */
  .contactform {
    max-width: 600px;
    padding: 26px;
  }
  /* line 12, ../src/scss/section/_contacts.scss */
  .contactform .buttons-set button {
    max-width: 200px;
    float: right;
  }
}

/* line 6, ../src/scss/section/_myaccount.scss */
.customer-account-login .col-main .account-login .col2-set.buttons div .buttons-set {
  text-align: right;
}
/* line 8, ../src/scss/section/_myaccount.scss */
.customer-account-login .col-main .account-login .col2-set.buttons div .buttons-set .f-left {
  padding-top: 12px;
}
/* line 11, ../src/scss/section/_myaccount.scss */
.customer-account-login .col-main .account-login .col2-set.buttons div .buttons-set button.button, .customer-account-login .col-main .account-login .col2-set.buttons div .buttons-set button.button-minor, .customer-account-login .col-main .account-login .col2-set.buttons div .buttons-set button.btn-cart, .customer-account-login .col-main .account-login .col2-set.buttons div .buttons-set button.btn-checkout {
  float: right;
  font-size: 16px;
  clear: none;
}
/* line 18, ../src/scss/section/_myaccount.scss */
.customer-account-login .col-main .account-login .col2-set.buttons .new-users {
  margin-top: 26px;
}
/* line 22, ../src/scss/section/_myaccount.scss */
.customer-account-login .col-main .account-login .col2-set.buttons .registered-users .buttons-set {
  padding-top: 26px;
}

/* line 36, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .welcome-msg .hello {
  font-size: 19.2px;
}
/* line 39, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .box-account #my-assessments-table,
.customer-account-index .my-account .dashboard .box-account #my-orders-table {
  margin-bottom: 24px;
  font-size: 14px;
}
/* line 45, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .box-account .box-head h2 {
  font-size: 19.2px;
  float: left;
}
/* line 46, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .box-account .box-head a {
  float: right;
}
/* line 49, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .box-account.box-info h2 {
  float: none;
  font-size: 45px;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
  border-bottom: 1px solid #000;
  line-height: 80px;
  display: inline-block;
  margin-top: 16px;
  max-width: 800px;
  margin-bottom: 33.1776px;
}
/* line 64, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard #my-assessments-table thead,
.customer-account-index .my-account .dashboard #my-orders-table thead {
  border-bottom: 1px solid #000;
}
/* line 65, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard #my-assessments-table a,
.customer-account-index .my-account .dashboard #my-orders-table a {
  padding-left: 8px;
}
/* line 67, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard #my-assessments-table tr:nth-child(even),
.customer-account-index .my-account .dashboard #my-orders-table tr:nth-child(even) {
  background-color: #f1f1f1;
}
/* line 68, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard #my-assessments-table tr:nth-child(odd),
.customer-account-index .my-account .dashboard #my-orders-table tr:nth-child(odd) {
  background-color: #fff;
}
/* line 70, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard #my-assessments-table .last,
.customer-account-index .my-account .dashboard #my-orders-table .last {
  text-align: right;
}
/* line 74, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .box .box-title h3 {
  float: left;
}
/* line 75, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .box .box-title .button-minor {
  float: right;
}
/* line 77, ../src/scss/section/_myaccount.scss */
.customer-account-index .my-account .dashboard .box .box-content {
  clear: both;
  padding-top: 16px;
}

/* line 84, ../src/scss/section/_myaccount.scss */
#my-assessments-table .nobr {
  white-space: nowrap;
}

/* line 90, ../src/scss/section/_myaccount.scss */
.block-account {
  display: inline-block;
  padding: 13px;
}
/* line 94, ../src/scss/section/_myaccount.scss */
.block-account button, .block-account strong {
  vertical-align: middle;
  text-align: left;
}
/* line 99, ../src/scss/section/_myaccount.scss */
.block-account .block-content {
  margin-top: 13px;
}

/* account pasges */
/* line 116, ../src/scss/section/_myaccount.scss */
.col-main .my-account .dashboard .page-title h1 {
  padding-top: 0;
  margin-top: 0;
}

/* line 127, ../src/scss/section/_myaccount.scss */
.col-left .block-account .block-content a {
  text-decoration: none;
}
/* line 129, ../src/scss/section/_myaccount.scss */
.col-left .block-account .block-content a:hover {
  text-decoration: underline;
}

/* line 139, ../src/scss/section/_myaccount.scss */
.customer-account-create .account-create .page-title h1 {
  font-size: 45px;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  border: none;
}
/* line 146, ../src/scss/section/_myaccount.scss */
.customer-account-create .account-create #form-validate .control .input-box {
  display: inline-block;
}
/* line 148, ../src/scss/section/_myaccount.scss */
.customer-account-create .account-create #form-validate .buttons-set button.button, .customer-account-create .account-create #form-validate .buttons-set button.button-minor, .customer-account-create .account-create #form-validate .buttons-set button.btn-cart, .customer-account-create .account-create #form-validate .buttons-set button.btn-checkout {
  width: auto;
  float: right;
}

/* line 155, ../src/scss/section/_myaccount.scss */
.customer-account-forgotpassword .col-main {
  padding: 0 8px;
}
/* line 158, ../src/scss/section/_myaccount.scss */
.customer-account-forgotpassword #form-validate {
  max-width: 600px;
}
/* line 161, ../src/scss/section/_myaccount.scss */
.customer-account-forgotpassword #form-validate .buttons-set button {
  max-width: 250px;
  float: right;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  /* line 173, ../src/scss/section/_myaccount.scss */
  #my-assessments-table td.a-center {
    text-align: left !important;
  }
}
@media only screen and (max-width: 768px) {
  /* line 181, ../src/scss/section/_myaccount.scss */
  .col-main .my-account {
    margin-top: -52px;
    padding: 0 8px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 189, ../src/scss/section/_myaccount.scss */
  #my-assessments-table,
  #my-orders-table {
    font-size: 16px;
  }
}
/* line 199, ../src/scss/section/_myaccount.scss */
.customer-address-index .my-account .title-buttons .button, .customer-address-index .my-account .title-buttons .button-minor, .customer-address-index .my-account .title-buttons .btn-cart, .customer-address-index .my-account .title-buttons .btn-checkout {
  display: inline-block;
}

@media only screen and (min-width: 641px) {
  /* line 209, ../src/scss/section/_myaccount.scss */
  .customer-address-index .my-account .title-buttons .button, .customer-address-index .my-account .title-buttons .button-minor, .customer-address-index .my-account .title-buttons .btn-cart, .customer-address-index .my-account .title-buttons .btn-checkout {
    float: right;
  }
}
/* line 2, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer {
  width: 100% !important;
  overflow: hidden;
}
/* line 5, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagArea {
  float: left;
  margin-left: -12px;
}
/* line 8, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagArea .jTagOverlay {
  cursor: pointer;
}
/* line 10, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagArea .jTagOverlay .jTagDrag {
  background-color: rgba(107, 161, 36, 0.75);
}
/* line 14, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagArea .jTagOverlay .jTagTag .jTagDeleteTag {
  width: 50px;
  height: 50px;
  background-image: none;
  background-color: transparent;
  border-radius: 100%;
  margin-left: 8px;
}
/* line 21, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagArea .jTagOverlay .jTagTag .jTagDeleteTag:after {
  content: '\e60b';
  font: 26px/50px 'quinnyicons';
  color: #fff;
  width: 50px;
  text-align: center;
  display: block;
  background-color: transparent;
  transition: all 0.2s;
}
/* line 33, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagArea .jTagOverlay.jTagPngOverlay {
  cursor: default;
}
/* line 38, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .desc {
  clear: both;
  display: block;
}
/* line 42, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagLabels {
  float: left;
  padding: 0;
  clear: both;
}
/* line 46, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagLabels label {
  clear: both;
  line-height: 18px;
  font-weight: normal;
  padding: 6px 0;
}
/* line 54, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer #addition .desc-wrapper {
  float: left;
  display: block;
  width: 100%;
  margin-left: 0;
  padding-bottom: 16px;
}
/* line 60, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer #addition .desc-wrapper .desc {
  float: left;
  clear: none;
  margin-left: 0;
  width: 100%;
}
/* line 65, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer #addition .desc-wrapper .desc > img {
  float: left;
  margin: 13px 0 5px 0;
  border: 1px solid #CCC;
}
/* line 70, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer #addition .desc-wrapper .desc .img-label {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-size: 14px;
  clear: both;
  float: left;
  clear: both;
  display: inline-block;
}
/* line 81, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave {
  background-color: transparent;
  position: inherit;
  width: 100%;
  display: inline-block;
}
/* line 86, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagInput {
  margin-right: 100px;
}
/* line 88, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagInput input {
  height: 40px;
  font-size: 14px;
  padding: 5px;
}
/* line 94, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagSaveClose {
  width: 40px;
  height: 40px;
  background-image: none;
  background-color: #fff;
  border-radius: 100%;
  margin-left: 8px;
}
/* line 101, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagSaveClose:after {
  content: '\e60b';
  font: 26px/40px 'quinnyicons';
  color: #c40606;
  width: 40px;
  text-align: center;
  display: block;
  background-color: transparent;
  transition: all 0.2s;
}
/* line 111, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagSaveClose:hover {
  background-color: #333333;
}
/* line 114, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagSaveClose:hover:after {
  color: #fff;
}
/* line 118, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagSaveBtn {
  background: url("../images/repair/save-sprite.png") 0 0 no-repeat;
  height: 30px;
  width: 30px;
  display: block;
  margin-top: 5px;
}
/* line 124, ../src/scss/section/_step3-tags.scss */
#left-large-image .jTagContainer .jTagSave .jTagSaveBtn:hover {
  background-position: 0 -30px;
}

@media only screen and (max-width: 640px) {
  /* line 142, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer #addition .desc-wrapper {
    margin-top: 50px;
  }
  /* line 144, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer #addition .desc-wrapper .desc > img {
    display: none;
  }
  /* line 148, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer .jTagSave {
    background-color: transparent;
    position: relative;
    left: 0;
    top: -200px;
    width: 100%;
  }
}
@media only screen and (min-width: 360px) and (max-width: 400px) {
  /* line 163, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer .jTagSave {
    top: -180px;
  }
}
@media only screen and (min-width: 401px) and (max-width: 640px) {
  /* line 175, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer .jTagSave {
    top: -150px;
  }
}
@media only screen and (min-width: 641px) {
  /* line 186, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer .jTagSave {
    margin-left: -328px;
    clear: both;
    float: left;
    width: 250%;
    max-width: 638px;
  }
  /* line 194, ../src/scss/section/_step3-tags.scss */
  #left-large-image #addition {
    float: right;
    clear: none;
    display: inline-block;
    width: 40%;
    margin-right: 2%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  /* line 207, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer #addition .desc-wrapper .desc {
    font-size: 14px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 225, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer .desc-wrapper {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1025px) {
  /* line 234, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer #addition {
    float: right;
    display: block;
    width: 44%;
    margin-left: 0;
    font-size: 16px;
    margin-right: 48px;
  }
  /* line 242, ../src/scss/section/_step3-tags.scss */
  #left-large-image .jTagContainer .jTagSave {
    margin-left: 0;
    clear: none;
    float: left;
    width: 100%;
  }
}
/* controleer je aanvraag, afronden van stap 6 */
/* line 5, ../src/scss/section/_succes.scss */
.repair-summary.records-table td.a-center.delete .btn-remove.btn-remove2 {
  text-indent: -1000%;
  line-height: 0px;
  color: transparent;
}
/* line 9, ../src/scss/section/_succes.scss */
.repair-summary.records-table td.a-center.delete .btn-remove.btn-remove2:before {
  content: "\e60b";
  font-family: 'quinnyicons';
  color: #c40606;
  font-size: 16px;
}

/*
@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.
 * [1] osc css seems not to be watched by GRUNT in VENDOR folder. Hence the VendorS folder.
 **/
/* line 1, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-form {
  padding: 5px;
}

/**
 * Blocks general
 **/
/* line 9, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-threecolumns {
  margin-top: 26px;
}

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

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

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

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

/* line 40, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-numbers {
  padding-bottom: 6.5px;
  font-family: Precioussanslightregular, Arial, Tahoma, Verdana, sans-serif;
}
/* line 44, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-numbers .title {
  display: inline-block;
  border-bottom: 1px solid #000;
}
/* line 49, ../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 56, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-numbers .text {
  padding-left: 26px;
  padding-left: 1.625rem;
  display: inline-block;
  vertical-align: top;
}

/*** 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;
}
/* line 96, ../src/scss/vendors/_onestepcheckout.scss */
#billing_address_list .field--wide--4,
#shipping_address_list .field--wide--4 {
  display: none;
}

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

/**
 * Popup
 **/
/* line 114, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup {
  padding: 0 13px;
  width: 100%;
  max-width: 600px;
}
/* line 119, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .close {
  position: absolute;
  top: 13px;
  right: 26px;
}
/* line 124, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .close .icon {
  width: 20px;
  height: 20px;
}
/* line 130, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-popup .input-text {
  width: 100%;
}

/* line 135, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-popup-wrapper {
  padding: 13px;
  background: #fff;
  max-width: 350px;
  margin: 0 auto;
}

/* line 142, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-login-error {
  margin-bottom: 26px;
}

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

/**
 * Summary
 **/
/* line 160, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary {
  border-bottom: 1px solid #e5e5e5;
}
/* line 163, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th {
  border-bottom: 1px solid #e5e5e5;
}
/* line 167, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th, table.onestepcheckout-summary td {
  text-align: center;
}
/* line 171, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th:first-child,
table.onestepcheckout-summary td:first-child {
  text-align: left;
}
/* line 176, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary td:first-child {
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
}
/* line 180, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-summary th:last-child,
table.onestepcheckout-summary td:last-child {
  text-align: right;
}

/* line 186, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals {
  margin: 26px 0;
}
/* line 189, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals th, table.onestepcheckout-totals td {
  text-align: right;
  padding-top: 7px;
  padding-bottom: 7px;
}
/* line 196, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td:first-child:after {
  content: "\003A";
}
/* line 201, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td:last-child {
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: Precioussansbold, Arial, Tahoma, Verdana, sans-serif;
  font-weight: 700;
}
/* line 207, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td.title {
  width: 60%;
}
/* line 211, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals td.value {
  width: 40%;
}
/* line 216, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals tr:last-child td {
  font-weight: 700;
}
/* line 220, ../src/scss/vendors/_onestepcheckout.scss */
table.onestepcheckout-totals tr:last-child td:last-child {
  font-size: 24px;
}

/* line 227, ../src/scss/vendors/_onestepcheckout.scss */
.doodle-checkout {
  width: 300px;
  font-family: Kgbestillknow, Arial, Tahoma, Verdana, sans-serif;
  font-size: 16px;
  line-height: 18px;
}
/* line 232, ../src/scss/vendors/_onestepcheckout.scss */
.doodle-checkout:before {
  content: '';
  background: url("../images/sprite-desktop.png") no-repeat 0 0;
  height: 40px;
  width: 40px;
  background-position: 50% 0;
  display: inline-block;
  position: relative;
  left: 195px;
}
/* line 242, ../src/scss/vendors/_onestepcheckout.scss */
.doodle-checkout span {
  display: block;
}

/* line 245, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-place-order-wrapper {
  padding-top: 26px;
  margin: 26px 0;
  border-top: 1px solid #e5e5e5;
}

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

/**
 * Error
 **/
/* line 268, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error {
  display: block;
  position: relative;
  padding: 13px;
  padding-left: 70px;
  background: #c40606;
  color: #fff;
}
/* line 276, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error a {
  color: #fff;
}
/* line 280, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  content: "";
  background: #930404;
}
/* line 290, ../src/scss/vendors/_onestepcheckout.scss */
.onestepcheckout-error:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -56px -21px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -10px;
  content: "";
}
@media only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  /* line 290, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-error:after {
    background-image: url(../images/png-sprite-icons-2x.png);
    background-position: -111px -42px;
    width: 40px;
    height: 40px;
    background-position: -56px -21px;
    height: 20px;
    width: 20px;
    background-size: 97px 83px;
  }
}
/* line 22, ../src/scss/globals/mixins/_sprite.scss */
.lt-ie9 .onestepcheckout-error:after {
  background-image: url(../images/png-sprite-icons-1x.png);
  background-position: -56px -21px;
  width: 20px;
  height: 20px;
}

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

/* line 311, ../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);
        }
    }
} */
/**
*   Succes page
**/
/**
*   Forgot password
**/
/* line 340, ../src/scss/vendors/_onestepcheckout.scss */
#onestepcheckout-forgot-success {
  padding-bottom: 13px;
}

@media only screen and (min-width: 769px) {
  /* line 348, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-column-left,
  .onestepcheckout-column-right,
  .onestepcheckout-column-middle {
    width: 33.33333%;
  }

  /* line 354, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-threecolumns {
    margin-left: -52px;
  }

  /* line 358, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-column {
    padding-left: 52px;
  }

  /* line 364, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-shipping-method,
  .onestepcheckout-index-index .block-account {
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid #e5e5e5;
  }
  /* line 371, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index #shipping_address {
    padding-top: 26px;
    margin-top: 26px;
    border-top: 1px solid #e5e5e5;
  }
  /* line 377, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .spacer {
    display: none;
  }
}
/**
 * customer address OSC (shipping and billing)
 **/
@media only screen and (min-width: 769px) {
  /* line 390, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-column-left .input-firstname {
    width: 60%;
  }
  /* line 391, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-column-left .input-middlename {
    width: 40%;
    clear: both;
  }
  /* line 392, ../src/scss/vendors/_onestepcheckout.scss */
  .onestepcheckout-index-index .onestepcheckout-column-left .input-lastname {
    width: 60%;
  }
}
/**
 * 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: #e5e5e5;
  border: 1px solid #999999;
  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 #999999;
  background-color: #e5e5e5;
  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 #e5e5e5;
  border-top: 0;
  overflow: auto;
}
/* line 108, ../src/scss/vendors/_jqtransform.scss */
.jqTransformSelectWrapper ul a {
  display: block;
  padding: 6.5px;
  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 "vendor/onestepcheckout";
@import "vendor/amshopby";
*/
