/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) {
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) {
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) {
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) {
    div { color:#888; }
}

// ----------------------------------------------
*/
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
/* line 11, ../scss/vendor/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
/*
 * Test Commets for GIT publish 
 */
/* line 29, ../scss/vendor/_normalize.scss */


/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
/* line 29, ../scss/vendor/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 40, ../scss/vendor/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
/* line 49, ../scss/vendor/_normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 63, ../scss/vendor/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */
/* line 73, ../scss/vendor/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/* line 85, ../scss/vendor/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
/* line 93, ../scss/vendor/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
/* line 107, ../scss/vendor/_normalize.scss */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 115, ../scss/vendor/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 123, ../scss/vendor/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
/* line 132, ../scss/vendor/_normalize.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
/* line 140, ../scss/vendor/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
/* line 150, ../scss/vendor/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
/* line 162, ../scss/vendor/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
/* line 172, ../scss/vendor/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
/* line 180, ../scss/vendor/_normalize.scss */
small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 188, ../scss/vendor/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 196, ../scss/vendor/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 200, ../scss/vendor/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
/* line 212, ../scss/vendor/_normalize.scss */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
/* line 220, ../scss/vendor/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
/* line 232, ../scss/vendor/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
/* line 244, ../scss/vendor/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 255, ../scss/vendor/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
/* line 266, ../scss/vendor/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 280, ../scss/vendor/_normalize.scss */
button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 293, ../scss/vendor/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */
/* line 305, ../scss/vendor/_normalize.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
/* line 315, ../scss/vendor/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 327, ../scss/vendor/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 339, ../scss/vendor/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
/* line 348, ../scss/vendor/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
/* line 359, ../scss/vendor/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
/* line 372, ../scss/vendor/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============================================ *
 * Reset
 * ============================================ */
/* line 30, ../scss/core/_reset.scss */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 38, ../scss/core/_reset.scss */
html {
  -webkit-tap-highlight-color: transparent;
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */
}

/* line 43, ../scss/core/_reset.scss */
body {
  background: #FFFFFF;
  color: #000000;
  line-height: 1;
}

/* line 49, ../scss/core/_reset.scss */
html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
}

/* line 58, ../scss/core/_reset.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* line 68, ../scss/core/_reset.scss */
th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left;
}

/* line 77, ../scss/core/_reset.scss */
address {
  font-style: normal;
}

/* line 81, ../scss/core/_reset.scss */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

/* line 87, ../scss/core/_reset.scss */
img {
  display: block;
}

/* line 91, ../scss/core/_reset.scss */
ol,
ul {
  list-style: none;
}

/* line 96, ../scss/core/_reset.scss */
q:before,
q:after {
  content: '';
}

/* line 102, ../scss/core/_reset.scss */
input:focus,
input[type="search"]:focus {
  outline-offset: -2px;
}

/* line 108, ../scss/core/_reset.scss */
input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box;
}

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/* line 47, ../scss/core/_common.scss */
html {
  box-sizing: border-box;
}

/* line 51, ../scss/core/_common.scss */
*,
*:before,
*:after {
  box-sizing: inherit;
}

/* line 59, ../scss/core/_common.scss */
a,
button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* line 66, ../scss/core/_common.scss */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 71, ../scss/core/_common.scss */
body,
button,
input,
select,
table,
textarea {
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #777777;
}

/* line 85, ../scss/core/_common.scss */
a {
  text-decoration: none;
  color: #369;
}

/* line 92, ../scss/core/_common.scss */
a:hover {
  text-decoration: underline;
  color: #2d5986;
}

/* line 99, ../scss/core/_common.scss */
a:focus {
  color: #0d1a26;
  outline-color: #30608f;
}

/* line 105, ../scss/core/_common.scss */
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================ *
 * Typography
 * ============================================ */
/* line 118, ../scss/core/_common.scss */
h1,
.h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin: 0;
  margin-bottom: .7em;
  text-transform: none;
  color: #369;
  text-rendering: optimizeLegibility;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 118, ../scss/core/_common.scss */
  h1,
  .h1 {
    font-size: 18px;
  }
}

/* line 124, ../scss/core/_common.scss */
h2,
.h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin: 0;
  margin-bottom: .5em;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeLegibility;
}

/* line 130, ../scss/core/_common.scss */
h3,
.h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
}

/* line 136, ../scss/core/_common.scss */
h4,
.h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
}

/* line 142, ../scss/core/_common.scss */
h5,
.h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
}

/* line 148, ../scss/core/_common.scss */
h6,
.h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 5px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
/* line 158, ../scss/core/_common.scss */
.address-list address {
  margin-bottom: 1em;
}

/* line 163, ../scss/core/_common.scss */
.availability {
  font-size: 13px;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* line 172, ../scss/core/_common.scss */
.availability .label {
  display: none;
}

/* line 177, ../scss/core/_common.scss */
.availability.in-stock {
  color: #75c3b5;
}

/* line 182, ../scss/core/_common.scss */
.availability.available-soon,
.availability.out-of-stock {
  color: #df280a;
}
/* line 187, ../scss/core/_common.scss */
.availability.available-soon span,
.availability.out-of-stock span {
  line-height: 36px;
}

/* line 192, ../scss/core/_common.scss */
.availability-only {
  margin-bottom: 10px;
  color: #df280a;
}

/* -------------------------------------------- *
 * Page Titles
 */
/* line 203, ../scss/core/_common.scss */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 36px;
  font-weight: 700;
  text-transform: none;
  color: #40434B;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 203, ../scss/core/_common.scss */
  .page-title h1,
  .page-title h2,
  .product-name h1,
  .product-name .h1 {
    font-size: 24px;
  }
}

/* line 211, ../scss/core/_common.scss */
.headline-block {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  color: #70747e;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 211, ../scss/core/_common.scss */
  .headline-block {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
/* line 228, ../scss/core/_common.scss */
.headline-block span {
  font-size: 24px;
  font-weight: 700;
  -webkit-flex: 1;
  flex: 1;
  color: #40434b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 228, ../scss/core/_common.scss */
  .headline-block span {
    max-width: 100%;
    font-size: 18px;
  }
}
/* line 243, ../scss/core/_common.scss */
.headline-block .view-more {
  font-size: 12px;
  font-weight: 700;
  justify-content: flex-end;
  padding: 9px 24px;
  text-decoration: none;
  text-transform: uppercase;
  color: #40434b;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 243, ../scss/core/_common.scss */
  .headline-block .view-more {
    display: none;
  }
}
/* line 264, ../scss/core/_common.scss */
.headline-block .view-more:hover {
  background-color: #F6F6F6;
}

/* -------------------------------------------- *
 * Block Module
 */
/* line 274, ../scss/core/_common.scss */
.block,
.col-left-first {
  margin-bottom: 20px;
}

/* line 280, ../scss/core/_common.scss */
.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

/* line 285, ../scss/core/_common.scss */
.block-title {
  position: relative;
  margin-bottom: 5px;
  padding: 10px 0 0;
  border-top: 0 solid #ebebeb;
}
/* line 294, ../scss/core/_common.scss */
.block-title h2,
.block-title h3,
.block-title strong {
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #369;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
}
/* line 308, ../scss/core/_common.scss */
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #a0a0a0;
}

/* line 318, ../scss/core/_common.scss */
body:not(.customer-account) .block:first-child .block-title {
  padding-top: 0;
  border-top: none;
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 326, ../scss/core/_common.scss */
  body:not(.cms-index-index) .main-container {
    padding-top: 15px;
  }
}

/* line 334, ../scss/core/_common.scss */
.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px;
}

/* line 341, ../scss/core/_common.scss */
.block-content {
  margin-top: 1.6em;
}

/* line 346, ../scss/core/_common.scss */
.block-content.unpad {
  padding: 0;
}

/* line 351, ../scss/core/_common.scss */
.block-content li.item {
  margin: 0 0 10px 9px;
}

/* line 356, ../scss/core/_common.scss */
.block-content li.item:last-child {
  margin-bottom: 0;
}

/* line 361, ../scss/core/_common.scss */
.block .actions {
  margin: 10px 0 0;
}
/* line 365, ../scss/core/_common.scss */
.block .actions:after {
  content: '';
  display: table;
  clear: both;
}
/* line 370, ../scss/core/_common.scss */
.block .actions a {
  float: left;
}
/* line 374, ../scss/core/_common.scss */
.block .actions .button, .block .actions .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .block .actions a {
  float: none;
}

/* line 384, ../scss/core/_common.scss */
.col-left .block .actions .button ~ a, .col-left .block .actions .klevuResultsBlock .klevuSuggestionHeading a ~ a, .klevuResultsBlock .klevuSuggestionHeading .col-left .block .actions a ~ a,
.col-right .block .actions .button ~ a,
.col-right .block .actions .klevuResultsBlock .klevuSuggestionHeading a ~ a,
.klevuResultsBlock .klevuSuggestionHeading .col-right .block .actions a ~ a {
  line-height: 33px;
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  /* line 397, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  /* line 401, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
  /* line 410, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
    font-weight: normal;
    position: relative;
    margin-bottom: 0;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #ebebeb;
    background-color: #f4f4f4;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 10px;
    text-transform: none;
    color: #40434B;
    text-rendering: optimizeSpeed;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  /* line 141, ../scss/mixin/_toggle-content.scss */
  .sidebar .block:not(.block-layered-nav) .block-title > strong:after {
    top: 50%;
    left: 10px;
    margin-top: -3px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid transparent;
    border-right: none;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #369;
  }
  /* line 151, ../scss/mixin/_toggle-content.scss */
  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  /* line 425, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    font-weight: normal;
    position: relative;
    margin-bottom: 0;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #ebebeb;
    background-color: #f4f4f4;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 10px;
    text-transform: none;
    color: #40434B;
    text-rendering: optimizeSpeed;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  /* line 141, ../scss/mixin/_toggle-content.scss */
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:after {
    top: 50%;
    left: 10px;
    margin-top: -3px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid #369;
    border-right: 4px solid transparent;
    border-bottom: none;
    border-left: 4px solid transparent;
  }
  /* line 151, ../scss/mixin/_toggle-content.scss */
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  /* line 432, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-content {
    margin-top: 0;
    padding: 10px;
    border-width: 0 1px;
    border-style: solid;
    border-color: #ebebeb;
  }
  /* line 444, ../scss/core/_common.scss */
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #ebebeb;
  }
}
/* -------------------------------------------- *
 * Secondary Navigation
 */
/* line 458, ../scss/core/_common.scss */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
/* line 465, ../scss/core/_common.scss */
.block-account li,
.block-cms-menu li {
  font-family: "Open Sans", sans-serif;
  margin: 7px 0;
  text-transform: uppercase;
}
/* line 473, ../scss/core/_common.scss */
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #369;
}
/* line 480, ../scss/core/_common.scss */
.block-account li a,
.block-cms-menu li a {
  color: #40434B;
}
/* line 484, ../scss/core/_common.scss */
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #369;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
/* line 497, ../scss/core/_common.scss */
.cart .buttons-set .button, .cart .buttons-set .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .cart .buttons-set a,
.cart-table .button,
.cart-table .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .cart-table a,
.sidebar .actions .button,
.sidebar .actions .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .sidebar .actions a,
.button.button-secondary,
.klevuResultsBlock .klevuSuggestionHeading a.button-secondary {
  padding: 9px 24px;
  color: #40434B;
  background: #ddd;
}
/* line 507, ../scss/core/_common.scss */
.cart .buttons-set .button:hover, .cart .buttons-set .klevuResultsBlock .klevuSuggestionHeading a:hover, .klevuResultsBlock .klevuSuggestionHeading .cart .buttons-set a:hover,
.cart-table .button:hover,
.cart-table .klevuResultsBlock .klevuSuggestionHeading a:hover,
.klevuResultsBlock .klevuSuggestionHeading .cart-table a:hover,
.sidebar .actions .button:hover,
.sidebar .actions .klevuResultsBlock .klevuSuggestionHeading a:hover,
.klevuResultsBlock .klevuSuggestionHeading .sidebar .actions a:hover,
.button.button-secondary:hover,
.klevuResultsBlock .klevuSuggestionHeading a.button-secondary:hover {
  cursor: pointer;
  background: #d0d0d0;
}
/* line 514, ../scss/core/_common.scss */
.cart .buttons-set .button:active, .cart .buttons-set .klevuResultsBlock .klevuSuggestionHeading a:active, .klevuResultsBlock .klevuSuggestionHeading .cart .buttons-set a:active,
.cart-table .button:active,
.cart-table .klevuResultsBlock .klevuSuggestionHeading a:active,
.klevuResultsBlock .klevuSuggestionHeading .cart-table a:active,
.sidebar .actions .button:active,
.sidebar .actions .klevuResultsBlock .klevuSuggestionHeading a:active,
.klevuResultsBlock .klevuSuggestionHeading .sidebar .actions a:active,
.button.button-secondary:active,
.klevuResultsBlock .klevuSuggestionHeading a.button-secondary:active {
  color: #40434B;
  background: #c4c4c4;
}
/* line 520, ../scss/core/_common.scss */
.cart .buttons-set .button:focus, .cart .buttons-set .klevuResultsBlock .klevuSuggestionHeading a:focus, .klevuResultsBlock .klevuSuggestionHeading .cart .buttons-set a:focus,
.cart-table .button:focus,
.cart-table .klevuResultsBlock .klevuSuggestionHeading a:focus,
.klevuResultsBlock .klevuSuggestionHeading .cart-table a:focus,
.sidebar .actions .button:focus,
.sidebar .actions .klevuResultsBlock .klevuSuggestionHeading a:focus,
.klevuResultsBlock .klevuSuggestionHeading .sidebar .actions a:focus,
.button.button-secondary:focus,
.klevuResultsBlock .klevuSuggestionHeading a.button-secondary:focus {
  color: #40434B;
  outline: none;
  background: #c4c4c4;
}

/* line 528, ../scss/core/_common.scss */
.sidebar .actions button.button {
  white-space: normal;
}

/* Primary Buttons */
/* line 535, ../scss/core/_common.scss */
.button, .klevuResultsBlock .klevuSuggestionHeading a,
.cart-table .product-cart-actions .button,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a,
#co-shipping-method-form .buttons-set .button,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a,
.footer .button,
.footer .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .footer a {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  display: inline-block;
  padding: 9px 24px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  color: #fff;
  border: 0;
  border-radius: 3px;
  background: #369;
  text-decoration: none !important;
}
/* line 560, ../scss/core/_common.scss */
.button:hover, .klevuResultsBlock .klevuSuggestionHeading a:hover,
.cart-table .product-cart-actions .button:hover,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a:hover,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a:hover,
#co-shipping-method-form .buttons-set .button:hover,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a:hover,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a:hover,
.footer .button:hover,
.footer .klevuResultsBlock .klevuSuggestionHeading a:hover,
.klevuResultsBlock .klevuSuggestionHeading .footer a:hover {
  cursor: pointer;
  background: #2d5986;
}
/* line 566, ../scss/core/_common.scss */
.button:active, .klevuResultsBlock .klevuSuggestionHeading a:active,
.cart-table .product-cart-actions .button:active,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a:active,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a:active,
#co-shipping-method-form .buttons-set .button:active,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a:active,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a:active,
.footer .button:active,
.footer .klevuResultsBlock .klevuSuggestionHeading a:active,
.klevuResultsBlock .klevuSuggestionHeading .footer a:active {
  color: #fff;
  background: #264d73;
}
/* line 571, ../scss/core/_common.scss */
.button:focus, .klevuResultsBlock .klevuSuggestionHeading a:focus,
.cart-table .product-cart-actions .button:focus,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a:focus,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a:focus,
#co-shipping-method-form .buttons-set .button:focus,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a:focus,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a:focus,
.footer .button:focus,
.footer .klevuResultsBlock .klevuSuggestionHeading a:focus,
.klevuResultsBlock .klevuSuggestionHeading .footer a:focus {
  color: #fff;
  outline: none;
  background-color: #264d73;
}
/* line 577, ../scss/core/_common.scss */
.button.invert, .klevuResultsBlock .klevuSuggestionHeading a.invert,
.cart-table .product-cart-actions .button.invert,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a.invert,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a.invert,
#co-shipping-method-form .buttons-set .button.invert,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a.invert,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a.invert,
.footer .button.invert,
.footer .klevuResultsBlock .klevuSuggestionHeading a.invert,
.klevuResultsBlock .klevuSuggestionHeading .footer a.invert {
  color: #369;
  border: 2px solid #369;
  background: transparent;
}
/* line 584, ../scss/core/_common.scss */
.button.btn-red, .klevuResultsBlock .klevuSuggestionHeading a.btn-red,
.cart-table .product-cart-actions .button.btn-red,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a.btn-red,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a.btn-red,
#co-shipping-method-form .buttons-set .button.btn-red,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a.btn-red,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a.btn-red,
.footer .button.btn-red,
.footer .klevuResultsBlock .klevuSuggestionHeading a.btn-red,
.klevuResultsBlock .klevuSuggestionHeading .footer a.btn-red {
  background-color: #F06543;
}
/* line 587, ../scss/core/_common.scss */
.button.btn-red:hover, .klevuResultsBlock .klevuSuggestionHeading a.btn-red:hover,
.cart-table .product-cart-actions .button.btn-red:hover,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a.btn-red:hover,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a.btn-red:hover,
#co-shipping-method-form .buttons-set .button.btn-red:hover,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a.btn-red:hover,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a.btn-red:hover,
.footer .button.btn-red:hover,
.footer .klevuResultsBlock .klevuSuggestionHeading a.btn-red:hover,
.klevuResultsBlock .klevuSuggestionHeading .footer a.btn-red:hover {
  background-color: #ee522b;
}
/* line 591, ../scss/core/_common.scss */
.button.btn-white, .klevuResultsBlock .klevuSuggestionHeading a.btn-white,
.cart-table .product-cart-actions .button.btn-white,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a.btn-white,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a.btn-white,
#co-shipping-method-form .buttons-set .button.btn-white,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a.btn-white,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a.btn-white,
.footer .button.btn-white,
.footer .klevuResultsBlock .klevuSuggestionHeading a.btn-white,
.klevuResultsBlock .klevuSuggestionHeading .footer a.btn-white {
  background-color: #ffffff;
  color: #40434B;
  border: 1px solid #D9D9D9;
}
/* line 596, ../scss/core/_common.scss */
.button.btn-white:hover, .klevuResultsBlock .klevuSuggestionHeading a.btn-white:hover,
.cart-table .product-cart-actions .button.btn-white:hover,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a.btn-white:hover,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a.btn-white:hover,
#co-shipping-method-form .buttons-set .button.btn-white:hover,
#co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a.btn-white:hover,
.klevuResultsBlock .klevuSuggestionHeading #co-shipping-method-form .buttons-set a.btn-white:hover,
.footer .button.btn-white:hover,
.footer .klevuResultsBlock .klevuSuggestionHeading a.btn-white:hover,
.klevuResultsBlock .klevuSuggestionHeading .footer a.btn-white:hover {
  color: #40434B;
  background-color: #f6f6f6;
}

/* line 603, ../scss/core/_common.scss */
a.button, .klevuResultsBlock .klevuSuggestionHeading a {
  text-decoration: none;
}

/* line 608, ../scss/core/_common.scss */
a.button:hover, .klevuResultsBlock .klevuSuggestionHeading a:hover {
  color: #fff;
}

/* Disabled - class for anchor, state for form elements */
/* line 614, ../scss/core/_common.scss */
.button.disabled, .klevuResultsBlock .klevuSuggestionHeading a.disabled,
.button:disabled,
.klevuResultsBlock .klevuSuggestionHeading a:disabled {
  cursor: not-allowed;
  opacity: .6;
  background: #c8c8c8;
}

/* Adjacent buttons */
/* line 624, ../scss/core/_common.scss */
.button + .button, .klevuResultsBlock .klevuSuggestionHeading a + .button, .klevuResultsBlock .klevuSuggestionHeading .button + a, .klevuResultsBlock .klevuSuggestionHeading a + a {
  margin-left: 5px;
}

/* line 641, ../scss/core/_common.scss */
.button2 {
  margin: 0;
  padding: 0 5px;
  cursor: pointer;
  vertical-align: middle;
  border: 0;
  background: transparent;
}

/* line 653, ../scss/core/_common.scss */
.button2:focus {
  outline: none;
}

/* line 658, ../scss/core/_common.scss */
.button2 span,
.button2 span span {
  font-family: "Open Sans", sans-serif;
  line-height: 30px;
  display: inline-block;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  color: #369;
}
/* line 673, ../scss/core/_common.scss */
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #204060;
}

@media only screen and (max-width: 768px) {
  /* line 685, ../scss/core/_common.scss */
  .col2-set .buttons-set .button, .col2-set .buttons-set .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .col2-set .buttons-set a,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  /* line 694, ../scss/core/_common.scss */
  .col2-set .buttons-set .back-link {
    display: none;
  }
  /* line 698, ../scss/core/_common.scss */
  .col2-set .buttons-set .required {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 709, ../scss/core/_common.scss */
  .buttons-set .button, .buttons-set .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .buttons-set a {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 7px;
    margin-left: 0;
  }
  /* line 718, ../scss/core/_common.scss */
  .buttons-set .back-link {
    display: none;
  }
  /* line 722, ../scss/core/_common.scss */
  .buttons-set .required {
    display: none;
  }
}
/* -------------------------------------------- *
 * Paypal Button
 */
/* line 733, ../scss/core/_common.scss */
.paypal-logo.paypal-after {
  float: left;
}

/* line 738, ../scss/core/_common.scss */
.paypal-after .paypal-or {
  float: left;
}

/* line 743, ../scss/core/_common.scss */
.paypal-or {
  line-height: 34px;
  margin: 0 10px 5px;
}

/* line 750, ../scss/core/_common.scss */
.paypal-after .paypal-button {
  float: left;
}

/* line 755, ../scss/core/_common.scss */
.paypal-button {
  line-height: 0;
}

/* line 760, ../scss/core/_common.scss */
.paypal-button img {
  display: inline;
}

@media only screen and (max-width: 740px) {
  /* line 767, ../scss/core/_common.scss */
  .paypal-or {
    line-height: 20px;
  }

  /* line 772, ../scss/core/_common.scss */
  .paypal-logo,
  .paypal-or,
  .paypal-button {
    display: block;
    float: none;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }
}
/* -------------------------------------------- *
 * Button Sets
 */
/* line 791, ../scss/core/_common.scss */
.buttons-set {
  clear: both;
  margin: 10px 0 24px;
  padding-top: 10px;
  text-align: right;
  border-top: 1px solid #ededed;
}
/* line 802, ../scss/core/_common.scss */
.buttons-set p.required {
  line-height: 33px;
  float: right;
  margin: 0;
  margin-left: 10px;
}
/* line 811, ../scss/core/_common.scss */
.buttons-set .back-link {
  line-height: 33px;
  float: left;
  margin: 0;
}
/* line 819, ../scss/core/_common.scss */
.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}
/* line 827, ../scss/core/_common.scss */
.buttons-set button.button {
  float: right;
  min-width: 140px;
  margin-left: 5px;
}
/* line 835, ../scss/core/_common.scss */
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */
/* line 845, ../scss/core/_common.scss */
.icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, .skip-account .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(../../images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  /* line 855, ../scss/core/_common.scss */
  .icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, .skip-account .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
    background-image: url(../../images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
/* -------------------------------------------- *
 * Breadcrumbs
 */
/* line 866, ../scss/core/_common.scss */
.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px;
}

/* line 873, ../scss/core/_common.scss */
.breadcrumbs li {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  float: left;
}

/* line 881, ../scss/core/_common.scss */
.breadcrumbs a {
  float: left;
  color: #40434B;
}

/* line 888, ../scss/core/_common.scss */
.breadcrumbs strong {
  font-weight: normal;
  color: #40434B;
}

/* line 895, ../scss/core/_common.scss */
.breadcrumbs span {
  float: left;
  padding: 0 7px;
}

@media only screen and (max-width: 767px) {
  /* line 904, ../scss/core/_common.scss */
  .breadcrumbs {
    display: none;
  }
}
/* -------------------------------------------- *
 * Button - Remove / Previous
 */
/* line 914, ../scss/core/_common.scss */
.btn-remove,
.btn-previous {
  /* Hide text */
  font: 0/0 a;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  color: transparent;
  border: 1px solid #ededed;
  text-shadow: none;
}
/* line 933, ../scss/core/_common.scss */
.btn-remove:hover,
.btn-previous:hover {
  border-color: #369;
  background-color: #369;
}

/* line 942, ../scss/core/_common.scss */
.btn-remove:after {
  font-family: Arial, "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 20px;
  width: 100%;
  height: 20px;
  content: 'X';
  color: #369;
}
/* line 956, ../scss/core/_common.scss */
.btn-remove:hover:after {
  text-decoration: none;
  color: #fff;
}

/* line 964, ../scss/core/_common.scss */
.btn-remove2 {
  vertical-align: top;
  border: none;
  background-position: 4px -648px;
}
/* line 974, ../scss/core/_common.scss */
.btn-remove2:after {
  display: none;
}
/* line 978, ../scss/core/_common.scss */
.btn-remove2:hover {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

/* line 988, ../scss/core/_common.scss */
.btn-previous:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -2px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid transparent;
  border-right: 4px solid #369;
  border-bottom: 4px solid transparent;
  border-left: none;
}
/* line 999, ../scss/core/_common.scss */
.btn-previous:hover:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid transparent;
  border-right: 4px solid #fff;
  border-bottom: 4px solid transparent;
  border-left: none;
}

/* line 1009, ../scss/core/_common.scss */
.block-layered-nav .currently .btn-remove,
.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-remove,
.mini-products-list .btn-previous,
#compare-items .btn-remove,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px;
}

/* -------------------------------------------- *
 * Checkout Agreements
 */
/* line 1022, ../scss/core/_common.scss */
.checkout-agreements li {
  margin-bottom: 20px;
}

/* line 1027, ../scss/core/_common.scss */
.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ebebeb;
  background: #f4f4f4;
}

/* -------------------------------------------- *
 * CVV Security Code
 */
/* line 1044, ../scss/core/_common.scss */
.cvv-what-is-this {
  font-size: 13px;
  line-height: 24px;
  margin-left: 10px;
}

/* -------------------------------------------- *
 * Container
 */
/* line 1056, ../scss/core/_common.scss */
.main-container,
.footer-container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}
/* line 1065, ../scss/core/_common.scss */
.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1080, ../scss/core/_common.scss */
.footer-container {
  padding-top: 0;
}

/* -------------------------------------------- *
 * Column Layouts
 */
/* line 1089, ../scss/core/_common.scss */
.main:after,
.col-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1095, ../scss/core/_common.scss */
.col-left,
.col-right,
.col-main {
  padding: 0 10px;
}
@media (min-width: 768px) {
  /* line 1095, ../scss/core/_common.scss */
  .col-left,
  .col-right,
  .col-main {
    margin-top: 32px;
  }
}

/* line 1107, ../scss/core/_common.scss */
.col-left {
  float: left;
  clear: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
}
/* line 1115, ../scss/core/_common.scss */
.col-left img {
  max-width: 100%;
}

/* line 1121, ../scss/core/_common.scss */
.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */
}
/* line 1128, ../scss/core/_common.scss */
.col-right img {
  max-width: 100%;
}

/* line 1134, ../scss/core/_common.scss */
.col-main {
  float: left;
  width: 75%;
}

/* line 1143, ../scss/core/_common.scss */
.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0;
  /* Remove the 15px padding */
}

/* line 1154, ../scss/core/_common.scss */
.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  /* Remove the 15px padding */
  padding-left: 2em;
}

/* line 1165, ../scss/core/_common.scss */
.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */
}

/* line 1173, ../scss/core/_common.scss */
.col3-layout .col-right {
  width: 20.83333%;
}
/* line 1178, ../scss/core/_common.scss */
.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%;
}
/* line 1184, ../scss/core/_common.scss */
.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%;
}
/* line 1191, ../scss/core/_common.scss */
.col3-layout .col-wrapper .col-left {
  width: 26.31579%;
}

@media only screen and (max-width: 1000px) {
  /* line 1202, ../scss/core/_common.scss */
  .col3-layout .col-right {
    float: left;
    clear: left;
    width: 25%;
    padding-right: 10px;
    padding-left: 0;
  }
  /* line 1212, ../scss/core/_common.scss */
  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }
  /* line 1218, ../scss/core/_common.scss */
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }
  /* line 1225, ../scss/core/_common.scss */
  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  /* line 1235, ../scss/core/_common.scss */
  .col-left,
  .col-right,
  .col-main,
  .col1-layout .col-left,
  .col1-layout .col-right,
  .col1-layout .col-main,
  .col2-left-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-main,
  .col2-right-layout .col-left,
  .col2-right-layout .col-right,
  .col2-right-layout .col-main,
  .col3-layout .col-wrapper .col-left,
  .col3-layout .col-right,
  .col3-layout .col-wrapper .col-main {
    float: none;
    width: auto;
    margin-bottom: 10px;
    padding: 0;
  }

  /* line 1258, ../scss/core/_common.scss */
  .col3-layout .col-wrapper {
    float: none;
    width: auto;
  }

  /* line 1265, ../scss/core/_common.scss */
  .col-main {
    float: none;
    width: auto;
  }

  /* line 1272, ../scss/core/_common.scss */
  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */
  }
}
/* Content Columns */
/* line 1280, ../scss/core/_common.scss */
.col2-set {
  width: 100%;
}
@media only screen and (max-width: 479px) {
  /* line 1286, ../scss/core/_common.scss */
  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    border: 0;
  }
}
/* line 1299, ../scss/core/_common.scss */
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  /* line 1299, ../scss/core/_common.scss */
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}
/* line 1311, ../scss/core/_common.scss */
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
/* line 1318, ../scss/core/_common.scss */
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
/* line 1325, ../scss/core/_common.scss */
.col2-set .narrow {
  width: 33%;
}
/* line 1330, ../scss/core/_common.scss */
.col2-set .wide {
  width: 65%;
}
/* line 1335, ../scss/core/_common.scss */
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 769px) {
  /* line 1346, ../scss/core/_common.scss */
  .top-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
/* -------------------------------------------- *
 * Global Site Notice
 */
/* line 1358, ../scss/core/_common.scss */
.global-site-notice {
  font-size: 11px;
  color: #e6e6e6;
  background: #676157;
}
/* line 1365, ../scss/core/_common.scss */
.global-site-notice .notice-inner {
  line-height: 11px;
  width: 100%;
  max-width: 1200px;
  min-height: 40px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  padding-left: 120px;
  background-image: url("../../images/demo-logo.png");
  background-repeat: no-repeat;
  background-position: left;
}
/* line 1383, ../scss/core/_common.scss */
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
/* line 1393, ../scss/core/_common.scss */
.promo-msg {
  font-family: "Open Sans", sans-serif;
  margin: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #369;
}

/* -------------------------------------------- *
 * Grid
 */
/* line 1409, ../scss/core/_common.scss */
.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
/* line 1417, ../scss/core/_common.scss */
.success {
  color: #75c3b5;
}

/* line 1422, ../scss/core/_common.scss */
.error {
  font-weight: bold;
  color: #df280a;
}

/* line 1429, ../scss/core/_common.scss */
.notice {
  font-weight: bold;
  color: #e26703;
}

/* -------------------------------------------- *
 * Messages
 */
/* line 1440, ../scss/core/_common.scss */
.messages {
  margin-bottom: 10px;
}

/* line 1445, ../scss/core/_common.scss */
.messages li li {
  font-size: 15px;
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #f4f4f4;
}

/* line 1457, ../scss/core/_common.scss */
.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px;
}

/* line 1465, ../scss/core/_common.scss */
.messages .error-msg li {
  color: #000;
  border-left: 5px solid #df280a;
  background-color: #faebe7;
}

/* line 1472, ../scss/core/_common.scss */
.messages .error-msg li:before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 6px solid transparent;
  border-right: none;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #df280a;
}

/* line 1477, ../scss/core/_common.scss */
.messages .notice-msg li {
  color: #000;
  border-left: 5px solid #e26703;
  background-color: #f9ebe6;
}

/* line 1484, ../scss/core/_common.scss */
.messages .notice-msg li:before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 6px solid transparent;
  border-right: none;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #e26703;
}

/* line 1489, ../scss/core/_common.scss */
.messages .success-msg li {
  color: #000;
  border-left: 5px solid #75c3b5;
  background-color: #eff5ea;
}

/* line 1496, ../scss/core/_common.scss */
.messages .success-msg li:before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 6px solid transparent;
  border-right: none;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #75c3b5;
}

@media only screen and (min-width: 915px) {
  /* line 1505, ../scss/core/_common.scss */
  .order-list-grid .col-1 {
    width: 30%;
  }

  /* line 1510, ../scss/core/_common.scss */
  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px;
  }

  /* line 1516, ../scss/core/_common.scss */
  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0;
  }
}
/* -------------------------------------------- *
 * Page Popup
 */
/* line 1529, ../scss/core/_common.scss */
.page-popup {
  height: auto;
  padding: 20px;
  background: #fff;
}

/* line 1537, ../scss/core/_common.scss */
.page-popup h1 {
  font-size: 36px;
  margin: 0 0 .5em;
}

/* -------------------------------------------- *
 * Payment Methods
 */
/* line 1548, ../scss/core/_common.scss */
.payment-methods {
  margin-bottom: 20px;
}

/* line 1553, ../scss/core/_common.scss */
.payment-methods dt {
  padding: 5px 0;
}

/* line 1558, ../scss/core/_common.scss */
.payment-methods dd {
  padding-top: 0px;
}

/* line 1563, ../scss/core/_common.scss */
.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #ebebeb;
  background: #f4f4f4;
}

/* line 1577, ../scss/core/_common.scss */
.payment-methods .form-list:before {
  top: -11px;
  left: 30px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: none;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ebebeb;
  border-left: 10px solid transparent;
}

/* line 1585, ../scss/core/_common.scss */
.payment-methods .form-list:after {
  top: -10px;
  left: 30px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: none;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f4f4f4;
  border-left: 10px solid transparent;
}

/* line 1593, ../scss/core/_common.scss */
.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
/* line 1602, ../scss/core/_common.scss */
.please-wait {
  line-height: 24px;
  display: inline-block;
  height: 24px;
  margin-top: 5px;
  margin-left: 10px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */
}
/* line 1614, ../scss/core/_common.scss */
.please-wait img {
  float: left;
  width: 24px;
  margin-right: 5px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
/* line 1627, ../scss/core/_common.scss */
.price-box {
  font-family: "Open Sans", sans-serif;
  margin: 7px 0;
  text-align: center;
}

/* line 1636, ../scss/core/_common.scss */
.price-box p {
  margin-bottom: 0;
}

/* line 1641, ../scss/core/_common.scss */
.price-notice {
  color: #000;
}

/* line 1648, ../scss/core/_common.scss */
.price-box .price {
  font-weight: 600;
  color: #369;
}

/* line 1656, ../scss/core/_common.scss */
.price-box .price,
.price {
  font-family: "Open Sans", sans-serif;
}

/* line 1662, ../scss/core/_common.scss */
.price-box .price-label {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  color: #f00;
}

/* line 1671, ../scss/core/_common.scss */
.price-box .price-to .price-label {
  font-size: 14px;
  font-weight: 700;
}

/* line 1676, ../scss/core/_common.scss */
.price-box .minimal-price-link {
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
  padding-left: 1em;
  color: #369;
}
/* line 1684, ../scss/core/_common.scss */
.price-box .minimal-price-link .label {
  color: #a0a0a0;
}

/* -------------------------------------------- *
 * Price Box - Special
 */
/* line 1694, ../scss/core/_common.scss */
.product-view .price-box .old-price {
  margin-left: 0;
}

/* line 1699, ../scss/core/_common.scss */
.price-box .old-price,
.price-box .special-price {
  display: block;
  order: 1;
  width: 100%;
  clear: left;
}
/* line 1707, ../scss/core/_common.scss */
.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: inline-block;
}
/* line 1712, ../scss/core/_common.scss */
.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
}

/* line 1720, ../scss/core/_common.scss */
.price-box .old-price .price {
  font-weight: 400 !important;
  color: #369 !important;
  text-decoration: line-through;
}

/* line 1735, ../scss/core/_common.scss */
.price-box .special-price .price-label {
  color: #d84d3c;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
/* line 1745, ../scss/core/_common.scss */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

/* line 1751, ../scss/core/_common.scss */
span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
/* line 1760, ../scss/core/_common.scss */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  margin-top: 7px;
  padding: 4px 8px;
  border: 1px solid #e2d4c7;
  background: #fbf4de;
}
/* line 1772, ../scss/core/_common.scss */
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
/* line 1776, ../scss/core/_common.scss */
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
/* line 1780, ../scss/core/_common.scss */
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
/* line 1790, ../scss/core/_common.scss */
.item-options {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}
/* line 1795, ../scss/core/_common.scss */
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1800, ../scss/core/_common.scss */
.item-options dt {
  font-weight: 600;
  font-style: italic;
  float: left;
  clear: left;
  padding-right: 5px;
}
/* line 1810, ../scss/core/_common.scss */
.item-options dt:after {
  content: ': ';
}
/* line 1816, ../scss/core/_common.scss */
.item-options dd {
  float: left;
  margin: 0 0 6px;
  padding-left: 10px;
}

/* line 1825, ../scss/core/_common.scss */
.truncated,
.truncated a.dots {
  cursor: help;
}

/* line 1831, ../scss/core/_common.scss */
.truncated a.details {
  line-height: 16px;
  height: 16px;
  cursor: help;
}
/* line 1839, ../scss/core/_common.scss */
.truncated a.details:hover {
  text-decoration: none;
}

/* line 1845, ../scss/core/_common.scss */
.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
}

/* line 1851, ../scss/core/_common.scss */
.truncated .truncated_full_value .item-options {
  position: absolute;
  z-index: 300;
  top: 21px;
  left: -100px;
  display: none;
  width: 200px;
  padding: 8px;
  border: 1px solid #369;
  background-color: #f6f6f6;
}
/* line 1866, ../scss/core/_common.scss */
.truncated .truncated_full_value .item-options:after {
  top: -7px;
  left: 97px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: none;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #369;
  border-left: 7px solid transparent;
}

/* line 1875, ../scss/core/_common.scss */
.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* line 1884, ../scss/core/_common.scss */
.truncated .show .item-options {
  display: block;
}

@media only screen and (max-width: 479px) {
  /* line 1891, ../scss/core/_common.scss */
  .truncated {
    cursor: inherit;
  }
  /* line 1895, ../scss/core/_common.scss */
  .truncated a.details {
    display: none;
  }
  /* line 1902, ../scss/core/_common.scss */
  .truncated .truncated_full_value .item-options {
    position: static;
    z-index: 1;
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
  }
  /* line 1914, ../scss/core/_common.scss */
  .truncated .truncated_full_value .item-options p {
    float: none;
  }
  /* line 1919, ../scss/core/_common.scss */
  .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}
/* -------------------------------------------- *
 * Printer Friendly Page
 */
/* line 1932, ../scss/core/_common.scss */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #fff;
}

/* -------------------------------------------- *
 * Add to links
 */
/* line 1944, ../scss/core/_common.scss */
.add-to-links {
  margin: 7px 0;
}
/* line 1948, ../scss/core/_common.scss */
.add-to-links a {
  display: inline-block;
  padding: 0 3px 3px;
}

/* line 1956, ../scss/core/_common.scss */
.add-to-links .separator {
  display: none;
}

/* -------------------------------------------- *
 * Best seller badge
 */
/* line 1965, ../scss/core/_common.scss */
.product__wrapper .best-seller, .products-grid .best-seller {
  position: absolute;
  left: -1px;
  top: 8px;
  font-size: 12px;
  font-weight: 600;
  background: #F06543;
  color: #ffffff;
  z-index: 9;
  padding: 2px 6px;
}
/* line 1976, ../scss/core/_common.scss */
.product__wrapper .best-seller span, .products-grid .best-seller span {
  position: relative;
}
/* line 1979, ../scss/core/_common.scss */
.product__wrapper .best-seller span:before, .product__wrapper .best-seller span:after, .products-grid .best-seller span:before, .products-grid .best-seller span:after {
  position: absolute;
  right: -17px;
  content: '';
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
}
/* line 1989, ../scss/core/_common.scss */
.product__wrapper .best-seller span:before, .products-grid .best-seller span:before {
  border-top: 11px solid #F06543;
  top: -4px;
}
/* line 1994, ../scss/core/_common.scss */
.product__wrapper .best-seller span:after, .products-grid .best-seller span:after {
  border-bottom: 11px solid #F06543;
  bottom: -4px;
}

/* -------------------------------------------- *
 * Product Image
 */
/* line 2006, ../scss/core/_common.scss */
.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
  border: none;
}

@media only screen and (max-width: 768px) {
  /* line 2018, ../scss/core/_common.scss */
  body .product-img-box .product-image:hover {
    border-color: #ededed;
  }
}
/* line 2024, ../scss/core/_common.scss */
.no-touch .product-image:hover {
  border-color: #369;
}

/* -------------------------------------------- *
 * Ratings
 */
/* line 2033, ../scss/core/_common.scss */
.ratings {
  margin: 7px 0;
}
/* line 2037, ../scss/core/_common.scss */
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
/* line 2043, ../scss/core/_common.scss */
.ratings .rating-box {
  overflow: hidden;
  width: 65px;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
}
/* line 2055, ../scss/core/_common.scss */
.ratings .rating-box .rating {
  float: left;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -600px;
}
/* line 2066, ../scss/core/_common.scss */
.ratings .amount {
  display: block;
  margin: 5px auto;
}
/* line 2075, ../scss/core/_common.scss */
.ratings .rating-links .separator {
  margin: 0 3px;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
/* line 2086, ../scss/core/_common.scss */
.std p {
  margin: 0 0 1.5em;
  color: #4D5057;
}

/* line 2092, ../scss/core/_common.scss */
.std ol {
  margin-bottom: 1.5em;
  list-style: decimal outside;
}

/* line 2099, ../scss/core/_common.scss */
.std ol li {
  margin-left: 2em;
}

/* line 2104, ../scss/core/_common.scss */
.std ul {
  margin-bottom: 1.5em;
  list-style: disc outside;
}

/* line 2111, ../scss/core/_common.scss */
.std ul li {
  margin-left: 2em;
}

/* line 2116, ../scss/core/_common.scss */
.std .note {
  font-size: 13px;
  color: #a0a0a0;
}

/* -------------------------------------------- *
 * Tabs
 */
/* line 2127, ../scss/core/_common.scss */
.tabs {
  margin-bottom: 10px;
  background: #fff;
}

/* -------------------------------------------- *
 * Toolbar
 */
/* line 2138, ../scss/core/_common.scss */
.toolbar {
  margin-top: 10px;
  margin-bottom: .2em;
  padding: 5px 10px 0 0;
  border-bottom: 1px solid #ede7e2;
  background: #f4f4f4;
}
/* line 2147, ../scss/core/_common.scss */
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

/* line 2153, ../scss/core/_common.scss */
.pager-no-toolbar {
  margin-bottom: 10px;
}

/* line 2159, ../scss/core/_common.scss */
.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px;
}

/* line 2164, ../scss/core/_common.scss */
.toolbar,
.pager {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 30px;
  color: #40434B;
}

/* line 2174, ../scss/core/_common.scss */
.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase;
}

/* line 2184, ../scss/core/_common.scss */
.sorter {
  float: left;
  margin-bottom: 5px;
}
/* line 2190, ../scss/core/_common.scss */
.sorter label {
  float: left;
  margin-right: 8px;
}
/* line 2196, ../scss/core/_common.scss */
.sorter label:after {
  content: ':';
}

/* line 2203, ../scss/core/_common.scss */
.sorter > .sort-by {
  float: left;
  height: 30px;
  margin-right: 5px;
}
/* line 2210, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher {
  display: inline-block;
  width: 30px;
  height: 30px;
}
/* line 2219, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
/* line 2222, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
/* line 2227, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
/* line 2230, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

/* line 2237, ../scss/core/_common.scss */
.sorter > .view-mode {
  float: left;
}
/* line 2241, ../scss/core/_common.scss */
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}
/* line 2251, ../scss/core/_common.scss */
.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}
/* line 2257, ../scss/core/_common.scss */
.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}
/* line 2262, ../scss/core/_common.scss */
.sorter > .view-mode .list {
  background-position: 11px -517px;
}
/* line 2267, ../scss/core/_common.scss */
.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

/* line 2274, ../scss/core/_common.scss */
.pager {
  float: right;
  overflow: hidden;
}
/* line 2279, ../scss/core/_common.scss */
.pager > .count-container {
  float: left;
}
/* line 2284, ../scss/core/_common.scss */
.pager .amount {
  font-family: "Open Sans", sans-serif;
  float: left;
  margin: 0 15px 0 0;
  white-space: nowrap;
}
/* line 2295, ../scss/core/_common.scss */
.pager .limiter {
  line-height: 30px;
  float: left;
  height: 30px;
}
/* line 2303, ../scss/core/_common.scss */
.pager .limiter > label {
  padding-right: 5px;
}
/* line 2307, ../scss/core/_common.scss */
.pager .limiter > label:after {
  content: ':';
}
/* line 2314, ../scss/core/_common.scss */
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

/* line 2322, ../scss/core/_common.scss */
.pages {
  float: right;
  overflow: hidden;
  margin-left: 15px;
}
/* line 2329, ../scss/core/_common.scss */
.pages strong {
  display: none;
}

/* line 2335, ../scss/core/_common.scss */
.pages li {
  float: left;
}

/* line 2340, ../scss/core/_common.scss */
.pages a,
.pages .current {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 30px;
  display: inline-block;
  width: 25px;
  height: 30px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  color: #369;
  border: 0;
}

/* line 2362, ../scss/core/_common.scss */
.pages .current,
.pages .current:hover {
  width: 30px;
  cursor: default;
  color: #40434B;
  border: 1px solid #ebebeb;
  background-color: #fff;
}

/* line 2374, ../scss/core/_common.scss */
.pages .next,
.pages .previous {
  font: 0/0 a;
  position: relative;
  color: transparent;
  background-color: transparent;
  text-shadow: none;
}
/* line 2386, ../scss/core/_common.scss */
.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #369;
}

/* line 2394, ../scss/core/_common.scss */
.pages .next:before {
  top: 50%;
  left: 50%;
  margin-top: -3px;
  margin-left: -2px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid transparent;
  border-right: none;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #369;
}
/* line 2404, ../scss/core/_common.scss */
.pages .next:hover:before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid transparent;
  border-right: none;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #204060;
}

/* line 2412, ../scss/core/_common.scss */
.pages .previous:before {
  top: 50%;
  left: 50%;
  margin-top: -3px;
  margin-left: -2px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid transparent;
  border-right: 4px solid #369;
  border-bottom: 4px solid transparent;
  border-left: none;
}
/* line 2422, ../scss/core/_common.scss */
.pages .previous:hover:before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid transparent;
  border-right: 4px solid #204060;
  border-bottom: 4px solid transparent;
  border-left: none;
}

@media only screen and (max-width: 479px) {
  /* line 2432, ../scss/core/_common.scss */
  .pager .amount--has-pages {
    display: none;
  }

  /* line 2437, ../scss/core/_common.scss */
  .pages {
    float: left;
  }

  /* line 2443, ../scss/core/_common.scss */
  .limiter label {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  /* line 2454, ../scss/core/_common.scss */
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  /* line 2460, ../scss/core/_common.scss */
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  /* line 2465, ../scss/core/_common.scss */
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  /* line 2472, ../scss/core/_common.scss */
  .col1-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 979px) {
  /* line 2486, ../scss/core/_common.scss */
  .col2-left-layout .sorter,
  .col2-left-layout .pager,
  .col2-right-layout .sorter,
  .col2-right-layout .pager,
  .col3-layout .sorter,
  .col3-layout .pager {
    width: 100%;
  }
  /* line 2492, ../scss/core/_common.scss */
  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: left;
    clear: both;
  }
  /* line 2497, ../scss/core/_common.scss */
  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  /* line 2504, ../scss/core/_common.scss */
  .col2-left-layout .pager .count-container,
  .col2-right-layout .pager .count-container,
  .col3-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 1279px) {
  /* line 2514, ../scss/core/_common.scss */
  .toolbar .view-mode > label {
    display: none;
  }
}
/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
/* line 2528, ../scss/core/_common.scss */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
/* line 2534, ../scss/core/_common.scss */
#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  position: static;
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 7px solid #369;
  border-right: 7px solid transparent;
  border-bottom: none;
  border-left: 7px solid transparent;
}
/* line 2544, ../scss/core/_common.scss */
#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  position: static;
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 7px solid #204060;
  border-right: 7px solid transparent;
  border-bottom: none;
  border-left: 7px solid transparent;
}
/* line 2560, ../scss/core/_common.scss */
#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  position: static;
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: none;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #369;
  border-left: 7px solid transparent;
}
/* line 2570, ../scss/core/_common.scss */
#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  position: static;
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: none;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #204060;
  border-left: 7px solid transparent;
}

/* line 2587, ../scss/core/_common.scss */
#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px;
}

/* ============================================ *
 * Magento Helpers
 * ============================================ */
/* line 2598, ../scss/core/_common.scss */
.a-center {
  text-align: center;
}

/* line 2603, ../scss/core/_common.scss */
.a-right,
.align-right {
  text-align: right;
}

/* line 2609, ../scss/core/_common.scss */
.no-display {
  display: none !important;
}

/* line 2614, ../scss/core/_common.scss */
.nobr,
.nowrap {
  white-space: nowrap;
}

/* line 2620, ../scss/core/_common.scss */
.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */
/* line 2629, ../scss/core/_common.scss */
.hidden {
  display: none;
}

/* ============================================ *
 * Print Styles
 * ============================================ */
/* line 2638, ../scss/core/_common.scss */
.page-print .print-head {
  margin: 0 0 15px;
}

/* line 2643, ../scss/core/_common.scss */
.page-print .print-head .logo {
  float: none;
  width: auto;
  max-height: 50px;
}

/* line 2651, ../scss/core/_common.scss */
#block-related li .price-box .price-from,
#block-related li .price-box .price-to {
  text-align: center;
  align: center;
}

/* ============================================ *
 * Popup Styles
 * ============================================ */
/* line 2663, ../scss/core/_common.scss */
.quickview_popup_container {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 500px;
  margin-top: -250px;
  margin-left: -400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/* line 2676, ../scss/core/_common.scss */
.quickview_popup_container .quickview_popup {
  height: 500px;
  background: #F6F6F6;
}
/* line 2684, ../scss/core/_common.scss */
.quickview_popup_container .quickview_popup .quickview_close a {
  position: absolute;
  top: 10px;
  right: 18px;
  width: 25px;
  height: 25px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  opacity: .5;
  background: url(../../images/qquoteadv/close-button.png) no-repeat;
}
/* line 2701, ../scss/core/_common.scss */
.quickview_popup_container .quickview_popup .quickview_close a:hover {
  opacity: 1;
}
/* line 2706, ../scss/core/_common.scss */
.quickview_popup_container .quickview_popup .speccontent {
  position: absolute;
  top: 50px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
}
/* line 2717, ../scss/core/_common.scss */
.quickview_popup_container .quickview_popup .speccontent p {
  margin-bottom: 16px;
}

/* line 2724, ../scss/core/_common.scss */
.quickview_popup_back {
  position: fixed;
  z-index: 8889;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  background: black;
}

@media only screen and (max-width: 479px) {
  /* line 2742, ../scss/core/_common.scss */
  .quickview_popup_container {
    left: 0;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* line 2752, ../scss/core/_common.scss */
  .quickview_popup_container {
    left: 0;
    width: 100%;
    margin-left: 0;
  }
}
/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
/* line 36, ../scss/core/_form.scss */
.fieldset p {
  margin-bottom: 7px;
}
/* line 41, ../scss/core/_form.scss */
.fieldset p.required {
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 52, ../scss/core/_form.scss */
.fieldset + .fieldset {
  margin-top: 5px;
}

/* line 57, ../scss/core/_form.scss */
form .legend {
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ededed;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
}

/* -------------------------------------------- *
 * Input Box
 */
/* line 74, ../scss/core/_form.scss */
.input-box:after {
  content: '';
  display: table;
  clear: both;
}

/* line 82, ../scss/core/_form.scss */
li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle;
}

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
/* line 93, ../scss/core/_form.scss */
.input-box .v-fix {
  float: left;
  max-width: 100%;
  margin-right: 5px;
}

/* -------------------------------------------- *
 * Labels
 */
/* line 105, ../scss/core/_form.scss */
label {
  font-size: 12px;
  font-weight: 700;
  color: #40434B;
  display: inline-block;
  margin-bottom: 8px;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* line 116, ../scss/core/_form.scss */
label.required:after,
span.required:after {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  content: ' *';
}

/* line 128, ../scss/core/_form.scss */
label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
/* line 138, ../scss/core/_form.scss */
.input-hint {
  font-size: 12px;
  color: #a0a0a0;
}

/* -------------------------------------------- *
 * Select
 */
/* line 149, ../scss/core/_form.scss */
select {
  font-size: 14px;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
  padding: 9px 24px 9px 12px;
  appearance: none;
  -webkit-appearance: none;
  background: #fff url(../images/icon-selectarrow.svg) no-repeat;
  background-position: right;
  background-size: 24px;
  height: 36px;
  line-height: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 167, ../scss/core/_form.scss */
select + select {
  margin-left: 5px;
}

/* line 172, ../scss/core/_form.scss */
select[multiple] {
  font-size: 15px;
  width: 270px;
  padding: 5px;
  border: 1px solid #c0c0c0;
}

/* -------------------------------------------- *
 * Textarea
 */
/* line 186, ../scss/core/_form.scss */
textarea {
  width: 100%;
  max-width: 450px;
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* -------------------------------------------- *
 * Inputs
 */
/* line 198, ../scss/core/_form.scss */
.input-text {
  font-size: 15px;
  border: 1px solid #c0c0c0;
  background: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 205, ../scss/core/_form.scss */
.input-text:focus {
  border: 1px solid #369;
}

/* line 211, ../scss/core/_form.scss */
.input-text.validation-failed {
  border-color: #df280a;
}

/* line 217, ../scss/core/_form.scss */
.input-text.validation-failed:focus {
  outline-color: #ef9485;
}

/* line 222, ../scss/core/_form.scss */
input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 36px;
  padding: 9px 12px;
}

/* line 233, ../scss/core/_form.scss */
input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  max-width: 100%;
}

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  /* line 247, ../scss/core/_form.scss */
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */
  }
}
/* line 259, ../scss/core/_form.scss */
.ie8 .input-text {
  max-width: none;
}

/* -------------------------------------------- *
 * Inputs - Quantity
 */
/* line 268, ../scss/core/_form.scss */
input[type=number].qty,
input[type=text].qty {
  width: 3em;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------- *
 * Placeholder
 */
/* line 281, ../scss/core/_form.scss */
::-webkit-input-placeholder {
  color: #a0a0a0;
}

/* line 286, ../scss/core/_form.scss */
input:-moz-placeholder {
  color: #a0a0a0;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */
/* line 295, ../scss/core/_form.scss */
.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

/* line 304, ../scss/core/_form.scss */
.checkbox + label,
.radio + label {
  font-size: 14px;
  font-weight: normal;
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  vertical-align: top;
}

/* -------------------------------------------- *
 * Validation
 */
/* line 321, ../scss/core/_form.scss */
p.required,
.validation-advice {
  font-size: 13px;
  margin: 5px 0 0;
  color: #df280a;
}

/* ============================================ *
 * Form List
 * ============================================ */
/* line 337, ../scss/core/_form.scss */
.form-list > li {
  margin-bottom: 10px;
}
/* line 341, ../scss/core/_form.scss */
.form-list select {
  width: 365px;
  max-width: 100%;
  margin-top: 4px;
}
/* line 348, ../scss/core/_form.scss */
.form-list .input-range .input-text {
  width: 74px;
}
/* line 353, ../scss/core/_form.scss */
.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
/* line 362, ../scss/core/_form.scss */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
/* line 368, ../scss/core/_form.scss */
.form-list .control li,
.sp-methods dt li,
#checkout-shipping-method-load .sp-methods dd li,
#co-shipping-method-form .sp-methods dd li,
.product-options ul.options-list li {
  padding-top: 5px;
  padding-bottom: 0;
}
/* line 374, ../scss/core/_form.scss */
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
/* line 379, ../scss/core/_form.scss */
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
/* line 385, ../scss/core/_form.scss */
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-top: .3em;
  margin-right: -40px;
}
/* line 394, ../scss/core/_form.scss */
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  display: inline-block;
  float: none;
  width: auto;
  max-width: none;
}
/* line 402, ../scss/core/_form.scss */
.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  /*background-color: $c-module-background-hover;*/
}
/* line 409, ../scss/core/_form.scss */
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
/* line 415, ../scss/core/_form.scss */
.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

/* line 422, ../scss/core/_form.scss */
.product-options ul.options-list label,
.col2-set .form-list .control label {
  width: 100%;
  min-width: inherit;
}

/* line 431, ../scss/core/_form.scss */
.form-list .control.remember-me-box label {
  width: auto;
  min-width: inherit;
  max-width: none;
}

/* line 439, ../scss/core/_form.scss */
.form-list .control {
  margin-top: 10px;
}
/* line 443, ../scss/core/_form.scss */
.form-list .control label {
  float: none;
}
/* line 447, ../scss/core/_form.scss */
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 12px;
}
/* line 452, ../scss/core/_form.scss */
.form-list .control .input-box {
  display: inline-block;
  clear: none;
  width: auto;
  padding: 0;
}

/* line 464, ../scss/core/_form.scss */
form .form-instructions {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  color: #a0a0a0;
}

/* line 475, ../scss/core/_form.scss */
.input-virtual {
  position: relative;
  display: inline-block !important;
  float: left !important;
  -webkit-flex: none;
  flex: none;
  width: 16px !important;
  height: 16px !important;
  margin: 2px 12px 0 0;
  padding: 0 !important;
  transition: all .4s;
  border: 1px solid #d9d9d9;
  background: #fff;
}
/* line 490, ../scss/core/_form.scss */
.input-virtual.checkbox {
  border-radius: 3px;
}
/* line 493, ../scss/core/_form.scss */
.input-virtual.checkbox:after {
  width: 8px;
  height: 8px;
  border-radius: 1px;
}
/* line 501, ../scss/core/_form.scss */
.input-virtual.radio {
  border-radius: 100%;
}
/* line 504, ../scss/core/_form.scss */
.input-virtual.radio:after {
  width: 7px;
  height: 7px;
  border-radius: 100%;
}
/* line 512, ../scss/core/_form.scss */
input[type=checkbox]:checked ~ .input-virtual, input[type=radio]:checked ~ .input-virtual {
  border-color: #f06543;
}
/* line 516, ../scss/core/_form.scss */
input[type=checkbox]:checked ~ .input-virtual:after, input[type=radio]:checked ~ .input-virtual:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #f06543;
}
/* line 531, ../scss/core/_form.scss */
.input-virtual:hover {
  border-color: silver;
}

/* line 537, ../scss/core/_form.scss */
.recaptcha .input-virtual {
  display: none !important;
}

/* line 541, ../scss/core/_form.scss */
#product_addtocart_form {
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 541, ../scss/core/_form.scss */
  #product_addtocart_form {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 549, ../scss/core/_form.scss */
#product_addtocart_form .grid-wrapper {
  display: grid;
  grid-template-areas: "product-img product-configuration product-configuration product-cart" "product-img product-options product-options product-options";
  grid-template-columns: 9fr 8fr 8fr 7fr;
  grid-template-rows: 1fr;
  grid-gap: 20px;
}
/* line 559, ../scss/core/_form.scss */
#product_addtocart_form .product-img-box {
  -webkit-flex: 4.6;
  flex: 4.6;
  grid-area: product-img;
}
/* line 565, ../scss/core/_form.scss */
#product_addtocart_form .configuration {
  grid-area: product-configuration;
  grid-column-start: 2;
  grid-column-end: 4;
  padding: 0 16px;
  -webkit-flex: 5;
  flex: 5;
}
/* line 572, ../scss/core/_form.scss */
#product_addtocart_form .configuration .product-shop {
  padding: 0;
}
/* line 578, ../scss/core/_form.scss */
#product_addtocart_form .configuration .add-to-cart-wrapper {
  width: 100% !important;
  padding: 0;
}
/* line 585, ../scss/core/_form.scss */
#product_addtocart_form .product-options-wrapper {
  grid-area: product-options;
  padding: 0 0 20px 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 585, ../scss/core/_form.scss */
  #product_addtocart_form .product-options-wrapper {
    padding: 0;
  }
}
/* line 594, ../scss/core/_form.scss */
#product_addtocart_form .buy-now {
  -webkit-flex: 3;
  flex: 3;
  grid-area: product-cart;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 594, ../scss/core/_form.scss */
  #product_addtocart_form .buy-now {
    padding: 0;
  }
}
/* line 605, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .price-box .price-as-configured,
#product_addtocart_form .buy-now .price-box .special-price {
  font-size: 1em !important;
}
@media (min-width: 768px) {
  /* line 605, ../scss/core/_form.scss */
  #product_addtocart_form .buy-now .price-box .price-as-configured,
  #product_addtocart_form .buy-now .price-box .special-price {
    -webkit-flex: 0;
    flex: 0;
    padding-right: 8px;
  }
}
/* line 615, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .price-box .special-price {
  order: 1;
  padding-left: 0;
}
/* line 620, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .price-box .old-price {
  order: 2;
}
/* line 623, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .price-box .old-price .price-label {
  display: inline-block;
}
/* line 628, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .price-box .price-label {
  font-size: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 628, ../scss/core/_form.scss */
  #product_addtocart_form .buy-now .price-box .price-label {
    display: block;
  }
}
@media (min-width: 768px) {
  /* line 638, ../scss/core/_form.scss */
  #product_addtocart_form .buy-now .price-box > .price-label {
    width: 100%;
  }
}
/* line 645, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .price-box .full-product-price {
  line-height: normal;
}
/* line 650, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .price-box .price {
  font-size: 32px;
  color: #f00 !important;
}
/* line 658, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .product-options-bottom {
  margin: 0;
  padding: 0;
  border: none;
}
/* line 666, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .product-options-bottom > .price-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  /* line 666, ../scss/core/_form.scss */
  #product_addtocart_form .buy-now .product-options-bottom > .price-box {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}
/* line 678, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .product-options-bottom .price-msrp,
#product_addtocart_form .buy-now .product-options-bottom .old-price {
  width: 100%;
}
@media (min-width: 768px) {
  /* line 678, ../scss/core/_form.scss */
  #product_addtocart_form .buy-now .product-options-bottom .price-msrp,
  #product_addtocart_form .buy-now .product-options-bottom .old-price {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}
/* line 688, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .product-options-bottom .price-msrp span,
#product_addtocart_form .buy-now .product-options-bottom .old-price span {
  font-size: 14px !important;
  margin: 0;
  text-decoration: line-through;
  color: #369 !important;
  font-weight: 500;
}
/* line 696, ../scss/core/_form.scss */
#product_addtocart_form .buy-now .product-options-bottom .price-msrp span.percent,
#product_addtocart_form .buy-now .product-options-bottom .old-price span.percent {
  display: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 702, ../scss/core/_form.scss */
  #product_addtocart_form .buy-now .product-options-bottom .add-to-cart {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 712, ../scss/core/_form.scss */
  #product_addtocart_form .grid-wrapper {
    grid-template-areas: "product-img product-img product-img product-img" "product-configuration product-configuration  product-configuration  product-configuration " "product-options product-options product-options product-options" "product-cart product-cart product-cart product-cart";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-auto-rows: auto;
    grid-gap: 10px;
  }
  /* line 722, ../scss/core/_form.scss */
  #product_addtocart_form .configuration {
    grid-column-start: 1;
    grid-column-end: 4;
    height: auto;
    padding: 0;
  }
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
/* line 30, ../scss/core/_table.scss */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
/* line 38, ../scss/core/_table.scss */
.data-table {
  width: 100%;
}

/* line 42, ../scss/core/_table.scss */
.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

/* line 48, ../scss/core/_table.scss */
.data-table th {
  background: #f4f4f4;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}

/* line 55, ../scss/core/_table.scss */
.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #c0c0c0;
}

/* line 64, ../scss/core/_table.scss */
.data-table tfoot tr {
  background: #f4f4f4;
}

/* line 68, ../scss/core/_table.scss */
.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
}
/* line 72, ../scss/core/_table.scss */
.data-table tbody td .item-options dt:after {
  content: ':';
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
/* line 81, ../scss/core/_table.scss */
.info-box {
  border: 1px solid #c0c0c0;
  padding: 12px 15px;
  margin: 0 0 15px;
}
/* line 86, ../scss/core/_table.scss */
.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

/* line 92, ../scss/core/_table.scss */
.info-table th,
.info-table td {
  vertical-align: top;
}

/* line 97, ../scss/core/_table.scss */
.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

/* line 102, ../scss/core/_table.scss */
.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
/* line 111, ../scss/core/_table.scss */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #c0c0c0;
}
/* line 116, ../scss/core/_table.scss */
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #c0c0c0;
  padding: 6px;
  background-color: transparent;
}
/* line 123, ../scss/core/_table.scss */
.zebra-table tr {
  background-color: #eeeded;
}
/* line 127, ../scss/core/_table.scss */
.zebra-table tr:nth-child(odd) {
  background-color: #f8f7f5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 479px) {
  /* line 238, ../scss/core/_table.scss */
  .linearize-table {
    /* Helpers */
  }
  /* line 138, ../scss/core/_table.scss */
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }
  /* line 144, ../scss/core/_table.scss */
  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }
  /* line 149, ../scss/core/_table.scss */
  .linearize-table thead th.lin-hide {
    display: none;
  }
  /* line 153, ../scss/core/_table.scss */
  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }
  /* line 157, ../scss/core/_table.scss */
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #ebebeb;
  }
  /* line 162, ../scss/core/_table.scss */
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  /* line 168, ../scss/core/_table.scss */
  .linearize-table tbody td.lin-hide {
    display: none;
  }
  /* line 172, ../scss/core/_table.scss */
  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }
  /* line 176, ../scss/core/_table.scss */
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold;
  }
  /* line 181, ../scss/core/_table.scss */
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  /* line 186, ../scss/core/_table.scss */
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  /* line 194, ../scss/core/_table.scss */
  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }
  /* line 199, ../scss/core/_table.scss */
  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 203, ../scss/core/_table.scss */
  .linearize-table tfoot td {
    display: block;
    float: left;
  }
  /* line 208, ../scss/core/_table.scss */
  .linearize-table tfoot td.lin-hide {
    display: none;
  }
  /* line 212, ../scss/core/_table.scss */
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  /* line 217, ../scss/core/_table.scss */
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  /* line 224, ../scss/core/_table.scss */
  .linearize-table .linearize-hide {
    display: none;
  }
  /* line 228, ../scss/core/_table.scss */
  .linearize-table .linearize-unpad {
    padding: 0;
  }
  /* line 232, ../scss/core/_table.scss */
  .linearize-table .linearize-show {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  /* line 244, ../scss/core/_table.scss */
  .linearize-table-large {
    /* Helpers */
  }
  /* line 138, ../scss/core/_table.scss */
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }
  /* line 144, ../scss/core/_table.scss */
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }
  /* line 149, ../scss/core/_table.scss */
  .linearize-table-large thead th.lin-hide {
    display: none;
  }
  /* line 153, ../scss/core/_table.scss */
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }
  /* line 157, ../scss/core/_table.scss */
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #ebebeb;
  }
  /* line 162, ../scss/core/_table.scss */
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  /* line 168, ../scss/core/_table.scss */
  .linearize-table-large tbody td.lin-hide {
    display: none;
  }
  /* line 172, ../scss/core/_table.scss */
  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }
  /* line 176, ../scss/core/_table.scss */
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold;
  }
  /* line 181, ../scss/core/_table.scss */
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  /* line 186, ../scss/core/_table.scss */
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  /* line 194, ../scss/core/_table.scss */
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }
  /* line 199, ../scss/core/_table.scss */
  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 203, ../scss/core/_table.scss */
  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }
  /* line 208, ../scss/core/_table.scss */
  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }
  /* line 212, ../scss/core/_table.scss */
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  /* line 217, ../scss/core/_table.scss */
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  /* line 224, ../scss/core/_table.scss */
  .linearize-table-large .linearize-hide {
    display: none;
  }
  /* line 228, ../scss/core/_table.scss */
  .linearize-table-large .linearize-unpad {
    padding: 0;
  }
  /* line 232, ../scss/core/_table.scss */
  .linearize-table-large .linearize-show {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  /* line 250, ../scss/core/_table.scss */
  .linearize-table .linearize-collapse {
    display: none;
  }
}
/* ============================================ *
 * Global
 * ============================================ */
/* line 30, ../scss/layout/_global.scss */
html,
body {
  min-height: 100%;
  position: relative;
  background-color: #ffffff;
}

/* line 38, ../scss/layout/_global.scss */
.wrapper {
  min-width: 320px;
  margin: 0 auto;
  background: #fff;
}

/* line 47, ../scss/layout/_global.scss */
.wrapper:after {
  content: '';
  display: table;
  clear: both;
}

/* line 52, ../scss/layout/_global.scss */
.content-wrapper {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 769px) {
  /* line 32, ../scss/layout/_header.scss */
  .page-header {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }

  /* line 39, ../scss/layout/_header.scss */
  .page-header-container {
    position: relative;
  }
}
/* line 45, ../scss/layout/_header.scss */
.header-language-container,
.page-header {
  font-family: "Open Sans", sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
/* line 55, ../scss/layout/_header.scss */
.header-language-background {
  padding: 10px;
  text-transform: uppercase;
  background-color: #369;
}
/* line 63, ../scss/layout/_header.scss */
.header-language-background .header-language-container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
/* line 70, ../scss/layout/_header.scss */
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
/* line 75, ../scss/layout/_header.scss */
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
/* line 83, ../scss/layout/_header.scss */
.header-language-background .welcome-msg {
  float: right;
}

/* line 89, ../scss/layout/_header.scss */
.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}
/* line 96, ../scss/layout/_header.scss */
.page-header-container .store-language-container label {
  display: none;
}
/* line 100, ../scss/layout/_header.scss */
.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 479px) {
  /* line 108, ../scss/layout/_header.scss */
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  /* line 112, ../scss/layout/_header.scss */
  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}
/* line 120, ../scss/layout/_header.scss */
.header-language-background,
.header-language-background a {
  color: #e6e6e6;
}

/* ============================================ *
 * Logo
 * ============================================ */
/* line 138, ../scss/layout/_header.scss */
.logo {
  float: left;
  min-width: 100px;
  padding: 0px 0;
  text-align: center;
}
/* line 147, ../scss/layout/_header.scss */
.logo img {
  max-width: 100%;
}
/* line 152, ../scss/layout/_header.scss */
.logo .small {
  display: block;
}
/* line 156, ../scss/layout/_header.scss */
.logo .large {
  display: none;
}

/* line 162, ../scss/layout/_header.scss */
.logo:hover {
  opacity: .8;
}

@media only screen and (min-width: 769px) {
  /* line 173, ../scss/layout/_header.scss */
  .logo .small {
    display: none;
  }
  /* line 177, ../scss/layout/_header.scss */
  .logo .large {
    display: block;
  }
}
/* ============================================ *
 * Skip Links
 * ============================================ */
/* line 188, ../scss/layout/_header.scss */
.skip-links {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

@media only screen and (min-width: 769px) {
  /* line 201, ../scss/layout/_header.scss */
  .skip-links {
    border: 0;
  }
}
/* -------------------------------------------- *
 * Skip - Link
 */
/* line 211, ../scss/layout/_header.scss */
.skip-link {
  line-height: 42px;
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  text-align: center;
  color: #40434B;
  background: #fff;
}

/* line 228, ../scss/layout/_header.scss */
a.skip-link {
  text-decoration: none;
}

/* line 233, ../scss/layout/_header.scss */
.skip-link:not(.skip-active):hover {
  opacity: .8;
}

@media only screen and (max-width: 768px) {
  /* line 242, ../scss/layout/_header.scss */
  .skip-link {
    border-right: 1px solid #ededed;
  }

  /* line 247, ../scss/layout/_header.scss */
  .skip-link:last-child {
    border-right: 0;
  }
}
@media only screen and (min-width: 500px) {
  /* line 257, ../scss/layout/_header.scss */
  .skip-link {
    width: 25%;
  }
}
/* -------------------------------------------- *
 * Skip Link - Active
 */
@media only screen and (max-width: 768px) {
  /* line 268, ../scss/layout/_header.scss */
  .skip-link.skip-active {
    color: inherit;
    background: #ededed;
  }

  /* line 274, ../scss/layout/_header.scss */
  .skip-link.skip-active span {
    color: inherit;
  }
}
/* -------------------------------------------- *
 * Skip Link - Icon
 */
/* line 284, ../scss/layout/_header.scss */
.skip-link .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

/* line 294, ../scss/layout/_header.scss */
.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 3px;
}

@media only screen and (min-width: 500px) {
  /* line 302, ../scss/layout/_header.scss */
  .skip-link .icon {
    margin-right: 3px;
  }
}
/* -------------------------------------------- *
 * Skip Link - Label
 */
/* line 312, ../scss/layout/_header.scss */
.skip-link .label {
  display: none;
}

@media only screen and (min-width: 500px) {
  /* line 321, ../scss/layout/_header.scss */
  .skip-link .label {
    display: inline;
  }
}
/* ============================================ *
 * Skip Content
 * ============================================ */
/* line 331, ../scss/layout/_header.scss */
.skip-content {
  display: none;
}

/* line 336, ../scss/layout/_header.scss */
.skip-content.skip-active {
  display: block;
  background: #ededed;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 768px) {
  /* line 352, ../scss/layout/_header.scss */
  #header-account li a,
  .nav-primary a.level0 {
    line-height: 30px;
    padding: 0 15px 0 25px;
    text-align: left;
    text-transform: uppercase;
    color: #40434B;
    border-bottom: 1px solid #ebebeb;
  }

  /* line 366, ../scss/layout/_header.scss */
  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }

  /* line 372, ../scss/layout/_header.scss */
  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    text-decoration: none;
    background-color: #f4f4f4;
  }
}
/* line 381, ../scss/layout/_header.scss */
.account-cart-wrapper {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  /* line 381, ../scss/layout/_header.scss */
  .account-cart-wrapper {
    position: static;
  }
}

/* line 394, ../scss/layout/_header.scss */
.header-language-container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
/* line 399, ../scss/layout/_header.scss */
.header-language-container a {
  text-decoration: none;
}
/* line 403, ../scss/layout/_header.scss */
.header-language-container a:hover {
  color: #d0d0d0;
}
/* line 409, ../scss/layout/_header.scss */
.header-language-container .welcome {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  justify-content: flex-end;
}
/* line 415, ../scss/layout/_header.scss */
.header-language-container .welcome li {
  padding: 0 0 0 10px;
}
/* line 419, ../scss/layout/_header.scss */
.header-language-container .welcome li a {
  font-size: 12px;
  text-transform: capitalize;
}
/* line 427, ../scss/layout/_header.scss */
.header-language-container .header-features {
  display: -webkit-flex;
  display: flex;
}
/* line 431, ../scss/layout/_header.scss */
.header-language-container .header-features .feature {
  font-weight: normal;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 0;
  padding: 0 20px 0 0;
  color: #e6e6e6;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 431, ../scss/layout/_header.scss */
  .header-language-container .header-features .feature {
    display: none;
  }
}
/* line 448, ../scss/layout/_header.scss */
.header-language-container .header-features .feature:first-of-type {
  display: -webkit-flex;
  display: flex;
}
/* line 453, ../scss/layout/_header.scss */
.header-language-container .header-features .feature a {
  font-size: 11px;
}
/* line 458, ../scss/layout/_header.scss */
.header-language-container .header-features .feature svg {
  margin: 0 10px 0 0;
}

/* line 467, ../scss/layout/_header.scss */
.main-contain {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 467, ../scss/layout/_header.scss */
  .main-contain {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0 15px 40px;
  }
}
/* line 480, ../scss/layout/_header.scss */
.main-contain form {
  -webkit-flex: 1;
  flex: 1;
  padding: 0 60px;
}

/* line 489, ../scss/layout/_header.scss */
.micro-features {
  padding: 10px 0;
  background: #f6f6f6;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 489, ../scss/layout/_header.scss */
  .micro-features {
    display: none;
  }
}
/* line 500, ../scss/layout/_header.scss */
.micro-features .micros {
  display: -webkit-flex;
  display: flex;
}
/* line 504, ../scss/layout/_header.scss */
.micro-features .micros .micro {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 2;
  flex: 2;
  margin: 0;
}
/* line 512, ../scss/layout/_header.scss */
.micro-features .micros .micro span {
  font-size: 12px;
  font-weight: normal;
  text-transform: none;
  color: #40434b;
}
/* line 522, ../scss/layout/_header.scss */
.micro-features .micros .micro svg {
  margin: 0 10px 0 0;
}

/* line 531, ../scss/layout/_header.scss */
.toggle-mobile-nav {
  display: none;
  padding: 10px;
  background: #369;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 531, ../scss/layout/_header.scss */
  .toggle-mobile-nav {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
/* line 545, ../scss/layout/_header.scss */
.toggle-mobile-nav span {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
}
/* line 551, ../scss/layout/_header.scss */
.toggle-mobile-nav span:last-of-type {
  padding: 0 0 0 20px;
}
/* line 556, ../scss/layout/_header.scss */
.toggle-mobile-nav span svg {
  fill: #fff;
}

/* line 563, ../scss/layout/_header.scss */
.flex-logo {
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 563, ../scss/layout/_header.scss */
  .flex-logo {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}
/* line 573, ../scss/layout/_header.scss */
.flex-logo .logo {
  -webkit-flex: 1;
  flex: 1;
  padding-right: 20px;
}
/* line 580, ../scss/layout/_header.scss */
.flex-logo .label {
  display: none;
}

/* line 587, ../scss/layout/_header.scss */
.mobile-active {
  display: inline;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 587, ../scss/layout/_header.scss */
  .mobile-active {
    display: -webkit-flex;
    display: flex;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 598, ../scss/layout/_header.scss */
  .mobile-active form {
    padding: 0 0 0 10px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 608, ../scss/layout/_header.scss */
  #nav {
    display: none;
    padding: 0 0 20px 0;
  }
}

@media (min-width: 1024px) {
  /* line 620, ../scss/layout/_header.scss */
  .desktop-only {
    display: inline-block;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 620, ../scss/layout/_header.scss */
  .desktop-only {
    display: none;
  }
}

@media (min-width: 1024px) {
  /* line 632, ../scss/layout/_header.scss */
  .mobile-only {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 632, ../scss/layout/_header.scss */
  .mobile-only {
    display: block;
  }
}

/* line 644, ../scss/layout/_header.scss */
.ms-header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid #d9d9d9;
  background-color: #ffffff;
  top: -110px;
}
@media (min-width: 1024px) {
  /* line 654, ../scss/layout/_header.scss */
  .ms-header.fixed-menu {
    position: fixed;
    z-index: 9999999999;
    width: 100% !important;
    top: 0;
    -webkit-transition: top 0.3s ease-out;
    -moz-transition: top 0.3s ease-out;
    -ms-transition: top 0.3s ease-out;
    -o-transition: top 0.3s ease-out;
    transition: top 0.3s ease-out;
  }
}
/* line 670, ../scss/layout/_header.scss */
.ms-header.fixed-menu > .ms-header__subheader,
.ms-header.fixed-menu > .ms-header__features {
  display: none;
}
/* line 675, ../scss/layout/_header.scss */
.ms-header.fixed-menu .ms-searchcart {
  padding: 0;
}
/* line 680, ../scss/layout/_header.scss */
.ms-header .ms-wrapper {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}
/* line 688, ../scss/layout/_header.scss */
.ms-header__actionbar {
  display: -webkit-flex;
  display: flex;
}
/* line 691, ../scss/layout/_header.scss */
.ms-header__actionbar__item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 691, ../scss/layout/_header.scss */
  .ms-header__actionbar__item {
    display: none;
    margin: 0 0px 0 0;
    padding: 0 0px 0 0;
  }
}
/* line 707, ../scss/layout/_header.scss */
.ms-header__actionbar__item:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 95%;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(128, 150, 173, 0.5);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 707, ../scss/layout/_header.scss */
  .ms-header__actionbar__item:after {
    background: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 728, ../scss/layout/_header.scss */
  .ms-header__actionbar__item:first-of-type, .ms-header__actionbar__item:nth-last-child(2) {
    display: block;
    -webkit-flex: 1;
    flex: 1;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 738, ../scss/layout/_header.scss */
  .ms-header__actionbar__item:nth-last-child(2) {
    text-align: center;
    padding-right: 0;
    margin-right: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 747, ../scss/layout/_header.scss */
  .ms-header__actionbar__item:nth-last-child(2):after {
    display: none;
  }
}
/* line 756, ../scss/layout/_header.scss */
.ms-header__actionbar__item + .ms-header__actionbar__item--align-right {
  -webkit-flex: 1;
  flex: 1;
}
/* line 759, ../scss/layout/_header.scss */
.ms-header__actionbar__item + .ms-header__actionbar__item--align-right:last-of-type {
  -webkit-flex: none;
  flex: none;
}
/* line 763, ../scss/layout/_header.scss */
.ms-header__actionbar__item + .ms-header__actionbar__item--align-right:last-of-type:after {
  display: none;
}
/* line 770, ../scss/layout/_header.scss */
.ms-header__actionbar__item:last-of-type {
  margin: 0;
  padding: 0;
}
/* line 777, ../scss/layout/_header.scss */
.ms-header__actionbar__item--align-right {
  justify-content: flex-end;
}
/* line 782, ../scss/layout/_header.scss */
.ms-header__actionbar__item svg {
  margin: 0 5px 0 0;
}
/* line 786, ../scss/layout/_header.scss */
.ms-header__actionbar__item span,
.ms-header__actionbar__item a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
/* line 800, ../scss/layout/_header.scss */
.ms-header .header-rfp {
  display: flex;
}
/* line 804, ../scss/layout/_header.scss */
.ms-header__navigation {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
  background: #f6f6f6;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 804, ../scss/layout/_header.scss */
  .ms-header__navigation {
    display: none;
  }
}
/* line 820, ../scss/layout/_header.scss */
.ms-header__navigation__item {
  border-right: 1px solid #f6f6f6;
  border-left: 1px solid #f6f6f6;
  background: #f6f6f6;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 820, ../scss/layout/_header.scss */
  .ms-header__navigation__item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
    border-left: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 837, ../scss/layout/_header.scss */
  .ms-header__navigation__item a {
    -webkit-flex: 1;
    flex: 1;
  }
}
@media (min-width: 1024px) {
  /* line 845, ../scss/layout/_header.scss */
  .ms-header__navigation__item a svg {
    display: none;
  }
}
/* line 852, ../scss/layout/_header.scss */
.ms-header__navigation__item > svg {
  display: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 852, ../scss/layout/_header.scss */
  .ms-header__navigation__item > svg {
    display: block;
    margin: 0 20px 0 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 864, ../scss/layout/_header.scss */
  .ms-header__navigation__item:last-of-type {
    border-bottom: none;
  }
}
/* line 872, ../scss/layout/_header.scss */
.ms-header__navigation__item__submenu {
  position: absolute;
  z-index: 888;
  top: 51px;
  right: 0;
  left: 0;
  display: none;
  width: 100%;
  padding: 45px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 872, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu {
    position: relative;
    top: 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 900, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu .ms-wrapper {
    padding: 0;
  }
}
/* line 908, ../scss/layout/_header.scss */
.ms-header__navigation__item__submenu__container {
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 908, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu__container {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 916, ../scss/layout/_header.scss */
.ms-header__navigation__item__submenu__container__items {
  -webkit-flex: 1;
  flex: 1;
  margin: 0;
  padding: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 927, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu__container__items:hover .ms-header__navigation__item__submenu__container__items__link {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 934, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu__container__items img {
    width: 100%;
  }
}
/* line 941, ../scss/layout/_header.scss */
.ms-header__navigation__item__submenu__container__items__title {
  font-size: 11px;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  color: #999;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 941, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu__container__items__title {
    margin: 0;
    padding: 15px 20px;
    color: #40434b;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }
}
/* line 962, ../scss/layout/_header.scss */
.ms-header__navigation__item__submenu__container__items__link {
  margin: 0;
  padding: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 962, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu__container__items__link {
    display: none;
  }
}
/* line 971, ../scss/layout/_header.scss */
.ms-header__navigation__item__submenu__container__items__link a {
  font-size: 14px;
  font-weight: bold;
  display: block;
  padding: 0 0 20px 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #40434b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 971, ../scss/layout/_header.scss */
  .ms-header__navigation__item__submenu__container__items__link a {
    font-size: 12px;
    font-weight: normal;
    padding: 10px 20px;
    text-transform: capitalize;
  }
}
/* line 1000, ../scss/layout/_header.scss */
.ms-header__navigation__item:hover {
  border-color: #d9d9d9;
}
@media (min-width: 1024px) {
  /* line 1000, ../scss/layout/_header.scss */
  .ms-header__navigation__item:hover {
    background: #fff;
  }
  /* line 1008, ../scss/layout/_header.scss */
  .ms-header__navigation__item:hover svg {
    display: none;
  }
  /* line 1015, ../scss/layout/_header.scss */
  .ms-header__navigation__item:hover > a svg {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1025, ../scss/layout/_header.scss */
  .ms-header__navigation__item:hover > a svg {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
/* line 1033, ../scss/layout/_header.scss */
.ms-header__navigation__item:hover .ms-header__navigation__item__submenu {
  display: block;
}
/* line 1040, ../scss/layout/_header.scss */
.ms-header__navigation__item:hover > a:after {
  display: none;
}
/* line 1045, ../scss/layout/_header.scss */
.ms-header__navigation__item:hover > a:before {
  display: block;
}
/* line 1056, ../scss/layout/_header.scss */
.ms-header__navigation__item:last-of-type > a:after {
  display: none;
}
/* line 1062, ../scss/layout/_header.scss */
.ms-header__navigation__item > a {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  display: block;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #40434b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1062, ../scss/layout/_header.scss */
  .ms-header__navigation__item > a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
  }
  /* line 1086, ../scss/layout/_header.scss */
  .ms-header__navigation__item > a span {
    -webkit-flex: 1;
    flex: 1;
  }
}
/* line 1092, ../scss/layout/_header.scss */
.ms-header__navigation__item > a:before {
  position: absolute;
  z-index: 999;
  right: 0;
  bottom: -1px;
  left: 0;
  display: none;
  height: 1px;
  content: '';
  background: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1092, ../scss/layout/_header.scss */
  .ms-header__navigation__item > a:before {
    display: none !important;
  }
}
/* line 1114, ../scss/layout/_header.scss */
.ms-header__navigation__item > a:after {
  position: absolute;
  z-index: 9;
  top: 50%;
  right: -2px;
  width: 1px;
  height: 14px;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #d9d9d9;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1114, ../scss/layout/_header.scss */
  .ms-header__navigation__item > a:after {
    display: none;
  }
}
/* line 1138, ../scss/layout/_header.scss */
.ms-header__searchcart {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  z-index: 100;
}
/* line 1147, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
  padding: 15px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1147, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0 0 20px 0;
    position: relative;
  }
}
/* line 1163, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view {
  display: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1163, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart .mobile-view {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }
}
/* line 1176, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .logo {
  -webkit-flex: 1;
  flex: 1;
  max-width: 136px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1176, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart .mobile-view .logo {
    display: block;
    padding: 0;
  }
}
/* line 1190, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .spacer {
  -webkit-flex: 1;
  flex: 1;
}
/* line 1195, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .mobile-cart {
  font-weight: bold;
  text-decoration: none;
  margin: 0 20px;
}
/* line 1202, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile {
  position: relative;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  width: 18px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  transition: .5s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
/* line 1217, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  transition: .25s ease-in-out;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
  border-radius: 2px;
  background: #012d5b;
}
/* line 1234, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
/* line 1241, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile span:nth-child(2) {
  top: 7px;
  transform-origin: left center;
}
/* line 1248, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile span:nth-child(3) {
  top: 14px;
  transform-origin: left center;
}
/* line 1260, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile.open span:nth-child(1), .ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile:active span:nth-child(1) {
  top: 1px;
  left: 1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 1267, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile.open span:nth-child(2), .ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile:active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
/* line 1274, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile.open span:nth-child(3), .ms-header__searchcart .ms-searchcart .mobile-view .toggle-mobile:active span:nth-child(3) {
  top: 14px;
  left: 2px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* line 1286, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block {
  position: relative;
  margin: 0 0 0 30px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1286, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart .cart__block {
    position: absolute;
    right: -4px;
    top: -6px;
  }
}
/* line 1301, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__toggle {
  font-size: 14px;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 8px 25px;
  transition: all .4s linear;
  text-transform: uppercase;
  color: #1b436c;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1301, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart .cart__block__toggle {
    display: none;
  }
}
/* line 1324, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__toggle svg {
  margin: 0 5px 0 0;
}
/* line 1330, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__fake-hover {
  position: absolute;
  right: 36px;
  bottom: 100%;
  overflow: hidden;
  width: 100%;
  height: 25px;
}
/* line 1339, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container {
  position: absolute;
  z-index: 9999;
  top: 60px;
  right: 0;
  display: none;
  width: 320px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
/* line 1355, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container.open {
  display: block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1360, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart .cart__block__container.mobile-open {
    display: block;
  }
}
/* line 1367, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__arrow {
  position: absolute;
  right: 36px;
  bottom: 100%;
  overflow: hidden;
  width: 50px;
  height: 25px;
  -webkit-transform: translateX(0) rotate(180deg);
  -moz-transform: translateX(0) rotate(180deg);
  -ms-transform: translateX(0) rotate(180deg);
  -o-transform: translateX(0) rotate(180deg);
  transform: translateX(0) rotate(180deg);
}
/* line 1382, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__arrow::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  content: '';
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  border: 1px solid #d9d9d9;
  background: white;
  box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.08);
}
/* line 1400, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart {
  padding: 16px 20px;
}
/* line 1403, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item {
  display: -webkit-flex;
  display: flex;
}
/* line 1407, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item:not(:first-child) {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #d9d9d9;
}
/* line 1412, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__img {
  width: 66px;
  height: 66px;
  margin: 0 16px 0 0;
  border: 1px solid #d9d9d9;
}
/* line 1421, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__product {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 1426, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__product select {
  justify-content: flex-end;
  margin: 10px 0 0 0;
  padding: 14px 31px 14px 14px;
  border: 1px solid #369;
  border-radius: 4px;
  box-shadow: 0 0 0 2px #e6ecf3;
  height: auto;
  -webkit-appearance: none;
}
/* line 1437, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__product__link {
  font-size: 14px;
  font-weight: bold;
  -webkit-flex: 1;
  flex: 1;
  color: #40434b;
}
/* line 1446, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__price {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-width: 72px;
}
/* line 1453, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__price strong {
  font-weight: bold;
  -webkit-flex: 1;
  flex: 1;
  text-align: right;
  color: #369;
}
/* line 1464, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__price .cart-price {
  text-align: right;
}
/* line 1467, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__price .price {
  color: #336699;
  font-weight: 700;
}
/* line 1472, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__price .actions {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
}
/* line 1479, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__cart__item__price .actions__link {
  font-size: 12px;
  text-align: right;
  text-decoration: underline;
  color: #40434B;
}
/* line 1492, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__view-cart {
  padding: 16px 20px 16px;
  border-top: 1px solid #d9d9d9;
}
/* line 1498, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__view-cart__btn {
  font-size: 14px;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 8px 25px;
  text-transform: uppercase;
  color: #1b436c;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
}
/* line 1516, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__view-cart__btn:hover {
  text-decoration: none;
  background-color: #f6f6f6;
}
/* line 1521, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__view-cart__btn svg {
  margin: 0 5px 0 0;
}
/* line 1528, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__checkout {
  padding: 0 20px 16px;
  border-bottom: 1px solid #d9d9d9;
}
/* line 1534, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__checkout__btn {
  font-size: 12px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  display: block;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 3px;
  background: #00CC66;
}
/* line 1549, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__checkout__btn:hover {
  text-decoration: none;
  background: #00b359;
}
/* line 1557, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__info {
  font-size: 14px;
  color: #40434B;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 16px 20px 16px;
}
/* line 1566, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__info__itemcount {
  -webkit-flex: 1;
  flex: 1;
}
/* line 1571, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__info__subtotal {
  text-align: right;
  font-family: "Open Sans", sans-serif;
}
/* line 1576, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .cart__block__container__info__subtotal strong {
  color: #012D5B;
}
/* line 1585, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .search__block {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
  margin: 0 35px;
  border: 1px solid #369;
  border-radius: 3px;
  box-shadow: 0 0 0 4px #e6ecf3;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1585, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart .search__block {
    width: 100%;
    margin: 0;
  }
}
/* line 1604, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .search__block:after {
  position: absolute;
  top: 50%;
  right: -35px;
  width: 1px;
  height: 100%;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #d9d9d9;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1604, ../scss/layout/_header.scss */
  .ms-header__searchcart .ms-searchcart .search__block:after {
    display: none;
  }
}
/* line 1624, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .search__block input[type=text] {
  font-size: 12px;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 3px;
}
/* line 1635, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .search__block__submit {
  font-size: 11px;
  font-weight: bold;
  left: -2px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px 18px;
  text-transform: uppercase;
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  background: #369;
  min-width: 104px;
}
/* line 1656, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .search__block__submit:hover {
  background: #2d5986;
}
/* line 1659, ../scss/layout/_header.scss */
.ms-header__searchcart .ms-searchcart .search__block__submit svg {
  margin: 0 8px 0 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1667, ../scss/layout/_header.scss */
  .ms-header__searchcart .logo {
    display: none;
  }
}
/* line 1673, ../scss/layout/_header.scss */
.ms-header__searchcart .logo .desktop {
  max-width: 166px;
  padding: 0;
}
/* line 1681, ../scss/layout/_header.scss */
.ms-header__subheader {
  padding: 10px 0;
  background: #012d5b;
  z-index: 100;
}
/* line 1689, ../scss/layout/_header.scss */
.ms-header__features {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1689, ../scss/layout/_header.scss */
  .ms-header__features {
    padding: 0;
  }
}
@media (min-width: 768px) {
  /* line 1689, ../scss/layout/_header.scss */
  .ms-header__features {
    -webkit-align-items: stretch;
    align-items: stretch;
  }
}
/* line 1713, ../scss/layout/_header.scss */
.ms-header__features__item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 10px 45px 10px 45px;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 10px 0;
}
/* line 1726, ../scss/layout/_header.scss */
.ms-header__features__item:hover .ms-header__features__item__categories {
  display: block;
}
/* line 1732, ../scss/layout/_header.scss */
.ms-header__features__item__categories {
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  padding: 15px 0 20px;
  border-top: 1px solid #d9d9d9;
  background: #fff;
}
/* line 1747, ../scss/layout/_header.scss */
.ms-header__features__item__categories.active {
  display: block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1732, ../scss/layout/_header.scss */
  .ms-header__features__item__categories {
    padding: 0;
    top: -1px;
  }
}
/* line 1757, ../scss/layout/_header.scss */
.ms-header__features__item__categories:after, .ms-header__features__item__categories:before {
  position: absolute;
  top: -1px;
  left: 15%;
  width: 0;
  height: 0;
  content: ' ';
  pointer-events: none;
  border: solid transparent;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1757, ../scss/layout/_header.scss */
  .ms-header__features__item__categories:after, .ms-header__features__item__categories:before {
    display: none;
  }
}
/* line 1778, ../scss/layout/_header.scss */
.ms-header__features__item__categories:after {
  z-index: 999;
  margin-left: -10px;
  border-width: 10px;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #fff;
}
/* line 1788, ../scss/layout/_header.scss */
.ms-header__features__item__categories:before {
  z-index: 888;
  margin-left: -11px;
  border-width: 11px;
  border-color: rgba(194, 225, 245, 0);
  border-top-color: #d9d9d9;
}
/* line 1799, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li {
  margin: 0;
  padding: 0 27px 0 8px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1799, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li {
    padding: 0;
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    cursor: pointer;
  }
  /* line 1811, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li > a {
    margin: 0;
    padding: 12px 15px;
  }
  /* line 1816, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li > a:after {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1823, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li:before {
    content: '';
    background: url(../images/icon_dropdown.svg) center center no-repeat;
    top: 12px;
    right: 15px;
    width: 20px;
    height: 20px;
    position: absolute;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1837, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li.mobile-acitve:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
/* line 1844, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li.mobile-acitve .ms-header__features__item__categories__cat {
  display: block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1850, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li.active-child:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
/* line 1857, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li.active-child .ms-header__features__item__categories__cat {
  display: block;
}
@media (min-width: 768px) {
  /* line 1864, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li:hover .ms-header__features__item__categories__cat {
    display: block;
  }
}
/* line 1874, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li:hover > a:after {
  opacity: 1;
}
/* line 1880, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1880, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat {
    position: static;
    width: 100%;
  }
  /* line 1898, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat hgroup {
    display: none !important;
  }
}
@media (min-width: 768px) {
  /* line 1880, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat {
    overflow: hidden;
    min-width: 454px;
    height: auto;
    min-height: 100%;
    border-left: 1px solid #d9d9d9;
  }
  /* line 1912, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat:after {
    content: '';
    width: 1px;
    height: calc(100% - 87px);
    display: block;
    position: absolute;
    background-color: #D8D8D8;
    left: 50%;
    bottom: 16px;
  }
}
/* line 1925, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat hgroup {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 25px;
  background: #f6f6f6;
}
@media (min-width: 768px) {
  /* line 1925, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat hgroup {
    display: block;
    padding: 24px 24px 16px;
    margin-bottom: 16px;
  }
}
/* line 1942, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat hgroup h1 {
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
  color: #000;
}
/* line 1953, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat hgroup p {
  font-size: 11px;
  color: #777;
}
/* line 1961, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub {
  display: -webkit-flex;
  display: flex;
  margin: 10px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1961, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
}
@media (min-width: 768px) {
  /* line 1961, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub {
    display: block;
    margin: 0 0 16px;
    float: left;
    width: 50%;
    padding: 0 24px;
  }
}
/* line 1988, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub .col {
  -webkit-flex: 1;
  flex: 1;
  padding: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1988, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub .col {
    border: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2000, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub .col:first-of-type {
    padding: 0;
    border: none;
  }
}
/* line 2012, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl {
  margin: 0 0 10px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2012, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl {
    margin: 0;
  }
}
/* line 2020, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl:last-of-type {
  margin: 0;
}
@media (min-width: 768px) {
  /* line 2024, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl dt {
    margin-bottom: 8px;
  }
}
/* line 2031, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl dt a {
  font-size: 14px;
  font-weight: bold;
  padding: 0 0 8px 0;
  color: #40434b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2031, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl dt a {
    font-size: 12px;
    text-transform: uppercase;
    padding: 3px 20px;
    padding: 12px 20px;
    display: block;
  }
}
/* line 2055, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl dd {
  font-size: 12px;
  padding: 0 0 3px 0;
  color: #777;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2055, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl dd {
    font-size: 14px;
    padding: 8px 20px;
    border-bottom: 1px solid #d9d9d9;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2072, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl dd:last-of-type {
    border-bottom: none;
  }
}
/* line 2080, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li .ms-header__features__item__categories__cat__sub dl dd a {
  text-decoration: none;
  color: #777;
}
/* line 2090, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li > a {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  display: block;
  transition: all .4s;
  text-decoration: none;
  color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2090, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li > a {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  /* line 2090, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li > a {
    padding: 8px 16px;
  }
}
/* line 2114, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li > a:after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0;
  height: 0;
  margin-top: -18px;
  content: ' ';
  transition: all .4s;
  pointer-events: none;
  opacity: 0;
  border: solid transparent;
  border-width: 19px;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #f6f6f6;
}
@media (min-width: 768px) {
  /* line 2135, ../scss/layout/_header.scss */
  .ms-header__features__item__categories > li > a:hover {
    background: #f6f6f6;
  }
}
/* line 2142, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li > a:hover:after {
  opacity: 1;
}
/* line 2147, ../scss/layout/_header.scss */
.ms-header__features__item__categories > li > a:hover .ms-header__features__item__categories__cat {
  display: -webkit-flex;
  display: flex;
}
/* line 2156, ../scss/layout/_header.scss */
.ms-header__features__item svg {
  margin: 0 10px 0 0;
  display: inline-block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2156, ../scss/layout/_header.scss */
  .ms-header__features__item svg {
    width: 10%;
  }
}
/* line 2165, ../scss/layout/_header.scss */
.ms-header__features__item__feature {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 2170, ../scss/layout/_header.scss */
.ms-header__features__item__feature h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  color: #40434b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2170, ../scss/layout/_header.scss */
  .ms-header__features__item__feature h2 {
    text-align: left;
  }
}
/* line 2181, ../scss/layout/_header.scss */
.ms-header__features__item__feature h3 {
  font-size: 12px;
  font-weight: 100;
  font-style: italic;
  margin: 0;
  color: #777;
}
/* line 2197, ../scss/layout/_header.scss */
.ms-header__features__item hgroup {
  display: inline-block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2197, ../scss/layout/_header.scss */
  .ms-header__features__item hgroup {
    vertical-align: middle;
    width: 85%;
  }
}
/* line 2203, ../scss/layout/_header.scss */
.ms-header__features__item hgroup a {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  font-family: "Open Sans";
  color: #336699;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2203, ../scss/layout/_header.scss */
  .ms-header__features__item hgroup a {
    font-size: 14px;
  }
}

/* line 2222, ../scss/layout/_header.scss */
.cart__block__container__cart a.product-image {
  border: none;
}

/* line 2228, ../scss/layout/_header.scss */
#dark-bg {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  background-color: #000000;
  opacity: 0.8;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -100;
}
/* line 2240, ../scss/layout/_header.scss */
#dark-bg.active {
  z-index: 500;
}

/* line 2245, ../scss/layout/_header.scss */
body > .wrapper > .page {
  z-index: 600;
  position: relative;
}

/* line 2251, ../scss/layout/_header.scss */
.sticky-header-cats {
  display: none;
}

@media (min-width: 1024px) {
  /* line 2258, ../scss/layout/_header.scss */
  #ms-header.fixed-menu .sticky-header-cats {
    position: relative;
    margin-left: 36px;
    min-height: 100%;
    -webkit-align-self: stretch;
    align-self: stretch;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
  }
  /* line 2267, ../scss/layout/_header.scss */
  #ms-header.fixed-menu .sticky-header-cats > svg {
    margin-right: 10px;
  }
  /* line 2271, ../scss/layout/_header.scss */
  #ms-header.fixed-menu .sticky-header-cats .ms-header__features__item__feature {
    display: inline-block;
  }
  /* line 2274, ../scss/layout/_header.scss */
  #ms-header.fixed-menu .sticky-header-cats .ms-header__features__item__feature h2 {
    font-size: 14px;
  }
  /* line 2279, ../scss/layout/_header.scss */
  #ms-header.fixed-menu .sticky-header-cats ul {
    top: 82px;
    width: 300px;
  }
  /* line 2285, ../scss/layout/_header.scss */
  #ms-header.fixed-menu .sticky-header-cats:hover ul {
    display: block;
  }
}

/* line 2293, ../scss/layout/_header.scss */
header#global-message {
  background: #2e3339;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-style: italic;
  font-size: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
/* line 30, ../scss/layout/_header-nav.scss */
.skip-nav {
  width: 40%;
}
/* line 34, ../scss/layout/_header-nav.scss */
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}
/* line 38, ../scss/layout/_header-nav.scss */
.skip-nav:not(.skip-active):hover .icon {
  background-position: -46px 4px;
}

/* line 45, ../scss/layout/_header-nav.scss */
.skip-nav .label {
  display: inline;
}

/* line 50, ../scss/layout/_header-nav.scss */
.skip-nav .icon {
  background-position: 4px 4px;
}

@media only screen and (min-width: 500px) {
  /* line 61, ../scss/layout/_header-nav.scss */
  .skip-nav {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 71, ../scss/layout/_header-nav.scss */
  .skip-nav {
    display: none;
  }
}
/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
@media only screen and (max-width: 768px) {
  /* line 83, ../scss/layout/_header-nav.scss */
  #header-nav {
    padding: 5px 0;
  }
}
@media only screen and (min-width: 768px) {
  /* line 93, ../scss/layout/_header-nav.scss */
  #header-nav {
    display: block;
    /* Force visibility */
    border-bottom: 1px solid #ededed;
  }
}
/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 768px) {
  /* line 107, ../scss/layout/_header-nav.scss */
  .nav-primary {
    display: block;
  }
}
/* ============================================ *
 * General Navigation Styles
 * ============================================ */
/* line 122, ../scss/layout/_header-nav.scss */
.nav-primary a {
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  position: relative;
  display: block;
  text-decoration: none;
  color: #40434B;
}
/* line 136, ../scss/layout/_header-nav.scss */
.nav-primary li {
  position: relative;
}
/* line 141, ../scss/layout/_header-nav.scss */
.nav-primary li.level1 a {
  border-bottom: 1px solid #ebebeb;
}

/* line 148, ../scss/layout/_header-nav.scss */
.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 768px) {
  /* line 165, ../scss/layout/_header-nav.scss */
  .nav-primary a.level0,
  .nav-primary a {
    line-height: 35px;
  }
  /* line 172, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul {
    display: none;
  }
  /* line 178, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }
  /* line 183, ../scss/layout/_header-nav.scss */
  .nav-primary li.level1 a {
    padding: 0 15px 0 25px;
  }
  /* line 188, ../scss/layout/_header-nav.scss */
  .nav-primary li.parent > a:after {
    top: 50%;
    right: auto;
    left: 10px;
    margin-top: -5px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 5px solid transparent;
    border-right: none;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ccc;
  }
  /* line 200, ../scss/layout/_header-nav.scss */
  .nav-primary li.parent.sub-menu-active > a:after,
  .nav-primary li.parent.menu-active > a:after {
    top: 50%;
    right: auto;
    left: 10px;
    margin-top: -5px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 5px solid #ccc;
    border-right: 5px solid transparent;
    border-bottom: none;
    border-left: 5px solid transparent;
  }
  /* line 212, ../scss/layout/_header-nav.scss */
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    color: #369;
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 768px) {
  /* line 226, ../scss/layout/_header-nav.scss */
  .nav-primary {
    display: -webkit-flex;
    display: flex;
    /* Default styles for 1+ drop-down menus */
    /* Level 2+ */
    /* Class for js to add briefly to evaluate element positioning. */
    /* Correct menus that will hang off the page (class added by js) */
    /* Level 1+ */
  }
  /* line 229, ../scss/layout/_header-nav.scss */
  .nav-primary a.level0 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
    padding: 20px 0;
    text-transform: capitalize;
    color: #40434b;
  }
  /* line 242, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 {
    position: relative;
    margin: 0 20px 0 0;
  }
  /* line 250, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0:last-of-type:before {
    display: none;
  }
  /* line 256, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0:before {
    position: absolute;
    top: 50%;
    right: -10px;
    display: block;
    width: 1px;
    height: 40px;
    content: '';
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ebebeb;
  }
  /* line 274, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
  }
  /* line 280, ../scss/layout/_header-nav.scss */
  .nav-primary a.level1,
  .nav-primary a.level2,
  .nav-primary a.level3,
  .nav-primary a.level4 {
    padding: 5px 0;
  }
  /* line 288, ../scss/layout/_header-nav.scss */
  .nav-primary li:last-child > a {
    border-bottom: none;
  }
  /* line 293, ../scss/layout/_header-nav.scss */
  .nav-primary a:hover,
  .nav-primary li:hover > a {
    color: #369;
  }
  /* line 301, ../scss/layout/_header-nav.scss */
  .nav-primary .level0.menu-active, .nav-primary .level0.active {
    position: relative;
  }
  /* line 305, ../scss/layout/_header-nav.scss */
  .nav-primary .level0.menu-active:after, .nav-primary .level0.active:after {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 3px;
    content: '';
    background: #369;
  }
  /* line 322, ../scss/layout/_header-nav.scss */
  .nav-primary .menu-active {
    z-index: 200;
  }
  /* line 328, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul {
    position: absolute;
    z-index: 10;
    top: 76px;
    /* Height of ".nav-primary a.level0" */
    left: 0;
    display: none;
    /* Hide until displayed. */
    width: 250px;
    padding-right: 10px;
    padding-left: 10px;
    padding: 20px;
    border: solid 1px #ebebeb;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  /* line 345, ../scss/layout/_header-nav.scss */
  .nav-primary li.level1 ul {
    top: 15px;
    right: 60px;
  }
  /* line 352, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.position-test {
    display: block;
  }
  /* line 358, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto;
  }
  /* line 364, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    top: 20px;
    right: 50px;
    left: auto;
  }
  /* line 373, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li.parent > a {
    position: relative;
  }
  /* line 377, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li.parent > a:after {
    top: 50%;
    right: 5px;
    margin-top: -3px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid transparent;
    border-right: none;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #ccc;
  }
}
/* line 392, ../scss/layout/_header-nav.scss */
.nav-primary li.menu-active > ul {
  display: block;
}

/* line 399, ../scss/layout/_header-nav.scss */
.main-navigation {
  border-bottom: 1px solid #ebebeb;
}

/* line 407, ../scss/layout/_header-nav.scss */
.nav-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}
/* line 417, ../scss/layout/_header-nav.scss */
.nav-overlay.fadein {
  opacity: 0.6;
  z-index: 10;
}

/* line 423, ../scss/layout/_header-nav.scss */
.main-menu {
  width: 100%;
  height: calc(100% - 56px);
  position: absolute;
  font-family: 'Open Sans';
  top: 0px;
  left: -100%;
  background: #f1f1f1;
  padding: 0;
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
  transition: 300ms ease all;
}
/* line 424, ../scss/layout/_header-nav.scss */
.main-menu__mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  /* line 423, ../scss/layout/_header-nav.scss */
  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background: #fff;
    transform: none;
    transition: none;
    border-bottom: 1px solid #D9D9D9;
    z-index: 11;
  }
}
@media only screen and (max-width: 978px) {
  /* line 452, ../scss/layout/_header-nav.scss */
  .show-nav .main-menu {
    transform: translateX(100%);
    transform: translate3d(100%, 0, 0);
    overflow: scroll;
    z-index: 10;
    position: relative;
  }
}
/* line 462, ../scss/layout/_header-nav.scss */
.main-menu__item {
  z-index: 11;
}
@media only screen and (min-width: 768px) {
  /* line 464, ../scss/layout/_header-nav.scss */
  .main-menu__item:not(:first-child) > a {
    position: relative;
  }
}
/* line 471, ../scss/layout/_header-nav.scss */
.main-menu__list {
  margin: 0;
  padding: 0;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  /* line 471, ../scss/layout/_header-nav.scss */
  .main-menu__list {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 483, ../scss/layout/_header-nav.scss */
.main-menu__list > li {
  border-bottom: 1px solid #D9D9D9;
  margin-top: 0;
  background: #fff;
  margin-bottom: 0;
  padding-left: 0;
  overflow: visible;
  clear: both;
  box-sizing: border-box;
}
/* line 492, ../scss/layout/_header-nav.scss */
.main-menu__list > li:hover {
  text-decoration: none;
}
/* line 496, ../scss/layout/_header-nav.scss */
.main-menu__list > li.show-nav {
  background: #fff !important;
}
@media only screen and (min-width: 768px) {
  /* line 483, ../scss/layout/_header-nav.scss */
  .main-menu__list > li {
    border: none;
  }
}
/* line 502, ../scss/layout/_header-nav.scss */
.main-menu__list > li.section {
  margin-top: 8px;
}
@media only screen and (min-width: 768px) {
  /* line 502, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.section {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  /* line 509, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.hide-desktop {
    display: none;
  }
}
/* line 515, ../scss/layout/_header-nav.scss */
.main-menu__list > li.show-nav > div {
  display: block;
}
@media only screen and (min-width: 768px) {
  /* line 515, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.show-nav > div {
    display: block;
    position: absolute;
    left: 0;
    top: 49px;
    background: #fff;
    width: 100%;
    z-index: 99;
  }
}
@media only screen and (min-width: 768px) {
  /* line 527, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.show-nav > div > div {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1170px;
    padding: 32px 0;
  }
}
@media only screen and (min-width: 768px) {
  /* line 540, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.show-nav > a {
    position: relative;
    z-index: 999;
    background-color: #fff;
  }
}
@media only screen and (min-width: 768px) {
  /* line 548, ../scss/layout/_header-nav.scss */
  .main-menu__list > li div {
    /*display: none;*/
  }
}
@media only screen and (min-width: 768px) {
  /* line 553, ../scss/layout/_header-nav.scss */
  .main-menu__list > li div ul li {
    background: transparent;
    padding: 0 0 18px;
  }
}
/* line 558, ../scss/layout/_header-nav.scss */
.main-menu__list > li div ul li a {
  color: #666;
}
@media only screen and (min-width: 768px) {
  /* line 558, ../scss/layout/_header-nav.scss */
  .main-menu__list > li div ul li a {
    padding: 0;
    margin-bottom: 12px;
  }
}
/* line 565, ../scss/layout/_header-nav.scss */
.main-menu__list > li div ul li a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  /* line 570, ../scss/layout/_header-nav.scss */
  .main-menu__list > li div ul li:hover a {
    font-weight: 400;
    border: 0;
    padding: 0;
  }
}
/* line 581, ../scss/layout/_header-nav.scss */
.main-menu__list > li > a {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  color: #40434B;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  padding: 12px 16px;
  text-transform: uppercase;
}
/* line 592, ../scss/layout/_header-nav.scss */
.main-menu__list > li > a.hover:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #369;
}
/* line 602, ../scss/layout/_header-nav.scss */
.main-menu__list > li > a.item_fadein {
  position: relative;
}
/* line 604, ../scss/layout/_header-nav.scss */
.main-menu__list > li > a.item_fadein::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  color: #40434B;
}
@media only screen and (max-width: 978px) {
  /* line 581, ../scss/layout/_header-nav.scss */
  .main-menu__list > li > a {
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  /* line 581, ../scss/layout/_header-nav.scss */
  .main-menu__list > li > a {
    padding: 8px 22px 9px;
    text-align: center;
  }
}
/* line 625, ../scss/layout/_header-nav.scss */
.main-menu__list > li > a:hover {
  text-decoration: none;
}
/* line 629, ../scss/layout/_header-nav.scss */
.main-menu__list > li > a svg {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 768px) {
  /* line 629, ../scss/layout/_header-nav.scss */
  .main-menu__list > li > a svg {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  /* line 641, ../scss/layout/_header-nav.scss */
  .main-menu__list > li ul li {
    background: #f1f1f1;
    padding-left: 16px;
  }
}
/* line 648, ../scss/layout/_header-nav.scss */
.main-menu__list > li ul li:last-child {
  border-bottom: 0;
}
@media only screen and (max-width: 978px) {
  /* line 656, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.main-menu__item--parent > a:after {
    width: 49px;
    height: 42px;
    content: '';
    display: inline-block;
    background: url(../images/icon_chevron-down.svg) no-repeat;
    position: absolute;
    right: 10px;
    background-size: 49px;
  }
  /* line 669, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.main-menu__item--parent.show-nav > a:after {
    background: url(../images/icon_chevron-up.svg) no-repeat;
    background-size: 49px;
  }
}
@media (min-width: 768px) {
  /* line 680, ../scss/layout/_header-nav.scss */
  .main-menu__list > li.main-menu__item--parent > a:after {
    display: none;
  }
}
/* line 688, ../scss/layout/_header-nav.scss */
.main-menu__inner-list {
  display: none;
}
/* line 691, ../scss/layout/_header-nav.scss */
.main-menu__inner-list--level1 {
  height: auto !important;
}
/* line 695, ../scss/layout/_header-nav.scss */
.main-menu__inner-list--level2, .main-menu__inner-list--level3 {
  display: block !important;
}
/* line 700, ../scss/layout/_header-nav.scss */
.main-menu__inner-list--level2 ul, .main-menu__inner-list--level3 ul {
  display: block;
}
/* line 714, ../scss/layout/_header-nav.scss */
.main-menu__title {
  display: block;
  color: #40434B;
  background: #F1F1F1;
  padding: 4px 0 4px 32px;
  border-bottom: 1px solid #D9D9D9;
  border-top: 1px solid #D9D9D9;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  /* line 714, ../scss/layout/_header-nav.scss */
  .main-menu__title {
    color: #012D62;
    background: transparent;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #CDD5E1;
    border-top: 0;
    padding: 0 0 12px;
    margin-bottom: 6px;
    width: 100%;
    text-transform: none;
  }
}
@media only screen and (min-width: 768px) {
  /* line 741, ../scss/layout/_header-nav.scss */
  .full-width .main-menu__title {
    border-bottom: 0;
    border-top: 1px solid #CDD5E1;
    padding-top: 12px;
  }
}
/* line 753, ../scss/layout/_header-nav.scss */
.main-menu__title:hover {
  cursor: pointer;
}
@media only screen and (max-width: 978px) {
  /* line 761, ../scss/layout/_header-nav.scss */
  .main-menu__inner-link {
    display: block;
    padding: 12px 0 12px 32px;
    border-bottom: 1px solid #D9D9D9;
  }
}
@media only screen and (min-width: 768px) {
  /* line 775, ../scss/layout/_header-nav.scss */
  .main-menu .nav-column {
    width: calc(20% - 20px);
    margin-right: 20px;
  }
  /* line 782, ../scss/layout/_header-nav.scss */
  .main-menu .nav-column.large-2 {
    width: calc(40% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  /* line 790, ../scss/layout/_header-nav.scss */
  .main-menu .nav-column.no-title {
    padding-top: 64px;
  }
}
/* line 803, ../scss/layout/_header-nav.scss */
.main-menu .nav-2-products-column {
  display: flex;
}
@media only screen and (min-width: 768px) {
  /* line 803, ../scss/layout/_header-nav.scss */
  .main-menu .nav-2-products-column {
    width: calc(40% - 20px);
  }
}
/* line 809, ../scss/layout/_header-nav.scss */
.main-menu .nav-2-products-column li {
  padding: 0 0 60px 10px;
  display: table-cell;
  flex: 1;
}
/* line 813, ../scss/layout/_header-nav.scss */
.main-menu .nav-2-products-column li .widget-product-link {
  height: calc(100%);
  position: relative;
}
/* line 816, ../scss/layout/_header-nav.scss */
.main-menu .nav-2-products-column li .widget-product-link .price-box {
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  float: left;
  margin-bottom: 8px;
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* line 824, ../scss/layout/_header-nav.scss */
.main-menu .nav-2-products-column li .widget-product-link .price-box .price-label {
  display: none;
}
/* line 836, ../scss/layout/_header-nav.scss */
.main-menu .full-width {
  width: 100%;
  display: block;
  clear: both;
}
@media only screen and (max-width: 978px) {
  /* line 840, ../scss/layout/_header-nav.scss */
  .main-menu .full-width span {
    background: #fff;
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 0;
    text-decoration: underline;
    font-weight: normal;
    text-transform: none;
    font-size: 14px;
    color: #666;
  }
}
@media only screen and (min-width: 768px) {
  /* line 862, ../scss/layout/_header-nav.scss */
  .main-menu .main-menu__inner-item--level2 {
    margin-bottom: 32px;
  }
}
/* line 870, ../scss/layout/_header-nav.scss */
.main-menu .main-menu__inner-item--level2 > a {
  color: #000;
}
/* line 881, ../scss/layout/_header-nav.scss */
.main-menu .main-menu__inner-item--level3 a {
  color: #5d5d5d;
}
/* line 891, ../scss/layout/_header-nav.scss */
.main-menu .widget-product-link {
  display: block;
  border: 1px solid #CCD5E0;
  padding: 18px 16px;
  margin: 0 auto;
}
@media only screen and (max-width: 978px) {
  /* line 891, ../scss/layout/_header-nav.scss */
  .main-menu .widget-product-link {
    width: 46%;
    float: left;
    margin: 7px;
  }
}
/* line 905, ../scss/layout/_header-nav.scss */
.main-menu .widget-product-link .product-name {
  display: block;
  line-height: 16px;
  color: #666;
}
/* line 913, ../scss/layout/_header-nav.scss */
.main-menu .widget-product-link .price-box {
  display: block;
  color: #f00;
  font-weight: 700;
  text-align: left;
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  float: left;
  margin-bottom: 8px;
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* line 928, ../scss/layout/_header-nav.scss */
.main-menu .widget-product-link .price-box .price-label {
  display: none;
}
/* line 931, ../scss/layout/_header-nav.scss */
.main-menu .widget-product-link .price-box .price {
  color: #f00;
}
/* line 936, ../scss/layout/_header-nav.scss */
.main-menu .widget-product-link img {
  max-width: 100%;
}
/* line 943, ../scss/layout/_header-nav.scss */
.main-menu .nav-2-products-column .widget-product-link {
  width: 100%;
  float: none;
}

/* line 951, ../scss/layout/_header-nav.scss */
.show-nav a.main-menu__link {
  color: #336699;
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
/* line 34, ../scss/layout/_header-search.scss */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}
/* line 40, ../scss/layout/_header-search.scss */
.skip-search .icon {
  background-position: 4px -146px;
}

@media only screen and (min-width: 769px) {
  /* line 52, ../scss/layout/_header-search.scss */
  .skip-search {
    display: none;
  }
}
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
/* line 62, ../scss/layout/_header-search.scss */
#header-search {
  padding: 20px;
}

@media only screen and (min-width: 769px) {
  /* line 71, ../scss/layout/_header-search.scss */
  #header-search {
    position: absolute;
    top: 55px;
    right: 0;
    display: block;
    width: 25%;
    height: 50px;
    padding: 0;
  }
}
/* ============================================ *
 * Search Input
 * ============================================ */
/* line 89, ../scss/layout/_header-search.scss */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

/* line 96, ../scss/layout/_header-search.scss */
#search_mini_form label {
  display: none;
}

/* line 101, ../scss/layout/_header-search.scss */
#search {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  height: 36px;
  padding-right: 40px;
}

/* line 110, ../scss/layout/_header-search.scss */
#search_mini_form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: #5ccce8;
  text-indent: -9999px;
}

/* line 125, ../scss/layout/_header-search.scss */
#search_mini_form .search-button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  content: '';
  background: url(../images/search.svg) center center no-repeat;
}

/* line 141, ../scss/layout/_header-search.scss */
#search_mini_form .search-button:hover:before {
  opacity: .8;
}

/* line 146, ../scss/layout/_header-search.scss */
#search_mini_form .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
/* line 37, ../scss/layout/_header-account.scss */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
/* line 42, ../scss/layout/_header-account.scss */
.skip-account .icon {
  background-position: 4px -44px;
}

@media only screen and (min-width: 769px) {
  /* line 52, ../scss/layout/_header-account.scss */
  .skip-account {
    float: none;
    width: auto;
    vertical-align: top;
    display: inline-block;
    padding: 0 10px;
    text-transform: uppercase;
  }

  /* line 64, ../scss/layout/_header-account.scss */
  #header-account.skip-active {
    padding: 20px;
    border: solid 1px #ebebeb;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 115px;
    width: 200px;
  }

  /* line 74, ../scss/layout/_header-account.scss */
  #header-account a {
    display: block;
    padding: 5px 10px;
    color: #40434B;
    line-height: 2;
  }

  /* line 81, ../scss/layout/_header-account.scss */
  #header-account a:hover {
    color: #369;
  }
}
/* -------------------------------------------- *
 * Account Links
 */
/* line 91, ../scss/layout/_header-account.scss */
#header-account {
  padding: 5px 0;
}

/* line 95, ../scss/layout/_header-account.scss */
#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
}

/* line 103, ../scss/layout/_header-account.scss */
#header-account a:hover {
  color: #369;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
/* line 38, ../scss/layout/_header-cart.scss */
.skip-cart:not(.skip-active):hover .icon {
  background-position: -50px -95px;
}
/* line 44, ../scss/layout/_header-cart.scss */
.skip-cart .icon {
  background-position: 0 -95px;
}

@media only screen and (min-width: 769px) {
  /* line 56, ../scss/layout/_header-cart.scss */
  .skip-cart {
    width: auto;
    padding: 0 10px;
  }

  /* line 66, ../scss/layout/_header-cart.scss */
  #header-cart.skip-active {
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 0;
    display: block;
    width: 320px;
    background: white;
    padding: 20px;
    border: solid 1px #ebebeb;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
/* -------------------------------------------- *
 * Skip Cart Notifier
 */
/* line 88, ../scss/layout/_header-cart.scss */
.skip-link.skip-active .count {
  color: white;
}

/* line 96, ../scss/layout/_header-cart.scss */
.skip-cart.no-count .count {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* line 104, ../scss/layout/_header-cart.scss */
  .skip-cart {
    text-transform: uppercase;
    color: #369;
  }
  /* line 110, ../scss/layout/_header-cart.scss */
  .skip-cart:hover {
    text-decoration: none;
  }
  /* line 115, ../scss/layout/_header-cart.scss */
  .skip-cart .count {
    font-size: 14px;
    position: static;
    width: auto;
    margin-left: 0;
    background: none;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
  }

  /* line 136, ../scss/layout/_header-cart.scss */
  .skip-cart .count,
  .skip-link.skip-active .count {
    color: #369;
  }
}
/* line 143, ../scss/layout/_header-cart.scss */
.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
/* line 152, ../scss/layout/_header-cart.scss */
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
/* line 165, ../scss/layout/_header-cart.scss */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

/* line 172, ../scss/layout/_header-cart.scss */
.cart-menu .actions .button, .cart-menu .actions .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .cart-menu .actions a {
  float: left;
  width: 48%;
}

/* line 179, ../scss/layout/_header-cart.scss */
.cart-menu .actions .button + .button, .cart-menu .actions .klevuResultsBlock .klevuSuggestionHeading a + .button, .klevuResultsBlock .klevuSuggestionHeading .cart-menu .actions a + .button, .cart-menu .actions .klevuResultsBlock .klevuSuggestionHeading .button + a, .klevuResultsBlock .klevuSuggestionHeading .cart-menu .actions .button + a, .cart-menu .actions .klevuResultsBlock .klevuSuggestionHeading a + a, .klevuResultsBlock .klevuSuggestionHeading .cart-menu .actions a + a {
  margin-left: 4%;
}

/* Subtotal */
/* line 186, ../scss/layout/_header-cart.scss */
.cart-menu .subtotal {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  padding: 0 15px 15px;
}

/* List */
/* line 197, ../scss/layout/_header-cart.scss */
.mini-cart-list {
  margin-bottom: 5px;
}

/* line 202, ../scss/layout/_header-cart.scss */
.mini-cart-list li {
  font-size: 13px;
  line-height: 1.35;
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #ebebeb;
}

/* line 215, ../scss/layout/_header-cart.scss */
.mini-cart-list .product-name {
  display: inline-block;
}

/* line 220, ../scss/layout/_header-cart.scss */
.mini-cart-list .product-image {
  position: absolute;
  top: 15px;
  left: 15px;
}

/* line 227, ../scss/layout/_header-cart.scss */
.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

/* line 235, ../scss/layout/_header-cart.scss */
.mini-cart-list .has-options {
  font-size: 12px;
  margin-bottom: 0;
  color: #a0a0a0;
}

/* Too full - additional items will be shown in cart */
/* line 245, ../scss/layout/_header-cart.scss */
.cart-menu .last-added {
  font-size: 13px;
  padding: 10px 15px 15px;
  border-top: 1px solid #ebebeb;
}

/* line 254, ../scss/layout/_header-cart.scss */
.cart-mini {
  font-weight: 600;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 40px;
  text-transform: uppercase;
  color: #fff;
  background-color: #346699;
}
/* line 268, ../scss/layout/_header-cart.scss */
.cart-mini .b {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  height: 40px;
  text-transform: uppercase;
  color: #fff;
  background: #5ccce8;
}
/* line 281, ../scss/layout/_header-cart.scss */
.cart-mini .svg {
  padding: 0 10px;
}
/* line 284, ../scss/layout/_header-cart.scss */
.cart-mini .svg svg {
  fill: #fff;
}
/* line 290, ../scss/layout/_header-cart.scss */
.cart-mini .count {
  padding: 0 10px;
  color: #fff;
}
/* line 312, ../scss/layout/_header-cart.scss */
.cart-mini .label {
  padding: 0 10px 0 0;
  white-space: nowrap;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
/* line 52, ../scss/layout/_footer.scss */
.footer,
.footer button {
  font-family: "Open Sans", sans-serif;
}

/* line 58, ../scss/layout/_footer.scss */
.footer {
  clear: both;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #ebebeb;
  /* -------------------------------------------- *
   * Social icons
   */
}
@media only screen and (max-width: 479px) {
  /* line 58, ../scss/layout/_footer.scss */
  .footer {
    padding-top: 15px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  /* line 73, ../scss/layout/_footer.scss */
  .footer .links.social-media em {
    background-image: url(../../images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}
/* line 37, ../scss/layout/_footer.scss */
.footer .links.social-media em.facebook {
  height: 13px;
  background-position: 0 -0px;
}
/* line 44, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}
/* line 37, ../scss/layout/_footer.scss */
.footer .links.social-media em.twitter {
  height: 13px;
  background-position: 0 -24px;
}
/* line 44, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}
/* line 37, ../scss/layout/_footer.scss */
.footer .links.social-media em.youtube {
  height: 13px;
  background-position: 0 -49px;
}
/* line 44, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}
/* line 37, ../scss/layout/_footer.scss */
.footer .links.social-media em.pinterest {
  height: 15px;
  background-position: 0 -74px;
}
/* line 44, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}
/* line 37, ../scss/layout/_footer.scss */
.footer .links.social-media em.rss {
  height: 13px;
  background-position: 0 -99px;
}
/* line 44, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}
@media only screen and (max-width: 1199px) {
  /* line 89, ../scss/layout/_footer.scss */
  .footer .links {
    width: 22.65625%;
    margin-right: 3.125%;
    padding-right: 0;
  }
  /* line 96, ../scss/layout/_footer.scss */
  .footer .links:nth-child(4) {
    margin-right: 0;
  }
  /* line 101, ../scss/layout/_footer.scss */
  .footer .block-subscribe {
    float: none;
    clear: both;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 768px) {
  /* line 111, ../scss/layout/_footer.scss */
  .footer .form-language,
  .footer .currency-switcher {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  /* line 122, ../scss/layout/_footer.scss */
  .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  /* line 128, ../scss/layout/_footer.scss */
  .footer .links:nth-child(odd) {
    clear: both;
    margin-right: 3.125%;
  }
  /* line 135, ../scss/layout/_footer.scss */
  .footer .block-subscribe {
    float: left;
    clear: both;
    width: 100%;
  }
}
/* line 144, ../scss/layout/_footer.scss */
.footer .block-title {
  padding: 3px 0;
  border-bottom: 0;
}
/* line 151, ../scss/layout/_footer.scss */
.footer .block-title strong {
  font-weight: normal;
}
/* line 156, ../scss/layout/_footer.scss */
.footer .block-title,
.footer address {
  color: #369;
}
/* line 162, ../scss/layout/_footer.scss */
.footer .links {
  float: left;
  width: 17%;
  margin-bottom: 30px;
  padding: 0 30px 0 0;
}
/* line 170, ../scss/layout/_footer.scss */
.footer .links li {
  line-height: 1.4;
  padding: 4px 0;
  word-break: break-all;
}
/* line 179, ../scss/layout/_footer.scss */
.footer .links a {
  color: #40434B;
}
/* line 182, ../scss/layout/_footer.scss */
.footer .links a:hover {
  color: #369;
}
/* line 189, ../scss/layout/_footer.scss */
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 30px;
}
/* line 197, ../scss/layout/_footer.scss */
.footer .links,
.footer .block-subscribe {
  font-size: 12px;
  text-transform: uppercase;
}
/* line 205, ../scss/layout/_footer.scss */
.footer .form-subscribe-header {
  display: none;
}
/* line 214, ../scss/layout/_footer.scss */
.footer .links.social-media em {
  display: inline-block;
  width: 13px;
  margin-right: 7px;
  vertical-align: middle;
  background-image: url(../../images/social_icons.png);
  background-repeat: no-repeat;
}
/* line 230, ../scss/layout/_footer.scss */
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
/* line 238, ../scss/layout/_footer.scss */
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 247, ../scss/layout/_footer.scss */
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
/* line 251, ../scss/layout/_footer.scss */
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
/* line 257, ../scss/layout/_footer.scss */
.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}
/* line 265, ../scss/layout/_footer.scss */
.footer .block-subscribe .actions .button, .footer .block-subscribe .actions .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .footer .block-subscribe .actions a {
  line-height: 17px;
  float: left;
  height: 30px;
}
/* line 274, ../scss/layout/_footer.scss */
.footer .bugs,
.footer address {
  clear: both;
}
/* line 280, ../scss/layout/_footer.scss */
.footer .bugs {
  display: none;
}
/* line 285, ../scss/layout/_footer.scss */
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
/* line 294, ../scss/layout/_footer.scss */
.footer .form-language,
.footer .currency-switcher {
  display: none;
}
/* line 300, ../scss/layout/_footer.scss */
.footer address {
  font-size: 11px;
  width: 100%;
  margin-top: 30px;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #ebebeb;
}

/* line 318, ../scss/layout/_footer.scss */
footer.main .footer-links {
  padding: 64px 0;
  background: #f6f6f6;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 318, ../scss/layout/_footer.scss */
  footer.main .footer-links {
    padding: 16px 0 24px;
  }
}
/* line 330, ../scss/layout/_footer.scss */
footer.main .newsletter {
  padding: 26px 0;
  background-color: #012d5b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 330, ../scss/layout/_footer.scss */
  footer.main .newsletter {
    padding: 16px 0;
  }
}
/* line 340, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 340, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: baseline;
    align-items: baseline;
  }
}
@media (min-width: 768px) {
  /* line 340, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe {
    padding: 0 9%;
    justify-content: space-between;
  }
}
/* line 357, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .input-box {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
}
/* line 363, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .input-box .validation-advice {
  padding: 0 10px;
}
/* line 368, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .input-box input[type=email] {
  width: calc(100% - 102px);
}
/* line 372, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .input-box button {
  margin-left: 6px;
}
/* line 378, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .text {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding-right: 37px;
}
@media (min-width: 1024px) {
  /* line 378, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe .text {
    -webkit-flex: none;
    flex: none;
  }
}
@media (min-width: 768px) {
  /* line 378, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe .text {
    max-width: 43%;
  }
}
/* line 397, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .text .sub {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 397, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe .text .sub {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 408, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .text .sub svg {
  width: 70px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 408, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe .text .sub svg {
    width: auto;
  }
}
/* line 418, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .text .sub p {
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 418, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe .text .sub p {
    margin-bottom: 8px;
    line-height: 24px;
  }
}
/* line 430, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe .text .sub p a {
  text-decoration: underline;
  color: #5ccce8;
}
/* line 440, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe form {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
  flex: 1;
  justify-content: flex-end;
  width: 100%;
}
@media (min-width: 1024px) {
  /* line 440, ../scss/layout/_footer.scss */
  footer.main .newsletter .block-subscribe form {
    max-width: 60%;
  }
}
/* line 452, ../scss/layout/_footer.scss */
footer.main .newsletter .block-subscribe form > .fields {
  width: 100%;
}
/* line 459, ../scss/layout/_footer.scss */
footer.main .flex {
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 459, ../scss/layout/_footer.scss */
  footer.main .flex {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 468, ../scss/layout/_footer.scss */
footer.main .flex > div {
  -webkit-flex: 1;
  flex: 1;
}
/* line 478, ../scss/layout/_footer.scss */
footer.main .security-badges {
  text-align: right;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 478, ../scss/layout/_footer.scss */
  footer.main .security-badges {
    margin-top: 16px;
    text-align: center;
  }
}
/* line 487, ../scss/layout/_footer.scss */
footer.main .security-badges > div {
  display: inline-block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 487, ../scss/layout/_footer.scss */
  footer.main .security-badges > div {
    margin-bottom: 12px;
  }
  /* line 496, ../scss/layout/_footer.scss */
  footer.main .security-badges > div#authorizenet img {
    max-height: 57px;
    width: auto;
  }
  /* line 502, ../scss/layout/_footer.scss */
  footer.main .security-badges > div#mcafee img {
    max-height: 43px;
  }
  /* line 507, ../scss/layout/_footer.scss */
  footer.main .security-badges > div#bbb img {
    max-height: 79px;
  }
}
/* line 514, ../scss/layout/_footer.scss */
footer.main .security-badges > div#cloudflare {
  display: none;
}
/* line 518, ../scss/layout/_footer.scss */
footer.main .security-badges > div:not(:last-child) {
  margin-right: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 518, ../scss/layout/_footer.scss */
  footer.main .security-badges > div:not(:last-child) {
    margin-right: 16px;
  }
}
/* line 529, ../scss/layout/_footer.scss */
footer.main #footer-links-container {
  display: -webkit-flex;
  display: flex;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 529, ../scss/layout/_footer.scss */
  footer.main #footer-links-container {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  /* line 529, ../scss/layout/_footer.scss */
  footer.main #footer-links-container {
    margin-bottom: 48px;
  }
}
/* line 544, ../scss/layout/_footer.scss */
footer.main #footer-links-container > div {
  -webkit-flex: 1;
  flex: 1;
  padding: 0 36px 0 0;
  color: #40434b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 544, ../scss/layout/_footer.scss */
  footer.main #footer-links-container > div {
    padding: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 557, ../scss/layout/_footer.scss */
  footer.main #footer-links-container > div:not(:last-child) {
    margin-bottom: 18px;
  }
}
/* line 565, ../scss/layout/_footer.scss */
footer.main #footer-links-container > div:last-of-type {
  padding: 0;
}
/* line 570, ../scss/layout/_footer.scss */
footer.main #footer-links-container > div h4 {
  color: #40434b;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 570, ../scss/layout/_footer.scss */
  footer.main #footer-links-container > div h4 {
    margin-bottom: 12px;
  }
}
/* line 586, ../scss/layout/_footer.scss */
footer.main #footer-links-container > div ul li:not(:last-child) {
  margin-bottom: 8px;
}
/* line 589, ../scss/layout/_footer.scss */
footer.main #footer-links-container > div ul li a {
  font-size: 14px;
  color: #777777;
}
/* line 595, ../scss/layout/_footer.scss */
footer.main #footer-links-container > div ul li a:hover {
  color: #40434b;
}
/* line 602, ../scss/layout/_footer.scss */
footer.main #footer-links-container > div a {
  text-decoration: none;
  color: #40434b;
}

/* line 612, ../scss/layout/_footer.scss */
#enhanced-privacy-popup {
  padding: 14px;
  position: fixed;
  bottom: 0;
  z-index: 2147483651;
  background: white;
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
/* line 34, ../scss/module/_product-list.scss */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

/* line 40, ../scss/module/_product-list.scss */
.category-image {
  margin-bottom: 1.5em;
}

/* line 46, ../scss/module/_product-list.scss */
.catalog-category .product-status {
  width: 68px;
  margin-bottom: 5px;
}

/* line 53, ../scss/module/_product-list.scss */
.products-list .action .button, .products-list .action .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .products-list .action a,
.products-grid .actions .button,
.products-grid .actions .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .products-grid .actions a {
  white-space: normal;
}

/* -------------------------------------------- *
 * Product Name
 */
/* line 65, ../scss/module/_product-list.scss */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin: 0;
  margin-bottom: .5em;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeLegibility;
}
/* line 78, ../scss/module/_product-list.scss */
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #40434B;
}

/* line 84, ../scss/module/_product-list.scss */
.products-grid .product-name,
.products-list .product-name {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
/* line 94, ../scss/module/_product-list.scss */
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 500;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
/* line 106, ../scss/module/_product-list.scss */
.products-grid {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 113, ../scss/module/_product-list.scss */
.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

/* line 118, ../scss/module/_product-list.scss */
.products-grid > li {
  position: relative;
  margin-bottom: 25px;
  text-align: center;
}
/* line 126, ../scss/module/_product-list.scss */
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 132, ../scss/module/_product-list.scss */
.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
}

/* line 138, ../scss/module/_product-list.scss */
.products-grid .product-image img {
  width: 100%;
  height: auto;
}
/* line 143, ../scss/module/_product-list.scss */
.products-grid .product-image img:hidden {
  display: none;
}

/* line 151, ../scss/module/_product-list.scss */
.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

/* line 162, ../scss/module/_product-list.scss */
.products-grid .product-info {
  position: relative;
}

/* line 179, ../scss/module/_product-list.scss */
.products-grid .ratings .rating-box {
  margin: 0 auto;
}

/* line 184, ../scss/module/_product-list.scss */
.products-grid .ratings .amount {
  display: none;
}

/* line 189, ../scss/module/_product-list.scss */
.products-grid .price-box {
  font-size: 13px;
  margin: 0 0 5px;
  color: #a0a0a0;
}

/* line 198, ../scss/module/_product-list.scss */
.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */
/* line 210, ../scss/module/_product-list.scss */
.products-grid > li {
  float: left;
  width: 47.72727%;
  margin-right: 4.54545%;
}

/* line 218, ../scss/module/_product-list.scss */
.products-grid > li:nth-child(odd) {
  clear: left;
}

/* line 223, ../scss/module/_product-list.scss */
.products-grid > li:nth-child(even) {
  margin-right: 0;
}

/* line 228, ../scss/module/_product-list.scss */
.products-grid .product-image {
  margin-bottom: 12px;
}
/* line 27, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image:before, .products-grid .product-image:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 38, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
/* line 44, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
/* line 51, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image.loading {
  position: relative;
}
/* line 54, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
  display: block;
}

@media only screen and (min-width: 480px) {
  /* Config: Three columns + flexible gutter */
  /* line 247, ../scss/module/_product-list.scss */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  /* line 250, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(odd) {
    clear: none;
  }
  /* line 254, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(even) {
    margin-right: 3.7037%;
  }
  /* line 260, ../scss/module/_product-list.scss */
  .products-grid > li {
    width: 30.8642%;
    margin-right: 3.7037%;
  }
  /* line 265, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  /* line 269, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* line 290, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(odd) {
    clear: none;
  }

  /* line 294, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 298, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(even),
  .products-grid--max-4-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  /* line 305, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li {
    margin-right: 2.22222%;
  }

  /* line 309, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }

  /* line 314, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(4n+1) {
    clear: left;
  }

  /* line 318, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* line 290, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(odd) {
    clear: none;
  }

  /* line 294, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 298, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(even),
  .products-grid--max-5-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  /* line 305, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li {
    margin-right: 2.22222%;
  }

  /* line 309, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }

  /* line 314, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(5n+1) {
    clear: left;
  }

  /* line 318, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(5n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* line 290, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(odd) {
    clear: none;
  }

  /* line 294, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 298, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(even),
  .products-grid--max-6-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  /* line 305, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li {
    margin-right: 2.22222%;
  }

  /* line 309, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li {
    width: 14.81481%;
    margin-right: 2.22222%;
  }

  /* line 314, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(6n+1) {
    clear: left;
  }

  /* line 318, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Product List
 * ============================================ */
/* line 337, ../scss/module/_product-list.scss */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
/* line 342, ../scss/module/_product-list.scss */
.products-list > li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ededed;
}
/* line 349, ../scss/module/_product-list.scss */
.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}
/* line 353, ../scss/module/_product-list.scss */
.products-list > li .product-image {
  float: left;
  width: 20%;
  border: none;
}
/* line 362, ../scss/module/_product-list.scss */
.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}
/* line 369, ../scss/module/_product-list.scss */
.products-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* line 377, ../scss/module/_product-list.scss */
.products-list .product-shop {
  float: right;
  width: 78%;
  padding-left: 20px;
}
/* line 384, ../scss/module/_product-list.scss */
.products-list .product-shop .product-name {
  margin-bottom: 0;
}
/* line 388, ../scss/module/_product-list.scss */
.products-list .product-shop .ratings {
  margin: 0;
}
/* line 392, ../scss/module/_product-list.scss */
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}
/* line 399, ../scss/module/_product-list.scss */
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
/* line 405, ../scss/module/_product-list.scss */
.products-list .product-shop .price-box {
  margin-top: 0;
}
/* line 409, ../scss/module/_product-list.scss */
.products-list .product-shop .price-box .price {
  font-size: 18px;
}
/* line 413, ../scss/module/_product-list.scss */
.products-list .product-shop .action {
  margin: 7px 0;
}
/* line 417, ../scss/module/_product-list.scss */
.products-list .product-shop .desc {
  margin-top: 7px;
}
/* line 422, ../scss/module/_product-list.scss */
.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  overflow: hidden;
  width: 65%;
  margin-top: 0;
}
/* line 430, ../scss/module/_product-list.scss */
.products-list .product-shop .product-secondary {
  float: right;
  clear: right;
  width: 25%;
  min-height: 0;
  text-align: left;
}

@media only screen and (min-width: 480px) {
  /* line 444, ../scss/module/_product-list.scss */
  .products-list .product-name a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1279px) {
  /* line 454, ../scss/module/_product-list.scss */
  .products-list .product-shop .product-primary,
  .products-list .product-shop .desc {
    float: left;
    width: 60%;
    padding-right: 20px;
  }
  /* line 462, ../scss/module/_product-list.scss */
  .products-list .product-shop .product-secondary {
    float: right;
    width: 40%;
  }
}
@media only screen and (max-width: 600px) {
  /* line 477, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  /* line 480, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__image {
    width: 50%;
    margin: 0;
    padding-right: 18px;
    max-width: 150px;
  }
  /* line 486, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__image a {
    margin-top: 0;
  }
  /* line 491, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__info {
    width: 50%;
  }
  /* line 494, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__info .product-name {
    margin-bottom: 8px;
  }
  /* line 498, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__info .product__reviews {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  /* line 504, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__info .product__stars {
    margin-bottom: 8px;
  }
  /* line 508, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__sale {
    display: block;
    position: relative;
  }
  /* line 513, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__sale .product-secondary:not(:last-child) {
    float: left;
    width: calc(100% - 146px);
    clear: left;
  }
  /* line 519, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__sale .product-secondary:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  /* line 526, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__sale .price-box {
    display: block;
    width: 50%;
  }
  /* line 530, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__sale .price-box .price-from {
    margin: 0;
  }
  /* line 536, ../scss/module/_product-list.scss */
  .products-list li.item .product__wrapper .product__sale .action a,
  .products-list li.item .product__wrapper .product__sale .action button {
    font-size: 12px;
  }

  /* line 546, ../scss/module/_product-list.scss */
  .products-list .product-shop .price-box .special-price {
    padding-left: 0;
  }

  /* line 552, ../scss/module/_product-list.scss */
  .products-list .product-shop .product-primary,
  .products-list .product-shop .product-secondary,
  .products-list .product-shop .desc {
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
}
/* ============================================ *
 * Mini Product List
 * ============================================ */
/* line 572, ../scss/module/_product-list.scss */
.mini-products-list .product-image {
  min-width: 50px;
}
/* line 576, ../scss/module/_product-list.scss */
.mini-products-list .product-details {
  margin-left: 60px;
}
/* line 582, ../scss/module/_product-list.scss */
.mini-products-list .product-details .product-name {
  padding-top: 10px;
}
/* line 587, ../scss/module/_product-list.scss */
.mini-products-list li {
  clear: both;
  margin-bottom: 10px;
}
/* line 593, ../scss/module/_product-list.scss */
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 602, ../scss/module/_product-list.scss */
.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both;
}
/* line 607, ../scss/module/_product-list.scss */
.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}
/* line 615, ../scss/module/_product-list.scss */
.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}
/* line 621, ../scss/module/_product-list.scss */
.mini-products-images-list li.item .product-image {
  display: block;
}
/* line 625, ../scss/module/_product-list.scss */
.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
/* line 640, ../scss/module/_product-list.scss */
.category-image {
  padding: 10px;
  border: 1px solid #ebebeb;
}
/* line 646, ../scss/module/_product-list.scss */
.category-image img {
  width: 100%;
  max-width: 100%;
}
/* line 651, ../scss/module/_product-list.scss */
.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
/* line 662, ../scss/module/_product-list.scss */
.block-layered-nav .block-subtitle--filter {
  display: none;
  cursor: pointer;
  font-weight: normal;
  position: relative;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #ebebeb;
  background-color: #f4f4f4;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 141, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-subtitle--filter:after {
  top: 50%;
  left: 10px;
  margin-top: -3px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid #369;
  border-right: 4px solid transparent;
  border-bottom: none;
  border-left: 4px solid transparent;
}
/* line 151, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

/* line 159, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
/* line 166, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dt {
  display: block;
  font-weight: normal;
  position: relative;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #ebebeb;
  background-color: #f4f4f4;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 141, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dt:after {
  top: 50%;
  left: 10px;
  margin-top: -3px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid #369;
  border-right: 4px solid transparent;
  border-bottom: none;
  border-left: 4px solid transparent;
}
/* line 151, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ededed;
}
/* line 173, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dd {
  margin: 0;
  padding: 10px;
  border-width: 0 1px;
  border-style: solid;
  border-color: #ebebeb;
}
/* line 182, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

/* line 683, ../scss/module/_product-list.scss */
.block-layered-nav dl dd ol > li > span,
.block-layered-nav dl dd ol > li > a {
  display: block;
  padding: 5px 15px;
}
/* line 690, ../scss/module/_product-list.scss */
.block-layered-nav dl dd ol > li > a .count {
  color: #a0a0a0;
}

@media only screen and (min-width: 769px) {
  /* line 698, ../scss/module/_product-list.scss */
  .block-layered-nav .block-content > dl > dt {
    padding-left: 10px;
  }
  /* line 702, ../scss/module/_product-list.scss */
  .block-layered-nav .block-content > dl > dt:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  /* line 717, ../scss/module/_product-list.scss */
  .block-layered-nav--no-filters .block-title {
    display: none;
  }

  /* line 723, ../scss/module/_product-list.scss */
  .block-layered-nav .block-content {
    margin-top: 15px;
    padding-top: 0;
  }
  /* line 193, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  /* line 199, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dt:hover {
    color: #369;
  }
  /* line 203, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dt:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid transparent;
    border-right: none;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #369;
  }
  /* line 207, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dt.last {
    border-bottom-width: 1px;
  }
  /* line 213, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dd {
    display: none;
  }
  /* line 225, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  /* line 230, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    top: 50%;
    left: 6px;
    margin-top: -3px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid #369;
    border-right: 4px solid transparent;
    border-bottom: none;
    border-left: 4px solid transparent;
  }
  /* line 241, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    display: block;
  }

  /* line 731, ../scss/module/_product-list.scss */
  .block-layered-nav .block-subtitle--filter {
    display: block;
    margin-bottom: 0;
    color: #fff;
    border: 0;
    background-color: #369;
  }
  /* line 741, ../scss/module/_product-list.scss */
  .block-layered-nav .block-subtitle--filter:after {
    top: 50%;
    right: 10px;
    margin-top: -13px;
    content: "+";
    width: 15px;
    height: 15px;
    border: none;
  }
  /* line 753, ../scss/module/_product-list.scss */
  .block-layered-nav .block-subtitle--filter:hover {
    color: #fff;
    background-color: #2d5986;
  }
  /* line 759, ../scss/module/_product-list.scss */
  .block-layered-nav .block-subtitle--filter.active:after {
    top: 50%;
    right: 10px;
    margin-top: -14px;
    content: "-";
    width: 15px;
    height: 15px;
  }

  /* line 772, ../scss/module/_product-list.scss */
  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border: 1px solid #ebebeb;
    border-top: 0;
  }

  /* line 781, ../scss/module/_product-list.scss */
  .block-layered-nav dl ol > li > a,
  .block-layered-nav dl ol > li > span {
    margin: 5px;
    padding: 7px;
  }

  /* line 788, ../scss/module/_product-list.scss */
  .block-layered-nav dl ol > li > a {
    padding: 5px 10px;
    color: #40434B;
    background-color: #f4f4f4;
  }
  /* line 792, ../scss/module/_product-list.scss */
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }
}
/* line 803, ../scss/module/_product-list.scss */
.block-layered-nav .currently .block-subtitle {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
}
/* line 810, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol {
  margin-bottom: 10px;
  padding-left: 10px;
}
/* line 815, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}
/* line 819, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
/* line 824, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 831, ../scss/module/_product-list.scss */
.block-layered-nav .actions {
  margin-bottom: 7px;
  text-align: right;
}

/* line 840, ../scss/module/_product-list.scss */
.m-filter-item-list input[type=checkbox] {
  margin-right: 7px;
}
/* line 844, ../scss/module/_product-list.scss */
.m-filter-item-list input[type=radio] {
  margin-right: 7px;
}

/* line 850, ../scss/module/_product-list.scss */
.stabs {
  font-size: 1em;
  /*padding:0.9em;*/
  line-height: 34px;
  display: inline-block;
  padding-right: .9em;
  padding-left: .9em;
  color: #70747e;
}

/* line 869, ../scss/module/_product-list.scss */
.products-list .product-name {
  width: 100%;
}

/* line 873, ../scss/module/_product-list.scss */
.amount--has-pages {
  margin-bottom: 1em;
}

/* line 878, ../scss/module/_product-list.scss */
.mini-products-list button {
  float: none;
}

/* line 883, ../scss/module/_product-list.scss */
.block .actions .button, .block .actions .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .block .actions a {
  float: none;
}

/* line 887, ../scss/module/_product-list.scss */
.products-list .price-box {
  text-align: left;
}

/* line 891, ../scss/module/_product-list.scss */
.products-list .price-from {
  font-size: .8em;
  text-decoration: line-through;
}

/* line 897, ../scss/module/_product-list.scss */
.products-list .price-save {
  font-size: 1em;
  font-weight: 600;
  color: #75c3b5;
}

/* line 906, ../scss/module/_product-list.scss */
.products-list > li {
  border: none;
  margin-bottom: 12px;
  padding: 0;
}
/* line 910, ../scss/module/_product-list.scss */
.products-list > li.featured {
  max-width: 100%;
}
/* line 915, ../scss/module/_product-list.scss */
.products-list .product__wrapper {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #d9d9d9;
  padding: 18px;
}
/* line 921, ../scss/module/_product-list.scss */
.products-list .product__image {
  margin-right: 18px;
  width: 180px;
}
/* line 924, ../scss/module/_product-list.scss */
.products-list .product__image a {
  width: 100%;
}
/* line 928, ../scss/module/_product-list.scss */
.products-list .product__info {
  flex-grow: 2;
  max-width: 530px;
}
/* line 931, ../scss/module/_product-list.scss */
.products-list .product__info h2 {
  margin-bottom: 5px;
}
/* line 935, ../scss/module/_product-list.scss */
.products-list .product__brand {
  margin-bottom: 4px;
}
/* line 938, ../scss/module/_product-list.scss */
.products-list .product__reviews {
  clear: both;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 18px;
}
/* line 943, ../scss/module/_product-list.scss */
.products-list .product__reviews .recommended {
  clear: both;
  font-size: 12px;
  font-weight: 100;
  font-style: italic;
  display: inline-block;
  padding: 6px;
  text-transform: none;
  color: #40434b;
  border-radius: 2px;
  background: #f6f6f6;
}
/* line 956, ../scss/module/_product-list.scss */
.products-list .product__stars {
  margin-right: 12px;
}
/* line 959, ../scss/module/_product-list.scss */
.products-list .product__attributes {
  font-size: 12px;
  line-height: 17px;
  color: #40434B;
  font-family: "Open Sans", sans-serif;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 959, ../scss/module/_product-list.scss */
  .products-list .product__attributes {
    display: none;
  }
}
/* line 970, ../scss/module/_product-list.scss */
.products-list .product__sale {
  text-align: right;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  flex-grow: 1;
}
/* line 978, ../scss/module/_product-list.scss */
.products-list .product__sale .product-secondary:last-child {
  margin-top: auto;
}
/* line 983, ../scss/module/_product-list.scss */
.products-list .product__sale .price-box {
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  float: left;
  text-align: left !important;
  color: #369 !important;
  font-weight: 600;
  margin-bottom: 8px;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 999, ../scss/module/_product-list.scss */
.products-list .product__sale .price-box .price-from,
.products-list .product__sale .price-box .old-price {
  margin-left: 8px;
}
/* line 1003, ../scss/module/_product-list.scss */
.products-list .product__sale .price-box .price-from span,
.products-list .product__sale .price-box .old-price span {
  font-weight: 400 !important;
  color: #369 !important;
  text-decoration: line-through;
  display: block;
  text-align: right;
}
/* line 1014, ../scss/module/_product-list.scss */
.products-list .product__sale .price-box .special-price {
  padding: 0;
}
/* line 1019, ../scss/module/_product-list.scss */
.products-list .product__sale .price-box .price-label {
  color: #f00;
}
/* line 1026, ../scss/module/_product-list.scss */
.products-list .product__sale .price-box .old-price .price-label {
  display: none;
}
/* line 1031, ../scss/module/_product-list.scss */
.products-list .product__sale .price-box .price,
.products-list .product__sale .price-box span {
  font-size: 14px;
  text-align: left;
}
/* line 1040, ../scss/module/_product-list.scss */
.products-list .product__sale .btn-cart {
  margin-bottom: 5px;
}
/* line 1044, ../scss/module/_product-list.scss */
.products-list .product__sale .btn-moreinfo {
  background: #ffffff;
  border: 1px solid #d9d9d9 !important;
  color: #40434B !important;
  width: 100%;
}
/* line 1050, ../scss/module/_product-list.scss */
.products-list .product__sale .btn-moreinfo:hover {
  background: #f6f6f6;
}
/* line 1055, ../scss/module/_product-list.scss */
.products-list .product__sale .action.availability {
  text-align: center;
  padding: 9px;
}

/* line 1064, ../scss/module/_product-list.scss */
.products-grid {
  padding: 30px 0 0 0;
}
/* line 1067, ../scss/module/_product-list.scss */
.products-grid li.item {
  position: relative;
  border: 1px solid #d9d9d9;
  padding: 5px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 1076, ../scss/module/_product-list.scss */
.products-grid li.item .product-image {
  /*border: 1px solid #d9d9d9;*/
}
/* line 1080, ../scss/module/_product-list.scss */
.products-grid li.item .actions {
  padding: 0;
  text-align: left;
}
/* line 1087, ../scss/module/_product-list.scss */
.products-grid li.item .actions .btn-cart {
  margin-bottom: 5px;
  width: 100%;
}
/* line 1092, ../scss/module/_product-list.scss */
.products-grid li.item .actions .btn-moreinfo {
  background: #ffffff;
  border: 1px solid #d9d9d9 !important;
  color: #40434B !important;
  width: 100%;
}
/* line 1098, ../scss/module/_product-list.scss */
.products-grid li.item .actions .btn-moreinfo:hover {
  background: #f6f6f6;
}
/* line 1105, ../scss/module/_product-list.scss */
.products-grid li.item .price-box {
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  float: left;
  text-align: left !important;
  color: #369 !important;
  font-weight: 600;
  margin-bottom: 8px;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1105, ../scss/module/_product-list.scss */
  .products-grid li.item .price-box {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 1126, ../scss/module/_product-list.scss */
.products-grid li.item .price-box .price-from,
.products-grid li.item .price-box .old-price {
  margin-left: 8px;
  order: 10;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1126, ../scss/module/_product-list.scss */
  .products-grid li.item .price-box .price-from,
  .products-grid li.item .price-box .old-price {
    margin-left: 0;
  }
}
/* line 1135, ../scss/module/_product-list.scss */
.products-grid li.item .price-box .price-from span,
.products-grid li.item .price-box .old-price span {
  font-weight: 400 !important;
  color: #369 !important;
  text-decoration: line-through;
}
/* line 1143, ../scss/module/_product-list.scss */
.products-grid li.item .price-box .price-label {
  color: #f00;
}
/* line 1148, ../scss/module/_product-list.scss */
.products-grid li.item .price-box .price,
.products-grid li.item .price-box span {
  font-size: 14px;
  text-align: left;
}
/* line 1155, ../scss/module/_product-list.scss */
.products-grid li.item .price-box .price {
  color: #f00;
}
/* line 1160, ../scss/module/_product-list.scss */
.products-grid li.item .price-box .old-price .price-label {
  display: none;
}
/* line 1163, ../scss/module/_product-list.scss */
.products-grid li.item .price-box .old-price .price {
  color: #369;
}
/* line 1170, ../scss/module/_product-list.scss */
.products-grid li.item .product-info,
.products-grid li.item .product-image {
  position: relative;
  z-index: 4;
}
/* line 1177, ../scss/module/_product-list.scss */
.products-grid li.item .product-info {
  text-align: left;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 1182, ../scss/module/_product-list.scss */
.products-grid li.item .product-info > .product-price {
  margin-top: auto;
}
/* line 1187, ../scss/module/_product-list.scss */
.products-grid li.item .product-name {
  font-weight: bold;
  width: 100%;
  margin: 10px 0 12px;
  text-align: left;
  text-transform: capitalize;
}
/* line 1195, ../scss/module/_product-list.scss */
.products-grid li.item .product-name a {
  font-weight: bold;
  color: #40434b;
}
/* line 1203, ../scss/module/_product-list.scss */
.products-grid li.item .recommended {
  clear: both;
  font-size: 12px;
  font-weight: 100;
  font-style: italic;
  display: inline-block;
  padding: 6px;
  text-transform: none;
  color: #40434b;
  border-radius: 2px;
  background: #f6f6f6;
  margin-bottom: 12px;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
/* line 1218, ../scss/module/_product-list.scss */
.products-grid li.item .product-price {
  margin-top: auto;
}
/* line 1222, ../scss/module/_product-list.scss */
.products-grid li.item .details {
  display: -webkit-flex;
  display: flex;
}
/* line 1225, ../scss/module/_product-list.scss */
.products-grid li.item .details span {
  -webkit-flex: 1;
  flex: 1;
}
/* line 1228, ../scss/module/_product-list.scss */
.products-grid li.item .details span.name {
  font-size: 12px;
  text-align: left;
  color: #777;
}
/* line 1237, ../scss/module/_product-list.scss */
.products-grid li.item .details span.rating {
  text-align: right;
}
/* line 1240, ../scss/module/_product-list.scss */
.products-grid li.item .details span.rating .rating-box {
  float: right;
  margin: 0;
}
/* line 1252, ../scss/module/_product-list.scss */
.products-grid li.item.featured:after {
  position: absolute;
  z-index: 0;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  display: block;
  content: '';
  border: 1px solid #369;
}
/* line 1268, ../scss/module/_product-list.scss */
.products-grid li.item.featured:before {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  z-index: 1;
  top: -18px;
  left: 50%;
  padding: 0 5px;
  content: 'Featured Product';
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  text-transform: uppercase;
  color: #369;
  background: #fff;
}
/* line 1290, ../scss/module/_product-list.scss */
.products-grid li.item .link-compare {
  background: #ffffff;
  border: 1px solid #d9d9d9 !important;
  color: #40434B !important;
  padding: 10px 30px;
  white-space: nowrap;
  border-radius: 3px;
  text-decoration: none !important;
  font-family: "Open Sans", sans-serif;
  line-height: 18px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5px;
  width: 100%;
  text-align: center;
  font-size: 12px;
}
/* line 1307, ../scss/module/_product-list.scss */
.products-grid li.item .link-compare:hover {
  background: #f6f6f6;
}

/* line 1316, ../scss/module/_product-list.scss */
.products-list li.item {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 1323, ../scss/module/_product-list.scss */
.products-list li.item.featured:after {
  position: absolute;
  z-index: 0;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: block;
  content: '';
  border: 1px solid #369;
}
/* line 1339, ../scss/module/_product-list.scss */
.products-list li.item.featured:before {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  z-index: 1;
  top: -8px;
  left: 50%;
  padding: 0 5px;
  content: 'Featured Product';
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  text-transform: uppercase;
  color: #369;
  background: #fff;
}

/* line 1363, ../scss/module/_product-list.scss */
.toolbar {
  padding: 0;
  border: none;
}
/* line 1368, ../scss/module/_product-list.scss */
.toolbar label::after {
  display: none;
}
/* line 1372, ../scss/module/_product-list.scss */
.toolbar .sorter {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
/* line 1378, ../scss/module/_product-list.scss */
.toolbar .sorter .view-mode {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1378, ../scss/module/_product-list.scss */
  .toolbar .sorter .view-mode {
    display: none;
  }
}
/* line 1390, ../scss/module/_product-list.scss */
.toolbar .sorter .view-mode .view {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #d9d9d9;
}
/* line 1400, ../scss/module/_product-list.scss */
.toolbar .sorter .view-mode .toggle-view {
  display: -webkit-flex;
  display: flex;
}
/* line 1406, ../scss/module/_product-list.scss */
.toolbar .sorter .view-mode .toggle-view .view:first-child {
  border-right: 1px solid #d9d9d9;
  border-radius: 3px 0 0 3px;
}
/* line 1411, ../scss/module/_product-list.scss */
.toolbar .sorter .view-mode .toggle-view .view:last-child {
  border-left: none;
  border-radius: 0 3px 3px 0;
}
/* line 1419, ../scss/module/_product-list.scss */
.toolbar .sorter .view-mode span.view {
  background: #f6f6f6;
}
/* line 1432, ../scss/module/_product-list.scss */
.toolbar .pager {
  margin-right: 32px;
}
/* line 1435, ../scss/module/_product-list.scss */
.toolbar .pager,
.toolbar .sort-by {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: auto;
}
/* line 1440, ../scss/module/_product-list.scss */
.toolbar .pager label,
.toolbar .sort-by label {
  line-height: 100%;
}
/* line 1444, ../scss/module/_product-list.scss */
.toolbar select {
  width: 148px;
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 1449, ../scss/module/_product-list.scss */
  .block-layered-nav--no-filters {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 1457, ../scss/module/_product-list.scss */
  .block-title {
    font-size: 13px !important;
    margin: 10px 0 !important;
    padding: 10px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 1473, ../scss/module/_product-list.scss */
  .sort-by {
    width: 100%;
  }
  /* line 1478, ../scss/module/_product-list.scss */
  .sort-by select {
    width: 100%;
  }
  /* line 1482, ../scss/module/_product-list.scss */
  .sort-by label {
    display: none;
  }
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
/* line 38, ../scss/module/_catalog-product.scss */
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
/* line 44, ../scss/module/_catalog-product.scss */
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
/* line 50, ../scss/module/_catalog-product.scss */
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
/* line 57, ../scss/module/_catalog-product.scss */
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
@media (min-width: 768px) {
  /* line 63, ../scss/module/_catalog-product.scss */
  .product-view .pdp-name-mobile {
    display: none;
  }
}
/* line 69, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  margin-bottom: 10px;
  color: #369;
  border: 0;
}
/* line 84, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-name {
  margin-bottom: 16px;
}
/* line 88, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-name .h1 {
  margin-bottom: 8px;
  display: block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 92, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .product-name .h1.desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  /* line 99, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .product-name > .yotpo {
    float: left;
    margin-bottom: 16px;
  }
}
/* line 106, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-name > .yotpo .text-m {
  color: #777777 !important;
  margin-left: 6px;
}
/* line 114, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-options h3,
.product-view .product-shop .product-options dt label {
  color: #40434B !important;
  margin: 0 0 13px !important;
  font-size: 14px;
}
/* line 121, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-options dd {
  margin: 0;
  padding: 0;
  font-size: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 121, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .product-options dd {
    margin-bottom: 16px !important;
  }
}
/* line 131, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-options dd .input-box {
  font-size: 12px;
}
/* line 137, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-options dl > span {
  font-size: 12px !important;
  margin-bottom: 24px;
  display: block;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 137, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .product-options dl > span {
    margin-bottom: 16px;
  }
}
/* line 149, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-options .tip.tip-button {
  position: absolute;
  top: 0;
  right: 0;
}
/* line 157, ../scss/module/_catalog-product.scss */
.product-view .product-shop .extra-info {
  float: left;
  clear: left;
  width: 70%;
  padding-right: 15px;
}
/* line 166, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-info {
  float: right;
  padding-left: 15px;
  text-align: right;
}
/* line 175, ../scss/module/_catalog-product.scss */
.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 70%;
  margin-bottom: 0;
}
/* line 182, ../scss/module/_catalog-product.scss */
.product-view .product-shop .short-description {
  clear: both;
  margin-bottom: 10px;
}
/* line 189, ../scss/module/_catalog-product.scss */
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
/* line 194, ../scss/module/_catalog-product.scss */
.product-view .product-shop .availability {
  font-size: 16px;
}
/* line 199, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box {
  margin-top: 0;
}
/* line 203, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  line-height: 1.2;
  padding-right: 0;
}
/* line 212, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  font-size: 24px;
  color: #369;
}
/* line 223, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}
/* line 230, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .special-price span.weee {
  color: #40434B;
}
/* line 234, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}
/* line 241, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  line-height: 1.2;
  display: block;
  color: #40434B;
}
/* line 250, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
/* line 256, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
/* line 264, ../scss/module/_catalog-product.scss */
.product-view .price-box.map-info a {
  display: inherit;
}
/* line 271, ../scss/module/_catalog-product.scss */
.product-view .old-price .price-label {
  display: inline-block;
}
/* line 278, ../scss/module/_catalog-product.scss */
.product-view .block-related {
  float: right;
  clear: right;
  margin-top: 10px;
}
/* line 286, ../scss/module/_catalog-product.scss */
.product-view .block-related .mini-products-list li {
  display: inline-block !important;
}
/* line 291, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-wrapper {
  float: right;
  clear: right;
  width: 60%;
}
/* line 297, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-wrapper .bundle-product-included-options {
  color: #40434B;
}
/* line 301, ../scss/module/_catalog-product.scss */
.product-view .product-options .price-notice .price {
  line-height: 20px;
}

@media only screen and (max-width: 850px) {
  /* line 318, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 15px;
  }
  /* line 323, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 337, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart-wrapper {
    float: none;
    clear: both;
    width: 100%;
  }
  /* line 352, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 16px;
  }
  /* line 357, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 20px;
  }
}
@media only screen and (max-width: 420px) {
  /* line 375, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px;
  }
  /* line 380, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block;
  }
}
/* line 390, ../scss/module/_catalog-product.scss */
.product-img-box {
  float: left;
}
/* line 395, ../scss/module/_catalog-product.scss */
.product-img-box .product-name h1 {
  border: 0;
}
/* line 401, ../scss/module/_catalog-product.scss */
.product-img-box .product-image {
  margin-bottom: 10px;
  margin-right: 5px;
  position: relative;
}
/* line 405, ../scss/module/_catalog-product.scss */
.product-img-box .product-image span.best-seller {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 13px;
  color: #e6e6e6;
  display: inline-block;
  padding: 0 10px;
  line-height: 34px;
  background: #f06543;
  z-index: 2;
}
/* line 416, ../scss/module/_catalog-product.scss */
.product-img-box .product-image span.best-seller::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: -20px;
  border-bottom: 17px solid #f06543;
  border-top: 17px solid #f06543;
  border-right: 17px solid transparent;
}
/* line 430, ../scss/module/_catalog-product.scss */
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 750px;
  margin: 0 auto;
}

@media only screen and (max-width: 479px) {
  /* line 444, ../scss/module/_catalog-product.scss */
  .product-img-box .product-image img {
    max-height: 450px;
  }
}
/* line 450, ../scss/module/_catalog-product.scss */
.product-image-gallery {
  position: relative;
}
/* line 27, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 38, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
/* line 44, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
/* line 51, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery.loading {
  position: relative;
}
/* line 54, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}
/* line 456, ../scss/module/_catalog-product.scss */
.product-image-gallery .gallery-image {
  display: none;
}
/* line 460, ../scss/module/_catalog-product.scss */
.product-image-gallery .gallery-image.visible {
  display: block;
}
/* line 464, ../scss/module/_catalog-product.scss */
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}

/* line 484, ../scss/module/_catalog-product.scss */
.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent;
}

/* line 494, ../scss/module/_catalog-product.scss */
.no-touch .product-image-thumbs a:hover {
  border-color: #c7c7c7;
}

/* line 500, ../scss/module/_catalog-product.scss */
.product-view .product-shop,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 15px;
}

/* line 513, ../scss/module/_catalog-product.scss */
.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}

/* line 521, ../scss/module/_catalog-product.scss */
.product-img-box {
  border: 0 solid #ede7e2;
}
/* line 525, ../scss/module/_catalog-product.scss */
.product-img-box .more-views,
.product-img-box .more-videos {
  display: inline-block;
}
/* line 529, ../scss/module/_catalog-product.scss */
.product-img-box .more-views > ul,
.product-img-box .more-videos > ul {
  margin: 0 -4px;
}
/* line 532, ../scss/module/_catalog-product.scss */
.product-img-box .more-views > ul li,
.product-img-box .more-videos > ul li {
  padding: 0 1px 0 4px;
  float: left;
}
/* line 541, ../scss/module/_catalog-product.scss */
.product-img-box .more-videos.rwd #without-carousel {
  margin: 0;
}
/* line 544, ../scss/module/_catalog-product.scss */
.product-img-box .more-videos.rwd #without-carousel li {
  margin: 0 !important;
}

/* line 551, ../scss/module/_catalog-product.scss */
.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
/* line 555, ../scss/module/_catalog-product.scss */
.product-view .product-essential {
  margin-bottom: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 555, ../scss/module/_catalog-product.scss */
  .product-view .product-essential {
    margin-bottom: 24px;
  }
}
/* line 564, ../scss/module/_catalog-product.scss */
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
/* line 572, ../scss/module/_catalog-product.scss */
.product-view .price-info .price-box {
  display: none;
}
/* line 578, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart {
  display: block;
  padding: 15px;
  margin-bottom: 8px;
  border: 1px solid #d9d9d9;
  background: #f6f6f6;
}
/* line 586, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart.mobile-add-to-cart {
  display: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 586, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart.mobile-add-to-cart {
    display: block;
    margin-top: 15px;
    margin-bottom: 0;
  }
  /* line 592, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart.mobile-add-to-cart button.button {
    margin: 0;
  }
  /* line 594, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart.mobile-add-to-cart button.button img {
    display: inline-block;
    margin-right: 10px;
    vertical-align: baseline;
  }
}
/* line 602, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper {
  width: 100%;
  margin: 0;
  margin: 0 0 15px 0 !important;
  padding: 0 0 15px 0 !important;
  border-bottom: 1px solid #d9d9d9;
}
/* line 613, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .warranty-container p {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #40434b;
}
/* line 623, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .warranty-container .warranty {
  font-weight: normal;
  display: -webkit-flex;
  display: flex;
  margin: 0 0 15px 0;
}
/* line 630, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .warranty-container .warranty em {
  font-style: normal;
  color: #e13700;
}
/* line 639, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .add-to-cart-buttons {
  width: 100%;
  margin: 0;
}
/* line 644, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .link-compare {
  margin-top: 10px !important;
}
/* line 648, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .btn-cart {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 4px 0 !important;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
/* line 661, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .btn-cart svg {
  margin: 0 10px 0 0;
}
/* line 665, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .btn-cart:disabled {
  background-color: #fbad9a;
}
/* line 670, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .product-side-desc {
  float: left;
}
/* line 673, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .product-side-desc ul {
  list-style-type: disc;
  -webkit-margin-before: 1em;
  -webkit-padding-start: 17px;
  font-size: 12px;
  color: #4D5057;
}
/* line 684, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
/* line 692, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .product-view .add-to-cart-buttons a,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}
/* line 699, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  float: left;
  margin-right: 7px;
}
/* line 707, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
/* line 712, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
/* line 719, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons {
  float: left;
  max-width: 100%;
  margin-right: 10px;
}
/* line 726, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
/* line 732, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  display: block;
  width: 170px;
  margin: 0 auto;
}
/* line 740, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
/* line 747, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
/* line 753, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  line-height: 1;
  display: block;
  margin-right: 0;
  margin-bottom: 10px;
  margin-left: 0;
  text-align: center;
}
/* line 770, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons button.button {
  font-size: 1em;
  font-weight: bold;
  line-height: 40px;
  float: left;
  width: 100%;
  min-width: 160px;
  min-height: 40px;
  padding: 0 30px;
  white-space: normal;
}
/* line 784, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons button.button img {
  display: inline-block;
  margin-right: 10px;
  vertical-align: baseline;
}
/* line 789, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons button.button:disabled {
  cursor: wait;
}
/* line 794, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons a.button, .product-view .add-to-cart-buttons .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .product-view .add-to-cart-buttons a {
  margin: 0;
  font-weight: 700;
  width: 100%;
  float: left;
}
/* line 802, ../scss/module/_catalog-product.scss */
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 479px) {
  /* line 813, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }
  /* line 818, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button,
  .product-view .add-to-cart-buttons .klevuResultsBlock .klevuSuggestionHeading a,
  .klevuResultsBlock .klevuSuggestionHeading .product-view .add-to-cart-buttons a {
    display: block;
    float: none;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }
}
/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
/* line 836, ../scss/module/_catalog-product.scss */
.add-to-box .or {
  display: none;
}

/* line 841, ../scss/module/_catalog-product.scss */
.product-view .add-to-links {
  float: left;
  clear: both;
  margin-top: 0;
  margin-right: 15px;
}
/* line 849, ../scss/module/_catalog-product.scss */
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
/* line 854, ../scss/module/_catalog-product.scss */
.product-view .add-to-links li {
  float: left;
}
/* line 859, ../scss/module/_catalog-product.scss */
.product-view .add-to-links a {
  margin-left: 7px;
  padding: 2px 7px 2px 0;
  border-right: 1px solid #ebebeb;
}
/* line 867, ../scss/module/_catalog-product.scss */
.product-view .add-to-links li:first-child a {
  margin-left: 0;
}
/* line 872, ../scss/module/_catalog-product.scss */
.product-view .add-to-links li:last-child a {
  border-right: 0;
}

/* line 878, ../scss/module/_catalog-product.scss */
.product-view .sharing-links {
  float: left;
}
/* line 882, ../scss/module/_catalog-product.scss */
.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
/* line 887, ../scss/module/_catalog-product.scss */
.product-view .sharing-links li {
  float: left;
  padding: 0 7px 7px;
}
/* line 894, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a {
  display: block;
  width: 26px;
  height: 26px;
  text-indent: -9999px;
}
/* line 904, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a:hover {
  opacity: .8;
}
/* line 908, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-wishlist {
  background-position: 0 -225px;
}
/* line 912, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-compare {
  background-position: 0 -250px;
}
/* line 916, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-email-friend {
  background-position: 0 -322px;
}
/* line 920, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-facebook {
  background-position: 0 -425px;
}
/* line 924, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-twitter {
  background-position: 0 -372px;
}

@media only screen and (max-width: 599px) {
  /* line 934, ../scss/module/_catalog-product.scss */
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}
/* line 945, ../scss/module/_catalog-product.scss */
.product-collateral {
  clear: both;
}

/* line 954, ../scss/module/_catalog-product.scss */
.collateral-tabs dd h2 {
  display: none;
}

/* line 961, ../scss/module/_catalog-product.scss */
.box-collateral {
  clear: both;
}

@media only screen and (min-width: 769px) {
  /* line 28, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #ebebeb;
    background-color: #f4f4f4;
  }
  /* line 39, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }
  /* line 46, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li > span {
    font-size: 12px;
    line-height: 40px;
    position: relative;
    bottom: -1px;
    display: inline-block;
    height: 40px;
    padding: 0 30px;
    cursor: pointer;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  /* line 66, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
  }
  /* line 71, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li.current > span {
    z-index: 5;
    margin-top: -1px;
  }
  /* line 86, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  /* line 91, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 97, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl {
    width: 100%;
  }
  /* line 101, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt {
    display: none;
  }
  /* line 106, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd {
    display: none;
    width: 100%;
    padding: 3em;
    border: 1px solid #ebebeb;
    border-top: 0;
  }
  /* line 117, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  /* line 159, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs {
    display: none;
  }
  /* line 166, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt {
    display: block;
    font-weight: normal;
    position: relative;
    margin-bottom: 0;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #ebebeb;
    background-color: #f4f4f4;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.4;
    margin: 0;
    margin-bottom: 10px;
    text-transform: none;
    color: #40434B;
    text-rendering: optimizeSpeed;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  /* line 141, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt:after {
    top: 50%;
    left: 10px;
    margin-top: -3px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid #369;
    border-right: 4px solid transparent;
    border-bottom: none;
    border-left: 4px solid transparent;
  }
  /* line 151, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt:hover {
    background-color: #ededed;
  }
  /* line 173, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd {
    margin: 0;
    padding: 10px;
    border-width: 0 1px;
    border-style: solid;
    border-color: #ebebeb;
  }
  /* line 182, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px;
  }
  /* line 193, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  /* line 199, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt:hover {
    color: #369;
  }
  /* line 203, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid transparent;
    border-right: none;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #369;
  }
  /* line 207, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }
  /* line 213, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd {
    display: none;
  }
  /* line 225, ../scss/mixin/_toggle-content.scss */
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  /* line 230, ../scss/mixin/_toggle-content.scss */
  .product-collateral.accordion-open > dl > dt.current:after {
    top: 50%;
    left: 6px;
    margin-top: -3px;
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: '';
    border-top: 4px solid #369;
    border-right: 4px solid transparent;
    border-bottom: none;
    border-left: 4px solid transparent;
  }
  /* line 241, ../scss/mixin/_toggle-content.scss */
  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  /* line 985, ../scss/module/_catalog-product.scss */
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    float: none;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 769px) {
  /* line 1001, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .product-name {
    display: block;
  }

  /* line 1005, ../scss/module/_catalog-product.scss */
  .product-img-box .product-name {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 1013, ../scss/module/_catalog-product.scss */
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 15px;
  }
}
/* line 1025, ../scss/module/_catalog-product.scss */
.product-view .ratings .rating-links {
  float: left;
  clear: left;
  margin-top: 0;
}

/* line 1034, ../scss/module/_catalog-product.scss */
#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid #c0c0c0;
  color: #4D5057;
}
/* line 1041, ../scss/module/_catalog-product.scss */
#product-attribute-specs-table th {
  border-right: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
/* line 1052, ../scss/module/_catalog-product.scss */
.grouped-items-table-wrapper {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: solid 1px #c0c0c0;
}
@media only screen and (max-width: 479px) {
  /* line 1052, ../scss/module/_catalog-product.scss */
  .grouped-items-table-wrapper {
    margin-bottom: 15px;
  }
}
/* line 1065, ../scss/module/_catalog-product.scss */
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

/* line 1073, ../scss/module/_catalog-product.scss */
.grouped-items-table .name-wrapper {
  font-family: "Open Sans", sans-serif;
  color: #369;
}
/* line 1080, ../scss/module/_catalog-product.scss */
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
/* line 1085, ../scss/module/_catalog-product.scss */
.grouped-items-table .qty-label {
  margin-left: 7px;
}
/* line 1091, ../scss/module/_catalog-product.scss */
.grouped-items-table td {
  padding: 4px;
}
/* line 1095, ../scss/module/_catalog-product.scss */
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
/* line 1102, ../scss/module/_catalog-product.scss */
.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
/* line 1112, ../scss/module/_catalog-product.scss */
.product-options {
  position: relative;
  clear: both;
  width: 100%;
  border: 0 solid #ccc;
}

/* line 1123, ../scss/module/_catalog-product.scss */
.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  display: none;
  text-align: right;
}

@media only screen and (max-width: 979px) {
  /* line 1136, ../scss/module/_catalog-product.scss */
  .product-view .product-options .required {
    position: static;
  }
}
/* line 1142, ../scss/module/_catalog-product.scss */
.product-options dt {
  font-weight: normal;
}

/* line 1147, ../scss/module/_catalog-product.scss */
.product-options dt:first-child {
  margin-top: 0;
}

/* line 1152, ../scss/module/_catalog-product.scss */
.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

/* line 1159, ../scss/module/_catalog-product.scss */
.product-options dd .qty-holder .qty {
  width: 3em;
}

/* line 1164, ../scss/module/_catalog-product.scss */
.product-options dd .qty-holder label {
  vertical-align: middle;
}

/* line 1169, ../scss/module/_catalog-product.scss */
.product-options dd .qty-disabled {
  padding: 0 2px;
  border: 0;
  background: none;
}

/* line 1177, ../scss/module/_catalog-product.scss */
.product-options dd {
  margin: 0 0 5px;
  padding: 0 0 10px 0;
}

/* line 1183, ../scss/module/_catalog-product.scss */
.product-options dl.last dd.last {
  margin-bottom: 0;
  padding-bottom: 5px;
  border-bottom: 0;
}

/* line 1191, ../scss/module/_catalog-product.scss */
.product-options dd .input-text {
  width: 98%;
}

/* line 1196, ../scss/module/_catalog-product.scss */
.product-options dd .input-box {
  padding-top: 0;
}

/* line 1201, ../scss/module/_catalog-product.scss */
.product-options dd input.datetime-picker {
  width: 150px;
}

/* line 1206, ../scss/module/_catalog-product.scss */
.product-options dd .time-picker {
  padding: 2px 0;
  vertical-align: middle;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}

/* line 1215, ../scss/module/_catalog-product.scss */
.product-options dd textarea {
  width: 98%;
  height: 8em;
}

/* line 1221, ../scss/module/_catalog-product.scss */
.product-options dd select {
  width: 330px;
  max-width: 100%;
}

/* line 1227, ../scss/module/_catalog-product.scss */
.product-options ul.options-list {
  clear: both;
}
/* line 1231, ../scss/module/_catalog-product.scss */
.product-options ul.options-list li {
  padding: 4px;
}
/* line 1234, ../scss/module/_catalog-product.scss */
.product-options ul.options-list li:hover {
  background-color: #ededed;
}

/* line 1243, ../scss/module/_catalog-product.scss */
.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

/* line 1248, ../scss/module/_catalog-product.scss */
.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 26px;
  z-index: 1;
}

/* line 1257, ../scss/module/_catalog-product.scss */
.product-options ul.options-list .label label {
  font-size: 14px;
  display: block;
  padding: 0 26px 0 28px;
  position: relative;
  margin-top: 23px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1257, ../scss/module/_catalog-product.scss */
  .product-options ul.options-list .label label {
    margin-top: 0px;
  }
}

/* line 1272, ../scss/module/_catalog-product.scss */
.product-options ul.options-list label {
  font-weight: normal;
}

/* line 1277, ../scss/module/_catalog-product.scss */
.product-options p.note {
  font-size: 11px;
  margin: 0;
}

/* line 1284, ../scss/module/_catalog-product.scss */
.product-options-bottom {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 10px 0;
  padding-bottom: 0;
  border-top: 1px solid #ede7e2;
  border-bottom: 1px solid #ede7e2;
}

/* line 1296, ../scss/module/_catalog-product.scss */
.product-options-bottom:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1301, ../scss/module/_catalog-product.scss */
.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  color: #40434B;
  border: 0;
  background: 0;
}
@media only screen and (max-width: 1199px) {
  /* line 1301, ../scss/module/_catalog-product.scss */
  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 5px;
    text-align: right;
    border-bottom: 1px solid #ccc;
  }
}

/* line 1327, ../scss/module/_catalog-product.scss */
.product-options-bottom .tier-prices li {
  padding: 2px 0;
  background: 0;
}

/* line 1334, ../scss/module/_catalog-product.scss */
.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #40434B;
}

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
/* line 1342, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box {
  margin: 0 0 16px;
  padding: 0;
}

/* line 1350, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box .price-label,
.product-options-bottom .price-box .full-product-price,
.product-options-bottom .price-as-configured .price {
  font-size: 18px;
  font-weight: bold;
}

/* line 1357, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box {
  text-align: left;
}
/* line 1362, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box .price-msrp span.label {
  text-decoration: line-through;
  color: #70747e;
}
/* line 1368, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box .price-msrp span#price-msrp-amount.price {
  margin-left: 3px;
  text-decoration: line-through;
  color: #70747e;
}
/* line 1376, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box .price-msrp span.percent {
  margin-left: 10px;
  color: #70747e;
}
/* line 1381, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box .price-msrp span.percent span {
  padding-left: 0;
}

@media only screen and (max-width: 479px) {
  /* line 1395, ../scss/module/_catalog-product.scss */
  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block;
  }
}
/* line 1402, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
/* line 1415, ../scss/module/_catalog-product.scss */
.block-related li {
  margin-bottom: 7px;
}
/* line 1420, ../scss/module/_catalog-product.scss */
.block-related .block-title {
  margin-left: .6em;
  border-bottom: none;
}
/* line 1425, ../scss/module/_catalog-product.scss */
.block-related .block-title h2 {
  font-size: 16px;
  margin-top: .6em;
  margin-bottom: 0;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  margin: 0;
  margin-bottom: .5em;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeLegibility;
}
/* line 1438, ../scss/module/_catalog-product.scss */
.block-related .block-subtitle {
  margin-bottom: 7px;
}
/* line 1443, ../scss/module/_catalog-product.scss */
.block-related .product {
  position: relative;
  margin-left: 20px;
}
/* line 1449, ../scss/module/_catalog-product.scss */
.block-related .checkbox {
  float: left;
  margin-top: 36px;
}
/* line 1456, ../scss/module/_catalog-product.scss */
.block-related .product-details {
  margin-left: 90px;
  margin-top: 10px;
}
/* line 1462, ../scss/module/_catalog-product.scss */
.block-related .product-name {
  width: 100%;
  margin-bottom: 3px;
}
/* line 1468, ../scss/module/_catalog-product.scss */
.block-related .product-details .price-box {
  margin: 2px 0 3px;
}
/* line 1472, ../scss/module/_catalog-product.scss */
.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span {
  float: left;
  margin-left: 3px;
}
/* line 1480, ../scss/module/_catalog-product.scss */
.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child {
  font-size: 16px;
  margin-left: 0;
  padding-right: 5px;
  padding-left: 5px;
}
/* line 1489, ../scss/module/_catalog-product.scss */
.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1494, ../scss/module/_catalog-product.scss */
.block-related .link-wishlist {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */
/* line 1504, ../scss/module/_catalog-product.scss */
.box-up-sell {
  margin-top: 20px;
}
/* line 1508, ../scss/module/_catalog-product.scss */
.box-up-sell .ratings {
  display: none;
}

/* line 1515, ../scss/module/_catalog-product.scss */
.cat_p {
  height: 4em;
  padding-top: .8em;
  border-top: 1px solid #ede7e2;
  border-bottom: 1px solid #ede7e2;
}

/* line 1526, ../scss/module/_catalog-product.scss */
.catalog-product-view .zoomContainer {
  height: 0 !important;
  z-index: 999 !important;
}
/* line 1530, ../scss/module/_catalog-product.scss */
.catalog-product-view .add-to-links,
.catalog-product-view .sharing-links {
  display: none;
}
/* line 1543, ../scss/module/_catalog-product.scss */
.catalog-product-view .short-description li {
  font-size: .9em;
  font-weight: 100;
  padding: .2em 0;
  color: #40434b;
}
/* line 1554, ../scss/module/_catalog-product.scss */
.catalog-product-view .product-bottom {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1554, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 1563, ../scss/module/_catalog-product.scss */
.catalog-product-view .product-bottom .tabs {
  -webkit-flex: 3;
  flex: 3;
  width: 100% !important;
  margin: 0 30px 0 0;
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1563, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-bottom .tabs {
    -webkit-flex: 1;
    flex: 1;
    margin: 0 0 30px 0;
  }
}
/* line 1579, ../scss/module/_catalog-product.scss */
.catalog-product-view .product-bottom .box-collateral {
  display: none;
  -webkit-flex: 1;
  flex: 1;
}
/* line 1587, ../scss/module/_catalog-product.scss */
.catalog-product-view .product-name .h1 {
  font-size: 24px;
  font-weight: bold;
  text-transform: none;
  color: #40434b !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1587, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-name .h1 {
    font-size: 18px;
  }
}
/* line 1601, ../scss/module/_catalog-product.scss */
.catalog-product-view .product-name .sku_part {
  font-size: 18px;
  font-weight: lighter;
  margin-left: 5px;
  color: #a5a7a2;
}
/* line 1612, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs {
  border: none;
  background: none;
}
/* line 1617, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li {
  margin: 0;
  padding: 0 30px;
  border: 1px solid #d9d9d9;
  border-right: none;
  border-bottom: none;
  background: #f6f6f6;
}
/* line 1626, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li span {
  text-transform: uppercase;
  background: none;
}
/* line 1632, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li:last-of-type {
  border-right: 1px solid #d9d9d9 !important;
}
/* line 1636, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li:first-of-type {
  border-left: 1px solid #d9d9d9;
}
/* line 1640, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li.current {
  position: relative;
  border: 1px solid #d9d9d9;
  border-right: none;
  border-bottom: none;
  background: #fff;
}
/* line 1649, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li.current span {
  background: #fff;
}
/* line 1655, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li.current:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background: #fff;
}
/* line 1670, ../scss/module/_catalog-product.scss */
.catalog-product-view .toggle-tabs li span {
  font-size: 14px;
  font-weight: 700;
  color: #40434B;
  padding: 0;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
/* line 1683, ../scss/module/_catalog-product.scss */
.catalog-product-view .tab-container {
  color: #4D5057;
  font-family: "Helvetica", sans-serif;
  line-height: 2.5em;
}
/* line 1688, ../scss/module/_catalog-product.scss */
.catalog-product-view .tab-container h4 {
  margin: 0;
  color: #4D5057;
  font-family: "Helvetica", sans-serif;
  font-size: 16px;
  line-height: 2.5em;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1698, ../scss/module/_catalog-product.scss */
  .catalog-product-view .collateral-tabs {
    border: 1px solid #D9D9D9;
  }
  /* line 1705, ../scss/module/_catalog-product.scss */
  .catalog-product-view .collateral-tabs:after {
    display: block;
    clear: both;
    content: '';
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1717, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-collateral > dl > dt {
    text-transform: uppercase;
    margin: 0;
    border: none;
    padding: 8px 16px;
  }
  /* line 1725, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-collateral > dl > dt:after {
    display: none !important;
  }
  /* line 1729, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-collateral > dl > dt:hover {
    color: #40434B;
  }
  /* line 1733, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-collateral > dl > dt:not(:last-of-type) {
    border-bottom: 1px solid #D9D9D9;
  }
}
/* line 1738, ../scss/module/_catalog-product.scss */
.catalog-product-view .product-collateral > dl > dd {
  border: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1738, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-collateral > dl > dd {
    border: none !important;
    padding: 16px;
  }
  /* line 1746, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-collateral > dl > dd table th {
    white-space: pre-wrap;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1756, ../scss/module/_catalog-product.scss */
  .catalog-product-view .product-collateral.accordion-open .tab.current {
    background: #ffffff;
    border-bottom: none;
  }
}

/* line 1769, ../scss/module/_catalog-product.scss */
.row2 {
  font-size: .9em;
  float: left;
  width: 100%;
  color: #70747e;
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 1779, ../scss/module/_catalog-product.scss */
  .row2 {
    padding-bottom: 10px;
  }
  /* line 1783, ../scss/module/_catalog-product.scss */
  .row2 .product-mobile-price {
    margin: 10px 0;
  }
  /* line 1785, ../scss/module/_catalog-product.scss */
  .row2 .product-mobile-price .price-box {
    text-align: left;
  }
  /* line 1787, ../scss/module/_catalog-product.scss */
  .row2 .product-mobile-price .price-box .price-label {
    display: block;
    font-size: 12px;
  }
  /* line 1791, ../scss/module/_catalog-product.scss */
  .row2 .product-mobile-price .price-box span.full-product-price {
    font-size: 24px;
    font-weight: 600;
  }
  /* line 1794, ../scss/module/_catalog-product.scss */
  .row2 .product-mobile-price .price-box span.full-product-price .price {
    color: #ff0000 !important;
  }
}
/* line 1805, ../scss/module/_catalog-product.scss */
.picon {
  font-size: .9em;
  float: left;
}

/* line 1811, ../scss/module/_catalog-product.scss */
.i1 {
  width: 20%;
}

/* line 1815, ../scss/module/_catalog-product.scss */
.i2 {
  width: 40%;
}

/* line 1819, ../scss/module/_catalog-product.scss */
.i3 {
  width: 40%;
}

/* line 1823, ../scss/module/_catalog-product.scss */
.d_hr {
  height: 1px;
  margin-bottom: 2em;
  border: 0;
  background-color: #ede7e2;
}

/* line 1831, ../scss/module/_catalog-product.scss */
.product-options .last dt:first-child {
  float: left;
  width: 105%;
  margin-top: -.2em;
}

/* line 1838, ../scss/module/_catalog-product.scss */
.product-options .last dd:first-child {
  margin-top: -.4em;
}

/* line 1843, ../scss/module/_catalog-product.scss */
.product-options dl dt:first-child label {
  color: #000;
}

/* line 1848, ../scss/module/_catalog-product.scss */
.product-options dl dd:first-child {
  margin-right: 5px;
}

/* line 1853, ../scss/module/_catalog-product.scss */
.extra-info h3 {
  color: #000;
}

/* line 1857, ../scss/module/_catalog-product.scss */
.product-options ul.options-list label {
  display: block;
}

/* line 1861, ../scss/module/_catalog-product.scss */
.price-info .price-box {
  display: none;
}

/* line 1865, ../scss/module/_catalog-product.scss */
.price-as-configured .price {
  font-size: 1.5em;
  color: #75c3b5 !important;
}

/* line 1872, ../scss/module/_catalog-product.scss */
.price-box .price-as-configured {
  font-size: 1.5em;
}

/* line 1878, ../scss/module/_catalog-product.scss */
.product-status {
  font-size: 12px;
  font-weight: bold;
  padding: 2px 4px;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #000;
  border-radius: 4px;
}
/* line 1890, ../scss/module/_catalog-product.scss */
.product-status.in-stock {
  color: #76b041;
  border-color: #76b041;
}
/* line 1895, ../scss/module/_catalog-product.scss */
.product-status.out-of-stock {
  color: #d0021b;
  border-color: #d0021b;
}

/* line 1902, ../scss/module/_catalog-product.scss */
.product-tag {
  font-size: 12px;
  display: inline-block;
  margin: 10px 0 5px 0;
  padding: 2px 4px;
  color: #40434b;
  border-radius: 4px;
  background: #f6f6f6;
}
/* line 1915, ../scss/module/_catalog-product.scss */
.product-tag b {
  font-weight: bold;
  color: #76b041;
  text-transform: uppercase;
  font-size: 32px;
}

/* line 1924, ../scss/module/_catalog-product.scss */
.product-manufacturer {
  font-size: 14px;
  margin: 0 0 5px 0;
}
/* line 1929, ../scss/module/_catalog-product.scss */
.product-manufacturer .spacer {
  padding: 0 10px;
  color: #d9d9d9;
}

/* line 1938, ../scss/module/_catalog-product.scss */
.price-notice {
  color: #f06543;
}
/* line 1943, ../scss/module/_catalog-product.scss */
.price-notice .price {
  color: #f06543;
}
/* line 1947, ../scss/module/_catalog-product.scss */
.price-notice:before {
  content: '(';
  color: #000;
}
/* line 1953, ../scss/module/_catalog-product.scss */
.price-notice:after {
  content: ')';
  color: #000;
}

/* line 1961, ../scss/module/_catalog-product.scss */
.prdesc {
  font-size: 12px;
  margin: 10px 0 0 0;
  padding: 20px 0 0 0;
  list-style: disc;
  border-top: 1px solid #d9d9d9;
  color: #4D5057;
}
/* line 1971, ../scss/module/_catalog-product.scss */
.prdesc ul li {
  list-style-position: inside;
  margin-left: 0;
  font-size: 14px;
}

/* line 1983, ../scss/module/_catalog-product.scss */
.tab-container.current {
  border: 1px solid #d9d9d9 !important;
  background: #fff;
}

/* line 1995, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-info .price-box {
  display: none !important;
}

/* line 2002, ../scss/module/_catalog-product.scss */
.bought-together {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 60px 0 40px 0;
  padding: 20px;
  border: 1px solid #d9d9d9;
}
/* line 2012, ../scss/module/_catalog-product.scss */
.bought-together__container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
/* line 2020, ../scss/module/_catalog-product.scss */
.bought-together .buy .price {
  font-weight: normal;
  color: #369;
}
/* line 2025, ../scss/module/_catalog-product.scss */
.bought-together .buy .price strong {
  font-weight: bold;
}
/* line 2030, ../scss/module/_catalog-product.scss */
.bought-together .buy .btn-all {
  font-size: 12px;
  font-weight: bold;
  padding: 12px 30px;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  border: none;
  border-radius: 3px;
  background: #f06543;
}
/* line 2047, ../scss/module/_catalog-product.scss */
.bought-together h1 {
  font-size: 24px;
  letter-spacing: -.5px;
  text-transform: uppercase;
  color: #40434b;
}
/* line 2056, ../scss/module/_catalog-product.scss */
.bought-together .items {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
/* line 2061, ../scss/module/_catalog-product.scss */
.bought-together .items svg {
  margin: 0 40px;
  fill: #012d5b;
}

/* line 2077, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo div {
  font-family: Helvetica;
}
/* line 2081, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo.yotpo-main-widget {
  margin-bottom: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2081, ../scss/module/_catalog-product.scss */
  .catalog-product-view .yotpo.yotpo-main-widget {
    margin-bottom: 24px;
  }
}
/* line 2090, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav {
  display: none !important;
}
/* line 2094, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-default-button {
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  padding: 9px 24px !important;
}
/* line 2100, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-default-button:hover {
  background-color: #F6F6F6;
}
/* line 2104, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-default-button span {
  color: #40434B !important;
  font-weight: 700;
}
/* line 2110, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-regular-box {
  border: none;
}
/* line 2113, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-regular-box > .yotpo-default-button {
  float: right !important;
  position: static !important;
}
/* line 2120, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > div {
  /*display: block !important;*/
  border: 1px solid #D9D9D9;
  padding: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2120, ../scss/module/_catalog-product.scss */
  .catalog-product-view .yotpo .yotpo-nav-content > div {
    padding: 16px;
  }
}
/* line 2130, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > div.yotpo-questions {
  margin-bottom: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2130, ../scss/module/_catalog-product.scss */
  .catalog-product-view .yotpo .yotpo-nav-content > div.yotpo-questions {
    margin-bottom: 16px;
  }
}
/* line 2143, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question {
  margin: 0;
  padding: 16px;
  border: none;
  background-color: #F6F6F6;
  margin-bottom: 8px;
}
/* line 2153, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-header .yotpo-icon-profile,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-header .yotpo-icon-profile,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-header .yotpo-icon-profile,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header .yotpo-icon-profile {
  width: 77px;
  height: 77px;
  margin-right: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2153, ../scss/module/_catalog-product.scss */
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-header .yotpo-icon-profile,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-header .yotpo-icon-profile,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-header .yotpo-icon-profile,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header .yotpo-icon-profile {
    width: 39px;
    height: 39px;
    margin-right: 12px;
  }
}
/* line 2165, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-user-letter,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-header .yotpo-icon-profile .yotpo-user-letter,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-user-letter,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header .yotpo-icon-profile .yotpo-user-letter {
  top: 30px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2165, ../scss/module/_catalog-product.scss */
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-user-letter,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-header .yotpo-icon-profile .yotpo-user-letter,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-user-letter,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header .yotpo-icon-profile .yotpo-user-letter {
    top: 11px;
  }
}
/* line 2174, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-icon,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-header .yotpo-icon-profile .yotpo-icon,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-header .yotpo-icon-profile .yotpo-icon,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header .yotpo-icon-profile .yotpo-icon {
  display: none;
}
/* line 2181, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-header .yotpo-header-element .yotpo-user-name,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-header .yotpo-header-element .yotpo-user-name,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-header .yotpo-header-element .yotpo-user-name,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header .yotpo-header-element .yotpo-user-name {
  font-size: 14px;
  color: #4D5057;
}
/* line 2186, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-header .yotpo-header-element .yotpo-review-date,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-header .yotpo-header-element .yotpo-review-date,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-header .yotpo-header-element .yotpo-review-date,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header .yotpo-header-element .yotpo-review-date {
  color: #777777;
}
/* line 2192, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-main,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-main,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-main,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-main {
  margin-left: 93px;
  margin-top: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2192, ../scss/module/_catalog-product.scss */
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-main,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-main,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-main,
  .catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-main {
    margin-left: 0;
  }
}
/* line 2201, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-main .content-title,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-main .content-title,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-main .content-title,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-main .content-title {
  padding-bottom: 12px;
}
/* line 2206, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-review .yotpo-footer,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews > .yotpo-question .yotpo-footer,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-review .yotpo-footer,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-footer {
  display: none;
}
/* line 2212, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews .yotpo-pager > *,
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions .yotpo-pager > * {
  border: 1px solid #D9D9D9;
  padding: 9px 0;
  margin: 0;
  width: 36px !important;
  height: 36px;
  display: inline-block;
  color: #40434B !important;
}
/* line 2221, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews .yotpo-pager > *:not(.yotpo-active),
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions .yotpo-pager > *:not(.yotpo-active) {
  background-color: #F6F6F6 !important;
}
/* line 2225, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-reviews .yotpo-pager > *:not(:first-child),
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions .yotpo-pager > *:not(:first-child) {
  margin-left: -5px;
}
/* line 2234, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-header {
  display: none;
}
/* line 2237, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-main {
  margin-left: 0;
}
/* line 2240, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-main .content-question {
  color: #4D5057;
}
/* line 2245, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-comments-box {
  display: block !important;
  margin: 0;
  border: none;
}
/* line 2250, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-comments-box .yotpo-comment-box {
  margin: 0;
  padding: 0;
}
/* line 2254, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-comments-box .yotpo-comment-box .yotpo-store-owner {
  display: none;
}
/* line 2258, ../scss/module/_catalog-product.scss */
.catalog-product-view .yotpo .yotpo-nav-content > .yotpo-questions > .yotpo-question .yotpo-comments-box .yotpo-comment-box .content-question {
  color: #4D5057;
}

/* line 2269, ../scss/module/_catalog-product.scss */
.product-option-with-image {
  float: left;
  clear: left;
  width: 100%;
  margin-bottom: 5px;
}
/* line 2275, ../scss/module/_catalog-product.scss */
.product-option-with-image img {
  width: 69px;
  float: left;
  margin-right: 12px;
}

/* line 2282, ../scss/module/_catalog-product.scss */
.spec-controls {
  float: left;
  width: 167px;
  padding: 15px 0 15px 15px;
  display: inline;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2282, ../scss/module/_catalog-product.scss */
  .spec-controls {
    width: 100%;
  }
}

/* line 2288, ../scss/module/_catalog-product.scss */
.spec-controls h2 {
  text-transform: uppercase;
  font-size: 14px;
}

/* line 2289, ../scss/module/_catalog-product.scss */
.spec-controls ul {
  margin: 15px 10px 0 0;
}

/* line 2290, ../scss/module/_catalog-product.scss */
.spec-controls li {
  margin: 0 0 8px 0;
}

/* line 2291, ../scss/module/_catalog-product.scss */
.spec-controls a {
  font-weight: 600;
  font-size: 12px;
}

/* line 2292, ../scss/module/_catalog-product.scss */
.spec-controls .current a {
  color: #fff;
  background-color: #387EB6;
  font-size: 14px;
  width: 100%;
  line-height: 22px;
  display: block;
  padding: 0 0 0 5px;
}

/* line 2293, ../scss/module/_catalog-product.scss */
.spec-controls li a {
  color: #000;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  width: 100%;
  line-height: 22px;
  display: block;
  padding: 5px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2293, ../scss/module/_catalog-product.scss */
  .spec-controls li a {
    display: inline-block;
  }
}

/* line 2300, ../scss/module/_catalog-product.scss */
.spec-data {
  overflow-y: auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 2300, ../scss/module/_catalog-product.scss */
  .spec-data {
    overflow-y: scroll;
    width: 100%;
  }
}

/* line 2309, ../scss/module/_catalog-product.scss */
.spec-data li {
  margin-left: 5px;
  display: inline;
  overflow-x: scroll;
  height: 800px;
}

/* line 2315, ../scss/module/_catalog-product.scss */
.spec-controls li a.active {
  background: #afbec6;
  color: #fff;
}

/* line 2321, ../scss/module/_catalog-product.scss */
.spec-data td {
  padding: 4px;
}

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
/* line 30, ../scss/module/_catalog-msrp.scss */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

/* line 40, ../scss/module/_catalog-msrp.scss */
.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
}

/* line 49, ../scss/module/_catalog-msrp.scss */
.map-popup {
  background: #FFFFFF;
  border: 5px solid #ebebeb;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
@media only screen and (min-width: 769px) {
  /* line 59, ../scss/module/_catalog-msrp.scss */
  .map-popup.map-popup-right {
    left: 10px !important;
  }
  /* line 63, ../scss/module/_catalog-msrp.scss */
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important;
  }
}
@media only screen and (max-width: 768px) {
  /* line 49, ../scss/module/_catalog-msrp.scss */
  .map-popup {
    width: 100%;
    left: 0px !important;
  }
}
/* line 74, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
/* line 79, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-heading h3 {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 479px) {
  /* line 79, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-heading h3 {
    text-align: center;
  }
}
/* line 94, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}
/* line 106, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-content {
  border-top: 1px solid #ededed;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 479px) {
  /* line 106, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-content {
    text-align: center;
  }
}
/* line 118, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout {
  padding: 10px 0;
}
/* line 121, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both;
}
/* line 125, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout span {
  display: block;
}
/* line 129, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .button, .map-popup .map-popup-checkout .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .map-popup .map-popup-checkout a {
  float: left;
  margin: 0 2px;
  clear: left;
}
/* line 135, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}
/* line 139, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}
/* line 144, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}
/* line 147, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}
/* line 153, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}
/* line 160, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both;
}
/* line 165, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}
@media only screen and (max-width: 479px) {
  /* line 118, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-checkout {
    text-align: center;
  }
  /* line 174, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-checkout .button, .map-popup .map-popup-checkout .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .map-popup .map-popup-checkout a,
  .map-popup .map-popup-checkout .additional-addtocart-box,
  .map-popup .map-popup-checkout .paypal-logo a,
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    float: none;
  }
  /* line 181, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px;
  }
  /* line 185, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px;
  }
}
/* line 191, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
/* line 196, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-price {
  padding: 10px 0;
}
@media only screen and (max-width: 479px) {
  /* line 196, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px;
  }
}
/* line 203, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}
/* line 210, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}
/* line 215, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}
/* line 221, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #ededed;
}

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
/* line 231, ../scss/module/_catalog-msrp.scss */
.price-box .map-link {
  display: block;
  text-align: center;
}

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
/* line 30, ../scss/module/_catalog-compare.scss */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

/* line 34, ../scss/module/_catalog-compare.scss */
.compare-table .product-image {
  display: inline-block;
}

/* line 40, ../scss/module/_catalog-compare.scss */
.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}
/* line 45, ../scss/module/_catalog-compare.scss */
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
/* line 30, ../scss/module/_checkout-cart.scss */
.cart-page-form {
  float: left;
  width: calc(100% - 376px);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 30, ../scss/module/_checkout-cart.scss */
  .cart-page-form {
    float: none;
    width: 100%;
  }
}

/* line 40, ../scss/module/_checkout-cart.scss */
.cart .button, .cart .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .cart a {
  white-space: normal;
}

/* line 44, ../scss/module/_checkout-cart.scss */
.cart-forms,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px;
}

/* line 52, ../scss/module/_checkout-cart.scss */
.cart-totals-wrapper {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  /* line 52, ../scss/module/_checkout-cart.scss */
  .cart-totals-wrapper {
    float: right;
    width: 332px;
    margin-bottom: 64px;
  }
}

/* line 62, ../scss/module/_checkout-cart.scss */
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: #f4f4f4;
  border: 1px solid #ebebeb;
}

/* line 71, ../scss/module/_checkout-cart.scss */
.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px;
}

/* line 80, ../scss/module/_checkout-cart.scss */
.checkout-cart-index #postcode {
  width: 100%;
}
/* line 84, ../scss/module/_checkout-cart.scss */
.checkout-cart-index .popular {
  margin-top: 20px;
}

/* line 90, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-table {
  float: none;
  width: 100%;
}
/* line 95, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}
/* line 101, ../scss/module/_checkout-cart.scss */
.display-both-prices .crosssell {
  padding-left: 10px;
}
/* line 105, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-forms,
.display-both-prices .crosssell {
  width: 50%;
}
/* line 110, ../scss/module/_checkout-cart.scss */
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 979px) {
  /* line 90, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }
  /* line 95, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0;
  }
  /* line 101, ../scss/module/_checkout-cart.scss */
  .display-single-price .crosssell {
    padding-left: 10px;
  }
  /* line 105, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-forms,
  .display-single-price .crosssell {
    width: 50%;
  }
  /* line 110, ../scss/module/_checkout-cart.scss */
  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  /* line 127, ../scss/module/_checkout-cart.scss */
  .product-cart-sku {
    display: none;
  }

  /* line 133, ../scss/module/_checkout-cart.scss */
  .display-both-prices .cart-forms,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}
/* line 145, ../scss/module/_checkout-cart.scss */
.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
/* line 155, ../scss/module/_checkout-cart.scss */
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}

/* line 160, ../scss/module/_checkout-cart.scss */
.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
/* line 166, ../scss/module/_checkout-cart.scss */
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
/* line 170, ../scss/module/_checkout-cart.scss */
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
/* line 177, ../scss/module/_checkout-cart.scss */
.checkout-types .method-checkout-cart-methods-multishipping {
  display: block;
}
/* line 182, ../scss/module/_checkout-cart.scss */
.checkout-types.top li {
  display: inline-block;
}
/* line 186, ../scss/module/_checkout-cart.scss */
.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}
/* line 190, ../scss/module/_checkout-cart.scss */
.checkout-types.top .bml_button img {
  display: block;
}
/* line 195, ../scss/module/_checkout-cart.scss */
.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}
/* line 203, ../scss/module/_checkout-cart.scss */
.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
/* line 207, ../scss/module/_checkout-cart.scss */
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  display: block;
  text-align: center;
}

@media only screen and (min-width: 741px) {
  /* line 217, ../scss/module/_checkout-cart.scss */
  .checkout-types.bottom .paypal-or {
    text-align: right;
    padding-right: 70px;
  }
}
/* line 224, ../scss/module/_checkout-cart.scss */
.cart-totals .checkout-types {
  width: 100%;
}
/* line 226, ../scss/module/_checkout-cart.scss */
.cart-totals .checkout-types .btn-checkout {
  width: 100%;
}

@media only screen and (max-width: 740px) {
  /* line 232, ../scss/module/_checkout-cart.scss */
  .checkout-types {
    float: none;
    text-align: center;
  }
  /* line 238, ../scss/module/_checkout-cart.scss */
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }

  /* line 245, ../scss/module/_checkout-cart.scss */
  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  /* line 253, ../scss/module/_checkout-cart.scss */
  .btn-checkout {
    width: 100%;
  }
}
/* line 260, ../scss/module/_checkout-cart.scss */
.cart-page-form .mobile-heading {
  font-size: 12px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  color: #40434B;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 7px;
}
@media only screen and (min-width: 600px) {
  /* line 260, ../scss/module/_checkout-cart.scss */
  .cart-page-form .mobile-heading {
    display: none;
  }
}
/* line 273, ../scss/module/_checkout-cart.scss */
.cart-page-form .payment-badges {
  background-color: #F6F6F6;
  display: inline-block;
  padding: 14px 24px;
  margin: 0 0 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 273, ../scss/module/_checkout-cart.scss */
  .cart-page-form .payment-badges {
    display: block;
  }
}
/* line 283, ../scss/module/_checkout-cart.scss */
.cart-page-form .payment-badges img {
  max-width: 100%;
  margin: 0 auto;
}

/* line 290, ../scss/module/_checkout-cart.scss */
.cart-table {
  font-family: "Open Sans", sans-serif;
}
/* line 293, ../scss/module/_checkout-cart.scss */
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
/* line 301, ../scss/module/_checkout-cart.scss */
.cart-table h2 {
  color: #40434B;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  width: 100%;
}
/* line 309, ../scss/module/_checkout-cart.scss */
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 24px 5px;
  font-family: "Open Sans", sans-serif;
}
/* line 316, ../scss/module/_checkout-cart.scss */
.cart-table thead th {
  padding-bottom: 7px;
  color: #40434B;
  font-weight: 700;
  font-size: 12px;
  padding-top: 0;
}
/* line 323, ../scss/module/_checkout-cart.scss */
.cart-table thead th.cart-total-head {
  text-align: right;
}
/* line 328, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-info {
  padding-left: 36px;
}
@media only screen and (max-width: 599px) {
  /* line 328, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info {
    padding-left: 0;
  }
}
/* line 336, ../scss/module/_checkout-cart.scss */
.cart-table tr {
  border-bottom: 1px solid #c0c0c0;
}
/* line 341, ../scss/module/_checkout-cart.scss */
.cart-table tfoot tr {
  background: none;
  border-bottom: none;
}
/* line 346, ../scss/module/_checkout-cart.scss */
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
/* line 351, ../scss/module/_checkout-cart.scss */
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
/* line 358, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-actions .button,
.cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a {
  display: none;
}
/* line 363, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-info .btn-remove {
  background-image: none;
  text-indent: 0;
  font-size: 14px;
  color: #369;
}
/* line 370, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
/* line 374, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}
/* line 379, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
/* line 384, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-sku {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
/* line 390, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
/* line 395, ../scss/module/_checkout-cart.scss */
.cart-table .btn-empty {
  float: left;
}
/* line 399, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: right;
  color: #336699;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}
/* line 408, ../scss/module/_checkout-cart.scss */
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
/* line 412, ../scss/module/_checkout-cart.scss */
.cart-table .cart-tax-total:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 6px solid transparent;
  border-right: 6px solid #369;
  border-bottom: 6px solid transparent;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
/* line 420, ../scss/module/_checkout-cart.scss */
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 6px solid #369;
  border-right: 6px solid transparent;
  border-bottom: none;
  border-left: 6px solid transparent;
  right: -15px;
  top: 6px;
}
/* line 428, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
/* line 435, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li > a {
  display: block;
}
/* line 439, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
/* line 444, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions {
  min-width: 60px;
}
/* line 447, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #c0c0c0;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;
}
/* line 456, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .button, .cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a {
  margin-bottom: 5px;
}
/* line 464, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .item-options {
  margin-left: 0;
  margin-top: 0;
  font-size: 12px;
  margin-bottom: 18px;
}
/* line 469, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .item-options dt {
  font-style: normal;
  width: 100%;
}
/* line 472, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .item-options dt::after {
  display: none;
}
/* line 477, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .item-options dd {
  padding-left: 0;
}
/* line 479, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .item-options dd .price {
  display: none;
}
/* line 484, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .cart__actions {
  display: -webkit-flex;
  display: flex;
}
/* line 486, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .cart__actions li {
  margin-right: 12px;
}
/* line 488, ../scss/module/_checkout-cart.scss */
.cart-table.data-table tbody td .cart__actions li a {
  color: #40434B;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  /* line 502, ../scss/module/_checkout-cart.scss */
  .cart-table th {
    font-size: 12px;
  }
  /* line 506, ../scss/module/_checkout-cart.scss */
  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }
  /* line 511, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }
}
@media only screen and (max-width: 699px) {
  /* line 520, ../scss/module/_checkout-cart.scss */
  .display-both-prices .cart-table thead th.cart-total-head,
  .display-both-prices .cart-table td.product-cart-total {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  /* line 531, ../scss/module/_checkout-cart.scss */
  .cart-table colgroup, .cart-table thead {
    display: none;
  }
  /* line 535, ../scss/module/_checkout-cart.scss */
  .cart-table tr {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }
  /* line 543, ../scss/module/_checkout-cart.scss */
  .cart-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 547, ../scss/module/_checkout-cart.scss */
  .cart-table tr:last-child {
    margin-bottom: 0;
  }
  /* line 551, ../scss/module/_checkout-cart.scss */
  .cart-table tr .product-cart-actions {
    order: 1;
  }
  /* line 556, ../scss/module/_checkout-cart.scss */
  .cart-table tfoot tr {
    padding-bottom: 0;
  }
  /* line 560, ../scss/module/_checkout-cart.scss */
  .cart-table td {
    border: none;
    display: block;
  }
  /* line 564, ../scss/module/_checkout-cart.scss */
  .cart-table td[data-rwd-label] {
    margin-bottom: 16px;
    padding: 0;
    text-align: left;
  }
  /* line 581, ../scss/module/_checkout-cart.scss */
  .cart-table td.product-cart-price {
    text-align: left;
  }
  /* line 586, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px;
  }
  /* line 590, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }
  /* line 594, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }
  /* line 600, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 13px;
  }
  /* line 605, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-info .price {
    font-size: 13px;
  }
  /* line 610, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image {
    max-width: 126px;
    padding-bottom: 0;
    padding-top: 16px;
  }
  /* line 615, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
  }
  /* line 623, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
  }
  /* line 629, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-remove,
  .cart-table .product-cart-actions .cart-links {
    display: none;
  }
  /* line 634, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }
  /* line 639, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions .button, .cart-table .product-cart-actions .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .cart-table .product-cart-actions a {
    display: none;
  }
  /* line 645, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }
  /* line 650, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }
  /* line 655, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions {
    text-align: left;
  }
  /* line 658, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions .qty {
    margin-right: 7px;
    margin-bottom: 7px;
  }
  /* line 664, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }
  /* line 668, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }
  /* line 672, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }
  /* line 676, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }

  /* line 688, ../scss/module/_checkout-cart.scss */
  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }
}
/* line 698, ../scss/module/_checkout-cart.scss */
.cart-totals-wrapper .cart-totals,
.cart-totals-wrapper .money-guarantee {
  margin-bottom: 8px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 698, ../scss/module/_checkout-cart.scss */
  .cart-totals-wrapper .cart-totals,
  .cart-totals-wrapper .money-guarantee {
    /*display: none;*/
  }
}

@media (min-width: 768px) {
  /* line 710, ../scss/module/_checkout-cart.scss */
  h1.empty-cart-head {
    margin-bottom: 16px;
    margin-top: -18px;
  }

  /* line 715, ../scss/module/_checkout-cart.scss */
  .cart-empty {
    margin-bottom: 18px;
  }
}
/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
/* line 724, ../scss/module/_checkout-cart.scss */
.left-bottom {
  float: left;
  width: calc(100% - 376px);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 724, ../scss/module/_checkout-cart.scss */
  .left-bottom {
    float: none;
    width: 100%;
    margin-top: 10px;
  }
}
/* line 734, ../scss/module/_checkout-cart.scss */
.left-bottom .estimate-canada {
  font-size: 12px;
  margin-top: 10px;
}
/* line 739, ../scss/module/_checkout-cart.scss */
.left-bottom .estimate-calculate {
  text-align: right;
}
/* line 743, ../scss/module/_checkout-cart.scss */
.left-bottom .shipping-form {
  margin-bottom: 10px;
}

/* line 750, ../scss/module/_checkout-cart.scss */
.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}
/* line 756, ../scss/module/_checkout-cart.scss */
.shipping select {
  max-width: 100%;
  height: 36px;
  display: block;
  border: 1px solid #c0c0c0;
}
/* line 763, ../scss/module/_checkout-cart.scss */
.shipping select.validation-failed {
  border-color: #df280a;
}
/* line 767, ../scss/module/_checkout-cart.scss */
.shipping .shipping-desc {
  display: none;
}
/* line 771, ../scss/module/_checkout-cart.scss */
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
/* line 778, ../scss/module/_checkout-cart.scss */
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
/* line 781, ../scss/module/_checkout-cart.scss */
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
/* line 786, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-country {
  width: 37%;
}
/* line 790, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-region {
  width: 41%;
}
/* line 794, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
/* line 798, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
/* line 803, ../scss/module/_checkout-cart.scss */
.shipping .form-list .input-box {
  padding-top: 0;
}
/* line 807, ../scss/module/_checkout-cart.scss */
.shipping .form-list input {
  height: 36px;
  margin-top: 4px;
  width: 100px;
}
/* line 813, ../scss/module/_checkout-cart.scss */
.shipping .form-list label {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
/* line 822, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
/* line 826, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
/* line 830, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods label {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
/* line 836, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods label span {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-style: normal;
}
/* line 844, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .buttons-set .button, .shipping #co-shipping-method-form .buttons-set .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .shipping #co-shipping-method-form .buttons-set a {
  float: left;
  margin-left: 0;
}
/* line 848, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .sp-methods dd label {
  background-color: #fff !important;
  min-width: 220px;
  font-style: normal;
  font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 768px) {
  /* line 858, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  /* line 862, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  /* line 866, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}
/* line 877, ../scss/module/_checkout-cart.scss */
.cart .cart-totals {
  text-align: left;
  padding: 24px;
}
/* line 881, ../scss/module/_checkout-cart.scss */
.cart .cart-totals .cart-totals__title {
  color: #40434B;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  margin-bottom: 16px;
}
/* line 889, ../scss/module/_checkout-cart.scss */
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
/* line 893, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: capitalize;
  width: 100%;
}
/* line 900, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table td {
  padding: 6px 0px;
}
/* line 903, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
/* line 909, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
/* line 918, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table td.a-right {
  font-weight: 700;
}
/* line 923, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
/* line 926, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot td {
  font-size: 14px;
  padding: 16px 0;
  vertical-align: top;
  font-weight: 700;
}
/* line 933, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Open Sans", sans-serif;
}
/* line 939, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot strong {
  font-weight: 700;
}

/* line 947, ../scss/module/_checkout-cart.scss */
.cart .cart-badges {
  background: #f4f4f4;
  text-align: center;
  width: 100%;
}
/* line 952, ../scss/module/_checkout-cart.scss */
.cart .cart-badges img {
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  /* line 963, ../scss/module/_checkout-cart.scss */
  .cart-totals {
    text-align: right;
  }
}
@media only screen and (max-width: 768px) {
  /* line 970, ../scss/module/_checkout-cart.scss */
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }
}
/* line 979, ../scss/module/_checkout-cart.scss */
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

/* line 984, ../scss/module/_checkout-cart.scss */
#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
/* line 988, ../scss/module/_checkout-cart.scss */
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
/* line 992, ../scss/module/_checkout-cart.scss */
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
/* line 1003, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}
/* line 1007, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
/* line 1011, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
/* line 1015, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
}
/* line 1020, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 0;
  height: 30px;
  margin: 4px 10px 0 0;
  width: 190px;
}

/* line 1028, ../scss/module/_checkout-cart.scss */
.cart .giftcard p {
  margin-bottom: 7px;
}

/* line 1032, ../scss/module/_checkout-cart.scss */
.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}
/* line 1036, ../scss/module/_checkout-cart.scss */
.cart .giftcard .check-gc-status > span > span {
  font-size: 14px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
/* line 1047, ../scss/module/_checkout-cart.scss */
.crosssell h2 {
  color: #369;
}
/* line 1051, ../scss/module/_checkout-cart.scss */
.crosssell .item a.product-image {
  width: auto;
  float: left;
}

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
@media only screen and (max-width: 979px) {
  /* line 1059, ../scss/module/_checkout-cart.scss */
  .crosssell {
    /* Undo three-column config */
  }
  /* line 1060, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(even),
  .crosssell .products-grid > li:nth-child(3n),
  .crosssell .products-grid > li {
    width: 47.72727%;
    margin-right: 4.54545%;
  }
  /* line 1067, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(odd) {
    clear: left;
  }
  /* line 1071, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0;
  }
  /* line 1076, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
}
@media only screen and (max-width: 599px) {
  /* line 1085, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  /* line 1089, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}
@media only screen and (max-width: 320px) {
  /* line 1100, ../scss/module/_checkout-cart.scss */
  .crosssell ul .item {
    padding: 0 0px 40px;
  }
  /* line 1104, ../scss/module/_checkout-cart.scss */
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}
/* line 1112, ../scss/module/_checkout-cart.scss */
.cart__peripheral {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 1117, ../scss/module/_checkout-cart.scss */
.cart__peripheralblock {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  padding: 15px 15px 16px;
  background-color: #F6F6F6;
  text-transform: uppercase;
  font-weight: 700;
}
/* line 1124, ../scss/module/_checkout-cart.scss */
.cart__peripheralblock--half {
  width: 48%;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
/* line 1131, ../scss/module/_checkout-cart.scss */
.cart__30days {
  width: 100%;
  flex-grow: 1;
  border: 1px solid #D9D9D9;
  background: #fff;
  margin-bottom: 8px;
  -webkit-align-items: center;
  align-items: center;
}
/* line 1138, ../scss/module/_checkout-cart.scss */
.cart__30days svg {
  margin-right: 8px;
}
/* line 1143, ../scss/module/_checkout-cart.scss */
.cart__shipping svg {
  height: 18px;
  width: 24px;
}
/* line 1148, ../scss/module/_checkout-cart.scss */
.cart__payment-badges {
  padding: 9px 24px 8px;
  background-color: #F6F6F6;
  display: inline-block;
  margin-top: 16px;
}
/* line 1153, ../scss/module/_checkout-cart.scss */
.cart__payment-badges img {
  width: 284px;
}

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
/* line 30, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

/* line 35, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .col-main {
  width: auto;
  float: none;
}

@media only screen and (min-width: 980px) {
  /* line 42, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-main {
    float: left;
    width: 68.75%;
    padding-right: 20px;
  }
  /* line 48, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left {
    width: 31.25%;
    display: block;
  }
  /* line 54, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-right {
    padding-left: 0;
  }
}
/* line 61, ../scss/module/_checkout-onepage.scss */
.opc select {
  width: 365px;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
/* line 70, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #ececec;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 76, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}

/* line 81, ../scss/module/_checkout-onepage.scss */
.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
}

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
/* line 86, ../scss/module/_checkout-onepage.scss */
.no-touch .opc .section.allow:not(.active) .step-title:hover {
  background-color: #f4f4f4;
}

/* line 90, ../scss/module/_checkout-onepage.scss */
.opc .section.active .step-title {
  border-bottom: 1px solid #ececec;
}

/* line 94, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title a {
  display: none;
}

/* line 98, ../scss/module/_checkout-onepage.scss */
.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px;
}

/* line 106, ../scss/module/_checkout-onepage.scss */
.no-touch .opc .section .step-title a:hover {
  text-decoration: none;
}

/* line 110, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #369;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
}

/* line 126, ../scss/module/_checkout-onepage.scss */
.opc .section.allow .step-title .number {
  background-color: #99b3cc;
}

/* line 130, ../scss/module/_checkout-onepage.scss */
.opc .section.allow .step-title h2 {
  color: #a0a0a0;
}

/* line 134, ../scss/module/_checkout-onepage.scss */
.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #369;
}

/* line 139, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0px 4px 0px 45px;
}

/* line 148, ../scss/module/_checkout-onepage.scss */
.opc .section .step {
  padding: 20px;
}
/* line 151, ../scss/module/_checkout-onepage.scss */
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 979px) {
  /* line 148, ../scss/module/_checkout-onepage.scss */
  .opc .section .step {
    padding: 10px;
  }
}

/* line 160, ../scss/module/_checkout-onepage.scss */
.opc select {
  max-width: 365px;
  width: 100%;
}

/* line 165, ../scss/module/_checkout-onepage.scss */
.opc h3 {
  font-weight: 500;
}

/* line 169, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set {
  text-align: left;
}
/* line 172, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
/* line 178, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 183, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set .back-link {
  float: right;
  margin: 0;
}
/* line 187, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0;
}

@media only screen and (max-width: 479px) {
  /* line 197, ../scss/module/_checkout-onepage.scss */
  .opc .buttons-set .button + .buttons-set .button, .opc .buttons-set .klevuResultsBlock .klevuSuggestionHeading a + .buttons-set .button, .klevuResultsBlock .klevuSuggestionHeading .opc .buttons-set a + .buttons-set .button, .opc .buttons-set .button + .buttons-set .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .opc .buttons-set .button + .buttons-set a, .opc .buttons-set .klevuResultsBlock .klevuSuggestionHeading a + .buttons-set a, .klevuResultsBlock .klevuSuggestionHeading .opc .buttons-set a + .buttons-set a,
  .paypal-express-review .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .klevuResultsBlock .klevuSuggestionHeading a + .buttons-set .button,
  .klevuResultsBlock .klevuSuggestionHeading .paypal-express-review .buttons-set a + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .klevuResultsBlock .klevuSuggestionHeading a,
  .klevuResultsBlock .klevuSuggestionHeading .paypal-express-review .buttons-set .button + .buttons-set a,
  .paypal-express-review .buttons-set .klevuResultsBlock .klevuSuggestionHeading a + .buttons-set a,
  .klevuResultsBlock .klevuSuggestionHeading .paypal-express-review .buttons-set a + .buttons-set a {
    margin-left: 0;
  }
}
/* line 204, ../scss/module/_checkout-onepage.scss */
.opc #opc-login .step {
  padding: 0px;
}
/* line 208, ../scss/module/_checkout-onepage.scss */
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

@media only screen and (max-width: 768px) {
  /* line 215, ../scss/module/_checkout-onepage.scss */
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none;
  }
}
/* line 221, ../scss/module/_checkout-onepage.scss */
#opc-payment .note {
  padding: 10px;
}

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
/* line 232, ../scss/module/_checkout-onepage.scss */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  -moz-transition: opacity 300ms 0;
  -o-transition: opacity 300ms 0;
  -webkit-transition: opacity 300ms 0;
  transition: opacity 300ms 0;
}

/* line 237, ../scss/module/_checkout-onepage.scss */
.opc.opc-firststep-login .section#opc-login .step-title .number {
  -moz-transition: width 80ms 0;
  -o-transition: width 80ms 0;
  -webkit-transition: width 80ms 0;
  transition: width 80ms 0;
}

/* line 241, ../scss/module/_checkout-onepage.scss */
.opc.opc-firststep-login .section#opc-login .step-title h2 {
  -moz-transition: margin-left 80ms 0;
  -o-transition: margin-left 80ms 0;
  -webkit-transition: margin-left 80ms 0;
  transition: margin-left 80ms 0;
}

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
/* line 248, ../scss/module/_checkout-onepage.scss */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login {
  opacity: 0;
}

/* line 253, ../scss/module/_checkout-onepage.scss */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden;
}

/* line 258, ../scss/module/_checkout-onepage.scss */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px;
}

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
/* line 266, ../scss/module/_checkout-onepage.scss */
.sp-methods {
  margin: 0 0 8px;
}
/* line 269, ../scss/module/_checkout-onepage.scss */
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
/* line 273, ../scss/module/_checkout-onepage.scss */
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
/* line 277, ../scss/module/_checkout-onepage.scss */
.sp-methods dd li {
  margin: 5px 0;
}
/* line 280, ../scss/module/_checkout-onepage.scss */
.sp-methods label img {
  float: left;
}
/* line 283, ../scss/module/_checkout-onepage.scss */
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
/* line 288, ../scss/module/_checkout-onepage.scss */
.sp-methods .price {
  font-weight: bold;
}
/* line 291, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list {
  padding-left: 20px;
}
/* line 294, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list li {
  margin: 0 0 8px;
}
/* line 298, ../scss/module/_checkout-onepage.scss */
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
/* line 302, ../scss/module/_checkout-onepage.scss */
.sp-methods select.year {
  width: 96px;
}
/* line 305, ../scss/module/_checkout-onepage.scss */
.sp-methods input.cvv {
  width: 4em !important;
}
/* line 308, ../scss/module/_checkout-onepage.scss */
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
/* line 313, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
/* line 317, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
/* line 323, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list address {
  float: left;
}
@media only screen and (max-width: 479px) {
  /* line 312, ../scss/module/_checkout-onepage.scss */
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  /* line 330, ../scss/module/_checkout-onepage.scss */
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}
/* line 336, ../scss/module/_checkout-onepage.scss */
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
/* line 339, ../scss/module/_checkout-onepage.scss */
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
/* line 346, ../scss/module/_checkout-onepage.scss */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #ebebeb;
  padding-left: 20px;
}
/* line 352, ../scss/module/_checkout-onepage.scss */
.block-progress .block-content {
  font-size: 13px;
}
/* line 355, ../scss/module/_checkout-onepage.scss */
.block-progress dt {
  padding-top: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #a0a0a0;
}
/* line 364, ../scss/module/_checkout-onepage.scss */
.block-progress dt.complete {
  color: #40434B;
}
/* line 367, ../scss/module/_checkout-onepage.scss */
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
/* line 373, ../scss/module/_checkout-onepage.scss */
.block-progress dd address {
  font-style: italic;
}
/* line 378, ../scss/module/_checkout-onepage.scss */
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
/* line 384, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #40434B;
  font-family: Georgia, Times, "Times New Roman", serif;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px;
}
/* line 395, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dt:after {
  content: ': ';
}
/* line 400, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
/* line 406, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

/* review step */
/* line 416, ../scss/module/_checkout-onepage.scss */
#checkout-review-table .btn-remove img {
  display: none;
}

/* line 422, ../scss/module/_checkout-onepage.scss */
#checkout-review-table-wrapper {
  clear: both;
}

/* line 426, ../scss/module/_checkout-onepage.scss */
#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
/* line 431, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .btn-checkout {
  min-width: 220px;
}
/* line 434, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}
/* line 438, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .f-left {
  float: right;
}

@media only screen and (max-width: 599px) {
  /* line 445, ../scss/module/_checkout-onepage.scss */
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 452, ../scss/module/_checkout-onepage.scss */
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
/* line 459, ../scss/module/_checkout-onepage.scss */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

/* line 464, ../scss/module/_checkout-onepage.scss */
.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none;
}

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
/* line 470, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}
/* line 474, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
/* line 477, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
/* line 482, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 479px) {
  /* line 488, ../scss/module/_checkout-onepage.scss */
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: none;
    width: auto;
  }
}
/* line 494, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

@media only screen and (max-width: 479px) {
  /* line 501, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table thead > tr > th {
    display: none;
  }
  /* line 504, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }

  /* line 508, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
}
/* line 514, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}
/* line 518, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

/* Gift options */
/* line 526, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px;
}
/* line 530, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item h5 {
  font-weight: bold;
}
/* line 534, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
/* line 540, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item .details {
  float: left;
}

/* line 548, ../scss/module/_checkout-onepage.scss */
.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block;
}
/* line 555, ../scss/module/_checkout-onepage.scss */
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
/* line 563, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
/* line 567, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form img {
  float: left;
}
/* line 571, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
/* line 574, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
/* line 578, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
/* line 584, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ececec;
}
/* line 589, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
/* line 593, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
/* line 596, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
/* line 602, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
/* line 607, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

@media only screen and (max-width: 768px) {
  /* line 616, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .giftmessage-area {
    max-width: 100%;
  }
  /* line 621, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none;
  }
  /* line 626, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px;
  }
  /* line 629, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%;
  }
}
/* ============================================ *
 * Checkout - Success
 * ============================================ */
/* line 31, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
/* line 36, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
}
/* line 40, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .buttons-set button {
  float: none;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
/* line 34, ../scss/module/_configurableswatches.scss */
.clearfix:after, .klevuResultsBlock .klevuSuggestionHeading:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  content: '';
  display: table;
  clear: both;
}

/* General Swatch Styling */
/* line 40, ../scss/module/_configurableswatches.scss */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #40434B;
  text-decoration: none;
  box-sizing: content-box;
}

/* line 51, ../scss/module/_configurableswatches.scss */
.swatch-link {
  border: 1px solid #ebebeb;
  margin: 0 0 3px;
}
/* line 55, ../scss/module/_configurableswatches.scss */
.swatch-link img {
  border-radius: 2px;
}
/* line 59, ../scss/module/_configurableswatches.scss */
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
/* line 64, ../scss/module/_configurableswatches.scss */
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../../images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
/* line 77, ../scss/module/_configurableswatches.scss */
.swatch-link.has-image .swatch-label {
  position: relative;
}
/* line 81, ../scss/module/_configurableswatches.scss */
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

/* line 89, ../scss/module/_configurableswatches.scss */
.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #f4f4f4;
}

/* line 96, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
  -moz-transform: translateZ(0px);
  -ms-transform: translateZ(0px);
  -o-transform: translateZ(0px);
  transform: translateZ(0px);
}
/* line 102, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}
/* line 108, ../scss/module/_configurableswatches.scss */
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
/* line 116, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .x {
  display: block;
}
/* line 120, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-link {
  border-color: #ededed;
  position: relative;
}
/* line 124, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
/* line 130, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
/* line 136, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
/* line 140, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

/* line 146, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
/* line 151, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
/* line 157, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
/* line 161, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #369;
}
/* line 166, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-label {
  background: #f4f4f4;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
/* line 177, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: content-box;
}
/* line 184, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

@media only screen and (max-width: 768px) {
  /* line 191, ../scss/module/_configurableswatches.scss */
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}
/* line 197, ../scss/module/_configurableswatches.scss */
.currently .swatch-current {
  position: relative;
}
/* line 200, ../scss/module/_configurableswatches.scss */
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
/* line 207, ../scss/module/_configurableswatches.scss */
.currently .swatch-current span {
  display: block;
  float: left;
}
/* line 213, ../scss/module/_configurableswatches.scss */
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
/* line 217, ../scss/module/_configurableswatches.scss */
.currently .swatch-link:hover {
  border-color: #ebebeb;
  cursor: default;
}

/* Other Swatch States */
/* line 225, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #369;
}

/* line 231, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box {
  background: none !important;
}
/* line 234, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box select.swatch-select {
  display: none;
}
/* line 238, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #df280a;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
/* line 251, ../scss/module/_configurableswatches.scss */
.availability.out-of-stock span {
  color: #a0a0a0;
}

/* line 257, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
/* line 263, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label {
  font-size: 12px;
}
/* line 268, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
}
/* line 273, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #369;
  padding-left: 5px;
}
/* line 281, ../scss/module/_configurableswatches.scss */
.product-view .product-options dd .input-box {
  font-size: 0.9em;
  width: auto;
  height: auto;
}
/* line 287, ../scss/module/_configurableswatches.scss */
.product-view .product-options .select-label {
  display: none;
}
/* line 292, ../scss/module/_configurableswatches.scss */
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

/* ============================================ *
 * Customer
 * ============================================ */
/* line 32, ../scss/module/_customer.scss */
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
/* line 38, ../scss/module/_customer.scss */
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
/* line 42, ../scss/module/_customer.scss */
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button,
.customer-account-login .col2-set .buttons-set .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .customer-account-login .col2-set .buttons-set a {
  float: none;
  min-width: 50%;
  margin: 0;
}
/* line 51, ../scss/module/_customer.scss */
.customer-account-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}
@media only screen and (min-width: 480px) {
  /* line 61, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
    margin-top: 20px;
  }
  /* line 67, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1 {
    padding-right: 20px;
  }
  /* line 71, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-2 {
    padding-left: 20px;
    border-left: 1px solid #ededed;
  }
}
@media only screen and (min-width: 768px) {
  /* line 80, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1 {
    padding-right: 0;
  }
  /* line 84, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-2 {
    padding-left: 60px;
    border-left: 1px solid #ededed;
  }
}
@media only screen and (max-width: 479px) {
  /* line 93, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1 {
    padding-bottom: 30px;
  }
  /* line 97, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-2 {
    padding-top: 30px;
    border-top: 1px solid #ededed;
  }
}
@media only screen and (max-width: 768px) {
  /* line 105, ../scss/module/_customer.scss */
  .customer-account-login .col2-set p.required {
    display: none;
  }
}

/* line 113, ../scss/module/_customer.scss */
.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

/* line 119, ../scss/module/_customer.scss */
.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #a0a0a0;
}

/* line 127, ../scss/module/_customer.scss */
.remember-me-box a.hide {
  display: none;
}
/* line 130, ../scss/module/_customer.scss */
.remember-me-box .link-tip {
  font-size: 13px;
  padding-left: 10px;
}

/* line 136, ../scss/module/_customer.scss */
.remember-me-popup {
  display: none;
  border: 1px solid #ebebeb;
  padding: 10px;
  position: relative;
}
/* line 142, ../scss/module/_customer.scss */
.remember-me-popup.show {
  display: block;
}
/* line 146, ../scss/module/_customer.scss */
.remember-me-popup p {
  font-family: "Open Sans", sans-serif;
}
/* line 150, ../scss/module/_customer.scss */
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
/* line 158, ../scss/module/_customer.scss */
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

/* line 164, ../scss/module/_customer.scss */
.customer-account-create .buttons-set {
  max-width: 455px;
}
/* line 168, ../scss/module/_customer.scss */
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 30px;
}
@media only screen and (max-width: 479px) {
  /* line 168, ../scss/module/_customer.scss */
  .customer-account-create .fieldset,
  .customer-account-create .buttons-set {
    margin-left: 0;
  }
}
/* line 177, ../scss/module/_customer.scss */
.customer-account-create .fieldset .hidden {
  display: none;
}
/* line 181, ../scss/module/_customer.scss */
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

/* line 188, ../scss/module/_customer.scss */
.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set,
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 30px;
  max-width: 400px;
}
@media only screen and (max-width: 479px) {
  /* line 188, ../scss/module/_customer.scss */
  .customer-account-forgotpassword .fieldset,
  .customer-account-forgotpassword .buttons-set,
  .customer-account-create .fieldset,
  .customer-account-create .buttons-set {
    margin-left: 0;
  }
}
/* line 198, ../scss/module/_customer.scss */
.customer-account-forgotpassword .fieldset .input-box input.input-text,
.customer-account-create .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
/* line 209, ../scss/module/_customer.scss */
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
/* line 215, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
/* line 219, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
/* line 223, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons .button, body.customer-account .my-account .title-buttons .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading body.customer-account .my-account .title-buttons a {
  position: absolute;
  right: 0;
  top: 0;
}
/* line 229, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
/* line 236, ../scss/module/_customer.scss */
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}
/* line 243, ../scss/module/_customer.scss */
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600;
}
/* line 248, ../scss/module/_customer.scss */
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 254, ../scss/module/_customer.scss */
body.customer-account .data-table {
  margin-top: 5px;
}
/* line 258, ../scss/module/_customer.scss */
body.customer-account .data-table td a {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
/* line 266, ../scss/module/_customer.scss */
body.customer-account .data-table span.nobr {
  white-space: normal;
}
/* line 269, ../scss/module/_customer.scss */
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
/* line 275, ../scss/module/_customer.scss */
body.customer-account .data-table td.view a {
  display: block;
}
/* line 280, ../scss/module/_customer.scss */
body.customer-account .data-table .separator {
  display: none;
}
/* line 288, ../scss/module/_customer.scss */
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
/* line 294, ../scss/module/_customer.scss */
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
/* line 298, ../scss/module/_customer.scss */
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}
/* line 305, ../scss/module/_customer.scss */
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 310, ../scss/module/_customer.scss */
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
/* line 317, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
/* line 324, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 328, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
/* line 333, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}

/* line 344, ../scss/module/_customer.scss */
.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
/* line 351, ../scss/module/_customer.scss */
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
/* line 363, ../scss/module/_customer.scss */
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 7px;
}
/* line 368, ../scss/module/_customer.scss */
.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
/* line 375, ../scss/module/_customer.scss */
.dashboard .box-head a {
  padding: 10px;
}
/* line 382, ../scss/module/_customer.scss */
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
/* line 388, ../scss/module/_customer.scss */
.dashboard .box-account {
  padding-bottom: 40px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 45px;
}
/* line 393, ../scss/module/_customer.scss */
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
/* line 401, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
}
/* line 406, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
/* line 410, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}
/* line 417, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
/* line 425, ../scss/module/_customer.scss */
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
/* line 429, ../scss/module/_customer.scss */
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #ededed;
}
/* line 433, ../scss/module/_customer.scss */
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
/* line 437, ../scss/module/_customer.scss */
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
/* line 444, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
/* line 447, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
/* line 451, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
/* line 458, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
/* line 473, ../scss/module/_customer.scss */
.my-account .addresses-list {
  font-family: Georgia, Times, "Times New Roman", serif;
}
/* line 476, ../scss/module/_customer.scss */
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
/* line 481, ../scss/module/_customer.scss */
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
/* line 484, ../scss/module/_customer.scss */
.my-account .addresses-list .item p {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  /* line 490, ../scss/module/_customer.scss */
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  /* line 496, ../scss/module/_customer.scss */
  .my-account .addresses-list .col-1 li.empty,
  .my-account .addresses-list .col-2 li.empty {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  /* line 505, ../scss/module/_customer.scss */
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

/* ============================================ *
 * Order View
 * ============================================ */
/* line 518, ../scss/module/_customer.scss */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed;
  width: 100%;
  margin-bottom: 30px;
}
/* line 524, ../scss/module/_customer.scss */
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}
/* line 531, ../scss/module/_customer.scss */
.order-info dt {
  margin-right: 20px;
}
/* line 535, ../scss/module/_customer.scss */
.order-info li {
  margin: 0 0 0 20px;
}
/* line 538, ../scss/module/_customer.scss */
.order-info li.current {
  font-weight: 600;
}
/* line 542, ../scss/module/_customer.scss */
.order-info li:first-child {
  margin-left: 0;
}

/* line 548, ../scss/module/_customer.scss */
.order-date {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

/* line 553, ../scss/module/_customer.scss */
.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
/* line 557, ../scss/module/_customer.scss */
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #ededed;
}
/* line 562, ../scss/module/_customer.scss */
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
/* line 567, ../scss/module/_customer.scss */
.order-info-box .col-2 {
  width: 52%;
}
/* line 571, ../scss/module/_customer.scss */
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 578, ../scss/module/_customer.scss */
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
/* line 583, ../scss/module/_customer.scss */
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
/* line 589, ../scss/module/_customer.scss */
.order-info-box .box-title h2:after {
  content: ':';
}
/* line 595, ../scss/module/_customer.scss */
.order-info-box .box-content {
  float: left;
  font-family: Georgia, Times, "Times New Roman", serif;
}
/* line 599, ../scss/module/_customer.scss */
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: Georgia, Times, "Times New Roman", serif;
  line-height: 1.3;
}
/* line 605, ../scss/module/_customer.scss */
.order-info-box .box-content th {
  padding-top: 10px;
}
/* line 609, ../scss/module/_customer.scss */
.order-info-box .box-content td {
  padding-left: 15px;
}
/* line 613, ../scss/module/_customer.scss */
.order-info-box .box-content strong {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

/* line 622, ../scss/module/_customer.scss */
#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}
/* line 628, ../scss/module/_customer.scss */
#my-orders-table .option-value {
  margin-left: 20px;
}
/* line 632, ../scss/module/_customer.scss */
#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}

/* line 639, ../scss/module/_customer.scss */
ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 643, ../scss/module/_customer.scss */
ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
/* line 648, ../scss/module/_customer.scss */
ol#cart-sidebar-reorder p.product-name {
  display: inline;
}

@media only screen and (max-width: 599px) {
  /* line 655, ../scss/module/_customer.scss */
  #my-orders-table .option-label {
    margin-left: 20px;
  }
  /* line 659, ../scss/module/_customer.scss */
  #my-orders-table .option-value {
    margin-left: 35px;
  }
  /* line 664, ../scss/module/_customer.scss */
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none;
  }
  /* line 668, ../scss/module/_customer.scss */
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px;
  }
  /* line 673, ../scss/module/_customer.scss */
  #my-orders-table tr.bundle {
    border-color: #ededed;
  }
  /* line 678, ../scss/module/_customer.scss */
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px;
  }
  /* line 684, ../scss/module/_customer.scss */
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0;
  }
  /* line 688, ../scss/module/_customer.scss */
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 15px;
  }
  /* line 694, ../scss/module/_customer.scss */
  #my-orders-table tfoot tr.shipping {
    margin-top: 0;
  }
}
/* line 700, ../scss/module/_customer.scss */
.order-additional {
  margin: 40px 0;
}

/* line 705, ../scss/module/_customer.scss */
.order-gift-message dd {
  margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
  /* line 713, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 30px;
    padding-bottom: 0;
  }

  /* line 723, ../scss/module/_customer.scss */
  body.customer-account .data-table td.view a {
    white-space: normal;
  }
}
@media only screen and (max-width: 979px) {
  /* line 733, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons {
    text-align: left;
  }
  /* line 736, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons span.separator,
  body.customer-account .my-account .title-buttons a {
    top: -12px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 749, ../scss/module/_customer.scss */
  body.customer-account .data-table.orders th.ship,
  body.customer-account .data-table.orders td.ship,
  body.customer-account .data-table.orders td.status,
  body.customer-account .data-table.orders th.status {
    display: none;
  }

  /* line 760, ../scss/module/_customer.scss */
  .order-info-box .box-content {
    clear: left;
  }

  /* line 766, ../scss/module/_customer.scss */
  .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px;
  }

  /* line 774, ../scss/module/_customer.scss */
  .order-info dt {
    display: none;
  }

  /* line 780, ../scss/module/_customer.scss */
  .dashboard .page-title {
    margin-top: 20px;
  }
  /* line 783, ../scss/module/_customer.scss */
  .dashboard .page-title h1 {
    margin-top: 0;
  }
  /* line 788, ../scss/module/_customer.scss */
  .dashboard .welcome-msg {
    font-family: Georgia, Times, "Times New Roman", serif;
  }
  /* line 791, ../scss/module/_customer.scss */
  .dashboard .welcome-msg .hello {
    font-style: italic;
  }
  /* line 796, ../scss/module/_customer.scss */
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  /* line 802, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  /* line 809, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  /* line 814, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-2 {
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  /* line 825, ../scss/module/_customer.scss */
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  /* line 837, ../scss/module/_customer.scss */
  body.customer-account .my-account .page-title h1 {
    text-align: center;
  }
  /* line 842, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  /* line 845, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons .button, body.customer-account .my-account .title-buttons .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading body.customer-account .my-account .title-buttons a {
    width: 100%;
    position: static;
    margin-bottom: 15px;
  }
  /* line 850, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons .button + .button, body.customer-account .my-account .title-buttons .klevuResultsBlock .klevuSuggestionHeading a + .button, .klevuResultsBlock .klevuSuggestionHeading body.customer-account .my-account .title-buttons a + .button, body.customer-account .my-account .title-buttons .klevuResultsBlock .klevuSuggestionHeading .button + a, .klevuResultsBlock .klevuSuggestionHeading body.customer-account .my-account .title-buttons .button + a, body.customer-account .my-account .title-buttons .klevuResultsBlock .klevuSuggestionHeading a + a, .klevuResultsBlock .klevuSuggestionHeading body.customer-account .my-account .title-buttons a + a {
    margin-left: 0px;
  }
  /* line 857, ../scss/module/_customer.scss */
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px;
  }
  /* line 862, ../scss/module/_customer.scss */
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px;
  }
  /* line 866, ../scss/module/_customer.scss */
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  /* line 871, ../scss/module/_customer.scss */
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  /* line 878, ../scss/module/_customer.scss */
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px;
  }

  /* line 885, ../scss/module/_customer.scss */
  .order-info {
    margin-top: 15px;
  }

  /* line 891, ../scss/module/_customer.scss */
  .data-table.orders .link-reorder,
  .data-table.orders .date {
    display: none;
  }
  /* line 896, ../scss/module/_customer.scss */
  .data-table.orders td.view {
    text-align: right;
  }

  /* line 904, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 100%;
    margin-top: 15px;
  }

  /* line 912, ../scss/module/_customer.scss */
  .order-info-box {
    margin: 0;
  }
  /* line 915, ../scss/module/_customer.scss */
  .order-info-box .col-1,
  .order-info-box .col-2 {
    width: 100%;
    border-bottom: 1px solid #ededed;
    padding: 15px 0;
  }
  /* line 922, ../scss/module/_customer.scss */
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 30px;
  }

  /* line 930, ../scss/module/_customer.scss */
  #my-reviews-table .nobr {
    white-space: normal;
  }
}
/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
/* line 941, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
/* line 945, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
/* line 949, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #ededed;
  padding-top: 10px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
/* line 31, ../scss/module/_contacts.scss */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  max-width: 435px;
}
/* line 35, ../scss/module/_contacts.scss */
.contacts-index-index .buttons-set p.required {
  float: left;
}
@media only screen and (max-width: 599px) {
  /* line 31, ../scss/module/_contacts.scss */
  .contacts-index-index .buttons-set {
    max-width: 330px;
    margin-left: 0;
  }
  /* line 43, ../scss/module/_contacts.scss */
  .contacts-index-index .buttons-set button {
    float: left;
    margin-left: 0px;
  }
  /* line 48, ../scss/module/_contacts.scss */
  .contacts-index-index .buttons-set p.required {
    float: right;
  }
}

/* line 56, ../scss/module/_contacts.scss */
.contact-us {
  display: grid;
  grid-template-areas: "contacts-content contacts-sidebar";
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 20px;
}
/* line 57, ../scss/module/_contacts.scss */
.contact-us ul li {
  list-style: none;
  margin-left: 0;
}
@media only screen and (max-width: 768px) {
  /* line 56, ../scss/module/_contacts.scss */
  .contact-us {
    grid-template-areas: "contacts-content" "contacts-sidebar";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 15px;
  }
}
/* line 76, ../scss/module/_contacts.scss */
.contact-us .contacts-content {
  grid-area: contacts-content;
  display: grid;
  grid-template-areas: "title title" "contacts-info contacts-info" "contacts-form-content contacts-form-content";
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 20px;
}
/* line 86, ../scss/module/_contacts.scss */
.contact-us .contacts-content .title {
  grid-area: title;
}
/* line 88, ../scss/module/_contacts.scss */
.contact-us .contacts-content .title .page-title {
  color: #40434B;
  margin-bottom: 0;
}
/* line 91, ../scss/module/_contacts.scss */
.contact-us .contacts-content .title .page-title .sub-title {
  font-size: 14px;
}
/* line 96, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info {
  grid-area: contacts-info;
}
/* line 98, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .actions {
  color: #40434B;
  display: inline-block;
  width: 49%;
  vertical-align: top;
  text-align: center;
}
@media only screen and (max-width: 979px) {
  /* line 98, ../scss/module/_contacts.scss */
  .contact-us .contacts-content .contacts-info .actions {
    width: 100%;
  }
}
/* line 108, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .actions .call-us a {
  font-size: 1.5em;
  font-weight: bold;
}
/* line 113, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .actions .separator {
  font-size: 1.3em;
  font-weight: bold;
  padding: 5px 0;
  text-transform: uppercase;
}
/* line 119, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .actions .chat-us {
  text-decoration: none;
  text-transform: uppercase;
}
/* line 122, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .actions .chat-us > a {
  cursor: pointer;
  display: inline-block;
}
/* line 125, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .actions .chat-us > a span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  font-weight: bold;
}
/* line 131, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .actions .chat-us > a img {
  display: inline-block;
  vertical-align: middle;
}
/* line 138, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .table {
  display: inline-block;
  width: 49%;
  vertical-align: top;
}
@media only screen and (max-width: 979px) {
  /* line 138, ../scss/module/_contacts.scss */
  .contact-us .contacts-content .contacts-info .table {
    width: 100%;
    margin-top: 20px;
  }
}
/* line 146, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .table table {
  width: 100%;
  text-align: left;
}
/* line 149, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .table table td, .contact-us .contacts-content .contacts-info .table table th {
  color: #40434B;
  padding: 10px 15px;
}
/* line 154, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .table table td {
  text-align: left;
  vertical-align: middle;
  border: solid 1px #f6f6f6;
}
@media only screen and (max-width: 768px) {
  /* line 154, ../scss/module/_contacts.scss */
  .contact-us .contacts-content .contacts-info .table table td {
    width: 50%;
  }
}
/* line 163, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .table table th {
  background-color: #f6f6f6;
  font-weight: bold;
}
/* line 169, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .table table tr:nth-child(2n) {
  background-color: white;
}
/* line 170, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .table table tr:nth-child(2n+1) {
  background-color: #fff;
}
/* line 174, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-info .contact-note {
  margin: 15px 13px 15px 0;
  padding: 15px;
  background: #f6f6f6;
}
@media only screen and (max-width: 979px) {
  /* line 174, ../scss/module/_contacts.scss */
  .contact-us .contacts-content .contacts-info .contact-note {
    margin: 15px 0;
  }
}
/* line 184, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-form-content {
  grid-area: contacts-form-content;
  display: grid;
  grid-template-areas: "contacts-form contacts-info-offices";
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 979px) {
  /* line 184, ../scss/module/_contacts.scss */
  .contact-us .contacts-content .contacts-form-content {
    grid-template-areas: "contacts-info-offices" "contacts-form";
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 15px;
  }
}
/* line 200, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-form-content .contacts-form {
  grid-area: contacts-form;
}
/* line 202, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-form-content .contacts-form #contactForm {
  border: solid 1px #c0c0c0;
  padding: 15px;
  border-radius: 3px;
  margin-bottom: 20px;
}
/* line 208, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-form-content .contacts-form #contactForm .fieldset p.required {
  float: right;
  margin-top: 5px;
}
/* line 213, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-form-content .contacts-form #contactForm .fieldset .form-list label {
  margin-bottom: 0;
}
/* line 220, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-form-content .contacts-info {
  margin-top: 70px;
  grid-area: contacts-info-offices;
}
@media only screen and (max-width: 979px) {
  /* line 220, ../scss/module/_contacts.scss */
  .contact-us .contacts-content .contacts-form-content .contacts-info {
    margin-top: 15px;
  }
  /* line 225, ../scss/module/_contacts.scss */
  .contact-us .contacts-content .contacts-form-content .contacts-info ul {
    width: 49%;
    display: inline-block;
  }
}
/* line 230, ../scss/module/_contacts.scss */
.contact-us .contacts-content .contacts-form-content .contacts-info li {
  font-style: normal;
}
/* line 238, ../scss/module/_contacts.scss */
.contact-us .contacts-sidebar {
  grid-area: contacts-sidebar;
  margin-top: 10px;
}
/* line 241, ../scss/module/_contacts.scss */
.contact-us .contacts-sidebar h3 {
  margin-bottom: 13px;
}
/* line 244, ../scss/module/_contacts.scss */
.contact-us .contacts-sidebar .resource-title {
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  /* line 247, ../scss/module/_contacts.scss */
  .contact-us .contacts-sidebar .resources-block {
    display: inline-block;
    width: 49%;
    vertical-align: top;
  }
}
@media only screen and (max-width: 479px) {
  /* line 247, ../scss/module/_contacts.scss */
  .contact-us .contacts-sidebar .resources-block {
    width: 100%;
  }
}

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 868px) and (min-width: 769px) {
  /* line 34, ../scss/module/_paypal.scss */
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px;
  }
}

/* line 42, ../scss/module/_paypal.scss */
.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed;
}
/* line 48, ../scss/module/_paypal.scss */
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
/* line 53, ../scss/module/_paypal.scss */
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  /* line 59, ../scss/module/_paypal.scss */
  .paypal-review-order .col-1 {
    padding-bottom: 0;
  }
  /* line 63, ../scss/module/_paypal.scss */
  .paypal-review-order .field.inactive {
    display: none;
  }
}

/* line 70, ../scss/module/_paypal.scss */
.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center;
}
/* line 75, ../scss/module/_paypal.scss */
.top-container .bml-ad span {
  display: inline-block;
}
/* line 78, ../scss/module/_paypal.scss */
.top-container .bml-ad span a {
  display: block;
}

/* line 84, ../scss/module/_paypal.scss */
.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px;
}
/* line 89, ../scss/module/_paypal.scss */
.bml-ad span {
  display: block;
  line-height: 0;
}
/* line 93, ../scss/module/_paypal.scss */
.bml-ad a {
  display: inline-block;
  max-width: 100%;
}
/* line 97, ../scss/module/_paypal.scss */
.bml-ad a:hover {
  opacity: 0.7;
}
/* line 100, ../scss/module/_paypal.scss */
.bml-ad img {
  height: auto !important;
  max-width: 100%;
}

/* line 107, ../scss/module/_paypal.scss */
.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  /* line 113, ../scss/module/_paypal.scss */
  .bml-ad.small {
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  /* line 119, ../scss/module/_paypal.scss */
  .bml-ad.large {
    display: block;
  }
}
/* line 124, ../scss/module/_paypal.scss */
div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%;
}
/* line 129, ../scss/module/_paypal.scss */
div.paypal-logo span {
  display: block;
  width: 100%;
}
/* line 133, ../scss/module/_paypal.scss */
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
/* line 137, ../scss/module/_paypal.scss */
div.paypal-logo span a img {
  max-width: 100%;
}
/* line 143, ../scss/module/_paypal.scss */
div.paypal-logo span > img {
  display: none;
}

/* line 149, ../scss/module/_paypal.scss */
.checkout-types div.paypal-logo {
  text-align: right;
}

/* line 154, ../scss/module/_paypal.scss */
.bml-checkout-type {
  list-style-type: none;
}

/* line 159, ../scss/module/_paypal.scss */
.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}
/* line 163, ../scss/module/_paypal.scss */
.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}
/* line 167, ../scss/module/_paypal.scss */
.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}
/* line 170, ../scss/module/_paypal.scss */
.sidebar .paypal-logo > a img {
  display: block;
}
/* line 174, ../scss/module/_paypal.scss */
.sidebar .paypal-logo .label {
  margin-top: 4px;
}
/* line 176, ../scss/module/_paypal.scss */
.sidebar .paypal-logo .label a {
  font-size: 12px;
  line-height: 1.5;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
/* line 30, ../scss/module/_review.scss */
#customer-reviews {
  width: auto;
  float: none;
}
/* line 34, ../scss/module/_review.scss */
#customer-reviews .review-heading {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0 5px;
}
/* line 39, ../scss/module/_review.scss */
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
/* line 43, ../scss/module/_review.scss */
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
/* line 48, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
/* line 54, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
/* line 57, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
/* line 65, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .amount {
  display: none;
}
/* line 71, ../scss/module/_review.scss */
#customer-reviews h2 {
  color: #369;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 76, ../scss/module/_review.scss */
#customer-reviews h2 span {
  color: #40434B;
}
/* line 81, ../scss/module/_review.scss */
#customer-reviews h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 87, ../scss/module/_review.scss */
#customer-reviews h3 span {
  color: #369;
}
/* line 92, ../scss/module/_review.scss */
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
/* line 96, ../scss/module/_review.scss */
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #ebebeb;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
/* line 104, ../scss/module/_review.scss */
#customer-reviews .fieldset h4 em {
  display: none;
}
/* line 109, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
/* line 124, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
/* line 129, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
/* line 134, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #ebebeb;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
/* line 141, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list input {
  border: 1px solid #ebebeb;
  border-radius: 0;
}
/* line 145, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
/* line 152, ../scss/module/_review.scss */
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
/* line 158, ../scss/module/_review.scss */
#customer-reviews dl {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
/* line 164, ../scss/module/_review.scss */
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
/* line 169, ../scss/module/_review.scss */
#customer-reviews dl dd {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  margin: 10px 0;
}
/* line 174, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  width: 100%;
}
/* line 179, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
/* line 183, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
/* line 189, ../scss/module/_review.scss */
#customer-reviews dl dd table {
  margin: 15px 0;
}
/* line 193, ../scss/module/_review.scss */
#customer-reviews dl dd .review-meta {
  color: #369;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

/* line 204, ../scss/module/_review.scss */
.review-summary-table {
  border-bottom: 1px solid #ebebeb;
  margin: 0 0 10px;
}
/* line 208, ../scss/module/_review.scss */
.review-summary-table thead {
  background: transparent;
}
/* line 211, ../scss/module/_review.scss */
.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}
/* line 219, ../scss/module/_review.scss */
.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 12px;
}
/* line 223, ../scss/module/_review.scss */
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}
/* line 228, ../scss/module/_review.scss */
.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0;
}
/* line 237, ../scss/module/_review.scss */
.review-summary-table .rating-box .rating-number {
  display: none;
}
/* line 240, ../scss/module/_review.scss */
.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
/* line 260, ../scss/module/_review.scss */
.ratings-table {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 265, ../scss/module/_review.scss */
.ratings-table th {
  padding-right: 10px;
}
/* line 269, ../scss/module/_review.scss */
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
/* line 278, ../scss/module/_review.scss */
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

@media only screen and (max-width: 768px) {
  /* line 295, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  /* line 299, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  /* line 303, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  /* line 307, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 535px) {
  /* line 323, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  /* line 327, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: none;
    margin-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  /* line 342, ../scss/module/_review.scss */
  #customer-reviews .fieldset {
    width: 100%;
  }
  /* line 345, ../scss/module/_review.scss */
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  /* line 349, ../scss/module/_review.scss */
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  /* line 357, ../scss/module/_review.scss */
  #customer-reviews .buttons-set {
    width: 100%;
  }
  /* line 364, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* line 371, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* line 376, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px;
  }
  /* line 382, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%;
  }
  /* line 389, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  /* line 392, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}
@media only screen and (max-width: 450px) {
  /* line 404, ../scss/module/_review.scss */
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * Review View Page
 * ============================================ */
/* line 415, ../scss/module/_review.scss */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
/* line 420, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
/* line 424, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
/* line 428, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  /* line 438, ../scss/module/_review.scss */
  .review-product-view .product-review .product-img-box {
    max-width: 100%;
  }
}
/* ============================================ *
 * Homepage reviews
 * ============================================ */
/* line 450, ../scss/module/_review.scss */
.testimonial-container .testimonial .review-stars {
  margin-bottom: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 450, ../scss/module/_review.scss */
  .testimonial-container .testimonial .review-stars {
    margin-bottom: 12px;
  }
}
/* line 458, ../scss/module/_review.scss */
.testimonial-container .testimonial .review-stars span {
  color: #fec600;
  font-size: 16px;
}
/* line 462, ../scss/module/_review.scss */
.testimonial-container .testimonial .review-stars span:before {
  font-family: "yotpo-widget-font";
  content: "\e60e";
}

/* ============================================ *
 * Slideshow
 * ============================================ */
/* line 30, ../scss/module/_slideshow.scss */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #ededed;
}
/* line 37, ../scss/module/_slideshow.scss */
.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF;
}
/* line 43, ../scss/module/_slideshow.scss */
.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}
/* line 53, ../scss/module/_slideshow.scss */
.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}
/* line 58, ../scss/module/_slideshow.scss */
.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

/* line 66, ../scss/module/_slideshow.scss */
.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 76, ../scss/module/_slideshow.scss */
.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer;
}
/* line 85, ../scss/module/_slideshow.scss */
.slideshow-pager span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 1px;
  background-color: #FFFFFF;
  position: relative;
}
/* line 99, ../scss/module/_slideshow.scss */
.slideshow-pager span:hover:before {
  background-color: #2d5986;
}
/* line 103, ../scss/module/_slideshow.scss */
.slideshow-pager span.cycle-pager-active:before {
  background-color: #264d73;
}
/* line 108, ../scss/module/_slideshow.scss */
.slideshow-pager > * {
  cursor: pointer;
}

/* line 113, ../scss/module/_slideshow.scss */
.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 125, ../scss/module/_slideshow.scss */
.slideshow-prev:before,
.slideshow-next:before {
  content: '';
  width: 0;
  height: 0;
  font-size: 0;
  position: absolute;
  border-style: solid;
  display: block;
  top: 50%;
  margin-top: -15px;
}
/* line 137, ../scss/module/_slideshow.scss */
.slideshow-prev:hover,
.slideshow-next:hover {
  opacity: 1;
}
/* line 141, ../scss/module/_slideshow.scss */
.slideshow-prev.disabled,
.slideshow-next.disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  cursor: default;
}

/* line 147, ../scss/module/_slideshow.scss */
.slideshow-prev {
  left: 8px;
}
/* line 150, ../scss/module/_slideshow.scss */
.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}
/* line 157, ../scss/module/_slideshow.scss */
.slideshow-prev:hover:before {
  border-color: transparent #2d5986 transparent transparent;
}

/* line 162, ../scss/module/_slideshow.scss */
.slideshow-next {
  right: 8px;
}
/* line 165, ../scss/module/_slideshow.scss */
.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px;
}
/* line 172, ../scss/module/_slideshow.scss */
.slideshow-next:hover:before {
  border-color: transparent transparent transparent #2d5986;
}

/* line 177, ../scss/module/_slideshow.scss */
.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}

/* line 185, ../scss/module/_slideshow.scss */
.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
/* line 31, ../scss/module/_wishlist.scss */
#wishlist-table th {
  text-align: center;
}
/* line 35, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
/* line 41, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table th {
  border-bottom: 1px solid #c0c0c0;
}
/* line 45, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
/* line 50, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table thead th {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 57, ../scss/module/_wishlist.scss */
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}
/* line 63, ../scss/module/_wishlist.scss */
#wishlist-table .product-name a {
  color: #369;
}
/* line 68, ../scss/module/_wishlist.scss */
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Open Sans", sans-serif;
  margin: 5px 0;
}
/* line 74, ../scss/module/_wishlist.scss */
#wishlist-table textarea {
  border: 1px solid #c0c0c0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Open Sans", sans-serif;
}
/* line 81, ../scss/module/_wishlist.scss */
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
/* line 84, ../scss/module/_wishlist.scss */
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
/* line 87, ../scss/module/_wishlist.scss */
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
/* line 90, ../scss/module/_wishlist.scss */
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
/* line 94, ../scss/module/_wishlist.scss */
#wishlist-table textarea:focus {
  border: 1px solid #369;
}
/* line 99, ../scss/module/_wishlist.scss */
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
/* line 104, ../scss/module/_wishlist.scss */
#wishlist-table .item-manage .button, #wishlist-table .item-manage .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading #wishlist-table .item-manage a {
  font-size: 11px;
  padding: 3px 5px;
}
/* line 110, ../scss/module/_wishlist.scss */
#wishlist-table .cart-cell {
  text-align: center;
}
/* line 115, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
/* line 119, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
/* line 123, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
/* line 128, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
/* line 131, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .button, #wishlist-table td.customer-wishlist-item-cart .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading #wishlist-table td.customer-wishlist-item-cart a {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%;
}
/* line 138, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
/* line 142, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
/* line 146, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
/* line 150, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
/* line 155, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
/* line 159, ../scss/module/_wishlist.scss */
#wishlist-table td .button, #wishlist-table td .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading #wishlist-table td a,
#wishlist-table td button {
  white-space: normal;
}
/* line 166, ../scss/module/_wishlist.scss */
#wishlist-table .price-box {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
}
/* line 170, ../scss/module/_wishlist.scss */
#wishlist-table .price-box .price {
  color: #40434B;
}
/* line 175, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
/* line 178, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add .change {
  display: none;
}
/* line 182, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #369;
  margin-bottom: 3px;
}
/* line 190, ../scss/module/_wishlist.scss */
#wishlist-table .truncated .details {
  background: none;
  color: #369;
}
/* line 196, ../scss/module/_wishlist.scss */
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

@media only screen and (max-width: 1199px) {
  /* line 206, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 979px) {
  /* line 218, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td {
    padding-left: 5px;
    padding-right: 5px;
  }
  /* line 222, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td textarea {
    height: 100px;
  }
  /* line 226, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px;
  }
  /* line 231, ../scss/module/_wishlist.scss */
  #wishlist-table .product-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 241, ../scss/module/_wishlist.scss */
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 245, ../scss/module/_wishlist.scss */
  #wishlist-table .product-name {
    font-size: 16px;
  }
  /* line 249, ../scss/module/_wishlist.scss */
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  /* line 254, ../scss/module/_wishlist.scss */
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  /* line 258, ../scss/module/_wishlist.scss */
  #wishlist-table tr {
    position: relative;
  }
  /* line 261, ../scss/module/_wishlist.scss */
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 266, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px;
  }
  /* line 269, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  /* line 276, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  /* line 280, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  /* line 286, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 599px) {
  /* line 296, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
  /* line 300, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 311, ../scss/module/_wishlist.scss */
  #wishlist-table tr {
    position: relative;
  }
  /* line 315, ../scss/module/_wishlist.scss */
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  /* line 320, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image, #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price, #wishlist-table td.customer-wishlist-item-cart {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide;
  }
  /* line 331, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden;
  }
  /* line 335, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image a {
    float: left;
  }
  /* line 338, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
  }
  /* line 345, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left;
  }
  /* line 349, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 15px;
  }
  /* line 354, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: left;
  }
  /* line 358, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0;
  }
  /* line 364, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  /* line 369, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  /* line 375, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  /* line 386, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
}
/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
/* line 399, ../scss/module/_wishlist.scss */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
/* line 403, ../scss/module/_wishlist.scss */
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
/* line 408, ../scss/module/_wishlist.scss */
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
/* line 413, ../scss/module/_wishlist.scss */
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
/* line 419, ../scss/module/_wishlist.scss */
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #ededed;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
/* line 38, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
/* line 45, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .empty {
  padding: 10px;
  text-align: center;
}
/* line 52, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-wrapper {
  position: relative;
  clear: both;
}
/* line 27, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 38, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
/* line 44, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
/* line 51, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
/* line 54, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
/* line 61, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .block-cart {
  display: none;
}
/* line 65, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .block-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  color: #50a4cf;
}
/* line 80, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .block-subtitle .close {
  font-size: 30px;
  font-weight: normal;
  position: absolute;
  top: -8px;
  right: -3px;
  display: block;
  float: right;
  width: 40px;
  text-decoration: none;
  color: #40434B;
}
/* line 99, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list {
  padding: 10px;
  padding-top: 0;
}
/* line 104, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list li {
  position: relative;
  padding: 8px 5px 8px 11px;
  border-bottom: 1px solid #ddd;
}
/* line 112, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list li.last {
  border: none;
}
/* line 117, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list li .product-details {
  position: relative;
}
/* line 126, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .product-details .product-name {
  font-weight: bold;
  padding-top: 0;
}
/* line 132, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .product-details .product-name a {
  color: #369;
}
/* line 139, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper {
  margin-bottom: .5em;
}
/* line 143, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper th {
  padding-right: 10px;
  text-transform: uppercase;
}
/* line 149, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper td {
  clear: right;
  color: #369;
}
/* line 158, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .qty-wrapper td {
  line-height: 33px;
  height: 33px;
}
/* line 166, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .qty {
  width: 3.2em;
  height: 30px;
  margin-right: 2px;
  padding-right: 4px;
  padding-left: 4px;
  text-align: center;
}
/* line 177, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
/* line 184, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
/* line 189, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
/* line 196, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .subtotal {
  line-height: 2em;
  text-align: center;
  background-color: #ddd;
}
/* line 204, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .subtotal .label {
  text-transform: uppercase;
  color: white;
}
/* line 210, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .subtotal .price {
  color: #369;
}
/* line 216, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 10px;
  text-align: center;
}
/* line 227, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
}
/* line 232, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions .cart-link {
  font-size: 13px;
  line-height: 39px;
  height: 33px;
  text-transform: uppercase;
}
/* line 244, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
/* line 251, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart #minicart-error-message {
  display: none;
  text-align: center;
  color: red;
}
/* line 260, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart #minicart-success-message {
  display: none;
  text-align: center;
  color: green;
}
/* line 270, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

/* line 277, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block;
}

@media only screen and (min-width: 769px) {
  /* line 285, ../scss/module/_checkout-cart-minicart.scss */
  .checkout-types.minicart {
    float: none;
    text-align: center;
  }
}
@media only screen and (max-width: 479px) {
  /* line 295, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart a.skip-cart {
    z-index: 1;
  }
}
@media only screen and (max-width: 768px) {
  /* line 307, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .subtotal .label {
    color: #40434B;
  }
  /* line 314, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-wrapper:before {
    background-color: #ededed;
  }
  /* line 320, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .quantity-button {
    float: none;
  }
  /* line 325, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .header-minicart .block-cart {
    padding: 15px;
  }
  /* line 330, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px;
  }
  /* line 335, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions {
    padding-bottom: 33px;
  }
  /* line 339, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .cart-link {
    position: absolute;
    right: 10px;
    bottom: 0;
  }
  /* line 348, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li {
    display: inline-block;
  }
  /* line 354, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline;
  }
  /* line 359, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top;
  }
  /* line 366, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 40px;
    display: inline;
    float: none;
    width: auto;
    margin: 0 10px 5px 10px;
  }
}
@media only screen and (max-width: 740px) {
  /* line 389, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    width: 100%;
    text-align: center;
  }
  /* line 405, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  /* line 414, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 599px) {
  /* line 431, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
}
/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
/* line 30, ../scss/module/_search.scss */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200;
}
/* line 38, ../scss/module/_search.scss */
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #369;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 48, ../scss/module/_search.scss */
.search-autocomplete ul li {
  border-bottom: 1px solid #f4f4f4;
  color: #369;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
/* line 56, ../scss/module/_search.scss */
.search-autocomplete ul li:hover {
  color: #2d5986;
}
/* line 60, ../scss/module/_search.scss */
.search-autocomplete ul li.selected {
  background-color: #369;
  color: white;
}
/* line 65, ../scss/module/_search.scss */
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
/* line 70, ../scss/module/_search.scss */
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
/* line 76, ../scss/module/_search.scss */
.search-autocomplete:before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: none;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #369;
  border-left: 7px solid transparent;
  left: 50%;
  top: -7px;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
/* line 87, ../scss/module/_search.scss */
.advanced-search {
  background: #f4f4f4;
  border: 1px solid #ededed;
  padding: 30px;
}
/* line 93, ../scss/module/_search.scss */
.advanced-search select.multiselect option {
  border-bottom: 1px solid #ededed;
  padding: 2px 5px;
}

@media only screen and (max-width: 479px) {
  /* line 101, ../scss/module/_search.scss */
  .advanced-search {
    padding: 15px;
  }
}
/* line 107, ../scss/module/_search.scss */
.catalogsearch-result .product-status {
  width: 68px;
  margin-bottom: 5px;
}

/* ============================================ *
 * Account - Reviews
 * ============================================ */
/* line 32, ../scss/module/_account-reviews.scss */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
/* line 41, ../scss/module/_account-reviews.scss */
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
/* line 47, ../scss/module/_account-reviews.scss */
.product-review .product-details h2 {
  border-bottom: 1px solid #ebebeb;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 10px;
}
/* line 57, ../scss/module/_account-reviews.scss */
.product-review .ratings-table {
  font-family: "Open Sans", sans-serif;
}
/* line 60, ../scss/module/_account-reviews.scss */
.product-review .ratings-table th {
  padding-right: 10px;
}
/* line 64, ../scss/module/_account-reviews.scss */
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
/* line 73, ../scss/module/_account-reviews.scss */
.product-review .ratings-description dt {
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
/* line 83, ../scss/module/_account-reviews.scss */
.product-review .ratings-description dd {
  color: #737373;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
}

@media only screen and (min-width: 769px) {
  /* line 96, ../scss/module/_account-reviews.scss */
  .product-review .ratings-table tr {
    float: none;
  }
}
@media only screen and (min-width: 1126px) {
  /* line 108, ../scss/module/_account-reviews.scss */
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 320px) {
  /* line 121, ../scss/module/_account-reviews.scss */
  .product-review .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * CMS Pages
 * ============================================ */
/* line 37, ../scss/module/_cms.scss */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none;
}
/* line 45, ../scss/module/_cms.scss */
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
/* line 65, ../scss/module/_cms.scss */
.cms-page-view .std li,
.cms-no-route .std li {
  color: #40434B;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
/* line 75, ../scss/module/_cms.scss */
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}
/* line 80, ../scss/module/_cms.scss */
.cms-page-view .col-left .cms-heading a,
.cms-no-route .col-left .cms-heading a {
  font-weight: 600;
  color: #369;
  font-size: 14px;
}
/* line 88, ../scss/module/_cms.scss */
.cms-page-view .col-left ul li,
.cms-no-route .col-left ul li {
  margin-bottom: 5px;
  margin-top: 10px;
}
/* line 92, ../scss/module/_cms.scss */
.cms-page-view .col-left ul li a,
.cms-no-route .col-left ul li a {
  color: #666;
}
/* line 98, ../scss/module/_cms.scss */
.cms-page-view .col-left .cms-section,
.cms-no-route .col-left .cms-section {
  border-top: 1px solid #d9d9d9;
  padding-top: 10px;
  padding-bottom: 5px;
}

/* line 109, ../scss/module/_cms.scss */
.cms-no-route .std img {
  width: 100%;
}

/* line 118, ../scss/module/_cms.scss */
.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px;
}
/* line 121, ../scss/module/_cms.scss */
.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-no-route .std .messages ul {
  margin-bottom: 0;
}
/* line 125, ../scss/module/_cms.scss */
.cms-page-view .std .messages li,
.cms-home .std .messages li,
.cms-no-route .std .messages li {
  list-style: none;
  margin-left: 0;
  font-style: normal;
  font-family: "Open Sans", sans-serif;
}

/* line 137, ../scss/module/_cms.scss */
ul.filmstrip {
  list-style: none;
  margin: 0 -8px 16px;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 768px) {
  /* line 137, ../scss/module/_cms.scss */
  ul.filmstrip {
    margin: 0 -18px 24px;
  }
}
/* line 150, ../scss/module/_cms.scss */
ul.filmstrip li {
  max-width: 20%;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 150, ../scss/module/_cms.scss */
  ul.filmstrip li {
    -webkit-flex: 33%;
    flex: 33%;
    margin: 0 8px 16px;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  /* line 150, ../scss/module/_cms.scss */
  ul.filmstrip li {
    -webkit-flex: 1 0 20%;
    flex: 1 0 20%;
    margin: 0 18px;
    max-width: 20%;
  }
}
/* line 167, ../scss/module/_cms.scss */
ul.filmstrip li a {
  font-family: "Open Sans", sans-serif;
  color: #40434B;
  font-style: normal;
  font-weight: 700;
}
/* line 174, ../scss/module/_cms.scss */
ul.filmstrip li figure {
  border: 1px solid #d9d9d9;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  width: 100%;
}
/* line 182, ../scss/module/_cms.scss */
ul.filmstrip li figure img {
  position: absolute;
  top: 50%;
  object-fit: cover;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 197, ../scss/module/_cms.scss */
.cms-page-view td {
  padding: 6px;
  border: 1px solid #DDDDDD;
}

/* line 159, ../scss/mixin/_toggle-content.scss */
#accordion .toggle-tabs {
  display: none;
}
/* line 166, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt {
  display: block;
  font-weight: normal;
  position: relative;
  margin-bottom: 0;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #ebebeb;
  background-color: #f4f4f4;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  text-transform: none;
  color: #40434B;
  text-rendering: optimizeSpeed;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 141, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt:after {
  top: 50%;
  left: 10px;
  margin-top: -3px;
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  content: '';
  border-top: 4px solid #369;
  border-right: 4px solid transparent;
  border-bottom: none;
  border-left: 4px solid transparent;
}
/* line 151, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt:hover {
  background-color: #ededed;
}
/* line 173, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dd {
  margin: 0;
  padding: 10px;
  border-width: 0 1px;
  border-style: solid;
  border-color: #ebebeb;
}
/* line 182, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
/* line 209, ../scss/module/_cms.scss */
#accordion li {
  position: relative;
  overflow: hidden;
}
/* line 213, ../scss/module/_cms.scss */
#accordion li .plusimage h2 {
  margin-right: 10px;
}

/* line 221, ../scss/module/_cms.scss */
.cms-image-grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-evenly;
  justify-content: space-evenly;
}
/* line 226, ../scss/module/_cms.scss */
.cms-image-grid img {
  padding: 8px;
}

/* line 235, ../scss/module/_cms.scss */
.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
/* line 240, ../scss/module/_cms.scss */
.page-sitemap .links a {
  position: relative;
}
/* line 243, ../scss/module/_cms.scss */
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px;
}
/* line 248, ../scss/module/_cms.scss */
.page-sitemap .sitemap li {
  margin: 3px 0;
}

/* line 258, ../scss/module/_cms.scss */
.contacts-index-index h1 {
  border: none;
}

/* line 263, ../scss/module/_cms.scss */
#contactForm {
  padding-left: 40px;
}
/* line 266, ../scss/module/_cms.scss */
#contactForm h2 {
  display: none;
}
/* line 270, ../scss/module/_cms.scss */
#contactForm:after {
  content: '';
  display: table;
  clear: both;
}
/* line 274, ../scss/module/_cms.scss */
#contactForm .fieldset .legend + .required {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  /* line 281, ../scss/module/_cms.scss */
  #contactForm {
    padding-left: 0;
  }
}
/* line 289, ../scss/module/_cms.scss */
body.cms-education-center .page-title {
  display: none;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
/* line 32, ../scss/module/_pricing_conditions.scss */
.price-box .minimal-price-link .label {
  color: #f17b78;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

/* line 41, ../scss/module/_pricing_conditions.scss */
.map-info {
  white-space: nowrap;
}

/* line 46, ../scss/module/_pricing_conditions.scss */
.catalog-product-view .map-info {
  white-space: normal;
}
/* line 48, ../scss/module/_pricing_conditions.scss */
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
/* line 52, ../scss/module/_pricing_conditions.scss */
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
/* line 31, ../scss/module/_cookies.scss */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}
/* line 34, ../scss/module/_cookies.scss */
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
/* line 39, ../scss/module/_cookies.scss */
.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}
/* line 45, ../scss/module/_cookies.scss */
.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3;
}
/* line 51, ../scss/module/_cookies.scss */
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

@media only screen and (max-width: 979px) {
  /* line 62, ../scss/module/_cookies.scss */
  .notice-cookie .notice-text {
    max-width: 86%;
  }
}
@media only screen and (max-width: 768px) {
  /* line 72, ../scss/module/_cookies.scss */
  .notice-cookie {
    padding: 0 20px;
  }
  /* line 75, ../scss/module/_cookies.scss */
  .notice-cookie .notice-text {
    max-width: 82%;
    padding-top: 0;
  }
}
@media only screen and (max-width: 620px) {
  /* line 86, ../scss/module/_cookies.scss */
  .notice-cookie {
    padding: 0 20px;
  }
  /* line 89, ../scss/module/_cookies.scss */
  .notice-cookie .notice-inner {
    background-position: left 10px;
  }
  /* line 92, ../scss/module/_cookies.scss */
  .notice-cookie .notice-inner:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 97, ../scss/module/_cookies.scss */
  .notice-cookie .notice-text {
    float: none;
    max-width: 100%;
    padding-top: 0;
  }
  /* line 103, ../scss/module/_cookies.scss */
  .notice-cookie .actions {
    text-align: left;
  }
}
/* ============================================ *
 * Tags
 * ============================================ */
/* line 30, ../scss/module/_tags.scss */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

/* line 34, ../scss/module/_tags.scss */
#addTagForm .form-add {
  margin-top: 10px;
}

/* line 37, ../scss/module/_tags.scss */
.product-tags {
  background-color: #f4f4f4;
  border: 1px solid #ebebeb;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%;
}

/* line 45, ../scss/module/_tags.scss */
.product-tags li {
  float: left;
  margin-right: 15px;
}

/* line 49, ../scss/module/_tags.scss */
.product-tags li.last {
  margin-right: 0px;
}

/* line 52, ../scss/module/_tags.scss */
.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

/* line 57, ../scss/module/_tags.scss */
.tags-list > li {
  float: left;
  margin-right: 10px;
}

/* line 61, ../scss/module/_tags.scss */
.block-tags .actions > a {
  font-size: 12px;
}

/* line 65, ../scss/module/_tags.scss */
.my-tag-edit .button.btn-remove, .my-tag-edit .klevuResultsBlock .klevuSuggestionHeading a.btn-remove, .klevuResultsBlock .klevuSuggestionHeading .my-tag-edit a.btn-remove {
  padding: 0;
}
/* line 68, ../scss/module/_tags.scss */
.my-tag-edit .button.btn-remove:after, .my-tag-edit .klevuResultsBlock .klevuSuggestionHeading a.btn-remove:after, .klevuResultsBlock .klevuSuggestionHeading .my-tag-edit a.btn-remove:after {
  color: white;
}

@media only screen and (max-width: 768px) {
  /* line 74, ../scss/module/_tags.scss */
  .tags-list > li,
  .tags-list {
    float: none;
  }
}
/* ============================================ *
 * Captcha
 * ============================================ */
/* line 29, ../scss/module/_captcha.scss */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

/* line 33, ../scss/module/_captcha.scss */
.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px;
}

/* line 41, ../scss/module/_captcha.scss */
.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%;
}

/* line 46, ../scss/module/_captcha.scss */
.registered-users .captcha-image {
  margin: 0;
}

/* line 47, ../scss/module/_captcha.scss */
.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

/* line 53, ../scss/module/_captcha.scss */
.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

/* line 58, ../scss/module/_captcha.scss */
.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%;
}

/* line 59, ../scss/module/_captcha.scss */
.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px;
}

/* line 64, ../scss/module/_captcha.scss */
.captcha-img {
  border: 20px solid #bbb;
}

/* line 65, ../scss/module/_captcha.scss */
.captcha-input-container {
  margin-bottom: 10px;
}

/* line 66, ../scss/module/_captcha.scss */
.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both;
}
/* line 70, ../scss/module/_captcha.scss */
.control.newsletter-box:after, .captcha-input-container:after, .captcha-img-container:after {
  content: '';
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout Billing Fix to place the Captcha properly
 * ============================================ */
/* line 78, ../scss/module/_captcha.scss */
#co-billing-form ul.form-list > .control {
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
@media only screen and (max-width: 479px) {
  /* line 34, ../scss/module/_account-orders.scss */
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  /* line 40, ../scss/module/_account-orders.scss */
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%;
  }
}
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
/* line 32, ../scss/module/_recurring-profiles.scss */
#recurring_profile_list_view th {
  white-space: normal;
}
/* line 35, ../scss/module/_recurring-profiles.scss */
#recurring_profile_list_view th span {
  white-space: inherit;
}
@media only screen and (max-width: 479px) {
  /* line 30, ../scss/module/_recurring-profiles.scss */
  #recurring_profile_list_view {
    font-size: 12px;
  }
  /* line 43, ../scss/module/_recurring-profiles.scss */
  #recurring_profile_list_view a {
    font-size: inherit;
  }
  /* line 47, ../scss/module/_recurring-profiles.scss */
  #recurring_profile_list_view th,
  #recurring_profile_list_view td {
    padding: 2px;
  }
}

/* line 55, ../scss/module/_recurring-profiles.scss */
.recurring-profiles-title {
  float: left;
}
/* line 58, ../scss/module/_recurring-profiles.scss */
.recurring-profiles-title h1 {
  margin-bottom: 7px;
}

/* line 63, ../scss/module/_recurring-profiles.scss */
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px;
}
@media only screen and (max-width: 479px) {
  /* line 63, ../scss/module/_recurring-profiles.scss */
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
    text-align: center;
    float: none;
  }
}
/* line 73, ../scss/module/_recurring-profiles.scss */
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button, body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons a {
  position: static;
}

/* line 79, ../scss/module/_recurring-profiles.scss */
.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both;
}

/* line 84, ../scss/module/_recurring-profiles.scss */
#recurring_start_date_trig {
  display: inline;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
/* line 31, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box {
  margin-bottom: 30px;
}
/* line 34, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box:after {
  content: '';
  display: table;
  clear: both;
}
/* line 38, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}
/* line 43, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}
/* line 48, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box .button, .billing-agreements .info-box .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .billing-agreements .info-box a {
  float: right;
  margin-top: 7px;
}
@media only screen and (max-width: 479px) {
  /* line 48, ../scss/module/_billing-agreements.scss */
  .billing-agreements .info-box .button, .billing-agreements .info-box .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .billing-agreements .info-box a {
    width: 100%;
    float: none;
  }
}
/* line 59, ../scss/module/_billing-agreements.scss */
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

/* line 67, ../scss/module/_billing-agreements.scss */
.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}
@media only screen and (max-width: 479px) {
  /* line 67, ../scss/module/_billing-agreements.scss */
  .billing-agreement-view-header-wrapper .heading {
    max-width: 100%;
  }
}

/* line 77, ../scss/module/_billing-agreements.scss */
.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

@media only screen and (max-width: 979px) {
  /* line 85, ../scss/module/_billing-agreements.scss */
  .billing-agreements .data-table .created-at,
  .billing-agreements .data-table .updated-at {
    display: none;
  }
}
/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
/* line 30, ../scss/module/_popular-terms.scss */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

/* line 34, ../scss/module/_popular-terms.scss */
.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px;
}

/* ============================================ *
 * Widgets
 * ============================================ */
/* -------------------------------------------- *
 * Add to cart by SKU
 */
/* line 37, ../scss/module/_widget.scss */
.sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  /* line 37, ../scss/module/_widget.scss */
  .sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
    max-width: 100px;
  }
}

/* line 49, ../scss/module/_widget.scss */
.widget {
  clear: both;
}

/* line 53, ../scss/module/_widget.scss */
.widget .pager {
  float: none;
  width: 100%;
}

@media only screen and (min-width: 1199px) {
  /* line 64, ../scss/module/_widget.scss */
  .col2-left-layout .col-main .widget,
  .col2-right-layout .col-main .widget,
  .col3-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  /* line 290, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  /* line 294, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  /* line 298, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  /* line 305, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  /* line 309, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  /* line 314, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  /* line 318, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  /* line 290, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  /* line 294, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  /* line 298, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  /* line 305, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  /* line 309, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  /* line 314, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  /* line 318, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  /* line 73, ../scss/module/_widget.scss */
  .col1-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  /* line 290, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  /* line 294, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  /* line 298, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  /* line 305, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  /* line 309, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  /* line 314, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  /* line 318, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  /* line 290, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  /* line 294, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  /* line 298, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  /* line 305, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  /* line 309, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  /* line 314, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  /* line 318, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
/* line 31, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
/* line 35, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #f4f4f4;
  text-transform: uppercase;
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
}
/* line 46, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #ddd;
}
/* line 49, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
/* line 54, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
/* line 58, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
/* line 64, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .page-title .button, body[class*="checkout-multishipping-"] .page-title .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading body[class*="checkout-multishipping-"] .page-title a {
  float: right;
}
/* line 68, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
/* line 73, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
/* line 77, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
/* line 80, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
/* line 83, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
/* line 87, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}
/* line 93, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
/* line 97, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

/* line 104, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

/* line 113, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}
/* line 116, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}
/* line 118, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
/* line 122, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
/* line 126, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

/* line 137, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #f4f4f4;
  border-bottom: 1px solid #ebebeb;
  padding: 10px;
  font-size: 14px;
}
/* line 146, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .col-1 > h4, .checkout-multishipping-shipping .col-2 > h4,
.checkout-multishipping-billing .col-1 > h4,
.checkout-multishipping-billing .col-2 > h4,
.checkout-multishipping-overview .col-1 > h4,
.checkout-multishipping-overview .col-2 > h4 {
  font-weight: normal;
  width: 100%;
  background: #f4f4f4;
  border-bottom: 1px solid #ebebeb;
  padding: 10px;
  font-size: 14px;
}
/* line 154, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .col-1 .box-content, .checkout-multishipping-shipping .col-2 .box-content,
.checkout-multishipping-billing .col-1 .box-content,
.checkout-multishipping-billing .col-2 .box-content,
.checkout-multishipping-overview .col-1 .box-content,
.checkout-multishipping-overview .col-2 .box-content {
  margin-bottom: 25px;
  padding-left: 10px;
  margin-top: 10px;
}

/* line 163, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%;
}

/* line 169, ../scss/module/_checkout-multi-address.scss */
#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none;
}

/* line 173, ../scss/module/_checkout-multi-address.scss */
#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both;
}

@media only screen and (max-width: 979px) {
  /* line 180, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 300px;
  }

  /* line 185, ../scss/module/_checkout-multi-address.scss */
  #review-order-form .col-1,
  #review-order-form .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* line 198, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px;
  }
  /* line 202, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px;
  }
  /* line 209, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px;
  }
  /* line 214, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%;
  }
  /* line 218, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .page-title .button, body[class*="checkout-multishipping-"] .page-title .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading body[class*="checkout-multishipping-"] .page-title a {
    float: left;
    margin-bottom: 10px;
  }
  /* line 223, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right;
  }
  /* line 226, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px;
  }
  /* line 231, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .col-1.col-narrow, body[class*="checkout-multishipping-"] .col-2.col-wide {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  /* line 239, ../scss/module/_checkout-multi-address.scss */
  .checkout-multishipping-addresses .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 10px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 479px) {
  /* line 248, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block;
  }
}
/* line 3, ../scss/module/_home.scss */
.cms-index-index .main-banner {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 3, ../scss/module/_home.scss */
  .cms-index-index .main-banner {
    max-height: auto;
  }
}
/* line 15, ../scss/module/_home.scss */
.cms-index-index .main-banner img {
  position: relative;
  z-index: 0;
  width: 100%;
  object-fit: cover;
}
/* line 25, ../scss/module/_home.scss */
.cms-index-index .main-banner .text {
  position: absolute;
  z-index: 2;
  width: 100%;
}
/* line 33, ../scss/module/_home.scss */
.cms-index-index .main-banner .title-left {
  max-width: 600px;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 33, ../scss/module/_home.scss */
  .cms-index-index .main-banner .title-left {
    width: 100%;
    padding: 20px 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    text-align: center;
  }
}
/* line 49, ../scss/module/_home.scss */
.cms-index-index .main-banner button.skeleton {
  font-size: 14px;
  font-weight: 600;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px 40px;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid #fff;
  background: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 49, ../scss/module/_home.scss */
  .cms-index-index .main-banner button.skeleton {
    font-size: 12px;
    width: 100%;
    padding: 5px 20px;
    border-width: 1px;
  }
}
/* line 75, ../scss/module/_home.scss */
.cms-index-index .main-banner button.skeleton span {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: none;
  flex: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 75, ../scss/module/_home.scss */
  .cms-index-index .main-banner button.skeleton span {
    justify-content: flex-end;
  }
}
/* line 84, ../scss/module/_home.scss */
.cms-index-index .main-banner button.skeleton span:last-of-type {
  -webkit-flex: 1;
  flex: 1;
  padding: 0 0 0 30px;
}
/* line 93, ../scss/module/_home.scss */
.cms-index-index .main-banner h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 93, ../scss/module/_home.scss */
  .cms-index-index .main-banner h1 {
    font-size: 13px;
  }
}
/* line 111, ../scss/module/_home.scss */
.cms-index-index .view-more.mobile {
  font-size: 12px;
  font-weight: 700;
  display: none;
  justify-content: flex-end;
  padding: 9px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #40434b;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 111, ../scss/module/_home.scss */
  .cms-index-index .view-more.mobile {
    display: block;
  }
}
/* line 140, ../scss/module/_home.scss */
.cms-index-index .gift-block {
  display: -webkit-flex;
  display: flex;
  margin: 30px 0;
  padding: 10px 20px;
  background: #f6f6f6;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 140, ../scss/module/_home.scss */
  .cms-index-index .gift-block {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 154, ../scss/module/_home.scss */
.cms-index-index .gift-block h3 {
  font-size: 14px;
  font-weight: 100;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1;
  flex: 1;
  margin: 0;
  text-transform: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 154, ../scss/module/_home.scss */
  .cms-index-index .gift-block h3 {
    margin: 0 0 20px 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 172, ../scss/module/_home.scss */
  .cms-index-index .gift-block h3 svg {
    width: 72px;
  }
}
/* line 180, ../scss/module/_home.scss */
.cms-index-index .gift-block h3 span {
  padding: 0 0 0 20px;
}
/* line 185, ../scss/module/_home.scss */
.cms-index-index .gift-block h3 strong {
  font-weight: 600;
}
/* line 194, ../scss/module/_home.scss */
.cms-index-index .shopby .categories {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 194, ../scss/module/_home.scss */
  .cms-index-index .shopby .categories {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* line 203, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category {
  overflow: hidden;
  -webkit-flex: 1;
  flex: 1;
  margin: 0 40px 0 0;
  text-align: center;
  border: 1px solid #ede7e2;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 203, ../scss/module/_home.scss */
  .cms-index-index .shopby .categories .category {
    -webkit-flex: 1;
    flex: 1;
    margin: 0 0 40px 0;
  }
}
/* line 221, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category:last-of-type {
  margin: 0;
}
/* line 228, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category.kids .title {
  background-color: #369;
}
/* line 236, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category.education .title {
  background-color: #f17b78;
}
/* line 244, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category.lab .title {
  background-color: #75c3b5;
}
/* line 252, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category.industrial .title {
  background-color: #ebbf49;
}
/* line 258, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category .title {
  padding: 15px 0;
  background: #000;
}
/* line 265, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category .title h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}
/* line 277, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category .cat-img {
  padding: 30px 0;
  text-align: center;
}
/* line 284, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category button {
  margin: 0 0 20px 0;
}
/* line 288, ../scss/module/_home.scss */
.cms-index-index .shopby .categories .category img {
  display: inline-block;
}

/* line 300, ../scss/module/_home.scss */
#slider.mobile-slider, #slider-mobile.mobile-slider {
  display: none !important;
}
/* line 303, ../scss/module/_home.scss */
#slider.desktop-slider, #slider-mobile.desktop-slider {
  display: block !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 308, ../scss/module/_home.scss */
  #slider.mobile-slider, #slider-mobile.mobile-slider {
    display: block !important;
  }
  /* line 311, ../scss/module/_home.scss */
  #slider.desktop-slider, #slider-mobile.desktop-slider {
    display: none !important;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 318, ../scss/module/_home.scss */
  #slider .slick-list .slick-slide, #slider-mobile .slick-list .slick-slide {
    overflow: hidden;
    position: relative;
    min-height: 320px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 328, ../scss/module/_home.scss */
  #slider .slick-list img, #slider-mobile .slick-list img {
    position: absolute;
    width: auto !important;
    height: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
  }
}
/* line 341, ../scss/module/_home.scss */
#slider .slick-arrow, #slider-mobile .slick-arrow {
  position: absolute;
  z-index: 200;
  left: 50%;
  width: 20px;
  height: 22px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  text-indent: -9999px;
  border: none;
  background: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 341, ../scss/module/_home.scss */
  #slider .slick-arrow, #slider-mobile .slick-arrow {
    bottom: 13px;
  }
}
@media (min-width: 768px) {
  /* line 341, ../scss/module/_home.scss */
  #slider .slick-arrow, #slider-mobile .slick-arrow {
    bottom: 21px;
  }
}
/* line 366, ../scss/module/_home.scss */
#slider .slick-arrow.slick-next, #slider-mobile .slick-arrow.slick-next {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  background: url(../images/arrow_right.svg) center center no-repeat;
}
/* line 373, ../scss/module/_home.scss */
#slider .slick-arrow.slick-prev, #slider-mobile .slick-arrow.slick-prev {
  -webkit-transform: translateX(-200%);
  -moz-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  transform: translateX(-200%);
  background: url(../images/arrow_left.svg) center center no-repeat;
}
/* line 380, ../scss/module/_home.scss */
#slider .slick-dots, #slider-mobile .slick-dots {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 23px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 380, ../scss/module/_home.scss */
  #slider .slick-dots, #slider-mobile .slick-dots {
    bottom: 13px;
  }
}
@media (min-width: 768px) {
  /* line 380, ../scss/module/_home.scss */
  #slider .slick-dots, #slider-mobile .slick-dots {
    bottom: 21px;
  }
}
/* line 398, ../scss/module/_home.scss */
#slider .slick-dots li, #slider-mobile .slick-dots li {
  display: inline-block;
  padding: 5px;
  line-height: 0;
}
/* line 406, ../scss/module/_home.scss */
#slider .slick-dots li.slick-active button, #slider-mobile .slick-dots li.slick-active button {
  background: #fff;
}
/* line 411, ../scss/module/_home.scss */
#slider .slick-dots li button, #slider-mobile .slick-dots li button {
  display: inline-block;
  width: 12px;
  height: 12px;
  text-indent: -9999px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: none;
}

/* line 4, ../scss/module/_catalog-listing.scss */
.catalog-category-view .col-main,
.catalogsearch-result-index .col-main {
  margin-top: 0px;
}
/* line 8, ../scss/module/_catalog-listing.scss */
.catalog-category-view .block-layered-nav,
.catalogsearch-result-index .block-layered-nav {
  border: 1px solid #d9d9d9;
}
/* line 13, ../scss/module/_catalog-listing.scss */
.catalog-category-view .block-layered-nav > .block-content,
.catalogsearch-result-index .block-layered-nav > .block-content {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  /* line 19, ../scss/module/_catalog-listing.scss */
  .catalog-category-view .block-layered-nav dl ol > li,
  .catalogsearch-result-index .block-layered-nav dl ol > li {
    background-color: #fff;
  }
  /* line 21, ../scss/module/_catalog-listing.scss */
  .catalog-category-view .block-layered-nav dl ol > li > a,
  .catalogsearch-result-index .block-layered-nav dl ol > li > a {
    background-color: #fff;
  }
}
/* line 30, ../scss/module/_catalog-listing.scss */
.catalog-category-view .actions,
.catalog-category-view .currently,
.catalogsearch-result-index .actions,
.catalogsearch-result-index .currently {
  padding: 0 20px;
}
/* line 35, ../scss/module/_catalog-listing.scss */
.catalog-category-view .actions ol,
.catalog-category-view .currently ol,
.catalogsearch-result-index .actions ol,
.catalogsearch-result-index .currently ol {
  padding: 0;
}
/* line 40, ../scss/module/_catalog-listing.scss */
.catalog-category-view .actions .actions,
.catalog-category-view .currently .actions,
.catalogsearch-result-index .actions .actions,
.catalogsearch-result-index .currently .actions {
  padding-bottom: 20px;
}
/* line 45, ../scss/module/_catalog-listing.scss */
.catalog-category-view .currently,
.catalogsearch-result-index .currently {
  padding: 20px 20px 1px;
}
/* line 48, ../scss/module/_catalog-listing.scss */
.catalog-category-view .actions,
.catalogsearch-result-index .actions {
  padding: 0 20px 20px;
}
/* line 53, ../scss/module/_catalog-listing.scss */
.catalog-category-view .block-title,
.catalogsearch-result-index .block-title {
  margin: 0 0 20px 0;
}
/* line 57, ../scss/module/_catalog-listing.scss */
.catalog-category-view .block-title span,
.catalogsearch-result-index .block-title span {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #40434b;
}
/* line 68, ../scss/module/_catalog-listing.scss */
.catalog-category-view .block-subtitle,
.catalogsearch-result-index .block-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #40434b;
  position: relative;
  width: 100%;
}
/* line 76, ../scss/module/_catalog-listing.scss */
.catalog-category-view .block-subtitle.block-subtitle--filter,
.catalogsearch-result-index .block-subtitle.block-subtitle--filter {
  background: #f5f7fa;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 30px;
  color: #40434b;
  text-align: left;
  position: relative;
}
/* line 90, ../scss/module/_catalog-listing.scss */
.catalog-category-view .category-title h1,
.catalogsearch-result-index .category-title h1 {
  font-size: 36px;
  text-transform: capitalize;
  color: #40434b;
  font-weight: 700;
}
/* line 101, ../scss/module/_catalog-listing.scss */
.catalog-category-view .category-description p,
.catalog-category-view .category-description li,
.catalogsearch-result-index .category-description p,
.catalogsearch-result-index .category-description li {
  font-size: 14px;
  line-height: 1.3;
  color: #40434b;
}
/* line 108, ../scss/module/_catalog-listing.scss */
.catalog-category-view .category-description p a,
.catalog-category-view .category-description li a,
.catalogsearch-result-index .category-description p a,
.catalogsearch-result-index .category-description li a {
  color: #336699;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 115, ../scss/module/_catalog-listing.scss */
  .catalog-category-view .category-description .category-description-description,
  .catalogsearch-result-index .category-description .category-description-description {
    display: none;
  }
}
/* line 123, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list .filter-container,
.catalogsearch-result-index #narrow-by-list .filter-container {
  position: relative;
}
/* line 126, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list .filter-container:nth-child(1) dt,
.catalogsearch-result-index #narrow-by-list .filter-container:nth-child(1) dt {
  border-top: 0;
}
/* line 132, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dt,
.catalogsearch-result-index #narrow-by-list dt {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 14px 16px;
  color: #40434b;
  border: none;
  border-top: 1px solid #ede7e2;
  background: none;
  position: static;
  font-family: "Open Sans", sans-serif;
}
/* line 149, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dt.current,
.catalogsearch-result-index #narrow-by-list dt.current {
  background: #f6f6f6;
}
/* line 154, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dt svg,
.catalogsearch-result-index #narrow-by-list dt svg {
  fill: #5ccce8;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 159, ../scss/module/_catalog-listing.scss */
  .catalog-category-view #narrow-by-list dt .info,
  .catalogsearch-result-index #narrow-by-list dt .info {
    display: none;
  }
}
/* line 167, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dt .title,
.catalogsearch-result-index #narrow-by-list dt .title {
  -webkit-flex: 1;
  flex: 1;
}
/* line 172, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dt:after,
.catalogsearch-result-index #narrow-by-list dt:after {
  right: 10px;
  left: auto;
}
/* line 178, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dd,
.catalogsearch-result-index #narrow-by-list dd {
  padding: 0 20px 20px;
  border: none;
}
/* line 186, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dd ol li,
.catalogsearch-result-index #narrow-by-list dd ol li {
  padding: 0 0 10px 0;
}
/* line 189, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dd ol li a,
.catalogsearch-result-index #narrow-by-list dd ol li a {
  font-size: 14px;
  font-weight: 600;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  color: #40434b;
}
/* line 199, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dd ol li a span.count,
.catalogsearch-result-index #narrow-by-list dd ol li a span.count {
  font-weight: normal;
}
/* line 204, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list dd ol li:last-of-type,
.catalogsearch-result-index #narrow-by-list dd ol li:last-of-type {
  padding: 0;
}
/* line 212, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list span.tip-button,
.catalogsearch-result-index #narrow-by-list span.tip-button {
  cursor: pointer;
}
/* line 216, ../scss/module/_catalog-listing.scss */
.catalog-category-view #narrow-by-list span.tip-button:hover .tip-description,
.catalogsearch-result-index #narrow-by-list span.tip-button:hover .tip-description {
  display: block;
}
/* line 223, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages .current,
.catalog-category-view .pages .current:hover,
.catalogsearch-result-index .pages .current,
.catalogsearch-result-index .pages .current:hover {
  border-color: #ebebeb;
  background: #fafafa;
}
/* line 231, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li,
.catalogsearch-result-index .pages ol li {
  border: 1px solid #d9d9d9;
  background: #f6f6f6;
  height: 36px;
  width: 36px;
}
/* line 236, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li:hover,
.catalogsearch-result-index .pages ol li:hover {
  width: 36px;
  border-color: #d9d9d9;
}
/* line 241, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li:not(:first-child),
.catalogsearch-result-index .pages ol li:not(:first-child) {
  margin-left: -1px;
}
/* line 244, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li,
.catalog-category-view .pages ol li a,
.catalogsearch-result-index .pages ol li,
.catalogsearch-result-index .pages ol li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  color: #40434B;
  font-size: 14px;
  line-height: 17px;
  font-weight: normal;
}
/* line 257, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li a.next:hover, .catalog-category-view .pages ol li a.previous:hover,
.catalogsearch-result-index .pages ol li a.next:hover,
.catalogsearch-result-index .pages ol li a.previous:hover {
  border: none;
}
/* line 261, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li a.next,
.catalogsearch-result-index .pages ol li a.next {
  display: block;
  text-indent: -99em;
}
/* line 264, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li a.next::before,
.catalogsearch-result-index .pages ol li a.next::before {
  border: none;
  background: url(../images/arrow_right--dark.svg) no-repeat;
  width: 16px;
  height: 22px;
  margin-top: -12px;
  margin-left: -12px;
}
/* line 273, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li a.previous,
.catalogsearch-result-index .pages ol li a.previous {
  display: block;
  text-indent: -99em;
}
/* line 276, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li a.previous::before,
.catalogsearch-result-index .pages ol li a.previous::before {
  border: none;
  background: url(../images/arrow_right--dark.svg) no-repeat;
  width: 16px;
  height: 22px;
  margin-top: -10px;
  margin-left: -5px;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/* line 287, ../scss/module/_catalog-listing.scss */
.catalog-category-view .pages ol li.current,
.catalogsearch-result-index .pages ol li.current {
  border-color: #d9d9d9;
}
/* line 298, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item .price,
.catalogsearch-result-index .products-list .item .price {
  font-size: 16px;
  font-weight: 600;
  color: #f00;
}
/* line 306, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item li,
.catalogsearch-result-index .products-list .item li {
  font-size: 1em;
  font-weight: 100;
  margin: 0;
  color: #40434b;
  list-style-position: inside;
  list-style-type: disc;
}
/* line 316, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item .link-learn,
.catalogsearch-result-index .products-list .item .link-learn {
  display: none;
}
/* line 320, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item .link-compare,
.catalogsearch-result-index .products-list .item .link-compare {
  background: #ffffff;
  border: 1px solid #d9d9d9 !important;
  color: #40434B !important;
  padding: 10px 30px;
  white-space: nowrap;
  border-radius: 3px;
  text-decoration: none !important;
  font-family: "Open Sans", sans-serif;
  line-height: 18px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-top: 5px;
}
/* line 335, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item .link-compare:hover,
.catalogsearch-result-index .products-list .item .link-compare:hover {
  background: #f6f6f6;
}
/* line 340, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item .button, .catalog-category-view .products-list .item .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .catalog-category-view .products-list .item a,
.catalogsearch-result-index .products-list .item .button,
.catalogsearch-result-index .products-list .item .klevuResultsBlock .klevuSuggestionHeading a,
.klevuResultsBlock .klevuSuggestionHeading .catalogsearch-result-index .products-list .item a {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 30px;
  white-space: nowrap;
  color: #fff;
}
/* line 353, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item .product-name a,
.catalogsearch-result-index .products-list .item .product-name a {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  color: #40434b;
}
/* line 366, ../scss/module/_catalog-listing.scss */
.catalog-category-view .toolbar,
.catalogsearch-result-index .toolbar {
  background: none;
  margin-top: 32px;
  margin-bottom: 16px;
}
/* line 373, ../scss/module/_catalog-listing.scss */
.catalog-category-view .toolbar label,
.catalogsearch-result-index .toolbar label {
  font-size: 12px;
  font-weight: bold;
  text-transform: none;
  color: #40434b;
  margin-bottom: 0;
}
/* line 383, ../scss/module/_catalog-listing.scss */
.catalog-category-view .toolbar-bottom,
.catalogsearch-result-index .toolbar-bottom {
  border-top: 1px solid #d9d9d9;
  padding-top: 36px;
  margin-bottom: 64px;
}

/* line 396, ../scss/module/_catalog-listing.scss */
dt:hover i {
  color: #3ab7e5;
}

/* line 400, ../scss/module/_catalog-listing.scss */
.tip.tip-button {
  display: inline-block;
  vertical-align: middle;
}

/* line 410, ../scss/module/_catalog-listing.scss */
.tip-description p:not(:last-child) {
  margin-bottom: 16px;
}

/* line 417, ../scss/module/_catalog-listing.scss */
#narrow-by-list .m-selected-ln-item .count {
  display: inline-block;
  float: right;
}
/* line 421, ../scss/module/_catalog-listing.scss */
#narrow-by-list .m-selected-ln-item .selected-option {
  display: inline-block;
}
/* line 425, ../scss/module/_catalog-listing.scss */
#narrow-by-list .tip-description {
  font-weight: normal;
  position: absolute;
  z-index: 9999;
  top: 1px;
  right: 0;
  bottom: 0;
  ledf: 1px;
  overflow-y: auto;
  display: none;
  padding: 14px 16px;
  cursor: normal;
  background: #F6F6F6;
}
/* line 445, ../scss/module/_catalog-listing.scss */
#narrow-by-list .tip-description .tip-container {
  font-size: 14px;
  color: #4D5057;
  position: relative;
}
/* line 450, ../scss/module/_catalog-listing.scss */
#narrow-by-list .tip-description .tip-container svg {
  position: absolute;
  top: 6px;
  right: 0;
}
/* line 457, ../scss/module/_catalog-listing.scss */
#narrow-by-list .tip-description::-webkit-scrollbar {
  width: 7px;
}
/* line 461, ../scss/module/_catalog-listing.scss */
#narrow-by-list .tip-description::-webkit-scrollbar-thumb {
  background-color: #777777;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* line 468, ../scss/module/_catalog-listing.scss */
#narrow-by-list .tip-description h2 {
  font-size: 16px;
  color: #40434B;
  line-height: 1.7;
}
/* line 474, ../scss/module/_catalog-listing.scss */
#narrow-by-list .tip-description p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #4D5057;
}

/* line 515, ../scss/module/_catalog-listing.scss */
.catalog-category-view .products-list .item li.rfor,
.catalogsearch-result-index .products-list .item li.rfor {
  margin: 0;
  margin-top: -1.5em;
  color: #70747e;
}

/* line 524, ../scss/module/_catalog-listing.scss */
.price-box .price-from .price-label,
.price-box .price-from .price,
.price-box .price-save span {
  font-weight: lighter;
  color: #0009;
}

/* line 534, ../scss/module/_catalog-listing.scss */
#kuFilters {
  border: 1px solid #d9d9d9;
}

/* line 539, ../scss/module/_catalog-listing.scss */
.kuContainer {
  padding: 0;
}

/* line 545, ../scss/module/_catalog-listing.scss */
.category-description {
  padding: 20px;
  padding-top: 10px;
  margin-bottom: 20px;
  background: #f5f7fa;
}
/* line 552, ../scss/module/_catalog-listing.scss */
.category-description ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* line 558, ../scss/module/_catalog-listing.scss */
.category-description ul li {
  margin: 0 48px 12px 0;
  padding: 0;
}
/* line 561, ../scss/module/_catalog-listing.scss */
.category-description ul li:last-of-type {
  margin-bottom: 0;
}
/* line 564, ../scss/module/_catalog-listing.scss */
.category-description ul li a {
  text-decoration: underline;
  line-height: 17px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  /* line 577, ../scss/module/_catalog-listing.scss */
  .catalog-category-view .category-description ul,
  .catalogsearch-result-index .category-description ul {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  /* line 581, ../scss/module/_catalog-listing.scss */
  .catalog-category-view .block-layered-nav,
  .catalogsearch-result-index .block-layered-nav {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 5;
    overflow: scroll;
  }
}
/* line 1, ../scss/module/_education-center.scss */
.education-center-image {
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_education-center.scss */
  .education-center-image {
    margin-bottom: 24px;
    background-image: url("../../images/img-edu-mobile.png");
    min-height: 226px;
    padding: 16px;
  }
}
@media (min-width: 768px) {
  /* line 1, ../scss/module/_education-center.scss */
  .education-center-image {
    margin-bottom: 48px;
    background-image: url("../../images/img-education.png");
    padding: 90px 103px;
  }
}
/* line 18, ../scss/module/_education-center.scss */
.education-center-image h1 {
  color: #40434B;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  /* line 18, ../scss/module/_education-center.scss */
  .education-center-image h1 {
    font-size: 36px;
    margin-bottom: 8px;
  }
}

/* line 29, ../scss/module/_education-center.scss */
.box-education-wrapper {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  /* line 29, ../scss/module/_education-center.scss */
  .box-education-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 64px;
  }
}
/* line 40, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education {
  cursor: pointer;
  background-color: #012D5B;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 40, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education {
    margin-bottom: 4px;
  }
}
@media (min-width: 768px) {
  /* line 40, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education {
    width: calc(33% - (74px / 3));
  }
  /* line 54, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education:nth-child(-n+3) {
    margin-bottom: 37px;
  }
  /* line 58, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education > * {
    -webkit-flex: 1;
    flex: 1;
  }
}
/* line 63, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education figure {
  overflow: hidden;
}
/* line 66, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education figure img {
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  max-height: 230px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 66, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education figure img {
    max-height: 96px;
  }
}
/* line 78, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education .text {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 78, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education .text {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  /* line 78, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education .text {
    padding: 24px;
    max-width: 50%;
  }
}
/* line 94, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education .text h4 {
  text-transform: uppercase;
}
/* line 97, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education .text h4 a {
  color: #FFFFFF;
}
/* line 102, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education .text .desc {
  color: #fff;
  opacity: 0.8;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 102, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education .text .desc {
    display: none;
  }
}
/* line 115, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education .text .learn-more {
  margin-top: auto;
  margin-bottom: 0;
}
/* line 119, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education .text .learn-more a {
  float: right;
}
/* line 122, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education .text .learn-more a:after {
  content: url(../../images/icn-arrow-right.svg);
}
/* line 129, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education:last-child {
  background-color: #F5F7FA;
}
@media (min-width: 768px) {
  /* line 132, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education:last-child .text {
    max-width: 100%;
  }
}
/* line 139, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education:last-child h1 {
  text-align: center;
  margin: auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 139, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education:last-child h1 {
    max-width: 120px;
  }
}
@media (min-width: 768px) {
  /* line 139, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education:last-child h1 {
    max-width: 237px;
    font-size: 36px;
  }
}
/* line 154, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education:last-child h1 a {
  color: #40434B;
}
/* line 159, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education:last-child .learn-more {
  margin: 0;
}
/* line 163, ../scss/module/_education-center.scss */
.box-education-wrapper .box-education:last-child .learn-more a:after {
  content: url(../../images/icn-arrow-right-dark.svg);
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* line 176, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education {
    width: calc(50% - (37px / 2));
  }
  /* line 179, ../scss/module/_education-center.scss */
  .box-education-wrapper .box-education:nth-child(-n+4) {
    margin-bottom: 37px;
  }
}
/* line 1, ../scss/module/_product-sticky.scss */
.product-sticky {
  position: fixed;
  top: -140px;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #FFFFFF;
  box-shadow: inset 0 -1px 0 0 #D9D9D9, 0 12px 24px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: top 0.3s ease-out;
  -moz-transition: top 0.3s ease-out;
  -ms-transition: top 0.3s ease-out;
  -o-transition: top 0.3s ease-out;
  transition: top 0.3s ease-out;
}
/* line 16, ../scss/module/_product-sticky.scss */
.product-sticky.active {
  top: 0;
}
/* line 20, ../scss/module/_product-sticky.scss */
.product-sticky .sticky-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  max-width: calc(1260px + 264px);
  padding: 8px 30px;
  margin: 0 auto;
}
/* line 30, ../scss/module/_product-sticky.scss */
.product-sticky figure {
  margin-right: 36px;
}
/* line 34, ../scss/module/_product-sticky.scss */
.product-sticky .product-main-desc {
  -webkit-flex: 1;
  flex: 1;
  padding-right: 24px;
}
/* line 38, ../scss/module/_product-sticky.scss */
.product-sticky .product-main-desc h3 {
  color: #40434B;
}
/* line 43, ../scss/module/_product-sticky.scss */
.product-sticky .product-main-desc .yotpo a {
  color: #777777 !important;
  font-style: italic !important;
  font-size: 12px;
  margin-left: 4px;
}
/* line 88, ../scss/module/_product-sticky.scss */
.product-sticky .price-box {
  text-align: right;
  padding: 0 24px;
  margin: 0;
}
/* line 93, ../scss/module/_product-sticky.scss */
.product-sticky .price-box .price-as-configured {
  color: #336699;
  font-size: 24px;
  font-weight: 600;
}
/* line 98, ../scss/module/_product-sticky.scss */
.product-sticky .price-box .price-as-configured .price-label {
  display: none;
}
/* line 102, ../scss/module/_product-sticky.scss */
.product-sticky .price-box .price-as-configured .price {
  font-size: inherit;
  color: inherit !important;
}
/* line 108, ../scss/module/_product-sticky.scss */
.product-sticky .price-box .price-msrp {
  color: #E13700;
  text-decoration: line-through;
}
/* line 112, ../scss/module/_product-sticky.scss */
.product-sticky .price-box .price-msrp .price {
  color: inherit;
  font-size: 14px;
}
/* line 117, ../scss/module/_product-sticky.scss */
.product-sticky .price-box .price-msrp .percent {
  display: none;
}
/* line 123, ../scss/module/_product-sticky.scss */
.product-sticky .to-cart-container {
  padding-left: 24px;
  border-left: 1px solid 	#D9D9D9;
}
/* line 127, ../scss/module/_product-sticky.scss */
.product-sticky .to-cart-container button {
  padding: 9px 48px;
}

@media (max-width: 1024px) {
  /* line 137, ../scss/module/_product-sticky.scss */
  .product-sticky {
    display: none !important;
  }
}
/* line 3, ../scss/module/_popularproducts.scss */
.popular.home-block {
  margin-bottom: 0px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 3, ../scss/module/_popularproducts.scss */
  .popular.home-block {
    margin-bottom: 15px;
  }
}
/* line 12, ../scss/module/_popularproducts.scss */
.popular .view-more.mobile {
  font-size: 12px;
  font-weight: 700;
  display: none;
  justify-content: flex-end;
  padding: 9px 24px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #40434b;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 12, ../scss/module/_popularproducts.scss */
  .popular .view-more.mobile {
    display: block;
  }
}
/* line 35, ../scss/module/_popularproducts.scss */
.popular .view-more.mobile:hover {
  background-color: #f6f6f6;
}
/* line 39, ../scss/module/_popularproducts.scss */
.popular .popular-products {
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 39, ../scss/module/_popularproducts.scss */
  .popular .popular-products {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (min-width: 768px) {
  /* line 39, ../scss/module/_popularproducts.scss */
  .popular .popular-products {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: -18px;
    margin-right: -18px;
  }
}
/* line 56, ../scss/module/_popularproducts.scss */
.popular .popular-products .product {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 56, ../scss/module/_popularproducts.scss */
  .popular .popular-products .product {
    -webkit-flex: 33%;
    flex: 33%;
    margin: 0 8px 16px;
  }
  /* line 67, ../scss/module/_popularproducts.scss */
  .popular .popular-products .product:nth-child(n+3) {
    display: none;
  }
}
@media (min-width: 768px) {
  /* line 56, ../scss/module/_popularproducts.scss */
  .popular .popular-products .product {
    -webkit-flex: 1 0 25%;
    flex: 1 0 25%;
    padding: 0 18px;
    max-width: 25%;
  }
}
/* line 79, ../scss/module/_popularproducts.scss */
.popular .popular-products .product:last-of-type {
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 79, ../scss/module/_popularproducts.scss */
  .popular .popular-products .product:last-of-type {
    margin: 0 5px 40px;
  }
}
/* line 89, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .headline {
  width: 100%;
}
/* line 93, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .brand {
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: none;
  color: #777777;
}
/* line 105, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .recommendation {
  font-size: 12px;
  font-weight: 100;
  font-style: italic;
  display: inline-block;
  padding: 6px;
  text-transform: none;
  color: #40434b;
  border-radius: 2px;
  background: #f6f6f6;
}
/* line 122, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-img {
  display: block;
  width: 100%;
  line-height: 0;
  text-align: center;
  position: relative;
}
/* line 132, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-img .open-popup-link-upsell {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px;
  text-align: center;
}
/* line 140, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-img img {
  display: inline-block;
  width: 100%;
  height: 100%;
  max-width: 240px;
}
/* line 149, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price {
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: #369;
  margin-bottom: 8px;
  margin-top: auto;
  width: 100%;
}
/* line 160, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .price-box {
  text-align: left;
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  float: left;
  color: #369 !important;
  font-weight: 600;
  margin-bottom: 8px;
  -webkit-flex-direction: row;
  flex-direction: row;
}
/* line 173, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .price-box.bundle-price {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 177, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .price-box.bundle-price .price-from {
  order: 1;
}
/* line 180, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .price-box.bundle-price .price-from .price {
  color: #E13700;
  text-decoration: line-through;
}
/* line 186, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .price-box.bundle-price .price-to {
  margin-right: 8px;
}
/* line 189, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .price-box.bundle-price .price-to .price-label {
  font-size: 14px;
}
/* line 197, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .regular-price-container .price-label {
  color: #f00;
}
/* line 200, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .regular-price-container .regular-price {
  font-weight: normal;
  color: #f00;
}
/* line 205, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .regular-price-container .regular-price.strike {
  text-decoration: line-through;
}
/* line 209, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-price .regular-price-container .regular-price .price {
  color: #f00;
}
/* line 216, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 216, ../scss/module/_popularproducts.scss */
  .popular .popular-products .product .product-title {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  /* line 216, ../scss/module/_popularproducts.scss */
  .popular .popular-products .product .product-title {
    margin-bottom: 14px;
  }
}
/* line 232, ../scss/module/_popularproducts.scss */
.popular .popular-products .product .product-title a {
  color: #40434b;
}

/* line 247, ../scss/module/_popularproducts.scss */
.catalog-product-view .popular.who-viewed {
  position: relative;
  padding-top: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 247, ../scss/module/_popularproducts.scss */
  .catalog-product-view .popular.who-viewed {
    padding-top: 24px;
  }
}
/* line 257, ../scss/module/_popularproducts.scss */
.catalog-product-view .popular.who-viewed:before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #D9D9D9;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 276, ../scss/module/_popularproducts.scss */
.checkout-cart-index .main .popular.who-bought {
  position: relative;
  padding-top: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 276, ../scss/module/_popularproducts.scss */
  .checkout-cart-index .main .popular.who-bought {
    padding-top: 24px;
  }
}
/* line 286, ../scss/module/_popularproducts.scss */
.checkout-cart-index .main .popular.who-bought:before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #D9D9D9;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 306, ../scss/module/_popularproducts.scss */
.cms-index-index .main .home-block .headline-block {
  margin-bottom: 15px;
  margin-top: -15px;
  text-align: center;
}
/* line 307, ../scss/module/_popularproducts.scss */
.cms-index-index .main .home-block .headline-block span {
  padding-left: 200px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 307, ../scss/module/_popularproducts.scss */
  .cms-index-index .main .home-block .headline-block span {
    padding-left: 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 306, ../scss/module/_popularproducts.scss */
  .cms-index-index .main .home-block .headline-block {
    margin: 0 0 20px 0;
    padding: 0;
  }
}

/* line 325, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper {
  margin-bottom: 40px;
}
/* line 327, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper .headline-block {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
/* line 331, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper .headline-block span {
  padding-left: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 327, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper .headline-block {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 325, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
/* line 343, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper .popular-categories {
  display: -webkit-flex;
  display: flex;
  padding: 0 15px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 343, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper .popular-categories {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (min-width: 768px) {
  /* line 343, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper .popular-categories {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: -18px;
    margin-right: -18px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 343, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper .popular-categories {
    padding: 0;
  }
}
/* line 361, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper .popular-categories .category {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 361, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper .popular-categories .category {
    -webkit-flex: 33%;
    flex: 33%;
    margin: 0 8px 16px;
  }
}
@media (min-width: 768px) {
  /* line 361, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper .popular-categories .category {
    -webkit-flex: 1 0 25%;
    flex: 1 0 25%;
    padding: 0 5px;
    max-width: 25%;
  }
}
/* line 377, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper .popular-categories .category img {
  max-width: 100%;
}
/* line 380, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper .popular-categories .category .category-title {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
/* line 387, ../scss/module/_popularproducts.scss */
.popular-categories-wrapper .popular-categories .category .category-title a {
  color: #FFFFFF;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: bold;
  line-height: 33px;
  text-align: center;
  text-transform: uppercase;
  background: #3366999e;
  border: 2px solid white;
  padding: 7px;
  background-color: rgba(51, 102, 153, 0.6);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 387, ../scss/module/_popularproducts.scss */
  .popular-categories-wrapper .popular-categories .category .category-title a {
    font-size: 18px;
  }
}

/* line 410, ../scss/module/_popularproducts.scss */
.catalog-category-view .home-block.popular {
  position: relative;
  max-width: 1260px;
  margin: 0 auto 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 410, ../scss/module/_popularproducts.scss */
  .catalog-category-view .home-block.popular {
    margin-bottom: 24px;
  }
}

/* line 1, ../scss/module/_breadcrumb.scss */
.breadcrumbs {
  margin-top: 18px;
  margin-bottom: 0;
}
/* line 5, ../scss/module/_breadcrumb.scss */
.breadcrumbs ul li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  line-height: 22px;
}
/* line 10, ../scss/module/_breadcrumb.scss */
.breadcrumbs ul li span {
  height: 22px;
}

/* line 1, ../scss/module/_frequently-bought-together.scss */
.frequently-block {
  border: 1px solid #D9D9D9;
  padding: 24px;
  margin-bottom: 48px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_frequently-bought-together.scss */
  .frequently-block {
    margin-bottom: 16px;
  }
}
/* line 12, ../scss/module/_frequently-bought-together.scss */
.frequently-block h2 {
  text-transform: uppercase;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 12, ../scss/module/_frequently-bought-together.scss */
  .frequently-block h2 {
    font-size: 14px;
  }
}
/* line 24, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content table td {
  float: none !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 29, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content > table {
    width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 36, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content > table > tbody > tr > td {
    display: block;
  }
}
/* line 42, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content > table > tbody > tr > td table tbody tr {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* line 46, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content > table > tbody > tr > td table tbody tr .fbt-plus {
  position: relative;
  min-width: 96px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 46, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content > table > tbody > tr > td table tbody tr .fbt-plus {
    min-width: 24px;
  }
}
/* line 55, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content > table > tbody > tr > td table tbody tr .fbt-plus span {
  position: absolute;
  top: 34%;
}
/* line 64, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content > ol {
  display: none;
}
/* line 68, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content .fbt-product-wrapper {
  padding: 20px;
  height: auto !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 68, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content .fbt-product-wrapper {
    padding: 9px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 77, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content .fbt-product-wrapper img {
    width: 61px;
  }
}
/* line 87, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content .fbt-plus span {
  font-size: 27px;
  color: #ffffff;
  background-color: #012D5B;
  width: 32px;
  height: 32px;
  line-height: 1em;
  display: block;
  text-align: center;
  border-radius: 50%;
  margin: 0 32px;
  /*padding: 4px 9px;*/
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 87, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content .fbt-plus span {
    margin: 0;
    font-size: 19px;
    width: 24px;
    height: 24px;
    line-height: 20px;
  }
}
/* line 112, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content #__bt_totalPriceTD > * {
  margin-left: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 112, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content #__bt_totalPriceTD > * {
    margin-left: 0;
    width: 100%;
  }
}
/* line 122, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content #__bt_totalPriceTD table {
  margin-bottom: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 122, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content #__bt_totalPriceTD table {
    margin-bottom: 12px;
  }
}
/* line 130, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content #__bt_totalPriceTD table tbody {
  font-size: 18px;
  color: #336699;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 130, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content #__bt_totalPriceTD table tbody {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 140, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content #__bt_totalPriceTD table td {
    display: inline-block;
  }
}
/* line 147, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content #__bt_totalPriceTD table .price {
  font-weight: 700;
  color: #336699;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 147, ../scss/module/_frequently-bought-together.scss */
  .frequently-block .content #__bt_totalPriceTD table .price {
    margin-left: 4px;
  }
}
/* line 159, ../scss/module/_frequently-bought-together.scss */
.frequently-block .content .form-button {
  padding: 9px 48px;
}

/* line 2, ../scss/module/_find-microscope.scss */
.widget .find-microscope {
  min-width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* line 10, ../scss/module/_find-microscope.scss */
.find-microscope {
  position: relative;
  min-height: 305px;
  margin: -24px 0 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 10, ../scss/module/_find-microscope.scss */
  .find-microscope {
    margin: 0 0 24px;
    min-height: 230px;
    background-color: #012D5B;
  }
}
/* line 24, ../scss/module/_find-microscope.scss */
.find-microscope hgroup {
  position: relative;
  z-index: 3;
  -webkit-transform: translateY(55%);
  -moz-transform: translateY(55%);
  -ms-transform: translateY(55%);
  -o-transform: translateY(55%);
  transform: translateY(55%);
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 24, ../scss/module/_find-microscope.scss */
  .find-microscope hgroup {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  /* line 24, ../scss/module/_find-microscope.scss */
  .find-microscope hgroup {
    padding: 2% 9%;
    width: 780px;
  }
}
/* line 42, ../scss/module/_find-microscope.scss */
.find-microscope hgroup h1,
.find-microscope hgroup p {
  margin: 0 0 8px 0;
  color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 42, ../scss/module/_find-microscope.scss */
  .find-microscope hgroup h1,
  .find-microscope hgroup p {
    max-width: 70%;
  }
}
/* line 54, ../scss/module/_find-microscope.scss */
.find-microscope hgroup h1 {
  text-align: center;
}
@media (min-width: 768px) {
  /* line 54, ../scss/module/_find-microscope.scss */
  .find-microscope hgroup h1 {
    font-size: 32px;
  }
}
/* line 62, ../scss/module/_find-microscope.scss */
.find-microscope hgroup a.button, .find-microscope hgroup .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .find-microscope hgroup a {
  margin: 0 auto;
  display: block;
  width: 190px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 62, ../scss/module/_find-microscope.scss */
  .find-microscope hgroup a.button, .find-microscope hgroup .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .find-microscope hgroup a {
    margin-left: 15px;
  }
}
/* line 71, ../scss/module/_find-microscope.scss */
.find-microscope hgroup p {
  font-size: 12px;
  margin: 0 0 16px 0;
  opacity: 0.8;
}
@media (min-width: 768px) {
  /* line 71, ../scss/module/_find-microscope.scss */
  .find-microscope hgroup p {
    font-size: 14px;
    margin: 0 0 24px 0;
  }
}
/* line 85, ../scss/module/_find-microscope.scss */
.find-microscope .wrapper {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 15px;
  background-color: transparent;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 85, ../scss/module/_find-microscope.scss */
  .find-microscope .wrapper {
    min-height: auto;
    background: transparent;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 100;
    position: absolute;
  }
}
/* line 105, ../scss/module/_find-microscope.scss */
.find-microscope:before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100%;
  min-height: 305px;
  content: '';
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../images/find.png) center center no-repeat;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 105, ../scss/module/_find-microscope.scss */
  .find-microscope:before {
    background: url(../images/find_mobile.png) center center no-repeat;
    background-size: contain;
    background-position: right;
    min-height: 230px;
  }
}
/* line 129, ../scss/module/_find-microscope.scss */
.find-microscope:after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 256px;
  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #012d5b;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 129, ../scss/module/_find-microscope.scss */
  .find-microscope:after {
    display: none;
  }
}

/* line 3, ../scss/module/_popups.scss */
.mfp-content .white-popup {
  position: relative;
  background: #FFF;
  max-width: 858px;
  margin: 5vh auto;
}
/* line 10, ../scss/module/_popups.scss */
.mfp-content .popup-head {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  background-color: #F6F6F6;
  padding: 16px;
}
/* line 18, ../scss/module/_popups.scss */
.mfp-content .main-content {
  padding: 24px 36px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 18, ../scss/module/_popups.scss */
  .mfp-content .main-content {
    padding: 15px;
  }
}
/* line 26, ../scss/module/_popups.scss */
.mfp-content .main-content .product-image {
  float: left;
}
/* line 30, ../scss/module/_popups.scss */
.mfp-content .main-content .main-info {
  width: calc(100% - 128px);
  float: right;
  padding: 14px 24px;
}
/* line 36, ../scss/module/_popups.scss */
.mfp-content .main-content h3 {
  margin-bottom: 16px;
}
/* line 39, ../scss/module/_popups.scss */
.mfp-content .main-content h3 a {
  color: #40434B;
}
/* line 44, ../scss/module/_popups.scss */
.mfp-content .main-content .qty {
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}
/* line 50, ../scss/module/_popups.scss */
.mfp-content .main-content .cart-price {
  font-weight: 700;
  font-size: 18px;
  color: #336699;
  display: block;
}
/* line 58, ../scss/module/_popups.scss */
.mfp-content .action-block {
  padding: 24px 36px;
  background-color: #F6F6F6;
  text-align: right;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 58, ../scss/module/_popups.scss */
  .mfp-content .action-block {
    padding: 15px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 68, ../scss/module/_popups.scss */
  .mfp-content .action-block .button, .mfp-content .action-block .klevuResultsBlock .klevuSuggestionHeading a, .klevuResultsBlock .klevuSuggestionHeading .mfp-content .action-block a {
    display: block;
  }
}
/* line 74, ../scss/module/_popups.scss */
.mfp-content .action-block .button:first-child, .mfp-content .action-block .klevuResultsBlock .klevuSuggestionHeading a:first-child, .klevuResultsBlock .klevuSuggestionHeading .mfp-content .action-block a:first-child {
  /*float: left;*/
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 74, ../scss/module/_popups.scss */
  .mfp-content .action-block .button:first-child, .mfp-content .action-block .klevuResultsBlock .klevuSuggestionHeading a:first-child, .klevuResultsBlock .klevuSuggestionHeading .mfp-content .action-block a:first-child {
    float: none;
  }
}
/* line 81, ../scss/module/_popups.scss */
.mfp-content .action-block .button:last-child, .mfp-content .action-block .klevuResultsBlock .klevuSuggestionHeading a:last-child, .klevuResultsBlock .klevuSuggestionHeading .mfp-content .action-block a:last-child {
  float: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 81, ../scss/module/_popups.scss */
  .mfp-content .action-block .button:last-child, .mfp-content .action-block .klevuResultsBlock .klevuSuggestionHeading a:last-child, .klevuResultsBlock .klevuSuggestionHeading .mfp-content .action-block a:last-child {
    float: none;
    margin-top: 12px;
    margin-left: 0;
  }
}
/* line 94, ../scss/module/_popups.scss */
.mfp-content .home-block {
  padding: 24px 36px;
  margin: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 94, ../scss/module/_popups.scss */
  .mfp-content .home-block {
    padding: 15px;
  }
}
/* line 103, ../scss/module/_popups.scss */
.mfp-content .home-block:after {
  display: none;
}
/* line 107, ../scss/module/_popups.scss */
.mfp-content .home-block h1 {
  text-align: center;
}

/* line 5, ../scss/module/_yotpo-reviews.scss */
.products-grid .yotpo .yotpo-bottomline,
.products-list .yotpo .yotpo-bottomline,
.popular-products .yotpo .yotpo-bottomline {
  float: right;
}
/* line 8, ../scss/module/_yotpo-reviews.scss */
.products-grid .yotpo .yotpo-bottomline .text-m,
.products-list .yotpo .yotpo-bottomline .text-m,
.popular-products .yotpo .yotpo-bottomline .text-m {
  display: none;
}
/* line 15, ../scss/module/_yotpo-reviews.scss */
.products-grid .headline-items-container .brand,
.products-list .headline-items-container .brand,
.popular-products .headline-items-container .brand {
  float: left;
}
/* line 19, ../scss/module/_yotpo-reviews.scss */
.products-grid .headline-items-container > .yotpo,
.products-list .headline-items-container > .yotpo,
.popular-products .headline-items-container > .yotpo {
  float: right;
  clear: none;
  margin: 10px 0;
}

/* line 27, ../scss/module/_yotpo-reviews.scss */
.yotpo-nav-content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/* line 31, ../scss/module/_yotpo-reviews.scss */
.yotpo-nav-content .yotpo-reviews {
  order: 1;
}
/* line 35, ../scss/module/_yotpo-reviews.scss */
.yotpo-nav-content h2 {
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 35, ../scss/module/_yotpo-reviews.scss */
  .yotpo-nav-content h2 {
    margin-bottom: 16px;
  }
}

/* line 46, ../scss/module/_yotpo-reviews.scss */
#yotpo_testimonials_btn {
  display: none !important;
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_slick-slider.scss */
  .slick-slider {
    margin-bottom: 24px;
  }
}
/* line 7, ../scss/module/_slick-slider.scss */
.slick-slider .slick-list {
  line-height: 0;
}

/* line 1, ../scss/module/_partners.scss */
.partner-container {
  margin: 0 0 48px 0;
  padding: 20px 0 30px;
  background: #f6f6f6;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_partners.scss */
  .partner-container {
    display: none;
  }
}
/* line 13, ../scss/module/_partners.scss */
.partner-container .headline {
  font-size: 10px;
  display: block;
  padding: 0 0 10px 0;
  text-align: center;
  color: #999;
}
/* line 26, ../scss/module/_partners.scss */
.partner-container .partners {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
/* line 31, ../scss/module/_partners.scss */
.partner-container .partners .partner {
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
}
/* line 36, ../scss/module/_partners.scss */
.partner-container .partners .partner img {
  display: inline-block;
}

/* line 45, ../scss/module/_partners.scss */
.onestepcheckout-index-index .partner-container {
  margin-bottom: 10px;
}

/* line 50, ../scss/module/_partners.scss */
.cms-index-index .partner-container {
  margin-top: 40px;
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_testimonials.scss */
  .testimonial-container {
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  /* line 9, ../scss/module/_testimonials.scss */
  .testimonial-container:after {
    content: '';
    position: absolute;
    bottom: 0;
    min-width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
    background-color: #D9D9D9;
  }
}
/* line 21, ../scss/module/_testimonials.scss */
.testimonial-container .view-more {
  display: none !important;
}

/* line 26, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) {
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 26, ../scss/module/_testimonials.scss */
  .testimonials:not(.yotpo) {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
}
/* line 36, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial {
  -webkit-flex: 1;
  flex: 1;
  margin: 0 40px 0 0;
  padding: 20px;
  background: #f6f6f6;
}
/* line 38, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .stars-logo-block {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 10px;
}
/* line 43, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .stars-logo-block .review-stars {
  width: 30%;
  margin-bottom: 0;
  align-self: center;
}
/* line 48, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .stars-logo-block .testimonial-logo {
  width: 70%;
  padding: 5px;
}
/* line 51, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .stars-logo-block .testimonial-logo img {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 36, ../scss/module/_testimonials.scss */
  .testimonials:not(.yotpo) .testimonial {
    display: none;
    margin: 0 0 16px 0;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 71, ../scss/module/_testimonials.scss */
  .testimonials:not(.yotpo) .testimonial:first-of-type {
    display: block;
  }
}
/* line 79, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial:last-of-type {
  margin: 0;
}
/* line 84, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .bio {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 84, ../scss/module/_testimonials.scss */
  .testimonials:not(.yotpo) .testimonial .bio {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
/* line 95, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .bio h1 {
  font-size: 14px;
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 95, ../scss/module/_testimonials.scss */
  .testimonials:not(.yotpo) .testimonial .bio h1 {
    margin-bottom: 6px;
  }
}
/* line 107, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .bio h2 {
  padding: 3px;
  margin: 0 10px;
  background: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 107, ../scss/module/_testimonials.scss */
  .testimonials:not(.yotpo) .testimonial .bio h2 {
    margin: 0 0 14px 0;
  }
}
/* line 120, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .person-img {
  text-align: center;
}
/* line 123, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .person-img img {
  display: inline-block;
  border-radius: 100%;
}
/* line 130, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  text-transform: none;
  color: #40434b;
}
/* line 139, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial .position {
  font-size: 12px;
  font-weight: 100;
  margin: 0 0 10px 0;
  text-transform: none;
  color: #70747e;
}
/* line 150, ../scss/module/_testimonials.scss */
.testimonials:not(.yotpo) .testimonial blockquote p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #70747e;
}

/* line 1, ../scss/module/_aboutus.scss */
.aboutus {
  margin: 16px 0 60px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_aboutus.scss */
  .aboutus {
    margin: 0 0 24px;
  }
}
/* line 9, ../scss/module/_aboutus.scss */
.aboutus .about-section {
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 9, ../scss/module/_aboutus.scss */
  .aboutus .about-section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  /* line 18, ../scss/module/_aboutus.scss */
  .aboutus .about-section .text {
    padding-right: 18px;
  }
}
/* line 25, ../scss/module/_aboutus.scss */
.aboutus .about-section .img {
  position: relative;
}
/* line 29, ../scss/module/_aboutus.scss */
.aboutus .about-section .img img {
  width: 100%;
}
/* line 35, ../scss/module/_aboutus.scss */
.aboutus .about-section > div {
  -webkit-flex: 1;
  flex: 1;
}
/* line 39, ../scss/module/_aboutus.scss */
.aboutus .about-section > div h1 {
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  color: #40434b;
}
/* line 51, ../scss/module/_aboutus.scss */
.aboutus .about-section > div ul {
  margin: 0 0 0 17px;
  list-style: disc;
}
/* line 57, ../scss/module/_aboutus.scss */
.aboutus .about-section > div ul li {
  padding: 0 0 10px 0;
}
/* line 63, ../scss/module/_aboutus.scss */
.aboutus .about-section > div p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 15px 0;
  color: #777777;
}

/* line 1, ../scss/module/_onestepcheckout.scss */
.onestepcheckout-index .col-main {
  margin-top: 10px;
}

/* line 5, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form {
  margin-top: 10px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 5, ../scss/module/_onestepcheckout.scss */
  #onestepcheckout-form {
    margin-top: 16px;
  }
}
/* line 13, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form .group-select {
  padding: 0 !important;
}
/* line 17, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form .page-title h1 {
  border: none;
}
/* line 21, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form #onestepcheckout-login-link {
  font-weight: 700;
}
/* line 28, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer .input-box.input-password, #onestepcheckout-form div.checkoutcontainer .input-box.input-email, #onestepcheckout-form div.checkoutcontainer .input-box.input-lastname, #onestepcheckout-form div.checkoutcontainer .input-box.input-firstname {
  width: calc(50% - 8px);
}
/* line 35, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer .input-box.input-lastname {
  float: right;
}
/* line 39, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer .input-box.input-postcode, #onestepcheckout-form div.checkoutcontainer .input-box.input-region {
  float: none;
  width: 100%;
}
/* line 45, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer .input-box.input-region {
  margin-bottom: 12px;
}
/* line 49, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer .input-box .input-text,
#onestepcheckout-form div.checkoutcontainer .input-box select {
  width: 100% !important;
}
/* line 56, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer .input-box label.required:after {
  display: none;
}
/* line 65, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer #billing_address .input-box.input-telephone {
  width: calc(50% - 8px);
  float: right;
}
/* line 69, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer #billing_address .input-box.wide-phone-field {
  width: 100%;
}
/* line 75, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer #billing_address > ul > li:first-child {
  padding: 0;
}
/* line 81, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer #shipping_address .shipping-address-title {
  color: #40434B !important;
  background-image: none !important;
  padding-left: 0 !important;
  font-family: "Open Sans", sans-serif;
  font-size: 24px !important;
  margin-bottom: 16px;
  text-transform: inherit;
}
/* line 91, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer #shipping_address .input-box.input-telephone {
  width: 100%;
}
/* line 98, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer #onestepcheckout-li-password .input-password:nth-child(2) {
  float: right;
}
/* line 103, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-form div.checkoutcontainer div.input-different-shipping {
  margin-top: 0;
}

/* line 109, ../scss/module/_onestepcheckout.scss */
div.onestepcheckout-summary {
  background-color: #f6f6f6;
  padding: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 109, ../scss/module/_onestepcheckout.scss */
  div.onestepcheckout-summary {
    padding: 16px;
  }
}

/* line 121, ../scss/module/_onestepcheckout.scss */
div.onestepcheckout-skin-magento .onestepcheckout-numbers {
  color: #40434B !important;
  background-image: none !important;
  padding-left: 0 !important;
  font-family: "Open Sans", sans-serif;
  font-size: 24px !important;
  margin-bottom: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 121, ../scss/module/_onestepcheckout.scss */
  div.onestepcheckout-skin-magento .onestepcheckout-numbers {
    font-size: 18px !important;
    margin-bottom: 0;
  }
}

/* line 138, ../scss/module/_onestepcheckout.scss */
div.onestepcheckout-threecolumns div.onestepcheckout-column-left,
div.onestepcheckout-threecolumns div.onestepcheckout-column-middle,
div.onestepcheckout-threecolumns div.onestepcheckout-column-right {
  background: #ffffff;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 138, ../scss/module/_onestepcheckout.scss */
  div.onestepcheckout-threecolumns div.onestepcheckout-column-left,
  div.onestepcheckout-threecolumns div.onestepcheckout-column-middle,
  div.onestepcheckout-threecolumns div.onestepcheckout-column-right {
    width: 100%;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  /* line 150, ../scss/module/_onestepcheckout.scss */
  div.onestepcheckout-threecolumns div.onestepcheckout-column-left {
    padding-right: 15px;
  }
}

/* line 159, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-login-popup {
  background-color: #ffffff;
}
/* line 162, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-login-popup h1 {
  color: #40434B;
}
/* line 166, ../scss/module/_onestepcheckout.scss */
#onestepcheckout-login-popup #onestepcheckout-forgot-password-link {
  font-weight: 700;
}

/* line 2, ../scss/module/_klevu.scss */
.klevu-fluid .klevu-searching-area-l2 {
  border: 4px solid #E6ECF3 !important;
  margin-top: 7px !important;
  margin-left: -3px !important;
  box-shadow: unset !important;
}

/* line 9, ../scss/module/_klevu.scss */
.klevu-pt-rs-hover {
  display: none !important;
}

/* line 13, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock {
  display: flex !important;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: 1px solid #E6ECF3 !important;
  padding: 28px 36px !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 13, ../scss/module/_klevu.scss */
  .klevuSuggestionsBlock {
    padding: 15px !important;
  }
}
/* line 24, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock > div {
  padding-right: 18px !important;
}
/* line 28, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock .klevuAutoSuggestion-l2 {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  -webkit-flex: 1;
  flex: 1;
}
/* line 33, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock .klevuAutoSuggestion-l2 .klevuSuggestionHeading {
  padding: 0 !important;
  margin: 0 0 12px !important;
}
/* line 37, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock .klevuAutoSuggestion-l2 .klevuSuggestionHeading .klevuHeadingText {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Open Sans", sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}
/* line 48, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock .klevuAutoSuggestion-l2 ul li:hover {
  background-color: transparent !important;
}
/* line 53, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock .klevuAutoSuggestion-l2 ul li:not(:last-child) a {
  margin-bottom: 12px !important;
}
/* line 58, ../scss/module/_klevu.scss */
.klevuSuggestionsBlock .klevuAutoSuggestion-l2 ul li a {
  padding: 0 !important;
  font-size: 12px !important;
  font-family: "Open Sans", sans-serif !important;
  color: #40434B !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

/* line 71, ../scss/module/_klevu.scss */
.klevuResultsBlock {
  padding: 28px 36px !important;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 71, ../scss/module/_klevu.scss */
  .klevuResultsBlock {
    padding: 15px !important;
  }
}
/* line 78, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSuggestionHeading {
  padding: 0 !important;
  margin: 0 0 24px !important;
}
/* line 84, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSuggestionHeading .klevuHeadingText {
  padding: 0 !important;
  margin: 0 !important;
  color: #40434B !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-family: "Open Sans", sans-serif !important;
  line-height: 36px !important;
}
/* line 95, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSuggestionHeading a {
  margin: 0 !important;
}
/* line 102, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul {
  display: flex !important;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  flex-direction: row;
  margin: 0 -8px;
}
/* line 108, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li {
  width: 25% !important;
  border-bottom: none !important;
  padding: 0 8px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 108, ../scss/module/_klevu.scss */
  .klevuResultsBlock .klevuSearchResults-l2 ul li {
    width: 50% !important;
  }
}
/* line 117, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li:hover {
  background-color: transparent !important;
}
/* line 121, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li a.klevu-result-box-l2 {
  display: flex !important;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0 !important;
  height: 100% !important;
}
/* line 128, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li .klevu-name-desc-l2 {
  float: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  flex: 1;
}
/* line 136, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li .klevu-name-desc-l2 .klevu-price-l2 {
  margin-top: auto;
}
/* line 141, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li .klevu-name-l2 {
  color: #40434B !important;
  font-size: 14px !important;
  margin-bottom: 12px !important;
}
/* line 147, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li .klevu-desc-l2 {
  display: none !important;
}
/* line 151, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 ul li .klevu-saleprice-l2 {
  color: #336699 !important;
  font-size: 14px !important;
}
/* line 158, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 .klevu-img-wrap-l2 {
  width: 100% !important;
  height: auto !important;
  border: 1px solid #D9D9D9;
  margin-bottom: 16px;
}
/* line 164, ../scss/module/_klevu.scss */
.klevuResultsBlock .klevuSearchResults-l2 .klevu-img-wrap-l2 img {
  max-height: 168px !important;
}

/* line 1, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container {
  background-color: #F5F7FA;
  padding: 64px 0 74px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_popular-blog-posts.scss */
  .blog-popular-container {
    padding: 9px 0 24px;
  }
}
/* line 10, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container h1 {
  font-size: 24px;
  margin-bottom: 14px;
}
/* line 15, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 -18px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 15, ../scss/module/_popular-blog-posts.scss */
  .blog-popular-container .blog-populars {
    margin: 0 -8px;
  }
}
/* line 26, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular {
  -webkit-flex: 1;
  flex: 1;
  margin: 0 18px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  background-color: #ffffff;
  padding-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 26, ../scss/module/_popular-blog-posts.scss */
  .blog-popular-container .blog-populars .blog-popular {
    margin: 0 8px;
    padding-bottom: 12px;
  }
  /* line 39, ../scss/module/_popular-blog-posts.scss */
  .blog-popular-container .blog-populars .blog-popular:nth-child(n+3) {
    display: none;
  }
}
/* line 44, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular > *:not(figure) {
  padding: 0 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 44, ../scss/module/_popular-blog-posts.scss */
  .blog-popular-container .blog-populars .blog-popular > *:not(figure) {
    padding: 0 12px;
  }
}
/* line 53, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular figure {
  max-height: 215px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 53, ../scss/module/_popular-blog-posts.scss */
  .blog-popular-container .blog-populars .blog-popular figure {
    margin-bottom: 12px;
  }
}
/* line 63, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* line 71, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular h4 a {
  color: #40434B;
  text-transform: uppercase;
}
/* line 77, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular .desc {
  margin-bottom: 14px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 77, ../scss/module/_popular-blog-posts.scss */
  .blog-popular-container .blog-populars .blog-popular .desc {
    margin-bottom: 8px;
  }
}
/* line 86, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular .date {
  margin-top: auto;
}
/* line 89, ../scss/module/_popular-blog-posts.scss */
.blog-popular-container .blog-populars .blog-popular .date span {
  background: #f6f6f6;
  font-style: italic;
  font-size: 12px;
  color: #40434B;
  font-family: "Open Sans", sans-serif;
  padding: 2px 4px;
  border-radius: 2px;
}

/* line 1, ../scss/module/_money-guarantee.scss */
.money-guarantee {
  text-align: center;
  border: 1px solid #D9D9D9;
  padding: 16px 24px;
  font-size: 12px;
  line-height: 14px;
  color: #40434B;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
/* line 12, ../scss/module/_money-guarantee.scss */
.money-guarantee svg {
  vertical-align: bottom;
  margin-right: 6px;
}

/* line 1, ../scss/module/_home-delivery.scss */
.home-delivery {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  flex-direction: row;
  max-width: 154px;
  margin-bottom: 16px;
}
/* line 9, ../scss/module/_home-delivery.scss */
.home-delivery figure {
  max-width: 27px;
}
/* line 12, ../scss/module/_home-delivery.scss */
.home-delivery figure img {
  width: 100%;
  margin-top: 4px;
}
/* line 18, ../scss/module/_home-delivery.scss */
.home-delivery .content {
  -webkit-flex: 1;
  flex: 1;
  font-size: 12px;
  text-align: left;
  padding-left: 8px;
  line-height: 28px;
  font-family: "Open Sans", sans-serif;
  color: #40434B;
}

/* line 7, ../scss/module/_rfp.scss */
.rfp-index-index .col-main, .rfp-index .col-main {
  margin-top: 5px;
}
/* line 11, ../scss/module/_rfp.scss */
.rfp-index-index .customer, .rfp-index .customer {
  padding: 20px 0;
}
/* line 14, ../scss/module/_rfp.scss */
.rfp-index-index .products, .rfp-index .products {
  padding: 20px 0;
}
/* line 17, ../scss/module/_rfp.scss */
.rfp-index-index .products .product-table th, .rfp-index-index .products .product-table td, .rfp-index .products .product-table th, .rfp-index .products .product-table td {
  padding: 7px;
}
/* line 23, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper, .rfp-index .rfp-right-part-wrapper {
  width: 33%;
  float: right;
  padding: 0 15px 0 20px;
}
/* line 27, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper .description-wrapper, .rfp-index .rfp-right-part-wrapper .description-wrapper {
  padding: 20px;
  line-height: 16px;
}
/* line 31, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper h2, .rfp-index .rfp-right-part-wrapper h2 {
  margin-bottom: 20px;
}
/* line 34, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper img, .rfp-index .rfp-right-part-wrapper img {
  max-width: 100%;
}
/* line 39, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper, .rfp-index .rfp-wrapper {
  float: left;
  width: 100%;
}
/* line 43, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .loader, .rfp-index .rfp-wrapper .loader {
  display: inline-block;
  width: 64px;
  height: 64px;
  position: absolute;
  left: calc(50% - 64px);
  top: 0;
}
/* line 51, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .loader div, .rfp-index .rfp-wrapper .loader div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  background: #000;
}
/* line 61, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .ms-searchcart, .rfp-index .rfp-wrapper .ms-searchcart {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: -2px;
}
/* line 67, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .product_sku_search_box, .rfp-index .rfp-wrapper .product_sku_search_box {
  width: 89%;
}
/* line 71, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .loader div:nth-child(1), .rfp-index .rfp-wrapper .loader div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
/* line 75, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .loader div:nth-child(2), .rfp-index .rfp-wrapper .loader div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
/* line 79, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .loader div:nth-child(3), .rfp-index .rfp-wrapper .loader div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
/* line 83, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .loader div:nth-child(4), .rfp-index .rfp-wrapper .loader div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
/* line 114, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper label, .rfp-index .rfp-wrapper label {
  color: #40434B;
  font-family: Helvetica;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* line 122, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .customer-info-wrapper, .rfp-index .rfp-wrapper .customer-info-wrapper {
  margin: 10px 0px 30px 0px;
}
/* line 126, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-items-wrapper, .rfp-index .rfp-wrapper .search-items-wrapper {
  position: relative;
  margin-bottom: 30px;
}
/* line 130, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-items-wrapper .search-items-title, .rfp-index .rfp-wrapper .search-items-wrapper .search-items-title {
  margin-bottom: 10px;
}
/* line 134, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-items-wrapper .search-results-wrapper, .rfp-index .rfp-wrapper .search-items-wrapper .search-results-wrapper {
  position: absolute;
  background: #fff;
  width: 100%;
  z-index: 100;
}
/* line 142, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .get-quote-info-wrapper, .rfp-index .rfp-wrapper .get-quote-info-wrapper {
  background-color: #F5F7FA;
  padding: 5px 25px 5px 25px;
}
/* line 146, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .get-quote-info-wrapper h1, .rfp-index .rfp-wrapper .get-quote-info-wrapper h1 {
  color: #40434B;
  font-family: "Open Sans";
  font-size: 36px;
  font-weight: bold;
  line-height: 49px;
  margin-bottom: 15px;
}
/* line 154, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .get-quote-info-wrapper .desc, .rfp-index .rfp-wrapper .get-quote-info-wrapper .desc {
  color: #4D5057;
  font-family: Helvetica;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 15px;
}
/* line 164, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .half-width .input-box, .rfp-index .rfp-wrapper .half-width .input-box {
  width: calc(50%);
  float: left;
}
/* line 166, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .half-width .input-box:first-child, .rfp-index .rfp-wrapper .half-width .input-box:first-child {
  padding-right: 25px;
}
/* line 173, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .input-text, .rfp-index .rfp-wrapper .input-text {
  width: 100%;
}
/* line 177, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper #product_sku_search_box, .rfp-index .rfp-wrapper #product_sku_search_box {
  width: 597px;
  height: 36px;
  margin-right: -1px;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 177, ../scss/module/_rfp.scss */
  .rfp-index-index .rfp-wrapper #product_sku_search_box, .rfp-index .rfp-wrapper #product_sku_search_box {
    width: 69%;
  }
}
/* line 187, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-results-content, .rfp-index .rfp-wrapper .search-results-content {
  border: 1px solid #D9D9D9cc;
}
/* line 190, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-results-content .search-item, .rfp-index .rfp-wrapper .search-results-content .search-item {
  padding: 20px;
  height: 106px;
  width: 100%;
  border-bottom: 1px solid #D9D9D9cc;
}
/* line 196, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-results-content .search-item.last, .rfp-index .rfp-wrapper .search-results-content .search-item.last {
  border-bottom: none;
}
/* line 200, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-results-content .search-item .item-image, .rfp-index .rfp-wrapper .search-results-content .search-item .item-image {
  float: left;
  width: 66px;
  border: 1px solid #D9D9D9cc;
}
/* line 205, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-results-content .search-item .item-name, .rfp-index .rfp-wrapper .search-results-content .search-item .item-name {
  float: left;
  display: inline-block;
  line-height: 66px;
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  /* line 205, ../scss/module/_rfp.scss */
  .rfp-index-index .rfp-wrapper .search-results-content .search-item .item-name, .rfp-index .rfp-wrapper .search-results-content .search-item .item-name {
    line-height: inherit;
    max-width: 50%;
  }
}
@media only screen and (max-width: 479px) {
  /* line 205, ../scss/module/_rfp.scss */
  .rfp-index-index .rfp-wrapper .search-results-content .search-item .item-name, .rfp-index .rfp-wrapper .search-results-content .search-item .item-name {
    max-width: 40%;
  }
}
/* line 218, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .search-results-content .search-item .add-item-btn, .rfp-index .rfp-wrapper .search-results-content .search-item .add-item-btn {
  float: right;
  margin-top: 16px;
}
/* line 225, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper, .rfp-index .rfp-wrapper .selected-products-wrapper {
  margin-top: 8px;
}
/* line 228, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .there-are-no-items, .rfp-index .rfp-wrapper .selected-products-wrapper .there-are-no-items {
  height: 48px;
  width: 100%;
  border: 1px solid #D9D9D9;
  background-color: #F6F6F6;
  text-align: center;
  padding: 13px 10px;
}
/* line 237, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item {
  height: 48px;
  width: 100%;
  border: 1px solid #D9D9D9;
  background-color: #F6F6F6;
  padding: 6px 10px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 768px) {
  /* line 237, ../scss/module/_rfp.scss */
  .rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item {
    height: 80px;
  }
}
/* line 248, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .item-name, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .item-name {
  float: left;
  color: #40434B;
  font-family: Helvetica;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  /* line 248, ../scss/module/_rfp.scss */
  .rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .item-name, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .item-name {
    width: 100%;
    text-align: center;
    float: none;
  }
}
/* line 262, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn {
  float: right;
  color: #40434B;
  font-family: Helvetica;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  border: none;
  background: none;
  position: relative;
  padding-left: 30px;
  padding-top: 10px;
}
/* line 275, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross {
  left: 0;
  top: 8px;
  position: absolute;
}
/* line 279, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:before, .rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:after, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:before, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 18px;
  width: 2px;
  background-color: #333;
}
/* line 287, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:before, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:before {
  transform: rotate(45deg);
}
/* line 290, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:after, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .remove-item-btn .cross:after {
  transform: rotate(-45deg);
}
/* line 296, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .separator, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .separator {
  float: right;
  border-right: 1px solid #D9D9D9cc;
  display: block;
  width: 10px;
  height: 32px;
  margin: 0 10px;
}
/* line 304, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block {
  float: right;
}
@media only screen and (max-width: 768px) {
  /* line 304, ../scss/module/_rfp.scss */
  .rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block {
    float: inherit;
    margin: 0 auto;
    width: 180px;
    margin-top: 8px;
  }
}
/* line 313, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block .qty-label, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block .qty-label {
  float: left;
  margin-right: 10px;
  margin-top: 6px;
  font-weight: bold;
  color: #40434B;
}
/* line 320, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block .qty-input, .rfp-index .rfp-wrapper .selected-products-wrapper .search-item .qty-block .qty-input {
  width: 36px;
  height: 32px;
}
/* line 330, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .shipping-wrapper .comments-input, .rfp-index .rfp-wrapper .shipping-wrapper .comments-input {
  width: 100%;
  max-width: 100%;
}
/* line 334, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .shipping-wrapper h3, .rfp-index .rfp-wrapper .shipping-wrapper h3 {
  color: #40434B;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
}
/* line 341, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .shipping-wrapper .checkbox-label, .rfp-index .rfp-wrapper .shipping-wrapper .checkbox-label {
  font-size: 12px;
  line-height: 14px;
  font-weight: normal;
  margin-left: 0;
  padding: 0;
  margin-top: 2px;
  cursor: pointer;
}
/* line 351, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .shipping-wrapper .shipping-information select, .rfp-index .rfp-wrapper .shipping-wrapper .shipping-information select {
  width: 100%;
}
/* line 357, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .comments-wrapper, .rfp-index .rfp-wrapper .comments-wrapper {
  margin-top: 10px;
  margin-bottom: 20px;
}
/* line 361, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .comments-wrapper label, .rfp-index .rfp-wrapper .comments-wrapper label {
  color: #40434B;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
}
/* line 369, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .comments-wrapper textarea, .rfp-index .rfp-wrapper .comments-wrapper textarea {
  max-width: 100%;
  height: 120px;
}
/* line 375, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .get-quote-btn, .rfp-index .rfp-wrapper .get-quote-btn {
  margin: 10px 0;
  background-color: #F06543;
  width: 35%;
  margin-bottom: 50px;
}
/* line 382, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-wrapper .cant-find-message, .rfp-index .rfp-wrapper .cant-find-message {
  font-weight: bold;
  margin-top: 10px;
  color: #40434B;
}
/* line 390, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper, .rfp-index .rfp-right-part-wrapper {
  margin-top: 20px;
  float: right;
  margin-left: 10px;
  width: 240px;
}
@media only screen and (max-width: 479px) {
  /* line 390, ../scss/module/_rfp.scss */
  .rfp-index-index .rfp-right-part-wrapper, .rfp-index .rfp-right-part-wrapper {
    width: 100%;
    clear: both;
  }
}
/* line 402, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper p, .rfp-index .rfp-right-part-wrapper p {
  text-align: center;
  font-size: 10px;
}
/* line 407, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper ul, .rfp-index .rfp-right-part-wrapper ul {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
/* line 412, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper ul li, .rfp-index .rfp-right-part-wrapper ul li {
  flex: 1;
  text-align: center;
  margin-bottom: 43px;
}
/* line 417, ../scss/module/_rfp.scss */
.rfp-index-index .rfp-right-part-wrapper ul li img, .rfp-index .rfp-right-part-wrapper ul li img {
  margin-left: auto;
  margin-right: auto;
}
/* line 425, ../scss/module/_rfp.scss */
.rfp-index-index #rfpForm, .rfp-index #rfpForm {
  float: left;
  width: 700px;
}
@media only screen and (max-width: 479px) {
  /* line 425, ../scss/module/_rfp.scss */
  .rfp-index-index #rfpForm, .rfp-index #rfpForm {
    width: 100%;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  /* line 1, ../scss/module/_selector.scss */
  .wizard-wrapper {
    padding: 0;
  }
}
/* line 7, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .title {
  background: #e6ecf3;
  padding: 10px 15px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
/* line 13, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .title span {
  margin-right: 15px;
  font-weight: bold;
}
/* line 17, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .title span.number {
  background: #387EB6;
  border-radius: 100%;
  font-size: 26px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  text-align: center;
  text-shadow: #333 1px 1px 3px;
}
/* line 30, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .title span.text {
  color: #40434B;
  font-size: 22px;
  margin: auto 0;
  font-weight: normal;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 30, ../scss/module/_selector.scss */
  .wizard-wrapper .step-1 .title span.text {
    line-height: normal;
    width: 73%;
    font-size: 1.3em;
  }
}
/* line 46, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row {
  padding: 25px 0;
  display: grid;
  grid-template-areas: ". selector-label selector-image1 selector-image2 selector-image3 .";
  grid-template-columns: 8fr 15fr 7fr 7fr 7fr 8fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  align-items: end;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 46, ../scss/module/_selector.scss */
  .wizard-wrapper .step-1 .selector-block__row {
    grid-template-areas: "selector-label selector-label selector-label" "selector-image1 selector-image2 selector-image3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media only screen and (max-width: 479px) {
  /* line 46, ../scss/module/_selector.scss */
  .wizard-wrapper .step-1 .selector-block__row {
    grid-template-areas: "selector-label" "selector-image1" "selector-image2" "selector-image3";
    grid-template-columns: 1fr;
    grid-template-rows: 4fr;
    justify-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 46, ../scss/module/_selector.scss */
  .wizard-wrapper .step-1 .selector-block__row {
    grid-template-areas: "selector-label selector-image1 selector-image2 selector-image3";
    grid-template-columns: 3fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
/* line 84, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row .label {
  grid-area: selector-label;
  font-size: 1.5em;
  text-align: right;
  align-self: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 84, ../scss/module/_selector.scss */
  .wizard-wrapper .step-1 .selector-block__row .label {
    text-align: center;
    font-size: 1.4em;
  }
}
/* line 96, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row .image__1 {
  grid-area: selector-image1;
}
/* line 99, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row .image__2 {
  grid-area: selector-image2;
}
/* line 102, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row .image__3 {
  grid-area: selector-image3;
}
/* line 107, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row .img-wrapper {
  cursor: pointer;
}
/* line 109, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row .img-wrapper img {
  border: solid 1px #d6d6d6;
  -webkit-box-shadow: #9f9f9f 1px 1px 3px;
  -moz-box-shadow: #9f9f9f 1px 1px 3px;
  box-shadow: #9f9f9f 1px 1px 3px;
  padding: 5px;
}
/* line 116, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block__row .img-wrapper .image-responsive {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
/* line 123, ../scss/module/_selector.scss */
.wizard-wrapper .step-1 .selector-block .separator {
  color: #336699;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
/* line 132, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer {
  position: relative;
}
/* line 134, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer .title {
  background: #e6ecf3;
  padding: 10px 15px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
/* line 140, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer .title span {
  margin-right: 15px;
  font-weight: bold;
}
/* line 144, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer .title span.number {
  background: #387EB6;
  border-radius: 100%;
  font-size: 26px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  text-align: center;
  text-shadow: #333 1px 1px 3px;
}
/* line 157, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer .title span.text {
  color: #40434B;
  font-size: 22px;
  margin: auto 0;
  font-weight: normal;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 157, ../scss/module/_selector.scss */
  .wizard-wrapper .step-2 .previous-answer .title span.text {
    line-height: normal;
    width: 65%;
    font-size: 1.3em;
  }
}
/* line 171, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer .back {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
/* line 177, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer .back .arrow-back {
  display: inline-block;
  vertical-align: middle;
}
/* line 181, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .previous-answer .back span {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  color: #336699;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 181, ../scss/module/_selector.scss */
  .wizard-wrapper .step-2 .previous-answer .back span {
    display: none;
  }
}
/* line 194, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .title {
  margin: 5px 0;
  background: #e6ecf3;
  padding: 10px 15px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
/* line 202, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .title span {
  margin-right: 15px;
  font-weight: bold;
}
/* line 206, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .title span.number {
  background: #387EB6;
  border-radius: 100%;
  font-size: 26px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  text-align: center;
  text-shadow: #333 1px 1px 3px;
}
/* line 220, ../scss/module/_selector.scss */
.wizard-wrapper .step-2 .title span.text {
  color: #40434B;
  font-size: 22px;
  margin: auto 0;
  font-weight: normal;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 220, ../scss/module/_selector.scss */
  .wizard-wrapper .step-2 .title span.text {
    line-height: normal;
    width: 65%;
    font-size: 1.3em;
  }
}
/* line 238, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row {
  padding: 25px 0;
  display: grid;
  grid-template-areas: ". selector-image1 selector-image2 selector-image3 selector-image4 .";
  grid-template-columns: 10fr 7fr 7fr 7fr 7fr 10fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  align-items: end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 238, ../scss/module/_selector.scss */
  .wizard-wrapper .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3 selector-image4";
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 238, ../scss/module/_selector.scss */
  .wizard-wrapper .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2" "selector-image3 selector-image4";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr;
    justify-items: center;
  }
}
/* line 264, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .label {
  font-size: 1.1em;
  padding: 5px 0;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 264, ../scss/module/_selector.scss */
  .wizard-wrapper .selector-block__row .label {
    text-align: center;
  }
}
/* line 273, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .image__1 {
  grid-area: selector-image1;
}
/* line 276, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .image__2 {
  grid-area: selector-image2;
}
/* line 279, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .image__3 {
  grid-area: selector-image3;
}
/* line 282, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .image__4 {
  grid-area: selector-image4;
}
/* line 286, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .img-wrapper {
  cursor: pointer;
}
/* line 288, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .img-wrapper img {
  border: solid 1px #d6d6d6;
  -webkit-box-shadow: #9f9f9f 1px 1px 3px;
  -moz-box-shadow: #9f9f9f 1px 1px 3px;
  box-shadow: #9f9f9f 1px 1px 3px;
  padding: 5px;
}
/* line 295, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block__row .img-wrapper .image-responsive {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
/* line 302, ../scss/module/_selector.scss */
.wizard-wrapper .selector-block .separator {
  color: #336699;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
/* line 310, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .title {
  margin: 5px 0;
  background: #e6ecf3;
  padding: 10px 15px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
/* line 318, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .title span {
  margin-right: 15px;
  font-weight: bold;
}
/* line 322, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .title span.number {
  background: #387EB6;
  border-radius: 100%;
  font-size: 26px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  text-align: center;
  text-shadow: #333 1px 1px 3px;
}
/* line 336, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .title span.text {
  color: #40434B;
  font-size: 22px;
  width: 76%;
  margin: auto 0;
  line-height: normal;
  font-weight: normal;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 336, ../scss/module/_selector.scss */
  .wizard-wrapper .answer-2-2 .title span.text {
    line-height: normal;
    width: 65%;
    font-size: 1.3em;
  }
}
/* line 354, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row {
  padding: 25px 0;
  display: grid;
  grid-template-areas: ". selector-image1 selector-image2 selector-image3 .";
  grid-template-columns: 14fr 7fr 7fr 7fr 14fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  align-items: end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 354, ../scss/module/_selector.scss */
  .wizard-wrapper .answer-2-2 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 354, ../scss/module/_selector.scss */
  .wizard-wrapper .answer-2-2 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media only screen and (max-width: 479px) {
  /* line 354, ../scss/module/_selector.scss */
  .wizard-wrapper .answer-2-2 .selector-block__row {
    grid-template-areas: "selector-image1" "selector-image2" "selector-image3";
    grid-template-columns: 1fr;
    grid-template-rows: 3fr;
    justify-items: center;
  }
}
/* line 389, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row .label {
  font-size: 1.1em;
  padding: 5px 0;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 389, ../scss/module/_selector.scss */
  .wizard-wrapper .answer-2-2 .selector-block__row .label {
    text-align: center;
  }
}
/* line 398, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row .image__1 {
  grid-area: selector-image1;
}
/* line 401, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row .image__2 {
  grid-area: selector-image2;
}
/* line 404, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row .image__3 {
  grid-area: selector-image3;
}
/* line 408, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row .img-wrapper {
  cursor: pointer;
}
/* line 410, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row .img-wrapper img {
  border: solid 1px #d6d6d6;
  -webkit-box-shadow: #9f9f9f 1px 1px 3px;
  -moz-box-shadow: #9f9f9f 1px 1px 3px;
  box-shadow: #9f9f9f 1px 1px 3px;
  padding: 5px;
}
/* line 417, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block__row .img-wrapper .image-responsive {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
/* line 424, ../scss/module/_selector.scss */
.wizard-wrapper .answer-2-2 .selector-block .separator {
  color: #336699;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
/* line 433, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer {
  position: relative;
}
/* line 435, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer .title {
  background: #e6ecf3;
  padding: 10px 15px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
/* line 441, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer .title span {
  margin-right: 15px;
  font-weight: bold;
}
/* line 445, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer .title span.number {
  background: #387EB6;
  border-radius: 100%;
  font-size: 26px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  text-align: center;
  text-shadow: #333 1px 1px 3px;
}
/* line 458, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer .title span.text {
  color: #40434B;
  font-size: 22px;
  width: 75%;
  margin: auto 0;
  font-weight: normal;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 458, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .previous-answer .title span.text {
    line-height: normal;
    width: 65%;
    font-size: 1.3em;
  }
}
/* line 473, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer .back {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
/* line 479, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer .back .arrow-back {
  display: inline-block;
  vertical-align: middle;
}
/* line 483, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .previous-answer .back span {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  color: #336699;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 483, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .previous-answer .back span {
    display: none;
  }
}
/* line 496, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .title {
  margin: 5px 0;
  background: #e6ecf3;
  padding: 10px 15px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
}
/* line 504, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .title span {
  margin-right: 15px;
  font-weight: bold;
}
/* line 508, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .title span.number {
  background: #387EB6;
  border-radius: 100%;
  font-size: 26px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #fff;
  text-align: center;
  text-shadow: #333 1px 1px 3px;
}
/* line 522, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .title span.text {
  color: #40434B;
  font-size: 22px;
  margin: auto 0;
  font-weight: normal;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 522, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .title span.text {
    line-height: normal;
    width: 65%;
    font-size: 1.3em;
  }
}
/* line 538, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row {
  padding: 25px 0;
  display: grid;
  grid-template-areas: ". selector-image1 selector-image2 selector-image3 .";
  grid-template-columns: 14fr 7fr 7fr 7fr 14fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  align-items: end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 538, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 538, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media only screen and (max-width: 479px) {
  /* line 538, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .selector-block__row {
    grid-template-areas: "selector-image1" "selector-image2" "selector-image3";
    grid-template-columns: 1fr;
    grid-template-rows: 3fr;
    justify-items: center;
  }
}
/* line 573, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .label {
  font-size: 1.1em;
  padding: 5px 0;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 573, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .selector-block__row .label {
    text-align: center;
  }
}
/* line 582, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .image__1 {
  grid-area: selector-image1;
}
/* line 585, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .image__2 {
  grid-area: selector-image2;
}
/* line 588, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .image__3 {
  grid-area: selector-image3;
}
/* line 592, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .img-wrapper {
  cursor: pointer;
}
/* line 594, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .img-wrapper img {
  border: solid 1px #d6d6d6;
  -webkit-box-shadow: #9f9f9f 1px 1px 3px;
  -moz-box-shadow: #9f9f9f 1px 1px 3px;
  box-shadow: #9f9f9f 1px 1px 3px;
  padding: 5px;
}
/* line 601, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .img-wrapper .image-responsive {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
/* line 608, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block .separator {
  color: #336699;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
/* line 617, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-3 .title.text {
  color: #40434B;
  font-size: 22px;
  width: 75%;
  margin: auto 0;
  font-weight: normal;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 617, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-2-3 .title.text {
    line-height: normal;
    width: 65%;
    font-size: 1.3em;
  }
}
/* line 634, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row {
  padding: 25px 0;
  display: grid;
  grid-template-areas: ". selector-image1 selector-image2 .";
  grid-template-columns: 14fr 7fr 7fr 14fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  align-items: end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 634, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .selector-block__row {
    grid-template-areas: ". selector-image1 selector-image2 .";
    grid-template-columns: 10fr 7fr 7fr 10fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 634, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
/* line 658, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .label {
  font-size: 1.1em;
  padding: 5px 0;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 658, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .selector-block__row .label {
    text-align: center;
  }
}
/* line 668, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .image__1 {
  grid-area: selector-image1;
}
/* line 672, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .selector-block__row .image__2 {
  grid-area: selector-image2;
}
/* line 681, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row {
  padding: 25px 0;
  display: grid;
  grid-template-areas: ". selector-image1 selector-image2 selector-image3 selector-image4 .";
  grid-template-columns: 10fr 7fr 7fr 7fr 7fr 10fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  align-items: end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 681, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-2-1 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3 selector-image4";
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 681, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-2-1 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2" "selector-image3 selector-image4";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr;
    justify-items: center;
  }
}
/* line 707, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .label {
  font-size: 1.1em;
  padding: 5px 0;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 707, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-2-1 .selector-block__row .label {
    text-align: center;
  }
}
/* line 716, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .image__1 {
  grid-area: selector-image1;
}
/* line 719, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .image__2 {
  grid-area: selector-image2;
}
/* line 722, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .image__3 {
  grid-area: selector-image3;
}
/* line 725, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .image__4 {
  grid-area: selector-image4;
}
/* line 729, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .img-wrapper {
  cursor: pointer;
}
/* line 731, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .img-wrapper img {
  border: solid 1px #d6d6d6;
  -webkit-box-shadow: #9f9f9f 1px 1px 3px;
  -moz-box-shadow: #9f9f9f 1px 1px 3px;
  box-shadow: #9f9f9f 1px 1px 3px;
  padding: 5px;
}
/* line 738, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block__row .img-wrapper .image-responsive {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
/* line 745, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-2-1 .selector-block .separator {
  color: #336699;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
/* line 758, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row {
  padding: 25px 0;
  display: grid;
  grid-template-areas: ". selector-image1 selector-image2 selector-image3 .";
  grid-template-columns: 14fr 7fr 7fr 7fr 14fr;
  grid-template-rows: 1fr;
  grid-gap: 15px;
  align-items: end;
}
@media (min-width: 768px) and (max-width: 1024px) {
  /* line 758, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-1-2 .selector-block__row,
  .wizard-wrapper .step-3 .answer-1-1 .selector-block__row,
  .wizard-wrapper .step-3 .answer-1-4 .selector-block__row,
  .wizard-wrapper .step-3 .answer-2-2 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 758, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-1-2 .selector-block__row,
  .wizard-wrapper .step-3 .answer-1-1 .selector-block__row,
  .wizard-wrapper .step-3 .answer-1-4 .selector-block__row,
  .wizard-wrapper .step-3 .answer-2-2 .selector-block__row {
    grid-template-areas: "selector-image1 selector-image2 selector-image3";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
  }
}
@media only screen and (max-width: 479px) {
  /* line 758, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-1-2 .selector-block__row,
  .wizard-wrapper .step-3 .answer-1-1 .selector-block__row,
  .wizard-wrapper .step-3 .answer-1-4 .selector-block__row,
  .wizard-wrapper .step-3 .answer-2-2 .selector-block__row {
    grid-template-areas: "selector-image1" "selector-image2" "selector-image3";
    grid-template-columns: 1fr;
    grid-template-rows: 3fr;
    justify-items: center;
  }
}
/* line 793, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row .label,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row .label,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row .label,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row .label {
  font-size: 1.1em;
  padding: 5px 0;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  /* line 793, ../scss/module/_selector.scss */
  .wizard-wrapper .step-3 .answer-1-2 .selector-block__row .label,
  .wizard-wrapper .step-3 .answer-1-1 .selector-block__row .label,
  .wizard-wrapper .step-3 .answer-1-4 .selector-block__row .label,
  .wizard-wrapper .step-3 .answer-2-2 .selector-block__row .label {
    text-align: center;
  }
}
/* line 802, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row .image__1,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row .image__1,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row .image__1,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row .image__1 {
  grid-area: selector-image1;
}
/* line 805, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row .image__2,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row .image__2,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row .image__2,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row .image__2 {
  grid-area: selector-image2;
}
/* line 808, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row .image__3,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row .image__3,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row .image__3,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row .image__3 {
  grid-area: selector-image3;
}
/* line 812, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row .img-wrapper,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row .img-wrapper,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row .img-wrapper,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row .img-wrapper {
  cursor: pointer;
}
/* line 814, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row .img-wrapper img,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row .img-wrapper img,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row .img-wrapper img,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row .img-wrapper img {
  border: solid 1px #d6d6d6;
  -webkit-box-shadow: #9f9f9f 1px 1px 3px;
  -moz-box-shadow: #9f9f9f 1px 1px 3px;
  box-shadow: #9f9f9f 1px 1px 3px;
  padding: 5px;
}
/* line 821, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block__row .img-wrapper .image-responsive,
.wizard-wrapper .step-3 .answer-1-1 .selector-block__row .img-wrapper .image-responsive,
.wizard-wrapper .step-3 .answer-1-4 .selector-block__row .img-wrapper .image-responsive,
.wizard-wrapper .step-3 .answer-2-2 .selector-block__row .img-wrapper .image-responsive {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
/* line 828, ../scss/module/_selector.scss */
.wizard-wrapper .step-3 .answer-1-2 .selector-block .separator,
.wizard-wrapper .step-3 .answer-1-1 .selector-block .separator,
.wizard-wrapper .step-3 .answer-1-4 .selector-block .separator,
.wizard-wrapper .step-3 .answer-2-2 .selector-block .separator {
  color: #336699;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
/* line 837, ../scss/module/_selector.scss */
.wizard-wrapper .step-4 {
  padding: 10vh;
  text-align: center;
}

/* line 3, ../scss/module/_compare.scss */
.catalog-product-compare .page-title h1 {
  text-align: center;
}
/* line 10, ../scss/module/_compare.scss */
.catalog-product-compare .compare-table .product-shop-row.top td {
  padding-top: 0;
}
/* line 16, ../scss/module/_compare.scss */
.catalog-product-compare h2.product-name {
  font-weight: bold;
  color: #40434b;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  max-width: 210px;
}
/* line 23, ../scss/module/_compare.scss */
.catalog-product-compare .price-box {
  max-width: 210px;
  text-align: left;
}
/* line 26, ../scss/module/_compare.scss */
.catalog-product-compare .price-box .price-label {
  color: #f00;
  font-size: 14px;
  text-align: left;
  font-weight: 700;
}
/* line 32, ../scss/module/_compare.scss */
.catalog-product-compare .price-box .price {
  color: #f00;
  font-size: 14px;
  text-align: left;
  font-weight: 600;
}
/* line 39, ../scss/module/_compare.scss */
.catalog-product-compare .price-box .old-price .price-label {
  display: none;
}
/* line 42, ../scss/module/_compare.scss */
.catalog-product-compare .price-box .old-price .price {
  color: #369;
}
/* line 48, ../scss/module/_compare.scss */
.catalog-product-compare .btn-cart {
  background-color: #F06543;
}
/* line 52, ../scss/module/_compare.scss */
.catalog-product-compare .btn-remove {
  float: left;
}
/* line 54, ../scss/module/_compare.scss */
.catalog-product-compare .btn-remove:after {
  color: #f00;
}

/*
 *  Owl Carousel - Core
 */
/* line 4, ../scss/module/owl/_core.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
/* line 12, ../scss/module/owl/_core.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
  display: flex;
}
/* line 20, ../scss/module/owl/_core.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/* line 29, ../scss/module/owl/_core.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
/* line 36, ../scss/module/owl/_core.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
/* line 46, ../scss/module/owl/_core.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  display: flex;
  -webkit-font-smoothing: subpixel-antialiased;
}
/* line 56, ../scss/module/owl/_core.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
/* line 60, ../scss/module/owl/_core.scss */
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 15px;
}
/* line 64, ../scss/module/owl/_core.scss */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
/* line 69, ../scss/module/owl/_core.scss */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 80, ../scss/module/owl/_core.scss */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: #fff;
  width: 20px;
  height: 20px;
  border: solid 1px #d6d6d6;
  margin: 5px;
  border-radius: 100%;
  font: inherit;
  position: relative;
}
/* line 91, ../scss/module/owl/_core.scss */
.owl-carousel .owl-nav button.owl-prev:after,
.owl-carousel .owl-nav button.owl-next:after,
.owl-carousel button.owl-dot:after {
  content: "";
  background: #d6d6d6;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}
/* line 102, ../scss/module/owl/_core.scss */
.owl-carousel .owl-nav button.owl-prev.active,
.owl-carousel .owl-nav button.owl-next.active,
.owl-carousel button.owl-dot.active {
  border-color: #264d73;
}
/* line 104, ../scss/module/owl/_core.scss */
.owl-carousel .owl-nav button.owl-prev.active:after,
.owl-carousel .owl-nav button.owl-next.active:after,
.owl-carousel button.owl-dot.active:after {
  content: '';
  background: #264d73;
}
/* line 111, ../scss/module/owl/_core.scss */
.owl-carousel.owl-loaded {
  display: block;
}
/* line 115, ../scss/module/owl/_core.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
/* line 120, ../scss/module/owl/_core.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}
/* line 124, ../scss/module/owl/_core.scss */
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
/* line 128, ../scss/module/owl/_core.scss */
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 136, ../scss/module/owl/_core.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
/* line 141, ../scss/module/owl/_core.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}
/* line 145, ../scss/module/owl/_core.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 151, ../scss/module/owl/_core.scss */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 5, ../scss/module/owl/_animate.scss */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
/* line 9, ../scss/module/owl/_animate.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}
/* line 12, ../scss/module/owl/_animate.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}
/* line 15, ../scss/module/owl/_animate.scss */
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 5, ../scss/module/owl/_autoheight.scss */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 6, ../scss/module/owl/_lazyload.scss */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
/* line 7, ../scss/module/owl/_lazyload.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
/* line 16, ../scss/module/owl/_lazyload.scss */
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 8, ../scss/module/owl/_video.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
/* line 14, ../scss/module/owl/_video.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
/* line 29, ../scss/module/owl/_video.scss */
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
/* line 33, ../scss/module/owl/_video.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
/* line 38, ../scss/module/owl/_video.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
/* line 47, ../scss/module/owl/_video.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* Global */
/* line 4, ../scss/module/_jbox.scss */
.jBox-wrapper {
  text-align: left;
  box-sizing: border-box;
}

/* line 9, ../scss/module/_jbox.scss */
.jBox-title,
.jBox-content,
.jBox-container {
  position: relative;
  word-break: break-word;
  box-sizing: border-box;
}

/* line 17, ../scss/module/_jbox.scss */
.jBox-container {
  background: #fff;
}

/* line 21, ../scss/module/_jbox.scss */
.jBox-content {
  padding: 8px 10px;
  overflow-x: hidden;
  overflow-y: auto;
  transition: opacity .2s;
}

/* jBox Tooltip */
/* line 30, ../scss/module/_jbox.scss */
.jBox-Tooltip .jBox-container,
.jBox-Mouse .jBox-container {
  border-radius: 3px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}

/* line 36, ../scss/module/_jbox.scss */
.jBox-Tooltip .jBox-title,
.jBox-Mouse .jBox-title {
  padding: 8px 10px 0;
  font-weight: bold;
}

/* line 42, ../scss/module/_jbox.scss */
.jBox-hasTitle.jBox-Tooltip .jBox-content,
.jBox-hasTitle.jBox-Mouse .jBox-content {
  padding-top: 5px;
}

/* line 47, ../scss/module/_jbox.scss */
.jBox-Mouse {
  pointer-events: none;
}

/* Pointer */
/* line 53, ../scss/module/_jbox.scss */
.jBox-pointer {
  position: absolute;
  overflow: hidden;
}

/* line 58, ../scss/module/_jbox.scss */
.jBox-pointer-top {
  top: 0;
}

/* line 59, ../scss/module/_jbox.scss */
.jBox-pointer-bottom {
  bottom: 0;
}

/* line 60, ../scss/module/_jbox.scss */
.jBox-pointer-left {
  left: 0;
}

/* line 61, ../scss/module/_jbox.scss */
.jBox-pointer-right {
  right: 0;
}

/* line 63, ../scss/module/_jbox.scss */
.jBox-pointer-top,
.jBox-pointer-bottom {
  width: 30px;
  height: 12px;
}

/* line 69, ../scss/module/_jbox.scss */
.jBox-pointer-left,
.jBox-pointer-right {
  width: 12px;
  height: 30px;
}

/* line 75, ../scss/module/_jbox.scss */
.jBox-pointer:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  transform: rotate(45deg);
}

/* line 84, ../scss/module/_jbox.scss */
.jBox-pointer-top:after {
  left: 5px;
  top: 6px;
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.15);
}

/* line 90, ../scss/module/_jbox.scss */
.jBox-pointer-right:after {
  top: 5px;
  right: 6px;
  box-shadow: 1px -1px 2px rgba(0, 0, 0, 0.15);
}

/* line 96, ../scss/module/_jbox.scss */
.jBox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

/* line 102, ../scss/module/_jbox.scss */
.jBox-pointer-left:after {
  top: 5px;
  left: 6px;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
}

/* jBox Modal */
/* line 110, ../scss/module/_jbox.scss */
.jBox-Modal .jBox-container {
  border-radius: 4px;
}

/* line 114, ../scss/module/_jbox.scss */
.jBox-Modal .jBox-content {
  padding: 15px 20px;
}

/* line 118, ../scss/module/_jbox.scss */
.jBox-Modal .jBox-title {
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

/* line 125, ../scss/module/_jbox.scss */
.jBox-Modal .jBox-footer {
  border-radius: 0 0 4px 4px;
}

/* line 129, ../scss/module/_jbox.scss */
.jBox-Modal.jBox-closeButton-title .jBox-title {
  padding-right: 55px;
}

/* line 133, ../scss/module/_jbox.scss */
.jBox-Modal .jBox-container,
.jBox-Modal.jBox-closeButton-box:before {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4);
}

/* Close button */
/* line 140, ../scss/module/_jbox.scss */
.jBox-closeButton {
  cursor: pointer;
  position: absolute;
}

/* line 145, ../scss/module/_jbox.scss */
.jBox-closeButton svg {
  position: absolute;
  top: 50%;
  right: 50%;
}

/* line 151, ../scss/module/_jbox.scss */
.jBox-closeButton path {
  transition: fill .2s;
}

/* line 155, ../scss/module/_jbox.scss */
.jBox-closeButton path {
  fill: #aaa;
}

/* line 159, ../scss/module/_jbox.scss */
.jBox-closeButton:hover path {
  fill: #888;
}

/* line 163, ../scss/module/_jbox.scss */
.jBox-closeButton:active path {
  fill: #666;
}

/* Close button in overlay */
/* line 169, ../scss/module/_jbox.scss */
.jBox-overlay .jBox-closeButton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}

/* line 176, ../scss/module/_jbox.scss */
.jBox-overlay .jBox-closeButton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px;
}

/* line 183, ../scss/module/_jbox.scss */
.jBox-overlay .jBox-closeButton path,
.jBox-overlay .jBox-closeButton:active path {
  fill: #ddd;
}

/* line 188, ../scss/module/_jbox.scss */
.jBox-overlay .jBox-closeButton:hover path {
  fill: #fff;
}

/* Close button in title */
/* line 194, ../scss/module/_jbox.scss */
.jBox-closeButton-title .jBox-closeButton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
}

/* line 201, ../scss/module/_jbox.scss */
.jBox-closeButton-title .jBox-closeButton svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px;
}

/* Close button in box */
/* line 210, ../scss/module/_jbox.scss */
.jBox-closeButton-box .jBox-closeButton {
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}

/* line 219, ../scss/module/_jbox.scss */
.jBox-closeButton-box .jBox-closeButton svg {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-right: -5px;
}

/* line 226, ../scss/module/_jbox.scss */
.jBox-hasTitle.jBox-Modal.jBox-closeButton-box .jBox-closeButton {
  background: #fafafa;
}

/* line 230, ../scss/module/_jbox.scss */
.jBox-closeButton-box:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 241, ../scss/module/_jbox.scss */
.jBox-pointerPosition-top.jBox-closeButton-box:before {
  top: 5px;
}

/* line 245, ../scss/module/_jbox.scss */
.jBox-pointerPosition-right.jBox-closeButton-box:before {
  right: 2px;
}

/* Overlay */
/* line 251, ../scss/module/_jbox.scss */
.jBox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.82);
}

/* Footer */
/* line 262, ../scss/module/_jbox.scss */
.jBox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px;
}

/* Block scrolling */
/* line 271, ../scss/module/_jbox.scss */
body[class^="jBox-blockScroll-"],
body[class*=" jBox-blockScroll-"] {
  overflow: hidden;
}

/* Draggable */
/* line 278, ../scss/module/_jbox.scss */
.jBox-draggable {
  cursor: move;
}

/* Spinner */
@keyframes jBoxLoading {
  to {
    transform: rotate(360deg);
  }
}
/* line 288, ../scss/module/_jbox.scss */
.jBox-loading .jBox-content {
  opacity: .2;
}

/* line 292, ../scss/module/_jbox.scss */
.jBox-loading-spinner .jBox-content {
  min-height: 38px !important;
  min-width: 38px !important;
  opacity: 0;
}

/* line 298, ../scss/module/_jbox.scss */
.jBox-spinner {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}

/* line 309, ../scss/module/_jbox.scss */
.jBox-spinner:before {
  display: block;
  box-sizing: border-box;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  animation: jBoxLoading .6s linear infinite;
}

/* Animations */
/* line 323, ../scss/module/_jbox.scss */
[class^="jBox-animated-"],
[class*=" jBox-animated-"] {
  animation-fill-mode: both;
}

@keyframes jBox-tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.8) rotate(-4deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.2) rotate(4deg);
  }
  40%, 60%, 80% {
    transform: scale(1.2) rotate(-4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
/* line 336, ../scss/module/_jbox.scss */
.jBox-animated-tada {
  animation: jBox-tada 1s;
}

@keyframes jBox-tadaSmall {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-2deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(2deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
/* line 348, ../scss/module/_jbox.scss */
.jBox-animated-tadaSmall {
  animation: jBox-tadaSmall 1s;
}

@keyframes jBox-flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* line 357, ../scss/module/_jbox.scss */
.jBox-animated-flash {
  animation: jBox-flash .5s;
}

@keyframes jBox-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}
/* line 367, ../scss/module/_jbox.scss */
.jBox-animated-shake {
  animation: jBox-shake .4s;
}

@keyframes jBox-pulseUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/* line 377, ../scss/module/_jbox.scss */
.jBox-animated-pulseUp {
  animation: jBox-pulseUp .25s;
}

@keyframes jBox-pulseDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
/* line 387, ../scss/module/_jbox.scss */
.jBox-animated-pulseDown {
  animation: jBox-pulseDown .25s;
}

@keyframes jBox-popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* line 397, ../scss/module/_jbox.scss */
.jBox-animated-popIn {
  animation: jBox-popIn .25s;
}

@keyframes jBox-popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
/* line 407, ../scss/module/_jbox.scss */
.jBox-animated-popOut {
  animation: jBox-popOut .25s;
}

@keyframes jBox-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* line 416, ../scss/module/_jbox.scss */
.jBox-animated-fadeIn {
  animation: jBox-fadeIn .2s;
}

@keyframes jBox-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* line 425, ../scss/module/_jbox.scss */
.jBox-animated-fadeOut {
  animation: jBox-fadeOut .2s;
}

@keyframes jBox-slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}
/* line 434, ../scss/module/_jbox.scss */
.jBox-animated-slideUp {
  animation: jBox-slideUp .4s;
}

@keyframes jBox-slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}
/* line 443, ../scss/module/_jbox.scss */
.jBox-animated-slideRight {
  animation: jBox-slideRight .4s;
}

@keyframes jBox-slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(300px);
    opacity: 0;
  }
}
/* line 452, ../scss/module/_jbox.scss */
.jBox-animated-slideDown {
  animation: jBox-slideDown .4s;
}

@keyframes jBox-slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}
/* line 461, ../scss/module/_jbox.scss */
.jBox-animated-slideLeft {
  animation: jBox-slideLeft .4s;
}

/* line 468, ../scss/module/_jbox.scss */
.jBox-closeButton {
  z-index: 1;
}

/* line 471, ../scss/module/_jbox.scss */
.jBox-countdown {
  border-radius: 3px 3px 0 0;
  z-index: 0;
  background: #000;
  opacity: .2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

/* line 482, ../scss/module/_jbox.scss */
.jBox-countdown_inner {
  border-radius: 3px 3px 0 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  background: #fff;
}

/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
/* line 30, ../scss/override/_plugin.scss */
div.calendar table {
  border-collapse: separate;
}
/* line 33, ../scss/override/_plugin.scss */
div.calendar table td.button {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none;
}

/*# sourceMappingURL=styles.css.map */
