/* This project uses the ITCSS methodology of increasing specificity.

   ITCSS Methodology:
   https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture/
*/

/* 1. SETTINGS: fonts, colors definitions, etc. (no CSS) */

/* FontAwesome: FontAwesome: http://fontawesome.io/
 *
 * Subset generated by FontSquirrel
 */
@font-face {
  font-family: FontAwesome;
  src: url('/content/fonts/font-awesome/fontawesome-webfont.woff2?v=24') format('woff2'), url('/content/fonts/font-awesome/fontawesome-webfont.woff?v=24') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: FA_Light;
  src: url('/content/fonts/font-awesome/fa-light-300.woff2?v=24') format('woff2'), url('/content/fonts/font-awesome/fa-light-300.woff?v=24') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* Hind: https://fonts.google.com/specimen/Hind  */

@font-face {
  font-family: Hind;
  src: url('/content/fonts/hind/hind-regular-webfont.woff2') format('woff2'), url('/content/fonts/hind/hind-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Hind;
  src: url('/content/fonts/hind/hind-medium-webfont.woff2') format('woff2'), url('/content/fonts/hind/hind-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Hind;
  src: url('/content/fonts/hind/hind-semibold-webfont.woff2') format('woff2'), url('/content/fonts/hind/hind-semibold-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
/* 2. TOOLS: globally used mixins and functions (no CSS) */

/* 3. GENERIC: reset styles, box-sizing definition, etc. (1st layer of CSS) */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */

}
/**
 * Remove default margin.
 */

body {
  margin: 0;
}
/**
 * Removing tracking images   
 */

body > img {
  display: none;
}
/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */

}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

/* csslint ignore:start */

[hidden],
template {
  display: none;
}
/* csslint ignore:end */

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: yellow;
  color: black;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */

hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */

}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
/* 1 */ input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */

}
/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */

}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: none;
  /* 1 */

}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */

}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222222;
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}
/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #cccccc;
  color: black;
  padding: 0.2em 0;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

/* csslint ignore:start */

@media print {
  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* csslint ignore:end */

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */

}
.clearfix::after {
  clear: both;
}
/* BEM notation: block__element--modifier */

/* csslint ignore:start */

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* csslint ignore:end */

abbr[title] {
  display: inline-block;
  text-decoration: none;
}
html {
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  height: 100%;
  color: #313334;
}
body {
  height: 100%;
}
.innerBody {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
.masthead,
.main,
.footer {
  display: table-row;
  width: 100%;
}
main {
  height: 100%;
  background: #f2f2f2;
}
.main--serverError {
  background: white;
}
.main__container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px 31px;
}
.printArea,
.page-break {
  display: none;
}
.contents-right {
  text-align: right;
}
@media (max-width: 960px) {
  body {
    overflow: auto;
  }
  html {
    overflow-x: hidden;
  }
}
@media (max-width: 767px) {
  .innerBody {
    position: relative;
    height: 100%;
    overflow-y: scroll;
    /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
  }
}
/* 4. ELEMENTS: styling for bare HTML elements ( h1, a, etc.) */

/* BEM notation: block__element--modifier
*/
html {
  font-family: Hind, helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 100%;
  line-height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Hind;
  font-weight: 600;
  line-height: 1em;
  margin: 1em 0;
}
h1 {
  font-size: 1.625rem;
}
h1.sectionTitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 25px 0 17px;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}
p,
li,
dd,
dt,
blockquote {
  font-size: 1rem;
  line-height: 1.5em;
}
p {
  margin-bottom: 1em;
}
ul,
ol {
  list-style-position: inside;
  padding-left: 0;
}
strong {
  font-weight: 600;
}
blockquote {
  border-left: 2px solid #eacfd2;
  padding: 2px 14px;
  margin: 16px 0;
}
/* BEM notation: block__element--modifier
*/
a {
  text-decoration: none;
  color: #336997;
}
a:hover,
a:active,
a:focus {
  text-decoration: underline;
}
a:visited {
  color: #85a5c1;
}
.a--small {
  font-size: 0.875rem;
}
.a--iconLight {
  font-family: FA_Light;
}
.a--iconSolid {
  font-family: 'FontAwesome';
}
.a--question::before {
  font-family: FA_Light;
  content: '\f059';
  margin-right: 3px;
}
/* BEM notation: block__element--modifier
      btn--primary      : used sparingly, for main page / section action
      btn--positive   : positive actions (i.e. apply)
      btn--negative   : negative actions (i.e. cancel)
      btn--small        : smaller button, where space is limited
      btn--icon       : button with icon (from FontAwesome)
*/
/* csslint ignore:start */

button,
[role="button"],
[type="button"],
[type="submit"] {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1em;
  color: #313334;
  margin-right: 16px;
  padding: 15px 30px;
  width: auto;
  background: transparent;
  border: 2px solid #737373;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
button:focus,
[role="button"]:focus,
[type="button"]:focus,
[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
button:visited,
[role="button"]:visited,
[type="button"]:visited,
[type="submit"]:visited {
  color: #313334;
}
button:hover,
[role="button"]:hover,
[type="button"]:hover,
[type="submit"]:hover,
button:active,
[role="button"]:active,
[type="button"]:active,
[type="submit"]:active {
  border-color: #f0182d;
  color: #f0182d;
  text-decoration: none;
}
/* csslint ignore:end */

.btn--primary {
  color: white;
  background-color: #f0182d;
  border-color: #f0182d;
}
.btn--primary:hover,
.btn--primary:active {
  opacity: 0.8;
  color: white;
}
.btn--primary:visited {
  color: white;
}
.btn--small {
  font-size: 1rem;
  line-height: 1em;
  padding: 9px 19px;
  margin-right: 13px;
  text-align: center;
}
.btn--positive {
  border-color: #42ba13;
  background-color: #42ba13;
  color: white;
}
.btn--positive:visited {
  color: white;
}
.btn--positive:hover,
.btn--positive:active {
  border-color: #42ba13;
  opacity: 0.8;
  color: white;
}
.btn--negative {
  border-color: #d40000;
  background-color: #d40000;
  color: white;
}
.btn--negative:visited {
  color: white;
}
.btn--negative[disabled],
.btn--negative[disabled]:not(.btn--primary) {
  color: white;
  border-color: #d40000;
}
.btn--negative:hover,
.btn--negative:active {
  border-color: #d40000;
  opacity: 0.8;
  color: white;
}
.btn--icon {
  font-size: 1.375rem;
  line-height: 1em;
  padding: 13px 14px;
  font-family: FontAwesome;
  text-align: center;
  min-width: 20px;
  box-sizing: content-box;
}
.btn--icon-small {
  font-size: 1.25rem;
  line-height: 1em;
  padding: 7.5px;
  min-width: 39px;
  box-sizing: border-box;
}
.btn--link {
  padding: 0 2px;
  margin-top: 15px;
  border: 0;
  color: #336997;
  font-size: 0.8125rem;
}
.btn--link:hover {
  color: #336997;
  text-decoration: underline;
}
.btn--link:focus {
  color: #336997;
  box-shadow: none;
}
/* csslint ignore:start */

button[disabled],
[role="button"][disabled],
[type="button"][disabled],
[type="submit"][disabled] {
  cursor: not-allowed;
}
button[disabled]:not(.btn--primary):not(.basket__AdditionalService--btn),
[role="button"][disabled]:not(.btn--primary),
[type="button"][disabled]:not(.btn--primary),
[type="submit"][disabled]:not(.btn--primary) {
  color: #313334;
  border-color: #737373;
}
/* csslint ignore:end */

.btnGroup {
  font-size: 0;
}
.btnGroup button {
  margin: 0;
  border-radius: 0;
  border-right-width: 1px;
  border-left-width: 1px;
}
.btnGroup button:first-child {
  border-radius: 4px 0 0 4px;
  border-right-width: 1px;
  border-left-width: 2px;
}
.btnGroup button:last-child {
  border-radius: 0 4px 4px 0;
  border-right-width: 2px;
  border-left-width: 1px;
}
.btnGroup .btn--inactive {
  opacity: 0.5;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .btn--small-mobile {
    font-size: 1rem;
    line-height: 1em;
    padding: 9px 19px;
    margin-right: 13px;
  }
  .btnGroup button {
    border-width: 1px 2px;
    width: 100%;
    display: block;
  }
  .btnGroup button:first-child {
    border-radius: 4px 4px 0 0;
    border-width: 2px 2px 1px;
  }
  .btnGroup button:last-child {
    border-radius: 0 0 4px 4px;
    border-width: 1px 2px 2px;
  }
}
/* BEM notation: block__element--modifier
*/
label {
  display: block;
  color: #363636;
  font-size: 1rem;
  line-height: 1em;
  margin: 20px 0 6px;
  font-weight: 500;
}
.form__requiredField::after,
.label--required::after {
  content: '*';
  color: #d40000;
  margin-left: 3px;
  font-weight: 600;
}
input,
select,
textarea {
  border: 2px solid #cccccc;
  border-radius: 4px;
  padding: 16px;
  font-size: 1rem;
  line-height: 1em;
  width: 280px;
  color: #313334;
}
input[disabled],
select[disabled],
textarea[disabled] {
  background: #ebebe4;
}
textarea {
  width: 100%;
  height: 200px;
}
input {
  padding: 16px;
}
input.disabled {
  background: #ebebe4;
}
input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}
input[type=number] {
  padding: 16px 0;
}
input[type=date] {
  width: 138px;
}
.form__date {
  position: relative;
}
.form__date::after {
  content: '\f133';
  font-family: FontAwesome;
  position: absolute;
  top: 12px;
  right: 12px;
  line-height: 1em;
}
input::-webkit-input-placeholder {
  color: #999999;
}
input::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
input:-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.placeholder {
  color: #999999;
}
.input--small,
.select--small {
  padding: 5px 9px;
  line-height: normal;
  height: 39px;
}
.select--small {
  padding-top: 7px;
  padding-bottom: 7px;
}
.select--small__padding--sides {
  padding: 0px 9px;
}
.select--small--basket {
  padding: 4px 9px;
  line-height: normal;
  height: 40px;
}
.input--small[type=number] {
  padding: 9px 0;
  -webkit-appearance: none;
}
.label--first {
  margin-top: 0;
}
.label--checkbox {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8125rem;
  cursor: pointer;
}
.label--groupCheckboxes {
  margin-bottom: 18px;
}
.radioField,
.checkboxField {
  margin-top: 10px;
  margin-bottom: 6px;
}
.radioField input[type="radio"],
.checkboxField input[type="radio"],
.radioField input[type="checkbox"],
.checkboxField input[type="checkbox"],
.radioField label,
.checkboxField label {
  float: left;
  line-height: 1.1em;
}
.radioField input[type="radio"],
.checkboxField input[type="radio"],
.radioField input[type="checkbox"],
.checkboxField input[type="checkbox"] {
  margin: 0 -20px 0 0;
  height: 1em;
  z-index: 1;
}
.radioField label,
.checkboxField label {
  margin-left: 27px;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
}
.checkboxField--tableHeader {
  margin: 0;
}
.checkboxFieldGroup {
  margin-top: 20px;
}
.form__buttonBlock {
  display: block;
  margin-top: 20px;
}
.form__buttonBlock--listOptions button,
.form__buttonBlock--listOptions a[role="button"] {
  margin-right: 0;
}
.form__buttonBlock--listOptions button:first-child,
.form__buttonBlock--listOptions a[role="button"]:first-child {
  float: right;
}
.form__buttonBlock--multiOptions button,
.form__buttonBlock--multiOptions a {
  float: left;
  width: 48%;
  margin-right: 4%;
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}
.form__buttonBlock--multiOptions button:last-child,
.form__buttonBlock--multiOptions a:last-child {
  margin-right: 0;
}
fieldset h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 20px;
  width: 100%;
}
.form__hint {
  display: block;
  max-width: 280px;
  margin-bottom: 6px;
  line-height: 1.4em;
  color: #999999;
}
/* validation styling
 *
 * (differnent class format from BEM to match
 * existing structure in Visual Studio)
 */

div.validation-summary-errors {
  font-size: 0.875rem;
  line-height: 1.4em;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid #e2daa2;
  background-color: #fff7be;
  padding: 15px;
  margin-bottom: 15px;
}
div.validation-summary-errors ul {
  list-style: none;
  margin: 0;
}
div.validation-summary-errors li {
  font-size: inherit;
  margin: 0;
}
/* csslint ignore:start */

div.validation-summary-valid ul {
  list-style: none;
  margin: 0;
}
/* csslint ignore:end */

.input-validation-error {
  border-color: #d40000;
}
.field-validation-error {
  display: block;
  font-size: 0.875rem;
  color: #d40000;
  margin-top: 4px;
  clear: both;
  line-height: 1.2em;
}
input[type=file] {
  background: #fff7be;
  width: 100%;
  border: 2px dashed #e2daa2;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .input--small-mobile {
    padding: 9px;
    line-height: normal;
    height: 39px;
  }
  .form__date::after {
    content: none;
  }
  .form__buttonBlock--listOptions button,
  .form__buttonBlock--multiOptions button,
  .form__buttonBlock--listOptions a[role="button"],
  .form__buttonBlock--multiOptions a[role="button"] {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }
  .form__buttonBlock--listOptions button:first-child,
  .form__buttonBlock--multiOptions button:first-child,
  .form__buttonBlock--listOptions a[role="button"]:first-child,
  .form__buttonBlock--multiOptions a[role="button"]:first-child {
    float: none;
    margin-top: 0;
  }
}
/* BEM notation: block__element--modifier
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4em;
}
th {
  background: #d6d6d6;
  color: #313334;
  font-weight: 600;
  padding: 24px 20px;
}
td {
  padding: 15px 20px;
  vertical-align: top;
}
th:first-child,
td:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
th:last-child,
td:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
tr:nth-child(odd) {
  background: #f2f2f2;
}
thead + tbody tr:nth-child(even) {
  background: #f2f2f2;
}
thead + tbody tr:nth-child(odd) {
  background: white;
}
tfoot tr:nth-child(odd),
tfoot tr:nth-child(even) {
  background: transparent;
  font-weight: bold;
}
.table--full {
  width: 100%;
}
.table--small th,
.table--small td {
  padding: 16px 10px;
}
.table--small th {
  text-align: left;
}
.table--plain tr:nth-child(even),
.table--plain tr:nth-child(odd) {
  background: transparent;
}
.table--plain td {
  padding: 0 0 0 15px;
}
.table--plain td:first-child {
  padding-left: 0;
}
.table__block--showMobile,
.table__block--showTablet {
  display: none;
}
.table__sort {
  cursor: pointer;
}
.table__sort::after {
  content: '\f0dc';
  font-family: FontAwesome;
  font-size: 0.875rem;
  margin-left: 6px;
  color: #959595;
}
.table__sort:hover::after {
  content: '\f0dd';
  color: #313334;
}
.table__sort--asc::after {
  content: '\f0de';
  color: #313334;
}
.table__sort--asc:hover::after {
  content: '\f0dd';
  color: #313334;
}
.table__sort--desc::after {
  content: '\f0dd';
  color: #313334;
}
.table__sort--desc:hover::after {
  content: '\f0de';
  color: #313334;
}
.table__cell--dateTime {
  width: 50px;
}
.table__cell--dateTime span {
  display: block;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .table__cell--hideTablet {
    display: none;
  }
  .table__block--showTablet {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .table__cell--hideTablet,
  .table__cell--hideMobile {
    display: none;
  }
  .table__block--showMobile,
  .table__block--showTablet {
    display: block;
  }
}
/* BEM notation: block__element--modifier
*/
.accordion__header {
  margin: 10px 0 0;
  position: relative;
  border-color: #f0182d;
  color: #f0182d;
  display: block;
  text-align: left;
}
.accordion__header:first-child {
  margin-top: 0;
}
.accordion__header::after {
  content: '\f068';
  font-family: FontAwesome;
  font-size: 0.9375rem;
  line-height: 1em;
  position: absolute;
  right: 12px;
}
.accordion__header--closed {
  border-color: #313334;
  color: #313334;
}
.accordion__header--closed::after {
  content: '\f067';
}
.accordion__panel {
  padding: 7px 0;
}
.accordion__panel--mobile {
  padding: 0;
}
.accordion__panel--closed {
  display: none;
}
.accordion__header--mobile::after {
  content: none;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .accordion--mobile {
    padding: 0;
  }
  .accordion__header--mobile {
    padding: 10px;
    border-radius: 4px;
    border: 2px solid #f0182d;
    cursor: pointer;
  }
  .accordion__header--mobile h1,
  .accordion__header--mobile h2 {
    margin: 0;
    color: #f0182d;
  }
  .accordion__header--mobile::after {
    content: '\f068';
    top: 11px;
    color: #f0182d;
  }
  .accordion__panel--mobile {
    padding: 10px;
  }
  .accordion__header--closed-mobile {
    border-color: #313334;
  }
  .accordion__header--closed-mobile h1,
  .accordion__header--closed-mobile h2 {
    color: #313334;
  }
  .accordion__header--closed-mobile::after {
    content: '\f067';
    color: #313334;
  }
  .accordion__header--closed-mobile:hover {
    border-color: #f0182d;
  }
  .accordion__header--closed-mobile:hover h1,
  .accordion__header--closed-mobile:hover h2 {
    color: #f0182d;
  }
  .accordion__header--closed-mobile:hover::after {
    color: #f0182d;
  }
  .accordion__panel--closed-mobile {
    display: none;
  }
}
/* BEM notation: block__element--modifier
*/

.expander {
  position: relative;
  display: block;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  color: #f0182d;
  font-weight: 600;
}
.expander::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 2px dotted #f0182d;
}
.expander::before {
  content: '\f078';
  font-family: FontAwesome;
  margin-right: 6px;
}
.expander span {
  line-height: 2em;
}
.expander .expander__lessText {
  display: none;
}
.expander--open::before {
  content: '\f077';
}
.expander--open .expander__moreText {
  display: none;
}
.expander--open .expander__lessText {
  display: inline;
}
/* BEM notation: block__element--modifier
*/
.toggle {
  font-size: 0.9375rem;
  line-height: 2.266666667em;
  font-weight: 600;
  height: 34px;
}
.toggle__switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 20px;
  background: #737373;
  color: white;
  border-radius: 10px;
  margin-top: 3px;
  cursor: pointer;
}
.toggle__switch::after {
  position: absolute;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1em;
  padding: 0 6px;
  left: 0;
  top: 4px;
  width: 48px;
  content: 'ON';
  text-align: left;
}
.toggle__indicator {
  display: block;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  border: 1px solid white;
  margin: 2px;
  background: #f0182d;
  font-size: 0.75rem;
  line-height: 1em;
  float: right;
}
.toggle__label {
  float: left;
  margin-right: 5px;
}
.toggle__switch--off div {
  float: left;
}
.toggle__switch--off::after {
  content: 'OFF';
  text-align: right;
}
/* BEM notation: block__element--modifier
*/
.breadcrumbBar {
  background: white;
  padding: 7px 0 10px;
}
.breadcrumbBar:first-child {
  padding-top: 0;
}
.breadcrumbBar__container {
  position: relative;
  padding-bottom: 0;
}
.breadcrumbs {
  list-style: none;
  font-size: 0.9375rem;
  margin: 0;
}
.breadcrumbs span {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 25px;
  vertical-align: top;
}
.breadcrumbs__item {
  float: left;
  margin-right: 0;
  position: relative;
  line-height: 25px;
  margin-left: -9px;
}
.breadcrumbs__item:first-child {
  margin-left: 0;
}
.breadcrumbs__item:last-child {
  margin-right: 0;
}
.breadcrumbs__item--link {
  border: 2px solid #eeeeee;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.breadcrumbs__item--link span {
  padding: 0 17px;
}
.breadcrumbs__item--link::before,
.breadcrumbs__item--link::after {
  content: '';
  display: block;
  height: 29px;
  width: 18px;
  position: absolute;
  top: -2px;
  background: transparent url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
}
.breadcrumbs__item--link::before {
  left: -4px;
  background-position: -571px -149px;
  z-index: 0;
}
.breadcrumbs__item--link::after {
  right: -5px;
  background-position: -564px -149px;
  z-index: 1;
}
.breadcrumbs__item--link:hover {
  background: #eeeeee;
}
.breadcrumbs__item--link:hover::before {
  background-position: -630px -149px;
  z-index: 2;
}
.breadcrumbs__item--link:hover::after {
  background-position: -599px -149px;
}
.breadcrumbs__item--link:first-child {
  border: 2px solid #eeeeee;
  border-right: none;
  border-radius: 4px 0 0 4px;
}
.breadcrumbs__item--link:first-child span {
  padding: 0 15px 0 9px;
}
.breadcrumbs__item--link:first-child::before {
  content: none;
}
.breadcrumbs__item--link:nth-last-child(2)::after {
  background-position: -630px -149px;
}
.breadcrumbs__item--link:nth-last-child(2):hover::after {
  background-position: -533px -149px;
}
.breadcrumbs__item--current {
  background: #eeeeee;
  border: 2px solid #eeeeee;
  border-left: none;
  border-radius: 0 4px 4px 0;
  padding: 0 9px 0 17px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .breadcrumbBar {
    padding-bottom: 7px;
  }
  .breadcrumbs li {
    font-size: 0.875rem;
    line-height: 1.5em;
    border: none;
  }
  .breadcrumbs li::before {
    content: none;
  }
  .breadcrumbs__item {
    margin: 0;
  }
  .breadcrumbs__item--link {
    padding-right: 25px;
  }
  .breadcrumbs__item--link span {
    padding: 0;
  }
  .breadcrumbs__item--link:first-child {
    border: none;
  }
  .breadcrumbs__item--link:first-child span {
    padding: 0;
  }
  .breadcrumbs__item--link::after {
    content: '\f105';
    font-family: FontAwesome;
    line-height: 25px;
    color: #9c9c9c;
    right: 0;
    top: 0;
    width: 15px;
    height: 25px;
    background: none;
  }
  .breadcrumbs__item--current {
    padding: 0;
    background: transparent;
  }
}
/* BEM notation: block__element--modifier */
.pagination {
  list-style: none;
  text-align: center;
  font-size: 0;
  margin-top: 30px;
}
.pagination__item {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.pagination__item:last-child {
  margin-right: 0;
}
.pagination__item a {
  font-size: 0;
  margin: 0;
  background: transparent;
}
.pagination__item a::before {
  font-family: FontAwesome;
  font-size: 1rem;
  line-height: 1em;
}
.pagination__item--first a::before {
  content: '\f100';
}
.pagination__item--previous a::before {
  content: '\f104';
}
.pagination__item--next a::before {
  content: '\f105';
}
.pagination__item--last a::before {
  content: '\f101';
}
.pagination__item--page {
  margin-right: 9px;
}
.pagination__item--page:nth-child(3) {
  margin-left: 4px;
}
.pagination__item--page a {
  font-size: 1rem;
  line-height: 30px;
  display: block;
  height: 30px;
  width: 30px;
  border-radius: 4px;
  color: #313334;
}
.pagination__item--page a:hover {
  text-decoration: none;
  background: #cccccc;
}
.pagination__item--current a {
  background: #336997;
  color: white;
}
.pagination__item--current a:hover {
  text-decoration: none;
  background: #336997;
  opacity: 0.7;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .pagination__item--page {
    display: none;
  }
  .pagination__item--current {
    display: inline-block;
  }
}
/* BEM notation: block__element--modifier
*/
.tabs {
  position: relative;
  padding: 20px 0 0;
}
.tabs::before {
  content: '';
  width: 100%;
  position: absolute;
  height: 2px;
  background: #cccccc;
  top: 64px;
  z-index: 6;
}
.tabs .tab__headers,
.tabs .tab__panels {
  margin: 0;
}
.tabs .tab__header {
  margin-bottom: 0;
}
.tab__headers,
.tab__panels {
  list-style: none;
}
.tab__header {
  display: inline-block;
  margin-left: 6px;
}
.tab__header:first-child {
  margin-left: 20px;
}
.tab__header a {
  display: block;
  position: relative;
  padding: 13px 35px;
  border-radius: 4px 4px 0 0;
  border: 2px solid white;
  border-bottom: none;
  line-height: 16px;
  color: #313334;
  background: white;
}
.tab__header a:hover,
.tab__header a:focus {
  text-decoration: none;
}
.tab__header a::before,
.tab__header a::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 7px;
  background: linear-gradient(to bottom, white 0%, #f7f8f8 100%);
}
.tab__header a::before {
  left: -2px;
}
.tab__header a::after {
  right: -2px;
}
.tab__header--active {
  position: relative;
  z-index: 6;
}
.tab__header--active a {
  cursor: default;
}
.tab__header--active a::before,
.tab__header--active a::after {
  content: none;
}
.tab__panels {
  background: #fbfbfb;
  padding: 20px;
}
.tab__panel {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 4px;
  display: none;
}
.tab__panel--active {
  display: block;
}
.tabs--multipleBaskets,
.tabs--accountOrders {
  padding: 0;
}
.tabs--multipleBaskets::before,
.tabs--accountOrders::before {
  content: none;
}
.tabs--accountOrders {
  margin-top: 30px;
}
.tab__panels--multipleBaskets,
.tab__panels--accountOrders {
  padding: 0;
  margin-top: 0;
  background: transparent;
}
.tab__header--highlight a {
  border-color: #cccccc;
}
.tab__header--highlight a::after {
  right: 0;
}
.tab__header--highlight a::before {
  left: 0;
}
.tab__header--highlight.tab__header--active a {
  background: #fbfbfb;
}
.tab__header--highlight.tab__header--active a::after,
.tab__header--highlight.tab__header--active a::before {
  content: '';
  height: 2px;
  width: 60%;
  bottom: -2px;
  background: #fbfbfb;
}
.tab__header--highlight.tab__header--active a::before {
  left: 0;
}
.tab__header--highlight.tab__header--active a::after {
  right: 0;
}
.tab__panel--highlight {
  padding: 0;
  background: #fbfbfb;
}
.tabs--productDetails {
  padding: 0;
}
.tabs--productDetails h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1em;
  margin: 0;
}
.tabs--productDetails abbr {
  border: none;
}
.tabs--productDetails::before {
  content: none;
}
.tab__panels--productDetails {
  padding: 0;
  margin-top: 0;
  background: transparent;
}
.tab__panels--productDetails h2 {
  display: none;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .tabs--productDetails h2 {
    font-size: 1rem;
    font-weight: bold;
  }
  .tab__header a {
    padding: 13px 5px;
    font-size: 0.9375rem;
  }
  .tab__header:first-child {
    margin-left: 10px;
  }
  .tab__header--productDetails {
    display: none;
  }
  .tab__panels {
    padding: 0 0 10px;
  }
  .tab__panels--productDetails li {
    padding: 0;
    background: transparent;
  }
  .tab__panels--productDetails .tab__panel {
    display: block;
  }
  .tab__panels--productDetails h2 {
    display: block;
  }
  .tab__panel {
    padding: 10px;
  }
}
/* BEM notation: block__element--modifier
*/
.message {
  margin: 20px 0;
  padding: 12px;
  border-radius: 4px;
  line-height: 1.2em;
  background-color: #d9edf7;
  border: 2px solid #b8d9e9;
  font-size: 1rem;
}
.message button,
.message a[role="button"] {
  float: right;
  margin: 0 0 0 20px;
  text-align: center;
}
.message h3 {
  margin-top: 5px;
  margin-bottom: 13px;
  font-size: 0.9375rem;
}
.message--warning {
  position: relative;
  margin-bottom: 30px;
  padding-right: 200px;
  border-color: #e9e6ad;
  background: #f6f3c0;
}
.message--warning button,
.message--warning a[role="button"] {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-color: #313334;
}
.message--positive {
  border-color: #42ba13;
  background: #ddfad2;
}
.message--negative {
  border-color: #d40000;
  background: #ffd4d4;
}
.message--small,
.message--tableCell {
  margin: 10px 0;
  padding: 6px;
  font-size: 0.8125rem;
  line-height: 1.4em;
  text-align: left;
}
.message--tableCell {
  margin: 0;
}
.message--basket {
  clear: left;
}
.message--basket:first-child {
  margin-top: 0;
}
.message--first {
  margin-top: 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .message {
    padding-right: 12px;
  }
  .message button,
  .message a[role="button"] {
    position: static;
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
  .message div + button,
  .message div + a[role="button"] {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
/* BEM notation: block__element--modifier
*/

.toolTip {
  position: absolute;
  right: -110px;
  width: 300px;
  background: white;
  border: 2px solid #b8d9e9;
  border-radius: 4px;
  padding: 20px;
  z-index: 2;
  font-size: 0.875rem;
  line-height: 1.4em;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.14);
}
.toolTip__icon {
  position: relative;
  display: inline-block;
  margin: 0 0 0 5px;
}
.toolTip__icon::before {
  content: '\f059';
  font-family: FontAwesome;
  vertical-align: top;
  cursor: pointer;
}
.toolTip__icon--opened span {
  display: block;
}
.toolTip__icon--inner {
  display: none;
  position: relative;
  margin: -7px 0 0;
  padding: 7px 0 0;
}
.toolTip__icon--inner::after,
.toolTip__icon--inner::before {
  position: absolute;
  top: 0;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  z-index: 20;
}
.toolTip__icon--inner::before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #b8d9e9;
}
.toolTip__icon--inner::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: 2px;
}
@media screen and (max-width: 767px) {
  .toolTip__icon {
    position: static;
  }
  .toolTip {
    left: 0;
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .toolTip {
    width: 100%;
  }
}
/* BEM notation: block__element--modifier */

/***** Loader *****/

.loader {
  width: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1em;
  padding: 20px;
  display: none;
}
.loader::after {
  font-family: FontAwesome;
  content: '\f110';
  display: block;
  font-size: 2.125rem;
  line-height: 1em;
  color: #f0182d;
  height: 34px;
  width: 34px;
  margin: 0 auto;
  -webkit-animation: spin 1.3s linear infinite;
  animation: spin 1.3s linear infinite;
}
.loader--active {
  display: block;
}
.loader__text {
  margin-bottom: 15px;
}
/***** Loader Flexbox Positioning *****/

.flexbox .loader {
  align-self: center;
}
/***** Animations *****/

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
/* 5. OBJECTS: class-based selectors defining undecorated design patterns */

/* GRID */

/* 6. COMPONENTS: specific UI components (majority of CSS exists here) */

/* BEM notation: block__element--modifier */
.masthead {
  background: white;
}
.masthead__container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}
.masthead__main {
  padding-bottom: 16px;
  max-height: 178px;
}
/***** TOP BAR *****/

.masthead__topBar {
  position: relative;
  background: #333333;
  color: white;
}
.masthead__contact {
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 10px;
}
.masthead__contact::before {
  content: '\f1d9';
  font-family: FontAwesome;
  margin-right: 6px;
  line-height: 26px;
  vertical-align: top;
}
.masthead__contactLink {
  color: white;
  text-transform: uppercase;
  font-size: 0.6875rem;
  line-height: 26px;
  vertical-align: top;
}
.masthead__contactLink:visited {
  color: white;
}
.masthead__contactSpacer {
  font-family: FontAwesome;
  font-size: 4px;
  padding: 0 5px;
  line-height: 26px;
  vertical-align: top;
}
.masthead__tagline {
  text-align: center;
  font-size: 0.875rem;
  line-height: 26px;
}
/***** VAT TOGGLE *****/

.masthead__vatToggle {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 10px;
  font-size: 0.6875rem;
  line-height: 26px;
}
/***** LOGO *****/

.masthead__logoLink {
  position: relative;
  display: block;
  width: 210px;
  height: 95px;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.masthead__logoLink:hover {
  opacity: 0.7;
  text-decoration: none;
}
.masthead__logoLink::after {
  font-family: FontAwesome;
  content: '\f015';
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: transparent;
  transition: color 0.3s ease;
}
.masthead__logoLink:hover::after {
  color: #f0182d;
}
.masthead__logo {
  width: 100%;
}
/***** TABS *****/

.masthead__tabs {
  position: absolute;
  top: 0;
  left: 0;
  margin: 7px 0 0 230px;
  list-style: none;
  font-size: 0;
  /* prevent gaps between the inline tab elements */
  z-index: 8;
}
.masthead__tab {
  display: inline-block;
  height: 82px;
  padding: 0;
  margin: 10px 5px 0;
  border-radius: 4px 4px 0 0;
}
.masthead__tab:first-child::before {
  content: '';
  display: block;
  height: 48px;
  width: 4px;
  border-radius: 2px;
  background: #eeeeee;
  position: absolute;
  top: 16px;
  left: -2px;
}
.masthead__tab a {
  position: relative;
  display: table-cell;
  height: 61px;
  width: 107px;
  font-size: 0.875rem;
  color: #333333;
  border-radius: 4px;
  vertical-align: middle;
  transition: color 0.3s ease, border-color 0.3s ease;
  background: white;
}
.masthead__tab a:visited,
.masthead__tab a:active,
.masthead__tab a:focus {
  color: #333333;
}
.masthead__tab a:hover,
.masthead__tab a:active {
  color: #f0182d;
  text-decoration: none;
}
.masthead__tab a:focus {
  text-decoration: none;
}
.masthead__tab a::after {
  content: '';
  display: block;
  height: 48px;
  width: 4px;
  border-radius: 2px;
  background: #eeeeee;
  position: absolute;
  top: 6px;
  right: -7px;
}
.masthead__tab--active {
  background: #eeeeee;
}
.masthead__tab--active a,
.masthead__tab--active a:visited,
.masthead__tab--active a:focus {
  background: #eeeeee;
  color: #f0182d;
  border-color: #f0182d;
  text-decoration: none;
}
.masthead__tab--active a::after {
  background: transparent;
}
.masthead__tab--inactive a::after {
  background: transparent;
}
.masthead__tab--active:first-child::before,
.masthead__tab--inactive:first-child::before {
  background: transparent;
}
.masthead__tabSearch::before,
.masthead__tabFinder::before,
.masthead__tabOffers::before,
.masthead__tabReOrder::before,
.masthead__tabFeatured::before {
  font-family: FontAwesome;
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}
.masthead__tabSearch::before {
  content: '\f002';
}
.masthead__tabFinder::before {
  content: '\f043';
}
.masthead__tabOffers::before {
  content: '\f02c';
}
.masthead__tabFeatured::before {
  content: '\f005';
}
.masthead__tab a.masthead__tabOffers,
.masthead__tab a.masthead__tabOffers--custom {
  color: red;
  transition: color 0.3s ease;
}
.masthead__tab a.masthead__tabOffers:hover,
.masthead__tab a.masthead__tabOffers--custom:hover,
.masthead__tab a.masthead__tabOffers:active,
.masthead__tab a.masthead__tabOffers--custom:active {
  color: #f0182d;
}
.masthead__tabReOrder::before {
  content: '\f01e';
}
.masthead__tabBrowse {
  text-align: left;
  padding-left: 10px;
  padding-top: 3px;
  line-height: 1.4em;
}
.masthead__tabBrowse div {
  display: inline-block;
}
.masthead__tabBrowse div::after {
  margin-left: 4px;
  content: '\f107';
  font-family: FontAwesome;
  display: inline-block;
  font-size: 1rem;
  vertical-align: bottom;
}
.masthead__tabFinder,
.masthead__tabOffers,
.masthead__tabFeatured,
.masthead__tabFeatured--custom,
.masthead__tabOffers--custom {
  line-height: 1em;
  text-align: center;
}
.masthead__tabFeatured--custom img,
.masthead__tabOffers--custom img {
  display: block;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  height: 14px;
  width: 14px;
}
/***** FLYOUT PANELS *****/

.masthead__flyoutPanelGroup {
  position: relative;
  z-index: 1;
  margin: 0;
  list-style: none;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  border: 1px solid #eeeeee;
  background: #eeeeee;
  padding: 12px 14px;
}
.masthead__flyoutPanelGroup--opened {
  z-index: 7;
}
.masthead__flyoutPanels {
  margin: 0;
}
.masthead__flyoutPanel {
  display: none;
}
.masthead__flyoutPanel--active {
  display: block;
}
.masthead__flyoutLoading {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 20px;
  margin-top: -10px;
}
/***** SEARCH FLYOUT *****/

.masthead__flyoutSearchForm {
  width: 100%;
  position: relative;
}
.masthead__flyoutSearchForm ul {
  list-style: none;
  background: white;
  position: absolute;
  top: 39px;
  left: 0;
  border-radius: 4px;
  box-shadow: 0 2px 10px #c9c9c9;
  border: solid 2px #e4e4e4;
  margin: 6px 0 0;
  padding: 10px 0;
  width: 320px;
  z-index: 2;
}
.masthead__flyoutSearchForm li {
  padding: 0 5px;
}
.masthead__flyoutSearchForm li.active a {
  background: #eeeeee;
  text-decoration: none;
}
.masthead__flyoutSearchForm a {
  color: #313334;
  font-size: 1rem;
  display: block;
  line-height: 2em;
  padding: 0 15px;
  border-radius: 4px;
}
.masthead__flyoutSearchForm--hidden {
  display: none;
}
.masthead__flyoutSearchInput {
  width: 100%;
}
.masthead__flyoutSearchButton {
  position: absolute;
  top: 0;
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin: 0;
  width: 67px;
}
/***** BROWSE FLYOUT *****/

.masthead__flyoutBrowse {
  padding-top: 20px;
  min-height: 275px;
}
.browse__container {
  overflow: hidden;
  position: relative;
}
.browse__categories {
  border-left: 4px solid #e6e6e6;
  padding-left: 23px;
  position: relative;
  min-width: 530px;
  display: none;
}
.browse__header {
  margin-left: 10px;
}
.browse__header span::before {
  font-family: FontAwesome;
  font-weight: 400;
  content: '\f105';
  margin: 0 7px;
  line-height: 1em;
}
.browse__header h2 {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
  margin: 0;
}
.browse__departments,
.browse__categories {
  float: left;
}
.browse__departments,
.browse__categoryItems {
  min-height: 240px;
  min-width: 145px;
}
.browse__departments ul,
.browse__categoryItems ul {
  margin: 0;
  list-style: none;
}
.browse__departments li,
.browse__categoryItems li {
  margin: 0 23px 5px 0;
}
.browse__departments li:last-child,
.browse__categoryItems li:last-child {
  margin-bottom: 0;
}
.browse__departments a,
.browse__categoryItems a {
  display: inline-block;
  padding: 13px 10px;
  font-size: 0.9375rem;
  line-height: 1em;
  border-radius: 4px;
  color: #313334;
}
.browse__departments a:hover,
.browse__categoryItems a:hover,
.browse__departments a:active,
.browse__categoryItems a:active {
  text-decoration: none;
  background: #d9d9d9;
}
.browse__categoryItems {
  margin-top: 10px;
}
.browse__departments--current a {
  background: #336997;
  color: white;
}
.browse__departments--current a:hover {
  background: #336997;
  color: white;
}
.browse__departments--current a:focus {
  text-decoration: none;
}
.browse__categories--active {
  display: block;
}
.browse__breadcrumbs {
  margin: 14px 0;
}
.browse__breadcrumbs ul {
  height: auto;
  list-style: none;
  display: block;
}
.browse__breadcrumbs li {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 25px;
  padding: 0 17px;
  vertical-align: top;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border: 2px solid #d7d7d7;
  background: #d7d7d7;
  position: relative;
}
.browse__breadcrumbs li:first-child {
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0 15px 0 9px;
}
.browse__breadcrumbs li:first-child::before {
  content: none;
}
.browse__breadcrumbs li:last-child {
  border: 2px solid #e4e4e4;
  background: #e4e4e4;
  border-radius: 0 4px 4px 0;
}
.browse__breadcrumbs li:last-child::before {
  background-position: -666px -149px;
}
.browse__breadcrumbs li::before {
  content: '';
  display: block;
  height: 29px;
  width: 18px;
  position: absolute;
  top: -2px;
  left: -9px;
  background: transparent url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat -697px -149px;
  z-index: 1;
}
.browse__breadcrumbs a {
  display: block;
}
.browse__breadcrumbs a:visited {
  color: #336997;
}
.browse__viewAll a {
  color: #336997;
  font-weight: bold;
}
.browse__viewAll a:hover {
  text-decoration: underline;
  background: none;
}
.browse__viewAll a::after {
  content: '\f105';
  font-family: FontAwesome;
}
.browse__back {
  color: #313334;
}
.browse__back::before {
  font-family: FontAwesome;
  content: '\f104';
  margin-right: 6px;
}
/***** FLEXBOX BROWSE FLYOUT IMPLEMENTATION *****/

.flexbox .browse__categories {
  max-width: 85%;
}
.flexbox .browse__categories ul {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: column;
  -ms-flex-direction: column;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-flow: column wrap;
  height: 350px;
}
.flexbox .browse__breadcrumbs ul {
  height: auto;
  display: block;
}
/***** INK & TONER FINDER FLYOUT *****/

.masthead__inkAndTonerFinder {
  min-height: 370px;
  z-index: 998;
  position: relative;
  background-color: #eeeeee;
}
/***** USER ACCOUNT AREA *****/

.masthead__accountTabs {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0;
  z-index: 10;
}
.masthead__accountTabs--knockBack {
  z-index: 3;
}
.masthead__accountTab {
  display: inline-block;
  height: 79px;
  padding: 10px 10px 0;
  border-radius: 4px 4px 0 0;
}
.masthead__accountTab:last-child {
  display: none;
}
.masthead__accountTabLink {
  display: table-cell;
  height: 61px;
  width: 120px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1em;
  border-radius: 4px;
  vertical-align: middle;
  transition: color 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 20;
}
.masthead__accountTabLink:hover {
  text-decoration: none;
  opacity: 0.7;
}
.masthead__accountTabLink::before {
  font-family: FontAwesome;
  font-size: 1rem;
  margin-right: 6px;
}
.masthead__basketTab {
  background: #336997;
  color: white;
  transition: opacity 0.3s ease;
  padding: 0;
  width: 120px;
}
.masthead__basketTab:visited {
  color: white;
}
.masthead__basketTab:focus {
  text-decoration: none;
}
.masthead__basketTab::before {
  content: '\f07a';
}
.masthead__myAccountTab {
  background: white;
  color: #313334;
  padding-top: 7px;
}
.masthead__myAccountTab:visited {
  color: #313334;
}
.masthead__myAccountTab:focus {
  text-decoration: none;
}
.masthead__myAccountTabHeader::before {
  content: '\f007';
  font-family: FontAwesome;
  font-size: 1rem;
  margin-right: 6px;
}
.masthead__myAccountTabSignIn {
  font-size: 0.6875rem;
  margin-top: 3px;
}
.masthead__myAccountTabSignIn strong {
  color: #336997;
}
.masthead__myAccountTab--loggedIn::before {
  display: block;
  margin: 0 0 8px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .masthead__logo,
  .masthead__logoLink {
    width: 167px;
  }
  .masthead__logo {
    margin: 10px 0;
  }
  .masthead__logoLink::after {
    right: 15px;
    bottom: 12px;
  }
  .masthead__tabs {
    margin-left: 179px;
  }
  .masthead__tab {
    margin: 7px 7px 0;
  }
  .masthead__tab a {
    width: 80px;
    font-size: 0.8125rem;
  }
  .masthead__tab a::after {
    right: -9px;
  }
  .masthead__tab:first-child::before {
    top: 13px;
  }
  .masthead__accountTab {
    padding: 7px 7px 0;
  }
  .masthead__basketTab {
    width: 72px;
  }
  .masthead__basketTab span {
    display: none;
  }
  .masthead__basketTab::before {
    display: block;
    margin: 0 0 8px;
  }
  .masthead__accountTabLink {
    font-size: 0.8125rem;
  }
  .flexbox .browse__categoryItems ul {
    max-height: 470px;
  }
  .masthead__tabBrowse {
    padding-left: 5px;
  }
  .masthead__tabBrowse div::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .masthead__logo {
    width: 139px;
    margin: 6px 0;
  }
  .masthead__logoLink {
    height: 74px;
    width: 155px;
  }
  .masthead__logoLink::after {
    bottom: 1px;
    right: 29px;
  }
  .masthead__main {
    border-top: 4px solid #313334;
    padding-bottom: 15px;
  }
  .masthead__flyoutPanelGroup {
    padding: 14px;
  }
  .masthead__tabs,
  .masthead__topBar {
    display: none;
  }
  .masthead__accountTabs {
    top: 4px;
    margin: 0;
  }
  .masthead__accountTab {
    padding: 13px 3px;
  }
  .masthead__accountTab:last-child {
    padding-right: 20px;
    display: inline-block;
  }
  .masthead__accountTabLink {
    background: white;
    border: 2px solid #737373;
    color: #313334;
    height: 48px;
    width: 48px;
    font-size: 0;
    padding: 0;
  }
  .masthead__accountTabLink::before {
    color: #313334;
    font-size: 1.375rem;
    line-height: 44px;
    margin: 0;
  }
  .masthead__burgerMenuTab::before {
    content: '\f0c9';
  }
  .masthead__burgerMenuTab:active,
  .masthead__burgerMenuTab:focus,
  .masthead__burgerMenuTab:hover {
    text-decoration: none;
  }
  .burgerMenu {
    display: none;
  }
  .masthead__flyoutPanel {
    padding: 14px 13px;
    display: none;
  }
  .masthead__flyoutSearch {
    display: block;
  }
}
@media screen and (max-width: 370px) {
  .masthead__accountTab:first-child {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flexbox .browse__categories {
    max-width: 75%;
  }
}
/* BEM notation: block__element--modifier */
/***** COOKIE BAR *****/

.masthead__cookieBar {
  background: #eeeeee;
  border-bottom: 4px solid #dddddd;
  padding: 10px 0;
}
.masthead__cookieBar span {
  display: table-cell;
  line-height: 1.2em;
  vertical-align: middle;
  padding: 0 10px 0 0;
}
.masthead__cookieBarContainer {
  display: table;
  width: 100%;
}
.masthead__cookieBarButtons {
  text-align: right;
  display: table-cell;
  vertical-align: middle;
}
.masthead__cookieBarButtons button {
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.masthead__cookieBar--off {
  display: none;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  
}
/* BEM notation: block__element--modifier */
.miniBasket {
  width: 320px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.miniBasket--open {
  display: block;
}
.miniBasket__tab {
  position: relative;
  background: white;
  height: 72px;
  width: 124px;
  float: right;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  padding: 8px;
  box-sizing: content-box;
}
.miniBasket__tab::after,
.miniBasket__tab::before {
  content: '';
  background: white;
  height: 2px;
  width: 50%;
  display: block;
  position: absolute;
  bottom: -2px;
}
.miniBasket__tab::before {
  left: 0;
}
.miniBasket__tab::after {
  right: 0;
}
.miniBasket__body {
  background: white;
  clear: right;
  border-radius: 4px 0 4px 4px;
  min-height: 150px;
  padding: 20px 10px 10px;
}
/***** TOP BAR *****/

.miniBasketHead__total {
  float: left;
}
.miniBasketHead__total span,
.miniBasketHead__total strong {
  display: block;
  line-height: 1em;
}
.miniBasketHead__total span {
  margin: 7px 0 4px;
  font-size: 1rem;
}
.miniBasketHead__total strong {
  display: block;
  font-size: 1.25rem;
}
.miniBasketHead__checkoutBtn {
  float: right;
  margin-right: 0;
}
/***** BASKET ITEMS *****/

.miniBasket__itemContainer {
  clear: both;
  padding: 20px 0 14px;
}
.miniBasket__items {
  margin: 0;
  list-style: none;
  max-height: 250px;
  overflow-y: auto;
}
.miniBasket__items li {
  margin: 0 0 6px;
  position: relative;
  font-size: 0;
}
.miniBasket__items li:last-child {
  margin-bottom: 0;
}
.miniBasket__items img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 50px;
  width: 50px;
  margin: 4px;
}
.miniBasket__items form {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 2px;
}
.miniBasket__items input {
  width: 48px;
  height: 48px;
  text-align: center;
  vertical-align: middle;
  padding: 12px 0;
}
.miniBasket__item {
  display: block;
  border-radius: 4px;
  border: 2px solid #eeeeee;
  min-height: 62px;
  transition: border-color 0.3s ease;
  padding-right: 87px;
  position: relative;
}
.miniBasket__item:hover,
.miniBasket__item:active,
.miniBasket__item:focus {
  border-color: #f0182d;
  text-decoration: none;
}
.miniBasket__itemText {
  font-size: 0.8125rem;
  line-height: 1em;
  margin: 7px 0 7px 58px;
}
.miniBasket__itemTitle {
  color: #313334;
}
.miniBasket__itemSubtotal {
  font-weight: 600;
  margin-top: 5px;
  color: #336997;
}
.miniBasket__itemDelete {
  display: inline-block;
  margin-right: 0;
  height: 48px;
  min-width: 35px;
  padding: 14px 8px;
  vertical-align: middle;
  border: none;
  color: #d40000;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}
.miniBasket__itemDelete:hover {
  opacity: 1;
  text-decoration: none;
  border-color: transparent;
  color: #d40000;
}
.miniBasket__itemDelete:visited {
  color: #d40000;
}
.miniBasket__itemDelete:active,
.miniBasket__itemDelete:focus {
  border: 0;
  color: #d40000;
  box-shadow: none;
  text-decoration: none;
}
.miniBasket__itemDelete[disabled]:not(.btn--primary) {
  border-color: transparent;
}
.miniBasket__itemDelete--saved-printers {
  height: 39px;
  padding: 8px;
}
.miniBasket__totals {
  width: 100%;
  border-bottom: 6px solid #336997;
  margin-bottom: 6px;
}
.miniBasket__totals tr:nth-child(even),
.miniBasket__totals tr:nth-child(odd) {
  background: transparent;
}
.miniBasket__totals td {
  padding: 10px 0;
  font-size: 1rem;
  line-height: 1em;
}
.miniBasket__totals td:last-of-type {
  text-align: right;
}
.miniBasket__totals tfoot td {
  font-weight: bold;
  padding-bottom: 16px;
}
/* Empty basket */

.miniBasket__noItems {
  font-size: 1.125rem;
  font-weight: 400;
  color: #d6d6d6;
  text-align: center;
  margin: 20px 0;
}
.miniBasket__noItems::before {
  content: '\f119';
  font-family: FontAwesome;
  font-size: 5rem;
  line-height: 1.2em;
  display: block;
  margin-bottom: 4px;
}
/* Quoted basket */

.miniBasket__message {
  margin-top: 20px;
  padding: 12px;
  font-size: 0.875rem;
  border-radius: 4px;
  background-color: #d9edf7;
  border: 2px solid #b8d9e9;
}
/* Multiple baskets */

.masthead__basketName {
  border-radius: 4px;
  background-color: #eeeeee;
  font-size: 0.75rem;
  line-height: 1.2em;
  font-weight: 600;
  padding: 4px;
  margin: 6px 6px -6px;
  color: #313334;
  max-width: 108px;
  overflow: hidden;
}
.miniBasketMultiple {
  clear: both;
  padding: 20px 0 0;
}
.miniBasketMultiple label {
  margin-top: 0;
  float: left;
}
.miniBasketMultiple select {
  width: 100%;
}
.miniBasketMultiple_manageLink {
  float: right;
  font-size: 0.8125rem;
}
.miniBasketMultiple_manageLink::before {
  content: '\f013';
  font-family: FontAwesome;
  margin-right: 6px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .miniBasket__tab {
    height: 68px;
    width: 76px;
    padding: 5px 5px 8px;
  }
  .masthead__basketName {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .miniBasket__tab {
    width: 48px;
    height: 55px;
    margin: 11px 72px 0 0;
    padding: 2px;
  }
  .miniBasket__body {
    border-top-right-radius: 4px;
  }
  .masthead__basketName {
    display: none;
  }
}
/* BEM notation: block__element--modifier */
/***** COOKIE BAR *****/

.alertMessage {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s linear;
  top: 45px;
  right: 10%;
  border: 4px solid #b8d9e9;
  width: 310px;
  margin: 0 5px;
  padding: 20px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.26);
  z-index: 20;
}
.alertMessage h1 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1em;
  font-weight: 600;
}
.alertMessage p {
  line-height: 1.2em;
  margin: 7px 0 0;
}
.alertMessage button {
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  font-size: 0;
}
.alertMessage button:focus {
  box-shadow: none;
}
.alertMessage button::before {
  content: '\f00d';
  font-size: 1.125rem;
  line-height: 1em;
}
.alertMessage--success {
  border-color: #42ba13;
}
.alertMessage--failure {
  border-color: #d40000;
}
.alertMessage--active {
  visibility: visible;
  opacity: 1;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .alertMessage {
    right: 0;
  }
}
/* BEM notation: block__element--modifier */
/***** COOKIE BAR *****/

.confirmationBox {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s linear;
  top: 50%;
  left: 50%;
  margin-left: -155px;
  border: 4px solid #b8d9e9;
  width: 310px;
  padding: 20px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.26);
  z-index: 20;
}
.confirmationBox--open {
  visibility: visible;
  opacity: 1;
}
.confirmationBox__title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1em;
  font-weight: 600;
}
.confirmationBox__text {
  line-height: 1.2em;
  margin-top: 15px;
}
.confirmationBox__text small {
  color: #787878;
  font-size: 0.875rem;
}
.confirmationBox__actions {
  margin-top: 20px;
}
.confirmationBox__action {
  margin: 0;
}
.confirmationBox__action--affirmative {
  float: left;
}
.confirmationBox__action--cancel {
  float: right;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .confirmationBox {
    right: 0;
  }
}
.popoverBox {
  top: 10px;
  position: fixed;
  opacity: 100;
  transition: visibility 0.3s, opacity 0.3s linear;
  width: 330px;
  padding: 20px;
  border-radius: 4px;
  background-color: #336997;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.26);
  z-index: 20;
}
.popoverBox__arrow {
  border-bottom-color: #336997;
  border-bottom-style: solid;
  border-bottom-width: 10.9943px;
  border-left-color: transparent;
  border-left-style: solid;
  border-left-width: 10.9943px;
  border-right-color: transparent;
  border-right-style: solid;
  border-right-width: 10.9943px;
  position: absolute;
  top: -10px;
}
.popoverBox__title {
  color: white;
  margin: 0;
  font-size: 1.75rem;
  line-height: 1em;
  font-weight: 600;
}
.popoverBox__mainText {
  line-height: 1.2em;
  margin-top: 15px;
  color: #fcfcfc;
  font-size: 0.875rem;
}
.popoverBox__contactText {
  line-height: 1.2em;
  margin-top: 15px;
  color: #fcfcfc;
  font-size: 0.875rem;
}
.popoverBox__contactTelephone {
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
}
.popoverBox__terms {
  line-height: 1.2em;
  margin-top: 15px;
  color: lightgray;
  font-size: 0.75rem;
}
.popoverBox__terms a {
  color: lightgray;
}
.popoverBox__terms::after {
  content: "\f178";
  font-family: FontAwesome;
  font-size: 0.6rem;
}
/* BEM notation: block__element--modifier */
.burgerMenu {
  width: 320px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.burgerMenu--open {
  display: block;
}
.burgerMenu__home {
  display: none;
}
.burgerMenu__home--active {
  display: block;
}
.burgerMenu__loading {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 20px;
  margin-top: -10px;
}
.burgerMenu__tab {
  position: relative;
  background: white;
  float: right;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  box-sizing: content-box;
  width: 48px;
  height: 55px;
  margin: 11px 18px 0 0;
  padding: 2px;
}
.burgerMenu__tab::after,
.burgerMenu__tab::before {
  content: '';
  background: white;
  height: 2px;
  width: 50%;
  display: block;
  position: absolute;
  bottom: -2px;
}
.burgerMenu__tab::before {
  left: 0;
}
.burgerMenu__tab::after {
  right: 0;
}
.burgerMenu__body {
  background: white;
  clear: right;
  border-radius: 4px;
  min-height: 150px;
  padding: 20px 10px 10px;
}
.burgerMenu__body header {
  position: relative;
}
/* Header */

.burgerMenu__accountBtn {
  width: 180px;
  text-align: center;
}
.burgerMenu__accountBtn::before {
  font-family: FontAwesome;
  content: '\f007';
  margin-right: 6px;
}
.burgerMenu__vatToggle {
  position: absolute;
  top: 0;
  right: 0;
}
.burgerMenu__vatToggleLabel {
  float: none;
  margin: 0;
  padding: 0;
  line-height: 1em;
  display: block;
  text-align: center;
}
.burgerMenu__vatToggleSwitch {
  margin: 0;
}
/* Main Nav */

.burgerMenu__nav {
  margin: 30px 0 20px;
}
.burgerMenu__navLinks ul {
  list-style: none;
}
.burgerMenu__navLinks a {
  display: block;
  font-size: 1rem;
  line-height: 1.2em;
  color: #666666;
  padding: 10px 0;
}
.burgerMenu__navLinks a::after {
  float: right;
  content: '\f105';
  font-family: FontAwesome;
  font-size: 1.125rem;
}
.burgerMenu__navHeader {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1em;
  color: #a0a0a0;
  font-weight: 400;
}
.burgerMenu__navLocation,
.burgerMenu__inkLocation {
  background: #eeeeee;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  display: none;
  width: 100%;
}
.burgerMenu__navLocation h3,
.burgerMenu__inkLocation h3 {
  display: table-cell;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1em;
  font-weight: 500;
  width: 170px;
}
.burgerMenu__navLocation--active {
  display: table;
}
.burgerMenu__navBackLink {
  display: table-cell;
  background: #eeeeee;
}
.burgerMenu__navBackLink::before {
  font-family: FontAwesome;
  content: '\f053';
  margin-right: 6px;
  float: left;
  line-height: 1em;
}
.burgerMenu__navCategories {
  display: none;
}
.burgerMenu__navCategories--active {
  display: block;
}
/* Footer */

.burgerMenu__footer ul {
  list-style: none;
}
.burgerMenu__footer li {
  margin-top: 10px;
}
.burgerMenu__inkBtn,
.burgerMenu__offersBtn,
.burgerMenu__featuredBtn,
.burgerMenu__offersBtn--custom,
.burgerMenu__featuredBtn--custom {
  margin-right: 0;
  width: 100%;
  text-align: center;
}
.burgerMenu__inkBtn::before,
.burgerMenu__offersBtn::before,
.burgerMenu__featuredBtn::before,
.burgerMenu__offersBtn--custom::before,
.burgerMenu__featuredBtn--custom::before {
  font-family: FontAwesome;
  margin-right: 6px;
}
.burgerMenu__inkBtn::before {
  content: '\f043';
}
.burgerMenu__offersBtn::before {
  content: '\f02c';
}
.burgerMenu__featuredBtn::before {
  content: '\f005';
}
/* Ink & Toner finder */

.burgerMenu__ink {
  display: none;
}
.burgerMenu__ink--active {
  display: block;
}
.burgerMenu__inkLocation {
  display: table;
}
.burgerMenu__offersBtn--custom img,
.burgerMenu__featuredBtn--custom img {
  margin-right: 5px;
}
.burgerMenu__inkTopBrands h2 {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
.burgerMenu__inkTopBrands ul {
  list-style: none;
  margin: 0;
  padding: 0 7px;
}
.burgerMenu__inkTopBrands li {
  float: left;
  margin: 0 8px 8px 0;
  width: 139px;
}
.burgerMenu__inkTopBrands li:nth-child(2n) {
  margin-right: 0;
}
.burgerMenu__inkViewAll {
  margin: 0;
  width: 100%;
  text-align: center;
  line-height: 24px;
}
.burgerMenu__signOut {
  display: none;
}
@media screen and (max-width: 370px) {
  .burgerMenu__accountBtn {
    width: auto;
  }
  .burgerMenu__signOut {
    font-size: 0.75rem;
    display: inline-block;
  }
}
/* BEM notation: block__element--modifier */
.miniMyAccount {
  width: 320px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.miniMyAccount--open {
  display: block;
}
.masthead__myAccountTab--open,
.masthead__myAccountTab--open:visited {
  color: #313334;
}
.miniMyAccount__tab {
  position: relative;
  background: white;
  height: 72px;
  width: 120px;
  margin-left: 40px;
  float: left;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  padding: 8px 10px;
  box-sizing: content-box;
}
.miniMyAccount__tab::after,
.miniMyAccount__tab::before {
  content: '';
  background: white;
  height: 2px;
  width: 50%;
  display: block;
  position: absolute;
  bottom: -2px;
}
.miniMyAccount__tab::before {
  left: 0;
}
.miniMyAccount__tab::after {
  right: 0;
}
.miniMyAccount__body {
  background: white;
  clear: left;
  border-radius: 4px;
  min-height: 150px;
  padding: 20px 10px 10px;
}
/***** MyAccount Login *****/

.miniMyAccount__loginForm input {
  width: 100%;
}
.miniMyAccount__loginForm button {
  float: right;
  margin: 1em 0 0;
}
.miniMyAccount__loginForm label:first-of-type {
  margin-top: 0;
}
.miniMyAccount__loginForm a {
  margin-top: 25px;
  display: inline-block;
  font-size: 14px;
}
.miniMyAccount__loginForm::after {
  content: '';
  display: block;
  clear: right;
}
/***** Register User *****/

.miniMyAccount__registerUser {
  margin-top: 35px;
  border-top: 2px solid #eeeeee;
  position: relative;
}
.miniMyAccount__registerUser h1 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1em;
  margin: 30px 0 10px;
}
.miniMyAccount__registerUser p {
  margin-top: 0;
  font-weight: 400;
  line-height: 1.2em;
}
.miniMyAccount__registerUser::before {
  font-family: FontAwesome;
  font-size: 1.375rem;
  content: '\f234';
  text-align: center;
  line-height: 30px;
  display: block;
  width: 48px;
  height: 30px;
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -24px;
  color: #cccccc;
  background: white;
}
.miniMyAccount__registerUserButtons {
  padding-bottom: 22px;
  border-bottom: 6px solid #336997;
  margin-bottom: 6px;
}
.miniMyAccount__registerUserButtons a {
  width: 144px;
  margin: 0;
  text-align: center;
}
.miniMyAccount__registerUserButtons a:first-child {
  float: left;
}
.miniMyAccount__registerUserButtons a:last-child {
  float: right;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .miniMyAccount__tab {
    height: 68px;
    margin-left: 100px;
    padding: 5px 7px 8px;
  }
}
@media screen and (max-width: 767px) {
  .miniMyAccount__tab {
    width: 48px;
    height: 55px;
    margin: 11px 0 0 142px;
    padding: 2px;
  }
  .masthead__myAccountTabHeader::before {
    margin: 0;
    font-size: 1.375rem;
    line-height: 44px;
  }
  .masthead__myAccountTabSignIn {
    display: none;
  }
}
/* BEM notation: block__element--modifier */
.inkFinder {
  position: relative;
}
.inkFinder h2 {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  text-align: center;
  margin: 0 0 18px;
  line-height: 1em;
}
.inkFinder__topBrands {
  width: 585px;
  position: relative;
  z-index: 1;
}
.inkFinder__topBrands ul {
  list-style: none;
  margin: 0;
}
.inkFinder__topBrands li {
  width: 185px;
  margin: 0 15px 15px 0;
  float: left;
}
.inkFinder__topBrands li:nth-child(3n) {
  margin-right: 0;
}
.inkFinder__topBrands li:nth-child(n+10) {
  margin-bottom: 0;
}
.inkFinder__topBrands img {
  width: 100%;
}
.inkFinder__topBrand {
  display: block;
  background: white;
  border-radius: 4px;
  border: 2px solid white;
}
.inkFinder__topBrand:hover {
  border-color: #f0182d;
}
.inkFinder__viewAll {
  line-height: 42px;
  width: 100%;
  text-align: center;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .inkFinder__topBrands {
    margin: 0 auto;
  }
}
/****Ink And Toner Advanced Popup Styles******/

.inkFinderAdvanced__header {
  text-align: center;
}
.inkFinderAdvanced__header .inkFinderAdvanced__closeIcon {
  display: none;
}
.inkFinderAdvanced__container {
  margin-top: 15px;
  overflow: hidden;
}
.inkFinderAdvanced__search--container,
.inkFinderAdvanced__banners-container {
  width: 575px;
  height: 390px;
  display: inline-block;
}
.inkFinderAdvanced__search--container {
  padding: 20px;
  background-color: white;
  border-radius: 4px;
  border: 2px dotted blue;
  float: left;
}
.inkFinderAdvanced__search--container input,
.inkFinderAdvanced__search--container select {
  padding: 0;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__brand,
.inkFinderAdvanced__search--container .inkFinderAdvanced__model {
  display: inline-block;
  margin-bottom: 10px;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__label {
  font-size: 16px;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__label .inkFinderAdvanced__label_num {
  display: inline-block;
  color: #008cd4;
  border: 2px solid;
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  height: 33px;
  line-height: 33px;
  width: 33px;
  vertical-align: top;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__label .inkFinderAdvanced__labelText {
  display: inline-block;
  max-width: 85%;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__select--container {
  height: 39px;
  width: 490px;
  margin-left: 42px;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__button {
  margin: 5px 0 0 42px;
  width: 252px;
  height: 75px;
  padding-left: 25px;
  padding-right: 15px;
  float: left;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__icon {
  width: 13px;
  height: 18px;
  float: right;
}
.inkFinderAdvanced__search--container .inkFinderAdvanced__savedPrinterInfo {
  float: right;
  width: 225px;
  height: 90px;
  background: #d9edf7;
  border: 2px solid #b8d9e9;
  border-radius: 4px;
  margin-top: 5px;
  padding: 10px;
  font-size: 13px;
  line-height: 18px;
}
.inkFinderAdvanced__banners-container {
  float: right;
}
.inkFinderAdvanced__banners-container .inkFinderAdvanced__banner {
  border-radius: 4px;
  width: 575px;
  height: 185px;
}
.inkFinderAdvanced__banners-container .inkFinderAdvanced__banner img {
  max-width: 575px;
  max-height: 185px;
  border-radius: 4px;
}
.inkFinderAdvanced__banners-container .inkFinderAdvanced__banner--top {
  margin-bottom: 20px;
}
/* Responsive mobile */

@media screen and (max-width: 767px) {
  .inkFinderMobileAdvanced {
    width: 100%;
    height: auto;
  }
  .inkFinderAdvanced__header {
    text-align: left;
    margin-bottom: 20px;
    margin-left: -5px;
  }
  .inkFinderAdvanced__header .inkFinderAdvanced__closeIcon {
    display: inline;
    float: right;
    color: #f0182d;
    margin-top: -4px;
  }
  .inkFinderAdvanced__search--container {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
  }
  .inkFinderAdvanced__search--container .inkFinderAdvanced__title {
    display: none;
  }
  .inkFinderAdvanced__search--container .inkFinderAdvanced__brand {
    margin-bottom: 30px;
  }
  .inkFinderAdvanced__search--container .inkFinderAdvanced__model {
    margin-bottom: 10px;
  }
  .inkFinderAdvanced__search--container .inkFinderAdvanced__select--container {
    width: 258px;
    height: 52px;
  }
  .inkFinderAdvanced__search--container .inkFinderAdvanced__button {
    width: 300px;
    margin-left: 0;
  }
  .inkFinderAdvanced__search--container .inkFinderAdvanced__savedPrinterInfo {
    width: 300px;
    margin-bottom: 10px;
  }
  .inkFinderAdvanced__banners-container {
    width: 100%;
    height: 100%;
    margin-top: 20px;
  }
  .inkFinderAdvanced__banners-container .inkFinderAdvanced__banner {
    width: 100%;
    height: 100%;
  }
  .inkFinderAdvanced__banners-container .inkFinderAdvanced__banner img {
    max-width: 100%;
  }
  .inkFinderAdvanced__banners-container .inkFinderAdvanced__banner--top {
    margin-bottom: 10px;
  }
}
/* Responsive tablet */

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inkFinderAdvanced__search--container {
    width: 100%;
  }
  .inkFinderAdvanced__search--container .inkFinderAdvanced__select--container {
    width: 83vw;
  }
  .inkFinderAdvanced__banners-container {
    max-width: 100%;
    display: inline-block;
    float: none;
    margin-top: 20px;
  }
  .inkFinderAdvanced__banners-container .inkFinderAdvanced__banner {
    width: 100%;
    left: 50%;
    position: absolute;
    margin-left: -287.5px;
  }
  .inkFinderAdvanced__banners-container .inkFinderAdvanced__banner--top {
    margin-bottom: 15px;
  }
  .inkFinderAdvanced__banners-container .inkFinderAdvanced__banner--bottom {
    top: 77%;
  }
}
/* BEM notation: block__element--modifier */
.footer {
  background: #f2f2f2;
}
.footer__container {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}
/***** CONSUMER REVIEWS BAR *****/

.footer__consumerReviews {
  height: 69px;
  background: #292929;
}
.footer__consumerReviewsText {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 69px;
  text-transform: uppercase;
  color: white;
}
.footer__consumerReviewsText strong {
  font-weight: 600;
  color: #f0182d;
}
.footer__consumerReviewsText--trustpilot strong {
  color: #02804e;
}
.footer__consumerReviewsText--ekomi strong {
  color: #ffbc11;
}
.footer__consumerReviewBadge {
  float: right;
  padding: 14px 0;
}
.footer__consumerReviewLogo {
  margin-right: 14px;
  height: 41px;
}
.footer__consumerReviewLogo--trustpilot {
  width: 168px;
}
.footer__consumerReviewStars {
  position: relative;
  font-family: FontAwesome;
  font-size: 41px;
  height: 41px;
  line-height: 1em;
  display: inline-block;
  color: #4c4c4c;
  vertical-align: top;
}
.footer__consumerReviewStars span {
  padding-left: 8px;
}
.footer__consumerReviewStars--trustpilot {
  width: 220px;
}
.footer__consumerReviewStars--trustpilot img {
  vertical-align: top;
}
.footer__consumerReviewStarRating {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffbc11;
  overflow: hidden;
}
/***** MAIN *****/

.footer__main {
  background: #333333;
  padding: 30px 0;
}
/***** QUICK & HELP LINKS *****/

.footer__Links,
.footer__checkoutLinks {
  margin: 0 0 54px;
  width: 380px;
  min-height: 107px;
  display: inline-block;
  vertical-align: top;
}
.footer__Links h1,
.footer__checkoutLinks h1 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1em;
  color: #a0a0a0;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer__Links a,
.footer__checkoutLinks a {
  font-size: 1rem;
  font-weight: 400;
  color: white;
}
.footer__Links ul,
.footer__checkoutLinks ul {
  list-style: none;
  margin: 0 0 6px;
}
.footer__Links li,
.footer__checkoutLinks li {
  width: 188px;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1.15em;
  vertical-align: top;
}
.footer__Links abbr,
.footer__checkoutLinks abbr {
  border: none;
}
/***** CONTACT *****/

.footer__contact {
  float: right;
  margin: 0 0 16px;
  width: 360px;
  min-height: 145px;
  color: white;
}
.footer__contactHours {
  text-align: right;
}
.footer__contactPhone {
  text-align: right;
  font-size: 3.4375rem;
  font-weight: 600;
  line-height: 1em;
  margin: 11px 0 17px;
  color: white;
  display: block;
  text-decoration: none;
}
.footer__contactPhone:hover {
  text-decoration: none;
}
.footer__contactFeedback {
  position: relative;
  background: #464646;
  color: #eeeeee;
  padding: 14px 17px;
  margin-top: 17px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
}
.footer__contactFeedback p {
  margin: 0.7em 75px 0 0;
  line-height: 1.2em;
}
.footer__contactFeedback p::after {
  content: '\f08e';
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  line-height: 1em;
  margin-right: 17px;
  margin-top: 1.5em;
  letter-spacing: -2px;
}
.footer__contactFeedback:hover {
  border-color: #f0182d;
}
/***** PAYMENT METHODS *****/

.footer__paymentMethods,
.footer__checkoutPaymentMethods {
  margin: -58px 0 0;
}
.footer__paymentMethods ul,
.footer__checkoutPaymentMethods ul {
  list-style: none;
  margin: 28px 0 0;
  font-size: 0;
}
.footer__paymentMethods li,
.footer__checkoutPaymentMethods li {
  float: left;
  margin-left: 8px !important;
  border-radius: 2px;
  overflow: hidden;
}
.footer__paymentMethods li:first-child,
.footer__checkoutPaymentMethods li:first-child {
  margin-left: 0;
}
.footer__paymentMethods span,
.footer__checkoutPaymentMethods span {
  display: block;
  height: 30px;
  width: 50px;
  background-image: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png);
  background-repeat: no-repeat;
}
.footer__paymentMethods + .footer__copyright,
.footer__checkoutPaymentMethods + .footer__copyright {
  margin-top: 39px;
}
.paymentMethod__visa span {
  background-position: -12px -13px;
}
.paymentMethod__mastercard span {
  background-position: -70px -13px;
}
.paymentMethod__maestro span {
  background-position: -128px -13px;
}
.paymentMethod__paypal span {
  background-position: -186px -13px;
}
.paymentMethod__amex span {
  background-position: -244px -13px;
}
.paymentMethod__contrassegno span {
  background-position: -302px -13px;
}
.paymentMethod__postepay span {
  background-position: -360px -13px;
}
/***** SOCIAL *****/

.footer__socialLinks {
  height: 26px;
  text-align: right;
}
.footer__socialLinks ul {
  list-style: none;
  font-size: 0;
}
.footer__socialLinks li {
  display: inline-block;
  height: 30px;
  width: 30px;
  margin-left: 8px;
  text-align: center;
}
.footer__socialLinks a {
  font-family: FontAwesome;
  font-size: 1.25rem;
  line-height: 30px;
  color: #a0a0a0;
  display: block;
  height: 30px;
  width: 30px;
  border-radius: 2px;
}
.footer__socialLinks a:hover {
  text-decoration: none;
  background: #464646;
}
/***** COPYRIGHT *****/

.footer__copyright {
  clear: right;
  display: block;
  margin-top: 13px;
  max-width: 57%;
  color: #a0a0a0;
  line-height: 1em;
  font-size: 0.8125rem;
}
/***** POPUP UNDERLAY *****/

.popupUnderlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: none;
  transition: display 1s;
}
/***** RESPONSIVE STYLES *****/

@media (max-width: 1150px) {
  .footer__Links,
  .footer__checkoutLinks {
    margin-bottom: 0;
    width: 190px;
  }
  .footer__contact {
    margin-bottom: 81px;
  }
  .footer__paymentMethods,
  .footer__checkoutPaymentMethods {
    float: right;
    clear: both;
  }
  .footer__paymentMethods ul,
  .footer__checkoutPaymentMethods ul {
    margin-bottom: 8px;
  }
  .footer__socialLinks {
    clear: both;
  }
}
@media (max-width: 1080px) {
  .footer__consumerReviews {
    height: auto;
    text-align: center;
  }
  .footer__consumerReviewsText {
    line-height: 50px;
  }
  .footer__consumerReviewBadge {
    float: none;
    padding-top: 0;
  }
  .footer__Links {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .popupUnderlay {
    position: absolute;
  }
}
@media (max-width: 750px) {
  .footer__inner {
    margin-bottom: 0;
  }
  .footer__contact {
    float: none;
    margin: 0 auto 25px;
    min-height: inherit;
  }
  .footer__contactHours,
  .footer__contactPhone {
    text-align: center;
  }
  .footer__Links,
  .footer__checkoutLinks {
    width: 100%;
    min-height: inherit;
    margin-top: 30px;
  }
  .footer__Links ul,
  .footer__checkoutLinks ul {
    margin-bottom: 0;
  }
  .footer__Links h1,
  .footer__paymentMethods,
  .footer__checkoutPaymentMethods,
  .footer__socialLinks {
    text-align: center;
  }
  .footer__Links li,
  .footer__checkoutLinks li {
    text-align: center;
    width: 32%;
  }
  .footer__checkoutLinks li {
    width: 100%;
  }
  .footer__paymentMethods,
  .footer__checkoutPaymentMethods,
  .footer__socialLinks {
    float: none;
  }
  .footer__paymentMethods ul,
  .footer__checkoutPaymentMethods ul,
  .footer__socialLinks ul {
    margin-bottom: 5px;
  }
  .footer__paymentMethods li,
  .footer__checkoutPaymentMethods li,
  .footer__socialLinks li {
    float: none;
    display: inline-block;
  }
  .footer__paymentMethods,
  .footer__checkoutPaymentMethods {
    margin-top: 0;
  }
  .footer__socialLinks {
    margin-top: 1em;
    height: auto;
  }
  .footer__consumerReviews {
    padding: 15px 0;
  }
  .footer__consumerReviewsText {
    line-height: 1em;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer__consumerReviewBadge {
    padding-bottom: 0;
  }
  .footer__copyright {
    margin-top: 32px;
    max-width: inherit;
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .footer__consumerReviewLogo {
    display: block;
    margin: 0 auto 15px;
  }
  .footer__Links li {
    width: 49%;
  }
  .footer__contact {
    width: 300px;
  }
  .footer__contactPhone {
    font-size: 2.8125rem;
  }
}
/* BEM notation: block__element--modifier */

/***** Modal *****/

.modal {
  display: none;
  background-color: white;
  border-radius: 4px;
  width: 750px;
  left: 50%;
  top: 15%;
  margin-left: -375px;
  margin-bottom: 20px;
  position: absolute;
  z-index: 10;
}
.modal--open {
  display: block;
}
.modal__close--icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 4px 8px;
  border: none;
  color: white;
}
/***** Modal Header *****/

.modal__header {
  padding: 15px 20px;
  background: #336997;
  border-radius: 4px 4px 0 0;
}
.modal__header h1 {
  color: white;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1em;
  margin: 0;
}
/***** Modal Body *****/

.modal__body {
  min-height: 400px;
  overflow-y: auto;
}
.modal__tinyBody {
  min-height: 0px;
}
.modal__content--loading {
  display: none;
}
.modal__subHeading {
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0 10px;
}
/***** Modal Footer *****/

.modal__footer {
  padding: 15px 20px;
  background: #eeeeee;
  border-radius: 0 0 4px 4px;
  text-align: right;
}
.modal__footer a[role="button"],
.modal__footer button {
  margin-right: 0;
  margin-left: 13px;
}
.modal__footer a[role="button"]:first-child,
.modal__footer button:first-child {
  margin-left: 0;
}
/***** Flex positioning of loader *****/

.flexbox .modal__body--loading {
  display: flex;
}
/* BEM notation: block__element--modifier */
.home_heroBanner {
  background: #336997;
}
.home_heroBanner .main__container {
  padding-bottom: 0;
}
.home_heroBanner img {
  width: 100%;
}
.home_heroBannerSmall {
  display: none;
}
.home_heroBannerSmallLink {
  display: none;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .home_heroBannerLarge {
    display: none;
  }
  .home_heroBannerLargeLink {
    display: none;
  }
  .home_heroBannerSmall {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }
  .home_heroBannerSmallLink {
    display: inline;
  }
}
/* BEM notation: block__element--modifier */

.home__promos {
  padding-top: 22px;
  margin: 0;
  list-style: none;
  display: flex;
  display: -webkit-flex;
}
.home__promo {
  margin-left: 1.833333333%;
  width: 32.111111111%;
  float: left;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background: white;
}
.home__promo:hover,
.home__promo:active {
  box-shadow: 0 0 0 2px #f0182d;
}
.home__promo a {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 67% 0 0 0;
}
.home__promo img {
  display: block;
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.home__promoProduct {
  margin-left: 1.833333333%;
  width: 32.111111111%;
  float: left;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  position: relative;
  background: white;
}
.home__promoProduct:hover,
.home__promoProduct:active {
  box-shadow: 0 0 0 2px #f0182d;
}
.home__promoProduct a {
  display: block;
  text-decoration: none;
}
.home__promoProduct h2 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2em;
  display: block;
  margin: 20px 20px 0px;
  height: 3.6em;
  overflow: hidden;
  color: #313334;
}
.home__promoProduct .promoProduct_container {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  justify-content: space-evenly;
  -webkit-justify-content: space-evenly;
}
.home__promoProduct .promoProduct__imgWrap {
  margin-left: 30px;
  margin-right: 10px;
  position: relative;
}
.home__promoProduct .promoProduct__imgWrap img {
  max-width: 110px;
}
.home__promoProduct .promoProduct__imgWrap .imageViewer__promoBubble--promoProduct {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 35%;
  z-index: 1;
}
.home__promoProduct .promoProduct__priceContainer {
  width: 60%;
  align-self: flex-end;
  position: relative;
}
.home__promoProduct .promoProduct__reviewsStrip {
  position: absolute;
  left: 0;
  bottom: 90px;
  width: 92%;
}
.home__promoProduct .addToBasket__unitPrice--promoProduct {
  text-align: left;
}
.home__promoProduct .packOf__promoProduct {
  font-size: 0.75rem;
  line-height: 1.8em;
  margin-top: 0;
  padding: 0 5px;
  float: right;
  margin-right: 20px;
}
.home__promoProduct .addToBasket--promoProduct {
  position: relative;
  margin: 5px 20px 20px;
}
.home__promoProduct .addToBasket__unitPriceText--promoProduct {
  font-size: 1.75rem;
}
.home__promoProduct .promoProduct__nonCoreList {
  line-height: 1em;
  color: #f16522;
  display: inline-block;
  float: right;
}
.home__promoProduct .starRating--promoProduct {
  margin: 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (min-width: 1025px) {
  .home__promos li:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .home__promos li {
    width: 49.083333333%;
  }
  .home__promos li:last-child {
    display: none;
  }
  .home__promos li:first-child {
    margin-left: 0;
  }
  .home__promos li .promoProduct__priceContainer {
    -webkit-transform: translateY(10%);
  }
  .home__promoProduct .addToBasket__unitPrice--promoProduct {
    -webkit-transform: translateY(35%);
  }
}
@media screen and (max-width: 767px) {
  .home__promos {
    display: none;
  }
}
/* BEM notation: block__element--modifier */
.home__about {
  padding-top: 22px;
}
.home__aboutContent {
  display: table;
  border-radius: 4px;
  background: white;
  padding: 21px;
}
.home__aboutBlock {
  display: table-cell;
  padding-left: 1%;
  width: 50%;
}
.home__aboutBlock:first-child {
  padding-left: 0;
  padding-right: 1%;
}
.home__aboutBlock:first-child:last-child {
  width: 100%;
  padding-right: 0;
}
.home__aboutBlock p:first-child {
  margin-top: 0;
}
.home__aboutBlock p:last-child {
  margin-bottom: 0;
}
.home__aboutBlock div {
  line-height: 1.5em;
}
/***** USPs *****/

.home__aboutUsp {
  background: #eeeeee;
  padding: 13px;
  margin-bottom: 12px;
  border-radius: 4px;
  line-height: 40px;
  display: block;
  color: #313334;
  border: 2px solid #eeeeee;
  transition: border-color 0.3s ease;
  position: relative;
}
.home__aboutUsp:last-child {
  margin-bottom: 0;
}
.home__aboutUsp:hover,
.home__aboutUsp:active {
  border-color: #f0182d;
  text-decoration: none;
}
.home__aboutUsp span {
  padding-left: 55px;
  line-height: 1.2em;
  height: 40px;
  vertical-align: middle;
  position: relative;
  display: table-cell;
  color: #313334;
}
.home__aboutUsp strong {
  text-transform: uppercase;
  color: #336997;
}
.home__aboutUsp::before {
  font-family: FontAwesome;
  display: inline-block;
  height: 40px;
  width: 40px;
  margin: 13px;
  border: 2px solid #313334;
  border-radius: 4px;
  text-align: center;
  color: #313334;
  position: absolute;
  top: 0;
  left: 0;
}
.home__aboutUsp--van::before {
  content: '\f0d1';
}
.home__aboutUsp--return::before {
  content: '\f112';
}
.home__aboutUsp--creditCard::before {
  content: '\f09d';
}
.home__aboutUsp--gbp::before {
  content: '\f154';
}
.home__aboutUsp--pencil::before {
  content: '\f040';
}
.home__aboutUsp--thumbsUp::before {
  content: '\f087';
}
.home__aboutUsp--printer::before {
  content: '\f02f';
}
.home__aboutUsp--location::before {
  content: '\f041';
}
.home__aboutUsp--star::before {
  content: '\f005';
}
.home__aboutUsp--chart::before {
  content: '\f1fe';
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .home__about {
    display: none;
  }
}
/* BEM notation: block__element--modifier */

.home__customLinks {
  padding-top: 30px;
}
.home__customLinks ul {
  margin: 0;
  border-radius: 4px;
  background: white;
  padding: 21px;
  list-style: none;
}
.home__customLinks li {
  float: left;
  margin-right: 1.805674979%;
  width: 18.555460017%;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}
.home__customLinks li:nth-child(6) {
  display: none;
}
.home__customLinks li:nth-child(5) {
  margin: 0;
}
.home__customLinks li:hover,
.home__customLinks li:active {
  box-shadow: 0 0 0 2px #f0182d;
}
.home__customLinks a {
  border-radius: 4px;
  position: relative;
  display: block;
  background: #336997;
}
.home__customLinks a::after {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: '\f054';
  font-family: FontAwesome;
  margin: 12px;
  color: white;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2em;
}
.home__customLinks a:focus,
.home__customLinks a:hover {
  text-decoration: none;
}
.home__customLinks img {
  width: 100%;
  border-radius: 4px;
}
.home__customLinkText {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 12px 30px 12px 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2em;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .home__customLinks li {
    width: 31.850282486%;
    margin: 0 2.224576271% 2.224576271% 0;
  }
  .home__customLinks li:last-child {
    display: block;
  }
  .home__customLinks li:nth-child(3),
  .home__customLinks li:nth-child(6) {
    margin-right: 0;
  }
  .home__customLinks li:nth-last-child(2) {
    margin: 0 2.224576271% 2.224576271% 0;
  }
  .home__customLinks li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .home__customLinks li {
    background: #336997;
    width: 100%;
    float: none;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .home__customLinks img {
    display: none;
  }
  .home__customLinks a::after {
    line-height: 1em;
    top: 0;
  }
  .home__customLinkText {
    position: static;
    padding: 12px;
    line-height: 1em;
    font-weight: 500;
    margin: 0;
    padding-right: 35px;
    font-size: 0.9375rem;
  }
}
/* BEM notation: block__element--modifier */

@media screen and (min-width: 768px) {
  .home__customLinks_mobile {
    display: none;
  }
  .home__customLinkText_mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .home__customLinks_mobile {
    padding-top: 30px;
  }
  .home__customLinks_mobile ul {
    margin: 0;
    border-radius: 4px;
    background: white;
    padding: 21px;
    list-style: none;
  }
  .home__customLinks_mobile li {
    background: #336997;
    width: 100%;
    float: none;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .home__customLinks_mobile li:nth-last-child(1) {
    margin: 0;
  }
  .home__customLinks_mobile li:hover,
  .home__customLinks_mobile li:active {
    box-shadow: 0 0 0 2px #f0182d;
  }
  .home__customLinks_mobile img {
    display: none;
  }
  .home__customLinks_mobile a {
    border-radius: 4px;
    position: relative;
    display: block;
    background: #336997;
  }
  .home__customLinks_mobile a::after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: '\f054';
    font-family: FontAwesome;
    margin: 12px;
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1em;
    top: 0;
  }
  .home__customLinks_mobile a:focus,
  .home__customLinks_mobile a:hover {
    text-decoration: none;
  }
  .home__customLinkText_mobile {
    color: white;
    text-transform: uppercase;
    position: static;
    padding: 12px;
    line-height: 1em;
    font-weight: 500;
    margin: 0;
    padding-right: 35px;
    font-size: 0.9375rem;
  }
}
/* BEM notation: block__element--modifier */

.home__customLinks_desktop {
  padding-top: 22px;
}
.home__customLinks_desktop ul {
  margin: 0;
  border-radius: 4px;
  padding: 0px;
  list-style: none;
}
.home__customLinks_desktop li {
  float: left;
  margin-right: 1%;
  margin-bottom: 1%;
  width: 49.5%;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}
.home__customLinks_desktop li:nth-last-child(1),
.home__customLinks_desktop li:nth-last-child(3),
.home__customLinks_desktop li:nth-last-child(5) {
  margin-right: 0;
}
.home__customLinks_desktop li:nth-last-child(1),
.home__customLinks_desktop li:nth-last-child(2) {
  margin-bottom: 0px;
}
.home__customLinks_desktop li:hover,
.home__customLinks_desktop li:active {
  box-shadow: 0 0 0 2px #f0182d;
}
.home__customLinks_desktop a {
  border-radius: 4px;
  position: relative;
  display: block;
  background: #336997;
}
.home__customLinks_desktop a:focus,
.home__customLinks_desktop a:hover {
  text-decoration: none;
}
.home__customLinks_desktop img {
  width: 100%;
  border-radius: 4px;
}
.home__customLinkText_desktop {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 12px 30px 12px 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .home__customLinks_desktop {
    display: none;
  }
  .home__customLinkText_desktop {
    display: none;
  }
}
/* BEM notation: block__element--modifier */

.home__topCategories {
  padding-top: 22px;
}
.categoryBlocks ul {
  list-style: none;
}
.categoryBlocks li {
  float: left;
  width: 23.625%;
  margin-right: 1.833333333%;
  margin-bottom: 1.833333333%;
}
.categoryBlocks li:nth-child(4n) {
  margin-right: 0;
}
.categoryBlocks a {
  display: block;
  background: white;
  border-radius: 4px;
  border: 2px solid white;
  padding: 13px;
  transition: border-color 0.3s ease;
}
.categoryBlocks a:hover,
.categoryBlocks a:active {
  border-color: #f0182d;
  text-decoration: none;
}
.categoryBlocks h2 {
  font-size: 1rem;
  color: #313334;
  font-weight: 500;
  line-height: 1em;
  display: table;
  width: 100%;
  text-align: center;
  margin: 5px 0 0;
  height: 2em;
  overflow: hidden;
}
.categoryBlocks h2 span {
  display: table-cell;
  vertical-align: middle;
}
.categoryBlocks img {
  width: 100%;
}
.categoryBlocks__img {
  position: relative;
  padding-top: 70.25%;
}
.categoryBlocks__img img {
  position: absolute;
  top: 0;
  max-height: 100%;
}
.categoryBlocks--small li {
  width: 15.625%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
}
.categoryBlocks--small li:nth-child(4n) {
  margin-right: 1.25%;
}
.categoryBlocks--small li:nth-child(6n) {
  margin-right: 0;
}
.categoryBlocks--small a {
  position: relative;
  padding: 0 0 38%;
}
.categoryBlocks--small h2 {
  display: none;
}
.categoryBlocks--small img {
  position: absolute;
  top: 0;
  max-height: 100%;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .categoryBlocks li {
    width: 32.111111111%;
    margin-right: 1.833333333%;
    margin-bottom: 1.833333333%;
  }
  .categoryBlocks li:nth-child(4n) {
    margin-right: 1.833333333%;
  }
  .categoryBlocks li:nth-child(3n) {
    margin-right: 0;
  }
  .categoryBlocks--small li {
    width: 23.901367188%;
    margin-right: 1.46484375%;
    margin-bottom: 1.46484375%;
  }
  .categoryBlocks--small li:nth-child(3n) {
    margin-right: 1.46484375%;
  }
  .categoryBlocks--small li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .categoryBlocks li {
    width: 100%;
    margin-right: 0;
  }
  .categoryBlocks img {
    display: none;
  }
  .categoryBlocks h2 {
    margin: 0;
  }
  .categoryBlocks__img {
    padding-top: 0;
  }
  .categoryBlocks--small li {
    width: 49.0234375%;
    margin-right: 1.953125%;
    margin-bottom: 1.953125%;
  }
  .categoryBlocks--small li:nth-child(2n) {
    margin-right: 0;
  }
  .categoryBlocks--small img {
    display: block;
  }
}
/* BEM notation: block__element--modifier */

.latestArticles__blogContent {
  border-radius: 4px;
  background: white;
  padding: 21px;
  list-style: none;
  margin: 0;
}
.latestArticles__blogContent li {
  display: block;
  float: left;
  width: 49.093264249%;
  margin-right: 1.813471503%;
  margin-bottom: 21px;
}
.latestArticles__blogContent a:hover {
  text-decoration: none;
}
.latestArticles__blogContent a:hover img {
  border-color: #f0182d;
}
.latestArticles__blogContent img {
  float: left;
  border-radius: 4px;
  display: block;
  border: 2px solid transparent;
  margin: -2px 0 0 -2px;
  width: 216px;
  transition: border-color 0.3s ease;
}
.latestArticles__blogContent h2 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2em;
  margin: 0;
}
.latestArticles__blogContent p {
  font-size: 1.125rem;
  line-height: 1.2em;
  margin: 0.5em 0 0;
  color: #313334;
}
.latestArticles__blogSummary {
  margin-left: 230px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (min-width: 1025px) {
  .latestArticles__blogContent li:nth-child(2n) {
    margin-right: 0;
  }
  .latestArticles__blogContent li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .latestArticles__blogContent li {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .latestArticles__blogContent li {
    width: 100%;
    margin-right: 0;
  }
  .latestArticles__blogContent img {
    display: none;
  }
  .latestArticles__blogSummary {
    margin-left: 0;
  }
}
/* BEM notation: block__element--modifier */

.youMightLike ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
}
.youMightLike li {
  position: relative;
  width: 23.625%;
  margin-right: 1.833333333%;
  margin-bottom: 1.833333333%;
  background: white;
  border-radius: 4px;
  border: 2px solid white;
  transition: border-color 0.3s ease;
}
.youMightLike li:hover,
.youMightLike li:active {
  border-color: #f0182d;
  text-decoration: none;
}
.youMightLike a {
  display: block;
}
.youMightLike h2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2em;
  display: block;
  margin: 5px 0 0;
  height: 3.6em;
  overflow: hidden;
  color: #313334;
}
.youMightLike img {
  width: 100%;
}
.youMightLike header {
  position: relative;
}
.youMightLike .tallproduct {
  padding: 13px 13px 137px;
}
.youMightLike .youMightLike__banner {
  padding: 0px;
}
.youMightLike .youMightLike__banner img {
  max-height: 482px;
  object-fit: contain;
}
.youMightLike__imgWrap {
  position: relative;
  padding: 0 0 100%;
}
.youMightLike__imgWrap img {
  position: absolute;
}
.youMightLike__reviewsStrip {
  padding: 0.5em 0;
}
.youMightLike__nonCoreList {
  font-size: 1.125rem;
  line-height: 1em;
  color: #f16522;
  float: left;
}
.youMightLike__addToBasket {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 134px;
  padding: 13px;
}
.youMightLike__addToBasket form {
  position: absolute;
  bottom: 13px;
  right: 13px;
  left: 13px;
  font-size: 0;
  line-height: 1em;
}
.youMightLike__addToBasket input {
  width: 48px;
  text-align: center;
  padding: 15px 0;
  margin-right: 10px;
  vertical-align: top;
}
.youMightLike__addToBasket button {
  margin-right: 0;
}
.youMightLike__pricing {
  font-size: 1rem;
  line-height: 1.2em;
  text-align: right;
}
.youMightLike__pricingRrp {
  font-size: 0.75rem;
  line-height: 1em;
  margin-bottom: 7px;
  margin-top: 7px;
}
.youMightLike__pricingRrp em {
  font-style: normal;
  font-weight: 500;
  color: red;
  font-size: 0.9375rem;
}
.youMightLike__labelVat {
  font-size: 0.625rem;
}
.youMightLike__price {
  font-size: 1.75rem;
  font-weight: 600;
}
.youMightLike__controls {
  display: none;
  position: absolute;
  top: -8px;
  right: 0;
  font-family: FontAwesome;
}
.youMightLike__controls div {
  background: transparent;
}
.youMightLike__back {
  margin-right: 6px;
}
.youMightLike__next {
  margin-right: 0;
}
.youMightLike__purchaseBlock {
  float: right;
}
/***** RESPONSIVE STYLES *****/

@media screen and (min-width: 1025px) {
  .youMightLike li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .youMightLike li {
    width: 32.111111111%;
    margin-right: 1.833333333%;
  }
  .youMightLike li:nth-child(3n) {
    margin-right: 0;
  }
  .youMightLike li:nth-last-child(-n+2) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .youMightLike .sectionTitle {
    margin-right: 90px;
  }
  .youMightLike__itemContainer {
    height: 550px;
    width: 100%;
    overflow: hidden;
  }
  .youMightLike__itemContainer ul {
    height: 525px;
    width: 2520px;
    overflow: auto;
    margin: 0;
  }
  .youMightLike__itemContainer li {
    width: 300px;
    margin: 0 15px 0 0;
    float: left;
  }
  .youMightLike__itemContainer li:last-child {
    margin: 0;
  }
  .youMightLike__itemContainer h2 {
    height: 60px;
    overflow: hidden;
  }
  .youMightLike__controls {
    display: block;
  }
}
/* BEM notation: block__element--modifier */

.summary {
  background: white;
}
.summary h1 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2em;
}
.summary h1 strong {
  color: #336997;
}
.summary ul {
  list-style-position: outside;
  padding-left: 1em;
}
.summary li {
  line-height: 1.1em;
  margin-bottom: 10px;
}
.summary__container {
  display: table;
  padding-top: 10px;
  padding-bottom: 20px;
  width: 100%;
}
.summary__text {
  padding: 10px 0 0;
}
.summary__text p {
  margin: 0;
}
.summary__text p + p {
  margin-top: 1em;
}
.summary__promo,
.summary__content {
  display: table-cell;
}
.summary__content {
  padding-right: 20px;
  padding-bottom: 0;
  vertical-align: top;
}
.summary__promo {
  width: 400px;
  padding: 18px 0 0;
  vertical-align: middle;
}
.summary__promo div {
  position: relative;
  padding: 0 10px 0 20px;
}
.summary__promo div::before {
  content: '';
  height: 100%;
  width: 4px;
  border-radius: 2px;
  background: #f0182d;
  position: absolute;
  top: 0;
  left: -2px;
}
.summary__promo img {
  width: 100%;
}
.summary--mobile {
  display: none;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .summary__container {
    display: none;
  }
  .summary--mobile,
  .summary__container--mobile {
    display: block;
  }
  .summary__container--search {
    display: block;
  }
  .summary__content {
    display: block;
    margin-right: 0;
    padding-right: 0;
  }
  .summary__promo {
    display: block;
    margin: 20px auto 0;
    max-width: 100%;
  }
  .summary__promo img {
    max-width: 100%;
  }
  .summary__promo a {
    padding: 0;
  }
  .summary__promo a::before {
    content: none;
  }
  .summary__promo div {
    padding: 0;
  }
  .summary__promo div::before {
    content: none;
  }
}
/* BEM notation: block__element--modifier */
.addToBasket {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 0;
}
.addToBasket input[type="number"],
.addToBasket input[type="text"] {
  width: 52px;
  height: 52px;
  text-align: center;
  margin-right: 7px;
  vertical-align: top;
}
.addToBasket button,
.addToBasket input[type="submit"],
.addToBasket input[type="button"] {
  margin-right: 0;
  vertical-align: top;
}
.addToBasket__unitPrice {
  text-align: right;
  color: #313334;
}
.addToBasket__contractPricing {
  font-size: 0.625rem;
  display: inline-block;
  color: white;
  font-weight: 600;
  background: red;
  padding: 3px 5px;
  border-radius: 4px;
  line-height: 1em;
  text-transform: uppercase;
}
.addToBasket__vatIndicator {
  font-size: 0.75rem;
  line-height: 1em;
  margin-bottom: 3px;
}
.addToBasket__unitPriceValue {
  margin-bottom: 0;
  font-size: 0;
  line-height: 1em;
}
.addToBasket__unitPriceText {
  font-size: 2.8125rem;
  font-weight: 600;
  line-height: 1em;
}
.addToBasket__rrpSaving {
  font-size: 0.75rem;
  line-height: 1em;
  margin-bottom: 7px;
  margin-top: 0;
}
.addToBasket__rrpSaving em {
  font-style: normal;
  font-weight: 500;
  color: red;
  font-size: 0.9375rem;
}
.addToBasket__priceBreaks {
  display: inline-block;
  font-size: 0.9375rem;
  color: #313334;
  background: white;
  line-height: 1.2em;
  border: 2px solid #f4f4f4;
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 52px;
  vertical-align: top;
  padding: 7px 12px;
  margin-right: -1px;
  cursor: text;
}
.addToBasket__priceBreaks em {
  font-style: normal;
  color: red;
}
.addToBasket--productDetail {
  position: relative;
  margin-top: 10px;
  float: right;
  width: 100%;
  text-align: right;
}
.addToBasket--otherProduct .field-validation-error,
.addToBasket--productDetail .field-validation-error {
  position: absolute;
  right: 0;
  font-size: 12px;
  margin-top: 0;
  white-space: nowrap;
}
.addToBasket--youMightLike {
  padding: 13px;
  width: 100%;
}
.addToBasket__button--youMightLike {
  padding: 15px 20px;
}
.addToBasket__unitPriceText--youMightLike {
  font-size: 1.75rem;
}
.addToBasket__unitPrice--youMightLike {
  position: relative;
  display: block;
}
.addToBasket__priceBreaks--youMightLike {
  font-size: 0.75rem;
  line-height: 1.5em;
  padding: 6px 8px;
}
.addToBasket--otherProduct {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding-right: 112px;
}
.addToBasket--otherProduct input {
  vertical-align: top;
}
.addToBasket__purchaseBlock--otherProduct {
  margin-right: -112px;
}
.addToBasket__unitPrice--otherProduct {
  display: inline-block;
  margin-right: 6px;
  vertical-align: top;
}
.addToBasket__vatIndicator--otherProduct {
  font-size: 0.625rem;
}
.addToBasket__unitPriceValue--otherProduct {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}
.addToBasket__rrpSaving--otherProduct {
  margin: 0;
}
.addToBasket__rrpSaving--otherProduct em {
  font-size: inherit;
}
.addToBasket--productList {
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
.addToBasket__controls {
  float: right;
}
.addToBasket__controls + .field-validation-valid,
.addToBasket__controls + .field-validation-error {
  float: left;
  width: 45%;
}
.addToBasket__form {
  position: relative;
}
.addToBasket__purchaseBlock {
  float: right;
  z-index: 1;
  position: relative;
  height: 52px;
}
.addToBasket__message {
  position: absolute;
  bottom: -5px;
  right: -5px;
  left: -5px;
  padding: 18px 10px;
  height: 49px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4px;
  background: rgba(244, 244, 244, 0.8);
  color: #d40000;
}
.addToBasket__message--productDetail,
.addToBasket__message--productDetail--callForAvailability {
  background: #f2f2f2;
  border-radius: 4px;
  padding: 20px;
  line-height: 1.2em;
  margin-top: 15px;
  text-align: left;
}
.addToBasket__message--productDetail h2,
.addToBasket__message--productDetail--callForAvailability h2 {
  margin: 0 0 1em;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}
.addToBasket__message--productDetail p,
.addToBasket__message--productDetail--callForAvailability p {
  margin: 0;
}
.addToBasket__message--productDetail--callForAvailability {
  background: #d9edf7;
}
.addToBasket__message--youMightLike {
  height: 61px;
  padding: 25px 10px;
}
.addToBasket__message--productList {
  height: 62px;
  padding: 25px 10px;
  z-index: 1;
}
.addToBasket__priceBreaks--basket {
  position: absolute;
  top: 10px;
  right: -8px;
  padding: 5px 12px 5px 8px;
  height: 48px;
  z-index: 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1199px) and (min-width: 1025px) {
  .addToBasket__button--youMightLike {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .addToBasket--productList {
    bottom: 10px;
    right: 10px;
  }
  .addToBasket__unitPriceValue {
    line-height: 1em;
  }
  .addToBasket__unitPriceText {
    font-size: 2.125rem;
  }
  .addToBasket__vatIndicator {
    margin: 0;
  }
  .addToBasket__priceBreaks--productDetail {
    padding: 7px 10px;
  }
  .addToBasket__button--productDetail {
    padding-left: 15px;
    padding-right: 15px;
  }
  .addToBasket__button--youMightLike {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 767px) {
  .addToBasket--productList {
    bottom: 10px;
    right: 10px;
  }
  .addToBasket--productDetail {
    position: static;
    margin: 0;
  }
  .addToBasket__vatIndicator--productDetail {
    position: absolute;
    top: 10px;
    left: 10px;
    white-space: nowrap;
  }
  .addToBasket__unitPriceText {
    font-size: 2.125rem;
  }
  .addToBasket__rrpSaving em {
    font-size: 0.875rem;
  }
  .addToBasket__rrpSaving--productDetail {
    position: absolute;
    left: 10px;
    top: 28px;
    margin: 0;
  }
  .addToBasket__priceBreaks {
    padding: 7px 10px;
  }
  .addToBasket__priceBreaks--productDetail {
    height: 39px;
    padding: 2px 10px;
    font-size: 0.875rem;
  }
  .addToBasket__purchaseBlock--productDetail {
    height: 39px;
  }
  .addToBasket__message--productDetail {
    padding: 10px;
    margin-top: 0;
  }
  .addToBasket__message--productDetail h2 {
    margin-bottom: 0;
    text-align: center;
    color: #d40000;
  }
  .addToBasket__message--productDetail p {
    display: none;
  }
  .addToBasket--otherProduct {
    bottom: 10px;
    right: 10px;
  }
  .addToBasket--otherProduct .field-validation-error,
  .addToBasket--productDetail .field-validation-error {
    right: auto;
    left: 10px;
    bottom: 10px;
    max-width: 50%;
    white-space: normal;
  }
  .addToBasket__priceBreaks--basket {
    position: static;
    float: right;
    margin: 10px 0 0;
    padding: 5px 8px;
    border: 2px solid #f4f4f4;
    border-radius: 4px;
    height: auto;
  }
}
/* BEM notation: block__element--modifier */

.featureFlags {
  list-style: none;
  margin: 0;
  font-size: 0;
}
.featureFlags--noText li {
  float: left;
  margin: 0;
  font-size: 0;
}
.featureFlags--noText li::before {
  margin-right: 7px;
  margin-bottom: 7px;
}
.featureFlags--variations {
  position: absolute;
  bottom: 27px;
  right: 14px;
}
.featureFlags--variations li::before {
  margin-bottom: 0;
}
.featureFlag {
  display: inline-block;
  padding: 4px 0 0 34px;
  font-size: 0.9375rem;
  line-height: 1.2em;
  margin-bottom: 7px;
  vertical-align: top;
}
.featureFlag:last-child {
  margin-bottom: 0;
}
.featureFlag::before {
  content: '';
  float: left;
  margin: -4px 7px 0 -34px;
  width: 26px;
  height: 26px;
  background: #737373;
  border-radius: 3px;
}
.featureFlag--full {
  width: 48.511904762%;
  margin-right: 2.976190476%;
}
.featureFlag--full:nth-child(2n) {
  margin-right: 0;
}
.featureFlag--2-year-guarantee::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -556px -64px;
}
.featureFlag--3-year-guarantee::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -588px -64px;
}
.featureFlag--5-year-guarantee::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -620px -64px;
}
.featureFlag--7-year-guarantee::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -652px -64px;
}
.featureFlag--10-year-guarantee::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -684px -64px;
}
.featureFlag--15-year-guarantee::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -716px -64px;
}
.featureFlag--selbst-montage::before,
.featureFlag--self-assembly::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -428px -64px;
}
.featureFlag--da-montare::before,
.featureFlag--komplett-montiert::before,
.featureFlag--fully-assembled::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -492px -64px;
}
.featureFlag--minimal-assembly::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -460px -64px;
}
.featureFlag--bronze-medal::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -76px -64px;
}
.featureFlag--clearance::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -172px -64px;
}
.featureFlag--discontinued::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -140px -64px;
}
.featureFlag--express-delivery::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -300px -64px;
}
.featureFlag--gold-medal::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -12px -64px;
}
.featureFlag--neu::before,
.featureFlag--nuovo::before,
.featureFlag--new::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -108px -64px;
}
.featureFlag--premium::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -332px -64px;
}
.featureFlag--cut-price::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -236px -64px;
}
.featureFlag--promotion::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -268px -64px;
}
.featureFlag--empfehlung::before,
.featureFlag--recommended::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -364px -64px;
}
.featureFlag--prodotto-ecologico::before,
.featureFlag--recycled::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -524px -64px;
}
.featureFlag--silver-medal::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -44px -64px;
}
.featureFlag--spezial-angebot::before,
.featureFlag--special-offer::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -204px -64px;
}
.featureFlag--beste-preis-leistung::before,
.featureFlag--value::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -396px -64px;
}
.featureFlag--ecolabel-logo::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -108px -149px;
}
.featureFlag--fsc-logo::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -76px -149px;
}
.featureFlag--pefc-logo::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -44px -149px;
}
.featureFlag--tacco-antishock::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -428px -149px;
}
.featureFlag--suola-in-poliuretano-bidensita::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -396px -149px;
}
.featureFlag-sottopiede-anatomico::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -364px -149px;
}
.featureFlag--puntale-in-materiale-polimerico::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -332px -149px;
}
.featureFlag--puntale-in-materiale-composito::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -300px -149px;
}
.featureFlag--lamina-antiforo::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -268px -149px;
}
.featureFlag--idrorepellente::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -236px -149px;
}
.featureFlag--fodera-tessuto-dry-out::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -204px -149px;
}
.featureFlag--antistatica::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -172px -149px;
}
.featureFlag--antisdrucciolo::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -140px -149px;
}
.featureFlag--beneficenza::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -12px -149px;
}
.featureFlag--prodotto-ecologico::before,
.featureFlag--umweltfreundlich::before,
.featureFlag--recycled-product::before,
.featureFlag--environmentaly-friendly::before,
.featureFlag--environmentally-friendly::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -524px -64px;
}
.featureFlag--original::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -556px -109px;
}
.featureFlag--compatible::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -588px -109px;
}
.featureFlag--black::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -236px -109px;
}
.featureFlag--magenta::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -300px -109px;
}
.featureFlag--cyan::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -268px -109px;
}
.featureFlag--yellow::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -332px -109px;
}
.featureFlag--multipack::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -12px -109px;
}
.featureFlag--blackRed::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -44px -109px;
}
.featureFlag--blackYellow::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -76px -109px;
}
.featureFlag--blackGreen::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -108px -109px;
}
.featureFlag--cyanMagenta::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -140px -109px;
}
.featureFlag--blackGrey::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -172px -109px;
}
.featureFlag--triColour::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -204px -109px;
}
.featureFlag--blue::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -364px -109px;
}
.featureFlag--verde::before,
.featureFlag--grun::before,
.featureFlag--green::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -396px -109px;
}
.featureFlag--grey::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -428px -109px;
}
.featureFlag--orange::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -460px -109px;
}
.featureFlag--red::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -492px -109px;
}
.featureFlag--clear::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -524px -109px;
}
.featureFlag--trasporto-dedicato::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -492px -149px;
}
.featureFlag--contrassegno-non-applicabile::before {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) no-repeat;
  background-position: -460px -149px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1023px) {
  .featureFlag--full {
    margin-right: 0;
    width: 100%;
  }
}
/* BEM notation: block__element--modifier */
.starRating {
  display: inline-block;
  line-height: 1.2em;
  margin: 15px 0;
}
.starRating > span {
  padding-right: 2px;
}
.starRating:hover {
  text-decoration: none;
}
.starRating__actual,
.starRating__starContainer {
  font-family: FontAwesome;
  font-size: 1.125rem;
  color: #f4f4f4;
  display: inline-block;
}
.starRating__starContainer {
  position: relative;
  vertical-align: middle;
}
.starRating__text {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.3em;
  color: #313334;
  vertical-align: middle;
  margin-left: 5px;
}
.starRating_outOfText {
  font-size: 0.625rem;
}
.starRating__actual {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffbc11;
  overflow: hidden;
  white-space: nowrap;
}
.starRating--link:hover .starRating__text {
  text-decoration: underline;
}
.starRating__starContainer--header {
  color: #c2c2c2;
}
.starRating__starContainer--header,
.starRating__actual--header {
  font-size: 1.5rem;
  line-height: 1em;
}
.starRating--pricePanel {
  margin: 0;
}
.starRating__text--link {
  color: #336997;
}
.starRating--otherProduct {
  float: left;
  margin-top: 0;
}
.starRating--youMightLike {
  margin: 0;
  float: right;
}
.starRating--customerReviews {
  float: left;
  margin: 0 10px 0 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .starRating {
    margin: 5px 0;
  }
  .starRating--youMightLike,
  .starRating--otherProduct,
  .starRating--pricePanel {
    margin: 0;
  }
  .starRating__text--pricePanel {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .starRating__starContainer--header,
  .starRating__actual--header,
  .starRating--header {
    font-size: 1.125rem;
  }
  .starRating__text--header {
    line-height: 1.125rem;
  }
}
/* BEM notation: block__element--modifier */
.favouriteBlock {
  position: absolute;
  top: 5px;
  right: 5px;
  list-style: none;
  margin: 0;
  z-index: 1;
}
.favouriteBlock li {
  display: inline-block;
  font-size: 0;
  margin: 0;
  vertical-align: top;
}
.favouriteBlock__addToFavourites,
.favouriteBlock__pastPurchase,
.favouriteBlock__coreList {
  color: #313334;
  padding: 10px;
}
.favouriteBlock__addToFavourites::after,
.favouriteBlock__pastPurchase::after,
.favouriteBlock__coreList::after {
  font-family: FontAwesome;
  font-size: 1.375rem;
  line-height: 1em;
}
.favouriteBlock__addToFavourites::before,
.favouriteBlock__pastPurchase::before,
.favouriteBlock__coreList::before {
  font-family: FontAwesome;
  font-size: 0.75rem;
  line-height: 1em;
  position: absolute;
  right: 6px;
  top: 17px;
  background: white;
  border-radius: 0.5em;
}
.favouriteBlock__addToFavourites {
  padding: 10px 5px;
  cursor: pointer;
}
.favouriteBlock__addToFavourites::after {
  content: '\f08a';
}
.favouriteBlock__addToFavourites::before {
  content: '\f055';
}
.favouriteBlock__pastPurchase {
  padding: 10px 5px;
  color: #42ba13;
}
.favouriteBlock__pastPurchase::after {
  content: '\f290';
}
.favouriteBlock__coreList {
  color: #f16522;
}
.favouriteBlock__coreList::after {
  content: '\f071';
}
.favouriteBlock__addToFavourites--current::after {
  content: '\f004';
  color: #f02d52;
}
.favouriteBlock__addToFavourites--current::before {
  content: none;
}
html:not(.touch) .favouriteBlock__addToFavourites:hover::after {
  content: '\f004';
  color: #f02d52;
}
html:not(.touch) .favouriteBlock__addToFavourites--current:hover::after {
  content: '\f08a';
  color: #313334;
}
html:not(.touch) .favouriteBlock__addToFavourites--current:hover::before {
  content: '\f056';
  color: #313334;
}
.favouriteBlock--productDetail {
  top: -8px;
  right: -8px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .favouriteBlock {
    top: 0;
    right: 0;
    font-size: 0;
  }
  .favouriteBlock--productDetail {
    top: -10px;
    right: -8px;
  }
  .favouriteBlock__purchased {
    padding: 8px 0 8px 8px;
  }
  .favouriteBlock__purchased span {
    font-size: 0;
    line-height: 1em;
    padding: 5px 7px 6px;
  }
  .favouriteBlock__purchased span::before {
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1em;
  }
}
@media screen and (max-width: 767px) {
  .favouriteBlock--productDetail {
    top: 0;
    right: 0;
  }
}
/* BEM notation: block__element--modifier */

.purchaseIndicator {
  position: absolute;
  top: 12px;
  right: 50px;
  z-index: 1;
  list-style: none;
}
.purchaseIndicator__item {
  padding: 3px 0 0 10px;
}
.purchaseIndicator__item span {
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  color: #313334;
  background: #f4f4f4;
  border-radius: 4px;
  display: block;
  padding: 0 10px;
}
.purchaseIndicator__item span::before {
  font-family: FontAwesome;
  margin-right: 6px;
}
.purchaseIndicator__item--coreList {
  display: inline-block;
}
.purchaseIndicator__item--coreList span::before {
  content: '\f071';
  color: #f16522;
}
.purchaseIndicator__item--pastPurchase span::before {
  content: '\f290';
  color: #42ba13;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .purchaseIndicator {
    right: 5px;
    top: 35px;
  }
  .purchaseIndicator__item {
    padding: 8px 0 8px 5px;
    display: inline-block;
  }
  .purchaseIndicator__item span {
    font-size: 0;
    line-height: 1em;
    padding: 5px 7px 6px;
  }
  .purchaseIndicator__item span::before {
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1em;
  }
}
@media screen and (max-width: 767px) {
  
}
/* BEM notation: block__element--modifier */

.uniqueSellingPoints {
  font-size: 0;
  background: white;
}
.uniqueSellingPoints .main__container {
  padding-bottom: 0;
}
.uniqueSellingPoints ul {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
}
.uniqueSellingPoints__item {
  display: table;
  float: left;
  width: 23.75%;
  margin-right: 1.666666667%;
  text-align: center;
  line-height: 0;
}
.uniqueSellingPoints__item a {
  position: relative;
  display: inline-block;
  text-align: left;
  padding-left: 28px;
  font-size: 0.75rem;
  line-height: 1em;
  color: #313334;
  font-weight: 500;
}
.uniqueSellingPoints__item a::before {
  font-family: FontAwesome;
  font-size: 1.125rem;
  line-height: 0.9em;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  top: 0;
  left: 0;
}
.uniqueSellingPoints__item span {
  display: inline-block;
  padding-left: 10px;
  text-align: left;
  line-height: 1.2em;
}
.uniqueSellingPoints__item strong {
  font-size: 0.8125rem;
  color: #336997;
  text-transform: uppercase;
}
.uniqueSellingPoints__item:last-child {
  margin-right: 0;
}
.uniqueSellingPoints__item--truck a::before {
  content: '\f0d1';
}
.uniqueSellingPoints__item--return a::before {
  content: '\f112';
}
.uniqueSellingPoints__item--star a::before {
  content: '\f005';
}
.uniqueSellingPoints__item--thumbsUp a::before {
  content: '\f164';
}
.uniqueSellingPoints__item--gbp a::before {
  content: '\f154';
}
.uniqueSellingPoints__item--heart a::before {
  content: '\f004';
}
.uniqueSellingPoints__item--card a::before {
  content: '\f09d';
}
.uniqueSellingPoints__item--trustpilot a::before {
  content: '';
  height: 16px;
  width: 16px;
  display: inline-block;
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/frontend/sprite-14.png) -620px -113px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1023px) {
  .uniqueSellingPoints__item {
    width: 32.03125%;
    margin-right: 1.953125%;
  }
  .uniqueSellingPoints__item:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .uniqueSellingPoints ul {
    padding-top: 1px;
    padding-bottom: 4px;
    text-align: center;
  }
  .uniqueSellingPoints__item {
    width: 100%;
    margin: 0;
    display: none;
    line-height: 1em;
    float: none;
  }
  .uniqueSellingPoints__item:first-child {
    width: auto;
    display: inline-block;
    float: none;
  }
}
/* BEM notation: block__element--modifier */

.yieldifyPopupWrapper {
  display: none;
  position: fixed;
  top: 50%;
  margin: -200px 0 0;
  width: 100%;
  text-align: center;
  z-index: 1050;
}
.yieldifyPopup {
  position: relative;
  left: 0;
  margin-left: 0;
  display: inline-block;
  max-width: 643px;
  background: transparent;
  z-index: 2;
}
.yieldifyPopup a {
  display: block;
}
.yieldifyPopup img {
  max-width: 100%;
}
.yieldifyPopup__closeIcon {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/popup-close-icon.png);
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 0;
  margin: 0;
  width: 36px;
  height: 36px;
  border: none;
}
.yieldifyPopup__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #333333;
  opacity: 0.6;
}
.yieldifyPopup__signUp {
  position: absolute;
  bottom: 70px;
  left: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: Arial;
}
.yieldifyPopup__signUp fieldset {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 11px;
  border-radius: 4px;
}
.yieldifyPopup__signUp fieldset.agree-terms {
  background: transparent;
  padding: 0;
  margin-top: 5px;
}
.yieldifyPopup__signUp fieldset.agree-terms label {
  display: block;
  margin: 0;
}
.yieldifyPopup__signUp fieldset.agree-terms input {
  margin-top: 0;
}
.yieldifyPopup__signUp fieldset.agree-terms a {
  text-decoration: underline;
}
.yieldifyPopup__signUp fieldset.agree-terms .input-validation-error {
  background: red;
}
.yieldifyPopup__signUp fieldset.agree-terms .input-validation-error + .errMsg {
  color: red;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 4px 7px;
  margin-right: 5px;
  border-radius: 2px;
}
.yieldifyPopup__signUp fieldset,
.yieldifyPopup__signUp .terms {
  margin: 0 12.441679627%;
  color: white;
}
.yieldifyPopup__signUp .terms {
  font-size: 12px;
  text-align: left;
  line-height: 22px;
}
.yieldifyPopup__signUp .terms-checkbox {
  margin-top: 4px;
}
.yieldifyPopup__signUp label {
  display: none;
  color: white;
  font-size: 1em;
  line-height: 1em;
}
.yieldifyPopup__signUp .field-validation-error {
  display: inline-block;
  line-height: 1em;
  color: red;
}
.yieldifyPopup__signUp .control-container {
  position: relative;
}
.yieldifyPopup__signUp input[type="email"] {
  height: 26px;
  width: 100%;
  padding: 1% 110px 1% 1%;
  font-size: 14.45px;
  border-radius: 0;
  border-width: 1px;
}
.yieldifyPopup__signUp button {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 4px 12px;
  margin: 0;
  font-size: 14.45px;
  line-height: 16px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: white;
  text-shadow: inherit;
  background-color: #0146ba;
  background-image: linear-gradient(to bottom, #014fc4, #0139aa);
  background-repeat: repeat-x;
  border-color: #0139aa #0139aa #01205e;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border: 1px solid #797979;
  border-bottom-color: #606060;
  border-radius: 0;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
}
.yieldifyPopup__signUp button:hover,
.yieldifyPopup__signUp button:focus {
  color: white;
}
.yieldifyPopup__signUp a {
  display: inline;
  color: white;
  text-decoration: underline;
}
@media screen and (max-width: 500px) {
  .yieldifyPopup__signUp {
    bottom: 40px;
  }
  .yieldifyPopup__signUp .terms {
    line-height: 15px;
    font-size: 10px;
  }
}
/* BEM notation: block__element--modifier */

.packOf {
  font-size: 0.875rem;
  font-weight: normal;
  padding: 0 9px;
  display: inline-block;
  border: 2px solid #e9e9e9;
  background: whitesmoke;
  color: #8e8e8e;
  border-radius: 4px;
  margin: 5px 12px 0 0;
  line-height: 1.75rem;
  vertical-align: top;
}
.packOf--youMightLike {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  line-height: 1.8em;
  margin-top: 0;
  padding: 0 5px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .packOf {
    font-size: 0.75rem;
    line-height: 1.25rem;
    padding: 0 5px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .packOf--productList {
    font-size: 0.625rem;
    padding: 0 3px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .packOf {
    margin-top: 3px;
    margin-right: 6px;
  }
}
/* BEM notation: block__element--modifier */

.productDetail {
  padding: 20px 0;
}
.productDetail__header {
  position: relative;
  margin-bottom: 20px;
}
.productDetail__header h1 {
  margin: 0 100px 0 -50px;
  padding-left: 50px;
}
.productDetail__info {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  line-height: 1em;
}
.productDetail__sku {
  float: right;
  margin: 11px 0 0;
  font-size: 0.875rem;
  line-height: 1em;
}
.productDetail__column {
  float: left;
}
.productDetail__column:first-of-type {
  width: 59.333333333%;
  margin-right: 1.666666667%;
}
.productDetail__column:last-of-type {
  width: 39%;
}
.productDetail__panel {
  padding: 20px;
  background: white;
  border-radius: 4px;
  margin-bottom: 20px;
}
.productDetail__panel h1 {
  font-weight: 600;
}
.productDetail__panel table {
  width: 100%;
}
.productDetail__heading {
  font-size: 1.25rem;
  font-weight: 500;
  color: #313334;
  line-height: 1em;
  margin: 0 0 15px;
}
.productDetail__panel--utilityBar {
  padding: 10px 20px;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #f7f7f7;
  position: relative;
  display: none;
}
.productDetail__panel--variations {
  display: none;
}
.productDetail__panel--reviews,
.productDetail__panel--questions {
  padding: 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .productDetail__sku {
    margin-top: 5px;
  }
  .productDetail__panel {
    padding: 10px;
  }
  .productDetail__panel input[type="number"],
  .productDetail__panel input[type="text"] {
    padding: 9px;
    height: 39px;
  }
  .productDetail__panel--imageViewer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .productDetail__panel--utilityBar {
    display: block;
    min-height: 39px;
  }
  .productDetail__panel--description,
  .productDetail__panel--specification,
  .productDetail__panel--reviews,
  .productDetail__panel--questions {
    padding: 0;
  }
  .productDetail__panel--variations {
    display: block;
  }
  .productDetail {
    padding: 10px 0;
  }
  .productDetail__header h1 {
    font-size: 1.125rem;
    line-height: 1.2em;
    margin: 0 0 0 -50px;
    padding-left: 50px;
  }
  .productDetail__column {
    float: none;
  }
  .productDetail__column:first-of-type,
  .productDetail__column:last-of-type {
    width: 100%;
    margin-right: 0;
  }
  .productDetail__heading {
    font-size: 1rem;
    font-weight: 600;
  }
  .productDetail__info {
    position: relative;
  }
}
/* BEM notation: block__element--modifier */
.pricePanel {
  position: relative;
  z-index: 1;
}
.pricePanel__header {
  display: none;
}
.pricePanel__utilityBar {
  border-bottom: 4px solid #f2f2f2;
  padding-bottom: 15px;
  position: relative;
  min-height: 43px;
}
.pricePanel__delivery {
  margin-bottom: 20px;
  margin-top: -24px;
  background: #e7e7e7;
  text-align: center;
  padding: 14px 10px 10px;
  border-radius: 0 0 4px 4px;
  position: relative;
  z-index: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #d40000;
}
.pricePanel__delivery::before {
  content: '\f0d1';
  font-family: FontAwesome;
  font-size: 1rem;
  margin-right: 8px;
}
.pricePanel__delivery--nextDay {
  color: #42ba13;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .pricePanel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 7;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.14);
    padding: 10px;
  }
  .pricePanel__utilityBar {
    display: none;
  }
  .pricePanel__delivery {
    margin-top: 0;
    border-radius: 4px;
    padding: 10px;
  }
}
/* BEM notation: block__element--modifier */

.productDescription ul {
  margin-left: 15px;
}
.productDescription ul:first-child {
  margin-top: 0;
}
.productDescription ul:last-child {
  margin-bottom: 0;
}
.productDescription li {
  list-style-position: outside;
  line-height: 1.2em;
  margin-bottom: 0.6em;
}
.productDescription__socialShares {
  text-align: right;
}
.productFlags h1 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1em;
}
.productFlags {
  margin-right: 2.976190476%;
  margin-bottom: 1em;
}
.buyersGuides {
  margin-top: 20px;
}
.buyersGuides ul {
  list-style: none;
  margin: 20px 0 0;
}
.buyersGuides li {
  margin-bottom: 10px;
  line-height: 1.2em;
}
.buyersGuides li:last-child {
  margin-bottom: 0;
}
.buyersGuides h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1em;
}
/* BEM notation: block__element--modifier */

.socialShares {
  text-align: right;
}
.addthis_toolbox {
  float: right;
  font-size: 0;
}
.addthis_toolbox a,
.addthis_toolbox .addthis_counter.addthis_bubble_style {
  margin-left: 5px;
}
/* BEM notation: block__element--modifier */

.deliveryNotice {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.2em;
  color: #42ba13;
  margin-right: 52px;
}
.deliveryNotice::before {
  display: inline-block;
  margin-right: 10px;
  content: '\f0d1';
  font-family: FontAwesome;
  font-size: 1.125rem;
  line-height: 1em;
}
.deliveryNotice--unavailable {
  color: #d40000;
}
/* BEM notation: block__element--modifier */
.imageViewer {
  position: relative;
  min-height: 122px;
  text-align: center;
}
.imageViewer__message p {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.imageViewer__message::before {
  content: '\f1c5';
  position: relative;
  top: 18px;
  display: inline-block;
  margin: 10px 18px 0 21px;
  font-family: FontAwesome;
  font-size: 4.5rem;
  font-weight: normal;
  line-height: 1em;
  vertical-align: baseline;
  color: #e4e4e4;
}
.imageViewer__carousel {
  position: relative;
  display: table;
  width: 100%;
  min-height: 350px;
}
.imageViewer__carousel ul {
  display: table-cell;
  width: 100%;
  list-style: none;
  text-align: center;
  vertical-align: middle;
}
.imageViewer__carousel .imageViewer__message {
  display: none;
}
.imageViewer__carouselItem {
  display: none;
  height: 100%;
}
.imageViewer__carouselItem img,
.imageViewer__carouselItem video {
  width: 100%;
}
.imageViewer__carouselItem video {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -28%;
}
.imageViewer__easyzoom {
  margin: 0 48px;
  max-width: 350px;
  width: -webkit-calc(100% - 96px);
  width: calc(100% - 96px);
}
.imageViewer__easyzoom a {
  display: block;
}
.imageViewer__easyzoom img {
  width: 100%;
  height: auto;
}
.imageViewer__easyzoom .imageViewer__message {
  display: none;
}
.is-error .easyzoom-notice {
  display: none;
}
.imageViewer__easyzoom .easyzoom-flyout {
  height: 100%;
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  top: 0;
  left: 0;
}
.imageViewer__easyzoom .easyzoom-flyout img {
  max-width: none;
  max-height: none;
  height: 200%;
  width: 200%;
}
.imageViewer__carouselItem--current {
  display: block;
}
.imageViewer__videoContainer {
  max-width: 350px;
  margin: 0 auto;
}
.imageViewer__videoContainerInner {
  padding: 50% 0;
  position: relative;
}
.imageViewer__carouselControl {
  position: absolute;
  top: 0;
  border: none;
  height: 100%;
  margin: 0;
  font-size: 0;
  background: transparent;
  transition: background 0.3s ease;
  padding: 0;
  text-align: center;
  width: 48px;
  z-index: 2;
}
.imageViewer__carouselControl::before {
  font-family: FontAwesome;
  font-size: 2.8125rem;
  line-height: 1em;
  color: #f0182d;
}
.imageViewer__carouselControl:hover {
  background: rgba(230, 230, 230, 0.5);
}
.imageViewer__carouselControl:focus {
  box-shadow: none;
}
.imageViewer__carouselControl--previous {
  left: 0;
}
.imageViewer__carouselControl--previous::before {
  content: '\f053';
}
.imageViewer__carouselControl--next {
  right: 0;
}
.imageViewer__carouselControl--next::before {
  content: '\f054';
}
.imageViewer__promoBubble {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 18.154761905%;
  z-index: 1;
}
.imageViewer__thumbnails {
  margin-top: 20px;
}
.imageViewer__thumbnails ul {
  list-style: none;
  margin: 0;
}
.imageViewer__thumbnail {
  float: left;
  margin: 10px 10px 0 0;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid #e1e1e1;
}
.imageViewer__thumbnail img {
  height: 80px;
  width: 80px;
  border-radius: 4px;
}
.imageViewer__thumbnail:hover {
  border: 2px solid #f0182d;
}
.imageViewer__thumbnail:last-child {
  margin-right: 0;
}
.imageViewer__thumbnail--current {
  border: 2px solid #f0182d;
}
.imageViewer__thumbnail--video {
  position: relative;
}
.imageViewer__thumbnail--video::before {
  content: '\f01d';
  font-family: FontAwesome;
  color: #f0182d;
  font-size: 1.75rem;
  line-height: 1em;
  position: absolute;
  bottom: 4px;
  right: 4px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1108px) {
  .imageViewer__carousel {
    min-height: inherit;
  }
  .imageViewer__carousel ul {
    top: 0;
    height: 100%;
  }
  .imageViewer__carouselItem--current,
  .imageViewer__single {
    display: table;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .imageViewer__promoBubble {
    top: -10px;
    right: -10px;
  }
  .imageViewer__carouselControl--previous {
    margin-left: -18px;
  }
  .imageViewer__carouselControl--next {
    margin-right: -18px;
  }
}
@media screen and (max-width: 767px) {
  .imageViewer__carouselControl {
    padding: 15px;
  }
  .imageViewer__carouselControl::before {
    font-size: 2.625rem;
  }
  .imageViewer__carouselControl--previous {
    margin-left: -8px;
    padding-left: 3px;
  }
  .imageViewer__carouselControl--next {
    margin-right: -8px;
    padding-right: 3px;
  }
  .imageViewer__thumbnails {
    width: 101%;
  }
}
@media screen and (max-width: 486px) {
  .imageViewer__videoContainer {
    margin: 0 48px;
  }
}
/* BEM notation: block__element--modifier */
.reviews__write {
  margin: 25px 0;
}
.reviews__write a {
  float: left;
}
.reviews__write span {
  line-height: 1.2em;
}
.reviews__breakdown {
  background: #f6f6f6;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.reviews__breakdown h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1em;
  margin: 0 0 15px;
}
.reviews__breakdown table {
  float: left;
  width: 45.327102804%;
  font-size: 0.8125rem;
}
.reviews__breakdown table:first-of-type {
  margin-right: 9.345794393%;
}
.reviews__breakdown td {
  padding: 2px 14px;
  line-height: 26px;
}
.reviews__breakdown td:first-child,
.reviews__breakdown td:last-child {
  padding-left: 0;
  padding-right: 0;
}
.reviews__breakdown tr {
  background: transparent;
}
.reviewsBreakdown__table--stars td:first-child,
.reviewsBreakdown__table--quality td:first-child,
.reviewsBreakdown__table--stars td:last-child,
.reviewsBreakdown__table--quality td:last-child {
  width: 10px;
}
.reviewsBreakdown__barBackground {
  position: relative;
}
.reviewsBreakdown__barBackground,
.reviewsBreakdown__barActual {
  background: #eaeaea;
  width: 100%;
  height: 26px;
  display: block;
  border-radius: 4px;
}
.reviewsBreakdown__barActual {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffc300;
}
.customerReviews__header {
  background: #d6d6d6;
  padding: 8px;
  border-radius: 4px;
}
.customerReviews__header h1 {
  float: left;
  margin: 0 0 0 12px;
  font-weight: 600;
}
.customerReviews__header label {
  display: inline-block;
  margin: 0 10px 0 0;
}
.customerReviews__header h1,
.customerReviews__header label {
  font-size: 0.9375rem;
  line-height: 39px;
}
.customerReviews__header form {
  font-size: 0;
  float: right;
}
.customerReviews__header select {
  width: 160px;
  font-size: 0.9375rem;
}
.customerReviews__list {
  margin: 25px 0 0;
  list-style: none;
}
.customerReviews__list header {
  margin-bottom: 20px;
}
.customerReviews__list li {
  margin: 0 0 35px;
}
.customerReviews__item {
  font-size: 0.9375rem;
  line-height: 1.2em;
}
.customerReviews__item h1 {
  font-size: 0.9375rem;
  line-height: 1.2em;
  margin: 0 0 0.85em;
}
.customerReviews__item footer {
  margin-top: 25px;
}
.customerReviews__itemAuthor {
  color: #a4a4a4;
  clear: left;
  display: block;
}
.customerReviews__itemUseful {
  float: left;
}
.customerReviews__itemUseful a {
  margin-left: 15px;
  font-size: 0.9375rem;
}
.customerReviews__itemUsefulLinks {
  font-size: 0.75rem;
}
.customerReviews__itemResponse {
  float: right;
}
.customerReviews__itemResponse a:last-child::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 15px;
  background: #313334;
  vertical-align: middle;
  margin: 0 10px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .reviews__write a {
    float: none;
  }
  .reviews__write span {
    display: block;
    margin-top: 10px;
  }
  .reviews__breakdown table {
    float: none;
    width: 100%;
  }
  .reviews__breakdown table:first-of-type {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .reviewsBreakdown__table--quality .reviewsBreakdown__barBackground {
    display: none;
  }
  .customerReviews__header h1,
  .customerReviews__header form {
    float: none;
    margin: 0;
  }
  .customerReviews__header h1 {
    line-height: 1em;
    margin-bottom: 10px;
  }
  .customerReviews__itemResponse {
    clear: left;
    margin-top: 10px;
  }
}
/* BEM notation: block__element--modifier */

.questions__ask {
  margin: 0 0 25px;
}
.questions__ask a {
  float: left;
}
.questions__ask span {
  line-height: 1.2em;
}
.questions__answerBlock {
  padding-left: 36px;
  list-style: none;
}
.questions__answerBlock li {
  font-size: 0.9375rem;
  line-height: 1.2em;
  margin: 15px 0;
  padding: 15px;
  background: #f6f6f6;
  border-radius: 4px;
}
.questions__answerBlock li:last-child {
  margin-bottom: 0;
}
.questions__answerText {
  display: inline-block;
  margin: 0 0 0.85em;
}
.questions__questionHeader {
  position: relative;
  padding-left: 36px;
}
.questions__questionHeader h1::before {
  content: 'Q';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  background: #336997;
  border-radius: 4px;
  text-align: center;
  line-height: 26px;
  color: white;
  font-weight: normal;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  
}
/* BEM notation: block__element--modifier */
.productDetail__panel--crossSell,
.crossSell--productList {
  background: red;
  display: block;
}
.productDetail__panel--crossSell:hover,
.crossSell--productList:hover {
  text-decoration: none;
  box-shadow: 0 0 0 2px #f0182d;
}
.crossSell__image {
  height: 80px;
  width: 80px;
  float: left;
  border-radius: 4px;
}
.crossSell__text {
  color: white;
  margin-left: 100px;
}
.crossSell__text p {
  line-height: 1.2em;
  margin-top: 0;
}
.crossSell--productList {
  margin: -4px 0 0;
  width: 100%;
  padding: 20px;
  border-radius: 4px;
  font-size: 0.875rem;
  position: relative;
}
.crossSell--productList img {
  position: static;
  height: 50px;
  width: 50px;
}
.crossSell--productList p {
  margin-bottom: 0.2em;
}
.crossSell--productList strong {
  font-size: 1rem;
}
.crossSell--productList:hover {
  position: relative;
  z-index: 1;
}
.crossSell__text--productList {
  margin: 0 155px 0 60px;
}
.crossSell__viewButton {
  border-color: white;
  color: white;
  position: absolute;
  top: 50%;
  right: 20px;
  margin: -18px 0 0;
}
.crossSell__viewButton:hover {
  border-color: white;
  color: white;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .crossSell__viewButton {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .crossSell__text {
    margin-left: 90px;
  }
  .crossSell--productList p,
  .crossSell--productList strong {
    font-size: 0.875rem;
  }
  .crossSell--productList strong {
    display: block;
    margin-top: 10px;
  }
  .crossSell--productList img {
    display: none;
  }
  .crossSell__text--productList {
    margin: 0 90px 0 0;
    line-height: 1em;
    font-size: 0.8125rem;
  }
  .crossSell__viewButton {
    right: 10px;
  }
  .crossSell__viewButton span {
    display: none;
  }
}
/* BEM notation: block__element--modifier */
.productPromo {
  background: #f2f2f2;
  border-radius: 4px;
  padding: 20px;
}
.productPromo__heading {
  font-size: 1.125rem;
  margin: 0 104px 0.5em 0;
}
.productPromo__image {
  float: right;
  max-width: 84px;
  border: 2px solid #e1e1e1;
  border-radius: 4px;
}
.productPromo__text {
  margin: 0 104px 0 0;
  line-height: 1.4em;
  word-wrap: break-word;
}
.productPromo__text small {
  font-size: 0.625rem;
}
/* BEM notation: block__element--modifier */

.priceComparison small {
  display: block;
  margin-top: 10px;
  font-size: 0.625rem;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .priceComparison td:last-child {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .priceComparison td:last-child {
    text-align: right;
  }
}
/* BEM notation: block__element--modifier */
.rangeLinks {
  margin-bottom: 18px;
}
.rangeLinks > div {
  margin-bottom: 2px;
}
.rangeLink {
  position: relative;
}
.rangeLink h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.rangeLink a {
  position: absolute;
  top: -10px;
  right: -10px;
  margin: 0;
}
.rangeLink a::after {
  font-family: FontAwesome;
  content: '\f105';
  margin-left: 6px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .rangeLink h2 {
    margin-right: 100px;
    font-size: 1rem;
  }
  .rangeLink a::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .rangeLink {
    padding: 5px 0;
  }
  .rangeLink h2 {
    margin-right: 100px;
    font-size: 1rem;
  }
  .rangeLink a {
    top: -6px;
    right: -5px;
  }
  .rangeLink a::after {
    content: none;
  }
}
/* BEM notation: block__element--modifier */

.otherProducts {
  margin-bottom: 20px;
}
.otherProducts h1 {
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1em;
}
.otherProducts__list {
  list-style: none;
}
.otherProducts__list article {
  position: relative;
}
.otherProducts__item {
  display: block;
  margin-bottom: 10px;
  background: white;
  border-radius: 4px;
  padding: 20px;
  position: relative;
  min-height: 120px;
}
.otherProducts__item h1 {
  font-size: 0.9375rem;
  line-height: 1.2em;
  color: #313334;
}
.otherProducts__item img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 20px;
  max-width: 80px;
}
.otherProducts__item header {
  margin: 0 0 63px 100px;
}
.otherProducts__item:hover {
  text-decoration: none;
  box-shadow: 0 0 0 2px #f0182d;
}
.otherProducts__coreList {
  margin-top: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  float: left;
  clear: left;
  color: #313334;
}
.otherProducts__coreList svg {
  margin-right: 6px;
  color: #f16522;
}
.otherProducts__banner {
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
  position: relative;
}
.otherProducts__banner img {
  width: 100%;
  max-height: 139px;
  object-fit: contain;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1150px) {
  .otherProducts__item header {
    margin-bottom: 92px;
  }
  .otherProducts__coreList {
    float: right;
    margin-top: 0;
    line-height: 19px;
    font-size: 0.75rem;
    clear: none;
  }
}
@media screen and (max-width: 1023px) {
  .otherProducts__coreList {
    font-size: 0;
  }
  .otherProducts__coreList::before {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .otherProducts__item {
    padding: 10px;
  }
  .otherProducts__item header {
    margin-left: 80px;
  }
  .otherProducts__item img {
    margin: 10px;
  }
  .otherProducts__item header {
    margin-bottom: 82px;
  }
  .otherProducts__coreList {
    font-size: 0.625rem;
  }
  .otherProducts__coreList::before {
    font-size: 0.625rem;
  }
}
/* BEM notation: block__element--modifier */

.service-message {
  padding: 0;
  text-align: center;
}
.service-message img {
  max-width: 100%;
}
/* BEM notation: block__element--modifier */
.variations {
  padding-top: 15px;
}
.variations__form {
  font-size: 0;
  margin-top: -10px;
}
.variations__form label {
  margin-top: 0;
}
.variations__form select {
  width: 100%;
}
.variations__form option[disabled] {
  font-style: italic;
  color: #cccccc;
}
.variations__container {
  position: relative;
  padding: 20px;
  background: #f2f2f2;
  border-radius: 4px;
}
.variations--mobile {
  padding: 0;
  margin: 0;
  background: transparent;
}
.variations--pricePanel {
  clear: right;
}
.productDetail__panel--variations h2::before {
  font-family: FontAwesome;
  content: '\f074';
  margin-right: 6px;
  font-weight: normal;
}
.variation {
  display: inline-block;
  padding-top: 10px;
}
.variation:last-child {
  margin-right: 0;
}
.variation--oneThird {
  width: 30.562770563%;
  margin-right: 4.155844156%;
}
.variation--half {
  width: 47.922077922%;
  margin-right: 4.155844156%;
}
.variation--full {
  width: 100%;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1023px) {
  .variation--oneThird,
  .variation--half {
    width: 100%;
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .variations--pricePanel {
    display: none;
  }
}
/* BEM notation: block__element--modifier */

.compatiblePrinter tr:nth-child(odd),
.compatiblePrinter tr:nth-child(even) {
  background: transparent;
}
.compatiblePrinter__body td {
  vertical-align: middle;
  padding: 0 0 10px;
}
.compatiblePrinter__body button,
.compatiblePrinter__body a[role="button"] {
  margin: 0 0 0 10px;
}
.compatiblePrinter__saved {
  font-size: 0.75rem;
  line-height: 1.2em;
  width: 39px;
  text-align: center;
}
.compatiblePrinter__saved button,
.compatiblePrinter__saved a[role=button] {
  margin: 0;
  text-align: center;
}
.compatiblePrinter__head th {
  padding-left: 0;
  background: none;
}
.compatiblePrinter__footer td {
  padding: 0;
  font-size: 0.75rem;
}
/**
 * EasyZoom core styles
 */

.easyzoom {
  position: relative;
  /* 'Shrink-wrap' the element */
  display: inline-block;
}
.easyzoom img {
  vertical-align: bottom;
}
.easyzoom.is-loading img {
  cursor: progress;
}
.easyzoom.is-ready img {
  cursor: crosshair;
}
.easyzoom.is-error img {
  cursor: not-allowed;
}
.easyzoom-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  width: 10em;
  margin: -1em 0 0 -5em;
  line-height: 2em;
  text-align: center;
  background: white;
  box-shadow: 0 0 10px #888888;
}
.easyzoom-flyout {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  background: white;
}
/**
 * EasyZoom layout variations
 */

.easyzoom--overlay .easyzoom-flyout {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.easyzoom--adjacent .easyzoom-flyout {
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  margin-left: 20px;
}
/* BEM notation: block__element--modifier */
.productList {
  position: relative;
  font-size: 0;
  margin-top: 23px;
}
.promotionBanner__img {
  display: block;
  margin: 0 auto;
}
.productList__header {
  position: relative;
  background: #d6d6d6;
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.productList__header h1 {
  margin: 0;
  line-height: 38px;
  font-size: 1rem;
}
.productList__results {
  position: relative;
  margin-left: 320px;
}
.productList__resultsShowingText {
  line-height: 38px;
  font-size: 1rem;
}
.productList__sortForm {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px 12px;
}
.productList__sortForm label,
.productList__sortForm select {
  display: inline-block;
}
.productList__sortForm label {
  margin: 0;
  line-height: 38px;
  font-size: 1rem;
}
.productList__sortForm select {
  max-width: 175px;
}
.productList--noSearchResults {
  position: relative;
  padding: 0 0 80px;
}
.productList--noSearchResults h2 {
  font-weight: 600;
  font-size: 0.9375rem;
  margin: 50px 0 15px;
}
.productList--noSearchResults::after {
  content: '\f119';
  font-family: FontAwesome;
  font-size: 15.625rem;
  line-height: 1em;
  position: absolute;
  top: -15px;
  right: 0;
  color: #e0e0e0;
}
.flexbox .productList {
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex: 0 1 auto;
  -ms-flex: 0 1 auto;
}
.flexbox .productList__results {
  margin: 0;
  flex: 1;
  -ms-flex: 1;
}
.flexbox .productList--noSearchResults {
  display: block;
}
/***** RESPONSIVE STYLES *****/

@media screen and (min-width: 1025px) {
  .productList__header h1 {
    color: #313334;
  }
}
@media screen and (max-width: 1024px) {
  .productList--noSearchResults::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .productList__header {
    display: table;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  .productList__header h1 {
    float: left;
    width: 110px;
    line-height: 1.2em;
    font-size: 0.9375rem;
    color: #313334;
  }
  .productList__header--results {
    padding-bottom: 9px;
  }
  .productList__results {
    margin-left: 223px;
  }
  .productList__sortForm {
    position: static;
    display: table-cell;
    width: 230px;
    text-align: right;
  }
  .productList__resultsShowingText {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .productList__results {
    margin: 0;
  }
  .productList__header {
    padding: 10px;
    box-sizing: content-box;
  }
  .productList__header--filters {
    margin-bottom: 0;
    background: #f2f2f2;
  }
  .productList__header--filters::after {
    content: '\f00b';
    font-family: FontAwesome;
    display: block;
    font-size: 1rem;
    position: absolute;
    top: 0;
    right: 18px;
    line-height: 58px;
  }
  .productList__header--results {
    margin: 10px 0;
    min-height: 55px;
  }
  .productList__resultsShowingText {
    line-height: 1.2em;
    display: block;
  }
  .productList__sortForm {
    position: static;
    margin: 10px 0 0;
  }
  .productList__sortForm label {
    display: block;
    line-height: 1.2em;
  }
  .flexbox .productList {
    display: block;
  }
}
/* BEM notation: block__element--modifier */
.filters {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  margin-right: 20px;
  z-index: 1;
  flex-shrink: 0;
}
.filters__clear {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px 12px;
  background: transparent;
}
.filters__clear--mobile {
  display: none;
}
.filters__body {
  background: white;
  padding: 20px;
  border-radius: 4px;
}
.filters__body h2 {
  font-size: 1.125rem;
  line-height: 1em;
  margin: 30px 0 15px;
  font-weight: 600;
}
.filters__body h2:first-of-type {
  margin-top: 0;
}
.filters__list {
  list-style: none;
  margin: 0;
}
.filters__list li {
  line-height: 1.6em;
}
.filters__list a {
  display: inline-block;
  margin: 0 0 0 27px;
  font-weight: 400;
  color: #bbbbbb;
}
.filters__list input[type=checkbox],
.filters__list input[type=radio] {
  float: left;
  position: relative;
  margin: 6px -27px 0 0;
  z-index: 1;
}
.filters__list em {
  color: #313334;
  font-weight: 500;
  font-style: normal;
}
.filters__list--categories em,
.filters__list--moreCategories em {
  color: #336997;
}
.filters__list--categories a,
.filters__list--moreCategories a {
  margin-left: 0;
}
.filters__expander {
  font-size: 0;
  font-weight: 500;
  text-align: left;
  color: #336997;
  position: relative;
}
.filters__expander span {
  font-size: 0.875rem;
  margin: 0;
  position: relative;
  z-index: 1;
  background: white;
  padding-right: 6px;
}
.filters__expander::after {
  content: none;
}
.filters__expander::before {
  font-size: 0.75rem;
  margin: 0;
  position: relative;
  z-index: 1;
  background: white;
  padding-right: 6px;
}
.filters__expander.expander--open::after {
  content: '';
  border-top: 2px dashed #ececed;
  display: inline-block;
  height: 4px;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -1px 0 0;
  z-index: 0;
}
.filters__header {
  display: none;
}
.flexbox .filters {
  position: static;
}
.filters__departmentTitle,
.filters__categoryTitle {
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  margin: 0;
}
.filters__department > a:visited,
.filters__category > a:visited {
  color: #336997;
}
.filters__category {
  padding-left: 18px;
  border-left: 2px solid #f3f3f3;
}
.filters__category--sub {
  border-color: #d6d6d6;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .filters {
    width: 213px;
    min-width: 213px;
  }
  .filters__clear {
    position: static;
    float: right;
    margin: 0;
    padding: 10px;
    font-size: 0.875rem;
  }
  .filters__body {
    padding: 10px;
  }
  .filters__body h2 {
    font-size: 1rem;
  }
  .filters__list li {
    font-size: 0.875rem;
    line-height: 1.1em;
  }
  .filters__list a {
    padding: 5px 0;
  }
  .filters__list input[type=checkbox],
  .filters__list input[type=radio] {
    margin-top: 5px;
  }
  .filters__departmentTitle,
  .filters__categoryTitle {
    font-size: 0.875rem;
  }
  .filters__category {
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .filters {
    width: 100%;
    position: static;
  }
  .filters__clear {
    display: none;
  }
  .filters__clear--mobile {
    font-size: 0.875rem;
    display: block;
    margin: 30px 0 -10px;
    text-align: center;
    float: none;
  }
  .filters__body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 20px;
    margin-top: -5px;
  }
  .filters__header {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin: 30px 0 20px;
    padding: 5px 5px 5px 10px;
    border-radius: 4px;
    background: #d6d6d6;
    line-height: 37px;
  }
  .filters__header a {
    float: right;
    margin: 0;
  }
}
/* BEM notation: block__element--modifier */

.productList__items {
  list-style: none;
  margin: 0;
}
.productList__items > li {
  position: relative;
  margin-bottom: 20px;
}
.productListItem footer {
  position: relative;
  z-index: 1;
}
.productListItem__link {
  position: relative;
  min-height: 205px;
  box-sizing: content-box;
  display: block;
  background: white;
  border-radius: 4px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  z-index: 1;
}
.productListItem__link:hover {
  text-decoration: none;
  box-shadow: 0 0 0 2px #f0182d;
}
.productListItem__imageContainer {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 205px;
  text-align: center;
}
.productListItem__image {
  max-width: 100%;
}
.productListItem__promo {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 70px;
  width: 70px;
}
.productListItem__header {
  margin: 0 160px 0 225px;
}
.productListItem__header h1 {
  margin: 0;
  color: #313334;
  font-size: 1rem;
  line-height: 1.2em;
}
.productListItem__featureFlags {
  margin: 15px 0 0 225px;
}
.productListItem__delivery {
  position: relative;
  margin-left: 225px;
  margin-top: 15px;
  color: #42ba13;
  font-size: 0.625rem;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 20px;
}
.productListItem__delivery::before {
  content: '\f0d1';
  position: absolute;
  top: -3px;
  left: 0;
  margin-right: 6px;
  font-family: FontAwesome;
  font-size: 0.875rem;
  line-height: 1em;
}
.productListItem__delivery--unavailable {
  color: #d40000;
}
span.additionalServiceAvailable {
  text-decoration: none;
  color: #336997;
}
span.additionalServiceAvailable:hover {
  text-decoration: underline;
}
.productList__emptyMessage {
  margin: 30px 0;
  text-align: center;
  color: #d6d6d6;
  background: white;
  padding: 20px;
  border-radius: 4px;
}
.productList__emptyMessage::before {
  content: '\f119';
  margin: 0 25px 0 0;
  font-family: FontAwesome;
  font-size: 5rem;
  line-height: 1em;
  vertical-align: middle;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .productList__items a {
    padding: 10px;
  }
  .productList__items > li {
    margin-bottom: 10px;
  }
  .productListItem__header {
    margin: 0 75px 0 225px;
  }
  .productListItem__imageContainer {
    top: 10px;
    left: 10px;
  }
  .productListItem__delivery {
    margin: 7px 140px 0 225px;
  }
  .productListItem__featureFlags {
    position: static;
    margin: 7px 180px 62px 225px;
  }
  .productListItem__featureFlags li {
    float: none;
  }
  .productListItem__promo {
    top: -5px;
    right: -5px;
  }
}
@media screen and (max-width: 767px) {
  .productList__items > li {
    margin-bottom: 10px;
  }
  .productList__items a {
    padding: 10px;
  }
  .productListItem__imageContainer {
    position: relative;
    margin: 0 0 62px;
    max-width: 50%;
    top: inherit;
    left: inherit;
  }
  .productListItem__promo {
    top: -5px;
    right: -5px;
    width: 50px;
    height: 50px;
  }
  .productListItem__header {
    margin: 0 120px 0 0;
  }
  .productListItem__featureFlags {
    position: absolute;
    margin-top: 0;
  }
  .productListItem__delivery {
    margin: 15px 0 10px;
  }
}
@media screen and (max-width: 400px) {
  .productListItem__featureFlags {
    margin-left: 50%;
  }
}
/* BEM notation: block__element--modifier */

.searchForm {
  margin-top: 25px;
  font-size: 0;
}
.searchForm fieldset {
  border-radius: 4px;
  background: #eeeeee;
  padding: 19px 17px;
  display: inline-block;
  font-size: 0;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.14);
}
.searchForm__input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
  width: 500px;
}
.searchForm__button {
  margin: 0;
  vertical-align: top;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 0;
  width: 67px;
}
.searchForm__button::before {
  content: '\f002';
  font-size: 1.25rem;
  line-height: 1em;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .searchForm fieldset {
    position: relative;
    width: 100%;
    padding: 14px;
  }
  .searchForm__input {
    position: relative;
    width: 100%;
  }
  .searchForm__button {
    position: absolute;
    right: 14px;
    top: 14px;
  }
  .searchForm--noSearchResults div {
    position: relative;
  }
  .searchForm--noSearchResults input {
    width: 95%;
  }
  .searchForm--noSearchResults button {
    top: 0;
    right: 0;
  }
}
/* BEM notation: block__element--modifier */

.quickFilters {
  margin-bottom: 20px;
  background: white;
  border-radius: 4px;
  padding: 14px;
}
.quickFilters h1 {
  margin: 0 20px 0 0;
  font-size: 1rem;
  line-height: 29px;
  display: inline-block;
  vertical-align: top;
}
.quickFilters form,
.quickFilters div {
  display: inline-block;
  vertical-align: middle;
}
.quickFilters .quickFilters__form {
  text-transform: capitalize;
  width: 40%;
}
.quickFilters div {
  margin-right: 20px;
  margin-top: 6px;
}
.quickFilters label {
  margin: 0;
}
.quickFilters label,
.quickFilters input {
  vertical-align: middle;
}
.quickFilters input[type=checkbox] {
  margin-right: 6px;
}
.quickFilters__search {
  float: right;
}
.quickFilters__search input {
  border-right: none;
  border-radius: 4px 0 0 4px;
  width: 230px;
}
.quickFilters__search button {
  margin: 0;
  vertical-align: middle;
  width: 49px;
  border-radius: 0 4px 4px 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .quickFilters {
    margin-bottom: 10px;
  }
  .quickFilters h1 {
    line-height: 1.2em;
  }
  .quickFilters__search {
    position: relative;
    width: 100%;
    margin-top: 10px;
  }
  .quickFilters__search input {
    width: 100%;
  }
  .quickFilters__search button {
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .quickFilters {
    margin-bottom: 10px;
    padding: 10px;
  }
  .quickFilters h1 {
    margin: 0 0 10px;
    font-size: 16px;
  }
  .quickFilters form {
    display: block;
  }
  .quickFilters div {
    display: block;
    margin-bottom: 10px;
  }
  .quickFilters div:last-child {
    margin: 0;
  }
  .quickFilters__search {
    margin-top: 15px;
  }
}
.supplierResponse__layout {
  width: 100%;
  display: table;
  margin-top: 25px;
}
.supplierResponse__layout > div {
  display: table-row;
}
.supplierResponse__layout > div.supplierResponse__sectionCaption {
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
}
.supplierResponse__layout > div.supplierResponse__sectionCaption div {
  margin-top: 20px;
  margin-bottom: 10px;
}
.supplierResponse__layout > div.supplierResponse__sectionCaption--small {
  font-size: 16px;
  font-weight: bold;
}
.supplierResponse__layout > div.supplierResponse__sectionCaption--small div {
  margin-top: 20px;
  margin-bottom: 10px;
}
.supplierResponse__layout > div.supplierResponse__bottomSection {
  height: 78px;
}
.supplierResponse__panel {
  background-color: white;
  border-radius: 4px;
}
.supplierResponse__panel .supplierResponse__panelContent {
  margin: 20px;
}
.supplierResponse__panel table {
  width: 100%;
}
.supplierResponse__panel td {
  vertical-align: middle;
}
.supplierResponse__panel th {
  text-align: left;
}
.supplierResponse__splittedContent {
  width: 100%;
  display: table;
}
.supplierResponse__splittedContent > div {
  display: table-row;
}
.supplierResponse__splittedContent > div > div {
  display: table-cell;
  vertical-align: top;
}
.supplierResponse__splittedContent > div > div.middle {
  display: table-cell;
  vertical-align: middle;
}
.supplierResponse__splittedContent > div > div.separator {
  width: 20px;
}
.supplierResponse__splittedContent > div > div.width-370 {
  width: 370px;
}
.supplierResponse__hintContainer {
  margin-top: 10px;
}
.supplierResponse__hint::before {
  content: '\f05a';
  font-family: FA_Light;
  margin-right: 6px;
}
.supplierResponse__hint--smallGrey {
  font-size: 14px;
  color: #666666;
}
.supplierResponse__label {
  font-weight: 500;
  margin-right: 5px;
}
.supplierResponse__label--grey {
  color: #666666;
  font-size: 14px;
  margin-bottom: 6px;
}
.supplierResponse__logoContainer {
  width: 210px;
}
.supplierResponse__status {
  height: 43px;
}
.supplierResponse__status div {
  height: 43px;
}
.supplierResponse__status div:first-child {
  float: left;
  padding: 10px 15px 8px 15px;
  border-radius: 4px 0px 0px 4px;
  font-size: 17px;
  line-height: 27px;
  color: white;
  text-transform: uppercase;
}
.supplierResponse__status div:last-child {
  float: left;
  background-color: #f2f2f2;
  border: 2px solid #cccccc;
  padding: 8px 15px 8px 15px;
  font-size: 17px;
  line-height: 27px;
  border-radius: 0px 4px 4px 0px;
}
.supplierResponse__status--accept div:first-child {
  background-color: #6bb731;
}
.supplierResponse__status--reject div:first-child {
  background-color: #ec8600;
}
.supplierResponse__alert {
  padding: 20px;
}
.supplierResponse__alert--tiny {
  padding: 12px;
}
.supplierResponse__resultBottomText {
  margin-top: 5px;
}
.supplierResponse__input {
  width: 190px;
}
.supplierResponse__date {
  position: relative;
  display: inline-block;
}
.supplierResponse__date input[type=text] {
  width: 190px;
  padding-right: 35px;
}
.supplierResponse__date--small {
  position: relative;
  display: inline-block;
}
.supplierResponse__date--small input[type=text] {
  width: 178px;
  padding-right: 35px;
}
.supplierResponse__comment {
  height: 83px;
}
.supplierResponse__infoBox {
  padding: 10px;
}
.supplierResponse__bottomLine {
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 78px;
  background-color: white;
  z-index: 9;
  width: 100%;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}
.supplierResponse__bottomLine .supplierResponse__bottomLineContent {
  margin: 19px 20px 19px 20px;
}
.supplierResponse__bottomLine .supplierResponse__submitButtons {
  float: right;
}
.supplierResponse__bottomLine button {
  margin-right: 0px;
}
/* BEM notation: block__element--modifier */

.brokenImage img {
  display: none;
}
.brokenImage::before {
  content: '\f1c5';
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  font-family: FontAwesome;
  font-size: 3.4375rem;
  font-weight: normal;
  vertical-align: baseline;
  color: #e4e4e4;
}
.brokenImage--productList {
  padding-top: 60px;
}
.brokenImage--crossSell::before {
  float: left;
  height: 80px;
  width: 80px;
  text-align: center;
  color: white;
}
.brokenImage--basket::before {
  float: left;
  text-align: center;
}
.brokenImage--miniBasket::before {
  float: left;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 2.125rem;
  margin: 4px;
  text-align: center;
}
.brokenImage--imageViewer {
  display: block;
  margin: 0;
  width: auto;
  max-width: inherit;
}
.brokenImage--imageViewer::before {
  display: none;
}
.brokenImage--imageViewer a {
  display: none;
}
.brokenImage--imageViewer .imageViewer__message {
  display: block;
}
.imageViewer__carousel .brokenImage--imageViewer {
  margin: 0 48px;
}
.brokenImage--otherProducts::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 20px;
  text-align: center;
  font-size: 4.5rem;
  z-index: 1;
}
.brokenImage--youMightLike::before {
  position: absolute;
  top: 50%;
  margin-top: -40px;
  width: 100%;
  text-align: center;
}
.brokenImage--productPromo::before {
  float: right;
  text-align: center;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1108px) {
  .brokenImage--imageViewer {
    display: table-cell;
    vertical-align: middle;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .brokenImage--productList {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .brokenImage--otherProducts::before {
    margin: 10px;
  }
}
/* BEM notation: block__element--modifier */

.checkoutHeader {
  position: relative;
}
.checkoutHeader + .message {
  margin-top: 0;
}
.checkoutHeader__title {
  float: left;
  width: 100%;
  padding-right: 200px;
}
.checkoutHeader__title strong {
  color: #336997;
}
.checkoutHeader__thankYouText {
  margin-bottom: 32px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .checkoutHeader__title {
    padding-right: 80px;
    min-height: 52px;
    font-size: 1.25rem;
  }
  .checkoutHeader__title--secure {
    min-height: inherit;
  }
  .checkoutHeader {
    z-index: 2;
  }
  .checkoutPanels {
    z-index: 0;
  }
}
/* BEM notation: block__element--modifier */
.basket {
  padding: 0 0 30px;
}
.basket__header h1 {
  margin: 0 0 20px;
}
.basket__container {
  position: relative;
  padding-right: 340px;
}
.basket__column:first-of-type {
  float: left;
  width: 100%;
}
.basket__column:last-of-type {
  float: right;
  margin-right: -340px;
  margin-left: 20px;
  width: 320px;
}
.basketTable {
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.2em;
}
.basketTable img {
  border-radius: 4px;
  border: 2px solid #e1e1e1;
  height: 84px;
  width: 84px;
}
.basketTable th {
  padding: 10px 13px;
  white-space: nowrap;
}
.basketTable th.basketTable__selection {
  padding: 10px 0px;
}
.basketTable--readOnly .addToBasket__priceBreaks--basket {
  display: none;
}
.basketTable__description,
.basketTable__quantity,
.basketTable__budgetCode,
.basketTable__unitPrice,
.basketTable__total {
  padding: 10px 5px;
}
.basketTable__selection {
  padding-left: 10px;
  padding-right: 0px;
  padding-top: 10px;
}
.basketTable__selection .quoteItemSelection {
  margin-right: 0px;
}
.basketTable__selection .quoteItemSelectionAll {
  margin-right: 0px;
  margin-left: 10px;
  margin-bottom: 5px;
}
.basketTable__total {
  padding-right: 10px;
}
.basketTable__estdeliverydate {
  padding: 10px 5px;
}
.basketTable__estdeliverydate div {
  width: 150px;
  margin: auto;
}
.basketTable__estdeliverydate input {
  width: 150px;
}
.basketTable__description {
  padding: 0;
}
.basketTable__description img {
  float: left;
  clear: both;
}
.basketTable__specials {
  padding: 0;
}
.basketTable__specials a {
  margin-top: 10px;
  display: block;
}
.basketTable__productWrap,
.basketTable__productInfo,
.basketTable__productLink,
.basketTable__serviceLink {
  display: block;
  padding: 10px;
  border-radius: 4px;
  position: relative;
  z-index: 0;
}
.basketTable__productWrap a:hover,
.basketTable__productInfo a:hover,
.basketTable__productLink:hover,
.basketTable__serviceLink:hover {
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.basketTable__productWrap a:hover img,
.basketTable__productInfo a:hover img,
.basketTable__productLink:hover img,
.basketTable__serviceLink:hover img {
  border-color: #f0182d;
}
.basketTable__productWrap a:hover .basketTable__descriptionText,
.basketTable__productInfo a:hover .basketTable__descriptionText,
.basketTable__productLink:hover .basketTable__descriptionText,
.basketTable__serviceLink:hover .basketTable__descriptionText {
  text-decoration: underline;
}
.basketTable__productInfo img {
  width: 60px;
  height: 60px;
}
.basketTable__productInfo img:hover {
  border-color: #f0182d;
}
.basketTable__productInfo a {
  color: #313334;
}
.basketTable__descriptionText {
  margin: 0 90px;
  color: #313334;
  min-height: 2.4em;
  font-weight: 600;
  font-size: 0.9375rem;
}
.basketTable__descriptionText a {
  color: #313334;
}
.basketTable__services {
  padding: 0px;
  margin: 0 0 0 5px;
  color: #313334;
  width: auto;
}
.basketTable__descriptionText--sc {
  margin-right: 0;
}
.basketTable__descriptionText--review {
  margin-right: 0;
}
.basketTable__descriptionText--fullWidth {
  margin-right: 0;
  margin-left: 76px;
  line-height: 1.3em;
}
.basketTable__sku {
  float: left;
  margin: 0 0 2px;
  font-size: 0.8125rem;
  line-height: 1.3em;
}
.basketTable__asideInfo {
  position: relative;
  margin: 5px 0 0 90px;
  color: #313334;
  list-style: none;
}
.basketTable__asideInfo .basketTable__budgetCodeField {
  display: block;
  padding: 0px;
}
.basketTable__asideInfo li {
  font-size: 0.75rem;
  display: inline-block;
}
.basketTable__discount {
  color: #42ba13;
}
.basketTable__discount::before {
  content: '\f00c';
  font-family: FontAwesome;
  margin-right: 3px;
}
li.basketTable__coreList--block {
  display: block;
}
.basketTable__coreList {
  display: inline-block;
  margin-left: 5px;
}
.basketTable__coreList::before {
  content: '\f071';
  color: #f16522;
  font-family: FontAwesome;
  margin-right: 3px;
}
.basketTable__packOf {
  margin-left: 10px;
}
.basketTable__packOf span {
  text-transform: uppercase;
}
li.basketTable__serviceAvail {
  display: block;
}
li.basketTable__serviceAvail span {
  margin-left: 4px;
}
.basketTable__serviceAvail {
  margin-left: 2px;
}
.basketTable__serviceAvail::before {
  content: '\f468';
  font-size: 0.75rem;
  color: #313334;
  font-family: FA_Light;
  margin-right: 3px;
}
.basketTable__serviceAvail--notAvail {
  color: red;
}
.basketTable__serviceAvail--notAvail::before {
  content: '\f468';
  font-size: 0.75rem;
  color: red;
  font-family: FA_Light;
  margin-right: 3px;
}
.basketTable__budgetCode {
  width: 100px;
}
.basketTable__budgetCode input[type="text"],
.basketTable__budgetCode input[type="number"],
.basketTable__budgetCode select {
  position: relative;
  float: left;
  z-index: 1;
  height: 48px;
  width: 110px;
  text-align: center;
  vertical-align: middle;
  padding: 12px 5px;
}
.basketTable__quantity {
  width: 97px;
}
.basketTable__quantity input[type="text"],
.basketTable__quantity input[type="number"] {
  position: relative;
  float: left;
  z-index: 1;
  height: 48px;
  width: 48px;
  text-align: center;
  vertical-align: middle;
  padding: 12px 0;
}
.basketTable__quantity,
.basketTable__unitPrice,
.basketTable__total,
.basketTable__budgetCode {
  text-align: center;
}
.basketTable__quantity form,
.basketTable__unitPrice form,
.basketTable__total form,
.basketTable__budgetCode form {
  text-align: left;
}
.basketTable__unitPrice,
.basketTable__total {
  line-height: 48px;
}
.basketTable__total--summary {
  line-height: 1.2em;
}
.basketTable__description--head {
  text-align: left;
}
.basketTable__description--head span {
  display: none;
}
.basketTable__budgetCode--head,
.basketTable__quantity--head,
.basketTable__unitPrice--head,
.basketTable__total--head,
.basketTable__estdeliverydate--head,
.basketTable__specials--head {
  line-height: 1.2em;
}
th.basketTable__specials--head {
  width: 85px;
}
th.basketTable__budgetCode--head {
  white-space: normal;
}
.basketTable__deliveryGroup {
  background-color: #f2f2f2;
}
.basketTable__deliveryGroup tr:nth-child(odd) {
  background: #f2f2f2;
}
.basketTable__deliveryGroup tr:nth-child(even) {
  background: white;
}
.basketTable__deliveryGroup--inverse {
  background-color: white;
}
.basketTable__deliveryGroup--inverse tr:nth-child(even) {
  background: #f2f2f2;
}
.basketTable__deliveryGroup--inverse tr:nth-child(odd) {
  background: white;
}
.basketTable__deliveryGroup--summary td {
  font-size: 1rem;
}
.basketTable__deliveryGroupTitle {
  position: relative;
  padding: 20px 0 15px;
}
.basketTable__deliveryGroupInfo {
  color: red;
}
.basketTable__deliveryGroupIndicator {
  height: 100%;
  width: 2px;
  overflow: hidden;
  position: relative;
  padding: 10px 12px 10px 8px;
  font-size: 0;
}
.basketTable__deliveryGroupIndicator::before {
  content: '\f0d1';
  font-family: FontAwesome;
  font-size: 1rem;
  color: #f0182d;
  position: absolute;
  top: 19px;
  left: 0;
}
.basketTable__deliveryGroupIndicator span {
  position: absolute;
  display: block;
  height: 9999px;
}
.basketTable__deliveryGroupIndicator span::after {
  content: '';
  background: #f0182d;
  height: 100%;
  width: 2px;
  display: inline-block;
  margin-top: 28px;
}
.basketTable__deliveryGroupIndicator--promotional::before {
  content: '\f02c';
  color: red;
}
.basketTable__deliveryGroupIndicator--promotional span::after {
  background: red;
}
.basketTable__additionalServiceGroupTitle {
  position: relative;
  padding: 20px 0 15px;
}
.basketTable__additionalServiceGroupIndicator {
  height: 100%;
  width: 2px;
  overflow: hidden;
  position: relative;
  padding: 10px 12px 10px 8px;
  font-size: 0;
}
.basketTable__additionalServiceGroupIndicator::before {
  content: '\f468';
  font-family: FA_Light;
  font-size: 0.875rem;
  font-weight: 600;
  color: #313334;
  position: absolute;
  left: 0;
  top: 19px;
}
.basketTable__additionalServiceGroupIndicator span {
  position: absolute;
  display: block;
  height: 9999px;
}
.basketTable__additionalServiceGroupIndicator span::after {
  content: '';
  background: #313334;
  height: 100%;
  width: 2px;
  display: inline-block;
  margin-top: 28px;
}
.basketTable__additionalServiceIcon {
  height: 100%;
  width: 84px;
  float: left;
  padding-top: 15%;
}
.basketTable__additionalServiceIcon::before {
  content: '\f468';
  font-family: FA_Light;
  font-size: 0.875rem;
  font-weight: 600;
  color: #313334;
  position: absolute;
  left: 0;
  top: 19px;
}
.basketTable__quantityPricing {
  display: none;
  position: relative;
  padding: 0 10px 10px;
  color: #313334;
  min-height: 48px;
}
.basketTable__quantityPricing table {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.basketTable__quantityPricing td {
  padding: 8px 0 0;
  line-height: 1em;
}
.basketTable__quantityPricing td:first-child {
  padding-right: 15px;
}
.basketTable__quantityPricing td:last-child {
  text-align: right;
}
.basketTable__quantityPricing tr:nth-child(even),
.basketTable__quantityPricing tr:nth-child(odd) {
  background: transparent;
}
.basketTable__quantityPricing tr:last-child {
  font-weight: 600;
}
.basket__emptyMessage {
  margin: 3px 0 0 0;
  text-align: center;
  color: #d6d6d6;
}
.basket__emptyMessage::before {
  content: '\f119';
  margin: 0 25px 0 0;
  font-family: FontAwesome;
  font-size: 5rem;
  line-height: 1em;
  vertical-align: middle;
}
.basket__emptyMessage_neutral {
  margin: 3px 0 0 0;
  text-align: center;
  color: #d6d6d6;
}
.editSpecialName .editSpecialName__description {
  margin-top: 30px;
}
.editSpecialName .editSpecialName__description input {
  width: 95%;
  padding: 5px 9px;
  line-height: normal;
  height: 39px;
}
.editSpecialName .editSpecialName__footer {
  margin-top: 40px;
}
.summary {
  display: flex;
  background: transparent;
}
.summary .basketSummary {
  display: flex;
  flex-grow: 1;
  margin-right: 20px;
}
.summary .basketSummary section {
  flex-grow: 1;
  background: white;
  padding: 20px;
  border-radius: 4px;
  margin: 20px 0;
}
.summary .basketSummary section header h1 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1em;
  margin: 0 0 10px 0;
}
.summary .basketSummary section table {
  width: 100%;
}
.summary .basketSummary section table tr {
  background: transparent;
}
.summary .basketSummary section table tr th {
  background: transparent;
  text-align: left;
  font-weight: normal;
  padding: 5px 0;
}
.summary .basketSummary section table tbody td {
  padding: 5px 0;
}
.summary .basketSummary section table tfoot td {
  font-weight: 600;
  position: relative;
  padding: 13px 0 5px 0;
}
.summary .basketSummary section table tfoot td::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: #f2f2f2;
}
.summary .basketSummary section table tfoot td:first-child::before {
  border-radius: 2px 0 0 2px;
}
.summary .basketSummary section table tfoot td:last-child::before {
  border-radius: 0 2px 2px 0;
}
/***** RESPONSIVE STYLES *****/

@media (max-width: 1024px) {
  .basket__container {
    padding-right: 0;
  }
  .basket__column:first-of-type {
    float: none;
    padding-right: 0;
  }
  .basket__column:last-of-type {
    float: none;
    width: 100%;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .basketTable {
    table-layout: fixed;
  }
  .basketTable__description--head {
    font-size: 0;
    line-height: 0;
  }
  .basketTable__description--head span {
    font-size: 1rem;
    line-height: 1em;
    display: inline;
  }
  .basketTable__descriptionText {
    margin-right: 0;
    min-height: 77px;
  }
  .basketTable__quantity,
  .basketTable__unitPrice,
  .basketTable__total {
    display: none;
  }
  .basketTable__quantityPricing {
    display: block;
  }
  .basketTable__quantityPricing table {
    top: auto;
    bottom: 9px;
  }
  .basketTable__quantityPricing td {
    padding-top: 4px;
  }
  .basketTable__quantity--mobile {
    display: inline-block;
    padding: 0;
    width: auto;
    text-align: left;
  }
  .basketTable__quantity--mobile input[type="submit"] {
    display: block;
    margin-top: 8px;
    margin-left: 2px;
  }
  .basketTable__description--head {
    border-radius: 0 4px 4px 0;
  }
  .basketTable__description {
    border-radius: 4px;
  }
  .basketTable__asideInfo {
    clear: left;
    margin: 0 0 0 5px;
    padding-top: 10px;
  }
  .summary {
    flex-direction: column;
  }
  .summary .basketSummary {
    margin-right: 0;
  }
  .summary .basketSummary section {
    padding: 10px;
  }
}
#basket-changed-message {
  display: table;
  width: 100%;
}
#basket-changed-message div {
  display: table-cell;
  vertical-align: middle;
}
.basketEditedHightLight {
  background-color: #fff7be;
}
.basketTable--rowOverlayVisible td {
  position: relative;
}
.basketTable--rowOverlayVisible td::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  content: "";
  z-index: 999;
}
#Basket div.alert {
  margin-top: 0;
}
/* BEM notation: block__element--modifier */
.basketTotals {
  background: white;
  padding: 20px;
  border-radius: 4px;
  width: 320px;
}
.basketTotals--pinned {
  position: fixed;
  top: 15px;
  z-index: 1;
}
.basketTotals--fixed {
  position: absolute;
}
.basketTotals__header h1 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1em;
  margin: 0 0 10px;
}
.basketTotals__table {
  width: 100%;
}
.basketTotals__table tr {
  background: transparent;
}
.basketTotals__table td {
  padding-top: 5px;
  padding-bottom: 5px;
}
.basketTotals__table td:last-child {
  padding-right: 0;
  text-align: right;
}
.basketTotals__table td:first-child {
  padding-left: 0;
  text-align: left;
}
.basketTotals__tableFooter td {
  font-weight: 600;
  position: relative;
  padding-top: 13px;
}
.basketTotals__tableFooter td::before {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: #f2f2f2;
}
.basketTotals__tableFooter td:first-child::before {
  border-radius: 2px 0 0 2px;
}
.basketTotals__tableFooter td:last-child::before {
  border-radius: 0 2px 2px 0;
}
.basketTotals__tableDiscount {
  color: red;
}
.basketTotals__tableDelivery ul {
  margin: 5px 0 0;
  list-style: none;
}
.basketTotals__tableDelivery label {
  margin: 0;
  display: inline-block;
  font-weight: 500;
}
.basketTotals__coupon {
  margin: 15px 0 0;
}
.basketTotals__coupon input {
  width: 182px;
}
.basketTotals__coupon button {
  font-size: 0.8125rem;
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
  float: right;
  line-height: 16px;
}
.basketTotals__couponHeader {
  font-size: 0.8125rem;
  line-height: 1em;
  cursor: pointer;
  color: #336997;
  font-weight: 400;
}
.basketTotals__couponHeader::before {
  content: '\f147';
  font-family: FontAwesome;
  margin-right: 6px;
  display: inline-block;
}
.basketTotals__couponHeader.accordion__header--closed::before {
  content: '\f196';
}
.basketTotals__couponHeader::after {
  content: none;
}
.basketTotals__couponAlert {
  position: relative;
  margin: 7px 0;
  padding: 6px 0px 6px 8px;
  background: #fff7be;
  border: 2px solid #e2daa2;
  border-radius: 4px;
  color: #333333;
}
.basketTotals__couponAlert p {
  font-family: 'Arial';
  font-weight: 400;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 20px;
}
.basketTotals__couponAlert p span {
  font-family: 'Hind';
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
}
.basketTotals__proceed {
  width: 100%;
  margin: 15px 0 0;
  text-align: center;
}
.basketTotals__couponApplied {
  font-size: 0.8125rem;
  font-weight: 600;
}
.basketTotals__couponApplied span {
  font-weight: 400;
}
.basketTotals__couponApplied::before {
  color: #42ba13;
  content: '\f00c';
  font-family: FontAwesome;
  margin-right: 3px;
}
.basketTotals__ApprovalForm input[type="text"] {
  width: 100%;
}
.basketTotals__ApprovalForm label {
  font-weight: 600;
}
.basketTotals__btnGroup {
  margin: 10px 0 0;
}
.basketTotals__btnGroup button,
.basketTotals__btnGroup input[type="button"],
.basketTotals__btnGroup input[type="submit"],
.basketTotals__btnGroup a[role="button"] {
  float: left;
}
.basketTotals__approve,
.basketTotals__decline {
  width: 47.678571429%;
  margin-right: 4.642857143%;
}
.basketTotals__decline {
  margin: 0;
}
.basketTotals__saveBasketContainer {
  clear: both;
  padding-top: 10px;
}
.basketTotals__btn--saveBasket {
  width: 100%;
}
.basketTotals__btn--saveBasket span {
  font-family: FontAwesome;
  margin-right: 5px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .basketTotals--pinned,
  .basketTotals--fixed {
    position: static;
  }
  .basketTotals {
    float: right;
  }
}
@media screen and (max-width: 767px) {
  .basketTotals {
    width: 100%;
    padding: 10px;
  }
  .basketTotals--inverse {
    max-width: 280px;
  }
  .basketTotals__proceedContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 7;
    padding: 10px;
    background: white;
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.14);
  }
  .basketTotals__proceedContainer a:not([role="button"]) {
    margin: 0;
  }
  .basketTotals__proceed {
    margin-top: 0;
  }
  .basketTotals__ApprovalForm label {
    margin-top: 0;
  }
}
.basketTable__additionalServiceGroupContainer {
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 0px;
}
.basketTable__additionalServiceGroupContainer--flex {
  display: flex;
}
.basketTable__additionalServiceGroupContainer--inlineflex {
  display: -webkit-inline-box;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: inline-flex;
}
.basket__AdditionalService--btn {
  padding: 9px;
  width: 235px;
  height: 100px;
  margin-right: 0px;
  border-color: #d2d2d2;
  background-color: white;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .basket__AdditionalService--btn {
    width: 200px;
  }
}
@media screen and (max-width: 640px) {
  .basket__AdditionalService--btn {
    width: 220px;
  }
  .message--additionalServices {
    clear: both;
    font-size: 14px;
    margin: 5px 0 20px 0;
  }
}
.basket__AdditionalService--form {
  display: inline-block;
}
@media print {
  .basketTable__additionalServiceGroupTd {
    padding-left: 4px;
    padding-right: 4px;
  }
  .basket__AdditionalService--btn {
    width: 218px;
  }
}
.basket__AdditionalService--btn[disabled] {
  border-color: #d2d2d2;
}
.message--additionalServices {
  clear: both;
  font-size: 14px;
}
.basket__AdditionalService--masked {
  position: absolute;
  color: whitesmoke;
  opacity: 0.05;
  width: 235px;
}
.basket__AdditionalService--mask {
  z-index: 100;
}
.basket__AdditionalService--btn--selected {
  border-color: #008cd5;
}
.basket__AdditionalService--btn--disabled {
  pointer-events: none;
}
.basket__AdditionalService--icon {
  float: left;
  margin-right: 15px;
  height: 100%;
  padding-top: 15%;
}
.basket__AdditionalService__EconomyDelivery::before {
  content: '\f0d1';
  font-family: FA_Light;
  font-weight: 600;
  line-height: 25px;
  color: #313334;
}
.basket__AdditionalService__NextDayDelivery::before {
  content: '\f48b';
  font-family: FA_Light;
  font-weight: 600;
  line-height: 25px;
  color: #313334;
}
.basket__AdditionalService__EconomyDeliveryAndInstallation::before {
  content: '\f4de';
  font-family: FA_Light;
  font-weight: 600;
  line-height: 25px;
  color: #313334;
}
.basket__AdditionalService--box {
  color: #313334;
  font-family: Hind, helvetica, arial, sans-serif;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  text-align: left;
}
.basket__AdditionalServiceName {
  font-size: small;
  font-weight: bold;
}
.basket__AdditionalServiceNameUnavailable {
  font-size: small;
  font-weight: bold;
  color: red;
}
.basket__AdditionalServiceDescription {
  font-size: 12px;
  line-height: 13px;
}
.basket__AdditionalServicePrice {
  font-size: small;
  font-weight: bold;
  padding-top: 10px;
}
.basket__AdditionalServicePriceAppliedText {
  font-size: 11px;
  font-weight: bold;
  color: #2dd00b;
}
.basket__AdditionalServicePrice--tick {
  float: right;
}
.basket__AdditionalServicePrice--tick::before {
  content: '\f058';
  font-family: FA_Light;
  line-height: 17px;
}
.basket__AdditionalServicePrice--ticked::before {
  color: #2dd00b;
}
.basket__AdditionalServicePrice--unticked::before {
  color: #d2d2d2;
}
@media screen and (max-width: 767px) {
  div.basketTable__additionalServiceGroupContainer {
    display: block;
  }
  div.basketTable__additionalServiceGroupContainer button {
    width: 100%;
  }
  .basket__AdditionalService--icon {
    padding-top: 5%;
  }
}
/* BEM notation: block__element--modifier */

.checkoutControls {
  margin-bottom: 30px;
}
.checkoutControls--footer {
  margin-top: 30px;
}
.checkoutControl--viewBasket,
.checkoutControl--proceed {
  float: right;
  margin: 0;
}
/* csslint ignore:start */

.checkoutControls__primaryBlock {
  float: right;
}
.checkoutControls__primaryBlock button,
.checkoutControls__primaryBlock [role=button],
.checkoutControls__primaryBlock a {
  margin: 0 0 0 13px;
}
.checkoutControls__primaryBlock span {
  line-height: 38px;
  font-size: 0.8125rem;
}
/* csslint ignore:end */

.checkout__agreement {
  display: block;
  text-align: right;
}
.checkout__agreement a {
  display: inline-block;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .checkoutControls {
    margin-bottom: 20px;
  }
  .checkoutControl--print,
  .basket .checkoutControl--proceed,
  .checkoutControl--viewBasket {
    display: none;
  }
  /* csslint ignore:start */
  
  .checkoutControls__primaryBlock {
    float: none;
  }
  .checkoutControls__primaryBlock button,
  .checkoutControls__primaryBlock [role=button],
  .checkoutControls__primaryBlock a {
    margin: 0 0 10px;
    width: 100%;
    text-align: center;
  }
  .checkoutControls__primaryBlock span {
    display: block;
    text-align: center;
  }
  /* csslint ignore:end */
  
  .checkoutControls--thankYou {
    margin-bottom: 0;
  }
  .checkoutControls--thankYou button,
  .checkoutControls--thankYou a[role=button] {
    margin-top: 10px;
  }
  .checkoutControls--thankYou button:first-child,
  .checkoutControls--thankYou a[role=button]:first-child {
    margin-top: 0;
  }
  .checkoutControls--footerThankYou {
    margin-bottom: 10px;
  }
  .checkoutControls--footerThankYou button,
  .checkoutControls--footerThankYou a[role=button] {
    float: none;
    margin-bottom: 10px;
  }
}
/* BEM notation: block__element--modifier */
.stepsIndication {
  float: right;
  margin: 24px 0 0 -200px;
}
.stepsIndication__text {
  margin-right: 20px;
}
.stepsIndication__steps {
  display: inline-block;
  width: 40px;
}
.stepsIndication__steps--disabled span {
  border-color: #cccccc;
}
.stepsIndication__steps--disabled span:first-child {
  border-color: #e6e6e6;
}
.stepsIndication__steps--disabled span:nth-child(2) {
  border-color: #dfdfdf;
}
.stepsIndication__steps--disabled span:nth-child(3) {
  border-color: #d7d7d7;
}
.stepsIndication__step {
  display: inline-block;
  height: 30px;
  width: 30px;
  border: 3px solid #313334;
  border-radius: 15px;
  text-align: center;
  line-height: 26px;
  margin-left: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #f2f2f2;
  box-shadow: 0 0 0 2px #f2f2f2;
}
.stepsIndication__ghostStep {
  margin-right: -52px;
  border-color: #adadad;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .stepsIndication {
    margin-top: 20px;
    margin-left: -80px;
  }
  .stepsIndication__text {
    display: block;
    text-align: right;
    margin: 0 0 5px;
    font-size: 0.875rem;
  }
  .stepsIndication__steps {
    float: right;
    margin-right: -5px;
  }
}
/* BEM notation: block__element--modifier */

.multipleBaskets__updateForm {
  border-bottom: 2px solid #ececed;
  padding-bottom: 23px;
  margin-bottom: 30px;
}
.multipleBaskets__updateForm label {
  margin-top: 0;
}
.multipleBaskets__updateForm strong {
  font-size: 1rem;
}
.multipleBaskets__updateForm fieldset {
  display: inline-block;
  margin-right: 18px;
}
.multipleBaskets__updateForm fieldset:last-child {
  margin-right: 0;
}
.multipleBaskets__updateForm .alert {
  padding-top: 15px;
  padding-bottom: 15px;
}
.multipleBaskets__updateFormActions {
  float: right;
}
.multipleBaskets__updateFormActions button,
.multipleBaskets__updateFormActions a[role="button"] {
  margin: 0 5px 0 0;
}
.multipleBaskets__updateFormActions button:last-child,
.multipleBaskets__updateFormActions a[role="button"]:last-child {
  margin-right: 0;
}
.multipleBaskets__tableStatus {
  width: 105px;
}
.multipleBaskets__tableFilters {
  float: right;
}
.multipleBaskets__tableFilter {
  margin: 0 0 20px 20px;
  display: inline-block;
}
.multipleBaskets__tableFilter label {
  display: inline-block;
  margin: 0 10px 0 0;
  font-weight: 600;
}
.multipleBaskets__tableFilter--perPage select {
  width: 70px;
}
.multipleBaskets__tableFilter--costCentre select,
.multipleBaskets__tableFilter--status select {
  width: 165px;
}
.multipleBaskets__manage {
  width: 100%;
}
.multipleBaskets__manage td {
  vertical-align: middle;
  line-height: 1.2em;
}
.multipleBaskets__status {
  display: inline-block;
}
.multipleBaskets__status::before {
  font-family: FontAwesome;
  margin-right: 5px;
}
.multipleBaskets__status--pending::before {
  content: '\f017';
}
.multipleBaskets__status--rejected {
  color: #d40000;
}
.multipleBaskets__status--rejected::before {
  content: '\f05c';
}
.multipleBaskets__tableActions {
  width: 206px;
}
.multipleBaskets__tableActions a[role="button"]:last-child,
.multipleBaskets__tableActions button:last-child {
  margin-right: 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .multipleBaskets__tableComments {
    display: none;
  }
  .multipleBaskets__updateForm select,
  .multipleBaskets__updateForm input {
    width: 200px;
  }
  .multipleBaskets__tableFilter--costCentre select,
  .multipleBaskets__tableFilter--status select {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .multipleBaskets__updateForm fieldset {
    margin-top: 20px;
  }
  .multipleBaskets__updateForm fieldset:first-child {
    margin-top: 0;
  }
  .multipleBaskets__updateFormActions {
    float: none;
  }
  .multipleBaskets__manage {
    font-size: 0.9375rem;
  }
  .multipleBaskets__manage th,
  .multipleBaskets__manage td {
    padding: 9px;
  }
  .multipleBaskets__manage th:first-child,
  .multipleBaskets__manage td:first-child {
    padding-right: 0;
  }
  .multipleBaskets__manage th:last-child,
  .multipleBaskets__manage td:last-child {
    padding-left: 0;
  }
  .multipleBaskets__manage th span {
    display: none;
  }
  .tab__panel--manageBaskets {
    padding: 10px;
  }
  .multipleBaskets__tableStatus {
    width: 14px;
  }
  .multipleBaskets__tableUpdated,
  .multipleBaskets__tableComments,
  .multipleBaskets__tableTotal,
  .multipleBaskets__tableCostCentre {
    display: none;
  }
  .multipleBaskets__status {
    font-size: 0;
    line-height: 1em;
  }
  .multipleBaskets__status::before {
    font-size: 1rem;
  }
  .multipleBaskets__tableName {
    padding: 9px 0;
  }
  .multipleBaskets__tableActions {
    width: 57px;
  }
  .multipleBaskets__basketDelete,
  .multipleBaskets__basketLoad,
  .multipleBaskets__basketView {
    font-size: 0;
    padding: 0;
    margin: 10px 0 0;
  }
  .multipleBaskets__basketDelete::before,
  .multipleBaskets__basketLoad::before,
  .multipleBaskets__basketView::before {
    font-family: FontAweSome;
    font-size: 1rem;
    line-height: 20px;
    padding: 7.5px;
    min-width: 35px;
    display: block;
  }
  .multipleBaskets__status::before {
    margin: 0;
  }
  .multipleBaskets__basketDelete::before {
    content: '\f00d';
  }
  .multipleBaskets__basketLoad,
  .multipleBaskets__basketView {
    margin: 0;
  }
  .multipleBaskets__basketLoad::before,
  .multipleBaskets__basketView::before {
    content: '\f0ec';
  }
  .multipleBaskets__basketView::before {
    content: '\f06e';
  }
  .multipleBaskets__tableFilters {
    float: none;
  }
  .multipleBaskets__tableFilter {
    display: block;
    margin: 0 18px 10px 0;
    float: left;
  }
  .multipleBaskets__tableFilter label {
    display: block;
    margin-bottom: 6px;
  }
  .multipleBaskets__tableFilter select {
    width: 216px;
  }
  .multipleBaskets__tableFilter:last-child {
    margin-right: 0;
  }
}
/* BEM notation: block__element--modifier */
.checkoutPanels {
  font-size: 0;
  position: relative;
}
.checkoutPanels--invoice,
.checkoutPanels--statement {
  margin-top: 20px;
}
.checkoutPanels--query {
  margin: 20px 0;
}
.checkoutPanels--invoiceFooter {
  margin-top: 20px;
  text-align: center;
}
.checkoutPanels--invoiceFooter p {
  font-size: 0.75rem;
  margin: 0 0.5em;
  line-height: 1.2em;
}
.checkoutPanels--invoiceFooter div {
  margin-bottom: 15px;
}
.checkoutPanels__column {
  margin-right: 1.666666667%;
  width: 49.166666667%;
  display: inline-block;
  font-size: 1rem;
  vertical-align: top;
}
.checkoutPanels__column:nth-of-type(2n) {
  margin-right: 0;
}
.checkoutPanels__column section {
  margin-bottom: 34px;
}
.checkoutPanels__column--small {
  width: 39%;
}
.checkoutPanels__column--large {
  width: 59.33333333%;
}
.checkoutPanels__column--singleSmall {
  max-width: 320px;
}
.checkoutPanels__column--singleLarge {
  max-width: 768px;
}
.checkoutPanels__column--third {
  width: 32.222222222%;
  margin-right: 1.666666667%;
}
.checkoutPanels__column--third:nth-of-type(2n) {
  margin-right: 1.666666667%;
}
.checkoutPanels__column--third:nth-of-type(3n) {
  margin-right: 0;
}
.checkoutPanels__column--twoThirds {
  width: 66.111111111%;
  margin-right: 1.666666667%;
}
.checkoutPanels__column--twoThirds:last-child {
  margin-right: 0;
}
.checkoutPanels__column--lastThird {
  width: 32.222222222%;
  margin-right: 0px;
}
.checkoutPanels__column--full {
  width: 100%;
  margin-right: 0;
}
.checkoutPanels__column--auto {
  width: auto;
}
.checkoutPanels__column--half {
  width: 49%;
  margin-right: 2%;
}
.checkoutPanels__column--half:last-child {
  margin-right: 0;
}
.checkoutPanels__column--register {
  width: 61.5%;
  position: absolute;
  right: 0;
}
.checkoutPanel {
  margin-bottom: 20px;
}
.checkoutPanel h1 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.checkoutPanel__title strong {
  color: #336997;
}
.checkoutPanel__title::before {
  font-family: FontAwesome;
  margin-right: 10px;
}
.checkoutPanel__title--creditCard::before {
  content: '\f09d';
}
.checkoutPanel__title--address::before {
  content: '\f015';
}
.checkoutPanel__title--info::before {
  content: '\f05a';
}
.checkoutPanel__title--delivery::before {
  content: '\f0d1';
}
.checkoutPanel__title--thanks::before {
  content: '\f118';
}
.checkoutPanel__title--feedback::before {
  content: '\f0e6';
}
.checkoutPanel__title--legal::before {
  content: '\f0e3';
}
.checkoutPanel__title--secure::before {
  content: '\f023';
}
.checkoutPanel__title--register::before {
  content: '\f040';
}
.checkoutPanel__title--list::before {
  content: '\f03a';
}
.checkoutPanel__title--document::before {
  content: '\f016';
}
.checkoutPanel__title--rewards::before {
  content: '\f091';
}
.checkoutPanel__title--company::before {
  content: '\f0f7';
}
.checkoutPanel__title--person::before {
  content: '\f2c0';
}
.checkoutPanel__title--printer::before {
  content: '\f02f';
}
.checkoutPanel__title--email::before {
  content: '\f0e0';
}
.checkoutPanel__title--chat::before {
  content: '\f086';
}
.checkoutPanel__title--phone::before {
  content: '\f095';
}
.checkoutPanel__title--monitor::before {
  content: '\f108';
}
.checkoutPanel__title--invalid::before {
  content: '\f071';
}
.checkoutPanel__title--bank::before {
  content: '\f19c';
}
.checkoutPanel__subtitle {
  margin: 29px 0 11px;
  font-size: 1.125rem;
  font-weight: 600;
}
.checkoutPanel__infoText {
  line-height: 1.2em;
}
.checkoutPanel__body {
  position: relative;
  background: white;
  border-radius: 4px;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.2em;
}
.checkoutPanel__body h2 {
  margin: 1em 0 0.5em;
  font-size: 1em;
}
.checkoutPanel__body h2:first-child {
  margin-top: 0;
}
.checkoutPanel__body p {
  margin: 0 0 0.5em;
}
.checkoutPanel__body p:last-of-type {
  margin-bottom: 0;
}
.checkoutPanel__body li {
  line-height: 1.2em;
  margin-bottom: 0.7em;
}
.checkoutPanel__body address {
  font-style: normal;
  line-height: 1.2em;
  word-wrap: break-word;
}
.checkoutPanel__body form {
  margin-top: 26px;
}
.checkoutPanel__body form:first-child {
  margin-top: 0;
}
.checkoutPanel__body dl {
  margin: 8px 0 0;
  padding: 18px 0 0 145px;
  border-top: 2px solid #f2f2f2;
}
.checkoutPanel__body dl:first-child {
  border-top: none;
  margin-top: 4px;
  padding-top: 0;
}
.checkoutPanel__body dt {
  float: left;
  width: 145px;
  margin: 0 0 12px -145px;
  line-height: 1.1em;
  clear: left;
}
.checkoutPanel__body dd {
  float: left;
  margin-left: 0;
  font-weight: 600;
  line-height: 1.1em;
  /* csslint ignore:start */
  word-break: break-word;
  /* csslint ignore:end */

}
.checkoutPanel__body .challengeFrame {
  display: block;
  margin: auto;
  border: none;
  min-height: 300px;
}
.checkoutPanel__body--statement {
  box-shadow: 0 6px 0 #b32025;
}
.checkoutPanel__body--details {
  box-shadow: 0 6px 0 #9100c1;
}
.checkoutPanel__body--details address {
  margin-bottom: 22px;
  font-weight: 600;
  line-height: 1.4em;
}
.checkoutPanel__body--rewards {
  box-shadow: 0 6px 0 #00bfc1;
}
.checkoutPanel__body--queries {
  box-shadow: 0 6px 0 #00c176;
}
.checkoutPanel__body--orders {
  box-shadow: 0 6px 0 #0076c1;
}
.checkoutPanel__body--callUs {
  box-shadow: 0 6px 0 #ff8a00;
}
.checkoutPanel__body--leaveFeedback {
  box-shadow: 0 6px 0 #fabe28;
}
.checkoutPanel__body--writeToUs {
  box-shadow: 0 6px 0 #88c100;
}
.checkoutPanel__body--emailUs {
  box-shadow: 0 6px 0 #00c176;
}
.checkoutPanel__body--emailUs form {
  margin-top: 0;
}
.checkoutPanel__body--addAddress {
  padding: 0;
}
.checkoutPanel__body--serverError {
  background: #f2f2f2;
}
.checkoutPanel__body--register {
  background: #e6e6e6;
  font-size: 0;
}
.checkoutPanel__body--register a {
  margin-right: 2.865329513%;
  width: 48.567335244%;
  font-size: 1rem;
  vertical-align: top;
}
.checkoutPanel__body--register a:last-child {
  margin: 0;
}
.signIn__register {
  display: table;
  float: left;
}
.signIn__register span {
  display: table-cell;
  vertical-align: middle;
}
.checkoutPanel__body--savedPrinters table {
  margin-top: 0;
}
.checkoutPanel__orderId {
  font-size: 1.25rem;
  color: #f0182d;
  font-weight: 500;
}
.checkoutPanel__thankYouText {
  padding-right: 163px;
}
.checkoutPanel__trackLink {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}
.checkoutPanel__trackLink::before {
  content: '\f0d1';
  font-family: FontAwesome;
  margin-right: 6px;
}
.checkoutPanel__smallprint p,
.checkoutPanel__smallprint ul,
.checkoutPanel__smallprint li,
.checkoutPanel__smallprint address {
  font-size: 0.8125rem;
}
.checkoutPanel__body--creditCard {
  padding: 0 0 40px;
  background: #fbfbfb;
}
.checkoutPanel__tools {
  position: absolute;
  top: 20px;
  right: 20px;
}
.checkoutPanel__tools button,
.checkoutPanel__tools a[role="button"] {
  min-width: inherit;
  margin-right: 0;
  margin-left: 2px;
}
.checkoutPanel__statement {
  vertical-align: top;
}
.checkoutPanel__statement--download::before {
  content: "\f019";
}
.checkoutPanel__statement--view::before {
  content: "\f0f6";
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .checkoutPanels__column--small {
    width: 45%;
  }
  .checkoutPanels__column--large {
    width: 53.33333333%;
  }
  .checkoutPanels__column--third,
  .checkoutPanels__column--twoThirds {
    width: 49.166666667%;
  }
  .checkoutPanels__column--third:nth-of-type(3n),
  .checkoutPanels__column--twoThirds:nth-of-type(3n) {
    margin-right: 1.666666667%;
  }
  .checkoutPanels__column--third:nth-of-type(2n),
  .checkoutPanels__column--twoThirds:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .checkoutPanel h1 {
    margin-bottom: 16px;
    font-size: 1rem;
  }
  .checkoutPanels__column {
    width: 100%;
    margin: 0;
  }
  .checkoutPanel__body {
    padding: 10px;
  }
  .checkoutPanel__body--creditCard,
  .checkoutPanel__body--addAddress {
    padding: 0;
  }
  .checkoutPanel__body--purchaseInfo input,
  .checkoutPanel__body--selectDelivery input,
  .checkoutPanel__body--purchaseInfo select,
  .checkoutPanel__body--selectDelivery select,
  .checkoutPanel__body--purchaseInfo textarea,
  .checkoutPanel__body--selectDelivery textarea {
    width: 100%;
    max-width: 280px;
  }
  .checkoutPanel__thankYouText {
    padding: 0;
  }
  .checkoutPanel__trackLink {
    display: block;
    position: static;
    margin: 15px 0 0;
    text-align: center;
  }
  .checkoutPanel__tools {
    display: none;
  }
}
/* BEM notation: block__element--modifier */

.addressDetails__orDivide {
  text-align: center;
  margin: 20px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.addressDetails__orDivide span {
  padding: 0 10px;
  position: relative;
  z-index: 1;
  background: white;
  font-size: 1rem;
  line-height: 1em;
}
.addressDetails__orDivide::before {
  content: '';
  display: block;
  height: 2px;
  background: #f2f2f2;
  position: absolute;
  top: 8px;
  width: 100%;
  z-index: 0;
}
.addressDetails__orDivide--companySelect span {
  background: #fbfbfb;
}
/* BEM notation: block__element--modifier */

/***** SIGN IN PAGE *****/

.signIn__button {
  width: 100%;
  margin: 0;
}
.signIn__button::before {
  content: '\f023';
  font-family: FontAwesome;
  margin-right: 6px;
}
.signIn__forgotPassword {
  display: inline-block;
  margin: 20px 0 0;
}
.signIn__register {
  position: relative;
  padding: 50px 30px 50px 120px;
  text-align: center;
  line-height: 1.6em;
}
.signIn__register::before {
  font-family: FontAwesome;
  font-size: 5rem;
  line-height: 80px;
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -40px;
}
.signIn__register--personal::before {
  content: '\f2c0';
}
.signIn__register--business::before {
  content: '\f0f7';
}
.grecaptcha-badge {
  z-index: 500;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .checkoutPanels__column--register {
    width: 50%;
  }
  .checkoutPanels__column--register a {
    width: 100%;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .checkoutPanels__column--register {
    position: static;
    width: 100%;
  }
  .checkoutPanels__column--register a {
    width: 100%;
    margin: 0 0 20px;
  }
}
/* BEM notation: block__element--modifier */

/* csslint ignore:start */

.addAddress__postcode,
.addAddress__companyName,
.addAddress__phone {
  width: 197px;
  margin-right: 7px;
}
.addAddress__postcode + button,
.addAddress__companyName + button,
.addAddress__phone + button,
.addAddress__postcode + [role="button"],
.addAddress__companyName + [role="button"],
.addAddress__phone + [role="button"],
.addAddress__postcode + [type="button"],
.addAddress__companyName + [type="button"],
.addAddress__phone + [type="button"],
.addAddress__postcode + [type="submit"],
.addAddress__companyName + [type="submit"],
.addAddress__phone + [type="submit"] {
  margin-right: 0;
}
/* csslint ignore:end */

.addAddress__extension {
  width: 72px;
  margin: 0;
}
.addAddress__fieldset--padding {
  padding: 20px;
}
.addAddress__fieldset--paddingThin {
  padding: 20px 10px;
}
.addAddress__search {
  margin: 0;
}
.addAddress__add {
  margin-top: 20px;
}
.addAddress__addressResults {
  display: none;
  width: 100%;
  overflow-y: scroll;
  height: 250px;
  background: white;
  margin-top: 10px;
  padding: 7px;
}
.addAddress__addressResults table {
  width: 100%;
}
.addAddress__addressResults td {
  vertical-align: middle;
}
.addAddress__addressResults td:last-child {
  text-align: right;
}
.addAddress__addressResults button {
  margin: 0;
}
.addAddress__addressResults--success {
  display: block;
}
.addAddress__addressFields {
  display: none;
}
.addAddress__addressFields--populated {
  display: block;
}
.addAddress__phoneBlock span {
  display: inline-block;
}
.addAddress__legend {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 20px 20px 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .addAddress__fieldset--padding {
    padding: 10px 4px 10px 10px;
  }
}
/* BEM notation: block__element--modifier */
.detailsLists__column {
  float: left;
  margin-left: 2%;
  width: 49%;
}
.detailsLists__column:first-child {
  margin-left: 0;
}
.detailsList__accountName {
  text-transform: uppercase;
}
.detailsList__commsPreferences {
  margin: 0;
  padding-left: 20px;
  list-style-position: outside;
  display: block;
}
.detailsList__rewardsPoints {
  margin: -8px 0 0;
  font-size: 1.875rem;
}
.detailsLists--editMode {
  display: none;
}
.detailsLists__fieldset {
  margin-bottom: 30px;
}
.detailsLists__fieldset + fieldset {
  margin-top: 30px;
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 2px solid #f2f2f2;
}
.detailsLists__fieldset p {
  line-height: 1.2em;
}
.detailsLists__fieldset h2 {
  margin-top: 10px;
}
.detailsLists__fieldset--empty + fieldset {
  margin-top: 18px;
}
.detailsList__link {
  display: block;
  margin-top: 0;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.5em;
}
.detailsList__link::before {
  font-family: FontAwesome;
  margin-right: 6px;
}
.detailsList__link--newAccount::before {
  content: '\f234';
}
.detailsList__link--approvals::before {
  content: '\f046';
}
.detailsList__link--costCentres::before {
  content: '\f0e8';
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) {
  .detailsLists__column {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
/* BEM notation: block__element--modifier */

/***** COOKIE BAR *****/

.feedbackPopup {
  background-color: white;
  border-radius: 4px;
  width: 750px;
  left: 50%;
  margin-left: -375px;
  padding: 20px;
  position: absolute;
  z-index: 10;
  display: none;
}
.feedbackPopup .modal-header {
  font-size: 1.625rem;
  font-weight: 600;
}
.feedbackPopup .panel1 {
  background: #ececed;
  border-radius: 4px;
  padding: 20px;
  margin-top: 20px;
}
.feedbackPopup .label,
.feedbackPopup .feedback-button-heading {
  margin: 0 0 10px;
  line-height: 1em;
  display: block;
}
.feedbackPopup textarea {
  width: 100%;
  height: 150px;
}
.feedbackPopup input {
  width: 100%;
}
.feedbackPopup .row-fluid {
  margin-bottom: 20px;
}
.feedbackPopup .span6 {
  width: 48.538011696%;
  margin-right: 2.923976608%;
  float: left;
}
.feedbackPopup .span6:last-child {
  margin: 0;
}
.feedbackPopup .submit-feedback-wrapper button {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
.feedbackPopup .feeback-buttons {
  margin-bottom: 20px;
}
.feedbackPopup .very-dissatisfied {
  background: red;
}
.feedbackPopup .very-dissatisfied::before {
  content: '\f119';
}
.feedbackPopup .dissatisfied {
  background: #ff7200;
}
.feedbackPopup .dissatisfied::before {
  content: '\f119';
}
.feedbackPopup .neutral {
  background: #ffae00;
}
.feedbackPopup .neutral::before {
  content: '\f11a';
}
.feedbackPopup .satisfied {
  background: #92d32c;
}
.feedbackPopup .satisfied::before {
  content: '\f118';
}
.feedbackPopup .very-satisfied {
  background: #57b947;
}
.feedbackPopup .very-satisfied::before {
  content: '\f118';
}
.feedbackPopup .thankyou-footer p {
  margin-top: 0;
  margin-bottom: 0;
}
.feedbackPopup--open {
  display: block;
}
.feedbackPopup__close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  font-size: 0;
  line-height: 20px;
  padding: 15px;
  height: 20px;
  box-sizing: content-box;
}
.feedbackPopup__close::before {
  content: 'Close';
  font-size: 0.8125rem;
  margin-right: 6px;
  vertical-align: top;
  margin-top: 1px;
  display: inline-block;
}
.feedbackPopup__close::after {
  content: '\f00d';
  font-family: FontAwesome;
  font-size: 1.25rem;
  color: #f0182d;
}
.feedbackPopup__close:hover {
  opacity: 0.7;
}
.feedbackface {
  width: 18.837209302%;
  margin-right: 1.453488372%;
  float: left;
  border-radius: 4px;
  color: white;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}
.feedbackface p {
  margin: 0;
  font-size: 0.875rem;
}
.feedbackface:last-of-type {
  margin: 0;
}
.feedbackface::before {
  font-size: 2.8125rem;
  line-height: 45px;
  display: block;
  font-family: FontAwesome;
}
.feedbackface:hover {
  box-shadow: 0 0 0 2px #f0182d;
}
.feedbackface--inactive {
  opacity: 0.15;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .feedbackPopup {
    width: 314px;
    top: 5%;
    left: 50%;
    margin-left: -157px;
    padding: 10px;
  }
  .feedbackPopup .close {
    padding: 8px 10px;
  }
  .feedbackPopup .modal-header {
    font-size: 1.125rem;
  }
  .feedbackPopup .sub-heading {
    line-height: 1.2em;
    top: 40px;
  }
  .feedbackPopup .panel1 {
    padding: 10px;
  }
  .feedbackPopup .feedbackface {
    width: 100%;
    margin: 0 0 10px;
    padding: 10px;
  }
  .feedbackPopup .feedbackface::before {
    content: none;
  }
  .feedbackPopup .span6 {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* BEM notation: block__element--modifier */

/***** COOKIE BAR *****/

.inkTonerFinder {
  background-color: white;
  border-radius: 4px;
  width: 750px;
  left: 50%;
  top: 15%;
  margin-left: -375px;
  padding: 20px;
  position: absolute;
  z-index: 11;
  display: none;
}
.inkTonerFinder h4 {
  font-size: 0.9375rem;
  line-height: 1.2em;
  font-weight: 500;
}
.inkTonerFinder .modal-header {
  margin-bottom: 40px;
}
.inkTonerFinder .modal-footer {
  clear: left;
  padding-top: 20px;
}
.inkTonerFinder__close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  font-size: 0;
  line-height: 20px;
  padding: 15px;
  height: 20px;
  box-sizing: content-box;
}
.inkTonerFinder__close::before {
  content: 'Close';
  font-size: 0.8125rem;
  margin-right: 6px;
  vertical-align: top;
  margin-top: 1px;
  display: inline-block;
}
.inkTonerFinder__close::after {
  content: '\f00d';
  font-family: FontAwesome;
  font-size: 1.25rem;
  color: #f0182d;
}
.inkTonerFinder__close:hover {
  opacity: 0.7;
}
.inkTonerFinder--open {
  display: block;
}
.inkTonerFinder__titleImage {
  width: 200px;
}
.inkTonerFinder__hide {
  display: none;
}
.widgetContent--home .span4,
.widgetContent--home .span6 {
  position: relative;
  margin-right: 2.816901408%;
  float: left;
}
.widgetContent--home .span4:last-child,
.widgetContent--home .span6:last-child {
  margin-right: 0;
}
.widgetContent--home .span4 {
  width: 31.455399061%;
}
.widgetContent--home .span6 {
  width: 48.591549296%;
}
.widgetContent--cartridgeSearch label {
  margin-bottom: 15px;
}
.widgetContent--cartridgeSearch label strong {
  text-transform: uppercase;
}
.widgetContent--cartridgeSearch input {
  width: 100%;
  margin-bottom: 10px;
}
.widgetContent--cartridgeSearch .span4 strong::before {
  content: '\f002';
  font-family: FontAwesome;
  margin-right: 6px;
}
.widgetContent--cartridgeSearch [role=listbox] {
  /* csslint ignore:start */
  border: 2px solid #cccccc;
  border-radius: 4px;
  padding: 9px;
  height: 150px;
  overflow-y: auto;
  /* csslint ignore:end */

}
.widgetContent--cartridgeSearch [role=listbox] ul {
  list-style: none;
  margin: 0;
}
.widgetContent--cartridgeSearch [role=listbox] a {
  display: block;
  font-size: 0.9375rem;
  line-height: 1em;
  color: #313334;
  cursor: pointer;
  padding: 3px 5px;
  border-radius: 4px;
}
.widgetContent--cartridgeSearch [role=listbox] a:hover {
  background: #336997;
  color: white;
  text-decoration: none;
}
.widgetContent--cartridgeSearch .toner-label {
  margin: 20px 0 10px;
}
.inkTonerFinder__cartridges > .row-fluid {
  width: 48.591549296%;
  margin-right: 2.816901408%;
  float: left;
}
.inkTonerFinder__cartridges > .row-fluid:nth-of-type(2n) {
  margin-right: 0;
}
.inkTonerFinder__cartridges > .row-fluid h4 {
  margin-top: 46px;
}
.inkTonerFinder__cartridges label {
  margin-bottom: -5px;
}
.inkTonerFinder__cartridges label strong::before {
  content: '\f043';
  font-family: FontAwesome;
  margin-right: 6px;
}
.inkTonerFinder__carouselContainer {
  position: relative;
}
.inkTonerFinder__carousel {
  margin: 0 40px;
  padding: 20px;
  height: 69px;
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: content-box;
  position: relative;
}
.inkTonerFinder__carousel .img {
  margin: 0 10px 0 0;
  height: 51px;
  width: 125px;
  display: inline-block;
  padding: 7px 3px;
  /* csslint ignore:start */
  background-color: white !important;
  /* csslint ignore:end */
  border: 2px solid white;
  border-radius: 4px;
  box-sizing: content-box;
  transition: border-color 0.3s ease;
  cursor: pointer;
}
.inkTonerFinder__carousel .img:last-child {
  margin-right: 0;
}
.inkTonerFinder__carousel .img:hover {
  border-color: #f0182d;
}
.inkTonerFinder__carousel::before,
.inkTonerFinder__carousel::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 69px;
  background: #f2f2f2;
  top: 20px;
}
.inkTonerFinder__carousel::before {
  left: 0;
  z-index: 1;
}
.inkTonerFinder__carousel::after {
  right: 0;
}
.inkTonerFinder__carouselBreadcrumbs {
  width: 100%;
  margin-top: 30px;
  border-radius: 4px;
}
.inkTonerFinder__carouselBreadcrumbs .prefix {
  display: block;
  text-align: center;
  font-size: 13px;
  line-height: 1em;
  height: 13px;
  margin-bottom: 5px;
}
.inkTonerFinder__carouselBreadcrumbs .breadcrumb-active a {
  color: #f0182d;
  font-weight: 600;
}
.inkTonerFinder__carouselBreadcrumbs span:not(.breadcrumb-active) a {
  cursor: default;
}
.inkTonerFinder__carouselBreadcrumbs span:not(.breadcrumb-active) a:hover,
.inkTonerFinder__carouselBreadcrumbs span:not(.breadcrumb-active) a:focus {
  color: #313334;
}
.inkTonerFinder__carouselBreadcrumbs a {
  display: block;
  background: #f2f2f2;
  position: relative;
  color: #313334;
  padding: 13px;
  font-weight: 500;
  text-align: center;
}
.inkTonerFinder__carouselBreadcrumbs a:hover,
.inkTonerFinder__carouselBreadcrumbs a:focus {
  color: #f0182d;
  text-decoration: none;
}
.inkTonerFinder__carouselBreadcrumbs a::after {
  position: absolute;
  right: -2px;
  content: '\f105';
  font-family: FontAwesome;
  color: #313334;
  z-index: 1;
}
.inkTonerFinder__carouselBreadcrumbs .span4 {
  width: 33.333333333%;
  float: left;
}
.inkTonerFinder__carouselBreadcrumbs .span4:last-child a::after {
  content: none;
}
.inkTonerFinder__backButton {
  float: left;
}
.inkTonerFinder__showLink {
  float: right;
  line-height: 38px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .inkTonerFinder {
    width: 314px;
    top: 5%;
    left: 50%;
    margin-left: -157px;
    padding: 10px;
  }
  .widgetContent--home .span4 {
    width: 100%;
    margin: 0 0 10px;
  }
  .widgetContent--home .span4:last-child {
    margin: 0;
  }
  .inkTonerFinder__cartridges > .row-fluid {
    width: 100%;
    float: none;
    margin: 0;
  }
}
/* BEM notation: block__element--modifier */

.glimpse-nowrap {
  z-index: 999;
}
div.glimpse table td {
  vertical-align: bottom;
}
div.glimpse table tr {
  background: #3c454f;
}
/* BEM notation: block__element--modifier */

.contactUs__callUs p {
  line-height: 1.2em;
}
.contactUs__openingHours {
  margin-bottom: 20px;
}
.contactUs__telephone {
  font-size: 2.625rem;
  line-height: 1em;
  margin: 0;
}
.contactUs__leaveFeedback {
  display: block;
  position: relative;
  border: 2px solid transparent;
  color: #313334;
  padding: 18px 75px 18px 18px;
}
.contactUs__leaveFeedback::after {
  content: '\f08e';
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  line-height: 1em;
  margin: 18px;
  letter-spacing: -2px;
}
.contactUs__leaveFeedback:hover {
  border-color: #f0182d;
  text-decoration: none;
}
.contactUs__leaveFeedback:visited {
  color: #313334;
}
.contactUs__emailOptions {
  margin-top: 30px;
}
/* BEM notation: block__element--modifier */

.helpPage__header h1 {
  margin-bottom: 14px;
}
.helpPage__article {
  margin-left: 340px;
}
.helpPage__article h1 {
  font-size: 1.25rem;
}
.helpPage__article h2 {
  font-size: 1.125rem;
}
.helpPage__article h3 {
  font-size: 1rem;
}
.helpPage__article h1,
.helpPage__article h2,
.helpPage__article h3 {
  margin: 1em 0 0.7em;
}
.helpPage__article h1:first-child,
.helpPage__article h2:first-child,
.helpPage__article h3:first-child {
  margin-top: 0;
}
.helpPage__article tr {
  background: transparent;
}
.helpPage__article td {
  padding: 10px;
}
.helpPage__article ul {
  padding-left: 1em;
  list-style-position: outside;
}
@media screen and (max-width: 1023px) {
  .helpPage__article {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .helpPage__article td {
    padding: 10px 0;
  }
}
/* BEM notation: block__element--modifier */
.helpMenu__accordions {
  margin: 0;
}
.helpMenu__accordions ul {
  margin: 0 0 0 12px;
}
.helpMenu__accordions li {
  list-style: none;
  margin: 10px 0 0;
  line-height: 1.15em;
}
.helpMenu__accordions li.active a {
  font-weight: 600;
}
.helpMenu__accordions li:first-child {
  margin-top: 0;
}
.helpMenu__accordions a {
  font-weight: 500;
}
.helpMenu__item--header {
  padding: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-color: #008cd4;
  color: #008cd4;
}
.helpMenu__item--header::after {
  right: 14px;
}
.helpMenu__item--header.accordion__header--closed {
  border-color: #737373;
  color: #333333;
}
.helpMenu__item--panel {
  padding: 12px 0 16px;
}
.helpPage__nav {
  width: 320px;
  float: left;
  margin-bottom: 20px;
}
.helpMenu__form {
  display: none;
}
@media screen and (max-width: 1023px) {
  .helpPage__nav {
    width: 100%;
    float: none;
  }
  .helpMenu__form {
    display: block;
  }
  .helpMenu__select {
    width: 100%;
  }
  .helpMenu__accordions {
    display: none;
  }
}
/* BEM notation: block__element--modifier */
.helpPanels {
  margin: 0 -10px;
  font-size: 0;
}
.helpPanel {
  display: inline-block;
  width: -webkit-calc(33.33% - 20px);
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  vertical-align: top;
  font-size: 1rem;
  background: white;
  border-radius: 3px;
  overflow: hidden;
}
.helpPanel header {
  padding: 18px 21px 16px;
  color: white;
  background: #336997;
}
.helpPanel__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}
/* csslint ignore:start */

[class*="helpPanel__title--"]::before {
  font-family: FontAwesome;
  margin: -2px 11px 0 0;
  float: left;
  line-height: 1em;
  font-size: 1.25rem;
  font-weight: normal;
}
/* csslint ignore:end */

.helpPanel__title--aboutUs::before {
  content: '\f059';
}
.helpPanel__title--delivery::before {
  content: '\f0d1';
}
.helpPanel__title--howToPay::before {
  content: '\f09d';
}
.helpPanel__title--myAccount::before {
  content: '\f007';
}
.helpPanel__title--placeAnOrder::before {
  content: '\f07a';
}
.helpPanel__title--privacy::before {
  content: '\f109';
}
.helpPanel__title--returns::before {
  content: '\f16b';
}
.helpPanel__title--security::before {
  content: '\f023';
}
.helpPanel__title--termsAndConditions::before {
  content: '\f0c5';
}
.helpPanel__title--buyersGuidesVideos::before {
  content: '\f022';
}
.helpPanel__body {
  padding: 19px 20px;
  min-height: 280px;
}
.helpPanel__body p {
  margin-bottom: 14px;
  min-height: 64px;
  line-height: 1.3em;
}
.helpPanel__body p:first-child {
  margin-top: 0;
}
.helpPanel__list {
  margin-top: 14px;
  margin-bottom: 21px;
  color: #336997;
  list-style-type: none;
}
.helpPanel__list a {
  color: #336997;
}
.helpPanel__list li {
  line-height: 1.6em;
}
.helpPanel__list li::before {
  content: '.';
  margin: 0 11px 0 3px;
  float: left;
  line-height: 7px;
  font-size: 2.125rem;
}
/***** FLEXBOX BROWSE FLYOUT IMPLEMENTATION *****/

.flexbox .helpPanels {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .helpPanel {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .helpPanel {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
  .helpPanel__body {
    min-height: inherit;
  }
}
/* BEM notation: block__element--modifier */

/***** ECOUPON *****/

.ecoupon__header h1 {
  color: #42ba13;
  font-size: 1.625rem;
  margin-top: 10px;
  margin-bottom: 20px;
  display: inline-block;
}
.ecoupon__header strong {
  text-transform: uppercase;
}
.ecoupon__header div.ecoupon__customertype {
  background-color: #ffb300;
  color: white;
  float: right;
  padding: 15px;
  border-radius: 5px;
  display: inline;
}
.ecoupon__header span.ecoupon__company::before {
  content: '\f0f7';
  font-family: FontAwesome;
  font-size: large;
}
.ecoupon__header span.ecoupon__personal::before {
  content: '\f2c0';
  font-family: FontAwesome;
  font-size: large;
}
.ecoupon__header--invalid h1 {
  color: #313334;
}
.ecoupon__banner {
  margin-bottom: 30px;
  overflow: hidden;
  height: 120px;
  width: 100%;
  border-radius: 4px;
}
.ecoupon__banner--invalid {
  font-size: 18px;
  font-weight: bold;
  color: red;
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}
.ecoupon__terms,
.ecoupon__text {
  margin-bottom: 10px;
}
.ecoupon__spent {
  margin-bottom: 30px;
}
.ecoupon__notes {
  color: #797777;
}
.ecoupon__not_applied_warning {
  color: red;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .ecoupon__banner {
    display: none;
  }
}
/* BEM notation: block__element--modifier */

/***** ECOUPON *****/

.pageNotFound {
  background: url(https://dcvnv1ldeiz2n.cloudfront.net/Shared/error-page/broken-pencil.png) no-repeat top right;
}
.pageNotFound ul {
  margin: 10px 0 0;
  list-style: none;
  font-size: 0;
}
.pageNotFound li {
  width: 47.663551402%;
  margin-right: 4.672897196%;
  display: inline-block;
}
.pageNotFound li:nth-child(even) {
  margin-right: 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .pageNotFound {
    background-size: 350px;
  }
  .pageNotFound li {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .pageNotFound li {
    width: 100%;
    margin-right: 0;
  }
}
/* BEM notation: block__element--modifier */

/***** ECOUPON *****/

.serverError__text {
  margin-bottom: 40px;
}
.serverError__buttons {
  margin-top: 10px;
}
/* BEM notation: block__element--modifier */

.statement__paymentNote {
  margin-top: 0.5em;
}
.statement__table {
  width: 100%;
  font-size: 0.875rem;
}
.statementTable__runningTotal {
  font-weight: 600;
}
.statementTable__type {
  white-space: nowrap;
}
.statementTable__type abbr {
  margin-right: 5px;
  font-size: 0.75rem;
  font-style: italic;
}
.statementTable__rowSelect {
  width: 20px;
  text-align: center;
}
.statementTable__rowSelect input {
  margin: 0;
}
.statement__paymentMethod {
  float: right;
  margin-right: 0;
}
.statement__paymentOption,
.statement__addressOption {
  float: left;
  width: 47.679814385%;
  margin-right: 4.64037123%;
}
.statement__paymentOption:last-child,
.statement__addressOption:last-child {
  margin-right: 0;
}
.statement__deliveryAddress {
  margin-top: 15px;
}
.statement__panelBody .message {
  margin-top: 0;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .statement__paymentOption {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
  .statement__paymentOption:first-child {
    margin-top: 10px;
  }
  .statement__table {
    width: 100%;
    font-size: 0.75rem;
  }
  .statement__table td {
    padding: 16px 5px;
  }
}
/* BEM notation: block__element--modifier */

/***** MY ACCOUNT ORDERS *****/

.invoiceHeader {
  position: relative;
  height: 95px;
}
#quoteHeader.invoiceHeader {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.invoiceHeaderAbout {
  position: relative;
}
.invoiceHeader--consolidated {
  height: 150px;
}
.invoiceHeader__logo {
  width: 100%;
  height: 100%;
}
.invoiceHeader__logo--container {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
}
.invoiceHeader__text {
  padding-left: 190px;
  padding-right: 260px;
}
.invoiceHeader__title {
  margin: 0;
  font-size: 20px;
  padding: 20px 0 0;
  display: inline-block;
}
.invoiceHeader__table {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 20px;
  min-width: 240px;
  max-width: 280px;
}
.invoiceHeader__table tr:nth-child(odd) {
  background: transparent;
}
.invoiceHeader__table td {
  line-height: 1em;
  padding: 0 0 4px;
  font-size: 14px;
  vertical-align: middle;
}
.invoiceHeader__table td:last-child {
  padding-left: 10px;
  text-align: right;
}
.invoiceHeader__tableRow {
  height: 25px;
  width: 100%;
}
.invoiceHeader__tableRow div {
  line-height: 1em;
  font-size: 13px;
  vertical-align: middle;
  width: 40%;
  float: left;
}
.invoiceHeader__tableRow div:last-child {
  text-align: right;
  width: 60%;
  float: right;
}
.invoiceHeader__invoiceNumber {
  height: auto;
  background: #d6d6d6;
  color: black;
  border-radius: 4px;
  padding: 3px 5px;
  margin-bottom: 3px;
  display: inline-block;
}
.invoiceHeader__contactUs {
  margin-top: 16px;
  padding-right: 10px;
  font-size: 11px;
  line-height: 1.2em;
}
#quoteHeader .invoiceHeader__logo--container {
  height: 85px;
}
#quoteHeader .invoiceHeader__text {
  padding-right: 3px;
}
#quoteHeader .invoiceHeader__table {
  position: relative;
  right: unset;
  top: unset;
  min-width: 260px;
  max-width: 260px;
}
#quoteHeader .invoiceHeader__tableRow {
  height: 15px;
  display: table;
  word-break: break-word;
}
#quoteHeader .invoiceHeader__tableRow div {
  font-size: 13px;
  width: 50%;
}
#quoteHeader .invoiceHeader__tableRow div:last-child {
  width: 50%;
}
#quoteHeader .invoiceHeader__invoiceNumber {
  width: auto !important;
  margin-bottom: 2px;
  margin-top: -4px;
  padding: 4px 5px 1px 5px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 767px) {
  .invoiceHeader {
    height: auto;
  }
  .invoiceHeader__logo {
    display: none;
  }
  .invoiceHeader__text {
    padding: 0;
    height: auto;
  }
  .invoiceHeader__table {
    position: relative;
    max-width: none;
  }
}
/* BEM notation: block__element--modifier */

/***** PACKING SLIP MODAL *****/

.packingSlip .invoiceHeader__table {
  min-width: 260px;
}
.packingSlip .invoiceHeader__tableRow div {
  width: 50%;
}
.packingSlip .invoiceHeader__tableRow .form__date {
  width: 130px;
}
.packingSlip .invoiceHeader__tableRow .form__date input {
  width: 130px;
}
.packingSlip .invoiceHeader__tableRow--date,
.packingSlip .invoiceHeader__tableRow--date div {
  height: 40px;
}
.packingSlip .invoiceHeader__tableRow--date div:first-child {
  padding-top: 10px;
}
.packingSlip .checkoutPanels__column section {
  margin-bottom: 0px;
}
.packingSlip .packingSlip__table .packingSlip__table--select {
  text-align: center;
  width: 45px;
}
.packingSlip .packingSlip__table .packingSlip__table--quantity {
  width: 150px;
}
.packingSlip .packingSlip__table .packingSlip__table--quantity input {
  width: 50px;
  height: 32px;
  text-align: center;
}
.packingSlip #SubmitPackingSlipFormBtn {
  display: none;
}
.packingSlip .checkoutPanels--first {
  margin-top: 60px;
}
/* BEM notation: block__element--modifier */

/***** DELIVERY NOTE PDF *****/

.deliveryNoteContainer .invoiceHeader__table {
  min-width: 260px;
}
.deliveryNoteContainer .invoiceHeader__tableRow div {
  width: 50%;
}
.deliveryNoteContainer .checkoutPanels__column section {
  margin-bottom: 0px;
}
.deliveryNoteContainer .checkoutPanels--first {
  margin-top: 100px;
}
.deliveryNoteContainer .dottedTable {
  display: table;
  width: 100%;
  font-size: 14px;
}
.deliveryNoteContainer .dottedTable .dottedTable__row {
  display: table-row;
}
.deliveryNoteContainer .dottedTable .dottedTable__cell {
  display: table-cell;
  text-align: left;
  vertical-align: bottom;
  border-bottom: 1px dotted black;
  height: 70px;
}
.deliveryNoteContainer .dottedTable .dottedTable__cell:last-child {
  width: 40%;
}
.deliveryNoteContainer .dottedTable .dottedTable__row:first-child .dottedTable__cell {
  height: 50px;
}
.deliveryNoteContainer .dottedTable__comment {
  display: block;
  margin-top: 25px;
  font-size: 12px;
}
/* BEM notation: block__element--modifier */

/***** SUPPLIER ORDER CONFIRMATION MODAL *****/

.supplierOrderConfirmation .invoiceHeader__tableRow {
  height: 16px;
}
.supplierOrderConfirmation .invoiceHeader__tableRow div {
  width: 50%;
}
.supplierOrderConfirmation .invoiceHeader__tableRow .invoiceHeader__invoiceNumber {
  width: auto;
}
.supplierOrderConfirmation .checkoutPanels__column section {
  margin-bottom: 0px;
}
.supplierOrderConfirmation .supplierOrderConfirmation__table--address {
  width: 100%;
}
.supplierOrderConfirmation .supplierOrderConfirmation__table--address input {
  height: 32px;
  padding: 8px;
}
.supplierOrderConfirmation .supplierOrderConfirmation__table--address td {
  padding: 0px;
  width: 50%;
  vertical-align: bottom;
}
.supplierOrderConfirmation #SubmitSupplierOrderConfirmationFormBtn {
  display: none;
}
.supplierOrderConfirmation textarea {
  display: block;
  margin: auto;
}
.supplierOrderConfirmation .checkoutPanel__title--address {
  display: inline-block;
  width: 100%;
}
.supplierOrderConfirmation .checkoutPanel__title--address span {
  display: block;
  float: right;
  font-weight: normal;
  margin-top: 2px;
  margin-left: 2px;
}
.supplierOrderConfirmation .supplierOrderConfirmation__notes {
  white-space: pre;
}
.supplierOrderConfirmation .checkoutPanel__body p {
  font-size: 1rem;
  line-height: 1.2em;
}
.supplierOrderConfirmation .supplierOrderConfirmation__footer {
  margin-top: 40px;
}
/* BEM notation: block__element--modifier */
/***** MY ACCOUNT ORDERS *****/

.accountList__filters {
  margin-bottom: 30px;
}
.accountList__filters label {
  margin-bottom: 12px;
}
.accountList__searchFilter {
  float: left;
}
.accountList__searchFilter input {
  width: 250px;
  vertical-align: top;
}
.accountList__searchFilter button {
  margin: 0 0 0 7px;
  min-width: 20px;
  font-size: 1rem;
  line-height: 1.3em;
}
.accountList__costCentre {
  margin-right: 20px;
  float: right;
}
.accountList__costCentre select {
  width: 138px;
}
.accountList__dateFilter,
.accountList__pageSize {
  float: right;
}
.accountList__dateFilter select,
.accountList__pageSize select {
  width: 138px;
}
.accountList__date {
  position: relative;
  display: inline-block;
}
.accountList__date input[type=text] {
  width: 138px;
  padding-right: 35px;
}
.accountList__dateSeparator {
  padding: 0 13px;
}
.accountList__rewardSelect {
  float: left;
}
.accountList__rewardSelect select {
  width: 154px;
}
.accountList__rewardSelect input[type="checkbox"] {
  margin-left: 12px;
  margin-right: 1px;
}
.accountList__sorting {
  float: right;
}
.accountList__sorting select {
  width: 220px;
}
.accountList__table {
  width: 100%;
  margin: 30px 0;
  text-align: left;
}
.accountList__table:last-child {
  margin-bottom: 0;
}
.accountList__table:first-child {
  margin-top: 0;
}
.accountList__table--withHeader {
  margin-top: 0;
}
.accountList__innerTable th {
  padding: 4px 2px 0;
  font-size: 0.8125rem;
  line-height: 1.4em;
  background: transparent;
  border-bottom: 3px solid #e0e0e0;
}
.accountList__innerTable td {
  padding: 6px 2px 0;
  font-size: 0.8125rem;
  line-height: 1.3em;
}
.accountList__innerTable thead + tbody tr:nth-child(even),
.accountList__innerTable tr:nth-child(odd) {
  background: transparent;
}
.accountList__innerTable--invoices {
  width: 265px;
}
.accountList__innerTable--orders {
  width: 100%;
}
.accountList__tableCaption {
  padding: 10px 0 0;
  margin: 0 0 10px;
}
.accountList__cellDate td {
  padding-right: 0;
  text-align: right;
}
.accountList__cellDate span {
  display: block;
  margin-top: 5px;
}
.accountList__cellDate + td {
  padding-left: 10px;
  width: 155px;
}
.accountList__tablePoints {
  width: 100px;
}
.accountList__tableTracking {
  position: relative;
  display: block;
  margin: 3px 0 0;
  font-size: 0.8125rem;
  line-height: 1em;
  padding-left: 15px;
}
.accountList__tableTracking::before {
  content: '\f05b';
  display: inline-block;
  margin: 0 3px 0 0;
  font-family: FontAwesome;
  color: #f0182d;
  position: absolute;
  left: 0;
  top: -1px;
}
.accountList__tableTracking--delivery {
  display: block;
  margin: 0 10px 10px;
  font-size: 0.875rem;
  line-height: 1.3em;
  padding-left: 20px;
}
th.accountList__tableInvoiceTotal,
td.accountList__tableInvoiceTotal {
  text-align: right;
}
.accountList__table--quickOrder {
  margin: 0 0 30px;
}
.accountList__table--quickOrder td {
  position: relative;
  vertical-align: middle;
}
/* csslint ignore:start */

.accountList__dateRange {
  float: right;
}
.accountList__dateRange button {
  opacity: 0.5;
}
.accountList__dateRange button:hover,
.accountList__dateRange button.btn--active {
  opacity: 1;
}
/* csslint ignore:end */

.accountList__tableDate {
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.2em;
}
.accountList__tableDate--order {
  line-height: 1em;
  padding: 5px 0;
}
.accountList__tableAddBtn,
.accountList__tableViewBtn {
  margin: 0;
}
.accountList__tableAction {
  text-align: right;
}
.accountList__tableSku {
  width: 184px;
}
.accountList__tableSku input {
  width: 184px;
}
.accountList__tableQuantity {
  width: 107px;
}
.accountList__tableQuantity input {
  width: 48px;
}
.accountList__primaryAction--quickOrder {
  float: right;
}
.accountList__primaryAction--quickOrder button:last-child {
  margin: 0;
}
.accountList__tableDescription {
  margin: 15px 0 0;
}
.rewardsMsg span {
  color: #0091d4;
  font-weight: 600;
}
/* csslint ignore:start */

dd.queryInfo__number {
  font-weight: 600;
}
/* csslint ignore:end */

.queryInfo__status {
  position: relative;
  top: 3px;
  display: inline-block;
  margin: -7px 0 0 5px;
  padding: 6px 7px 5px;
  border-radius: 4px;
  line-height: 1em;
  color: white;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  vertical-align: middle;
  background: #42ba13;
}
.accountList__tableFooter td {
  padding: 8px 10px;
}
.accountList__tableFooter td:first-child {
  text-align: right;
}
.accountList__tableFooterTotal {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.accountList__tableFooterSubTotal td {
  padding-top: 40px;
}
.accountList__tableFooterCcTotal {
  border-top: 1px dashed #cccccc;
  border-bottom: 1px dashed #cccccc;
}
.accountList__queryMessage {
  word-break: break-all;
  word-break: break-word;
  /*not supported in IE*/

}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .accountList__primaryAction {
    float: right;
    clear: right;
  }
  .accountList__primaryAction button {
    margin: 0;
  }
  .accountList__innerTable--invoices {
    width: 192px;
  }
}
@media screen and (max-width: 1023px) {
  .accountList__cellDate {
    float: left;
    text-align: left;
  }
  td.accountList__cellDate {
    padding-top: 3px;
    padding-bottom: 12px;
  }
  .accountList__cellDate + td {
    float: right;
  }
  .accountList__querySender a,
  .accountList__queryMessage a {
    word-break: break-all;
  }
  .accountList__costCentre {
    float: none;
    padding-top: 20px;
    margin: 0;
    clear: both;
  }
}
@media screen and (max-width: 767px) {
  .accountList__dateRange {
    float: none;
    max-width: 280px;
    margin: 0 auto;
  }
  .accountList__searchFilter,
  .accountList__dateFilter {
    float: none;
  }
  .accountList__searchFilter input {
    width: 237px;
  }
  .accountList__searchFilter button {
    margin: 0;
  }
  .accountList__dateFilter {
    margin-top: 15px;
  }
  .accountList__table {
    font-size: 0.9375rem;
  }
  .accountList__primaryAction button,
  .accountList__primaryAction input[role=button] {
    width: 100%;
  }
  .accountList__primaryAction--quickOrder {
    float: none;
  }
  .accountList__primaryAction--quickOrder button {
    margin-top: 10px;
  }
  .accountList__primaryAction--quickOrder button:first-child {
    margin: 0;
  }
  .accountList__primaryAction--quickOrder button:last-child {
    margin-top: 10px;
  }
  .accountList__tableAddBtn {
    font-size: 0;
    line-height: 1em;
    padding: 7.5px;
    min-width: 39px;
    min-height: 39px;
  }
  .accountList__tableAddBtn::before {
    content: '\f07a';
    font-family: FontAwesome;
    font-size: 1.25rem;
    line-height: 1em;
  }
  .accountList__tableAction {
    width: 39px;
  }
  .accountList__tableQuantity {
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
    margin: 16px 10px;
  }
  .accountList__tableSku input[type=text] {
    height: 48px;
    width: 163px;
  }
  .accountList__date {
    position: relative;
    display: block;
  }
  .accountList__date input {
    width: 280px;
    padding-right: 9px;
  }
  .accountList__dateSeparator {
    display: block;
    width: 280px;
    text-align: center;
    margin: 5px 0;
  }
  .accountList__rewardSelect,
  .accountList__sorting {
    float: none;
    margin-top: 15px;
  }
  .accountList__rewardSelect select,
  .accountList__sorting select {
    width: 100%;
  }
  .accountList__rewardSelect input[type=checkbox],
  .accountList__sorting input[type=checkbox] {
    margin: 0;
  }
}
/* BEM notation: block__element--modifier */
.sitewideBanner {
  background: white;
  padding: 17px 0;
  height: 66px;
  overflow: hidden;
  align-items: center;
  display: flex;
}
.sitewideBanner img {
  flex: none;
  /* keep aspect ratio */

}
.sitewideBanner_container {
  width: 100%;
  overflow: hidden;
}
.sitewideBanner_container span {
  display: table-cell;
  line-height: 1.2em;
  vertical-align: middle;
  padding: 0 10px 0 0;
}
.sitewideBanner_buttons {
  text-align: right;
  display: table-cell;
  vertical-align: middle;
}
.sitewideBanner_button {
  margin: 0 3px;
  border-color: #313334;
  padding: 7px 12px;
  font-size: 0.875rem;
  line-height: 1em;
  text-align: center;
}
.sitewide-icon::after {
  font-family: FontAwesome;
  font-size: 1rem;
  content: '\f08e';
  vertical-align: middle;
  margin-left: 11px;
}
@media screen and (max-width: 768px) {
  .sitewideBanner {
    display: none;
  }
}
/* BEM notation: block__element--modifier */

.unsubscribe__indexContent {
  position: relative;
  background: white;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.2em;
  max-width: 320px;
  margin-right: 60px;
  float: left;
  vertical-align: top;
}
.unsubscribe__bannerContent {
  float: right;
  border-radius: 4px;
  overflow: hidden;
  vertical-align: top;
  max-width: 820px;
  width: calc(100% - 380px);
  max-height: 263px;
}
.unsubscribe__bannerContent img {
  width: 100%;
  height: 263px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .unsubscribe__bannerContent {
    display: none;
  }
}
.unsubscribe__index h2 {
  font-size: 1.125rem;
  line-height: 1em;
  margin: 30px 0 10px 0;
  font-weight: 600;
}
.unsubscribe__index h1 {
  margin: 25px 0 17px;
}
.unsubscribe__index ul {
  margin-top: -10px;
}
.unsubscribe__index ul li {
  list-style: none;
}
.unsubscribe__index ul li:last-child label {
  margin-top: 30px;
}
.unsubscribe__index label {
  display: inline-block;
}
.unsubscribe__index--btn-unsubscribe {
  width: 100%;
}
/*media queries*/

@media (max-width: 450px) {
  .unsubscribe__emailAddress {
    width: 100%;
  }
  .unsubscribe__index .btn--small {
    width: 100%;
    margin-bottom: 7px;
  }
}
.centered-body {
  margin: 0;
  position: absolute;
  transform: translate(-50%, -40%);
  top: 40%;
  left: 50%;
  margin-right: -50%;
  text-align: center;
}
.satisfaction-score {
  float: left;
  height: 46px;
  width: 46px;
  text-align: center;
  vertical-align: middle;
  line-height: 46px;
  margin-right: 10px;
  border-radius: 4px;
  text-decoration: none;
}
.satisfaction-score:last-of-type {
  margin-right: 0;
}
.satisfaction-score.low .number,
.satisfaction-score.medium .number,
.satisfaction-score.high .number {
  color: white;
  font-weight: bold;
  font-size: 1.2em;
}
.satisfaction-score.low {
  background-color: #f02d52;
}
.satisfaction-score.medium {
  background-color: #ffc000;
}
.satisfaction-score.high {
  background-color: #2dd00b;
}
.customer-satisfaction-score .recommend-us {
  font-weight: bold;
  text-align: center;
  font-size: 1.2em;
  margin: 10px 0;
}
.customer-satisfaction-score .satisfaction-scores,
.customer-satisfaction-score .satisfaction-score-labels {
  width: 550px;
}
.customer-satisfaction-score .satisfaction-scores {
  margin: 0 auto;
}
.customer-satisfaction-score .satisfaction-score-labels {
  margin: 10px auto;
}
.customer-satisfaction-score .satisfaction-score-labels .satisfaction-score-label {
  color: #999999;
}
.customer-feedback-container .masthead__logoLink {
  margin-left: 25%;
}
.customer-feedback-container .panel {
  background-color: #f1f1f1;
  width: 480px;
  height: 314px;
  margin-top: 20px;
  padding: 20px;
  border-radius: 4px;
}
.customer-feedback-container .satisfaction-score {
  display: inline-block;
  margin: 0 10px;
  float: none;
}
.customer-feedback-container .tell-us-why {
  text-align: center;
  font-size: 1.2em;
  margin: 10px 0 20px 0;
}
.customer-feedback-container textarea {
  width: 440px;
  border-radius: 4px;
  border: solid 2px #e9e9e9;
  resize: none;
}
.customer-feedback-container button#finish {
  border-radius: 4px;
  margin-top: 15px;
  height: 55px;
  width: 100%;
}
.specialOffer_TopSection {
  background: white;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  margin: 20px 0;
}
.specialoffer__TopSection__container {
  position: relative;
  font-size: 22px;
  line-height: 40px;
  padding: 10px;
  margin: 0;
  background: #336997;
  color: white;
  border-radius: 4px 4px 4px 4px;
  font-weight: 500;
}
.specialoffer__noOffers__link {
  color: #336997;
}
.specialOffer_heroBanner {
  max-width: 1200px;
  max-height: 320px;
}
.specialOffer_heroBanner img {
  max-width: 1200px;
  max-height: 320px;
}
.specialoffer__main__container {
  background-color: #f2f2f2;
}
.specialoffer_heroBannerLarge,
.specialoffer_heroBannerSmall {
  width: 100%;
}
.specialoffer__promos__container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 0px 31px;
}
.specialoffer__promos {
  padding-top: 22px;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  -webkit-align-items: stretch;
}
.specialoffer__promo {
  margin-left: 1.833333333%;
  margin-bottom: 20px;
  width: 32%;
  float: left;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.specialoffer__promo:hover,
.specialoffer__promo:active {
  box-shadow: 0 0 0 2px #f0182d;
}
.specialoffer__promo a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 113.4% 0 0 0;
}
.specialoffer__promo img {
  display: block;
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.specialoffer__promoProduct {
  margin-left: 1.833333333%;
  margin-bottom: 20px;
  width: 32%;
  float: left;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  position: relative;
  background: white;
}
.specialoffer__promoProduct:hover,
.specialoffer__promoProduct:active {
  box-shadow: 0 0 0 2px #f0182d;
}
.specialoffer__promoProduct a {
  display: block;
  text-decoration: none;
}
.specialoffer__promoProduct h2 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2em;
  display: block;
  margin: 20px 20px 0px;
  height: 2.6em;
  overflow: hidden;
  color: #313334;
}
.specialoffer__promoProduct .specialofferProduct__imgWrap {
  position: relative;
  padding: 0 0 47%;
  margin: 18px;
}
.specialoffer__promoProduct .specialofferProduct__imgWrap img {
  position: absolute;
  max-width: 54.6%;
  transform: translateX(41%);
}
.specialoffer__promoProduct .specialofferProduct__imgWrap .imageViewer__promoBubble--promoProduct {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 14%;
  z-index: 1;
  transform: translateX(0%);
}
.specialoffer__promoProduct .specialofferProduct__reviewsStrip {
  margin-left: 20px;
  margin-right: 20px;
}
.specialoffer__promoProduct .specialofferProduct__reviewsStrip .starRating--specialOffers {
  margin: 0px;
}
.specialoffer__promoProduct .addToBasket__unitPrice--specialOffersProduct {
  margin-right: 20px;
}
.specialoffer__promoProduct .packOf__promoProduct {
  font-size: 0.75rem;
  line-height: 1.8em;
  margin-top: 2px;
  padding: 0 5px;
}
.specialoffer__promoProduct .addToBasket--specialOffersProduct {
  margin: 10px 20px 20px;
  position: inherit;
}
.specialoffer__promoProduct .addToBasket__unitPriceText--promoProduct {
  font-size: 2.25rem;
}
.specialoffer__promoProduct .specialOffersProduct__nonCoreList {
  font-size: 1rem;
  line-height: 1em;
  color: #f16522;
  float: right;
}
/***** RESPONSIVE STYLES *****/

@media screen and (min-width: 1025px) {
  .specialoffer__promos li:first-child,
  li:nth-child(3n+1) {
    margin-left: 0;
  }
  .specialoffer_heroBannerSmallLink {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .specialoffer__promos li {
    width: 48%;
  }
  .specialoffer__promos li:nth-child(2n+1) {
    margin-left: 0;
  }
  .specialoffer__promos li:nth-child(2n) {
    margin-left: 2%;
  }
  .specialoffer__promos li .specialoffer__promoProduct .addToBasket--specialOffersProduct {
    position: unset;
  }
  .specialoffer__promos li .specialoffer__promoProduct .addToBasket__unitPrice--specialOffersProduct {
    margin-right: 20px;
  }
  .specialoffer_heroBannerSmallLink {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .specialoffer__promos li {
    margin-left: 0;
    width: 100%;
  }
  .specialoffer__promoProduct .addToBasket--specialOffersProduct {
    position: unset;
  }
  .specialoffer__promoProduct .addToBasket__unitPrice--specialOffersProduct {
    margin-right: 20px;
  }
  .specialoffer_heroBannerLargeLink {
    display: none;
  }
}
.dropdown__container {
  width: 100%;
  height: 100%;
  border: 2px solid #cccccc;
  border-radius: 4px;
}
.dropdown__container .dropdown__textbox--container {
  padding-top: 1px;
  height: 100%;
}
.dropdown__container .dropdown__textbox--container input {
  display: inline-block;
  float: left;
  border: none;
  width: 95%;
  height: 100%;
  padding: 0 0 0 10px;
  color: #313334;
}
.dropdown__container .dropdown__textbox--container input::-ms-clear {
  display: none;
}
.dropdown__container .dropdown__textbox--container input::-webkit-input-placeholder {
  opacity: 0.6;
}
.dropdown__container .dropdown__textbox--container input::-moz-placeholder {
  opacity: 0.6;
}
.dropdown__container .dropdown__textbox--container input:-ms-input-placeholder {
  opacity: 0.6;
}
.dropdown__container .dropdown__textbox--container svg {
  float: right;
  width: 10px;
  height: 100%;
  margin-right: 5px;
}
.dropdown__container .dropdown__textbox--container.disabled {
  background: #ebebe4;
}
.dropdown__container .dropdown__textbox--container.disabled input {
  background: #ebebe4;
}
.dropdown__container .dropdown__textbox--container.active {
  border: 1px solid #313334 !important;
}
.dropdown__container .dropdown__textbox--noedit {
  color: #313334;
  background-color: transparent;
  -webkit-text-fill-color: #313334;
  cursor: pointer;
}
.dropdown__container .dropdown__textbox--noedit:focus {
  outline: none;
}
.dropdown__container .dropdown__content--container {
  position: absolute;
  display: none;
  z-index: 999;
  border: 2px solid #cccccc;
  width: 490px;
  margin-left: -2px;
  background-color: white;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.14);
  border-radius: 0 0 4px 4px;
}
.dropdown__container .dropdown__content--container .dropdown__textbox--container {
  height: 39px;
  margin: 5px 10px;
  border: 2px solid #cccccc;
  border-radius: 4px;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.14);
}
.dropdown__container .dropdown__content--container .dropdown__textbox--container svg {
  width: 16px;
  color: #f0182d;
}
.dropdown__container .dropdown__content--container .dropdown__textbox--container .dropdown__search:focus {
  outline: none;
}
.dropdown__container .dropdown__content--container .dropdown__content {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 200px;
}
.dropdown__container .dropdown__content--container .dropdown__content .dropdown__content--item {
  height: 35px;
  line-height: 30px;
  width: 100%;
  display: block;
  padding: 2px 10px;
  text-decoration: none;
  color: #313334;
  list-style-position: inside;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown__container .dropdown__content--container .dropdown__content .dropdown__content--item:hover,
.dropdown__container .dropdown__content--container .dropdown__content .dropdown__content--item.selected {
  background-color: #f0182d;
  color: white;
  border: 1px solid #313334;
  cursor: default;
}
.dropdown__container .dropdown__content--container .dropdown__content .dropdown__content--item.hidden {
  display: none;
}
.dropdown__container .dropdown__content--shown {
  display: block;
}
/* Responsive mobile */

@media screen and (max-width: 767px) {
  .dropdown__container .dropdown__value--container .dropdown__textbox {
    width: 93%;
  }
  .dropdown__container .dropdown__content--container {
    width: 258px;
  }
  .dropdown__container .dropdown__content--container .dropdown__textbox--container {
    height: 52px;
  }
  .dropdown__container .dropdown__content--container .dropdown__textbox--container .dropdown__search {
    height: 100%;
    width: 90%;
  }
  .dropdown__container .dropdown__content--container .dropdown__content .dropdown__content--item {
    height: 40px;
    line-height: 40px;
  }
}
/* Responsive tablet */

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .dropdown__container .dropdown__content--container {
    width: 83vw;
  }
}
/* BEM notation: block__element--modifier */

.multipleAttachment__infoBox {
  margin-top: 10px;
}
.multipleAttachment__infoBox p {
  font-size: 0.9rem;
  line-height: 1em;
  margin-top: 0px;
  margin-bottom: 5px;
}
.multipleAttachment__infoBox p:last-of-type {
  margin-bottom: 0;
}
.multipleAttachment__container {
  background-color: #fff7be;
  border: 2px dashed #e2daa2;
  border-radius: 4px;
}
.multipleAttachment__button {
  border: 1px solid #b6b6b6;
  background: #ededed;
  cursor: pointer;
  margin: 15px;
  padding: 3px 5px 2px 7px;
  font-size: 1rem;
  display: inline-flex;
}
.multipleAttachment__input {
  display: none;
}
.multipleAttachment__input-files {
  display: none;
}
.multipleAttachment__files {
  display: table;
  width: 100%;
}
.multipleAttachment__fileInfo {
  display: table-row;
  height: 50px;
  vertical-align: middle;
  background-color: white;
  padding: 5px;
  word-break: break-all;
  word-break: break-word;
  /*not supported in IE*/

}
.multipleAttachment__fileInfo:nth-child(even) {
  background-color: #f2f2f2;
}
.multipleAttachment__fileIcon {
  display: table-cell;
  padding-left: 10px;
  width: 20px;
  font-size: 1.4rem;
  vertical-align: middle;
}
.multipleAttachment__fileName {
  display: table-cell;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.multipleAttachment__fileRemove {
  display: table-cell;
  width: 60px;
  vertical-align: middle;
}
.multipleAttachment__fileRemove button {
  margin-right: 10px;
}
.leftSideButton {
  min-width: 250px;
  background: #f0182d 0% 0% no-repeat padding-box;
  box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.29);
  max-width: 270px;
  opacity: 1;
  position: fixed;
  left: -115px;
  transition: left 0.5s;
  top: 45%;
  font-size: 16px;
  padding-top: 40px;
  transform: rotate(-90deg);
  /* Safari */
  -webkit-transform: rotate(-90deg);
  /* Firefox */
  -moz-transform: rotate(-90deg);
  /* IE */
  -ms-transform: rotate(-90deg);
  /* Opera */
  -o-transform: rotate(-90deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  z-index: 2;
}
.leftSideButton:hover {
  opacity: 1;
}
.campaignPopout {
  position: fixed;
  left: 70px;
  transition: left 0.5s;
  top: 45%;
  height: 210px;
  width: 350px;
  background: white;
  z-index: 2;
  margin-top: -70px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.29);
  border-radius: 5px;
}
.campaignPopout__container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: white;
  border-radius: 5px;
}
.campaignPopout::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: -7px;
  margin-top: -7px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.29);
  background-color: white;
  z-index: -1;
  transform: rotate(45deg);
  /* Safari */
  -webkit-transform: rotate(45 eg);
  /* Firefox */
  -moz-transform: rotate(45deg);
  /* IE */
  -ms-transform: rotate(45deg);
  /* Opera */
  -o-transform: rotate(45deg);
}
.campaignPopout--hidden {
  display: none;
}
.campaignPopout__title {
  font-weight: bold;
  margin-bottom: 20px;
}
.campaignPopout__text {
  line-height: 1.4em;
  font-size: 14px;
}
.campaignPopout__footer {
  position: absolute;
  bottom: 20px;
  width: 310px;
}
.campaignPopout__footer button {
  margin-right: 0px;
}
.campaignPopoutCancelText {
  position: fixed;
  left: 70px;
  transition: left 0.5s;
  top: 45%;
  height: 110px;
  width: 330px;
  background: white;
  margin-top: -20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.29);
  border-radius: 5px;
}
.campaignPopoutCancelText__container {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: white;
  border-radius: 5px;
  line-height: 1.4em;
  font-size: 14px;
  display: table;
}
.campaignPopoutCancelText::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: -7px;
  margin-top: -7px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.29);
  background-color: white;
  z-index: -1;
  transform: rotate(45deg);
  /* Safari */
  -webkit-transform: rotate(45 eg);
  /* Firefox */
  -moz-transform: rotate(45deg);
  /* IE */
  -ms-transform: rotate(45deg);
  /* Opera */
  -o-transform: rotate(45deg);
}
.campaignPopoutCancelText__content {
  display: table-cell;
  vertical-align: middle;
}
.campaignFlyout {
  box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.29);
  overflow-y: auto;
  padding: 20px 60px;
  width: 75%;
  background-color: white;
  height: 100%;
  position: fixed;
  top: 0px;
  left: -75%;
  transition: left 0.5s;
  z-index: 11;
}
.campaignFlyout > li {
  display: none;
}
.campaignFlyout--open {
  padding: 30px 84px 30px 60px;
  left: 0;
}
.campaignFlyout--open > li {
  display: initial;
}
.campaignFlyout__page {
  display: none;
}
.campaignFlyout__page--open {
  display: block;
}
.campaignFlyout__closePageButton {
  cursor: pointer;
  color: #f0182d;
  height: 20px;
  margin-bottom: 20px;
}
.campaignFlyout__closePageButton svg {
  margin-right: 5px;
}
.multiStepProgressBar {
  width: 100%;
  height: 11px;
  border: 1px solid var(--body-bg);
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
  border-radius: 8px;
  margin-top: 40px;
}
.multiStepProgressBar--contentOnly {
  display: none;
}
.multiStepProgressBar__filling {
  min-width: 0%;
  max-width: 100%;
  height: 100%;
  background-color: #f0182d;
  border-radius: 8px;
}
.campaignFlyout__navigationButtons {
  margin-top: 25px;
}
.autoCapturePageContent h3 {
  font-size: 16px;
}
.autoCapturePageContent ul {
  list-style: none;
}
.autoCapturePageContent ul svg {
  margin-right: 8px;
}
.flyoutNavigation__next {
  margin-right: 0px;
}
.autoCaptureFlyout__selections {
  display: inline-block;
}
.autoCaptureFlyout__selections button {
  min-width: 280px;
  height: 52px;
  margin-bottom: 15px;
  max-width: 280px;
  font-size: 16px;
  padding: 5px;
}
.wrapper-within-modal .numberOfEmployees {
  padding: 14px;
}
.campaignFlyout__finishPageButton {
  margin-right: 0;
}
.leftSideButton--peaking {
  left: -95px;
}
.campaignPopout--peaking {
  left: 90px;
}
.campaignPopoutCancelText--peaking {
  left: 80px;
}
.campaignPopoutCancelText--hidden {
  display: none;
}
.campaignFlyout--peaking {
  cursor: pointer;
  left: -74.2%;
}
@media only screen and (max-width: 1400px) {
  .leftSideButton--peaking {
    left: -102px;
  }
  .campaignPopout--peaking {
    left: 82px;
  }
  .campaignPopoutCancelText--peaking {
    left: 90px;
  }
  .campaignFlyout--peaking {
    cursor: pointer;
    left: -74.2%;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 1800px) {
  .leftSideButton--peaking {
    left: -100px;
  }
  .campaignPopout--peaking {
    left: 82px;
  }
  .campaignPopoutCancelText--peaking {
    left: 85px;
  }
}
/* 7. TRUMPS: utilities & helper classes, overriding anything above */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
  /* csslint ignore:start */
  display: none !important;
  /* csslint ignore:end */

}
/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}
/* BEM notation: block__element--modifier
*/

/* csslint ignore:start */

button[disabled]:not(.basket__AdditionalService--btn),
[role="button"][disabled],
[type="button"][disabled],
[type="submit"][disabled] {
  opacity: 0.3 !important;
}
/* csslint ignore:end */

/* BEM notation: block__element--modifier
*/

input:-ms-input-placeholder {
  /* csslint ignore:start */
  color: #999999 !important;
  /* csslint ignore:end */

}
/* BEM notation: block__element--modifier
*/

.tab__panel .checkoutPanel__body {
  background: #f2f2f2;
}
/* BEM notation: block__element--modifier
*/

.modal .tabs {
  margin: 0 -10px;
}
/* BEM notation: block__element--modifier
*/

/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .hideTablet {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hideTablet,
  .hideMobile {
    display: none;
  }
}
/* PAYMENT METHODS */

.footer__paymentMethods .paymentMethod__contrassegno,
.footer__checkoutPaymentMethods .paymentMethod__contrassegno {
  display: none;
}
.footer__paymentMethods .paymentMethod__postepay,
.footer__checkoutPaymentMethods .paymentMethod__postepay {
  display: none;
}
/* Abbotts & WT Supplies (one 'weak' brand colour) */

.ABB .masthead__basketTab {
  background: transparent;
  color: #f0182d;
}
.ABB .miniBasket__totals,
.ABB .miniMyAccount__registerUserButtons {
  border-color: transparent;
}
.ABB .home__customLinks li,
.ABB .home__customLinks_mobile li,
.ABB .home__customLinks_desktop li {
  background: transparent;
}
.ABB .home__customLinks a,
.ABB .home__customLinks_mobile a,
.ABB .home__customLinks_desktop a {
  background: transparent;
}
.ABB .home__customLinks a::after,
.ABB .home__customLinks_mobile a::after,
.ABB .home__customLinks_desktop a::after {
  color: #f0182d;
}
.ABB .home__customLinkText,
.ABB .home__customLinkText_mobile,
.ABB .home__customLinkText_desktop {
  color: #f0182d;
}
/* Euroffice Italy */

.EI0 .paymentMethod__postepay {
  display: inline-block;
}
.EI0 .paymentMethod__amex {
  display: none;
}
.EI0 .toggle__switch::after {
  content: 'Sì';
}
.EI0 .toggle__switch--off::after {
  content: 'No';
}
.EI0 .burgerMenu__navBackLink {
  padding: 9px 7px;
}
.EI0 .feedbackPopup__close::before,
.EI0 .inkTonerFinder__close::before {
  content: 'Chiudi';
}
.EI0 .basketTable__descriptionText {
  margin-right: 120px;
}
.EI0 .basketTotals__coupon input {
  width: 158px;
}
.EI0 .basketTotals--inverse input[type="text"] {
  width: 138px;
}
.EI0 .productList__sortForm select {
  max-width: 260px;
}
.EI0 .footer__copyright p {
  margin-top: 0;
  line-height: 1.2em;
  margin-bottom: 0.5em;
  font-size: 0.75rem;
}
/* Euroffice Germany */

.ED0 .paymentMethod__maestro,
.ED0 .paymentMethod__amex {
  display: none;
}
.ED0 .toggle__switch::after {
  content: 'Auf';
}
.ED0 .toggle__switch--off::after {
  content: 'Aus';
}
.ED0 .feedbackPopup__close::before,
.ED0 .inkTonerFinder__close::before {
  content: 'Schließen';
}
.ED0 .burgerMenu__navLocation h3,
.ED0 .burgerMenu__inkLocation h3 {
  width: 155px;
}
.flexbox .ED0 .browse__categories ul {
  height: 375px;
}
.EI0 .youMightLike__addToBasket button,
.ED0 .youMightLike__addToBasket button {
  font-size: 0;
  line-height: 1em;
  padding: 7.5px;
  min-width: 39px;
  font-family: FontAwesome;
  text-align: center;
}
.EI0 .youMightLike__addToBasket button::before,
.ED0 .youMightLike__addToBasket button::before {
  content: '\f07a';
  font-size: 1.25rem;
  line-height: 1em;
}
.EI0 .addToBasket__message--productList,
.ED0 .addToBasket__message--productList {
  min-width: 160px;
  left: auto;
}
.EI0 .crossSell__text--productList,
.ED0 .crossSell__text--productList {
  margin-right: 175px;
}
/***** RESPONSIVE STYLES *****/

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .EI0 .productList__sortForm {
    width: 338px;
  }
}
@media screen and (max-width: 767px) {
  .ABB .masthead__basketTab {
    background: white;
    color: #313334;
  }
  /* Euroffice Italy */
  
  .EI0 .basketTable__descriptionText {
    margin-right: 0;
  }
  .EI0 .checkoutHeader__title {
    padding-right: 90px;
  }
  .EI0 .stepsIndication {
    margin-left: -90px;
  }
}
/* BEM notation: block__element--modifier */

/***** STYLE DECLARATIONS *****/

.pull--right {
  float: right;
}
.pull--left {
  float: left;
}
.osano-cm-button--type_accept,
.osano-cm-button--type_accept:hover {
  background-color: #6bb731;
}
.osano-cm-button:hover {
  color: white;
}
