@charset "UTF-8";

/**** Global Vars ****/

/* h2 */

/* Used for bottom border/line of elements like page title, heading, etc... */

/* Used for blocks, sections */

/*** Home only ***/

/*** Catalog ***/

/*** MyAccount ***/

/*** Store locator ***/

/*** Algolia Search ***/

/*** Onestepcheckout ***/

/*** layer navigation ***/

/*** toolbar ***/

/*** Fancybox ***/

/*** Social links ***/

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

// ----------------------------------------------
*/

/* ============================================ *
 * Add Calculator for property
 * ============================================ */

/*
// ----------------------------------------------
// Usage example:
// use mixins to test whether styles should be applied.
// ----------------------------------------------


// Renders at fixed value
.test {
  @include calc(width, "25% - 1em");
}

// output:

.test {
  width: -webkit-calc(25% - 1em);
  width: calc(25% - 1em);
}

// ----------------------------------------------
*/

/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

// Renders at fixed value
@include fs ($f-size)

// ----------------------------------------------
*/

/*
// ----------------------------------------------
// Usage example:
// use mixins to test whether styles should be applied.
// ----------------------------------------------


// Renders at fixed value
@include margin(0,10px,null,right);

// output:

    margin: 0;
    @media only screen and min-width > 600px {
        margin-right: 10px;
    }

// ----------------------------------------------
*/

/* Vertical align anything in a div - need to set position of that div to be relative */

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

/*
 * 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.nice-select.open,
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: #333;
}

/*
 * 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: #333;
  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;
}

/* ============================================ *
 * Icon fontello
 * ============================================ */

@font-face {
  font-family: "Fontello";
  src: url("../fonts/iconfont/fontello/fontello.eot?64278242");
  src: url("../fonts/iconfont/fontello/fontello.eot?64278242#iefix") format("embedded-opentype"), url("../fonts/iconfont/fontello/fontello.woff?64278242") format("woff"), url("../fonts/iconfont/fontello/fontello.ttf?64278242") format("truetype"), url("../fonts/iconfont/fontello/fontello.svg?64278242#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */

/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */

/* line 20, ../scss/vendor/_fontello.scss */

.icon-type,
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "Fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* line 91, ../scss/vendor/_fontello.scss */

.icon-location_icon:before {
  content: '\e800';
}

/* line 92, ../scss/vendor/_fontello.scss */

.icon-account_icon:before {
  content: '\e801';
}

/* line 93, ../scss/vendor/_fontello.scss */

.icon-cart_icon:before {
  content: '\e802';
}

/* line 94, ../scss/vendor/_fontello.scss */

.icon-truck_icon:before {
  content: '\e803';
}

/* line 95, ../scss/vendor/_fontello.scss */

.icon-returns_icon:before {
  content: '\e804';
}

/* line 96, ../scss/vendor/_fontello.scss */

.icon-light_icon:before {
  content: '\e805';
}

/* line 97, ../scss/vendor/_fontello.scss */

.icon-appsocial_icon:before {
  content: '\e806';
}

/* line 98, ../scss/vendor/_fontello.scss */

.icon-facebooksocial_icon:before {
  content: '\e807';
}

/* line 99, ../scss/vendor/_fontello.scss */

.icon-pintrestsocial_icon:before {
  content: '\e808';
}

/* line 100, ../scss/vendor/_fontello.scss */

.icon-instagramsocial_icon:before {
  content: '\e809';
}

/* line 101, ../scss/vendor/_fontello.scss */

.icon-youtubesocial_icon:before {
  content: '\e80a';
}

/* line 102, ../scss/vendor/_fontello.scss */

.icon-clickcollect_icon:before {
  content: '\e80b';
}

/* line 103, ../scss/vendor/_fontello.scss */

.icon-project_icon:before {
  content: '\e80c';
}

/* line 104, ../scss/vendor/_fontello.scss */

.icon-specsheet_icon:before {
  content: '\e80d';
}

/* line 105, ../scss/vendor/_fontello.scss */

.icon-compare_icon:before {
  content: '\e80e';
}

/* line 106, ../scss/vendor/_fontello.scss */

.icon-search_icon:before {
  content: '\e80f';
}

/* line 107, ../scss/vendor/_fontello.scss */

.icon-zoom_icon:before {
  content: '\e810';
}

/* line 108, ../scss/vendor/_fontello.scss */

.icon-check:before {
  content: '\e811';
}

/* line 109, ../scss/vendor/_fontello.scss */

.icon-dot:before {
  content: '\e812';
}

/* line 110, ../scss/vendor/_fontello.scss */

.icon-down-dir:before {
  content: '\e813';
}

/* line 111, ../scss/vendor/_fontello.scss */

.icon-star-empty:before {
  content: '\e814';
}

/* line 112, ../scss/vendor/_fontello.scss */

.icon-star:before {
  content: '\e815';
}

/* line 113, ../scss/vendor/_fontello.scss */

.icon-right-open-big:before,
.icon-close:before {
  content: '\e816';
}

/* line 114, ../scss/vendor/_fontello.scss */

.icon-left-open-big:before,
.icon-close:after {
  content: '\e817';
}

/* line 115, ../scss/vendor/_fontello.scss */

.icon-down-dir-1:before {
  content: '\e818';
}

/* line 116, ../scss/vendor/_fontello.scss */

.icon-up-dir:before {
  content: '\e819';
}

/* line 117, ../scss/vendor/_fontello.scss */

.icon-left-dir:before {
  content: '\e81a';
}

/* line 118, ../scss/vendor/_fontello.scss */

.icon-right-dir:before {
  content: '\e81b';
}

/* line 119, ../scss/vendor/_fontello.scss */

.icon-down-open-1:before {
  content: '\e81c';
}

/* line 120, ../scss/vendor/_fontello.scss */

.icon-left-open-1:before {
  content: '\e81d';
}

/* line 121, ../scss/vendor/_fontello.scss */

.icon-right-open-1:before {
  content: '\e81e';
}

/* line 122, ../scss/vendor/_fontello.scss */

.icon-up-open-1:before {
  content: '\e81f';
}

/* line 123, ../scss/vendor/_fontello.scss */

.icon-down-open-big:before {
  content: '\e820';
}

/* line 124, ../scss/vendor/_fontello.scss */

.icon-up-open-big:before {
  content: '\e821';
}

/* line 125, ../scss/vendor/_fontello.scss */

.icon-up-open-mini:before {
  content: '\e822';
}

/* line 126, ../scss/vendor/_fontello.scss */

.icon-right-open-mini:before {
  content: '\e823';
}

/* line 127, ../scss/vendor/_fontello.scss */

.icon-left-open-mini:before {
  content: '\e824';
}

/* line 128, ../scss/vendor/_fontello.scss */

.icon-down-open-mini:before {
  content: '\e825';
}

/* line 129, ../scss/vendor/_fontello.scss */

.icon-up-open:before {
  content: '\e826';
}

/* line 130, ../scss/vendor/_fontello.scss */

.icon-right-open:before {
  content: '\e827';
}

/* line 131, ../scss/vendor/_fontello.scss */

.icon-left-open:before {
  content: '\e828';
}

/* line 132, ../scss/vendor/_fontello.scss */

.icon-down-open:before {
  content: '\e829';
}

/* line 133, ../scss/vendor/_fontello.scss */

.icon-left-dir-1:before {
  content: '\e82a';
}

/* line 134, ../scss/vendor/_fontello.scss */

.icon-right-dir-1:before {
  content: '\e82b';
}

/* line 135, ../scss/vendor/_fontello.scss */

.icon-up-dir-1:before {
  content: '\e82c';
}

/* line 136, ../scss/vendor/_fontello.scss */

.icon-trash:before {
  content: '\e82d';
}

/* line 137, ../scss/vendor/_fontello.scss */

.icon-cancel:before {
  content: '\e82e';
}

/* line 138, ../scss/vendor/_fontello.scss */

.icon-menu:before {
  content: '\e82f';
}

/* line 139, ../scss/vendor/_fontello.scss */

.icon-help:before {
  content: '\e830';
}

/* line 140, ../scss/vendor/_fontello.scss */

.icon-mail:before {
  content: '\e831';
}

/* line 142, ../scss/vendor/_fontello.scss */

.icon-close {
  position: relative;
  display: inline-block;
}

/* line 146, ../scss/vendor/_fontello.scss */

.icon-close:before,
.icon-close:after {
  font-family: "Fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

/* line 153, ../scss/vendor/_fontello.scss */

.icon-close:before {
  left: -7px;
}

/* line 161, ../scss/vendor/_fontello.scss */

.icon-tick {
  position: relative;
  display: inline-block;
}

/* line 164, ../scss/vendor/_fontello.scss */

.icon-tick:before {
  font-family: "Fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  content: "\e811";
  border: 1px solid #e6e6e6;
  width: 41px;
  height: 41px;
  line-height: 41px;
  -moz-border-radius: 41px;
  -webkit-border-radius: 41px;
  border-radius: 41px;
  font-size: 25px;
  text-align: center;
  color: #4f79b9;
  vertical-align: top;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/iconfont/fontawesome/fontawesome-webfont.eot?v=4.6.3");
  src: url("../fonts/iconfont/fontawesome/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../fonts/iconfont/fontawesome/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../fonts/iconfont/fontawesome/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../fonts/iconfont/fontawesome/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../fonts/iconfont/fontawesome/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 4, ../scss/vendor/font-awesome/_core.scss */

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

/* line 5, ../scss/vendor/font-awesome/_larger.scss */

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 10, ../scss/vendor/font-awesome/_larger.scss */

.fa-2x {
  font-size: 2em;
}

/* line 11, ../scss/vendor/font-awesome/_larger.scss */

.fa-3x {
  font-size: 3em;
}

/* line 12, ../scss/vendor/font-awesome/_larger.scss */

.fa-4x {
  font-size: 4em;
}

/* line 13, ../scss/vendor/font-awesome/_larger.scss */

.fa-5x {
  font-size: 5em;
}

/* line 3, ../scss/vendor/font-awesome/_fixed-width.scss */

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

/* line 4, ../scss/vendor/font-awesome/_list.scss */

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

/* line 8, ../scss/vendor/font-awesome/_list.scss */

.fa-ul > li {
  position: relative;
}

/* line 10, ../scss/vendor/font-awesome/_list.scss */

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

/* line 16, ../scss/vendor/font-awesome/_list.scss */

.fa-li.fa-lg {
  left: -1.85714em;
}

/* line 4, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

/* line 10, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.fa-pull-left {
  float: left;
}

/* line 11, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.fa-pull-right {
  float: right;
}

/* line 14, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.fa.fa-pull-left {
  margin-right: .3em;
}

/* line 15, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */

/* line 19, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.pull-right {
  float: right;
}

/* line 20, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.pull-left {
  float: left;
}

/* line 23, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.fa.pull-left {
  margin-right: .3em;
}

/* line 24, ../scss/vendor/font-awesome/_bordered-pulled.scss */

.fa.pull-right {
  margin-left: .3em;
}

/* line 4, ../scss/vendor/font-awesome/_animated.scss */

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

/* line 9, ../scss/vendor/font-awesome/_animated.scss */

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* line 4, ../scss/vendor/font-awesome/_rotated-flipped.scss */

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* line 5, ../scss/vendor/font-awesome/_rotated-flipped.scss */

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 6, ../scss/vendor/font-awesome/_rotated-flipped.scss */

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* line 8, ../scss/vendor/font-awesome/_rotated-flipped.scss */

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* line 9, ../scss/vendor/font-awesome/_rotated-flipped.scss */

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* line 14, ../scss/vendor/font-awesome/_rotated-flipped.scss */

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 4, ../scss/vendor/font-awesome/_stacked.scss */

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 12, ../scss/vendor/font-awesome/_stacked.scss */

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 18, ../scss/vendor/font-awesome/_stacked.scss */

.fa-stack-1x {
  line-height: inherit;
}

/* line 19, ../scss/vendor/font-awesome/_stacked.scss */

.fa-stack-2x {
  font-size: 2em;
}

/* line 20, ../scss/vendor/font-awesome/_stacked.scss */

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

/* line 4, ../scss/vendor/font-awesome/_screen-reader.scss */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 51, ../scss/vendor/font-awesome/_mixins.scss */

.sr-only-focusable:active,
.sr-only-focusable.nice-select.open,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*!
 *  Elegant Icons by @ - https://www.elegantthemes.com/blog/resources/elegant-icon-font
 *
 */

/* line 1, ../scss/vendor/elegant-icons/_icons-placeholder.scss */

.arrow_up:before {
  content: "\21";
}

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: "ElegantIcons";
  src: url("../fonts/iconfont/eleganticons/ElegantIcons.eot?v=1.0.0");
  src: url("../fonts/iconfont/eleganticons/ElegantIcons.eot?#iefix&v=1.0.0") format("embedded-opentype"), url("../fonts/iconfont/eleganticons/ElegantIcons.woff2?v=1.0.0") format("woff2"), url("../fonts/iconfont/eleganticons/ElegantIcons.woff?v=1.0.0") format("woff"), url("../fonts/iconfont/eleganticons/ElegantIcons.ttf?v=1.0.0") format("truetype"), url("../fonts/iconfont/eleganticons/ElegantIcons.svg?v=1.0.0#eleganticons") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 4, ../scss/vendor/elegant-icons/_core.scss */

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

/* line 5, ../scss/vendor/elegant-icons/_larger.scss */

.fei-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 10, ../scss/vendor/elegant-icons/_larger.scss */

.fei-2x {
  font-size: 2em;
}

/* line 11, ../scss/vendor/elegant-icons/_larger.scss */

.fei-3x {
  font-size: 3em;
}

/* line 12, ../scss/vendor/elegant-icons/_larger.scss */

.fei-4x {
  font-size: 4em;
}

/* line 13, ../scss/vendor/elegant-icons/_larger.scss */

.fei-5x {
  font-size: 5em;
}

/* line 3, ../scss/vendor/elegant-icons/_fixed-width.scss */

.fei-fw {
  width: 1.28571em;
  text-align: center;
}

/*@import "elegant-icons/list";
@import "elegant-icons/bordered-pulled";
@import "elegant-icons/animated";
@import "elegant-icons/rotated-flipped";
@import "elegant-icons/stacked";*/

/* @import "elegant-icons/screen-reader";*/

/* ============================================ *
 * Base Styles
 * ============================================ */

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

/* line 45, ../scss/core/_common.scss */

a,
button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* line 50, ../scss/core/_common.scss */

body,
button,
input,
select,
table,
textarea {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* line 62, ../scss/core/_common.scss */

a {
  color: #8caedc;
  text-decoration: none;
}

/* line 67, ../scss/core/_common.scss */

a:hover {
  color: #305f9f;
  text-decoration: underline;
}

/* line 72, ../scss/core/_common.scss */

a:focus {
  outline-color: #82a7d9;
  color: #305f9f;
}

/* line 77, ../scss/core/_common.scss */

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============================================ *
 * Typography
 * ============================================ */

/* line 88, ../scss/core/_common.scss */

h1,
.h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #727a85;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: capitalize;
}

/* line 90, ../scss/core/_common.scss */

h2,
.h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #727a85;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: capitalize;
}

/* line 92, ../scss/core/_common.scss */

h3,
.h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #57626f;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
}

/* line 94, ../scss/core/_common.scss */

h4,
.h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #76848f;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
}

/* line 96, ../scss/core/_common.scss */

h5,
.h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #727a85;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* line 98, ../scss/core/_common.scss */

h6,
.h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #727a85;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */

/* line 104, ../scss/core/_common.scss */

.address-list address {
  margin-bottom: 1em;
}

/* line 108, ../scss/core/_common.scss */

.availability {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: uppercase;
}

/* line 114, ../scss/core/_common.scss */

.availability .label {
  display: none;
}

/* line 118, ../scss/core/_common.scss */

.availability.in-stock {
  color: #d93e70;
}

/* line 122, ../scss/core/_common.scss */

.availability.available-soon,
.availability.out-of-stock {
  color: #d93e70;
}

/* line 127, ../scss/core/_common.scss */

.availability-only {
  color: #d93e70;
  margin-bottom: 10px;
}

/* line 131, ../scss/core/_common.scss */

.nice-select {
  padding-right: 30px;
}

/* line 133, ../scss/core/_common.scss */

.nice-select .list {
  display: none;
}

/* line 137, ../scss/core/_common.scss */

.nice-select.open .list {
  display: block;
}

/* line 141, ../scss/core/_common.scss */

.nice-select .current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -------------------------------------------- *
 * Page Titles
 */

/* line 151, ../scss/core/_common.scss */

.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 24px;
  font-weight: 600;
  color: #727a85;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* -------------------------------------------- *
 * Block Module
 */

/* line 162, ../scss/core/_common.scss */

.block,
.col-left-first {
  margin-bottom: 20px;
}

/* line 167, ../scss/core/_common.scss */

.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

/* line 171, ../scss/core/_common.scss */

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #CCCCCC;
}

/* line 177, ../scss/core/_common.scss */

.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #76848f;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
  color: #8caedc;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}

/* line 186, ../scss/core/_common.scss */

.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #A0A0A0;
}

/* line 194, ../scss/core/_common.scss */

body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
  padding-top: 0;
}

/* line 199, ../scss/core/_common.scss */

.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px;
}

/* line 204, ../scss/core/_common.scss */

.block-content {
  margin-top: 5px;
}

/* line 208, ../scss/core/_common.scss */

.block-content.unpad {
  padding: 0;
}

/* line 212, ../scss/core/_common.scss */

.block-content li.item {
  margin: 0 0 10px 9px;
}

/* line 216, ../scss/core/_common.scss */

.block-content li.item:last-child {
  margin-bottom: 0;
}

/* line 220, ../scss/core/_common.scss */

.block .actions {
  margin: 10px 0 0;
}

/* line 223, ../scss/core/_common.scss */

.block .actions:after {
  content: '';
  display: table;
  clear: both;
}

/* line 227, ../scss/core/_common.scss */

.block .actions a {
  float: left;
}

/* line 230, ../scss/core/_common.scss */

.block .actions .button {
  float: right;
}

/* line 238, ../scss/core/_common.scss */

.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px;
}

@media only screen and (max-width: 770px) {
  /* line 248, ../scss/core/_common.scss */

  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }

  /* line 251, ../scss/core/_common.scss */

  .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
  }

  /* line 258, ../scss/core/_common.scss */

  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #76848f;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: capitalize;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
  }

  /* line 110, ../scss/mixin/_toggle-content.scss */

  .sidebar .block:not(.block-layered-nav) .block-title > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #8caedc;
    border-right: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }

  /* line 117, ../scss/mixin/_toggle-content.scss */

  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }

  /* line 267, ../scss/core/_common.scss */

  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #76848f;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: capitalize;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
  }

  /* line 110, ../scss/mixin/_toggle-content.scss */

  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #8caedc;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }

  /* line 117, ../scss/mixin/_toggle-content.scss */

  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }

  /* line 273, ../scss/core/_common.scss */

  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }

  /* line 283, ../scss/core/_common.scss */

  .sidebar .block:last-of-type {
    border-bottom: 1px solid #CCCCCC;
  }
}

/* -------------------------------------------- *
 * Secondary Navigation
 */

/* line 295, ../scss/core/_common.scss */

.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}

/* line 300, ../scss/core/_common.scss */

.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 7px 0;
}

/* line 305, ../scss/core/_common.scss */

.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #8caedc;
}

/* line 310, ../scss/core/_common.scss */

.block-account li a,
.block-cms-menu li a {
  color: #727a85;
}

/* line 313, ../scss/core/_common.scss */

.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #8caedc;
}

/* ============================================ *
 * Buttons
 * ============================================ */

/* Secondary Buttons */

/* line 325, ../scss/core/_common.scss */

.cart .buttons-set .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #DDDDDD;
  color: #727a85;
  padding: 7px 15px;
}

/* line 332, ../scss/core/_common.scss */

.cart .buttons-set .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer;
}

/* line 337, ../scss/core/_common.scss */

.cart .buttons-set .button:active,
.cart .buttons-set .button.nice-select.open,
.sidebar .actions .button:active,
.sidebar .actions .button.nice-select.open,
.button.button-secondary:active,
.button.button-secondary.nice-select.open {
  background: #c4c4c4;
  color: #727a85;
}

/* line 342, ../scss/core/_common.scss */

.cart .buttons-set .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #727a85;
  background: #c4c4c4;
  outline: none;
}

/* line 350, ../scss/core/_common.scss */

.cart-table .button:hover {
  text-decoration: underline;
}

/* line 355, ../scss/core/_common.scss */

.sidebar .actions button.button {
  white-space: normal;
}

/* Primary Buttons */

/* line 361, ../scss/core/_common.scss */

.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #8caedc;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}

/* line 379, ../scss/core/_common.scss */

.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #78a0d6;
  cursor: pointer;
}

/* line 383, ../scss/core/_common.scss */

.button:active,
.button.nice-select.open,
.cart-table .product-cart-actions .button:active,
.cart-table .product-cart-actions .button.nice-select.open,
#co-shipping-method-form .buttons-set .button:active,
#co-shipping-method-form .buttons-set .button.nice-select.open,
.footer .button:active,
.footer .button.nice-select.open {
  background: #6592d0;
  color: #FFFFFF;
}

/* line 387, ../scss/core/_common.scss */

.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #6592d0;
  outline: none;
  color: #FFFFFF;
}

/* line 394, ../scss/core/_common.scss */

a.button {
  text-decoration: none;
}

/* line 398, ../scss/core/_common.scss */

a.button:hover {
  color: #FFFFFF;
}

/* Disabled - class for anchor, state for form elements */

/* line 403, ../scss/core/_common.scss */

.button.disabled,
.button:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Adjacent buttons */

/* line 411, ../scss/core/_common.scss */

.button + .button {
  margin-left: 0;
}

@media only screen and (min-width: 600px) {
  /* line 411, ../scss/core/_common.scss */

  .button + .button {
    margin-left: 5px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 411, ../scss/core/_common.scss */

  .button + .button {
    margin-left: 5px;
  }
}

/* line 425, ../scss/core/_common.scss */

.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}

/* line 434, ../scss/core/_common.scss */

.button2:focus {
  outline: none;
}

/* line 438, ../scss/core/_common.scss */

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #8caedc;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 448, ../scss/core/_common.scss */

.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #5185ca;
}

@media only screen and (max-width: 770px) {
  /* line 456, ../scss/core/_common.scss */

  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* line 463, ../scss/core/_common.scss */

  .col2-set .buttons-set .back-link {
    display: none;
  }

  /* line 466, ../scss/core/_common.scss */

  .col2-set .buttons-set .required {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  /* line 474, ../scss/core/_common.scss */

  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }

  /* line 481, ../scss/core/_common.scss */

  .buttons-set .back-link {
    display: none;
  }

  /* line 484, ../scss/core/_common.scss */

  .buttons-set .required {
    display: none;
  }
}

/* -------------------------------------------- *
 * Paypal Button
 */

/* line 494, ../scss/core/_common.scss */

.paypal-logo.paypal-after {
  float: left;
}

/* line 498, ../scss/core/_common.scss */

.paypal-after .paypal-or {
  float: left;
}

/* line 502, ../scss/core/_common.scss */

.paypal-or {
  line-height: 34px;
  margin: 0px 10px 5px;
}

/* line 507, ../scss/core/_common.scss */

.paypal-after .paypal-button {
  float: left;
}

/* line 511, ../scss/core/_common.scss */

.paypal-button {
  line-height: 0px;
}

/* line 515, ../scss/core/_common.scss */

.paypal-button img {
  display: inline;
}

@media only screen and (max-width: 740px) {
  /* line 520, ../scss/core/_common.scss */

  .paypal-or {
    line-height: 20px;
  }

  /* line 524, ../scss/core/_common.scss */

  .paypal-logo,
  .paypal-or,
  .paypal-button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}

/* -------------------------------------------- *
 * Button Sets
 */

/* line 540, ../scss/core/_common.scss */

.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  text-align: right;
}

/* line 547, ../scss/core/_common.scss */

.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right;
}

/* line 553, ../scss/core/_common.scss */

.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px;
}

/* line 558, ../scss/core/_common.scss */

.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}

/* line 563, ../scss/core/_common.scss */

.buttons-set button.button {
  float: right;
  margin-left: 5px;
  min-width: 140px;
}

/* line 569, ../scss/core/_common.scss */

.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */

/* line 578, ../scss/core/_common.scss */

.icon-sprite,
.btn-remove2,
.sorter > .sort-by .sort-by-switcher,
.sorter > .view-mode .grid,
.sorter > .view-mode .list,
.skip-nav .icon,
.skip-search .icon,
#search_mini_form .search-button:before,
.skip-account .icon,
.skip-cart .icon {
  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 585, ../scss/core/_common.scss */

  .icon-sprite,
  .btn-remove2,
  .sorter > .sort-by .sort-by-switcher,
  .sorter > .view-mode .grid,
  .sorter > .view-mode .list,
  .skip-nav .icon,
  .skip-search .icon,
  #search_mini_form .search-button:before,
  .skip-account .icon,
  .skip-cart .icon {
    background-image: url(../images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}

/* -------------------------------------------- *
 * Breadcrumbs
 */

/* line 595, ../scss/core/_common.scss */

.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px;
}

/* line 600, ../scss/core/_common.scss */

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

/* line 607, ../scss/core/_common.scss */

.breadcrumbs a {
  float: left;
  color: #727a85;
}

/* line 612, ../scss/core/_common.scss */

.breadcrumbs a:hover {
  color: #8caedc;
}

/* line 616, ../scss/core/_common.scss */

.breadcrumbs strong {
  color: #727a85;
  font-weight: normal;
}

/* line 621, ../scss/core/_common.scss */

.breadcrumbs span {
  float: left;
  padding: 0 7px;
}

@media only screen and (max-width: 770px) {
  /* line 628, ../scss/core/_common.scss */

  .breadcrumbs {
    display: none;
  }
}

/* -------------------------------------------- *
 * Button - Remove / Previous
 */

/* line 638, ../scss/core/_common.scss */

.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #EDEDED;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative;
}

/* line 651, ../scss/core/_common.scss */

.btn-remove:hover,
.btn-previous:hover {
  background-color: #8caedc;
  border-color: #8caedc;
}

/* line 658, ../scss/core/_common.scss */

.btn-remove:after {
  content: 'X';
  color: #8caedc;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
}

/* line 668, ../scss/core/_common.scss */

.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

/* line 674, ../scss/core/_common.scss */

.btn-remove2 {
  background-position: 4px -648px;
  border: none;
  vertical-align: top;
}

/* line 681, ../scss/core/_common.scss */

.btn-remove2:after {
  display: none;
}

/* line 684, ../scss/core/_common.scss */

.btn-remove2:hover {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

/* line 691, ../scss/core/_common.scss */

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #8caedc;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}

/* line 699, ../scss/core/_common.scss */

.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #FFFFFF;
  border-left: none;
}

/* line 708, ../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 719, ../scss/core/_common.scss */

.checkout-agreements li {
  margin-bottom: 20px;
}

/* line 723, ../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 #CCCCCC;
  background: #F4F4F4;
}

/* -------------------------------------------- *
 * CVV Security Code
 */

/* line 737, ../scss/core/_common.scss */

.cvv-what-is-this {
  margin-left: 10px;
  font-size: 13px;
  line-height: 24px;
}

/* -------------------------------------------- *
 * Container
 */

/* line 747, ../scss/core/_common.scss */

.main-container,
.footer-container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 15px;
}

/* line 754, ../scss/core/_common.scss */

.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

@media only screen and (min-width: 480px) {
  /* line 761, ../scss/core/_common.scss */

  .main-container,
  .footer-container {
    padding: 30px;
  }
}

/* line 767, ../scss/core/_common.scss */

.footer-container {
  padding-top: 0px;
}

/* -------------------------------------------- *
 * Column Layouts
 */

/* line 775, ../scss/core/_common.scss */

.main:after,
.col-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

/* line 780, ../scss/core/_common.scss */

.col-left,
.col-right,
.col-main {
  padding: 0 10px;
}

/* line 786, ../scss/core/_common.scss */

.col-left {
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left;
}

/* line 792, ../scss/core/_common.scss */

.col-left img {
  max-width: 100%;
}

/* line 797, ../scss/core/_common.scss */

.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */
}

/* line 802, ../scss/core/_common.scss */

.col-right img {
  max-width: 100%;
}

/* line 807, ../scss/core/_common.scss */

.col-main {
  float: left;
  width: 75%;
}

/* line 813, ../scss/core/_common.scss */

.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0;
  /* Remove the 15px padding */
}

/* line 821, ../scss/core/_common.scss */

.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  /* Remove the 15px padding */
}

/* line 828, ../scss/core/_common.scss */

.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */
}

/* line 834, ../scss/core/_common.scss */

.col3-layout .col-right {
  width: 20.83333%;
}

/* line 838, ../scss/core/_common.scss */

.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%;
}

/* line 842, ../scss/core/_common.scss */

.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%;
}

/* line 847, ../scss/core/_common.scss */

.col3-layout .col-wrapper .col-left {
  width: 26.31579%;
}

@media only screen and (max-width: 1000px) {
  /* line 855, ../scss/core/_common.scss */

  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%;
  }

  /* line 863, ../scss/core/_common.scss */

  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }

  /* line 867, ../scss/core/_common.scss */

  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }

  /* line 872, ../scss/core/_common.scss */

  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}

@media only screen and (max-width: 770px) {
  /* line 880, ../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 {
    padding: 0;
    margin-bottom: 10px;
    float: none;
    width: auto;
  }

  /* line 901, ../scss/core/_common.scss */

  .col3-layout .col-wrapper {
    float: none;
    width: auto;
  }

  /* line 906, ../scss/core/_common.scss */

  .col-main {
    float: none;
    width: auto;
  }

  /* line 911, ../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 918, ../scss/core/_common.scss */

.col2-set {
  width: 100%;
}

/* line 921, ../scss/core/_common.scss */

.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}

@media only screen and (max-width: 770px) {
  /* line 921, ../scss/core/_common.scss */

  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}

/* line 931, ../scss/core/_common.scss */

.col2-set .col-1 {
  float: left;
  padding-left: 0;
}

/* line 936, ../scss/core/_common.scss */

.col2-set .col-2 {
  float: right;
  padding-right: 0;
}

@media only screen and (max-width: 479px) {
  /* line 942, ../scss/core/_common.scss */

  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 952, ../scss/core/_common.scss */

.col2-set .narrow {
  width: 33%;
}

/* line 956, ../scss/core/_common.scss */

.col2-set .wide {
  width: 65%;
}

/* line 960, ../scss/core/_common.scss */

.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */

@media only screen and (min-width: 771px) {
  /* line 969, ../scss/core/_common.scss */

  .top-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

/* -------------------------------------------- *
 * Global Site Notice
 */

/* line 980, ../scss/core/_common.scss */

.global-site-notice {
  background: #676157;
  color: #FFFFFF;
  font-size: 11px;
}

/* line 985, ../scss/core/_common.scss */

.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("../images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}

/* line 1000, ../scss/core/_common.scss */

.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */

/* line 1009, ../scss/core/_common.scss */

.promo-msg {
  color: #8caedc;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* -------------------------------------------- *
 * Grid
 */

/* line 1021, ../scss/core/_common.scss */

.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */

/* line 1028, ../scss/core/_common.scss */

.success-msg,
.onestepcheckout-success {
  color: #d93e70;
}

/* line 1032, ../scss/core/_common.scss */

.error-msg,
.onestepcheckout-error {
  color: #d93e70;
  font-weight: bold;
}

/* line 1037, ../scss/core/_common.scss */

.notice-msg {
  color: #E26703;
  font-weight: bold;
}

/* -------------------------------------------- *
 * Messages
 */

/* line 1046, ../scss/core/_common.scss */

.messages {
  width: 100%;
  padding: 0 !important;
}

/* line 1049, ../scss/core/_common.scss */

.std > .messages {
  margin-top: 20px;
}

/* line 1054, ../scss/core/_common.scss */

.messages .error-msg,
.messages .onestepcheckout-error,
.messages .success-msg,
.messages .onestepcheckout-success,
.messages .notice-msg {
  text-align: center;
  margin-left: 0;
}

/* line 1057, ../scss/core/_common.scss */

.messages .error-msg ul,
.messages .onestepcheckout-error ul,
.messages .success-msg ul,
.messages .onestepcheckout-success ul,
.messages .notice-msg ul {
  margin: 0;
}

/* line 1060, ../scss/core/_common.scss */

.messages .error-msg li,
.messages .onestepcheckout-error li,
.messages .success-msg li,
.messages .onestepcheckout-success li,
.messages .notice-msg li {
  margin: 0;
  list-style: none;
}

/* line 1066, ../scss/core/_common.scss */

.success-msg,
.onestepcheckout-success {
  border: 2px solid #d93e70;
  background-color: #fff;
  border-radius: 4px;
  color: #d93e70;
}

/* line 1072, ../scss/core/_common.scss */

.success-msg:before,
.onestepcheckout-success:before {
  font-family: "Fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  content: "\e811";
  /* checked icon */
  letter-spacing: 0;
  line-height: 1.3em;
  /* allow space for check mark */
  font-size: 26px;
  color: #d93e70;
  vertical-align: top;
  margin: 0;
  padding: 0;
  border: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  top: -1px;
  left: 12px;
}

/* line 1089, ../scss/core/_common.scss */

.error-msg,
.onestepcheckout-error {
  border: 2px solid #d93e70;
  background-color: #d93e70;
  border-radius: 4px;
  color: #fff;
  text-align: center;
}

/* line 1095, ../scss/core/_common.scss */

.error-msg:before,
.onestepcheckout-error:before {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 18px;
  position: absolute;
  top: 8px;
  left: 13px;
}

/* line 1105, ../scss/core/_common.scss */

.notice-msg {
  border: 2px solid #E26703;
  background-color: #F9EBE6;
  border-radius: 4px;
  color: #E26703;
  text-align: center;
}

/* line 1112, ../scss/core/_common.scss */

.error-msg,
.onestepcheckout-error,
.success-msg,
.onestepcheckout-success,
.notice-msg {
  padding: 8px 45px;
  position: relative;
  text-align: left;
  margin-bottom: 15px;
}

/* line 1117, ../scss/core/_common.scss */

.error-msg li,
.onestepcheckout-error li,
.success-msg li,
.onestepcheckout-success li,
.notice-msg li {
  font-size: 16px;
  line-height: 100%;
  font-weight: normal;
}

@media only screen and (min-width: 600px) {
  /* line 1117, ../scss/core/_common.scss */

  .error-msg li,
  .onestepcheckout-error li,
  .success-msg li,
  .onestepcheckout-success li,
  .notice-msg li {
    font-size: 18px;
  }
}

@media only screen and (min-width: 915px) {
  /* line 1128, ../scss/core/_common.scss */

  .order-list-grid .col-1 {
    width: 30%;
  }

  /* line 1132, ../scss/core/_common.scss */

  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px;
  }

  /* line 1137, ../scss/core/_common.scss */

  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0;
  }
}

/* -------------------------------------------- *
 * Page Popup
 */

/* line 1149, ../scss/core/_common.scss */

.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto;
}

/* line 1155, ../scss/core/_common.scss */

.page-popup h1 {
  margin: 0 0 0.5em;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Payment Methods
 */

/* line 1164, ../scss/core/_common.scss */

.payment-methods {
  margin-bottom: 20px;
}

/* line 1168, ../scss/core/_common.scss */

.payment-methods dt {
  padding: 5px 0;
}

/* line 1172, ../scss/core/_common.scss */

.payment-methods dd {
  padding-top: 10px;
}

/* line 1176, ../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 #CCCCCC;
  background: #F4F4F4;
}

/* line 1186, ../scss/core/_common.scss */

.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #CCCCCC;
  border-top: none;
  top: -11px;
  left: 30px;
}

/* line 1192, ../scss/core/_common.scss */

.payment-methods .form-list:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #F4F4F4;
  border-top: none;
  top: -10px;
  left: 30px;
}

/* line 1198, ../scss/core/_common.scss */

.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */

/* line 1206, ../scss/core/_common.scss */

.please-wait {
  display: inline-block;
  margin-left: 10px;
  margin-top: 5px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */
}

/* line 1214, ../scss/core/_common.scss */

.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */

/* line 1225, ../scss/core/_common.scss */

.price-box {
  margin: 7px 0;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1230, ../scss/core/_common.scss */

.price-box p {
  margin-bottom: 0;
}

/* line 1234, ../scss/core/_common.scss */

.price-notice {
  color: #A0A0A0;
}

/* line 1238, ../scss/core/_common.scss */

.price-box .price {
  color: #8caedc;
  font-size: 16px;
}

/* line 1243, ../scss/core/_common.scss */

.price-box .price,
.price {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1248, ../scss/core/_common.scss */

.price-box .price-label {
  color: #A0A0A0;
  white-space: nowrap;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1254, ../scss/core/_common.scss */

.price-box .minimal-price-link {
  padding-left: 1em;
  color: #8caedc;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}

/* line 1259, ../scss/core/_common.scss */

.price-box .minimal-price-link .label {
  color: #A0A0A0;
}

/* -------------------------------------------- *
 * Price Box - Special
 */

/* line 1268, ../scss/core/_common.scss */

.price-box .old-price,
.price-box .special-price {
  display: inline-block;
}

/* line 1272, ../scss/core/_common.scss */

.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none;
}

/* line 1276, ../scss/core/_common.scss */

.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
}

/* line 1282, ../scss/core/_common.scss */

.price-box .old-price .price {
  color: #A0A0A0;
  text-decoration: line-through;
}

/* line 1288, ../scss/core/_common.scss */

.price-box .special-price {
  color: #8caedc;
  padding-left: 1em;
}

/* line 1292, ../scss/core/_common.scss */

.price-box .special-price .price-label {
  color: #D84D3C;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */

/* line 1301, ../scss/core/_common.scss */

.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

/* line 1306, ../scss/core/_common.scss */

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */

/* line 1314, ../scss/core/_common.scss */

.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}

/* line 1323, ../scss/core/_common.scss */

.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}

/* line 1326, ../scss/core/_common.scss */

.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}

/* line 1329, ../scss/core/_common.scss */

.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */

/* line 1338, ../scss/core/_common.scss */

.item-options {
  font-size: 14px;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1342, ../scss/core/_common.scss */

.item-options:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1346, ../scss/core/_common.scss */

.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic;
}

/* line 1354, ../scss/core/_common.scss */

.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px;
}

/* line 1361, ../scss/core/_common.scss */

.truncated,
.truncated a.dots {
  cursor: help;
}

/* line 1366, ../scss/core/_common.scss */

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px;
}

/* line 1371, ../scss/core/_common.scss */

.truncated a.details:hover {
  text-decoration: none;
}

/* line 1376, ../scss/core/_common.scss */

.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
}

/* line 1381, ../scss/core/_common.scss */

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #8caedc;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px;
}

/* line 1392, ../scss/core/_common.scss */

.truncated .truncated_full_value .item-options:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #8caedc;
  border-top: none;
  left: 97px;
  top: -7px;
}

/* line 1399, ../scss/core/_common.scss */

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* line 1405, ../scss/core/_common.scss */

.truncated .show .item-options {
  display: block;
}

@media only screen and (max-width: 479px) {
  /* line 1411, ../scss/core/_common.scss */

  .truncated {
    cursor: inherit;
  }

  /* line 1414, ../scss/core/_common.scss */

  .truncated a.details {
    display: none;
  }

  /* line 1419, ../scss/core/_common.scss */

  .truncated .truncated_full_value .item-options {
    display: block;
    position: static;
    z-index: 1;
    width: 100%;
    border: none;
    background-color: transparent;
  }

  /* line 1427, ../scss/core/_common.scss */

  .truncated .truncated_full_value .item-options p {
    float: none;
  }

  /* line 1431, ../scss/core/_common.scss */

  .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}

/* -------------------------------------------- *
 * Printer Friendly Page
 */

/* line 1444, ../scss/core/_common.scss */

.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Add to links
 */

/* line 1454, ../scss/core/_common.scss */

.add-to-links {
  margin: 7px 0;
}

/* line 1457, ../scss/core/_common.scss */

.add-to-links a {
  display: inline-block;
  padding: 0px 3px 3px;
}

/* line 1463, ../scss/core/_common.scss */

.add-to-links .separator {
  display: none;
}

/* -------------------------------------------- *
 * Product Image
 */

/* line 1471, ../scss/core/_common.scss */

.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: inline-block;
  border: 1px solid #EDEDED;
}

@media only screen and (max-width: 770px) {
  /* line 1479, ../scss/core/_common.scss */

  body .product-img-box .product-image:hover {
    border-color: #EDEDED;
  }
}

/* line 1484, ../scss/core/_common.scss */

.no-touch .product-image:hover {
  border-color: #8caedc;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */

/* line 1492, ../scss/core/_common.scss */

.std ol {
  list-style: decimal outside;
  margin-bottom: 1.5em;
}

/* line 1497, ../scss/core/_common.scss */

.std ol li {
  margin-left: 2em;
}

/* line 1501, ../scss/core/_common.scss */

.std ul {
  list-style: disc outside;
  margin-bottom: 1.5em;
}

/* line 1506, ../scss/core/_common.scss */

.std ul li {
  margin-left: 2em;
}

/* line 1510, ../scss/core/_common.scss */

.std .note {
  color: #A0A0A0;
  font-size: 13px;
}

/* -------------------------------------------- *
 * Tabs
 */

/* line 1519, ../scss/core/_common.scss */

.tabs {
  margin-bottom: 10px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Toolbar
 */

/* line 1528, ../scss/core/_common.scss */

.toolbar {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  background: #F4F4F4;
  padding: 5px 10px 0px 10px;
}

/* line 1536, ../scss/core/_common.scss */

.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1541, ../scss/core/_common.scss */

.pager-no-toolbar {
  margin-bottom: 10px;
}

/* line 1546, ../scss/core/_common.scss */

.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px;
}

/* line 1550, ../scss/core/_common.scss */

.toolbar,
.pager {
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #727a85;
  line-height: 30px;
  font-size: 12px;
}

/* line 1558, ../scss/core/_common.scss */

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase;
}

/* line 1566, ../scss/core/_common.scss */

.sorter {
  float: left;
  margin-bottom: 5px;
}

/* line 1570, ../scss/core/_common.scss */

.sorter label {
  float: left;
  margin-right: 5px;
}

/* line 1574, ../scss/core/_common.scss */

.sorter label:after {
  content: ':';
}

/* line 1580, ../scss/core/_common.scss */

.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}

/* line 1585, ../scss/core/_common.scss */

.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}

/* line 1591, ../scss/core/_common.scss */

.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}

/* line 1593, ../scss/core/_common.scss */

.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}

/* line 1597, ../scss/core/_common.scss */

.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}

/* line 1599, ../scss/core/_common.scss */

.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

/* line 1605, ../scss/core/_common.scss */

.sorter > .view-mode {
  float: right;
}

/* line 1608, ../scss/core/_common.scss */

.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}

/* line 1615, ../scss/core/_common.scss */

.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}

/* line 1619, ../scss/core/_common.scss */

.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}

/* line 1623, ../scss/core/_common.scss */

.sorter > .view-mode .list {
  background-position: 11px -517px;
}

/* line 1627, ../scss/core/_common.scss */

.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

/* line 1633, ../scss/core/_common.scss */

.pager {
  float: right;
}

/* line 1636, ../scss/core/_common.scss */

.pager > .count-container {
  float: left;
}

/* line 1640, ../scss/core/_common.scss */

.pager .amount {
  float: left;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0;
}

/* line 1647, ../scss/core/_common.scss */

.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}

/* line 1652, ../scss/core/_common.scss */

.pager .limiter > label {
  padding-right: 5px;
}

/* line 1655, ../scss/core/_common.scss */

.pager .limiter > label:after {
  content: ':';
}

/* line 1661, ../scss/core/_common.scss */

.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

/* line 1669, ../scss/core/_common.scss */

.pages {
  float: right;
  overflow: hidden;
  margin-left: 15px;
}

/* line 1674, ../scss/core/_common.scss */

.pages strong {
  display: none;
}

/* line 1679, ../scss/core/_common.scss */

.pages li {
  float: left;
}

/* line 1683, ../scss/core/_common.scss */

.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 30px;
  width: 25px;
  height: 30px;
  padding: 0;
  color: #8caedc;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1700, ../scss/core/_common.scss */

.pages .current,
.pages .current:hover {
  color: #727a85;
  border: 1px solid #CCCCCC;
  width: 30px;
  background-color: #FFFFFF;
  cursor: default;
}

/* line 1709, ../scss/core/_common.scss */

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
}

/* line 1718, ../scss/core/_common.scss */

.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #8caedc;
}

/* line 1724, ../scss/core/_common.scss */

.pages .next:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #8caedc;
  border-right: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}

/* line 1731, ../scss/core/_common.scss */

.pages .next:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #5185ca;
  border-right: none;
}

/* line 1737, ../scss/core/_common.scss */

.pages .previous:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #8caedc;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}

/* line 1744, ../scss/core/_common.scss */

.pages .previous:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #5185ca;
  border-left: none;
}

@media only screen and (max-width: 479px) {
  /* line 1752, ../scss/core/_common.scss */

  .pager .amount--has-pages {
    display: none;
  }

  /* line 1756, ../scss/core/_common.scss */

  .pages {
    float: left;
  }

  /* line 1761, ../scss/core/_common.scss */

  .limiter label {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  /* line 1769, ../scss/core/_common.scss */

  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }

  /* line 1774, ../scss/core/_common.scss */

  .col1-layout .pager {
    float: left;
    clear: both;
  }

  /* line 1778, ../scss/core/_common.scss */

  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }

  /* line 1783, ../scss/core/_common.scss */

  .col1-layout .pager .count-container {
    float: right;
  }
}

@media only screen and (max-width: 979px) {
  /* line 1795, ../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 1800, ../scss/core/_common.scss */

  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: left;
    clear: both;
  }

  /* line 1804, ../scss/core/_common.scss */

  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0;
  }

  /* line 1809, ../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 1818, ../scss/core/_common.scss */

  .toolbar .view-mode > label {
    display: none;
  }
}

/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */

/* line 1830, ../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 1834, ../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 {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #8caedc;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

/* line 1840, ../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 {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #5185ca;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

/* line 1850, ../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 {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #8caedc;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

/* line 1856, ../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 {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #5185ca;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

/* line 1868, ../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 1878, ../scss/core/_common.scss */

.a-center {
  text-align: center;
}

/* line 1882, ../scss/core/_common.scss */

.a-right,
.align-right {
  text-align: right;
}

/* line 1887, ../scss/core/_common.scss */

.no-display {
  display: none !important;
}

/* line 1891, ../scss/core/_common.scss */

.nobr,
.nowrap {
  white-space: nowrap;
}

/* line 1896, ../scss/core/_common.scss */

.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */

/* line 1904, ../scss/core/_common.scss */

.hidden {
  display: none;
}

/* ============================================ *
 * Print Styles
 * ============================================ */

/* line 1912, ../scss/core/_common.scss */

.page-print .print-head {
  margin: 0 0 15px;
}

/* line 1916, ../scss/core/_common.scss */

.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */

/* -------------------------------------------- *
 * Fieldsets
 */

/* line 36, ../scss/core/_form.scss */

.fieldset p {
  margin-bottom: 7px;
}

/* line 40, ../scss/core/_form.scss */

.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px;
}

/* line 48, ../scss/core/_form.scss */

.fieldset + .fieldset {
  margin-top: 5px;
}

/* line 52, ../scss/core/_form.scss */

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #57626f;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED;
}

/* -------------------------------------------- *
 * Input Box
 */

/* line 63, ../scss/core/_form.scss */

.input-box {
  padding-top: 2px;
}

/* line 66, ../scss/core/_form.scss */

.input-box:after {
  content: '';
  display: table;
  clear: both;
}

/* line 72, ../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 81, ../scss/core/_form.scss */

.input-box .v-fix {
  float: left;
  margin-right: 5px;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Labels
 */

/* line 91, ../scss/core/_form.scss */

label {
  display: inline-block;
  font-size: 13px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* line 99, ../scss/core/_form.scss */

label.required:after,
span.required:after {
  content: ' *';
  color: #d93e70;
  font-weight: normal;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}

/* line 108, ../scss/core/_form.scss */

label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */

/* line 117, ../scss/core/_form.scss */

.input-hint {
  color: #A0A0A0;
  font-size: 12px;
}

/* -------------------------------------------- *
 * Select
 */

/* line 126, ../scss/core/_form.scss */

select {
  font-size: 14px;
}

/* line 130, ../scss/core/_form.scss */

select + select {
  margin-left: 5px;
}

/* line 134, ../scss/core/_form.scss */

select[multiple] {
  width: 270px;
  border: 1px solid #C0C0C0;
  font-size: 15px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Textarea
 */

/* line 145, ../scss/core/_form.scss */

textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Inputs
 */

/* line 156, ../scss/core/_form.scss */

.input-text,
.nice-select,
form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #C0C0C0;
  background: #FFFFFF;
  font-size: 15px;
}

/* line 163, ../scss/core/_form.scss */

.input-text:focus,
.nice-select:focus,
form textarea:focus {
  border: 1px solid #7394bf;
}

/* line 168, ../scss/core/_form.scss */

.input-text.validation-failed,
.validation-failed.nice-select,
form textarea.validation-failed {
  border-color: #d93e70;
}

/* line 173, ../scss/core/_form.scss */

.input-text.validation-failed:focus,
.validation-failed.nice-select:focus,
form textarea.validation-failed:focus {
  outline-color: #ec9fb8;
}

/* line 177, ../scss/core/_form.scss */

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 30px;
  padding: 0 8px;
}

/* line 187, ../scss/core/_form.scss */

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 365px;
  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 199, ../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 210, ../scss/core/_form.scss */

.ie8 .input-text,
.ie8 .nice-select,
.ie8 form textarea,
form .ie8 textarea {
  max-width: none;
}

/* -------------------------------------------- *
 * Inputs - Quantity
 */

/* line 218, ../scss/core/_form.scss */

input[type=number].qty,
input[type=text].qty {
  width: 3em;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------- *
 * Placeholder
 */

/* line 229, ../scss/core/_form.scss */

::-webkit-input-placeholder {
  color: #A0A0A0;
}

/* line 233, ../scss/core/_form.scss */

input:-moz-placeholder {
  color: #A0A0A0;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */

/* line 241, ../scss/core/_form.scss */

.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

/* -------------------------------------------- *
 * Validation
 */

/* line 252, ../scss/core/_form.scss */

p.required,
.validation-advice {
  margin: 5px 0 0;
  color: #d93e70;
  font-size: 13px;
}

/* ============================================ *
 * Form List
 * ============================================ */

/* line 265, ../scss/core/_form.scss */

.form-list > li {
  margin-bottom: 10px;
}

/* line 268, ../scss/core/_form.scss */

.form-list select {
  margin-top: 4px;
  width: 365px;
  max-width: 100%;
}

/* line 274, ../scss/core/_form.scss */

.form-list .input-range .input-text,
.form-list .input-range .nice-select,
.form-list .input-range form textarea,
form .form-list .input-range textarea {
  width: 74px;
}

/* line 278, ../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 286, ../scss/core/_form.scss */

.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .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 291, ../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,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}

/* line 295, ../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,
.product-options ul.options-list div.input-box:after {
  display: none;
}

/* line 300, ../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,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px;
}

/* line 308, ../scss/core/_form.scss */

.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
.product-options ul.options-list label {
  color: #727a85;
  background-color: #F4F4F4;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}

/* line 317, ../scss/core/_form.scss */

.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  background-color: #ededed;
}

/* line 323, ../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,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}

/* line 327, ../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,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

/* line 334, ../scss/core/_form.scss */

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}

/* line 342, ../scss/core/_form.scss */

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}

/* line 349, ../scss/core/_form.scss */

.form-list .control {
  margin-top: 10px;
}

/* line 352, ../scss/core/_form.scss */

.form-list .control label {
  float: none;
}

/* line 355, ../scss/core/_form.scss */

.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}

/* line 359, ../scss/core/_form.scss */

.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

/* line 368, ../scss/core/_form.scss */

form .form-instructions {
  font-style: italic;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  color: #A0A0A0;
}

/* ============================================ *
 * 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;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  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 60, ../scss/core/_table.scss */

.data-table tbody td,
.data-table tfoot td {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 65, ../scss/core/_table.scss */

.data-table tfoot tr {
  background: #F4F4F4;
}

/* line 69, ../scss/core/_table.scss */

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */

/* line 78, ../scss/core/_table.scss */

.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
}

/* line 83, ../scss/core/_table.scss */

.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

/* line 89, ../scss/core/_table.scss */

.info-table th,
.info-table td {
  vertical-align: top;
}

/* line 94, ../scss/core/_table.scss */

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

/* line 99, ../scss/core/_table.scss */

.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */

/* line 108, ../scss/core/_table.scss */

.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #C0C0C0;
}

/* line 113, ../scss/core/_table.scss */

.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #C0C0C0;
  padding: 6px;
  background-color: transparent;
}

/* line 120, ../scss/core/_table.scss */

.zebra-table tr {
  background-color: #EEEDED;
}

/* line 124, ../scss/core/_table.scss */

.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */

@media only screen and (max-width: 479px) {
  /* line 235, ../scss/core/_table.scss */

  .linearize-table {
    /* Helpers */
  }

  /* line 135, ../scss/core/_table.scss */

  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }

  /* line 141, ../scss/core/_table.scss */

  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }

  /* line 146, ../scss/core/_table.scss */

  .linearize-table thead th.lin-hide {
    display: none;
  }

  /* line 150, ../scss/core/_table.scss */

  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }

  /* line 154, ../scss/core/_table.scss */

  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }

  /* line 159, ../scss/core/_table.scss */

  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }

  /* line 165, ../scss/core/_table.scss */

  .linearize-table tbody td.lin-hide {
    display: none;
  }

  /* line 169, ../scss/core/_table.scss */

  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }

  /* line 173, ../scss/core/_table.scss */

  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold;
  }

  /* line 178, ../scss/core/_table.scss */

  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }

  /* line 183, ../scss/core/_table.scss */

  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }

  /* line 191, ../scss/core/_table.scss */

  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }

  /* line 196, ../scss/core/_table.scss */

  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }

  /* line 200, ../scss/core/_table.scss */

  .linearize-table tfoot td {
    display: block;
    float: left;
  }

  /* line 205, ../scss/core/_table.scss */

  .linearize-table tfoot td.lin-hide {
    display: none;
  }

  /* line 209, ../scss/core/_table.scss */

  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }

  /* line 214, ../scss/core/_table.scss */

  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }

  /* line 221, ../scss/core/_table.scss */

  .linearize-table .linearize-hide {
    display: none;
  }

  /* line 225, ../scss/core/_table.scss */

  .linearize-table .linearize-unpad {
    padding: 0;
  }

  /* line 229, ../scss/core/_table.scss */

  .linearize-table .linearize-show {
    display: block;
  }
}

@media only screen and (max-width: 599px) {
  /* line 241, ../scss/core/_table.scss */

  .linearize-table-large {
    /* Helpers */
  }

  /* line 135, ../scss/core/_table.scss */

  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }

  /* line 141, ../scss/core/_table.scss */

  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }

  /* line 146, ../scss/core/_table.scss */

  .linearize-table-large thead th.lin-hide {
    display: none;
  }

  /* line 150, ../scss/core/_table.scss */

  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }

  /* line 154, ../scss/core/_table.scss */

  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }

  /* line 159, ../scss/core/_table.scss */

  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }

  /* line 165, ../scss/core/_table.scss */

  .linearize-table-large tbody td.lin-hide {
    display: none;
  }

  /* line 169, ../scss/core/_table.scss */

  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }

  /* line 173, ../scss/core/_table.scss */

  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold;
  }

  /* line 178, ../scss/core/_table.scss */

  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }

  /* line 183, ../scss/core/_table.scss */

  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }

  /* line 191, ../scss/core/_table.scss */

  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }

  /* line 196, ../scss/core/_table.scss */

  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }

  /* line 200, ../scss/core/_table.scss */

  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }

  /* line 205, ../scss/core/_table.scss */

  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }

  /* line 209, ../scss/core/_table.scss */

  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }

  /* line 214, ../scss/core/_table.scss */

  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }

  /* line 221, ../scss/core/_table.scss */

  .linearize-table-large .linearize-hide {
    display: none;
  }

  /* line 225, ../scss/core/_table.scss */

  .linearize-table-large .linearize-unpad {
    padding: 0;
  }

  /* line 229, ../scss/core/_table.scss */

  .linearize-table-large .linearize-show {
    display: block;
  }
}

@media only screen and (min-width: 600px) {
  /* line 247, ../scss/core/_table.scss */

  .linearize-table .linearize-collapse {
    display: none;
  }
}

/**** Font Initialize ****/

@font-face {
  font-family: 'Proxima-Nova-Semibold';
  src: url("../fonts/proxima-nova/proximanova-semibold-webfont.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/proxima-nova/proximanova-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima-nova/proximanova-semibold-webfont.woff") format("woff"), url("../fonts/proxima-nova/proximanova-semibold-webfont.ttf") format("truetype"), url("../fonts/proxima-nova/proximanova-semibold-webfont.svg#proximanova-semibold") format("svg");
  /* Legacy iOS */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima-Nova-Regular';
  src: url("../fonts/proxima-nova/proximanova-regular-webfont.eot");
  src: url("../fonts/proxima-nova/proximanova-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima-nova/proximanova-regular-webfont.woff") format("woff"), url("../fonts/proxima-nova/proximanova-regular-webfont.ttf") format("truetype"), url("../fonts/proxima-nova/proximanova-regular-webfont.svg#proximanova-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima-Nova-Thin';
  src: url("../fonts/proxima-nova/proximanova-thin-webfont.eot");
  src: url("../fonts/proxima-nova/proximanova-thin-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima-nova/proximanova-thin-webfont.woff") format("woff"), url("../fonts/proxima-nova/proximanova-thin-webfont.ttf") format("truetype"), url("../fonts/proxima-nova/proximanova-thin-webfont.svg#proximanova-thin") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima-Nova-Light';
  src: url("../fonts/proxima-nova/proximanova-light-webfont.eot");
  src: url("../fonts/proxima-nova/proximanova-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima-nova/proximanova-light-webfont.woff") format("woff"), url("../fonts/proxima-nova/proximanova-light-webfont.ttf") format("truetype"), url("../fonts/proxima-nova/proximanova-light-webfont.svg#proximanova-light") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima-Nova-Bold';
  src: url("../fonts/proxima-nova/proximanova-bold-webfont.eot");
  src: url("../fonts/proxima-nova/proximanova-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima-nova/proximanova-bold-webfont.woff") format("woff"), url("../fonts/proxima-nova/proximanova-bold-webfont.ttf") format("truetype"), url("../fonts/proxima-nova/proximanova-bold-webfont.svg#proximanova-bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima-Nova-Cond-Semibold';
  src: url("../fonts/proxima-nova/proximanovacond-semibold-webfont.eot");
  src: url("../fonts/proxima-nova/proximanovacond-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proxima-nova/proximanovacond-semibold-webfont.woff2") format("woff2"), url("../fonts/proxima-nova/proximanovacond-semibold-webfont.woff") format("woff"), url("../fonts/proxima-nova/proximanovacond-semibold-webfont.ttf") format("truetype"), url("../fonts/proxima-nova/proximanovacond-semibold-webfont.svg#proximanovacond-semibold") format("svg");
  font-weight: normal;
  font-style: normal;
}

/**** Global Style ****/

/* line 2, ../scss/core/_bevilles-global-styles.scss */

html body {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 6, ../scss/core/_bevilles-global-styles.scss */

p.required,
.validation-advice {
  color: #d988b9;
}

/* line 10, ../scss/core/_bevilles-global-styles.scss */

.next-slider {
  background: url(../images/next_gray.png) no-repeat 0 0;
  width: 15px;
  height: 28px;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/* line 21, ../scss/core/_bevilles-global-styles.scss */

.prev-slider {
  background: url(../images/prev_gray.png) no-repeat 0 0;
  width: 15px;
  height: 28px;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

/* line 32, ../scss/core/_bevilles-global-styles.scss */

.prev-slider:hover {
  background: url(../images/prev_blue.png) no-repeat 0 0;
  width: 15px;
  height: 28px;
  background-size: 100% 100%;
}

/* line 39, ../scss/core/_bevilles-global-styles.scss */

.next-slider:hover {
  background: url(../images/next_blue.png) no-repeat 0 0;
  width: 15px;
  height: 28px;
  background-size: 100% 100%;
}

/* line 47, ../scss/core/_bevilles-global-styles.scss */

.price-box .special-price {
  padding: 0;
  margin: 0;
}

/* line 51, ../scss/core/_bevilles-global-styles.scss */

.price-box .after-sale {
  display: none;
}

/* line 54, ../scss/core/_bevilles-global-styles.scss */

.price-box .save {
  text-transform: uppercase;
  font-size: 18px;
  color: #d26aa9;
  font-family: "Proxima-Nova-Bold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 62, ../scss/core/_bevilles-global-styles.scss */

.please-wait {
  position: fixed;
  left: 50%;
  top: 50%;
}

/* line 68, ../scss/core/_bevilles-global-styles.scss */

.limit-width,
.messages {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

/*** Style for Forgot password page Large Screen ***/

/* line 77, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-title h1,
.body-content.messages .main .col-main .forgot-password-title h1 {
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 34px;
}

/* line 83, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-content h2,
.body-content.messages .main .col-main .forgot-password-content h2 {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 32px;
  margin-bottom: 35px;
}

/* line 88, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-content p,
.body-content.messages .main .col-main .forgot-password-content p {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
}

/* line 92, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-content .fieldset,
.body-content.messages .main .col-main .forgot-password-content .fieldset {
  margin-left: 0;
}

/* line 95, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-content .fieldset .form-list input,
.body-content.messages .main .col-main .forgot-password-content .fieldset .form-list input {
  margin-left: 0;
}

/* line 100, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-content .buttons-set,
.body-content.messages .main .col-main .forgot-password-content .buttons-set {
  border: none;
  padding-top: 10px;
}

/* line 103, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-content .buttons-set .back-link a,
.body-content.messages .main .col-main .forgot-password-content .buttons-set .back-link a {
  font-size: 18px;
  color: #76848f;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 108, ../scss/core/_bevilles-global-styles.scss */

.body-content.limit-width .main .col-main .forgot-password-content .buttons-set button,
.body-content.messages .main .col-main .forgot-password-content .buttons-set button {
  height: 47px;
}

/*** End Style for Forgot password page***/

/* line 117, ../scss/core/_bevilles-global-styles.scss */

.hardware-trigger {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* line 122, ../scss/core/_bevilles-global-styles.scss */

.wrapper a {
  cursor: pointer !important;
  /* make sure all <a> have finger on */
}

/* line 126, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module {
  width: 100%;
  display: inline-block;
  margin-bottom: 5px;
  text-align: center;
}

/* line 131, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module.include-bg {
  background: #f1f2f4;
  padding-bottom: 30px;
}

/* line 135, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module .module-header {
  text-align: center;
  padding-bottom: 15px;
  margin-top: 30px;
  position: relative;
  font-size: 32px;
  line-height: 24px;
  color: #57626f;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* line 145, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module .module-header:after {
  content: " ";
  position: absolute;
  width: 50px;
  border-bottom: 2px solid #3399cc;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
}

/* line 155, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module .module-content {
  display: block;
}

/* line 157, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module .module-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* line 162, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module .module-content .row {
  display: inline-block;
  width: 100%;
  margin: 20px 0;
}

/* line 167, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module .module-content .first {
  margin-left: 0;
}

/* line 170, ../scss/core/_bevilles-global-styles.scss */

.wrapper .module .module-content .last {
  margin-right: 0;
}

/* line 176, ../scss/core/_bevilles-global-styles.scss */

.wrapper .breadcrumbs {
  display: inline-block;
  width: 100%;
  margin: 30px 0 0 0;
}

/* line 182, ../scss/core/_bevilles-global-styles.scss */

.wrapper .breadcrumbs ul li a::after {
  content: ">";
  padding-left: 5px;
  padding-right: 5px;
}

/* line 187, ../scss/core/_bevilles-global-styles.scss */

.wrapper .breadcrumbs ul li a {
  text-decoration: none;
  color: #8caedc;
}

/* line 191, ../scss/core/_bevilles-global-styles.scss */

.wrapper .breadcrumbs ul li strong {
  color: #999999;
}

/* line 196, ../scss/core/_bevilles-global-styles.scss */

.wrapper .breadcrumbs span {
  float: none;
}

/* line 199, ../scss/core/_bevilles-global-styles.scss */

.wrapper .breadcrumbs li {
  float: left;
  font-size: 10px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

/* line 207, ../scss/core/_bevilles-global-styles.scss */

.skip-links .skip-link,
.mobile,
.skip-links.tablet {
  display: none;
}

/* line 212, ../scss/core/_bevilles-global-styles.scss */

.img-desktop,
.img-desktop.img-tablet {
  display: block;
}

/* line 217, ../scss/core/_bevilles-global-styles.scss */

.img-mobile,
.img-tablet {
  display: none;
}

/* line 221, ../scss/core/_bevilles-global-styles.scss */

.pages a,
.pages .current {
  line-height: 30px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  color: #8caedc;
}

/* line 228, ../scss/core/_bevilles-global-styles.scss */

.pages a:hover {
  text-decoration: none;
}

/* line 232, ../scss/core/_bevilles-global-styles.scss */

.pages .next_text a,
.pages .previous_text a {
  font-weight: 400;
}

/*** Start Header ***/

/* line 240, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-wrapper a {
  color: #57626f;
}

/* line 243, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links {
  background: #f1f2f4;
  width: 100%;
  display: inline-block;
  padding: 17px 0 15px;
  vertical-align: top;
}

/* line 249, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links a {
  background: transparent;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 14px;
  height: auto;
  padding: 0;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 258, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links a,
.wrapper .meta-links span {
  display: inline;
  margin: 0 1px;
  line-height: 100%;
}

/* line 263, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .static-text {
  float: left;
  text-transform: uppercase;
  font-size: 12px;
  color: #77848f;
}

/* line 268, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .static-text a {
  color: #7293c2;
  margin-left: 5px;
}

/* line 273, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .account-cart-wrapper {
  float: right;
  position: relative;
  line-height: 14px;
  font-size: 12px;
}

/* line 278, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .account-cart-wrapper:after {
  content: '';
  display: table;
  clear: both;
}

/* line 281, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .account-cart-wrapper .header-wishlist,
.wrapper .meta-links .account-cart-wrapper .header-compare {
  line-height: 0;
  padding-top: 0;
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 281, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .meta-links .account-cart-wrapper .header-wishlist,
  .wrapper .meta-links .account-cart-wrapper .header-compare {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 281, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .meta-links .account-cart-wrapper .header-wishlist,
  .wrapper .meta-links .account-cart-wrapper .header-compare {
    display: block;
  }
}

/* line 286, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .account-cart-wrapper .header-wishlist a span,
.wrapper .meta-links .account-cart-wrapper .header-compare a span {
  margin: 0;
}

/* line 290, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .account-cart-wrapper .header-wishlist a .label:after,
.wrapper .meta-links .account-cart-wrapper .header-compare a .label:after {
  content: "\00a0";
  width: 2px;
  display: inline;
}

/* line 299, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .header-minicart {
  float: right;
  margin-left: 30px;
  position: relative;
  padding-right: 0;
}

/* line 304, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .header-minicart .skip-link .label {
  margin-right: 28px;
  float: left;
  display: inline-block;
  line-height: 14px;
}

/* line 310, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .header-minicart .count {
  margin: 4px 5px 5px 0;
  float: left;
}

/* line 314, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .header-minicart .icon-cart {
  background: url(../images/cart.png) no-repeat;
  width: 21px;
  height: 28px;
  background-size: 100%;
  position: absolute;
  left: 32px;
  top: -10px;
}

/* line 325, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .limit-width ul.top-header-left,
.wrapper .meta-links .messages ul.top-header-left {
  width: auto;
  line-height: 14px;
  text-transform: uppercase;
  float: left;
  font-size: 12px;
  color: #d88bb9;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 333, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .limit-width ul.top-header-left > li,
.wrapper .meta-links .messages ul.top-header-left > li {
  display: inline;
}

/* line 335, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .limit-width ul.top-header-left > li a,
.wrapper .meta-links .messages ul.top-header-left > li a {
  color: #6d8ec1;
  letter-spacing: 1px;
  padding-left: 5px;
}

/* line 340, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .limit-width ul.top-header-left > li:first-child,
.wrapper .meta-links .messages ul.top-header-left > li:first-child {
  color: #57626f;
  padding-right: 25px;
}

/* line 343, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .limit-width ul.top-header-left > li:first-child span,
.wrapper .meta-links .messages ul.top-header-left > li:first-child span {
  color: #57626f;
}

/* line 347, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .limit-width ul.top-header-left > li:first-child + li,
.wrapper .meta-links .messages ul.top-header-left > li:first-child + li {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 347, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .meta-links .limit-width ul.top-header-left > li:first-child + li,
  .wrapper .meta-links .messages ul.top-header-left > li:first-child + li {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 347, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .meta-links .limit-width ul.top-header-left > li:first-child + li,
  .wrapper .meta-links .messages ul.top-header-left > li:first-child + li {
    display: inline;
  }
}

/* line 351, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .limit-width ul.top-header-left > li span,
.wrapper .meta-links .messages ul.top-header-left > li span {
  color: #d26aa9;
}

/* line 358, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-ost .meta-links {
  padding-bottom: 17px;
}

/* line 361, ../scss/core/_bevilles-global-styles.scss */

.wrapper .page-header-container {
  margin-top: 32px;
}

/* line 364, ../scss/core/_bevilles-global-styles.scss */

.wrapper .logo {
  width: 249px;
  padding: 0;
  min-height: inherit;
}

/* line 368, ../scss/core/_bevilles-global-styles.scss */

.wrapper .logo img {
  max-width: 100%;
  height: auto;
}

/* line 373, ../scss/core/_bevilles-global-styles.scss */

.wrapper .store-locator {
  float: right;
  margin-top: 17px;
  margin-top: 0;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-right: 40px;
}

@media only screen and (min-width: 600px) {
  /* line 373, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .store-locator {
    margin-top: 9px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 373, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .store-locator {
    margin-top: 9px;
  }
}

/* line 381, ../scss/core/_bevilles-global-styles.scss */

.wrapper .store-locator:before {
  content: "";
  background: url(../images/locator.png) no-repeat;
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 20px;
  background-size: 100%;
}

/* line 391, ../scss/core/_bevilles-global-styles.scss */

.wrapper .store-locator a {
  font-size: 18px;
  color: #77848f;
}

/* line 396, ../scss/core/_bevilles-global-styles.scss */

.wrapper #header-search {
  position: relative;
  float: right;
  top: auto;
  margin-top: 0;
  bottom: -65px;
  right: 0;
  padding: 0;
  height: auto;
  width: auto;
}

@media only screen and (min-width: 600px) {
  /* line 396, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #header-search {
    margin-top: 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 396, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #header-search {
    margin-top: 0;
  }
}

@media only screen and (min-width: 600px) {
  /* line 396, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #header-search {
    bottom: 0;
  }
}

/* line 407, ../scss/core/_bevilles-global-styles.scss */

.wrapper #header-search .topsearch-wrapper {
  display: block;
  float: none;
  vertical-align: top;
}

@media only screen and (min-width: 600px) {
  /* line 407, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #header-search .topsearch-wrapper {
    display: inline-block;
  }
}

@media only screen and (min-width: 600px) {
  /* line 407, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #header-search .topsearch-wrapper {
    float: right;
  }
}

/* line 413, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox {
  margin: 0;
  position: relative;
}

/* line 416, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox .algolia-autocomplete {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* line 416, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #algolia-searchbox .algolia-autocomplete {
    width: 100%;
  }
}

@media only screen and (min-width: 980px) {
  /* line 416, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #algolia-searchbox .algolia-autocomplete {
    width: auto;
  }
}

/* line 419, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox .algolia-search-input {
  font-size: 12px;
  width: 405px;
  width: 100%;
  height: 47px;
  line-height: 1;
  margin: 0;
  padding-left: 15px;
  -webkit-appearance: none;
}

@media only screen and (min-width: 600px) {
  /* line 419, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #algolia-searchbox .algolia-search-input {
    width: 100%;
  }
}

@media only screen and (min-width: 980px) {
  /* line 419, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #algolia-searchbox .algolia-search-input {
    width: 405px;
  }
}

/* line 429, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox .search-icon {
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #e4e7ea;
  height: 47px;
  width: 47px;
  cursor: pointer;
}

/* line 437, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox .search-icon:after {
  content: "";
  background: url(../images/search.png) no-repeat 0 0;
  width: 23px;
  height: 23px;
  position: absolute;
  right: 13px;
  top: 11px;
}

/* line 446, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox .search-icon:hover {
  background: #8CAEDC;
  border-radius: 3px;
}

/* line 449, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox .search-icon:hover:after {
  background: url(../images/search_hover.png) no-repeat 0 0;
}

/* line 454, ../scss/core/_bevilles-global-styles.scss */

.wrapper #algolia-searchbox .clear-query-autocomplete {
  display: none !important;
}

/* line 460, ../scss/core/_bevilles-global-styles.scss */

span.aa-dropdown-menu.aa-with-products.aa-with-1.aa-with-0 {
  z-index: 9999 !important;
}

/*** End Header ***/

/*** Start Mini Cart ***/

/* line 467, ../scss/core/_bevilles-global-styles.scss */

.wrapper #header-cart:before {
  content: "";
  position: absolute;
  right: 35px;
  top: -17px;
  background: url(../images/mini_cart_up.png) no-repeat 0 0;
  width: 32px;
  width: 20px;
  height: 12px;
  background-size: 100% 100%;
}

@media only screen and (min-width: 600px) {
  /* line 467, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #header-cart:before {
    width: 32px;
  }
}

@media only screen and (min-width: 600px) {
  /* line 467, ../scss/core/_bevilles-global-styles.scss */

  .wrapper #header-cart:before {
    height: 17px;
  }
}

/* line 480, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .mini-cart-divider {
  width: 100%;
  margin-top: 45px;
}

/* line 484, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .mini-products-list {
  padding: 10px 15px 0 15px;
}

/* line 486, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .mini-products-list a.product-image {
  margin-bottom: 20px !important;
}

/* line 489, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .mini-products-list li.last {
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 0;
}

/* line 493, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .mini-products-list li {
  padding: 10px 0;
}

/* line 497, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart {
  z-index: 9999999;
  width: 390px;
  top: 29px;
}

/* line 501, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .block-subtitle {
  float: left;
  color: #a2acb5;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 400;
  line-height: initial;
  text-transform: capitalize;
  font-size: 14px;
  text-align: left;
  margin: 20px 0 0 20px;
  padding: 0;
}

/* line 512, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .block-subtitle .close {
  display: none;
  position: absolute;
  top: 10px;
  font-size: 40px;
  right: 4px;
  float: none;
  width: auto;
}

/* line 522, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .subtotal {
  float: right;
  background: none;
  margin-top: 18px;
  margin-right: 15px;
  line-height: 100%;
}

/* line 528, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .subtotal .label {
  font-size: 17px;
  color: #77848f;
  text-transform: none;
  margin-right: 10px;
}

/* line 534, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .subtotal .price {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #76848f;
  font-size: 17px;
}

/* line 540, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .product-image {
  margin-right: 15px;
}

/* line 542, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .product-image img {
  width: 70px;
  height: 70px;
  border: 1px solid #dddddd;
}

/* line 548, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .product-details .product-name {
  width: 200px;
  min-height: 36px;
  padding-top: 0;
}

/* line 552, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .product-details .product-name a {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: none;
  line-height: 17px;
  color: #333;
}

/* line 561, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .action-links {
  float: right;
  margin-top: 9px;
}

/* line 564, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .action-links .sperate {
  margin: 0 5px;
}

/* line 567, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .action-links .sperate,
.wrapper .header-minicart #header-cart .action-links a {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: #8caedc;
}

/* line 574, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .info-wrapper {
  float: left;
  margin-top: 10px;
}

/* line 577, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .info-wrapper th {
  display: none;
}

/* line 580, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .info-wrapper .price {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #76848f;
  font-size: 16px;
  line-height: 19px;
}

/* line 585, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart #header-cart .info-wrapper .price .last-price {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}

/* line 592, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .minicart-actions-bot {
  margin: 15px 0;
  text-align: center;
}

/* line 595, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .minicart-actions-bot .cart-link {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: none;
  font-size: 17px;
  font-weight: normal;
  color: #7293c2;
}

/* line 603, ../scss/core/_bevilles-global-styles.scss */

.wrapper .header-minicart .empty {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

/* line 610, ../scss/core/_bevilles-global-styles.scss */

.wrapper .qty-wrapper {
  display: none;
}

/* line 614, ../scss/core/_bevilles-global-styles.scss */

.wrapper .minicart-actions-top {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
  clear: both;
}

/* line 618, ../scss/core/_bevilles-global-styles.scss */

.wrapper .minicart-actions-top .minicart a {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  background: #D93E70;
  line-height: initial;
  padding: 11px 128px;
  border: 1px solid #D93E70;
  border-radius: 3px;
  display: block;
  margin: 15px 15px 0;
}

/* line 630, ../scss/core/_bevilles-global-styles.scss */

.wrapper .minicart-actions-top .minicart a:hover {
  background: #fa437e;
}

/* line 636, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .header-minicart a.desktop {
  position: relative;
}

/* line 640, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .header-minicart a.desktop .count {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 45px;
  background: #D26AA9;
  margin: 0;
  width: auto;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  color: #fff;
  line-height: 16px;
}

/* line 656, ../scss/core/_bevilles-global-styles.scss */

.header-minicart .sub-total .price {
  font-size: 15px;
  font-weight: 400 !important;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 14px;
  margin-left: 15px;
  float: right;
}

/* line 665, ../scss/core/_bevilles-global-styles.scss */

.wrapper .meta-links .account-cart-wrapper span {
  font-size: 12px;
  line-height: 14px;
  height: auto;
  padding: 0;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/*** Start Mini Cart ***/

/*** Common styles for Catalog ***/

/* line 677, ../scss/core/_bevilles-global-styles.scss */

.products-list .amlabel-txt2 {
  height: 38px;
  width: 70px !important;
  background-size: auto;
}

/* line 683, ../scss/core/_bevilles-global-styles.scss */

.wrapper .product-labels-wrapper {
  z-index: 800;
  position: absolute;
}

/* line 686, ../scss/core/_bevilles-global-styles.scss */

.wrapper .product-labels-wrapper .amlabel-table {
  display: inline-block;
  position: relative;
  float: left;
  margin-right: 15px;
}

/* line 692, ../scss/core/_bevilles-global-styles.scss */

.wrapper .product-labels-wrapper .amlabel-table td {
  width: 122px;
  height: 63px;
  background-size: 100% 100% !important;
}

/*** end Common styles for Catalog ***/

/*** Recently Viewed block ***/

/* line 702, ../scss/core/_bevilles-global-styles.scss */

#recently-viewed-items .item .product-image {
  width: 122px;
}

/* line 706, ../scss/core/_bevilles-global-styles.scss */

#recently-viewed-items .item .product-image img {
  width: 100%;
  height: auto;
}

/* line 711, ../scss/core/_bevilles-global-styles.scss */

#recently-viewed-items .item .product-details {
  display: none;
}

/* line 715, ../scss/core/_bevilles-global-styles.scss */

#recently-viewed-items:after {
  content: '';
  display: table;
  clear: both;
}

/* line 718, ../scss/core/_bevilles-global-styles.scss */

#recently-viewed-items .owl-wrapper-outer {
  float: left;
  overflow: hidden;
  width: 100%;
}

/* line 726, ../scss/core/_bevilles-global-styles.scss */

#recently-viewed-items .owl-item {
  float: left;
}

/* line 729, ../scss/core/_bevilles-global-styles.scss */

#recently-viewed-items li.item {
  float: left;
  clear: none;
  margin: 0 11px 11px 11px;
  max-width: 122px;
}

/* line 737, ../scss/core/_bevilles-global-styles.scss */

.block.block-viewed {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 35px;
}

/* line 742, ../scss/core/_bevilles-global-styles.scss */

.block.block-viewed .block-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  margin-top: 30px;
  border: none;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #ddd;
}

/* line 750, ../scss/core/_bevilles-global-styles.scss */

.block.block-viewed .block-title strong {
  text-transform: capitalize;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  color: #76848f;
  line-height: 38px;
  letter-spacing: -0.50px;
}

/*** End Recently Viewed block ***/

/*** AJAX ADD TO CART ***/

/* line 767, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .fancybox-skin {
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 773, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-respond-msg .messages {
  margin-top: 0;
}

/* line 781, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .product-image img {
  margin: 0 auto;
}

/* line 784, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .product-image .product-name {
  display: block;
  margin: 10px 0;
  color: #333;
  font-size: 16px;
}

/* line 790, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .product-image:hover {
  text-decoration: none;
}

/* line 795, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup #allajax-poststeps .actions {
  text-align: center;
  margin-top: 10px;
}

@media only screen and (min-width: 600px) {
  /* line 795, ../scss/core/_bevilles-global-styles.scss */

  .fancybox-add-to-cart-popup #allajax-poststeps .actions {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 795, ../scss/core/_bevilles-global-styles.scss */

  .fancybox-add-to-cart-popup #allajax-poststeps .actions {
    margin-top: 30px;
  }
}

/* line 799, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup #allajax-poststeps .actions button {
  display: inline-block;
  padding: 7px 20px;
  font-size: 16px;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  min-width: 0;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* line 799, ../scss/core/_bevilles-global-styles.scss */

  .fancybox-add-to-cart-popup #allajax-poststeps .actions button {
    width: auto;
  }
}

@media only screen and (min-width: 980px) {
  /* line 799, ../scss/core/_bevilles-global-styles.scss */

  .fancybox-add-to-cart-popup #allajax-poststeps .actions button {
    width: auto;
  }
}

/* line 810, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content a.product-image {
  float: none;
  border: none;
  width: 100%;
  text-align: center;
}

/* line 816, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-info {
  float: none;
}

/* line 819, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-info .product-name {
  font-size: 16px;
  text-transform: none;
  margin-top: 10px;
  text-align: center;
}

/* line 825, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-info .product-name a {
  color: #333;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 831, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .price-box {
  float: none;
  text-align: center;
}

/* line 836, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .price-box .regular-price .price {
  color: #333;
  font-size: 18px;
}

/* line 842, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .allajax-loading {
  text-align: center;
}

/* line 845, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .allajax-loading img {
  display: inline;
  vertical-align: middle;
}

/* line 851, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options {
  border: none;
  padding: 10px 0 0;
  width: 100%;
}

/* line 855, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options dt,
.fancybox-add-to-cart-popup .allajax-content .product-options dd {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 10px;
}

/* line 860, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options dt {
  min-width: 40px;
  padding: 6px 0 7px;
  margin-right: 10px;
  margin-top: 0;
  float: left;
  clear: both;
}

@media only screen and (min-width: 600px) {
  /* line 860, ../scss/core/_bevilles-global-styles.scss */

  .fancybox-add-to-cart-popup .allajax-content .product-options dt {
    min-width: 50px;
  }
}

/* line 868, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options dd {
  width: 60%;
  border: none;
  padding: 0;
}

/* line 872, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options dd .input-box {
  width: 100%;
}

/* line 876, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options dl.last dd.last {
  padding-bottom: 0;
}

/* line 880, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options-bottom {
  border: none;
  background: none;
}

/* line 884, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart {
  float: none;
  margin-right: 0;
  white-space: nowrap;
}

/* line 888, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .input-box,
.fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .btn-cart {
  display: inline-block;
}

/* line 891, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .input-box {
  margin-right: 4px;
}

@media only screen and (min-width: 600px) {
  /* line 891, ../scss/core/_bevilles-global-styles.scss */

  .fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .input-box {
    margin-right: 20px;
  }
}

/* line 893, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .input-box label {
  min-width: 40px;
  margin-right: 10px;
  float: left;
  padding: 5px 0;
}

@media only screen and (min-width: 600px) {
  /* line 893, ../scss/core/_bevilles-global-styles.scss */

  .fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .input-box label {
    min-width: 50px;
  }
}

/* line 899, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .input-box label,
.fancybox-add-to-cart-popup .allajax-content .product-options-bottom .add-to-cart .input-box input {
  display: inline-block;
}

/* line 907, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content .size-guide {
  display: none;
}

/* line 911, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content form#product_addtocart_form label {
  font-size: 16px;
  color: #727a85;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 917, ../scss/core/_bevilles-global-styles.scss */

.fancybox-add-to-cart-popup .allajax-content form#product_addtocart_form label.required:after {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  content: "*";
  vertical-align: top;
  line-height: 18px;
}

@media only screen and (min-width: 771px) and (max-width: 1209px) {
  /**** Global Vars ****/

  /**** Global Style ****/

  /* line 939, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .validation-advice {
    font-size: 1.32231vw;
    max-width: 28.09917vw;
  }

  /* line 943, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .module {
    margin-bottom: 3.30579vw;
  }

  /* line 946, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .module.include-bg {
    padding-bottom: 2.47934vw;
  }

  /* line 949, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .module .module-header {
    padding-bottom: 1.23967vw;
    margin-top: 4.13223vw;
    font-size: 2.64463vw;
    line-height: 1.98347vw;
    letter-spacing: 0.04132vw;
  }

  /* line 956, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .module .module-header:after {
    width: 4.13223vw;
    border-bottom: 0.16529vw solid #3399cc;
    margin-left: -2.06612vw;
  }

  /* line 961, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .module-content {
    margin-top: 2.47934vw;
  }

  /* line 964, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .module-content .row {
    margin: 1.65289vw 0;
  }

  /*** Start Mini Cart ***/

  /* line 970, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .minicart-actions-top {
    padding-bottom: 0.82645vw;
  }

  /* line 974, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .header-minicart .mini-products-list li {
    padding: 0.82645vw 0;
  }

  /* line 977, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .header-minicart .block-subtitle .close {
    top: 0.82645vw;
    font-size: 3.30579vw;
    right: 0.33058vw;
  }

  /* line 983, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .meta-links .header-minicart a.desktop {
    position: relative;
  }

  /* line 987, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .meta-links .account-cart-wrapper span {
    font-size: 0.99174vw;
    line-height: 1.15702vw;
    height: auto;
    padding: 0;
    font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  }

  /*** Start Mini Cart ***/

  /*** end Recently Viewed block ***/

  /* line 998, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .skip-cart .count {
    font-size: 1.15702vw;
  }

  /* line 1001, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .meta-links .header-minicart .count {
    margin: 0.33058vw 0.41322vw 0.41322vw 0;
  }

  /*** End Header ***/

  /*** Start Footer ***/

  /* line 1008, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .footer {
    padding-top: 4.95868vw;
  }

  /* line 1011, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .back-to-top {
    width: 4.95868vw;
    height: 5.04132vw;
    top: -2.47934vw;
    margin-left: -2.47934vw;
  }

  /* line 1017, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .subscribe .subscribe-header {
    width: 28.09917vw;
  }

  /* line 1020, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .subscribe .subscribe-header .hed {
    font-size: 2.14876vw;
  }

  /* line 1023, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .subscribe .subscribe-header .dek {
    font-size: 1.4876vw;
  }

  /* line 1026, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .v-fix {
    margin-top: 0.24793vw;
    width: 27.68595vw;
  }

  /* line 1031, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .subscribe button {
    margin-left: 1.65289vw;
    margin-top: 0.24793vw;
    padding: 0 2.47934vw;
    height: 3.8843vw;
    font-size: 1.32231vw;
  }

  /* line 1039, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .border-line {
    width: 33.05785vw;
    margin-top: 1.23967vw;
  }

  /* line 1044, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .column {
    width: 16.52893vw;
    margin-right: 6.61157vw;
  }

  /* line 1048, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .place-holder {
    margin: 3.30579vw 0;
  }

  /* line 1051, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .footer-links-wrapper .column > div {
    margin-bottom: 2.47934vw;
  }

  /* line 1055, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .place-holder .copyright {
    font-size: 0.82645vw;
    line-height: 2.89256vw;
    margin: 0 0.41322vw;
  }

  /* line 1061, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .left,
  .footer-wrapper .right {
    width: auto;
  }

  /*** End Footer ***/

  /* line 1066, ../scss/core/_bevilles-global-styles.scss */

  .footer-wrapper .mobile {
    display: none;
  }

  /* line 1070, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper {
    /**** Global Style ****/
    /*** Start Mini Cart ***/
    /*** Start Mini Cart ***/
    /*** Common styles for Catalog ***/
    /*** end Common styles for Catalog ***/
    /*** Start Header ***/
    /*** End Header ***/
    /*** Start Footer ***/
    /*** End Footer ***/
    /*** Style for Forgot password page Desktop***/
    /*** End Style for Forgot password page ***/
  }

  /* line 1073, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .validation-advice {
    font-size: 1.32231vw;
    max-width: 28.09917vw;
  }

  /* line 1077, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module {
    margin-bottom: 3.30579vw;
  }

  /* line 1080, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module.include-bg {
    padding-bottom: 2.47934vw;
  }

  /* line 1083, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module .module-header {
    padding-bottom: 1.23967vw;
    margin-top: 4.13223vw;
    font-size: 2.64463vw;
    line-height: 1.98347vw;
    letter-spacing: 0.04132vw;
  }

  /* line 1090, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module .module-header:after {
    width: 4.13223vw;
    border-bottom: 0.16529vw solid #3399cc;
    margin-left: -2.06612vw;
  }

  /* line 1095, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module-content {
    margin-top: 2.47934vw;
  }

  /* line 1098, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module-content .row {
    margin: 1.65289vw 0;
  }

  /* line 1104, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-actions-top {
    padding-bottom: 0.82645vw;
  }

  /* line 1108, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .meta-links .header-minicart a.desktop {
    position: relative;
  }

  /* line 1112, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .meta-links .account-cart-wrapper span {
    font-size: 0.99174vw;
    line-height: 1.15702vw;
    height: auto;
    padding: 0;
    font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  }

  /* line 1123, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .product-labels-wrapper .amlabel-table {
    display: inline-block;
    margin-right: 1.23967vw;
  }

  /* line 1127, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .product-labels-wrapper .amlabel-table td {
    width: 10.08264vw;
    height: 5.20661vw;
  }

  /* line 1137, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-cart .count {
    font-size: 1.15702vw;
  }

  /* line 1144, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer {
    padding-top: 4.95868vw;
  }

  /* line 1147, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .back-to-top {
    width: 4.95868vw;
    height: 5.04132vw;
    top: -2.47934vw;
    margin-left: -2.47934vw;
  }

  /* line 1154, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscribe-header {
    width: 28.09917vw;
  }

  /* line 1157, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscribe-header .hed {
    font-size: 2.14876vw;
  }

  /* line 1160, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscribe-header .dek {
    font-size: 1.4876vw;
  }

  /* line 1163, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .v-fix {
    margin-top: 0.24793vw;
  }

  /* line 1165, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .v-fix input {
    width: 50.41322vw;
  }

  /* line 1169, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe button {
    width: 14.87603vw;
    margin-left: 1.65289vw;
    margin-top: 0.24793vw;
    padding: 0 2.47934vw;
    height: 3.8843vw;
    font-size: 1.32231vw;
  }

  /* line 1178, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .border-line {
    width: 33.05785vw;
    margin-top: 1.23967vw;
  }

  /* line 1183, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder {
    margin: 3.30579vw 0;
  }

  /* line 1186, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder .copyright {
    font-size: 0.82645vw;
    line-height: 2.89256vw;
    margin: 0 0.41322vw;
  }

  /* line 1192, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .left,
  .bevilles .wrapper .footer-wrapper .right {
    width: auto;
  }

  /* line 1201, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .body-content.limit-width .main .col-main .forgot-password-title h1,
  .bevilles .wrapper .body-content.messages .main .col-main .forgot-password-title h1 {
    font-size: 2.80992vw;
  }

  /* line 1206, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .body-content.limit-width .main .col-main .forgot-password-content h2,
  .bevilles .wrapper .body-content.messages .main .col-main .forgot-password-content h2 {
    font-size: 2.64463vw;
  }

  /* line 1209, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .body-content.limit-width .main .col-main .forgot-password-content p,
  .bevilles .wrapper .body-content.messages .main .col-main .forgot-password-content p {
    font-size: 1.15702vw;
  }

  /* line 1213, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .body-content.limit-width .main .col-main .forgot-password-content #form-validate .fieldset,
  .bevilles .wrapper .body-content.messages .main .col-main .forgot-password-content #form-validate .fieldset {
    max-width: 45%;
  }

  /* line 1217, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .body-content.limit-width .main .col-main .forgot-password-content #form-validate .buttons-set .back-link a,
  .bevilles .wrapper .body-content.messages .main .col-main .forgot-password-content #form-validate .buttons-set .back-link a {
    font-size: 1.4876vw;
  }

  /* line 1221, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .body-content.limit-width .main .col-main .forgot-password-content #form-validate button,
  .bevilles .wrapper .body-content.messages .main .col-main .forgot-password-content #form-validate button {
    height: 3.8843vw;
  }

  /* line 1229, ../scss/core/_bevilles-global-styles.scss */

  .please-wait {
    left: 56.4929693961952vw;
  }
}

/*** End Footer ***/

/**** Tablet & Mobile common Style ****/

@media only screen and (min-width: 320px) and (max-width: 770px) {
  /* line 1239, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper {
    /**** Global Style ****/
    /*** Mini cart ***/
    /*** end Mini cart ***/
    /*** Recently Viewed block ***/
    /*** end Recently Viewed block ***/
    /*** Start Footer ***/
    /*** End Footer ***/
  }

  /* line 1241, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module {
    margin-bottom: 20px;
  }

  /* line 1244, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .store-locator,
  .bevilles .wrapper .skip-links .skip-link.desktop {
    display: none;
  }

  /* line 1248, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.mobile {
    display: inline-block !important;
  }

  /* line 1251, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .slider {
    height: 370px;
    overflow: hidden;
  }

  /* line 1256, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .img-desktop,
  .bevilles .wrapper .img-mobile {
    display: none;
  }

  /* line 1259, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .img-tablet,
  .bevilles .wrapper .img-desktop.img-tablet,
  .bevilles .wrapper .img-tablet.img-mobile {
    display: block;
  }

  /* line 1265, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-cart:before {
    right: 20px;
    top: -12px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 770px) and (min-width: 600px) {
  /* line 1265, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-cart:before {
    right: 15px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 770px) {
  /* line 1269, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart .mini-cart-divider {
    display: none;
  }

  /* line 1272, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart .mini-products-list li {
    padding-bottom: 0;
  }

  /* line 1275, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart #header-cart .action-links .sperate,
  .bevilles .wrapper .header-minicart #header-cart .action-links a {
    font-size: 14px;
  }

  /* line 1282, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-viewed .slider {
    width: 576px;
    margin: 0 auto;
    height: auto;
  }

  /* line 1287, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-viewed .placeholder {
    position: relative;
  }

  /* line 1290, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-viewed .slider .slider-inner {
    width: 10000px;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
  }

  /* line 1296, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-list.block-viewed .block-title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  /* line 1300, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-list.block-viewed .block-title strong {
    font-size: 20px;
    line-height: 38px;
    letter-spacing: -0.50px;
  }

  /* line 1305, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #recently-viewed-items .item .product-image {
    width: 122px;
  }

  /* line 1308, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block.block-viewed {
    margin-bottom: 0;
  }

  /* line 1311, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .recently-prev-item {
    top: 50%;
    margin-top: -28px;
    display: block;
  }

  /* line 1316, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .recently-next-item {
    top: 50%;
    margin-top: -28px;
    display: block;
  }

  /* line 1324, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscribe-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  /* line 1330, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .column:last-child,
  .bevilles .wrapper .footer-wrapper .column.last {
    clear: both;
  }

  /* line 1333, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder {
    margin: 20px 0 20px 0;
  }
}

/**** Tablet Style ****/

@media only screen and (min-width: 600px) and (max-width: 770px) {
  /* line 1342, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper {
    /*** Start Search Overlay ***/
    /*** End Search Overlay ***/
    /*** Mini cart ***/
    /*** End Mini Cart ***/
  }

  /* line 1343, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links.mobile {
    display: none;
  }

  /* line 1346, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links.tablet {
    display: block;
    border-top: none;
    border-bottom: none;
  }

  /* line 1350, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links.tablet:after {
    content: '';
    display: table;
    clear: both;
  }

  /* line 1354, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .page-header-container {
    margin-top: 0px;
    padding: 0;
    position: relative;
  }

  /* line 1365, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .meta-links .header-minicart,
  .bevilles .wrapper .meta-links .top-header-left li:not(:first-child) {
    display: none;
  }

  /* line 1369, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .logo {
    display: none;
  }

  /* line 1375, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link {
    display: block;
    width: 10%;
    height: 83px;
    padding-top: 20px;
  }

  /* line 1381, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-active {
    background: none;
  }

  /* line 1384, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link .label {
    line-height: 0;
    float: left;
    width: 100%;
    display: inline-block;
    color: #727a85;
    text-transform: uppercase;
    font-size: 12px;
  }

  /* line 1393, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link .icon {
    margin-right: 0;
  }

  /* line 1397, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-nav .icon {
    background: url(../images/burger_mob.png) no-repeat 0 0;
    width: 30px;
    height: 25px;
    vertical-align: top;
    background-size: 100%;
  }

  /* line 1405, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-store {
    float: right;
    border-right: 1px solid #EDEDED;
  }

  /* line 1409, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-store .icon {
    background: url(../images/locator_mob.png) no-repeat 0 0;
    width: 18px;
    height: 27px;
    vertical-align: top;
    background-size: 100%;
  }

  /* line 1418, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search {
    display: block;
    width: 70%;
    height: 85px;
    border-right: 1px solid #EDEDED;
    padding: 18px 10px;
    position: absolute;
    top: 0;
    left: 10%;
  }

  /* line 1429, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search .logo {
    max-width: 184px;
    width: auto;
    display: inline-block;
  }

  /* line 1433, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search .logo img {
    max-width: 100%;
  }

  /* line 1438, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search.row {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 5px;
    padding-right: 5px;
  }

  /* line 1445, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search .topsearch-wrapper .algolia-autocomplete .algolia-autocomplete .aa-dropdown-menu {
    display: none !important;
  }

  /* line 1448, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search .topsearch-wrapper .algolia-autocomplete span.aa-dropdown-menu {
    top: 46px !important;
    left: -31.5vw !important;
    width: 70.5vw;
    max-width: 770px;
    /*
        .autocomplete-wrapper {
            border-top: none;
        }*/
  }

  /* line 1459, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search form#search_mini_form {
    width: 100%;
  }

  /* line 1462, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search #algolia-searchbox {
    display: inline-block;
    float: right;
  }

  /* line 1465, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search #algolia-searchbox .algolia-search-input {
    height: 47px;
    color: #77848f;
    font: bold 1 "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif, Arial;
    text-transform: none;
  }

  /* line 1471, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search #algolia-searchbox .search-icon {
    height: 47px;
    width: 47px;
  }

  /* line 1475, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search #algolia-searchbox .search-icon:after {
    top: 12px;
    right: 12px;
  }

  /* line 1484, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links.tablet .skip-link.skip-cart {
    border-right: none;
    float: right;
  }

  /* line 1488, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links.tablet .header-minicart {
    float: none;
    padding: 0;
    display: block;
  }

  /* line 1493, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links.tablet .skip-link.skip-cart .icon-cart {
    background: url(../images/bag_mob.png) no-repeat 0 0;
    width: 21px;
    height: 28px;
    display: inline-block;
    vertical-align: top;
    background-size: 100%;
    margin-left: 3px;
  }

  /* line 1502, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links.tablet .skip-link.skip-cart .count {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #D26AA9;
  }

  /* line 1509, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .checkout-types {
    text-align: center;
    float: none;
  }

  /* line 1513, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-actions-top {
    display: inline-block;
    width: 100%;
  }

  /* line 1517, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-tablet .skip-cart.mobile.skip-active + #header-cart {
    display: block;
    position: absolute;
    right: 0;
    width: 390px;
    top: 83px;
    border: 1px solid #dddddd;
    background: #ffffff;
  }

  /* line 1525, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-tablet .skip-cart.mobile.skip-active + #header-cart:before {
    top: -17px;
    right: 20px;
  }

  /* line 1530, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .header-minicart {
    float: none;
    padding: 0;
  }

  /* line 1534, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .header-minicart #header-cart .product-details .product-name {
    min-height: 30px;
  }

  /* line 1537, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart #header-cart .block-subtitle {
    margin: 20px 0 0 20px;
  }

  /* line 1540, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart #header-cart .subtotal {
    margin-top: 15px;
    margin-right: 15px;
  }

  /* line 1544, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-actions-top .minicart a {
    padding: 10px 0;
    width: 96%;
  }

  /*** Common styles for Catalog ***/

  /* line 1553, ../scss/core/_bevilles-global-styles.scss */

  .product-labels-wrapper .amlabel-table {
    display: inline-block;
    margin-right: 1.94805vw;
  }

  /* line 1557, ../scss/core/_bevilles-global-styles.scss */

  .product-labels-wrapper .amlabel-table td {
    width: 15.84416vw;
    height: 8.18182vw;
  }

  /*** end Common styles for Catalog ***/

  /*** Style for Forgot password page Tablet***/

  /* line 1568, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-title h1,
  .body-content.messages .main .col-main .forgot-password-title h1 {
    font-size: 4.41558vw;
  }

  /* line 1573, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content h2,
  .body-content.messages .main .col-main .forgot-password-content h2 {
    font-size: 4.15584vw;
  }

  /* line 1576, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content p,
  .body-content.messages .main .col-main .forgot-password-content p {
    font-size: 1.81818vw;
  }

  /* line 1580, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate .fieldset,
  .body-content.messages .main .col-main .forgot-password-content #form-validate .fieldset {
    max-width: 70%;
  }

  /* line 1583, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate .buttons-set,
  .body-content.messages .main .col-main .forgot-password-content #form-validate .buttons-set {
    max-width: 70%;
  }

  /* line 1585, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate .buttons-set .back-link a,
  .body-content.messages .main .col-main .forgot-password-content #form-validate .buttons-set .back-link a {
    font-size: 2.33766vw;
  }

  /* line 1589, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate button,
  .body-content.messages .main .col-main .forgot-password-content #form-validate button {
    height: 6.1039vw;
  }

  /*** End Style for Forgot password page ***/
}

/** Convert your px to rem to scale everything **/

/* Formular: (number in px) * 100 / 769 (769 is maximum width of the wrapper at tablet view) */

@media only screen and (min-width: 601px) and (max-width: 769px) {
  /* line 1601, ../scss/core/_bevilles-global-styles.scss */

  .please-wait {
    left: 46.375vw;
  }

  /* line 1604, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper {
    /**** Global Style ****/
    /*** Recently Viewed block ***/
    /*** end Recently Viewed block ***/
    /*** Start Footer ***/
    /*** End Footer ***/
  }

  /* line 1607, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart #header-cart .product-details .product-name {
    width: 25.97403vw;
    min-height: 4.67532vw;
  }

  /* line 1611, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module {
    margin-bottom: 2.5974vw;
  }

  /* line 1614, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .slider {
    height: 48.05195vw;
  }

  /* line 1617, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module .module-content .last {
    margin-left: 0;
  }

  /* line 1620, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .module .module-header {
    font-size: 4.15584vw;
    line-height: 3.11688vw;
  }

  /* line 1626, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-viewed .slider {
    width: 74.80519vw;
  }

  /* line 1629, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-list.block-viewed .block-title {
    padding-bottom: 1.2987vw;
    margin-bottom: 1.2987vw;
  }

  /* line 1633, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-list.block-viewed .block-title strong {
    font-size: 2.5974vw;
    line-height: 4.93506vw;
    letter-spacing: -0.06494vw;
  }

  /* line 1638, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block.block-viewed {
    margin-bottom: 0vw;
  }

  /* line 1641, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #recently-viewed-items .item .product-image {
    width: 15.84416vw;
  }

  /* line 1644, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #recently-viewed-items li.item {
    margin: 0 1.42857vw 1.42857vw 1.42857vw;
    max-width: 15.84416vw;
  }

  /* line 1648, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .recently-prev-item {
    margin-top: -3.63636vw;
  }

  /* line 1651, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .recently-next-item {
    margin-top: -3.63636vw;
  }

  /* line 1657, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscribe-header .hed {
    margin-bottom: 2.5974vw;
    font-size: 3.37662vw;
  }

  /* line 1661, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscribe-header .dek {
    font-size: 2.33766vw;
  }

  /* line 1664, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .wrapper .validation-advice {
    font-size: 2.07792vw;
  }

  /* line 1668, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .back-to-top {
    width: 7.79221vw;
    height: 7.92208vw;
    top: -3.8961vw;
    margin-left: -3.8961vw;
  }

  /* line 1675, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder .copyright {
    font-size: 1.2987vw;
    line-height: 4.54545vw;
    margin: 0 0.64935vw;
  }
}

/**** Mobile Style ****/

/* iPhone 4s ~ iPhone 6s */

@media only screen and (max-width: 599px) {
  /* line 1687, ../scss/core/_bevilles-global-styles.scss */

  .wrapper .product-labels-wrapper .amlabel-table td {
    width: 110px;
    height: 51px;
  }

  /* line 1692, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper {
    /**** Start Header ****/
    /*** Start Mini Cart ***/
    /*** End Mini Cart ***/
    /*** End Header ***/
    /*** Start Search Overlay ***/
    /*** End Search Overlay ***/
    /*** Recently Viewed block ***/
    /*** end Recently Viewed block ***/
    /*** Start Footer ***/
    /*** End Footer ***/
  }

  /* line 1693, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .img-desktop,
  .bevilles .wrapper .img-tablet,
  .bevilles .wrapper .img-tablet.img-desktop {
    display: none;
  }

  /* line 1696, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .img-mobile,
  .bevilles .wrapper .img-mobile.img-tablet {
    display: block;
  }

  /* line 1700, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }

  /* line 1707, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .breadcrumbs {
    display: none;
  }

  /* line 1712, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-wrapper .meta-links {
    display: none;
  }

  /* line 1715, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .logo {
    width: 227px;
    min-height: 70px;
    margin: 0 auto;
    float: none;
  }

  /* line 1722, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links {
    margin: 0 -15px;
  }

  /* line 1725, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link {
    display: inline-block;
    width: 20%;
    height: 70px;
    padding-top: 10px;
  }

  /* line 1731, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-cart {
    border-right: none;
  }

  /* line 1734, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link .label {
    line-height: 0;
    float: left;
    width: 100%;
    display: inline-block;
    color: #727a85;
    text-transform: uppercase;
    font-size: 12px;
  }

  /* line 1743, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-nav .icon {
    background: url(../images/burger_mob.png) no-repeat 0 0;
    width: 30px;
    height: 25px;
    vertical-align: top;
    background-size: 100%;
  }

  /* line 1750, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-search .icon {
    background: url(../images/search_mob.png) no-repeat 0 0;
    width: 26px;
    height: 26px;
    vertical-align: top;
    background-size: 100%;
  }

  /* line 1757, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-store .icon {
    background: url(../images/locator_mob.png) no-repeat 0 0;
    width: 18px;
    height: 27px;
    vertical-align: top;
    background-size: 100%;
  }

  /* line 1764, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-account .icon {
    background: url(../images/account_mob.png) no-repeat 0 0;
    width: 24px;
    height: 27px;
    vertical-align: top;
    background-size: 100%;
  }

  /* line 1771, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-cart .icon-cart {
    background: url(../images/bag_mob.png) no-repeat 0 0;
    width: 21px;
    height: 28px;
    display: inline-block;
    vertical-align: top;
    background-size: 100%;
  }

  /* line 1779, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-cart .count {
    position: absolute;
    top: 5px;
    right: 50px;
    background: #D26AA9;
  }

  /* line 1788, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .checkout-types {
    text-align: center;
    float: none;
  }

  /* line 1792, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-actions-top {
    display: inline-block;
    width: 100%;
  }

  /* line 1796, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-mobile .skip-cart.mobile.skip-active + #header-cart {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    top: 139px;
    border: 1px solid #dddddd;
    background: #ffffff;
  }

  /* line 1804, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-mobile .skip-cart.mobile.skip-active + #header-cart:before {
    top: -12px;
  }

  /* line 1809, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .header-minicart {
    float: none;
    padding: 0;
  }

  /* line 1813, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .header-minicart #header-cart .product-details .product-name {
    min-height: 30px;
  }

  /* line 1816, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart #header-cart .block-subtitle {
    margin: 20px 0 0 20px;
  }

  /* line 1819, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart #header-cart .subtotal {
    margin-top: 15px;
    margin-right: 15px;
  }

  /* line 1823, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .minicart-actions-top .minicart a {
    padding: 10px 0;
    width: 96%;
  }

  /* line 1831, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search {
    position: absolute;
    z-index: 99999;
    bottom: -64px;
    left: 0;
    background: #fff;
  }

  /* line 1838, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #algolia-searchbox .algolia-search-input {
    width: 100%;
    border-left: none;
    border-right: none;
    border-radius: 0;
    height: 65px;
    font-size: 26px;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif, Arial;
    color: #727a85;
    line-height: 24px;
    text-transform: none;
  }

  /* line 1850, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #algolia-searchbox .search-icon {
    height: 65px;
    width: 65px;
  }

  /* line 1854, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #algolia-searchbox .search-icon:after {
    top: 20px;
    right: 20px;
  }

  /* line 1858, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #algolia-searchbox .algolia-autocomplete .algolia-autocomplete .aa-dropdown-menu {
    display: none !important;
  }

  /* line 1861, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #algolia-searchbox .algolia-autocomplete span.aa-dropdown-menu {
    top: 64px !important;
  }

  /* line 1865, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-cart .count {
    top: 5px;
    right: 28%;
  }

  /* line 1872, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-wrapper {
    position: relative;
  }

  /* line 1875, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-active {
    background: none;
  }

  /* line 1878, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #header-search {
    width: 100%;
  }

  /* line 1881, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-nav.skip-active .icon,
  .bevilles .wrapper .skip-links .skip-link.skip-search.skip-active .icon {
    background: url(../images/search_expand.png) no-repeat 0 0;
    background-size: 100%;
    width: 23px;
    height: 24px;
  }

  /* line 1891, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .block-viewed .slider {
    width: 277px;
  }

  /* line 1894, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #recently-viewed-items {
    text-align: center;
  }

  /* line 1897, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper #recently-viewed-items li.item {
    margin: 0 11px 11px 11px;
    max-width: 122px;
  }

  /* line 1904, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscriber-form-fields {
    width: 100%;
  }

  /* line 1906, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscriber-form-fields button {
    display: block;
    width: 100%;
    float: left;
    margin: 20px 0 0;
  }

  /* line 1912, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscriber-form-fields .v-fix {
    float: left;
    margin-top: 3px;
    width: 100%;
  }

  /* line 1917, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .subscribe .subscriber-form-fields .v-fix input[type=text] {
    width: 100%;
  }

  /* line 1922, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .social-links div.social-icon {
    padding: 0 7px;
  }

  /* line 1924, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .social-links div.social-icon a {
    width: 55px;
    height: 55px;
    background-size: 55px 55px;
  }

  /* line 1931, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .border-line {
    float: left;
    width: 100%;
  }

  /* line 1935, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .border-line.align-left {
    margin-bottom: 20px;
  }

  /* line 1940, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .column {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* line 1947, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column > div {
    width: 100%;
    margin-bottom: 0;
  }

  /* line 1950, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column > div h5 {
    padding: 12px 10px;
    color: #76848f;
    position: relative;
    font-family: "Proxima-Nova-Bold", "Helvetica Neue", Verdana, Arial, sans-serif;
    cursor: pointer;
  }

  /* line 1956, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column > div h5:after {
    content: "";
    font-family: "FontAwesome";
    position: absolute;
    width: 20px;
    height: 15px;
    font-size: 16px;
    right: 0;
    top: 0;
    margin-top: 14px;
  }

  /* line 1969, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column > div.active h5 {
    background: #ddd;
    color: #333;
  }

  /* line 1972, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column > div.active h5:after {
    content: "";
  }

  /* line 1976, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column > div.active ul {
    padding: 0 10px;
  }

  /* line 1980, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column > div ul {
    padding: 0 10px;
    display: none;
  }

  /* line 1987, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .footer-links-wrapper .column:last-of-type > div ul li:last-child {
    margin-bottom: 20px;
  }

  /* line 1997, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder .left,
  .bevilles .wrapper .footer-wrapper .place-holder .right {
    float: none;
    display: block;
    width: 100%;
  }

  /* line 2002, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder .copyright {
    margin: 0 auto;
    float: none;
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  /* line 2010, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder .left {
    display: none;
  }

  /* line 2013, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .place-holder .right {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  /* line 2018, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .footer-wrapper .mobile {
    display: block !important;
  }

  /*** Style for Forgot password page Mobile ***/

  /* line 2027, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-title h1,
  .body-content.messages .main .col-main .forgot-password-title h1 {
    font-size: 34px;
  }

  /* line 2032, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content h2,
  .body-content.messages .main .col-main .forgot-password-content h2 {
    font-size: 32px;
  }

  /* line 2035, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content p,
  .body-content.messages .main .col-main .forgot-password-content p {
    font-size: 14px;
  }

  /* line 2039, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate .fieldset,
  .body-content.messages .main .col-main .forgot-password-content #form-validate .fieldset {
    max-width: 100%;
  }

  /* line 2042, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate .buttons-set,
  .body-content.messages .main .col-main .forgot-password-content #form-validate .buttons-set {
    max-width: 100%;
  }

  /* line 2044, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate .buttons-set .back-link a,
  .body-content.messages .main .col-main .forgot-password-content #form-validate .buttons-set .back-link a {
    font-size: 18px;
  }

  /* line 2048, ../scss/core/_bevilles-global-styles.scss */

  .body-content.limit-width .main .col-main .forgot-password-content #form-validate button,
  .body-content.messages .main .col-main .forgot-password-content #form-validate button {
    height: 47px;
  }

  /*** End Style for Forgot password page ***/
}

/**** Mobile Style ****/

/* Un-Popular Screen */

@media only screen and (min-width: 415px) and (max-width: 460px) {
  /* line 2061, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-cart .count {
    right: 22%;
  }
}

@media only screen and (min-width: 321px) and (max-width: 414px) {
  /* line 2067, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-cart .count {
    right: 18%;
  }
}

@media only screen and (width: 320px) {
  /* line 2073, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .skip-links .skip-link.skip-cart .count {
    right: 10%;
  }
}

@media only screen and (min-width: 771px) and (max-width: 1080px) {
  /* line 2081, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart #header-cart .product-details .product-name {
    width: 16.52893vw;
    min-height: 2.06612vw;
  }

  /* line 2085, ../scss/core/_bevilles-global-styles.scss */

  .bevilles .wrapper .header-minicart .info-wrapper {
    margin-bottom: 1.5em;
  }
}

/* line 23, ../scss/vendor/_nice-select.scss */

select {
  display: none;
}

/* line 28, ../scss/vendor/_nice-select.scss */

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  color: #999;
  border-radius: 3px;
  border: solid 1px #e6e7e9;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 37px;
  line-height: 35px;
  outline: none;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  padding-left: 15px;
}

/* line 53, ../scss/vendor/_nice-select.scss */

form[method] .nice-select {
  padding-right: 27px;
}

/* line 56, ../scss/vendor/_nice-select.scss */

.nice-select:hover {
  border-color: #d8dadd;
}

/* line 59, ../scss/vendor/_nice-select.scss */

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

/* line 64, ../scss/vendor/_nice-select.scss */

.nice-select span:after {
  font-family: "Fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  content: '\e818';
  color: #8caedb;
  display: block;
  height: 5px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 46%;
  transform-origin: 66% 66%;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

/* line 80, ../scss/vendor/_nice-select.scss */

.nice-select.open {
  border-color: #d0d1d5;
  border-radius: 3px 3px 0 0;
}

/* line 84, ../scss/vendor/_nice-select.scss */

.nice-select.open:after {
  /*transform: rotate(-135deg);*/
}

/* line 87, ../scss/vendor/_nice-select.scss */

.nice-select.open:focus {
  border-width: 1px;
  border-color: #d0d1d5;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 92, ../scss/vendor/_nice-select.scss */

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  border: 1px solid #d0d1d5;
  border-top: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 103, ../scss/vendor/_nice-select.scss */

.nice-select.options-full-width.open:after,
.category-products .search_filter_nav.block.block-layered-nav .open.nice-select:after,
.category-products .product_filter_nav.block.block-layered-nav .open.nice-select:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #fff;
  z-index: 3;
}

/* line 114, ../scss/vendor/_nice-select.scss */

.nice-select.options-full-width .list,
.category-products .search_filter_nav.block.block-layered-nav .nice-select .list,
.category-products .product_filter_nav.block.block-layered-nav .nice-select .list {
  width: auto;
  min-width: -webkit-calc(100% + 2px);
  min-width: calc(100% + 2px);
  border-radius: 0 0 3px 3px;
  border: 1px solid #d0d1d5;
}

/* line 122, ../scss/vendor/_nice-select.scss */

.nice-select.disabled {
  border-color: #ebecee;
  color: #999;
  pointer-events: none;
}

/* line 126, ../scss/vendor/_nice-select.scss */

.nice-select.disabled:after {
  border-color: #cccccc;
}

/* line 132, ../scss/vendor/_nice-select.scss */

.nice-select.wide {
  width: 100%;
}

/* line 134, ../scss/vendor/_nice-select.scss */

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

/* line 140, ../scss/vendor/_nice-select.scss */

.nice-select.right {
  float: right;
}

/* line 142, ../scss/vendor/_nice-select.scss */

.nice-select.right .list {
  left: auto;
  right: 0;
}

/* line 147, ../scss/vendor/_nice-select.scss */

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

/* line 151, ../scss/vendor/_nice-select.scss */

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

/* line 155, ../scss/vendor/_nice-select.scss */

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

/* line 162, ../scss/vendor/_nice-select.scss */

.nice-select .list {
  width: 100%;
  width: -webkit-calc(100% + 2px);
  width: calc(100% + 2px);
  max-height: 250px;
  overflow: auto;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -1px;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-18.5px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 2;
}

/* line 183, ../scss/vendor/_nice-select.scss */

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

/* line 187, ../scss/vendor/_nice-select.scss */

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 35px;
  list-style: none;
  min-height: 35px;
  outline: none;
  padding-left: 15px;
  padding-right: 26px;
  text-align: left;
  transition: all 0.2s;
}

/* line 198, ../scss/vendor/_nice-select.scss */

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #8caedb;
  box-shadow: unset;
}

/* line 203, ../scss/vendor/_nice-select.scss */

.nice-select .option.selected {
  /*font-weight: bold;*/
}

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=abc2418ffdefe75534c78088ec70ccc9)
 * Config saved to config.json and https://gist.github.com/abc2418ffdefe75534c78088ec70ccc9
 */

/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

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

/* line 17, ../scss/vendor/_bootstrap.scss */

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 22, ../scss/vendor/_bootstrap.scss */

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  /* line 29, ../scss/vendor/_bootstrap.scss */

  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 34, ../scss/vendor/_bootstrap.scss */

  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 39, ../scss/vendor/_bootstrap.scss */

  .container {
    width: 1170px;
  }
}

/* line 43, ../scss/vendor/_bootstrap.scss */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 49, ../scss/vendor/_bootstrap.scss */

.row {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 53, ../scss/vendor/_bootstrap.scss */

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

/* line 59, ../scss/vendor/_bootstrap.scss */

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

/* line 62, ../scss/vendor/_bootstrap.scss */

.col-xs-12 {
  width: 100%;
}

/* line 65, ../scss/vendor/_bootstrap.scss */

.col-xs-11 {
  width: 91.66666667%;
}

/* line 68, ../scss/vendor/_bootstrap.scss */

.col-xs-10 {
  width: 83.33333333%;
}

/* line 71, ../scss/vendor/_bootstrap.scss */

.col-xs-9 {
  width: 75%;
}

/* line 74, ../scss/vendor/_bootstrap.scss */

.col-xs-8 {
  width: 66.66666667%;
}

/* line 77, ../scss/vendor/_bootstrap.scss */

.col-xs-7 {
  width: 58.33333333%;
}

/* line 80, ../scss/vendor/_bootstrap.scss */

.col-xs-6 {
  width: 50%;
}

/* line 83, ../scss/vendor/_bootstrap.scss */

.col-xs-5 {
  width: 41.66666667%;
}

/* line 86, ../scss/vendor/_bootstrap.scss */

.col-xs-4 {
  width: 33.33333333%;
}

/* line 89, ../scss/vendor/_bootstrap.scss */

.col-xs-3 {
  width: 25%;
}

/* line 92, ../scss/vendor/_bootstrap.scss */

.col-xs-2 {
  width: 16.66666667%;
}

/* line 95, ../scss/vendor/_bootstrap.scss */

.col-xs-1 {
  width: 8.33333333%;
}

/* line 98, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-12 {
  right: 100%;
}

/* line 101, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-11 {
  right: 91.66666667%;
}

/* line 104, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-10 {
  right: 83.33333333%;
}

/* line 107, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-9 {
  right: 75%;
}

/* line 110, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-8 {
  right: 66.66666667%;
}

/* line 113, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-7 {
  right: 58.33333333%;
}

/* line 116, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-6 {
  right: 50%;
}

/* line 119, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-5 {
  right: 41.66666667%;
}

/* line 122, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-4 {
  right: 33.33333333%;
}

/* line 125, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-3 {
  right: 25%;
}

/* line 128, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-2 {
  right: 16.66666667%;
}

/* line 131, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-1 {
  right: 8.33333333%;
}

/* line 134, ../scss/vendor/_bootstrap.scss */

.col-xs-pull-0 {
  right: auto;
}

/* line 137, ../scss/vendor/_bootstrap.scss */

.col-xs-push-12 {
  left: 100%;
}

/* line 140, ../scss/vendor/_bootstrap.scss */

.col-xs-push-11 {
  left: 91.66666667%;
}

/* line 143, ../scss/vendor/_bootstrap.scss */

.col-xs-push-10 {
  left: 83.33333333%;
}

/* line 146, ../scss/vendor/_bootstrap.scss */

.col-xs-push-9 {
  left: 75%;
}

/* line 149, ../scss/vendor/_bootstrap.scss */

.col-xs-push-8 {
  left: 66.66666667%;
}

/* line 152, ../scss/vendor/_bootstrap.scss */

.col-xs-push-7 {
  left: 58.33333333%;
}

/* line 155, ../scss/vendor/_bootstrap.scss */

.col-xs-push-6 {
  left: 50%;
}

/* line 158, ../scss/vendor/_bootstrap.scss */

.col-xs-push-5 {
  left: 41.66666667%;
}

/* line 161, ../scss/vendor/_bootstrap.scss */

.col-xs-push-4 {
  left: 33.33333333%;
}

/* line 164, ../scss/vendor/_bootstrap.scss */

.col-xs-push-3 {
  left: 25%;
}

/* line 167, ../scss/vendor/_bootstrap.scss */

.col-xs-push-2 {
  left: 16.66666667%;
}

/* line 170, ../scss/vendor/_bootstrap.scss */

.col-xs-push-1 {
  left: 8.33333333%;
}

/* line 173, ../scss/vendor/_bootstrap.scss */

.col-xs-push-0 {
  left: auto;
}

/* line 176, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-12 {
  margin-left: 100%;
}

/* line 179, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

/* line 182, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

/* line 185, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 188, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

/* line 191, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

/* line 194, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 197, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

/* line 200, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

/* line 203, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 206, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

/* line 209, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

/* line 212, ../scss/vendor/_bootstrap.scss */

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 601px) {
  /* changed from 768 to 601 */

  /* line 216, ../scss/vendor/_bootstrap.scss */

  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  /* line 219, ../scss/vendor/_bootstrap.scss */

  .col-sm-12 {
    width: 100%;
  }

  /* line 222, ../scss/vendor/_bootstrap.scss */

  .col-sm-11 {
    width: 91.66666667%;
  }

  /* line 225, ../scss/vendor/_bootstrap.scss */

  .col-sm-10 {
    width: 83.33333333%;
  }

  /* line 228, ../scss/vendor/_bootstrap.scss */

  .col-sm-9 {
    width: 75%;
  }

  /* line 231, ../scss/vendor/_bootstrap.scss */

  .col-sm-8 {
    width: 66.66666667%;
  }

  /* line 234, ../scss/vendor/_bootstrap.scss */

  .col-sm-7 {
    width: 58.33333333%;
  }

  /* line 237, ../scss/vendor/_bootstrap.scss */

  .col-sm-6 {
    width: 50%;
  }

  /* line 240, ../scss/vendor/_bootstrap.scss */

  .col-sm-5 {
    width: 41.66666667%;
  }

  /* line 243, ../scss/vendor/_bootstrap.scss */

  .col-sm-4 {
    width: 33.33333333%;
  }

  /* line 246, ../scss/vendor/_bootstrap.scss */

  .col-sm-3 {
    width: 25%;
  }

  /* line 249, ../scss/vendor/_bootstrap.scss */

  .col-sm-2 {
    width: 16.66666667%;
  }

  /* line 252, ../scss/vendor/_bootstrap.scss */

  .col-sm-1 {
    width: 8.33333333%;
  }

  /* line 255, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 258, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  /* line 261, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  /* line 264, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 267, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  /* line 270, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  /* line 273, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 276, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  /* line 279, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  /* line 282, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 285, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  /* line 288, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  /* line 291, ../scss/vendor/_bootstrap.scss */

  .col-sm-pull-0 {
    right: auto;
  }

  /* line 294, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-12 {
    left: 100%;
  }

  /* line 297, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  /* line 300, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  /* line 303, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-9 {
    left: 75%;
  }

  /* line 306, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  /* line 309, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  /* line 312, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-6 {
    left: 50%;
  }

  /* line 315, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  /* line 318, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  /* line 321, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-3 {
    left: 25%;
  }

  /* line 324, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  /* line 327, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  /* line 330, ../scss/vendor/_bootstrap.scss */

  .col-sm-push-0 {
    left: auto;
  }

  /* line 333, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  /* line 336, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  /* line 339, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  /* line 342, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 345, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  /* line 348, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  /* line 351, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 354, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  /* line 357, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  /* line 360, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 363, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  /* line 366, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  /* line 369, ../scss/vendor/_bootstrap.scss */

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 771px) {
  /* changed from 992 to 771 */

  /* line 374, ../scss/vendor/_bootstrap.scss */

  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  /* line 377, ../scss/vendor/_bootstrap.scss */

  .col-md-12 {
    width: 100%;
  }

  /* line 380, ../scss/vendor/_bootstrap.scss */

  .col-md-11 {
    width: 91.66666667%;
  }

  /* line 383, ../scss/vendor/_bootstrap.scss */

  .col-md-10 {
    width: 83.33333333%;
  }

  /* line 386, ../scss/vendor/_bootstrap.scss */

  .col-md-9 {
    width: 75%;
  }

  /* line 389, ../scss/vendor/_bootstrap.scss */

  .col-md-8 {
    width: 66.66666667%;
  }

  /* line 392, ../scss/vendor/_bootstrap.scss */

  .col-md-7 {
    width: 58.33333333%;
  }

  /* line 395, ../scss/vendor/_bootstrap.scss */

  .col-md-6 {
    width: 50%;
  }

  /* line 398, ../scss/vendor/_bootstrap.scss */

  .col-md-5 {
    width: 41.66666667%;
  }

  /* line 401, ../scss/vendor/_bootstrap.scss */

  .col-md-4 {
    width: 33.33333333%;
  }

  /* line 404, ../scss/vendor/_bootstrap.scss */

  .col-md-3 {
    width: 25%;
  }

  /* line 407, ../scss/vendor/_bootstrap.scss */

  .col-md-2 {
    width: 16.66666667%;
  }

  /* line 410, ../scss/vendor/_bootstrap.scss */

  .col-md-1 {
    width: 8.33333333%;
  }

  /* line 413, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-12 {
    right: 100%;
  }

  /* line 416, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  /* line 419, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  /* line 422, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-9 {
    right: 75%;
  }

  /* line 425, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  /* line 428, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  /* line 431, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-6 {
    right: 50%;
  }

  /* line 434, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  /* line 437, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  /* line 440, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-3 {
    right: 25%;
  }

  /* line 443, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  /* line 446, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  /* line 449, ../scss/vendor/_bootstrap.scss */

  .col-md-pull-0 {
    right: auto;
  }

  /* line 452, ../scss/vendor/_bootstrap.scss */

  .col-md-push-12 {
    left: 100%;
  }

  /* line 455, ../scss/vendor/_bootstrap.scss */

  .col-md-push-11 {
    left: 91.66666667%;
  }

  /* line 458, ../scss/vendor/_bootstrap.scss */

  .col-md-push-10 {
    left: 83.33333333%;
  }

  /* line 461, ../scss/vendor/_bootstrap.scss */

  .col-md-push-9 {
    left: 75%;
  }

  /* line 464, ../scss/vendor/_bootstrap.scss */

  .col-md-push-8 {
    left: 66.66666667%;
  }

  /* line 467, ../scss/vendor/_bootstrap.scss */

  .col-md-push-7 {
    left: 58.33333333%;
  }

  /* line 470, ../scss/vendor/_bootstrap.scss */

  .col-md-push-6 {
    left: 50%;
  }

  /* line 473, ../scss/vendor/_bootstrap.scss */

  .col-md-push-5 {
    left: 41.66666667%;
  }

  /* line 476, ../scss/vendor/_bootstrap.scss */

  .col-md-push-4 {
    left: 33.33333333%;
  }

  /* line 479, ../scss/vendor/_bootstrap.scss */

  .col-md-push-3 {
    left: 25%;
  }

  /* line 482, ../scss/vendor/_bootstrap.scss */

  .col-md-push-2 {
    left: 16.66666667%;
  }

  /* line 485, ../scss/vendor/_bootstrap.scss */

  .col-md-push-1 {
    left: 8.33333333%;
  }

  /* line 488, ../scss/vendor/_bootstrap.scss */

  .col-md-push-0 {
    left: auto;
  }

  /* line 491, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-12 {
    margin-left: 100%;
  }

  /* line 494, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  /* line 497, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  /* line 500, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 503, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  /* line 506, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  /* line 509, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 512, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  /* line 515, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  /* line 518, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 521, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  /* line 524, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  /* line 527, ../scss/vendor/_bootstrap.scss */

  .col-md-offset-0 {
    margin-left: 0%;
  }
}

@media (min-width: 1200px) {
  /* line 532, ../scss/vendor/_bootstrap.scss */

  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  /* line 535, ../scss/vendor/_bootstrap.scss */

  .col-lg-12 {
    width: 100%;
  }

  /* line 538, ../scss/vendor/_bootstrap.scss */

  .col-lg-11 {
    width: 91.66666667%;
  }

  /* line 541, ../scss/vendor/_bootstrap.scss */

  .col-lg-10 {
    width: 83.33333333%;
  }

  /* line 544, ../scss/vendor/_bootstrap.scss */

  .col-lg-9 {
    width: 75%;
  }

  /* line 547, ../scss/vendor/_bootstrap.scss */

  .col-lg-8 {
    width: 66.66666667%;
  }

  /* line 550, ../scss/vendor/_bootstrap.scss */

  .col-lg-7 {
    width: 58.33333333%;
  }

  /* line 553, ../scss/vendor/_bootstrap.scss */

  .col-lg-6 {
    width: 50%;
  }

  /* line 556, ../scss/vendor/_bootstrap.scss */

  .col-lg-5 {
    width: 41.66666667%;
  }

  /* line 559, ../scss/vendor/_bootstrap.scss */

  .col-lg-4 {
    width: 33.33333333%;
  }

  /* line 562, ../scss/vendor/_bootstrap.scss */

  .col-lg-3 {
    width: 25%;
  }

  /* line 565, ../scss/vendor/_bootstrap.scss */

  .col-lg-2 {
    width: 16.66666667%;
  }

  /* line 568, ../scss/vendor/_bootstrap.scss */

  .col-lg-1 {
    width: 8.33333333%;
  }

  /* line 571, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 574, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  /* line 577, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  /* line 580, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 583, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  /* line 586, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  /* line 589, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 592, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  /* line 595, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  /* line 598, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 601, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  /* line 604, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  /* line 607, ../scss/vendor/_bootstrap.scss */

  .col-lg-pull-0 {
    right: auto;
  }

  /* line 610, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-12 {
    left: 100%;
  }

  /* line 613, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  /* line 616, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  /* line 619, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-9 {
    left: 75%;
  }

  /* line 622, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  /* line 625, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  /* line 628, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-6 {
    left: 50%;
  }

  /* line 631, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  /* line 634, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  /* line 637, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-3 {
    left: 25%;
  }

  /* line 640, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  /* line 643, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  /* line 646, ../scss/vendor/_bootstrap.scss */

  .col-lg-push-0 {
    left: auto;
  }

  /* line 649, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  /* line 652, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  /* line 655, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  /* line 658, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 661, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  /* line 664, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  /* line 667, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 670, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  /* line 673, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  /* line 676, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 679, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  /* line 682, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  /* line 685, ../scss/vendor/_bootstrap.scss */

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}

/* line 689, ../scss/vendor/_bootstrap.scss */

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 696, ../scss/vendor/_bootstrap.scss */

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/* line 709, ../scss/vendor/_bootstrap.scss */

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 712, ../scss/vendor/_bootstrap.scss */

.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 715, ../scss/vendor/_bootstrap.scss */

.clearfix:before,
.shipment-methods dt ul:before,
.shipment-methods .location-state:before,
.shipment-methods .location-city:before,
.clearfix:after,
.shipment-methods dt ul:after,
.shipment-methods .location-state:after,
.shipment-methods .location-city:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

/* line 726, ../scss/vendor/_bootstrap.scss */

.clearfix:after,
.shipment-methods dt ul:after,
.shipment-methods .location-state:after,
.shipment-methods .location-city:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

/* line 732, ../scss/vendor/_bootstrap.scss */

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 737, ../scss/vendor/_bootstrap.scss */

.pull-right {
  float: right !important;
}

/* line 740, ../scss/vendor/_bootstrap.scss */

.pull-left {
  float: left !important;
}

/* line 743, ../scss/vendor/_bootstrap.scss */

.hide {
  display: none !important;
}

/* line 746, ../scss/vendor/_bootstrap.scss */

.show {
  display: block !important;
}

/* line 749, ../scss/vendor/_bootstrap.scss */

.invisible {
  visibility: hidden;
}

/* line 752, ../scss/vendor/_bootstrap.scss */

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 759, ../scss/vendor/_bootstrap.scss */

.hidden {
  display: none !important;
}

/* line 762, ../scss/vendor/_bootstrap.scss */

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

/* line 768, ../scss/vendor/_bootstrap.scss */

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

/* line 774, ../scss/vendor/_bootstrap.scss */

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 789, ../scss/vendor/_bootstrap.scss */

  .visible-xs {
    display: block !important;
  }

  /* line 792, ../scss/vendor/_bootstrap.scss */

  table.visible-xs {
    display: table !important;
  }

  /* line 795, ../scss/vendor/_bootstrap.scss */

  tr.visible-xs {
    display: table-row !important;
  }

  /* line 798, ../scss/vendor/_bootstrap.scss */

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 804, ../scss/vendor/_bootstrap.scss */

  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 809, ../scss/vendor/_bootstrap.scss */

  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 814, ../scss/vendor/_bootstrap.scss */

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 819, ../scss/vendor/_bootstrap.scss */

  .visible-sm {
    display: block !important;
  }

  /* line 822, ../scss/vendor/_bootstrap.scss */

  table.visible-sm {
    display: table !important;
  }

  /* line 825, ../scss/vendor/_bootstrap.scss */

  tr.visible-sm {
    display: table-row !important;
  }

  /* line 828, ../scss/vendor/_bootstrap.scss */

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 834, ../scss/vendor/_bootstrap.scss */

  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 839, ../scss/vendor/_bootstrap.scss */

  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 844, ../scss/vendor/_bootstrap.scss */

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 849, ../scss/vendor/_bootstrap.scss */

  .visible-md {
    display: block !important;
  }

  /* line 852, ../scss/vendor/_bootstrap.scss */

  table.visible-md {
    display: table !important;
  }

  /* line 855, ../scss/vendor/_bootstrap.scss */

  tr.visible-md {
    display: table-row !important;
  }

  /* line 858, ../scss/vendor/_bootstrap.scss */

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 864, ../scss/vendor/_bootstrap.scss */

  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 869, ../scss/vendor/_bootstrap.scss */

  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 874, ../scss/vendor/_bootstrap.scss */

  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 879, ../scss/vendor/_bootstrap.scss */

  .visible-lg {
    display: block !important;
  }

  /* line 882, ../scss/vendor/_bootstrap.scss */

  table.visible-lg {
    display: table !important;
  }

  /* line 885, ../scss/vendor/_bootstrap.scss */

  tr.visible-lg {
    display: table-row !important;
  }

  /* line 888, ../scss/vendor/_bootstrap.scss */

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 894, ../scss/vendor/_bootstrap.scss */

  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 899, ../scss/vendor/_bootstrap.scss */

  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 904, ../scss/vendor/_bootstrap.scss */

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 909, ../scss/vendor/_bootstrap.scss */

  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 914, ../scss/vendor/_bootstrap.scss */

  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 919, ../scss/vendor/_bootstrap.scss */

  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 924, ../scss/vendor/_bootstrap.scss */

  .hidden-lg {
    display: none !important;
  }
}

/* line 928, ../scss/vendor/_bootstrap.scss */

.visible-print {
  display: none !important;
}

@media print {
  /* line 932, ../scss/vendor/_bootstrap.scss */

  .visible-print {
    display: block !important;
  }

  /* line 935, ../scss/vendor/_bootstrap.scss */

  table.visible-print {
    display: table !important;
  }

  /* line 938, ../scss/vendor/_bootstrap.scss */

  tr.visible-print {
    display: table-row !important;
  }

  /* line 941, ../scss/vendor/_bootstrap.scss */

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

/* line 946, ../scss/vendor/_bootstrap.scss */

.visible-print-block {
  display: none !important;
}

@media print {
  /* line 950, ../scss/vendor/_bootstrap.scss */

  .visible-print-block {
    display: block !important;
  }
}

/* line 954, ../scss/vendor/_bootstrap.scss */

.visible-print-inline {
  display: none !important;
}

@media print {
  /* line 958, ../scss/vendor/_bootstrap.scss */

  .visible-print-inline {
    display: inline !important;
  }
}

/* line 962, ../scss/vendor/_bootstrap.scss */

.visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 966, ../scss/vendor/_bootstrap.scss */

  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 971, ../scss/vendor/_bootstrap.scss */

  .hidden-print {
    display: none !important;
  }
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

/* line 2, ../scss/vendor/_fancybox.scss */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

/* line 20, ../scss/vendor/_fancybox.scss */

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

/* line 27, ../scss/vendor/_fancybox.scss */

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 37, ../scss/vendor/_fancybox.scss */

.fancybox-opened {
  z-index: 8030;
}

/* line 41, ../scss/vendor/_fancybox.scss */

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* line 47, ../scss/vendor/_fancybox.scss */

.fancybox-outer,
.fancybox-inner {
  position: relative;
}

/* line 51, ../scss/vendor/_fancybox.scss */

.fancybox-inner {
  overflow: visible;
}

/* line 55, ../scss/vendor/_fancybox.scss */

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

/* line 59, ../scss/vendor/_fancybox.scss */

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

/* line 67, ../scss/vendor/_fancybox.scss */

.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* line 73, ../scss/vendor/_fancybox.scss */

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

/* line 78, ../scss/vendor/_fancybox.scss */

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url("../images/fancybox/fancybox_sprite.png");
}

/* line 82, ../scss/vendor/_fancybox.scss */

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

/* line 94, ../scss/vendor/_fancybox.scss */

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox/fancybox_loading.gif") center center no-repeat;
}

/* line 100, ../scss/vendor/_fancybox.scss */

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

/* line 110, ../scss/vendor/_fancybox.scss */

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

/* line 122, ../scss/vendor/_fancybox.scss */

.fancybox-prev {
  left: 0;
}

/* line 126, ../scss/vendor/_fancybox.scss */

.fancybox-next {
  right: 0;
}

/* line 130, ../scss/vendor/_fancybox.scss */

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

/* line 141, ../scss/vendor/_fancybox.scss */

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

/* line 146, ../scss/vendor/_fancybox.scss */

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

/* line 151, ../scss/vendor/_fancybox.scss */

.fancybox-nav:hover span {
  visibility: visible;
}

/* line 155, ../scss/vendor/_fancybox.scss */

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */

/* line 167, ../scss/vendor/_fancybox.scss */

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

/* line 172, ../scss/vendor/_fancybox.scss */

.fancybox-lock body {
  overflow: hidden !important;
}

/* line 176, ../scss/vendor/_fancybox.scss */

.fancybox-lock-test {
  overflow-y: hidden !important;
}

/* line 180, ../scss/vendor/_fancybox.scss */

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../images/fancybox/fancybox_overlay.png");
}

/* line 190, ../scss/vendor/_fancybox.scss */

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

/* line 196, ../scss/vendor/_fancybox.scss */

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */

/* line 203, ../scss/vendor/_fancybox.scss */

.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

/* line 211, ../scss/vendor/_fancybox.scss */

.fancybox-opened .fancybox-title {
  visibility: visible;
}

/* line 215, ../scss/vendor/_fancybox.scss */

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

/* line 224, ../scss/vendor/_fancybox.scss */

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

/* line 240, ../scss/vendor/_fancybox.scss */

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

/* line 246, ../scss/vendor/_fancybox.scss */

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

/* line 250, ../scss/vendor/_fancybox.scss */

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* line 265, ../scss/vendor/_fancybox.scss */

  #fancybox-loading,
  .fancybox-close,
  .fancybox-prev span,
  .fancybox-next span {
    background-image: url("../images/fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  /* line 270, ../scss/vendor/_fancybox.scss */

  #fancybox-loading div {
    background-image: url("../images/fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}

/*! Flickity v1.1.1
http://flickity.metafizzy.co
---------------------------------------------- */

/* line 5, ../scss/vendor/_flickity.scss */

.flickity-enabled {
  position: relative;
}

/* line 9, ../scss/vendor/_flickity.scss */

.flickity-enabled:focus {
  outline: none;
}

/* line 11, ../scss/vendor/_flickity.scss */

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* line 17, ../scss/vendor/_flickity.scss */

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

/* line 25, ../scss/vendor/_flickity.scss */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 34, ../scss/vendor/_flickity.scss */

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 40, ../scss/vendor/_flickity.scss */

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

/* line 47, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* line 63, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button:hover {
  background: white;
}

/* line 65, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

/* line 70, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button:active,
.flickity-prev-next-button.nice-select.open {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6;
}

/* line 75, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button.previous {
  left: 10px;
}

/* line 76, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */

/* line 78, ../scss/vendor/_flickity.scss */

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

/* line 82, ../scss/vendor/_flickity.scss */

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

/* line 87, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto;
}

/* line 93, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* line 101, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* color & size if no SVG - IE8 and Android 2.3 */

/* line 106, ../scss/vendor/_flickity.scss */

.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px;
}

/* ---- page dots ---- */

/* line 113, ../scss/vendor/_flickity.scss */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

/* line 124, ../scss/vendor/_flickity.scss */

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

/* line 126, ../scss/vendor/_flickity.scss */

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer;
}

/* line 138, ../scss/vendor/_flickity.scss */

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1;
}

/* This is the moving lens square underneath the mouse pointer. */

/* line 3, ../scss/vendor/_cloud-zoom.scss */

.cloud-zoom-lens {
  border: 4px solid #888;
  margin: -4px;
  /* Set this to minus the border thickness. */
  background-color: #fff;
  cursor: move;
}

/* This is for the title text. */

/* line 11, ../scss/vendor/_cloud-zoom.scss */

.cloud-zoom-title {
  font-family: Arial, Helvetica, sans-serif;
  position: absolute !important;
  background-color: #000;
  color: #fff;
  padding: 3px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  top: 0px;
}

/* This is the zoom window. */

/* line 25, ../scss/vendor/_cloud-zoom.scss */

.cloud-zoom-big {
  border: 4px solid #ccc;
  overflow: hidden;
}

/* This is the loading message. */

/* line 31, ../scss/vendor/_cloud-zoom.scss */

.cloud-zoom-loading {
  color: white;
  background: #222;
  padding: 3px;
  border: 1px solid #000;
}

/* line 38, ../scss/vendor/_cloud-zoom.scss */

.product-image .mousetrap {
  z-index: 100 !important;
}

/* 
 *  Owl Carousel 2 - Animate Plugin
 */

/* line 4, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 10, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 13, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 16, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */

/* line 43, ../scss/vendor/_owl.carousel.scss */

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */

/* line 54, ../scss/vendor/_owl.carousel.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 62, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

/* line 66, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 74, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 80, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 91, ../scss/vendor/_owl.carousel.scss */

.owl-carousel.owl-loaded {
  display: block;
}

/* line 94, ../scss/vendor/_owl.carousel.scss */

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 98, ../scss/vendor/_owl.carousel.scss */

.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 101, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

/* line 104, ../scss/vendor/_owl.carousel.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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 116, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

/* line 121, ../scss/vendor/_owl.carousel.scss */

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/* line 127, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

/* line 134, ../scss/vendor/_owl.carousel.scss */

.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 137, ../scss/vendor/_owl.carousel.scss */

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

/* line 142, ../scss/vendor/_owl.carousel.scss */

.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */

/* line 149, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* 
 * 	Owl Carousel - Video Plugin
 */

/* line 160, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 165, ../scss/vendor/_owl.carousel.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;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

/* line 183, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

/* line 190, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 194, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 209, ../scss/vendor/_owl.carousel.scss */

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* ============================================ *
 * Base Styles
 * ============================================ */

/* line 30, ../scss/custom/_common.scss */

body {
  /*@include easy-fs($f-size, $f-size);*/
}

/* line 33, ../scss/custom/_common.scss */

*.mobile {
  display: none !important;
}

/* line 36, ../scss/custom/_common.scss */

i,
cite,
em,
var,
dfn {
  font-style: normal;
}

/* -------------------------------------------- *
 * Base Anchor Styles
 */

/* line 47, ../scss/custom/_common.scss */

a {
  color: #8caedc;
  text-decoration: none;
}

/* line 50, ../scss/custom/_common.scss */

a[class] {
  color: #8caedc;
}

/* line 52, ../scss/custom/_common.scss */

a[class]:hover {
  color: #305f9f;
}

/* line 58, ../scss/custom/_common.scss */

a[class*="over"],
a:hover {
  color: #305f9f;
  text-decoration: underline;
}

/* line 64, ../scss/custom/_common.scss */

a:focus {
  outline-color: #82a7d9;
  color: #305f9f;
}

/* -------------------------------------------- *
 * Labels
 */

/* line 73, ../scss/custom/_common.scss */

label {
  font-size: 14px;
  font-weight: normal;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: capitalize;
}

/* ============================================ *
 * Typography
 * ============================================ */

/* line 84, ../scss/custom/_common.scss */

h1,
.h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #727a85;
  font-family: "Proxima-Nova-Light", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: capitalize;
}

/* line 88, ../scss/custom/_common.scss */

h2,
.h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #727a85;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: capitalize;
}

/* line 92, ../scss/custom/_common.scss */

h3,
.h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #57626f;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 23px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
}

/* line 96, ../scss/custom/_common.scss */

h4,
.h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #76848f;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
}

/* line 100, ../scss/custom/_common.scss */

h5,
.h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #727a85;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* line 104, ../scss/custom/_common.scss */

h6,
.h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #727a85;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* ============================================ *
 * Button
 * ============================================ */

/* line 139, ../scss/custom/_common.scss */

.btn-standard,
.btn-other,
a[class*="btn-continue"],
a.btn-checkout-back,
.btn-continue,
#allajax-poststeps .actions .button-view,
.btn-special,
a[class="btn-checkout"],
a.btn-cart,
.btn-cart,
.btn-checkout,
.btn-func,
a.check-stock-button,
*[class^="button"],
.subscribe .button,
a[class^="button-"],
.button {
  font-size: 18px;
  color: #FFF;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  min-width: 150px;
  padding: 9px 15px;
  border: none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* line 149, ../scss/custom/_common.scss */

.btn-standard.btn-over,
.btn-over.btn-other,
a.btn-over[class*="btn-continue"],
a.btn-over.btn-checkout-back,
.btn-over.btn-continue,
#allajax-poststeps .actions .btn-over.button-view,
.btn-over.btn-special,
a.btn-over[class="btn-checkout"],
.btn-over.btn-cart,
.btn-over.btn-checkout,
.btn-over.btn-func,
a.btn-over.check-stock-button,
.btn-over[class^="button"],
a.btn-over[class^="button-"],
.btn-over.button,
.btn-standard:active,
.btn-standard.nice-select.open,
.nice-select.open.btn-other,
a.nice-select.open[class*="btn-continue"],
a.nice-select.open.btn-checkout-back,
.nice-select.open.btn-continue,
#allajax-poststeps .actions .nice-select.open.button-view,
.nice-select.open.btn-special,
a.nice-select.open[class="btn-checkout"],
.nice-select.open.btn-cart,
.nice-select.open.btn-checkout,
.nice-select.open.btn-func,
a.nice-select.open.check-stock-button,
.nice-select.open[class^="button"],
a.nice-select.open[class^="button-"],
.nice-select.open.button,
.btn-other:active,
a[class*="btn-continue"]:active,
a.btn-checkout-back:active,
.btn-continue:active,
#allajax-poststeps .actions .button-view:active,
.btn-special:active,
a[class="btn-checkout"]:active,
.btn-cart:active,
.btn-checkout:active,
.btn-func:active,
a.check-stock-button:active,
[class^="button"]:active,
a[class^="button-"]:active,
.button:active,
.btn-standard:focus,
.btn-other:focus,
a[class*="btn-continue"]:focus,
a.btn-checkout-back:focus,
.btn-continue:focus,
#allajax-poststeps .actions .button-view:focus,
.btn-special:focus,
a[class="btn-checkout"]:focus,
.btn-cart:focus,
.btn-checkout:focus,
.btn-func:focus,
a.check-stock-button:focus,
[class^="button"]:focus,
a[class^="button-"]:focus,
.button:focus,
.btn-standard:hover,
.btn-other:hover,
a[class*="btn-continue"]:hover,
a.btn-checkout-back:hover,
.btn-continue:hover,
#allajax-poststeps .actions .button-view:hover,
.btn-special:hover,
a[class="btn-checkout"]:hover,
.btn-cart:hover,
.btn-checkout:hover,
.btn-func:hover,
a.check-stock-button:hover,
[class^="button"]:hover,
a[class^="button-"]:hover,
.button:hover {
  text-decoration: none;
  color: #FFF;
}

/* line 180, ../scss/custom/_common.scss */

.btn-other,
a[class*="btn-continue"],
a.btn-checkout-back,
.btn-continue,
#allajax-poststeps .actions .button-view {
  background: #8d98a1;
}

/* line 183, ../scss/custom/_common.scss */

.btn-other.btn-over,
a.btn-over[class*="btn-continue"],
a.btn-over.btn-checkout-back,
.btn-over.btn-continue,
#allajax-poststeps .actions .btn-over.button-view,
.btn-other:active,
.btn-other.nice-select.open,
a.nice-select.open[class*="btn-continue"],
a.nice-select.open.btn-checkout-back,
.nice-select.open.btn-continue,
#allajax-poststeps .actions .nice-select.open.button-view,
a[class*="btn-continue"]:active,
a.btn-checkout-back:active,
.btn-continue:active,
#allajax-poststeps .actions .button-view:active,
.btn-other:disabled,
a[class*="btn-continue"]:disabled,
a.btn-checkout-back:disabled,
.btn-continue:disabled,
#allajax-poststeps .actions .button-view:disabled,
.btn-other:focus,
a[class*="btn-continue"]:focus,
a.btn-checkout-back:focus,
.btn-continue:focus,
#allajax-poststeps .actions .button-view:focus,
.btn-other:hover,
a[class*="btn-continue"]:hover,
a.btn-checkout-back:hover,
.btn-continue:hover,
#allajax-poststeps .actions .button-view:hover {
  background: #ccc;
}

/* line 203, ../scss/custom/_common.scss */

.btn-special,
a[class="btn-checkout"],
a.btn-cart,
.btn-cart,
.btn-checkout {
  background: #d93e70;
}

/* line 206, ../scss/custom/_common.scss */

.btn-special.btn-over,
a.btn-over[class="btn-checkout"],
.btn-over.btn-cart,
.btn-over.btn-checkout,
.btn-special:active,
.btn-special.nice-select.open,
a.nice-select.open[class="btn-checkout"],
.nice-select.open.btn-cart,
.nice-select.open.btn-checkout,
a[class="btn-checkout"]:active,
.btn-cart:active,
.btn-checkout:active,
.btn-special:disabled,
a[class="btn-checkout"]:disabled,
.btn-cart:disabled,
.btn-checkout:disabled,
.btn-special:focus,
a[class="btn-checkout"]:focus,
.btn-cart:focus,
.btn-checkout:focus,
.btn-special:hover,
a[class="btn-checkout"]:hover,
.btn-cart:hover,
.btn-checkout:hover {
  background: #fa437e;
}

/* line 227, ../scss/custom/_common.scss */

.btn-func,
a.check-stock-button {
  background: #FFF;
  border: 2px solid #8caedc;
  color: #8caedc;
  text-transform: lowercase;
}

/* line 234, ../scss/custom/_common.scss */

.btn-func.btn-over,
a.btn-over.check-stock-button,
.btn-func:active,
.btn-func.nice-select.open,
a.nice-select.open.check-stock-button,
a.check-stock-button:active,
.btn-func:disabled,
a.check-stock-button:disabled,
.btn-func:focus,
a.check-stock-button:focus,
.btn-func:hover,
a.check-stock-button:hover {
  background: #8caedc;
  color: #FFF;
}

/* line 243, ../scss/custom/_common.scss */

.btn-func:before,
a.check-stock-button:before {
  display: inline-block;
  font: normal normal normal 14px/1 "ElegantIcons";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 18px;
  margin-right: 10px;
  vertical-align: top;
}

/* line 276, ../scss/custom/_common.scss */

a.check-stock-button {
  display: inline-block;
  line-height: 100%;
  padding: 8px 15px;
}

/* line 281, ../scss/custom/_common.scss */

a.check-stock-button span {
  display: inline-block;
  width: auto;
  vertical-align: top;
}

/* line 285, ../scss/custom/_common.scss */

a.check-stock-button span:first-letter {
  text-transform: uppercase;
}

/* -------------------------------------------- *
 * Multi tab
 */

/* Style the accordion panel. Note: hidden by default */

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */

/* line 314, ../scss/custom/_common.scss */

div.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.6s ease-in-out;
  opacity: 0;
}

/* line 320, ../scss/custom/_common.scss */

div.accordion-panel.show {
  opacity: 1;
  max-height: 2000px;
  /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

/* line 324, ../scss/custom/_common.scss */

button.accordion {
  background-color: #f1f2f4;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* line 333, ../scss/custom/_common.scss */

button.accordion span {
  display: block;
  float: right;
  height: 0;
  width: 0;
  border: 6px solid transparent;
}

/* line 339, ../scss/custom/_common.scss */

button.accordion span.arrow {
  margin-top: 3px;
  border-bottom-color: transparent;
  border-top-color: #8caedc;
}

/* line 346, ../scss/custom/_common.scss */

button.accordion.active .arrow {
  margin-top: 0;
  border-bottom-color: #8caedc;
  border-top-color: transparent;
}

/*** end Accordion ***/

/*.product-collateral {
    .toggle-tabs {
        font-family: $f-stack-semibold; border:none; border-bottom: 1px solid $c-multi-tab-heading-border; background: $bg-multi-tab;
        li {
            display:inline-block; float:none; border:none; width: 33.3%;
        }

        li span {
            font-size: $f-size; font-weight: normal; color: $c-multi-tab-heading; height: $multi-tab-heading-height; border: none; border-right: 1px solid $c-border; letter-spacing: 1px; text-align:center; width:100%;
        }
        li.current span,
        li:hover span { color: $c-multi-tab-active-heading; }
        li ~ li.current {
            span { margin-left: -1px; }
        }
        li.current {
            border:none;
            span {
                position: relative; border: 1px solid $c-multi-tab-heading-border; border-bottom: none; border-top: none; background: $bg-multi-tab-active; height: $multi-tab-active-heading-height; margin-bottom: -1px;
                &:after { content:''; position: absolute; height: 5px; border: 1px solid $c-multi-tab-heading-border; background: $bg-multi-tab-active; border-bottom: none; top: -5px; left:-1px; right:-1px; }
            }
        }
        li:last-child,
        li.last {
            span { border-right: none; }
        }
    }
    dl.collateral-tabs {
        */

/* border-bottom: 1px solid $c-multi-tab-heading-border; */

/*
        padding-bottom: 10px;
        dd {
            border:none; padding:0;
            .tab-content {
                @include easy-padding-top(22px,15px); @include easy-padding-bottom(0,35px); padding-left: 0; line-height: 20px;
                table {
                    tr {
                        th, td { border:none; background : $bg-even-row; padding: 4px 16px; }
                        &.odd {
                            th,td { background: $bg-odd-row; }
                        }
                    }
                }
                > div,
                > strong { @include easy-padding-left(16px,0px); }
            }
        }
        dt {
            border: none; padding:0;
            &:first-child { border-top: 1px solid $c-border; }
            span {
                font-family: $f-stack-semibold; font-size: $f-size; color: $c-text; display: block; margin-bottom: 0; letter-spacing: 1px; border-bottom: 0; border-bottom: 1px solid $c-border; cursor: pointer; position: relative; line-height: 50px; padding: 0; padding-left:10px;
                &:after { @include fe-icon(); position: absolute; content:'\e820'; right:13px; top: 18px; color: $c-input-text; }
                &:before { position: absolute; content:''; right:0; top:0; background: #f6f6f6; width: 50px; height: 50px; }
            }
            &:after { display:none; }
        }
    }

    &.accordion-open {
        dl.collateral-tabs {
            dt {
                &.current{
                    span {
                        background: transparent;
                        &:after{ content: "\e821"; }
                    }
                    &:after { display:none; }
                }
            }
        }
    }
}*/

/* -------------------------------------------- *
 * Socials
 */

/* line 441, ../scss/custom/_common.scss */

.social-outlined.facebook a,
.footer-wrapper .social-links div.facebook.social-icon a {
  background: url("../images/social/outlined/facebook-outlined-blue.svg");
}

/* line 445, ../scss/custom/_common.scss */

.social-outlined.facebook:hover a,
.footer-wrapper .social-links div.facebook.social-icon:hover a {
  background: url("../images/social/outlined/facebook-outlined.svg");
}

/* line 452, ../scss/custom/_common.scss */

.social-outlined.twitter a,
.footer-wrapper .social-links div.twitter.social-icon a {
  background: url("../images/social/outlined/twitter-outlined-blue.svg");
}

/* line 456, ../scss/custom/_common.scss */

.social-outlined.twitter:hover a,
.footer-wrapper .social-links div.twitter.social-icon:hover a {
  background: url("../images/social/outlined/twitter-outlined.svg");
}

/* line 463, ../scss/custom/_common.scss */

.social-outlined.instagram a,
.footer-wrapper .social-links div.instagram.social-icon a {
  background: url("../images/social/outlined/instagram-outlined-blue.svg") no-repeat;
}

/* line 467, ../scss/custom/_common.scss */

.social-outlined.instagram:hover a,
.footer-wrapper .social-links div.instagram.social-icon:hover a {
  background: url("../images/social/outlined/instagram-outlined.svg") no-repeat;
}

/* line 474, ../scss/custom/_common.scss */

.social-outlined.pinterest a,
.footer-wrapper .social-links div.pinterest.social-icon a {
  background: url("../images/social/outlined/pinterest-outlined-blue.svg");
}

/* line 478, ../scss/custom/_common.scss */

.social-outlined.pinterest:hover a,
.footer-wrapper .social-links div.pinterest.social-icon:hover a {
  background: url("../images/social/outlined/pinterest-outlined.svg");
}

/* line 487, ../scss/custom/_common.scss */

.social-flat.facebook a,
.catalog-product-view .socials-share .facebook.social a {
  background: url("../images/social/flat/facebook-flat.svg");
}

/* line 491, ../scss/custom/_common.scss */

.social-flat.facebook:hover a,
.catalog-product-view .socials-share .facebook.social:hover a {
  background: url("../images/social/flat/facebook-flat-gray.svg");
}

/* line 498, ../scss/custom/_common.scss */

.social-flat.twitter a,
.catalog-product-view .socials-share .twitter.social a {
  background: url("../images/social/flat/twitter-flat.svg");
}

/* line 502, ../scss/custom/_common.scss */

.social-flat.twitter:hover a,
.catalog-product-view .socials-share .twitter.social:hover a {
  background: url("../images/social/flat/twitter-flat-gray.svg");
}

/* line 509, ../scss/custom/_common.scss */

.social-flat.mail a,
.catalog-product-view .socials-share .mail.social a {
  background: url("../images/social/flat/mail-flat.svg") no-repeat;
}

/* line 513, ../scss/custom/_common.scss */

.social-flat.mail:hover a,
.catalog-product-view .socials-share .mail.social:hover a {
  background: url("../images/social/flat/mail-flat-gray.svg") no-repeat;
}

/* line 520, ../scss/custom/_common.scss */

.social-flat.pinterest a,
.catalog-product-view .socials-share .pinterest.social a {
  background: url("../images/social/flat/pinterest-flat.svg");
}

/* line 524, ../scss/custom/_common.scss */

.social-flat.pinterest:hover a,
.catalog-product-view .socials-share .pinterest.social:hover a {
  background: url("../images/social/flat/pinterest-flat-gray.svg");
}

/* .social-links ul {
    > * { display:inline-block; vertical-align: top; }
    a[class*="icon-"] {
        @include circle($icon-box-size); background: $bg-social-circle; display:inline-block; color: $c-social; font-size: 24px; text-align: center;
        &:hover { text-decoration: none; }
        &.icon-appsocial_icon {
          font-size: 41px;
          &:before { margin-left:0; }
        }
    }
}*/

/* -------------------------------------------- *
* Action link
*/

/*
.add-to-links {
    li {
        display:inline-block; margin-left: 17px; float:left; margin-right:0;
        &:first-child { margin-left:0; }
        a {
            color: $c-text; margin:0; padding:0;
            &:hover { text-decoration: none; }
        }
        .link-compare { @include easy-display(inline-block,none); }
    }
    [class*="link-"]{
        font-family: $f-stack-semibold;
        @include easy-text-align(left,center,left);
        @include easy-width(auto,78px,auto);
        @include easy-fs($f-size,$f-size-s,$f-size);
        @include easy-line-height(21px,$f-size);
        &:before {
            @include circle($icon-box-size);
            border: 1px solid $c-icon-border;
            color: $c-action-icon-link;
            font-size: $f-icon-action;
            line-height: 37px;
            @include easy-margin-bottom(0,5px,0);
            @include easy-margin-left(0,auto,0);
            @include easy-margin-right(9px,auto,9px);
            @include easy-display(inline-block,block,inline-block);
        }
        @include bp(min-width,$bp-large + 1) {
            @include bp(max-width, $bp-xlarge) {
                text-align:center;
                width: 78px;
                &:before { display:block; margin: 0 auto 5px; }
            }
        }
    }
}
.link-wishlist {
    &:before { @include fe-icon(); content: '\e80c'; }
}
.link-specsheet {
    &:before { @include fe-icon(); content: '\e80d'; }
}
.link-compare {
    &:before { @include fe-icon(); content: '\e80e'; }
}
*/

/* -------------------------------------------- *
* Rating
*/

/* line 605, ../scss/custom/_common.scss */

.rating-box {
  background-image: url(../images/rating_gray.png);
  background-repeat: repeat-x;
  background-position: 0 0;
  width: 105px;
  height: 15px;
  background-size: contain;
  margin-bottom: 0;
}

/* line 615, ../scss/custom/_common.scss */

.rating-box .rating {
  background-image: url(../images/rating_blue.png);
  background-repeat: repeat-x;
  background-position: 0 0;
  width: 126px;
  height: 15px;
  background-size: contain;
}

/*
.rating-box {
    text-align: left; position: relative; display:inline-block; width: 92px; height: 20px;
    .rating{ height: 20px; }
}

.rating-number { display: none; }
.rating {
    display:inline-block;
    overflow:hidden;
//    visibility: hidden; //don't use this because it make bug on IE
    &:after,
    &:before { font-size: $f-size-xxl; color: $c-rating; letter-spacing: 2px; left: -3px; display: inline-block; white-space: nowrap; //fix bug break on IE }
    &:after { @include fe-icon(); content:'\e814 \e814 \e814 \e814 \e814'; position: absolute; top:0; visibility: visible; }
    &:before { @include fe-icon(); content:'\e815 \e815 \e815 \e815 \e815'; visibility: visible; position: relative; top: 0; }
    &.over,
    &:hover {
        &:after,
        &:before { color: $c-rating-over; }
    }
}
.products-grid {
    .product-shop {
        .desc { display:none; }
    }
    .product-secondary {
        .action { display: none; }
    }
}*/

/* -------------------------------------------- *
*  Pages - Toolbar
*/

/*
.pages {
    * { line-height: 42px; }
    ol li { border:none; margin-left: 9px; }
    .current, ol li a { display: inline-block; width: 42px; height: 42px; line-height: 42px; border: 1px solid $c-border-number-color; font-size: $f-size; color: $c-number; }
    a { &:hover { text-decoration: none; border-color: $c-border-number-over; } }
    .current {
        background: $current-background-color; border-color: transparent; color: $c-current-number;
        &:hover { width: 42px; height: 42px; line-height: 42px; background: $current-background-color; border-color: transparent; color: $c-current-number; }
    }
    .next, .previous {
        font-size: $f-size;
        &:hover:before,
        &:before { border:none; color: $c-next-previous; line-height: 7px; }
        &:hover { border-color: $c-border-number-over; }
        img{ display: none; }
    }
    .next {
        &:before { @include fe-icon(); content:'\e827'; }
        &:hover:before { content:'\e827'; }
    }
    .previous {
        &:before { @include fe-icon(); content:'\e828'; }
        &:hover:before { content:'\e828'; }
    }
}*/

/* line 690, ../scss/custom/_common.scss */

.toolbar .center {
  display: none;
}

/* line 691, ../scss/custom/_common.scss */

.toolbar-bottom .toolbar .center {
  display: block;
}

/* line 692, ../scss/custom/_common.scss */

.toolbar-bottom .toolbar .pages {
  display: inline-flex;
  display: -webkit-inline-flex;
  -webkit-flex-direction: row;
  float: none;
  margin: 0 auto;
}

/* line 700, ../scss/custom/_common.scss */

.pages {
  /** Convert your px to rem to scale everything **/
  /* Formular: (number in px) * 100 / 1210 (1210 is maximum width of the wrapper at desktop viewpor */
}

/* line 701, ../scss/custom/_common.scss */

.pages .previous_text,
.pages .next_text {
  position: relative;
  height: 35px;
  float: left;
  padding-right: 12px;
  margin-left: 15px;
}

/* line 708, ../scss/custom/_common.scss */

.pages .next_text,
.pages .next_text a,
.pages .previous_text,
.pages .previous_text a {
  border: none;
  width: auto;
  font-size: 15px;
  text-transform: none;
}

/* line 715, ../scss/custom/_common.scss */

.pages .previous_text {
  background: url(../images/paging-left-arrow.png) no-repeat 0 50%;
}

/* line 718, ../scss/custom/_common.scss */

.pages .next_text {
  background: url(../images/paging-right-arrow.png) no-repeat right 50%;
}

/* line 721, ../scss/custom/_common.scss */

.pages li {
  border: 1px solid #ddd;
  width: 35px;
  height: 35px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
}

/* line 728, ../scss/custom/_common.scss */

.pages li:first-child {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 729, ../scss/custom/_common.scss */

.pages li:last-child {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 730, ../scss/custom/_common.scss */

.pages li.current-b,
.pages li.current-b:hover {
  background: #727A85;
  border: 1px solid #727A85;
  color: #fff;
}

@media only screen and (min-width: 771px) and (max-width: 1209px) {
  /* line 736, ../scss/custom/_common.scss */

  .pages li {
    width: 2.89256vw;
    height: 2.89256vw;
    font-size: 1.15702vw;
    line-height: 2.64463vw;
  }
}

/* -------------------------------------------- *
*  Tooltip
*/

/* line 750, ../scss/custom/_common.scss */

.tooltip-container {
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* line 754, ../scss/custom/_common.scss */

.tooltip-container:hover .tooltip-insert {
  display: block;
}

/* line 757, ../scss/custom/_common.scss */

.tooltip-container > [class*="icon-"] {
  color: #FFF;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #bfc4ce;
  vertical-align: top;
  margin-top: 3px;
  font-size: 13px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

/* line 767, ../scss/custom/_common.scss */

.tooltip-container > [class*="icon-"]:before {
  line-height: 15px;
  vertical-align: top;
  text-align: left;
  margin-left: 3px;
}

/* line 774, ../scss/custom/_common.scss */

.tooltip-container .tooltip-insert {
  display: none;
  line-height: 17px;
  letter-spacing: -0.3px;
  font-size: 13px;
  border: 1px solid #e8e8e8;
  background: #FFF;
  left: -185px;
  margin-top: 10px;
  padding: 11px 15px;
  position: absolute;
  text-align: left;
  width: 216px;
  z-index: 2222;
}

@media only screen and (min-width: 600px) {
  /* line 774, ../scss/custom/_common.scss */

  .tooltip-container .tooltip-insert {
    left: -100px;
  }
}

/* line 789, ../scss/custom/_common.scss */

.tooltip-container .tooltip-insert [class*="icon-"] {
  border-bottom: 1px solid #FFF;
  display: inline-block;
  height: 10px;
  left: 89%;
  margin-left: -8px;
  position: absolute;
  top: -10px;
  width: 17px;
}

@media only screen and (min-width: 600px) {
  /* line 789, ../scss/custom/_common.scss */

  .tooltip-container .tooltip-insert [class*="icon-"] {
    left: 50%;
  }
}

/* line 798, ../scss/custom/_common.scss */

.tooltip-container .tooltip-insert [class*="icon-"]:before {
  margin-left: 0;
  position: absolute;
  bottom: -6px;
  left: -1px;
  width: 100%;
  color: #e8e8e8;
  font-size: 19px;
}

/* -------------------------------------------- *
*  Loading Ajax
*/

/* line 815, ../scss/custom/_common.scss */

.loading-ajax,
.loading-ajax-login {
  background: url("../images/ajax-loader.gif") no-repeat center center transparent;
  height: 50px;
  text-align: center;
  margin: 10px 0;
}

/* ============================================ *
 * Quick short Responsive Styles
 * ============================================ */

/* line 826, ../scss/custom/_common.scss */

.bp-mobile-only {
  display: block !important;
}

@media only screen and (min-width: 600px) {
  /* line 826, ../scss/custom/_common.scss */

  .bp-mobile-only {
    display: none;
  }
}

/* line 830, ../scss/custom/_common.scss */

.bp-tablet-up {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 830, ../scss/custom/_common.scss */

  .bp-tablet-up {
    display: block;
  }
}

/* line 834, ../scss/custom/_common.scss */

.bp-tablet-down {
  display: block;
}

@media only screen and (min-width: 600px) {
  /* line 834, ../scss/custom/_common.scss */

  .bp-tablet-down {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 834, ../scss/custom/_common.scss */

  .bp-tablet-down {
    display: none;
  }
}

/* line 838, ../scss/custom/_common.scss */

.bp-tablet-only {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 838, ../scss/custom/_common.scss */

  .bp-tablet-only {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 838, ../scss/custom/_common.scss */

  .bp-tablet-only {
    display: none;
  }
}

/* line 842, ../scss/custom/_common.scss */

.bp-desktop-up,
.desktop {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 842, ../scss/custom/_common.scss */

  .bp-desktop-up,
  .desktop {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 842, ../scss/custom/_common.scss */

  .bp-desktop-up,
  .desktop {
    display: block;
  }
}

/* line 846, ../scss/custom/_common.scss */

.bp-desktop-only {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 846, ../scss/custom/_common.scss */

  .bp-desktop-only {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 846, ../scss/custom/_common.scss */

  .bp-desktop-only {
    display: block;
  }
}

/**** Mobile Style ****/

/* iPhone 4s ~ iPhone 6s */

/* line 852, ../scss/custom/_common.scss */

.mobile {
  display: block !important;
}

@media only screen and (min-width: 600px) {
  /* line 852, ../scss/custom/_common.scss */

  .mobile {
    display: none !important;
  }
}

/* ============================================ *
 * no display
 * ============================================ */

/* line 863, ../scss/custom/_common.scss */

.unvisible {
  display: block !important;
  visibility: hidden !important;
}

/* ============================================ *
 * Price
 * ============================================ */

/* line 872, ../scss/custom/_common.scss */

span.price,
.last-price {
  color: #727a85;
}

/* line 876, ../scss/custom/_common.scss */

.last-price {
  font-size: 12px;
}

@media only screen and (min-width: 600px) {
  /* line 876, ../scss/custom/_common.scss */

  .last-price {
    font-size: 12px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 876, ../scss/custom/_common.scss */

  .last-price {
    font-size: 15px;
  }
}

/* line 884, ../scss/custom/_common.scss */

.header-minicart .last-price {
  font-size: 13px;
  line-height: 32px;
}

/* line 888, ../scss/custom/_common.scss */

.header-minicart .label {
  color: #727a85;
}

/* line 890, ../scss/custom/_common.scss */

.header-minicart .label:hover {
  color: #727a85;
}

/* line 896, ../scss/custom/_common.scss */

.item .price-box .last-price {
  color: #333333;
}

@media only screen and (max-width: 480px) {
  /* line 896, ../scss/custom/_common.scss */

  .item .price-box .last-price {
    font-size: 14px;
  }
}

/* ============================================ *
 * 2 column
 * ============================================ */

/* line 908, ../scss/custom/_common.scss */

.row {
  margin-left: -10px;
  margin-right: -10px;
}

/* line 909, ../scss/custom/_common.scss */

.left {
  float: left;
}

/* line 910, ../scss/custom/_common.scss */

.right {
  float: right;
}

/* line 913, ../scss/custom/_common.scss */

.col2-set .box {
  width: 49%;
}

/* line 916, ../scss/custom/_common.scss */

.box {
  color: #333;
  background-color: #f1f2f4;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif, Arial;
  padding: 30px !important;
  font-size: 14px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  /** Convert your px to rem to scale everything **/
  /* Formular: (number in px) * 100 / 1210 (1210 is maximum width of the wrapper at desktop viewpor */
}

/* line 923, ../scss/custom/_common.scss */

.box h2 {
  font-size: 23px;
  line-height: 23px;
  padding-bottom: 10px;
  margin-bottom: 16px;
  color: #76848f;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  border-bottom: 1px solid #e8e8e8;
  text-transform: none;
}

/* line 933, ../scss/custom/_common.scss */

.box p {
  margin-bottom: 20px;
  font-size: 16px;
}

@media only screen and (min-width: 771px) and (max-width: 1209px) {
  /* line 916, ../scss/custom/_common.scss */

  .box {
    padding: 2.47934vw !important;
    font-size: 1.15702vw;
    line-height: 1.32231vw;
  }

  /* line 943, ../scss/custom/_common.scss */

  .box h2 {
    font-size: 1.90083vw;
    line-height: 1.90083vw;
    padding-bottom: 0.82645vw;
    margin-bottom: 1.32231vw;
  }

  /* line 949, ../scss/custom/_common.scss */

  .box p {
    margin-bottom: 1.65289vw;
  }
}

/* .columns-2 {
    float: left; width: 50%; margin: 0;
    @include bp(max-width, $bp-mobile) { width: 100%; float: none; }
} */

/* ============================================ *
 * Cms page
 * ============================================ */

/* line 964, ../scss/custom/_common.scss */

.content-wrapper {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================ *
 * Page Titles
 * ============================================ */

/* line 974, ../scss/custom/_common.scss */

.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-family: 'Proxima-Nova-Light';
  text-transform: none;
  font-weight: normal;
  padding-bottom: 13px;
  margin-bottom: 23px;
  margin-top: 23px;
  letter-spacing: -0.5px;
  font-size: 34px;
  line-height: 36px;
  color: #727a85;
  /** Convert your px to rem to scale everything **/
  /* Formular: (number in px) * 100 / 1210 (1210 is maximum width of the wrapper at desktop viewpor */
  /**** Mobile Style ****/
  /* iPhone 4s ~ iPhone 6s */
}

@media only screen and (min-width: 771px) and (max-width: 1209px) {
  /* line 974, ../scss/custom/_common.scss */

  .page-title h1,
  .page-title h2,
  .product-name h1,
  .product-name .h1 {
    padding-bottom: 1.07438vw;
    margin-bottom: 1.90083vw;
    margin-top: 1.90083vw;
    letter-spacing: -0.04132vw;
    font-size: 2.80992vw;
    line-height: 2.97521vw;
  }
}

@media only screen and (min-width: 320px) and (max-width: 600px) {
  /* line 974, ../scss/custom/_common.scss */

  .page-title h1,
  .page-title h2,
  .product-name h1,
  .product-name .h1 {
    font-size: 5.66667vw;
    line-height: 6vw;
  }
}

/* ============================================ *
 * FancyBox
 * ============================================ */

/* line 1011, ../scss/custom/_common.scss */

.fancybox-lock body {
  overflow: inherit !important;
}

/* line 1017, ../scss/custom/_common.scss */

.fancybox-item:hover {
  text-decoration: none;
}

/* line 1020, ../scss/custom/_common.scss */

.fancybox-item.fancybox-close {
  background: none;
  color: #bcbcbc;
  text-align: center;
  width: 27px;
  height: 27px;
  right: -15px;
  top: -15px;
}

/* line 1028, ../scss/custom/_common.scss */

.fancybox-item.fancybox-close:before {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 30px;
  line-height: 24px;
  height: 24px;
  background: #FFF;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

/* line 1039, ../scss/custom/_common.scss */

#fancybox-outer {
  border: 8px solid #d1d1d1;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  z-index: 189;
  border-radius: 5px;
}

/* ============================================ *
 * OwlCarousel
 * ============================================ */

/* line 1055, ../scss/custom/_common.scss */

.owl-carousel .owl-buttons .owl-prev,
.owl-carousel .owl-buttons .owl-next {
  z-index: 2;
}

/* line 38, ../scss/custom/_form.scss */

input[type="radio"],
input[type="checkbox"] {
  display: none;
  /* to hide the checkbox itself */
}

/* line 40, ../scss/custom/_form.scss */

input[type="radio"] ~ label,
input[type="checkbox"] ~ label {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Custom Check box with icon font
 */

/* line 50, ../scss/custom/_form.scss */

input[type="checkbox"] + label {
  line-height: 37px;
}

/* line 52, ../scss/custom/_form.scss */

input[type="checkbox"] + label:before {
  font-family: "Fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  border: 1px solid #e6e6e6;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 37px;
  height: 37px;
  text-align: center;
  color: #4f79b9;
  vertical-align: top;
  margin: 0;
  padding: 0;
  font-size: 26px;
}

/* line 67, ../scss/custom/_form.scss */

input[type="checkbox"].validation-error + label:before,
input[type="checkbox"].validation-failed + label:before {
  border-color: #d93e70;
}

/* line 71, ../scss/custom/_form.scss */

input[type="checkbox"] + label:before {
  content: "";
}

/* unchecked icon */

/* line 72, ../scss/custom/_form.scss */

input[type="checkbox"] + label:before {
  letter-spacing: 10px;
}

/* space between checkbox and label */

/* line 73, ../scss/custom/_form.scss */

input[type="checkbox"] + label:before {
  margin-right: 7px;
}

/* more space between checkbox and label */

/* line 75, ../scss/custom/_form.scss */

input[type="checkbox"]:checked + label:before {
  content: "\e811";
}

/* checked icon */

/* line 76, ../scss/custom/_form.scss */

input[type="checkbox"]:checked + label:before {
  letter-spacing: 0px;
  line-height: 1.3em;
}

/* allow space for check mark */

/* line 78, ../scss/custom/_form.scss */

input[type="checkbox"]:disabled + label:before {
  background: #f0f0f0;
  color: #d2d2d2;
}

/* -------------------------------------------- *
 * Custom Radio box with icon font
 */

/* line 84, ../scss/custom/_form.scss */

input[type="radio"] ~ label {
  position: relative;
  padding-left: 48px;
  line-height: 37px;
}

/* line 89, ../scss/custom/_form.scss */

input[type="radio"] ~ label:before,
input[type="radio"] ~ label:after {
  content: "";
}

/* unchecked icon */

/* line 92, ../scss/custom/_form.scss */

input[type="radio"] ~ label:before {
  border: 1px solid #e6e6e6;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  width: 37px;
  height: 37px;
  position: absolute;
  left: 0;
  font-size: 26px;
}

/* line 101, ../scss/custom/_form.scss */

input[type="radio"]:checked ~ label {
  line-height: 37px;
}

/* line 103, ../scss/custom/_form.scss */

input[type="radio"]:checked ~ label:before {
  width: 37px;
  height: 37px;
  line-height: 37px;
}

/* line 108, ../scss/custom/_form.scss */

input[type="radio"]:checked ~ label:after {
  -moz-border-radius: 8.5px;
  -webkit-border-radius: 8.5px;
  border-radius: 8.5px;
  border: 8.5px solid #8caedc;
  position: absolute;
  left: 11px;
  top: 10px;
}

/* line 117, ../scss/custom/_form.scss */

input[type="radio"].validation-error ~ label:before,
input[type="radio"].validation-failed ~ label:before {
  border-color: #d93e70;
}

/* line 121, ../scss/custom/_form.scss */

input[type="radio"]:disabled ~ label:before {
  background: #f0f0f0;
}

/* line 122, ../scss/custom/_form.scss */

input[type="radio"]:checked:disabled ~ label:after {
  border: 8.5px solid #ddd;
}

/* -------------------------------------------- *
 * Inputs
 */

/* line 129, ../scss/custom/_form.scss */

form input[type="email"],
form input[type="search"],
form input[type="number"],
form input[type="password"],
form input[type="tel"],
form input[type="text"],
form .input-text,
form .nice-select,
form textarea {
  color: #77848f;
  background: #FFF;
  height: 37px;
  font-size: 16px;
  padding: 0px 15px 0px 15px;
  border: 1px solid #e4e7ea;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* line 61, C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */

form input[type="email"]:-moz-placeholder,
form input[type="search"]:-moz-placeholder,
form input[type="number"]:-moz-placeholder,
form input[type="password"]:-moz-placeholder,
form input[type="tel"]:-moz-placeholder,
form input[type="text"]:-moz-placeholder,
form .input-text:-moz-placeholder,
form .nice-select:-moz-placeholder,
form textarea:-moz-placeholder {
  color: #77848f;
  font-size: 16px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  opacity: 1;
}

/* line 64, C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */

form input[type="email"]::-moz-placeholder,
form input[type="search"]::-moz-placeholder,
form input[type="number"]::-moz-placeholder,
form input[type="password"]::-moz-placeholder,
form input[type="tel"]::-moz-placeholder,
form input[type="text"]::-moz-placeholder,
form .input-text::-moz-placeholder,
form .nice-select::-moz-placeholder,
form textarea::-moz-placeholder {
  color: #77848f;
  font-size: 16px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  opacity: 1;
}

/* line 67, C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */

form input[type="email"]:-ms-input-placeholder,
form input[type="search"]:-ms-input-placeholder,
form input[type="number"]:-ms-input-placeholder,
form input[type="password"]:-ms-input-placeholder,
form input[type="tel"]:-ms-input-placeholder,
form input[type="text"]:-ms-input-placeholder,
form .input-text:-ms-input-placeholder,
form .nice-select:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  color: #77848f;
  font-size: 16px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  opacity: 1;
}

/* line 56, C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets/compass/css3/_user-interface.scss */

form input[type="email"]::-webkit-input-placeholder,
form input[type="search"]::-webkit-input-placeholder,
form input[type="number"]::-webkit-input-placeholder,
form input[type="password"]::-webkit-input-placeholder,
form input[type="tel"]::-webkit-input-placeholder,
form input[type="text"]::-webkit-input-placeholder,
form .input-text::-webkit-input-placeholder,
form .nice-select::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  color: #77848f;
  font-size: 16px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  opacity: 1;
}

/* line 144, ../scss/custom/_form.scss */

form input[type="email"]:focus,
form input[type="search"]:focus,
form input[type="number"]:focus,
form input[type="password"]:focus,
form input[type="tel"]:focus,
form input[type="text"]:focus,
form .input-text:focus,
form .nice-select:focus,
form textarea:focus {
  color: #77848f;
  font-size: 16px;
  border-color: #7394bf;
  border-width: 2px;
  outline: transparent;
  -moz-box-shadow: 0 0 3px 0 #7394bf;
  -webkit-box-shadow: 0 0 3px 0 #7394bf;
  box-shadow: 0 0 3px 0 #7394bf;
}

/* line 152, ../scss/custom/_form.scss */

form input[type="email"]:disabled,
form input[type="search"]:disabled,
form input[type="number"]:disabled,
form input[type="password"]:disabled,
form input[type="tel"]:disabled,
form input[type="text"]:disabled,
form .input-text:disabled,
form .nice-select:disabled,
form textarea:disabled {
  color: #c0c0c0;
  background: #f9f9f9;
}

/* line 159, ../scss/custom/_form.scss */

form .form-list input[type="email"],
form .form-list input[type="search"],
form .form-list input[type="number"],
form .form-list input[type="password"],
form .form-list input[type="tel"],
form .form-list input[type="text"],
form .form-list .input-text,
form .form-list .nice-select,
form .form-list textarea {
  margin-top: 3px;
}

/* line 162, ../scss/custom/_form.scss */

form .form-list input.validation-failed,
form .form-list textarea.validation-failed {
  border: 2px solid #d988b9;
  box-shadow: 0 0 10px #d988b9;
}

/* line 166, ../scss/custom/_form.scss */

form .form-list .validation-advice {
  color: #d988b9;
  font-size: 14px;
  font-family: "Proxima-Nova-Semibold", Arial;
}

/* line 171, ../scss/custom/_form.scss */

form .form-list .required-text {
  color: #76848f;
  font-size: 13px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif, Arial;
}

/* line 178, ../scss/custom/_form.scss */

form textarea {
  padding: 5px 10px;
}

/* line 183, ../scss/custom/_form.scss */

.validation-error .nice-select,
.input-text.validation-failed,
.validation-failed.nice-select,
form textarea.validation-failed {
  border-color: #d988b9;
  color: #d988b9;
  border-width: 2px;
  line-height: 33px;
}

/* line 189, ../scss/custom/_form.scss */

.validation-error .nice-select:focus,
.input-text.validation-failed:focus,
.validation-failed.nice-select:focus,
form textarea.validation-failed:focus {
  border-color: #d93e70;
  color: #d93e70;
  -moz-box-shadow: 0 0 3px 0 #d93e70;
  -webkit-box-shadow: 0 0 3px 0 #d93e70;
  box-shadow: 0 0 3px 0 #d93e70;
}

/* line 196, ../scss/custom/_form.scss */

.validation-error .nice-select:after {
  color: #d93e70;
}

/* line 199, ../scss/custom/_form.scss */

.validation-error .nice-select ul {
  color: #77848f;
}

/* line 203, ../scss/custom/_form.scss */

label.required:after,
span.required:after {
  color: #727a85;
  font-size: 14px;
}

/* line 207, ../scss/custom/_form.scss */

p.required,
.validation-advice {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin: 2px 0 0;
}

/* line 213, ../scss/custom/_form.scss */

.field-row:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Global
 * ============================================ */

/* line 30, ../scss/layout/_global.scss */

html,
body {
  height: 100%;
}

/* line 35, ../scss/layout/_global.scss */

.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
}

/* line 42, ../scss/layout/_global.scss */

.wrapper:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Header
 * ============================================ */

@media only screen and (min-width: 771px) {
  /* line 32, ../scss/layout/_header.scss */

  .page-header {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
  }

  /* line 38, ../scss/layout/_header.scss */

  .page-header-container {
    position: relative;
  }
}

/* line 44, ../scss/layout/_header.scss */

.header-language-container,
.page-header {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */

/* line 53, ../scss/layout/_header.scss */

.header-language-background {
  padding: 10px;
  background-color: #8caedc;
  text-transform: uppercase;
}

/* line 58, ../scss/layout/_header.scss */

.header-language-background .header-language-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* line 64, ../scss/layout/_header.scss */

.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}

/* line 68, ../scss/layout/_header.scss */

.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}

/* line 74, ../scss/layout/_header.scss */

.header-language-background .welcome-msg {
  float: right;
}

/* line 79, ../scss/layout/_header.scss */

.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}

/* line 84, ../scss/layout/_header.scss */

.page-header-container .store-language-container label {
  display: none;
}

/* line 87, ../scss/layout/_header.scss */

.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 479px) {
  /* line 93, ../scss/layout/_header.scss */

  .page-header-container .store-language-container {
    padding-top: 8px;
  }

  /* line 96, ../scss/layout/_header.scss */

  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}

/* line 103, ../scss/layout/_header.scss */

.header-language-background,
.header-language-background a {
  color: #FFFFFF;
}

@media only screen and (max-width: 770px) {
  /* line 110, ../scss/layout/_header.scss */

  .header-language-background {
    display: none;
  }
}

/* ============================================ *
 * Logo
 * ============================================ */

/* line 120, ../scss/layout/_header.scss */

.logo {
  display: block;
  float: left;
  width: 65%;
  min-width: 100px;
  min-height: 44px;
  text-align: center;
  padding: 10px;
}

/* line 129, ../scss/layout/_header.scss */

.logo img {
  max-width: 100%;
}

/* line 133, ../scss/layout/_header.scss */

.logo .small {
  display: block;
}

/* line 136, ../scss/layout/_header.scss */

.logo .large {
  display: none;
}

/* line 141, ../scss/layout/_header.scss */

.logo:hover {
  opacity: 0.8;
}

/* line 145, ../scss/layout/_header.scss */

.logo-tablet-wrapper {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 145, ../scss/layout/_header.scss */

  .logo-tablet-wrapper {
    display: inline-block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 145, ../scss/layout/_header.scss */

  .logo-tablet-wrapper {
    display: none;
  }
}

@media only screen and (min-width: 771px) and (max-width: 979px) {
  /* line 145, ../scss/layout/_header.scss */

  .logo-tablet-wrapper {
    display: none;
  }
}

@media only screen and (min-width: 771px) {
  /* line 159, ../scss/layout/_header.scss */

  .logo {
    max-width: 300px;
    min-height: 90px;
  }

  /* line 163, ../scss/layout/_header.scss */

  .logo .small {
    display: none;
  }

  /* line 166, ../scss/layout/_header.scss */

  .logo .large {
    display: block;
  }
}

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

/* line 177, ../scss/layout/_header.scss */

.skip-links {
  clear: both;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  overflow: hidden;
}

@media only screen and (min-width: 600px) {
  /* line 177, ../scss/layout/_header.scss */

  .skip-links {
    overflow: visible;
  }
}

@media only screen and (min-width: 980px) {
  /* line 177, ../scss/layout/_header.scss */

  .skip-links {
    overflow: visible;
  }
}

@media only screen and (min-width: 771px) {
  /* line 188, ../scss/layout/_header.scss */

  .skip-links {
    border: 0;
  }
}

/* -------------------------------------------- *
 * Skip - Link
 */

/* line 198, ../scss/layout/_header.scss */

.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  background: #FFFFFF;
  color: #727a85;
  line-height: 42px;
  text-align: center;
}

/* line 209, ../scss/layout/_header.scss */

a.skip-link {
  text-decoration: none;
}

/* line 213, ../scss/layout/_header.scss */

.skip-link:not(.skip-active):hover {
  opacity: 0.8;
}

@media only screen and (max-width: 770px) {
  /* line 221, ../scss/layout/_header.scss */

  .skip-link {
    border-right: 1px solid #EDEDED;
  }

  /* line 225, ../scss/layout/_header.scss */

  .skip-link:last-child {
    border-right: 0;
  }
}

@media only screen and (min-width: 500px) {
  /* line 235, ../scss/layout/_header.scss */

  .skip-link {
    width: 25%;
  }
}

/* -------------------------------------------- *
 * Skip Link - Active
 */

@media only screen and (max-width: 770px) {
  /* line 246, ../scss/layout/_header.scss */

  .skip-link.skip-active {
    background: #EDEDED;
    color: inherit;
  }

  /* line 251, ../scss/layout/_header.scss */

  .skip-link.skip-active span {
    color: inherit;
  }
}

/* -------------------------------------------- *
 * Skip Link - Icon
 */

/* line 261, ../scss/layout/_header.scss */

.skip-link .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

/* line 268, ../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 275, ../scss/layout/_header.scss */

  .skip-link .icon {
    margin-right: 3px;
  }
}

/* -------------------------------------------- *
 * Skip Link - Label
 */

/* line 285, ../scss/layout/_header.scss */

.skip-link .label {
  display: none;
}

@media only screen and (min-width: 500px) {
  /* line 293, ../scss/layout/_header.scss */

  .skip-link .label {
    display: inline;
  }
}

/* ============================================ *
 * Skip Content
 * ============================================ */

/* line 303, ../scss/layout/_header.scss */

.skip-content {
  display: none;
}

/* line 307, ../scss/layout/_header.scss */

.skip-content.skip-active {
  display: block;
  background: #EDEDED;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */

@media only screen and (max-width: 770px) {
  /* line 320, ../scss/layout/_header.scss */

  #header-account li a,
  .nav-primary a.level0 {
    padding: 0 15px 0 25px;
    border-bottom: 1px solid #CCCCCC;
    text-align: left;
    color: #727a85;
    text-transform: uppercase;
    line-height: 30px;
  }

  /* line 330, ../scss/layout/_header.scss */

  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }

  /* line 335, ../scss/layout/_header.scss */

  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background-color: #F4F4F4;
    text-decoration: none;
  }
}

/* line 343, ../scss/layout/_header.scss */

.account-cart-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
}

@media only screen and (max-width: 770px) {
  /* line 343, ../scss/layout/_header.scss */

  .account-cart-wrapper {
    position: static;
  }
}

@media only screen and (max-width: 770px) and (min-width: 768px) {
  /* line 357, ../scss/layout/_header.scss */

  .topsearch-wrapper {
    float: right;
    width: 265px;
  }

  /* line 361, ../scss/layout/_header.scss */

  .logo-tablet-wrapper {
    margin-left: 20px;
  }
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */

/* line 30, ../scss/layout/_header-nav.scss */

.skip-nav {
  width: 40%;
}

/* line 33, ../scss/layout/_header-nav.scss */

.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}

/* line 36, ../scss/layout/_header-nav.scss */

.skip-nav:not(.skip-active):hover .icon {
  background-position: -46px 4px;
}

/* line 42, ../scss/layout/_header-nav.scss */

.skip-nav .label {
  display: inline;
}

/* line 46, ../scss/layout/_header-nav.scss */

.skip-nav .icon {
  background-position: 4px 4px;
}

@media only screen and (min-width: 500px) {
  /* line 55, ../scss/layout/_header-nav.scss */

  .skip-nav {
    width: 25%;
  }
}

@media only screen and (min-width: 771px) {
  /* line 65, ../scss/layout/_header-nav.scss */

  .skip-nav {
    display: none;
  }
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */

@media only screen and (max-width: 770px) {
  /* line 77, ../scss/layout/_header-nav.scss */

  #header-nav {
    padding: 5px 0;
  }
}

@media only screen and (min-width: 771px) {
  /* line 87, ../scss/layout/_header-nav.scss */

  #header-nav {
    display: block;
    /* Force visibility */
    border-bottom: 1px solid #EDEDED;
  }
}

/* ============================================ *
 * Nav Primary
 * ============================================ */

@media only screen and (min-width: 771px) {
  /* line 99, ../scss/layout/_header-nav.scss */

  .nav-primary {
    display: block;
    margin-top: 15px;
  }
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */

/* line 113, ../scss/layout/_header-nav.scss */

.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #727a85;
  line-height: 30px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 122, ../scss/layout/_header-nav.scss */

.nav-primary li {
  position: relative;
}

/* line 128, ../scss/layout/_header-nav.scss */

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}

/* line 133, ../scss/layout/_header-nav.scss */

.nav-primary li.level0 > a {
  text-transform: uppercase;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */

@media only screen and (max-width: 770px) {
  /* line 146, ../scss/layout/_header-nav.scss */

  .nav-primary a.level0,
  .nav-primary a {
    line-height: 35px;
  }

  /* line 152, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 ul {
    display: none;
  }

  /* line 157, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }

  /* line 161, ../scss/layout/_header-nav.scss */

  .nav-primary li.level1 a {
    padding: 0 15px 0 25px;
  }

  /* line 165, ../scss/layout/_header-nav.scss */

  .nav-primary li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ccc;
    border-right: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }

  /* line 174, ../scss/layout/_header-nav.scss */

  .nav-primary li.parent.sub-menu-active > a:after,
  .nav-primary li.parent.menu-active > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #ccc;
    border-bottom: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }

  /* line 183, ../scss/layout/_header-nav.scss */

  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    color: #8caedc;
  }
}

/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */

@media only screen and (min-width: 771px) {
  /* line 196, ../scss/layout/_header-nav.scss */

  .nav-primary {
    /* 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 198, ../scss/layout/_header-nav.scss */

  .nav-primary a.level0 {
    padding: 0 25px;
  }

  /* line 202, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
  }

  /* line 207, ../scss/layout/_header-nav.scss */

  .nav-primary li:last-child > a {
    border-bottom: none;
  }

  /* line 211, ../scss/layout/_header-nav.scss */

  .nav-primary a:hover,
  .nav-primary li:hover > a {
    color: #8caedc;
  }

  /* line 216, ../scss/layout/_header-nav.scss */

  .nav-primary .menu-active {
    z-index: 200;
  }

  /* line 221, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 ul {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    position: absolute;
    left: 0;
    top: 30px;
    /* Height of ".nav-primary a.level0" */
    z-index: 10;
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    /* Hide until displayed. */
  }

  /* line 234, ../scss/layout/_header-nav.scss */

  .nav-primary li.level1 ul {
    left: 60px;
    top: 15px;
  }

  /* line 240, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 ul.level0.position-test {
    display: block;
  }

  /* line 245, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto;
  }

  /* line 250, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    left: auto;
    right: 50px;
    top: 20px;
  }

  /* line 258, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 li.parent > a {
    position: relative;
  }

  /* line 261, ../scss/layout/_header-nav.scss */

  .nav-primary li.level0 li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #ccc;
    border-right: none;
    right: 5px;
    top: 50%;
    margin-top: -3px;
  }
}

/* line 272, ../scss/layout/_header-nav.scss */

.nav-primary li.menu-active > ul {
  display: block;
}

/* line 277, ../scss/layout/_header-nav.scss */

#header-nav {
  margin-top: 23px;
  border-bottom: 1px solid #e4e7ea;
  border-top: 1px solid #e4e7ea;
  background: #fff;
}

@media only screen and (min-width: 771px) and (max-width: 960px) {
  /* line 285, ../scss/layout/_header-nav.scss */

  .nav .block-cat-img.pull-right {
    display: none;
  }
}

/*------ CUSTOM MENU
------------------------------------------------------------------------*/

@media only screen and (max-width: 770px) {
  /* line 294, ../scss/layout/_header-nav.scss */

  .header-promo-message {
    display: none;
  }

  /* line 298, ../scss/layout/_header-nav.scss */

  #header-nav {
    margin-top: 0;
    padding: 0;
    position: absolute;
    width: 100%;
  }
}

/* Normal Navigation */

/* line 307, ../scss/layout/_header-nav.scss */

.body-content {
  position: relative;
  z-index: 1;
}

/* line 308, ../scss/layout/_header-nav.scss */

header,
.header-wrapper {
  position: relative;
  z-index: 1000;
}

/* line 312, ../scss/layout/_header-nav.scss */

nav#nav .nav-block-container h4,
nav#nav .pure-link,
nav#nav .level1 > a,
nav#nav a.level0,
nav#nav a.drop {
  background: none;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

/* line 321, ../scss/layout/_header-nav.scss */

nav#nav .nav-block-container h4.cat-sale,
nav#nav .pure-link.cat-sale,
nav#nav .level1 > a.cat-sale,
nav#nav a.level0.cat-sale,
nav#nav a.drop.cat-sale {
  color: #d26aa9;
}

@media only screen and (min-width: 771px) {
  /* line 311, ../scss/layout/_header-nav.scss */

  nav#nav {
    position: relative;
    display: block;
    max-width: 1210px;
    margin: 0 auto;
    text-align: center;
  }

  /* line 331, ../scss/layout/_header-nav.scss */

  nav#nav li.level0 {
    position: relative;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -box-flex: 1;
    float: none;
    display: block;
    z-index: 90;
    padding: 0;
  }
}

@media only screen and (min-width: 771px) and (min-width: 600px) {
  /* line 331, ../scss/layout/_header-nav.scss */

  nav#nav li.level0 {
    padding: 0;
  }
}

@media only screen and (min-width: 771px) and (min-width: 980px) {
  /* line 331, ../scss/layout/_header-nav.scss */

  nav#nav li.level0 {
    padding: 0 16px;
  }
}

@media only screen and (min-width: 771px) {
  /* line 343, ../scss/layout/_header-nav.scss */

  nav#nav li.level0:before {
    width: 100%;
    height: 3px;
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 100;
  }

  /* line 352, ../scss/layout/_header-nav.scss */

  nav#nav li.level0:hover {
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
  }

  /* line 356, ../scss/layout/_header-nav.scss */

  nav#nav li.level0:hover:before {
    background: #fff;
  }

  /* line 361, ../scss/layout/_header-nav.scss */

  nav#nav a,
  nav#nav span {
    background: none;
    color: #76848f;
    font-size: 15px;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  }

  /* line 368, ../scss/layout/_header-nav.scss */

  nav#nav a.level0,
  nav#nav a.drop {
    padding: 15px 0;
    display: block;
    font: 17px "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
    line-height: 22px;
    color: #57626f;
    letter-spacing: -0.2px;
  }

  /* line 377, ../scss/layout/_header-nav.scss */

  nav#nav a:hover {
    text-decoration: none;
  }

  /* line 381, ../scss/layout/_header-nav.scss */

  nav#nav .nav-block-container h4,
  nav#nav .level1 > a {
    padding: 0;
  }

  /* line 385, ../scss/layout/_header-nav.scss */

  nav#nav #menu {
    height: 56px;
    display: table;
    margin: 0 auto;
    float: none;
    width: auto;
  }

  /* line 391, ../scss/layout/_header-nav.scss */

  nav#nav #menu li {
    background: none;
    position: static;
  }

  /* line 395, ../scss/layout/_header-nav.scss */

  nav#nav #menu li:hover a {
    color: #333;
  }

  /* line 398, ../scss/layout/_header-nav.scss */

  nav#nav #menu li:hover [class*="dropdown_"] {
    margin-top: 15px;
    left: -1px;
  }

  /* line 403, ../scss/layout/_header-nav.scss */

  nav#nav #menu li li {
    padding: 0;
  }
}

/* line 410, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary {
  margin: 0;
  width: 100%;
}

/* line 415, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary a.view-all {
  display: none;
}

/* line 419, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary a.level1 {
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
  color: #333;
}

/* line 428, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary ul.level0 > a.view-all {
  display: block;
  line-height: 20px;
  font-size: 17px;
  color: #76848f;
  margin: 0 0 14px;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  letter-spacing: -0.4px;
}

/* line 439, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary li.level1 ul.level1 {
  display: none;
}

/* line 443, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary ul.level1 {
  margin-bottom: 15px;
}

/* line 446, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary li.level0 ul {
  display: block;
  position: static;
  border: none;
  background: none;
  padding: 0;
  width: auto;
}

/* line 455, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container {
  display: none;
  margin-top: 10px;
  margin-bottom: 4px;
  text-align: left;
}

/* line 461, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container img {
  max-width: auto;
  height: auto;
  width: auto;
}

/* line 468, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary li.level0 li.sub-menu-active > ul,
nav#nav .nav-primary .nav-mega-container > ul.level0,
nav#nav .nav-primary .parent.menu-active > .nav-mega-container {
  display: block;
}

@media only screen and (min-width: 600px) {
  /* line 468, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level0 li.sub-menu-active > ul,
  nav#nav .nav-primary .nav-mega-container > ul.level0,
  nav#nav .nav-primary .parent.menu-active > .nav-mega-container {
    display: inline-block;
  }
}

/* line 476, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container > ul.level0 .view-all {
  margin-top: -4px;
}

/* line 480, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block {
  white-space: nowrap;
}

/* line 483, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block > ul.level0 {
  padding-right: 10px;
  vertical-align: top;
}

/* line 488, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] {
  display: block;
  margin-left: 0;
  margin-top: 10px;
  vertical-align: top;
}

@media only screen and (min-width: 600px) {
  /* line 488, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] {
    display: inline-block;
  }
}

@media only screen and (min-width: 600px) {
  /* line 488, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] {
    margin-left: 26px;
  }
}

@media only screen and (min-width: 600px) {
  /* line 488, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] {
    margin-top: 0;
  }
}

/* line 494, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] > h4 {
  color: #76848f;
  font: 17px "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 20px;
  margin-top: -4px;
}

/* line 505, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] h1 {
  font: 17px "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #76848f;
  letter-spacing: -0.4px;
}

/* line 512, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] ul li a {
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
  color: #333;
}

/* line 518, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block [class*="menu-right"] ul li a:hover {
  text-decoration: underline;
}

/* line 526, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom {
  width: 100%;
  border-top: 1px solid #e8e8e8;
  margin-top: 27px;
  padding-top: 28px;
  background: #fff;
}

/* line 532, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom ul {
  line-height: 100%;
}

/* line 535, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom li {
  display: inline-block;
  vertical-align: top;
  margin-right: 21px;
  font-size: 12px;
  font-family: "Proxima-Nova-Bold", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  /*&:first-child{
      @include bp(min-width, $bp-medium + 1){
          width: 189px;
      }
  }*/
}

/* line 548, ../scss/layout/_header-nav.scss */

nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom li a {
  color: #8caedc;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Bold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}

@media only screen and (max-width: 770px) {
  /* line 563, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.parent > a:after {
    display: none;
  }

  /* line 567, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.parent.level0 > a:after {
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #8caedb transparent transparent;
    left: auto;
    right: 7px;
    display: block;
  }

  /* line 576, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.parent.level0.menu-active a:after {
    border-width: 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent #8caedb;
  }

  /* line 586, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level0:last-child > a {
    border-bottom: none;
  }

  /* line 589, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level0:last-child .nav-mega-container {
    border-bottom: none;
  }

  /* line 594, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level0.menu-active > a {
    border-bottom: 1px solid #e5e6e8;
  }

  /* line 600, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li li {
    padding: 0;
  }

  /* line 603, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary a {
    line-height: 20px;
    font-size: 17px;
    color: #333;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  }

  /* line 609, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary a:hover {
    background: none;
  }

  /* line 613, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .level0 > .pure-link,
  nav#nav .nav-primary a.level0 {
    font: 19px "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
    line-height: 33px;
    position: relative;
    padding: 11px 0;
    border-bottom: 1px solid #e5e6e8;
    color: #57626f;
  }

  /* line 621, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .level0 > .pure-link.cat-sale,
  nav#nav .nav-primary a.level0.cat-sale {
    color: #d26aa9;
  }

  /* line 623, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary a.level1 {
    font-size: 17px;
    line-height: 20px;
  }

  /* line 627, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary a.level1.has-children:after {
    top: 9px;
  }

  /* line 631, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container {
    margin-top: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e6e8;
  }

  /* line 637, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block > ul.level0 {
    width: 48%;
  }

  /* line 640, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-1 {
    width: 100%;
  }

  /* line 645, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-1 ul li a {
    color: #333;
    font-size: 17px;
    margin-bottom: 15px;
  }

  /* line 653, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-2 {
    display: none;
  }

  /* line 656, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom {
    padding-top: 18px;
  }

  /* line 659, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom ul {
    display: inline-block;
    width: 100%;
    vertical-align: top;
  }

  /* line 664, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom ul li {
    float: left;
    width: 48%;
    margin-left: 4%;
    margin-right: 0;
  }

  /* line 670, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom ul li:nth-child(2n+1) {
    margin-left: 0;
    clear: both;
  }

  /* line 674, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom ul li a {
    font-size: 15px;
  }

  /* line 682, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level1 a {
    padding: 0;
    border: none;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 771px) {
  /* line 410, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: box;
    -webkit-box-orient: horizontal;
    box-orient: horizontal;
    -moz-box-orient: horizontal;
    text-align: center;
    /*display: none;*/
  }

  /* line 700, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary ul.level0,
  nav#nav .nav-primary ul.level0 ul {
    position: static;
    width: auto;
    padding: 0;
  }

  /* line 707, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li li.parent > a:after {
    display: none;
  }

  /* line 710, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li li ul {
    display: block;
    border: none;
    background: none;
  }

  /* line 716, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level2 {
    line-height: 100%;
    margin-bottom: 7px;
  }

  /* line 719, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level2:first-child {
    margin-top: 0;
  }

  /* line 722, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level2 ~ li {
    margin-top: 9px;
  }

  /* line 726, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-block-container a,
  nav#nav .nav-primary a {
    line-height: 100%;
    border: none;
  }

  /* line 731, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-block-container a,
  nav#nav .nav-primary a.level2 {
    display: inline-block;
    position: relative;
  }

  /* line 735, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-block-container a:hover:after,
  nav#nav .nav-primary a.level2:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  /* line 744, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(3) .nav-mega-container.has-cms-block {
    left: -20px;
  }

  /* line 749, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(4) .nav-mega-container.has-cms-block {
    left: -80px;
  }

  /* line 754, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(n+5) .nav-mega-container {
    left: -165px;
    right: auto;
  }

  /* line 760, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(n+6) .nav-mega-container {
    left: auto;
    right: -165px;
  }

  /* line 766, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(n+7) .nav-mega-container {
    left: auto;
    right: -90px;
  }

  /* line 772, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(n+8) .nav-mega-container {
    left: auto;
    right: -50px;
  }

  /* line 778, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(9) .nav-mega-container.has-cms-block {
    right: 0;
    left: auto;
  }

  /* line 784, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:last-child .nav-mega-container {
    left: auto;
    right: -1px;
  }

  /* line 789, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container {
    background: #fff;
    position: absolute;
    left: -1px;
    z-index: 90;
    border: 1px solid #e8e8e8;
    padding: 25px 28px 25px;
    margin-top: 0;
    display: none;
    /* Hide until displayed. */
  }

  /* line 799, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container:after {
    display: table;
    content: ' ';
    clear: both;
  }

  /* line 805, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block > ul.level0 {
    width: 190px;
    min-height: 277px;
    border-right: 1px solid #e7e7e9;
  }

  /* line 812, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container ul.level0 {
    border: none;
    background: none;
  }

  /* line 816, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container ul.level0 a:hover {
    text-decoration: underline;
  }

  /* line 821, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container > ul.level0 {
    width: 165px;
  }
}

@media screen and (min-width: 771px) and (max-width: 1025px) {
  /* line 829, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container {
    padding: 20px 20px 28px;
  }

  /* line 832, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container ul.level0 > a.view-all {
    font-size: 15px;
  }

  /* line 836, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container a.level1 {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 7px;
  }

  /* line 844, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block > ul.level0 {
    width: 170px;
  }

  /* line 847, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-1 {
    margin-left: 20px;
  }

  /* line 850, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-1 > h4 {
    font-size: 15px;
  }

  /* line 854, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-1 h1 {
    font-size: 15px;
  }

  /* line 859, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-1 ul li a {
    font-size: 14px;
  }

  /* line 865, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-right-2 {
    margin-left: 10px;
  }

  /* line 869, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom li {
    margin-right: 16px;
  }

  /* line 872, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container.has-cms-block .menu-bottom li:first-child {
    width: 170px;
  }

  /* line 879, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary a,
  nav#nav .nav-primary span {
    font-size: 14px;
  }

  /* line 883, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary a.level0,
  nav#nav .nav-primary a.drop {
    font-size: 15px;
  }

  /* line 886, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary a.level1 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  /* line 891, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary ul.level1 {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 1281px) {
  /* line 898, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li.level0 {
    padding: 0 20px;
  }

  /* line 901, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary .nav-mega-container {
    background: #fff;
  }

  /* line 907, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(3) .nav-mega-container.has-cms-block,
  nav#nav .nav-primary li:nth-child(4) .nav-mega-container.has-cms-block {
    left: -1px;
  }

  /* line 913, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(n+5) .nav-mega-container {
    left: -1px;
    right: auto;
  }

  /* line 921, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(n+6) .nav-mega-container,
  nav#nav .nav-primary li:nth-child(n+7) .nav-mega-container,
  nav#nav .nav-primary li:nth-child(n+8) .nav-mega-container {
    left: auto;
    right: -1px;
  }

  /* line 927, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:nth-child(9) .nav-mega-container.has-cms-block {
    right: -1px;
    left: auto;
  }

  /* line 933, ../scss/layout/_header-nav.scss */

  nav#nav .nav-primary li:last-child .nav-mega-container {
    left: auto;
    right: -1px;
  }
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */

/* line 33, ../scss/layout/_header-search.scss */

.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}

/* line 38, ../scss/layout/_header-search.scss */

.skip-search .icon {
  background-position: 4px -146px;
}

@media only screen and (min-width: 771px) {
  /* line 48, ../scss/layout/_header-search.scss */

  .skip-search {
    display: none;
  }
}

/* ============================================ *
 * Search - Skip Content
 * ============================================ */

/* line 58, ../scss/layout/_header-search.scss */

#header-search {
  padding: 20px;
}

@media only screen and (min-width: 771px) {
  /* line 66, ../scss/layout/_header-search.scss */

  #header-search {
    display: block;
    position: absolute;
    top: 55px;
    right: 0;
    width: 25%;
    height: 50px;
    padding: 0;
  }

  /* line 75, ../scss/layout/_header-search.scss */

  #header-search.skip-content {
    display: block;
  }
}

/* ============================================ *
 * Search Input
 * ============================================ */

/* line 86, ../scss/layout/_header-search.scss */

#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

/* line 91, ../scss/layout/_header-search.scss */

#search_mini_form label {
  display: none;
}

/* line 95, ../scss/layout/_header-search.scss */

#search {
  width: 100%;
  height: 40px;
  padding-right: 40px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 102, ../scss/layout/_header-search.scss */

#search_mini_form .search-button {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
}

/* line 113, ../scss/layout/_header-search.scss */

#search_mini_form .search-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-position: 4px -146px;
}

/* line 126, ../scss/layout/_header-search.scss */

#search_mini_form .search-button:hover:before {
  opacity: 0.8;
}

/* line 130, ../scss/layout/_header-search.scss */

#search_mini_form .search-button:active:before,
#search_mini_form .search-button.nice-select.open: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: 771px) {
  /* 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 {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    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: #727a85;
    line-height: 2;
  }

  /* line 81, ../scss/layout/_header-account.scss */

  #header-account a:hover {
    color: #8caedc;
  }
}

/* -------------------------------------------- *
 * 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: #8caedc;
}

/* -------------------------------------------- *
 * Header Account
 */

/* line 114, ../scss/layout/_header-account.scss */

#header-account.not-logged-in > ul:first-child {
  display: block;
}

/* line 116, ../scss/layout/_header-account.scss */

#header-account.not-logged-in > ul:first-child + ul {
  display: none;
}

/* line 122, ../scss/layout/_header-account.scss */

#header-account.logged-in > ul:first-child {
  display: none;
}

/* line 124, ../scss/layout/_header-account.scss */

#header-account.logged-in > ul:first-child + ul {
  display: block;
}

/* line 129, ../scss/layout/_header-account.scss */

#header-account ul {
  display: block;
  position: relative;
}

/* line 133, ../scss/layout/_header-account.scss */

#header-account ul li {
  position: relative;
  margin-top: 0;
  padding-left: 0;
}

@media only screen and (min-width: 600px) {
  /* line 133, ../scss/layout/_header-account.scss */

  #header-account ul li {
    margin-top: 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 133, ../scss/layout/_header-account.scss */

  #header-account ul li {
    margin-top: 16px;
  }
}

@media only screen and (min-width: 600px) {
  /* line 133, ../scss/layout/_header-account.scss */

  #header-account ul li {
    padding-left: 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 133, ../scss/layout/_header-account.scss */

  #header-account ul li {
    padding-left: 25px;
  }
}

/* line 137, ../scss/layout/_header-account.scss */

#header-account ul li:first-child {
  margin-top: 0;
}

/* line 141, ../scss/layout/_header-account.scss */

#header-account ul li:before {
  content: "\e823";
  position: absolute;
  left: 0;
  top: 3px;
  color: #77848f;
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 141, ../scss/layout/_header-account.scss */

  #header-account ul li:before {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 141, ../scss/layout/_header-account.scss */

  #header-account ul li:before {
    display: block;
  }
}

/* line 150, ../scss/layout/_header-account.scss */

#header-account ul li h4 {
  margin-bottom: 0;
}

/* line 153, ../scss/layout/_header-account.scss */

#header-account ul li h4 a {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding: 0 20px;
  font-size: 14px;
  color: #000000;
  line-height: 49px;
  letter-spacing: 1.3px;
  display: block;
  width: 100%;
  height: auto;
  text-decoration: none;
}

@media only screen and (min-width: 600px) {
  /* line 153, ../scss/layout/_header-account.scss */

  #header-account ul li h4 a {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 153, ../scss/layout/_header-account.scss */

  #header-account ul li h4 a {
    padding: 0;
  }
}

@media only screen and (min-width: 600px) {
  /* line 153, ../scss/layout/_header-account.scss */

  #header-account ul li h4 a {
    line-height: 49px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 153, ../scss/layout/_header-account.scss */

  #header-account ul li h4 a {
    line-height: 1.4;
  }
}

@media only screen and (min-width: 600px) {
  /* line 153, ../scss/layout/_header-account.scss */

  #header-account ul li h4 a {
    letter-spacing: 1.3px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 153, ../scss/layout/_header-account.scss */

  #header-account ul li h4 a {
    letter-spacing: inherit;
  }
}

/* line 167, ../scss/layout/_header-account.scss */

#header-account ul li p {
  text-transform: none;
  color: #000000;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 18px;
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 167, ../scss/layout/_header-account.scss */

  #header-account ul li p {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 167, ../scss/layout/_header-account.scss */

  #header-account ul li p {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 112, ../scss/layout/_header-account.scss */

  #header-account {
    background: #FFF;
    position: absolute;
    right: 140px;
    top: 126px;
    width: 260px;
    padding: 25px 18px 36px;
    box-sizing: border-box;
    border: 1px solid #e8e8e8;
    text-align: left;
    -moz-box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
    -webkit-box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
    box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
  }

  /* line 85, ../scss/mixin/_easy.scss */

  #header-account:before {
    border-color: transparent transparent #fff;
    border-style: solid;
    border-width: 0 13px 13px;
    content: "";
    position: absolute;
    right: 53px;
    top: -12px;
    z-index: 2;
  }

  /* line 95, ../scss/mixin/_easy.scss */

  #header-account:after {
    border-color: transparent transparent #e8e8e8;
    border-style: solid;
    border-width: 0 13px 13px;
    content: "";
    position: absolute;
    right: 53px;
    top: -14px;
  }

  /* line 189, ../scss/layout/_header-account.scss */

  #header-account:before,
  #header-account:after {
    right: 63px;
  }
}

/* ============================================ *
 * Header - Cart
 * ============================================ */

/* -------------------------------------------- *
 * Skip Link - Cart
 */

/* line 36, ../scss/layout/_header-cart.scss */

.skip-cart:not(.skip-active):hover .icon {
  background-position: -50px -95px;
}

/* line 41, ../scss/layout/_header-cart.scss */

.skip-cart .icon {
  background-position: 0px -95px;
}

@media only screen and (min-width: 771px) {
  /* line 51, ../scss/layout/_header-cart.scss */

  .skip-cart {
    width: auto;
    padding: 0 10px;
  }

  /* line 59, ../scss/layout/_header-cart.scss */

  #header-cart.skip-active {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    top: 46px;
    right: 0;
    width: 320px;
    background: white;
  }
}

/* -------------------------------------------- *
 * Skip Cart Notifier
 */

/* line 76, ../scss/layout/_header-cart.scss */

.skip-cart .count {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  top: -6px;
  position: relative;
  z-index: 5;
  min-width: 22px;
  width: auto;
  height: 22px;
  padding: 0 5px;
  background: rgba(140, 174, 220, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 93, ../scss/layout/_header-cart.scss */

.skip-link.skip-active .count {
  color: white;
}

/* line 101, ../scss/layout/_header-cart.scss */

.skip-cart.no-count .count {
  display: none;
}

@media only screen and (max-width: 499px) {
  /* line 106, ../scss/layout/_header-cart.scss */

  .skip-cart .count {
    margin-left: -12px;
  }
}

@media only screen and (min-width: 771px) {
  /* line 112, ../scss/layout/_header-cart.scss */

  .skip-cart {
    color: #8caedc;
    text-transform: uppercase;
  }

  /* line 116, ../scss/layout/_header-cart.scss */

  .skip-cart:hover {
    text-decoration: none;
  }

  /* line 120, ../scss/layout/_header-cart.scss */

  .skip-cart .count {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    position: static;
    background: none;
    margin-left: 0px;
    font-size: 14px;
    width: auto;
  }

  /* line 129, ../scss/layout/_header-cart.scss */

  .skip-cart .count,
  .skip-link.skip-active .count {
    color: #8caedc;
  }
}

/* line 135, ../scss/layout/_header-cart.scss */

.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */

/* line 143, ../scss/layout/_header-cart.scss */

.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */

/* Actions */

/* line 154, ../scss/layout/_header-cart.scss */

.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

/* line 159, ../scss/layout/_header-cart.scss */

.cart-menu .actions .button {
  float: left;
  width: 48%;
}

/* line 164, ../scss/layout/_header-cart.scss */

.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */

/* line 170, ../scss/layout/_header-cart.scss */

.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

/* List */

/* line 179, ../scss/layout/_header-cart.scss */

.mini-cart-list {
  margin-bottom: 5px;
}

/* line 183, ../scss/layout/_header-cart.scss */

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
  line-height: 1.35;
}

/* line 192, ../scss/layout/_header-cart.scss */

.mini-cart-list .product-name {
  display: inline-block;
}

/* line 196, ../scss/layout/_header-cart.scss */

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}

/* line 202, ../scss/layout/_header-cart.scss */

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

/* line 209, ../scss/layout/_header-cart.scss */

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #A0A0A0;
  font-size: 12px;
}

/* Too full - additional items will be shown in cart */

/* line 216, ../scss/layout/_header-cart.scss */

.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #CCCCCC;
  font-size: 13px;
}

/* ============================================ *
 * Footer
 * ============================================ */

/* -------------------------------------------- *
 * Footer
 */

/* line 34, ../scss/layout/_footer.scss */

.footer,
.footer button {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 39, ../scss/layout/_footer.scss */

.footer-wrapper .footer {
  clear: both;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  padding-top: 30px;
  /* -------------------------------------------- *
   * Social icons
   */
}

@media only screen and (max-width: 479px) {
  /* line 39, ../scss/layout/_footer.scss */

  .footer-wrapper .footer {
    padding-top: 15px;
  }
}

/* line 49, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}

/* line 54, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-title strong {
  font-weight: normal;
}

/* line 58, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-title,
.footer-wrapper .footer address {
  color: #8caedc;
}

/* line 63, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links {
  float: left;
  width: 17%;
  padding: 0 30px 0 0;
  margin-bottom: 30px;
}

/* line 69, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}

/* line 75, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links a {
  color: #727a85;
}

/* line 77, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links a:hover {
  color: #8caedc;
}

/* line 83, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 30px;
}

/* line 89, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links,
.footer-wrapper .footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}

/* line 95, ../scss/layout/_footer.scss */

.footer-wrapper .footer .form-subscribe-header {
  display: none;
}

/* line 103, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media em {
  background-image: url(../images/social_icons.png);
  background-repeat: no-repeat;
  width: 13px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}

@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 113, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .links.social-media em {
    background-image: url(../images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}

/* line 120, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media em.facebook {
  background-position: 0 -0px;
  height: 13px;
}

/* line 125, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}

/* line 120, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media em.twitter {
  background-position: 0 -24px;
  height: 13px;
}

/* line 125, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}

/* line 120, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media em.youtube {
  background-position: 0 -49px;
  height: 13px;
}

/* line 125, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}

/* line 120, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media em.pinterest {
  background-position: 0 -74px;
  height: 15px;
}

/* line 125, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}

/* line 120, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media em.rss {
  background-position: 0 -99px;
  height: 13px;
}

/* line 125, ../scss/layout/_footer.scss */

.footer-wrapper .footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}

/* line 138, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}

/* line 144, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-subscribe .input-text,
.footer-wrapper .footer .block-subscribe .nice-select,
.footer-wrapper .footer .block-subscribe form textarea,
form .footer-wrapper .footer .block-subscribe textarea {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 150, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-subscribe .block-content {
  padding-top: 7px;
}

/* line 153, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}

/* line 158, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}

/* line 164, ../scss/layout/_footer.scss */

.footer-wrapper .footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
}

/* line 170, ../scss/layout/_footer.scss */

.footer-wrapper .footer .bugs,
.footer-wrapper .footer address {
  clear: both;
}

/* line 175, ../scss/layout/_footer.scss */

.footer-wrapper .footer .bugs {
  display: none;
}

/* line 179, ../scss/layout/_footer.scss */

.footer-wrapper .footer .form-language,
.footer-wrapper .footer .currency-switcher,
.footer-wrapper .footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}

/* line 186, ../scss/layout/_footer.scss */

.footer-wrapper .footer .form-language,
.footer-wrapper .footer .currency-switcher {
  display: none;
}

/* line 191, ../scss/layout/_footer.scss */

.footer-wrapper .footer address {
  border-top: 1px solid #CCCCCC;
  text-align: center;
  width: 100%;
  font-size: 11px;
  margin-top: 30px;
  padding: 30px 0;
}

@media only screen and (max-width: 1209px) {
  /* line 204, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .links {
    width: 22.65625%;
    padding-right: 0;
    margin-right: 3.125%;
  }

  /* line 210, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .links:nth-child(4) {
    margin-right: 0;
  }

  /* line 214, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 30px auto;
  }
}

@media only screen and (max-width: 770px) {
  /* line 222, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .form-language,
  .footer-wrapper .footer .currency-switcher {
    display: block;
  }
}

@media only screen and (max-width: 599px) {
  /* line 232, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }

  /* line 237, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }

  /* line 242, ../scss/layout/_footer.scss */

  .footer-wrapper .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}

/* line 249, ../scss/layout/_footer.scss */

.footer-wrapper .payment-card {
  text-align: center;
  margin-top: 0;
}

/* line 252, ../scss/layout/_footer.scss */

.footer-wrapper .payment-card h4,
.footer-wrapper .payment-card ul {
  display: inline-block;
  vertical-align: middle;
}

/* line 256, ../scss/layout/_footer.scss */

.footer-wrapper .payment-card h4 {
  font-size: 10px;
  margin: 0;
}

@media only screen and (min-width: 600px) {
  /* line 256, ../scss/layout/_footer.scss */

  .footer-wrapper .payment-card h4 {
    margin: 0 15px 0 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 256, ../scss/layout/_footer.scss */

  .footer-wrapper .payment-card h4 {
    margin: 0 15px 0 0;
  }
}

/* line 260, ../scss/layout/_footer.scss */

.footer-wrapper .payment-card ul li {
  display: inline-block;
  vertical-align: top;
}

/* line 263, ../scss/layout/_footer.scss */

.footer-wrapper .payment-card ul li.margin-right {
  margin-right: 0;
}

@media only screen and (min-width: 600px) {
  /* line 263, ../scss/layout/_footer.scss */

  .footer-wrapper .payment-card ul li.margin-right {
    margin-right: 10px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 263, ../scss/layout/_footer.scss */

  .footer-wrapper .payment-card ul li.margin-right {
    margin-right: 10px;
  }
}

/* line 266, ../scss/layout/_footer.scss */

.footer-wrapper .payment-card ul li img {
  display: block;
  width: 40px;
}

@media only screen and (min-width: 600px) {
  /* line 266, ../scss/layout/_footer.scss */

  .footer-wrapper .payment-card ul li img {
    width: auto;
  }
}

@media only screen and (min-width: 980px) {
  /* line 266, ../scss/layout/_footer.scss */

  .footer-wrapper .payment-card ul li img {
    width: auto;
  }
}

/* line 272, ../scss/layout/_footer.scss */

.footer-wrapper .subscriber-form-fields {
  display: inline-block;
}

@media only screen and (max-width: 770px) {
  /* line 275, ../scss/layout/_footer.scss */

  .footer-wrapper .subscriber-form-fields .v-fix {
    width: 72%;
    float: left;
    margin-top: 0;
  }

  /* line 279, ../scss/layout/_footer.scss */

  .footer-wrapper .subscriber-form-fields .v-fix .validation-advice {
    text-align: left;
  }

  /* line 283, ../scss/layout/_footer.scss */

  .footer-wrapper .subscriber-form-fields button {
    float: right;
    width: 20%;
    margin: 0;
  }
}

/* line 292, ../scss/layout/_footer.scss */

.footer-wrapper {
  margin-top: 50px;
}

/* line 294, ../scss/layout/_footer.scss */

.footer-wrapper .footer {
  position: relative;
  width: 100%;
  padding-top: 60px;
  background: #F1F2F4;
  display: inline-block;
  border: none;
}

/* line 302, ../scss/layout/_footer.scss */

.footer-wrapper .back-to-top {
  background: url(../images/back_to_top.png) no-repeat;
  width: 60px;
  height: 61px;
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -30px;
  background-size: 100%;
}

/* line 312, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
}

@media only screen and (min-width: 600px) {
  /* line 312, ../scss/layout/_footer.scss */

  .footer-wrapper .subscribe {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 312, ../scss/layout/_footer.scss */

  .footer-wrapper .subscribe {
    margin-top: 30px;
  }
}

/* line 316, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe .subscribe-header {
  float: left;
  width: 340px;
}

/* line 319, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe .subscribe-header .hed {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 22px;
  color: #57626f;
  line-height: initial;
  width: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 600px) {
  /* line 319, ../scss/layout/_footer.scss */

  .footer-wrapper .subscribe .subscribe-header .hed {
    font-size: 26px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 319, ../scss/layout/_footer.scss */

  .footer-wrapper .subscribe .subscribe-header .hed {
    font-size: 26px;
  }
}

/* line 327, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe .subscribe-header .dek {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-size: 18px;
  color: #57626f;
  font-weight: 300;
}

@media only screen and (min-width: 600px) {
  /* line 327, ../scss/layout/_footer.scss */

  .footer-wrapper .subscribe .subscribe-header .dek {
    font-size: 18px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 327, ../scss/layout/_footer.scss */

  .footer-wrapper .subscribe .subscribe-header .dek {
    font-size: 18px;
  }
}

/* line 335, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe .v-fix {
  float: left;
  margin-top: 3px;
}

/* line 338, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe .v-fix input {
  width: 610px !important;
}

/* line 342, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe button {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  background: #8CAEDC;
  float: left;
  font-size: 16px;
  margin-left: 20px;
  margin-top: 3px;
}

/* line 349, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe button:hover {
  background: #7394bf;
}

/* line 352, ../scss/layout/_footer.scss */

.footer-wrapper .subscribe button.mobile {
  display: none;
}

/* line 357, ../scss/layout/_footer.scss */

.footer-wrapper .subscriber-form-fields {
  width: auto;
  float: right;
}

/* line 363, ../scss/layout/_footer.scss */

.footer-wrapper .social-links {
  text-align: center;
  position: relative;
  margin: 55px auto 47px;
}

@media only screen and (min-width: 600px) {
  /* line 363, ../scss/layout/_footer.scss */

  .footer-wrapper .social-links {
    margin: 30px auto;
  }
}

/* line 367, ../scss/layout/_footer.scss */

.footer-wrapper .social-links div.social-icon {
  display: inline-block;
  margin: 0;
  padding: 0 7px;
  padding-top: 20px;
  background: #f1f2f4;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 600px) {
  /* line 367, ../scss/layout/_footer.scss */

  .footer-wrapper .social-links div.social-icon {
    padding-top: 0;
  }
}

/* line 375, ../scss/layout/_footer.scss */

.footer-wrapper .social-links div.social-icon a {
  display: inline-block;
  width: 36px;
  height: 36px;
  outline: none;
  background-size: 36px 36px;
}

/* line 381, ../scss/layout/_footer.scss */

.footer-wrapper .social-links div.social-icon a:hover {
  text-decoration: none;
}

/* line 385, ../scss/layout/_footer.scss */

.footer-wrapper .social-links div.social-icon:first-child {
  padding-left: 23px;
}

/* line 388, ../scss/layout/_footer.scss */

.footer-wrapper .social-links div.social-icon:last-child {
  padding-right: 23px;
}

/* line 393, ../scss/layout/_footer.scss */

.footer-wrapper .social-links:before,
.footer-wrapper .social-links:after {
  content: '';
  position: relative;
  border-top: 1px solid #ccc;
  width: 100%;
  left: 0;
  display: block;
  z-index: 0;
}

/* line 403, ../scss/layout/_footer.scss */

.footer-wrapper .social-links:before {
  top: -23px;
}

@media only screen and (min-width: 600px) {
  /* line 403, ../scss/layout/_footer.scss */

  .footer-wrapper .social-links:before {
    top: 19px;
  }
}

/* line 406, ../scss/layout/_footer.scss */

.footer-wrapper .social-links:after {
  display: block;
  bottom: -23px;
}

@media only screen and (min-width: 600px) {
  /* line 406, ../scss/layout/_footer.scss */

  .footer-wrapper .social-links:after {
    display: none;
  }
}

@media only screen and (min-width: 600px) {
  /* line 406, ../scss/layout/_footer.scss */

  .footer-wrapper .social-links:after {
    bottom: 0;
  }
}

/* line 413, ../scss/layout/_footer.scss */

.footer-wrapper .border-line {
  border-bottom: 1px solid #CCCCCC;
  width: 450px;
  margin-top: 15px;
}

/* line 417, ../scss/layout/_footer.scss */

.footer-wrapper .border-line.align-left {
  float: left;
}

/* line 420, ../scss/layout/_footer.scss */

.footer-wrapper .border-line.align-right {
  float: right;
}

/* line 424, ../scss/layout/_footer.scss */

.footer-wrapper .column ul li {
  padding-right: 45px;
}

/* line 432, ../scss/layout/_footer.scss */

.footer-wrapper .footer-links-wrapper .column > div {
  margin-bottom: 30px;
  float: left;
}

/* line 435, ../scss/layout/_footer.scss */

.footer-wrapper .footer-links-wrapper .column > div h5 {
  font-family: "Proxima-Nova-Bold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  color: #76848f;
}

/* line 441, ../scss/layout/_footer.scss */

.footer-wrapper .footer-links-wrapper .column > div ul li {
  float: left;
  width: 100%;
}

/* line 444, ../scss/layout/_footer.scss */

.footer-wrapper .footer-links-wrapper .column > div ul li a,
.footer-wrapper .footer-links-wrapper .column > div ul li p,
.footer-wrapper .footer-links-wrapper .column > div ul li span {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}

/* line 454, ../scss/layout/_footer.scss */

.footer-wrapper .place-holder {
  float: left;
  width: 100%;
  margin: 40px 0;
  color: #999999;
  font-size: 10px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 461, ../scss/layout/_footer.scss */

.footer-wrapper .place-holder .limit-width,
.footer-wrapper .place-holder .messages {
  white-space: nowrap;
}

/* line 467, ../scss/layout/_footer.scss */

.copyright {
  margin: 0 5px;
  float: left;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  line-height: 35px;
  text-transform: uppercase;
  color: #999999;
}

/* line 475, ../scss/layout/_footer.scss */

.copyright a {
  color: #999999;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 482, ../scss/layout/_footer.scss */

.footer-wrapper .r-block {
  float: left;
}

/* line 485, ../scss/layout/_footer.scss */

.footer-wrapper .r-block .r-block-content a,
.footer-wrapper .r-block .r-block-content span,
.footer-wrapper .r-block .r-block-content .copy-right {
  margin: 0 5px;
  float: left;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  line-height: 35px;
  text-transform: uppercase;
  color: #999999;
}

/* line 495, ../scss/layout/_footer.scss */

.footer-wrapper .r-block .icons {
  float: left;
  margin-left: 15px;
}

/* line 498, ../scss/layout/_footer.scss */

.footer-wrapper .r-block .icons a {
  width: 56px;
}

/* line 501, ../scss/layout/_footer.scss */

.footer-wrapper .r-block .icons img {
  max-width: 100%;
  height: auto;
  display: inline;
}

/* line 509, ../scss/layout/_footer.scss */

.footer-wrapper .r-block + .r-block {
  float: right;
}

/* line 1, ../scss/layout/_header-bevilles.scss */

.header-compare,
.header-wishlist,
.header-minicart,
.account-cart-wrapper {
  padding: 0px 15px;
  float: left;
}

/* line 6, ../scss/layout/_header-bevilles.scss */

.clear-right {
  clear: right;
}

/* line 10, ../scss/layout/_header-bevilles.scss */

.wrapper .meta-links .header-minicart {
  margin-left: 0px !important;
}

/* line 15, ../scss/layout/_header-bevilles.scss */

.header-compare a span.count,
.header-wishlist a span.count {
  color: #d26aa9;
  font-size: 12px;
  font-weight: bold;
}

/* line 19, ../scss/layout/_header-bevilles.scss */

.header-compare a span.count:before,
.header-wishlist a span.count:before {
  content: "(";
}

/* line 22, ../scss/layout/_header-bevilles.scss */

.header-compare a span.count:after,
.header-wishlist a span.count:after {
  content: ")";
}

/* line 28, ../scss/layout/_header-bevilles.scss */

.header-wishlist a span.count,
.header-compare a span.count::before,
.header-compare a span.count::after,
.header-wishlist a span.count::before,
.header-wishlist a span.count::after {
  color: #d26aa9;
  font-size: 12px;
  font-weight: bold;
}

/* line 38, ../scss/layout/_header-bevilles.scss */

.account-cart-wrapper {
  float: left;
}

/* line 42, ../scss/layout/_header-bevilles.scss */

.header-wishlist a:first-child::after,
.header-compare a:first-child::after {
  content: " ";
}

/* line 46, ../scss/layout/_header-bevilles.scss */

.meta-links {
  font-weight: normal;
}

/* line 50, ../scss/layout/_header-bevilles.scss */

.header-compare,
.header-wishlist {
  line-height: 1;
  padding-top: 2px;
}

/* line 55, ../scss/layout/_header-bevilles.scss */

.header-promo-message {
  text-align: center;
  padding: 22px 0 22px;
  border-bottom: 1px solid #ededed;
  border-top: none;
  max-width: 1180px;
  letter-spacing: 2px;
  margin: 0 auto;
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 55, ../scss/layout/_header-bevilles.scss */

  .header-promo-message {
    border-top: 1px solid #ededed;
  }
}

@media only screen and (min-width: 980px) {
  /* line 55, ../scss/layout/_header-bevilles.scss */

  .header-promo-message {
    border-top: none;
  }
}

@media only screen and (min-width: 600px) {
  /* line 55, ../scss/layout/_header-bevilles.scss */

  .header-promo-message {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 55, ../scss/layout/_header-bevilles.scss */

  .header-promo-message {
    display: block;
  }
}

/* line 64, ../scss/layout/_header-bevilles.scss */

.header-promo-message p,
.header-promo-message span {
  line-height: 1;
}

/* line 69, ../scss/layout/_header-bevilles.scss */

.header-minicart .mini-products-list li {
  position: static;
}

/* line 73, ../scss/layout/_header-bevilles.scss */

#header-minicart-ajax-please-wait {
  bottom: 0;
  height: 100%;
  left: -10px;
  opacity: 0.3;
  position: absolute;
  right: 0;
  text-indent: -99999px;
  top: -5px;
  vertical-align: middle;
}

/* line 85, ../scss/layout/_header-bevilles.scss */

#header-minicart-ajax-please-wait img {
  display: inline-block;
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 48px;
}

/* line 95, ../scss/layout/_header-bevilles.scss */

.wrapper .meta-links .header-compare,
.wrapper .meta-links .header-wishlist {
  padding: 0;
}

/* line 97, ../scss/layout/_header-bevilles.scss */

.wrapper .meta-links .header-compare > a,
.wrapper .meta-links .header-wishlist > a {
  padding: 0 15px;
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */

/* -------------------------------------------- *
 * Product List General
 */

/* line 35, ../scss/module/_product-list.scss */

.catalog-category-view .category-header {
  margin-top: 10px;
}

/* line 41, ../scss/module/_product-list.scss */

.catalog-category-view .category-products .toolbar strong {
  font-weight: normal;
}

/* line 46, ../scss/module/_product-list.scss */

.availability.out-of-stock span {
  font-size: 13px;
}

/* line 49, ../scss/module/_product-list.scss */

.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

/* line 54, ../scss/module/_product-list.scss */

.category-image {
  margin-bottom: 1.5em;
}

/* line 58, ../scss/module/_product-list.scss */

.category-description .category-more {
  color: #81bbe7;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 63, ../scss/module/_product-list.scss */

.products-list .action .button,
.products-grid .actions .button {
  white-space: normal;
}

/* -------------------------------------------- *
 * Product Name
 */

/* line 72, ../scss/module/_product-list.scss */

h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #727a85;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: capitalize;
  font-size: 13px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}

/* line 83, ../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: #727a85;
}

/* line 85, ../scss/module/_product-list.scss */

h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  color: #8caedc;
  text-decoration: none;
}

/* line 92, ../scss/module/_product-list.scss */

.products-grid .product-name,
.products-list .product-name {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 99, ../scss/module/_product-list.scss */

.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 500;
}

/* ============================================ *
 * Product Grid
 * ============================================ */

/* line 110, ../scss/module/_product-list.scss */

.products-grid {
  position: relative;
  margin-top: 20px;
}

/* line 115, ../scss/module/_product-list.scss */

.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

/* line 119, ../scss/module/_product-list.scss */

.products-grid > li {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

/* line 124, ../scss/module/_product-list.scss */

.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 129, ../scss/module/_product-list.scss */

.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
}

/* line 134, ../scss/module/_product-list.scss */

.products-grid .product-image img {
  width: 100%;
  height: auto;
}

/* line 138, ../scss/module/_product-list.scss */

.products-grid .product-image img:hidden {
  display: none;
}

/* line 144, ../scss/module/_product-list.scss */

.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

/* line 154, ../scss/module/_product-list.scss */

.products-grid .product-info {
  position: relative;
  padding-bottom: 95px;
}

/* line 159, ../scss/module/_product-list.scss */

.products-grid .actions {
  padding-top: 10px;
  position: absolute;
  bottom: 0px;
  min-height: 85px;
  width: 100%;
}

/* line 167, ../scss/module/_product-list.scss */

.products-grid .ratings .rating-box {
  margin: 0 auto;
}

/* line 171, ../scss/module/_product-list.scss */

.products-grid .ratings .amount {
  display: none;
}

/* line 175, ../scss/module/_product-list.scss */

.products-grid .price-box {
  color: #A0A0A0;
  font-size: 13px;
  margin: 0 0 5px;
}

/* line 181, ../scss/module/_product-list.scss */

.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */

/* line 192, ../scss/module/_product-list.scss */

.products-grid > li {
  float: left;
  width: 47.72727%;
  margin-right: 4.54545%;
}

/* line 198, ../scss/module/_product-list.scss */

.products-grid > li:nth-child(odd) {
  clear: left;
}

/* line 202, ../scss/module/_product-list.scss */

.products-grid > li:nth-child(even) {
  margin-right: 0;
}

/* line 206, ../scss/module/_product-list.scss */

.products-grid .product-image {
  margin-bottom: 5px;
}

/* 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 224, ../scss/module/_product-list.scss */

  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }

  /* line 226, ../scss/module/_product-list.scss */

  .products-grid > li:nth-child(odd) {
    clear: none;
  }

  /* line 229, ../scss/module/_product-list.scss */

  .products-grid > li:nth-child(even) {
    margin-right: 3.7037%;
  }

  /* line 234, ../scss/module/_product-list.scss */

  .products-grid > li {
    width: 30.8642%;
    margin-right: 3.7037%;
  }

  /* line 238, ../scss/module/_product-list.scss */

  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }

  /* line 241, ../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 261, ../scss/module/_product-list.scss */

  .products-grid--max-4-col > li:nth-child(odd) {
    clear: none;
  }

  /* line 264, ../scss/module/_product-list.scss */

  .products-grid--max-4-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 267, ../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 273, ../scss/module/_product-list.scss */

  .products-grid--max-4-col > li {
    margin-right: 2.22222%;
  }

  /* line 276, ../scss/module/_product-list.scss */

  .products-grid--max-4-col > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }

  /* line 280, ../scss/module/_product-list.scss */

  .products-grid--max-4-col > li:nth-child(4n+1) {
    clear: left;
  }

  /* line 283, ../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 261, ../scss/module/_product-list.scss */

  .products-grid--max-5-col > li:nth-child(odd) {
    clear: none;
  }

  /* line 264, ../scss/module/_product-list.scss */

  .products-grid--max-5-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 267, ../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 273, ../scss/module/_product-list.scss */

  .products-grid--max-5-col > li {
    margin-right: 2.22222%;
  }

  /* line 276, ../scss/module/_product-list.scss */

  .products-grid--max-5-col > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }

  /* line 280, ../scss/module/_product-list.scss */

  .products-grid--max-5-col > li:nth-child(5n+1) {
    clear: left;
  }

  /* line 283, ../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 261, ../scss/module/_product-list.scss */

  .products-grid--max-6-col > li:nth-child(odd) {
    clear: none;
  }

  /* line 264, ../scss/module/_product-list.scss */

  .products-grid--max-6-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 267, ../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 273, ../scss/module/_product-list.scss */

  .products-grid--max-6-col > li {
    margin-right: 2.22222%;
  }

  /* line 276, ../scss/module/_product-list.scss */

  .products-grid--max-6-col > li {
    width: 14.81481%;
    margin-right: 2.22222%;
  }

  /* line 280, ../scss/module/_product-list.scss */

  .products-grid--max-6-col > li:nth-child(6n+1) {
    clear: left;
  }

  /* line 283, ../scss/module/_product-list.scss */

  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0;
  }
}

/* ============================================ *
 * Product List
 * ============================================ */

/* line 300, ../scss/module/_product-list.scss */

.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  /* line 300, ../scss/module/_product-list.scss */

  .products-list {
    text-align: left;
  }
}

/* line 304, ../scss/module/_product-list.scss */

.products-list > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
}

/* line 309, ../scss/module/_product-list.scss */

.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 312, ../scss/module/_product-list.scss */

.products-list > li .product-image {
  float: left;
  width: 33.33333%;
}

/* line 316, ../scss/module/_product-list.scss */

.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}

/* line 322, ../scss/module/_product-list.scss */

.products-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* line 328, ../scss/module/_product-list.scss */

.products-list .product-shop {
  float: right;
  width: 66.66667%;
  padding-left: 20px;
}

/* line 333, ../scss/module/_product-list.scss */

.products-list .product-shop .product-name {
  margin-bottom: 0;
}

/* line 336, ../scss/module/_product-list.scss */

.products-list .product-shop .ratings {
  margin: 0;
}

/* line 339, ../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 344, ../scss/module/_product-list.scss */

.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}

/* line 348, ../scss/module/_product-list.scss */

.products-list .product-shop .price-box {
  margin-top: 0;
}

/* line 351, ../scss/module/_product-list.scss */

.products-list .product-shop .price-box .price {
  font-size: 18px;
}

/* line 354, ../scss/module/_product-list.scss */

.products-list .product-shop .action {
  margin: 7px 0;
}

/* line 357, ../scss/module/_product-list.scss */

.products-list .product-shop .desc {
  margin-top: 7px;
}

/* line 361, ../scss/module/_product-list.scss */

.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 65%;
  overflow: hidden;
}

/* line 367, ../scss/module/_product-list.scss */

.products-list .product-shop .product-secondary {
  float: right;
  width: 35%;
  text-align: right;
  clear: right;
}

@media only screen and (min-width: 480px) {
  /* line 376, ../scss/module/_product-list.scss */

  .products-list .product-name a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1279px) {
  /* line 383, ../scss/module/_product-list.scss */

  .products-list .product-shop .product-primary,
  .products-list .product-shop .desc {
    float: left;
    width: 60%;
    padding-right: 20px;
  }

  /* line 389, ../scss/module/_product-list.scss */

  .products-list .product-shop .product-secondary {
    float: right;
    width: 40%;
  }
}

@media only screen and (max-width: 600px) {
  /* line 397, ../scss/module/_product-list.scss */

  .products-list .product-shop .price-box .special-price {
    padding-left: 0;
  }

  /* line 401, ../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 418, ../scss/module/_product-list.scss */

.mini-products-list .product-image {
  float: left;
  min-width: 50px;
}

/* line 422, ../scss/module/_product-list.scss */

.mini-products-list .product-details {
  margin-left: 60px;
}

/* line 427, ../scss/module/_product-list.scss */

.mini-products-list .product-details .product-name {
  padding-top: 10px;
}

/* line 431, ../scss/module/_product-list.scss */

.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}

/* line 435, ../scss/module/_product-list.scss */

.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 443, ../scss/module/_product-list.scss */

.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both;
}

/* line 447, ../scss/module/_product-list.scss */

.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}

/* line 453, ../scss/module/_product-list.scss */

.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}

/* line 458, ../scss/module/_product-list.scss */

.mini-products-images-list li.item .product-image {
  display: block;
}

/* line 461, ../scss/module/_product-list.scss */

.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */

/* line 476, ../scss/module/_product-list.scss */

.toolbar .sort-by-switcher,
.toolbar .pages {
  display: none;
}

/* line 481, ../scss/module/_product-list.scss */

.toolbar .left {
  float: left;
  margin-top: 10px;
}

/* line 486, ../scss/module/_product-list.scss */

.toolbar .left div,
.toolbar .left p,
.toolbar .left strong,
.toolbar .left a {
  float: left;
}

/* line 493, ../scss/module/_product-list.scss */

.toolbar .right {
  float: right;
  margin-right: 4em;
}

/* line 498, ../scss/module/_product-list.scss */

.toolbar .right select {
  width: auto;
  margin: 0;
  height: 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 0 0 10px;
  min-width: 100px;
}

/* line 509, ../scss/module/_product-list.scss */

.category-products .toolbar {
  background: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  width: 100%;
}

/* line 518, ../scss/module/_product-list.scss */

.category-products .toolbar .view-mode > label {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #727a85;
  font-size: 15px;
  line-height: 30px;
  display: block;
  float: left;
  margin: 0 15px 0 20px;
  text-transform: none;
}

/* line 528, ../scss/module/_product-list.scss */

.category-products .toolbar .view-mode .grid,
.category-products .toolbar .view-mode .list {
  color: #727a85;
  margin: 6px 5px 5px;
  width: 22px;
  height: 17px;
  font-size: 0;
}

/* line 535, ../scss/module/_product-list.scss */

.category-products .toolbar .view-mode .grid:before,
.category-products .toolbar .view-mode .list:before {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  visibility: visible;
  font-size: 21px;
}

/* line 540, ../scss/module/_product-list.scss */

.category-products .toolbar .view-mode .grid[href],
.category-products .toolbar .view-mode .list[href] {
  color: #333;
}

/* line 544, ../scss/module/_product-list.scss */

.category-products .toolbar .view-mode .grid:before {
  content: "";
}

/* line 545, ../scss/module/_product-list.scss */

.category-products .toolbar .view-mode .list:before {
  content: "";
}

/* line 550, ../scss/module/_product-list.scss */

.category-products .toolbar {
  padding-left: 0;
  padding-right: 0;
}

/* line 553, ../scss/module/_product-list.scss */

.category-products .toolbar label {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: capitalize;
  font-size: 15px;
  margin-right: 10px;
}

/* line 559, ../scss/module/_product-list.scss */

.category-products .toolbar strong {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 700;
  color: #333;
}

/* line 566, ../scss/module/_product-list.scss */

.category-products .toolbar .right {
  margin-right: 0;
}

/* line 569, ../scss/module/_product-list.scss */

.category-products .toolbar .sort-by {
  position: relative;
  white-space: nowrap;
}

/* line 572, ../scss/module/_product-list.scss */

.category-products .toolbar .sort-by .input-box {
  width: 180px;
}

/* line 575, ../scss/module/_product-list.scss */

.category-products .toolbar .sort-by label,
.category-products .toolbar .sort-by .input-box {
  display: inline-block;
}

/* line 578, ../scss/module/_product-list.scss */

.category-products .toolbar .sort-by label {
  line-height: 45px;
  vertical-align: top;
  font-size: 15px;
  color: #727a85;
}

/* line 585, ../scss/module/_product-list.scss */

.category-products .toolbar .sort-by .nice-select {
  display: inline-block;
  float: none;
  clear: none;
  height: 42px;
  line-height: 40px;
  font-size: 16px;
  color: #727a85;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-left: 15px;
  padding-right: 27px;
}

/* line 600, ../scss/module/_product-list.scss */

.category-products .toolbar-bottom .toolbar {
  border: none;
}

/* line 603, ../scss/module/_product-list.scss */

.category-products .toolbar-bottom .left,
.category-products .toolbar-bottom .right {
  display: none;
}

/* line 606, ../scss/module/_product-list.scss */

.category-products .toolbar-bottom .center {
  border-top: 1px solid #ddd;
  padding-top: 35px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

/* line 614, ../scss/module/_product-list.scss */

.category-products .toolbar-bottom .pages .previous_text {
  margin-left: 0;
}

/* line 616, ../scss/module/_product-list.scss */

.category-products .toolbar-bottom .pages .previous_text a {
  margin-left: 15px;
}

/* line 620, ../scss/module/_product-list.scss */

.category-products .toolbar-bottom .pages li:last-child {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 620, ../scss/module/_product-list.scss */

  .category-products .toolbar-bottom .pages li:last-child {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 620, ../scss/module/_product-list.scss */

  .category-products .toolbar-bottom .pages li:last-child {
    display: block;
  }
}

/* line 627, ../scss/module/_product-list.scss */

.category-products .block-layered-nav .block-content > dl {
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* line 631, ../scss/module/_product-list.scss */

.category-products .block-layered-nav .block-content > dl > dd {
  border: none;
  padding: 0;
}

/* line 637, ../scss/module/_product-list.scss */

.category-products {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

/* line 640, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav,
.category-products .product_filter_nav.block.block-layered-nav {
  border: none;
  padding: 0 15px 20px;
  margin-top: 0;
  float: left;
  width: 100%;
  background: #f1f2f4 none repeat scroll 0 0;
  display: inline-block;
  position: relative;
}

@media only screen and (min-width: 600px) {
  /* line 640, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav,
  .category-products .product_filter_nav.block.block-layered-nav {
    margin-top: 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 640, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav,
  .category-products .product_filter_nav.block.block-layered-nav {
    margin-top: 25px;
  }
}

/* line 651, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-title,
.category-products .product_filter_nav.block.block-layered-nav .block-title {
  text-align: center;
  margin: 12px 0 0 0;
  border: none;
  padding: 0;
}

/* line 656, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-title strong,
.category-products .product_filter_nav.block.block-layered-nav .block-title strong {
  color: #57626f;
  font-weight: normal;
  margin: 12px 0 0 0;
  position: relative;
  font-family: "Proxima-Nova-Bold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

@media only screen and (min-width: 600px) {
  /* line 656, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title strong,
  .category-products .product_filter_nav.block.block-layered-nav .block-title strong {
    font-size: 15px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 656, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title strong,
  .category-products .product_filter_nav.block.block-layered-nav .block-title strong {
    font-size: 23px;
  }
}

@media only screen and (min-width: 600px) {
  /* line 656, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title strong,
  .category-products .product_filter_nav.block.block-layered-nav .block-title strong {
    text-transform: uppercase;
  }
}

@media only screen and (min-width: 980px) {
  /* line 656, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title strong,
  .category-products .product_filter_nav.block.block-layered-nav .block-title strong {
    text-transform: none;
  }
}

/* line 667, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content,
.category-products .product_filter_nav.block.block-layered-nav .block-content {
  width: 100%;
  margin-top: 0;
}

/* line 671, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content:after,
.category-products .product_filter_nav.block.block-layered-nav .block-content:after {
  content: '';
  display: table;
  clear: both;
}

/* line 675, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content.has-state #narrow-by-list,
.category-products .product_filter_nav.block.block-layered-nav .block-content.has-state #narrow-by-list {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* line 675, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content.has-state #narrow-by-list,
  .category-products .product_filter_nav.block.block-layered-nav .block-content.has-state #narrow-by-list {
    width: 87%;
  }
}

/* line 680, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content.no-state #narrow-by-list,
.category-products .product_filter_nav.block.block-layered-nav .block-content.no-state #narrow-by-list {
  width: 100%;
}

/* line 684, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content #narrow-by-list,
.category-products .product_filter_nav.block.block-layered-nav .block-content #narrow-by-list {
  margin: 0;
}

/* line 686, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content #narrow-by-list:after,
.category-products .product_filter_nav.block.block-layered-nav .block-content #narrow-by-list:after {
  content: '';
  display: table;
  clear: both;
}

/* line 690, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .layer-item,
.category-products .product_filter_nav.block.block-layered-nav .block-content .layer-item {
  display: inline-block;
  margin-right: 11px;
  vertical-align: top;
  margin-top: 10px;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* line 690, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .layer-item,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .layer-item {
    width: auto;
  }
}

@media only screen and (min-width: 980px) {
  /* line 690, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .layer-item,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .layer-item {
    width: auto;
  }
}

/* line 696, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .layer-item:first-child,
.category-products .product_filter_nav.block.block-layered-nav .block-content .layer-item:first-child {
  margin-left: 0;
}

/* line 699, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .layer-item.currently,
.category-products .product_filter_nav.block.block-layered-nav .block-content .layer-item.currently {
  margin-bottom: 0;
  vertical-align: top;
  font-size: 16px;
  color: #FFF;
  height: 42px;
  line-height: 42px;
  background: #727a85;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding-top: 0px;
  padding-right: 12px;
  padding-bottom: 0px;
  padding-left: 12px;
  display: inline-block;
}

/* line 715, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .currently,
.category-products .product_filter_nav.block.block-layered-nav .block-content .currently {
  display: inline-block;
}

/* line 717, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .currently:after,
.category-products .product_filter_nav.block.block-layered-nav .block-content .currently:after {
  content: '';
  display: table;
  clear: both;
}

/* line 720, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .currently .label,
.category-products .search_filter_nav.block.block-layered-nav .block-content .currently p,
.category-products .product_filter_nav.block.block-layered-nav .block-content .currently .label,
.category-products .product_filter_nav.block.block-layered-nav .block-content .currently p {
  display: none;
}

/* line 723, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .currently .btn-remove,
.category-products .product_filter_nav.block.block-layered-nav .block-content .currently .btn-remove {
  border: none;
  margin-right: 5px;
  margin-top: 8px;
  background: none;
  width: 14px;
  float: right;
  vertical-align: top;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

/* line 731, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .currently .btn-remove:after,
.category-products .product_filter_nav.block.block-layered-nav .block-content .currently .btn-remove:after {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 16px;
  color: #FFF;
  line-height: 24px;
  height: 24px;
  position: absolute;
  width: 17px;
  left: 0;
  top: 0;
}

/* line 745, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .currently .block-subtitle,
.category-products .product_filter_nav.block.block-layered-nav .block-content .currently .block-subtitle {
  display: none;
}

/* line 750, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .actions,
.category-products .product_filter_nav.block.block-layered-nav .block-content .actions {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

@media only screen and (min-width: 600px) {
  /* line 750, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .actions,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .actions {
    position: absolute;
  }
}

@media only screen and (min-width: 980px) {
  /* line 750, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .actions,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .actions {
    position: absolute;
  }
}

@media only screen and (min-width: 768px) {
  /* line 750, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .actions,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .actions {
    margin: 0;
    right: 33px;
    top: 55px;
  }
}

/* line 759, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .actions a,
.category-products .product_filter_nav.block.block-layered-nav .block-content .actions a {
  font-size: 15px;
  color: #727a85;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  float: none;
}

/* line 766, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .actions a:hover,
.category-products .product_filter_nav.block.block-layered-nav .block-content .actions a:hover {
  text-decoration: none;
}

/* line 769, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .block-content .actions a:after,
.category-products .product_filter_nav.block.block-layered-nav .block-content .actions a:after {
  display: inline-block;
  font: normal normal normal 14px/1 "FontAwesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: #727a85;
  font-size: 16px;
  width: 14px;
  display: inline-block;
  height: 14px;
  line-height: 12px;
  vertical-align: middle;
  margin-left: 8px;
}

/* line 784, ../scss/module/_product-list.scss */

.category-products .search_filter_nav.block.block-layered-nav .nice-select,
.category-products .product_filter_nav.block.block-layered-nav .nice-select {
  height: 42px;
  line-height: 40px;
  font-size: 16px;
  color: #727a85;
  padding-left: 15px;
  padding-right: 27px;
  width: 100%;
}

/* line 798, ../scss/module/_product-list.scss */

.category-products .block.block-layered-nav .block-title {
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  border: none;
}

/* line 803, ../scss/module/_product-list.scss */

.category-products .block.block-layered-nav .block-title strong {
  position: relative;
  text-transform: none;
  color: #57626f;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 23px;
}

/* line 809, ../scss/module/_product-list.scss */

.category-products .block.block-layered-nav .block-title strong:after {
  content: '\e819';
  color: #8caedb;
  width: 20px;
  height: 20px;
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Fontello";
  margin-right: -30px;
}

/* line 822, ../scss/module/_product-list.scss */

.category-products .block.block-layered-nav .block-title.active strong:after {
  content: '\e818';
}

/* line 826, ../scss/module/_product-list.scss */

.category-products .block.block-layered-nav .block-content > dl > dd li {
  display: inline-block;
  padding: 8px 11px;
  vertical-align: top;
}

/* line 830, ../scss/module/_product-list.scss */

.category-products .block.block-layered-nav .block-content > dl > dd li a {
  background: #f1f2f4;
  font-size: 16px;
  color: #727a85;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* line 830, ../scss/module/_product-list.scss */

  .category-products .block.block-layered-nav .block-content > dl > dd li a {
    width: 210px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 830, ../scss/module/_product-list.scss */

  .category-products .block.block-layered-nav .block-content > dl > dd li a {
    width: 210px;
  }
}

/* line 838, ../scss/module/_product-list.scss */

.category-products .block.block-layered-nav .block-content > dl > dd li a:hover {
  background: #727A85;
  border-color: #727A85;
  color: #fff;
  text-decoration: none;
}

/* line 848, ../scss/module/_product-list.scss */

.transform-controls-wrapper {
  text-align: center;
  float: left;
  display: inline-block;
  position: relative;
  background: #f1f2f4;
  padding-bottom: 12px;
  padding-left: 8px;
}

/* line 856, ../scss/module/_product-list.scss */

.transform-controls-wrapper .filter-by {
  text-align: left;
  font-size: 15px;
  margin: 12px 0 0 12px;
}

/* line 863, ../scss/module/_product-list.scss */

.placeholder + .block-layered-nav {
  display: none;
}

/* line 867, ../scss/module/_product-list.scss */

select.transform-select-box {
  width: auto;
  float: left;
  margin: 10px 8px;
  height: 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 0 0 10px;
  min-width: 100px;
}

/* line 879, ../scss/module/_product-list.scss */

.selected-filter-item {
  height: 39px;
  float: left;
  background: #727A85;
  color: #fff;
  width: auto;
  padding: 6px 30px 6px 10px;
  margin: 11px 8px;
  border: 1px solid #727A85;
  border-radius: 3px;
  position: relative;
}

/* line 890, ../scss/module/_product-list.scss */

.selected-filter-item:after {
  content: "";
  background: url(../images/close_light.png) no-repeat 0 0;
  margin: 5px;
  width: 17px;
  height: 20px;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 2px;
}

/* line 901, ../scss/module/_product-list.scss */

.selected-filter-item:hover {
  color: #fff;
  text-decoration: none;
}

/* line 907, ../scss/module/_product-list.scss */

.clear-all-filter {
  float: right;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 15px;
  color: #727A85;
  width: auto;
  margin-top: 18px;
  position: relative;
  padding: 0 30px;
  margin-right: 20px;
}

/* line 918, ../scss/module/_product-list.scss */

.clear-all-filter:hover {
  color: #727A85;
  text-decoration: none;
}

/* line 923, ../scss/module/_product-list.scss */

.clear-all-filter:after {
  content: "";
  background: url(../images/close.png) no-repeat 0 0;
  margin: 5px;
  width: 14px;
  height: 14px;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 936, ../scss/module/_product-list.scss */

.category-image {
  border: 1px solid #CCCCCC;
  padding: 10px;
}

/* line 940, ../scss/module/_product-list.scss */

.category-image img {
  width: 100%;
  max-width: 100%;
}

/* line 944, ../scss/module/_product-list.scss */

.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */

/* line 954, ../scss/module/_product-list.scss */

.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #76848f;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  cursor: pointer;
}

/* line 110, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-subtitle--filter:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #8caedc;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

/* line 117, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

/* line 123, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}

/* line 128, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #76848f;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}

/* line 110, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-content > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #8caedc;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}

/* line 117, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ededed;
}

/* line 133, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #CCCCCC;
}

/* line 140, ../scss/mixin/_toggle-content.scss */

.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

/* line 966, ../scss/module/_product-list.scss */

.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}

/* line 970, ../scss/module/_product-list.scss */

.block-layered-nav dl dd ol > li > span,
.block-layered-nav dl dd ol > li > a {
  padding: 5px 15px;
  display: block;
}

/* line 974, ../scss/module/_product-list.scss */

.block-layered-nav dl dd ol > li > a .count {
  color: #A0A0A0;
}

@media only screen and (min-width: 771px) {
  /* line 980, ../scss/module/_product-list.scss */

  .block-layered-nav .block-content > dl > dt {
    padding-left: 10px;
  }

  /* line 983, ../scss/module/_product-list.scss */

  .block-layered-nav .block-content > dl > dt:after {
    display: none;
  }
}

@media only screen and (max-width: 770px) {
  /* line 990, ../scss/module/_product-list.scss */

  .sidebar .block.block-layered-nav {
    border-bottom: none;
  }

  /* line 995, ../scss/module/_product-list.scss */

  .block-layered-nav--no-filters .block-title {
    display: none;
  }

  /* line 1000, ../scss/module/_product-list.scss */

  .block-layered-nav .block-content {
    padding-top: 0;
    margin-top: 15px;
  }

  /* line 148, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }

  /* line 152, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content > dl > dt:hover {
    color: #8caedc;
  }

  /* line 155, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #8caedc;
    border-right: none;
  }

  /* line 158, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content > dl > dt.last {
    border-bottom-width: 1px;
  }

  /* line 163, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content > dl > dd {
    display: none;
  }

  /* line 171, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }

  /* line 175, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #8caedc;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }

  /* line 183, ../scss/mixin/_toggle-content.scss */

  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    display: block;
  }

  /* line 1006, ../scss/module/_product-list.scss */

  .block-layered-nav .block-subtitle--filter {
    background-color: #8caedc;
    border: 0;
    margin-bottom: 0;
    display: block;
    color: #FFFFFF;
  }

  /* line 1013, ../scss/module/_product-list.scss */

  .block-layered-nav .block-subtitle--filter:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #FFFFFF;
    border-right: none;
    right: 10px;
    top: 50%;
    margin-top: -5px;
  }

  /* line 1020, ../scss/module/_product-list.scss */

  .block-layered-nav .block-subtitle--filter:hover {
    background-color: #78a0d6;
    color: #FFFFFF;
  }

  /* line 1025, ../scss/module/_product-list.scss */

  .block-layered-nav .block-subtitle--filter.active:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #FFFFFF;
    border-bottom: none;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }

  /* line 1033, ../scss/module/_product-list.scss */

  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-top: 0;
  }

  /* line 1040, ../scss/module/_product-list.scss */

  .block-layered-nav dl ol > li > a,
  .block-layered-nav dl ol > li > span {
    padding: 7px;
    margin: 5px;
  }

  /* line 1048, ../scss/module/_product-list.scss */

  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }
}

/* line 1056, ../scss/module/_product-list.scss */

.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #76848f;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: capitalize;
}

/* line 1061, ../scss/module/_product-list.scss */

.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px;
}

/* line 1065, ../scss/module/_product-list.scss */

.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}

/* line 1068, ../scss/module/_product-list.scss */

.block-layered-nav .currently ol li .label {
  font-weight: bold;
}

/* line 1072, ../scss/module/_product-list.scss */

.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1078, ../scss/module/_product-list.scss */

.block-layered-nav .actions {
  text-align: right;
  margin-bottom: 7px;
}

/* line 1083, ../scss/module/_product-list.scss */

.catalogsearch-result-index .page-title {
  display: none;
}

/* line 1086, ../scss/module/_product-list.scss */

.catalogsearch-result-index .category-products {
  margin-top: 10px;
}

/* line 1092, ../scss/module/_product-list.scss */

.catalog-category-view .category-products {
  margin-top: 0;
}

@media only screen and (min-width: 600px) {
  /* line 1092, ../scss/module/_product-list.scss */

  .catalog-category-view .category-products {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1092, ../scss/module/_product-list.scss */

  .catalog-category-view .category-products {
    margin-top: 40px;
  }
}

/* line 1095, ../scss/module/_product-list.scss */

.catalog-category-view .block.block-viewed .block-title strong {
  font-weight: normal;
}

@media only screen and (max-width: 770px) {
  /* line 1102, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav,
  .category-products .product_filter_nav.block.block-layered-nav {
    padding: 15px;
  }

  /* line 1105, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title,
  .category-products .product_filter_nav.block.block-layered-nav .block-title {
    border: 2px solid #8caedc;
    border-radius: 3px;
    color: #8caedc;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    padding: 5px 0;
    text-align: center;
    margin-top: 0;
    margin-left: 0;
  }

  /* line 1116, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title strong,
  .category-products .product_filter_nav.block.block-layered-nav .block-title strong {
    position: relative;
    width: 100%;
  }

  /* line 1119, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title strong:after,
  .category-products .product_filter_nav.block.block-layered-nav .block-title strong:after {
    content: '\e818';
    color: #8caedb;
    width: 20px;
    height: 20px;
    font-size: 20px;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    margin-right: -30px;
    margin-top: -5px;
    font-family: "Fontello";
  }

  /* line 1136, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-title.active strong:after,
  .category-products .product_filter_nav.block.block-layered-nav .block-title.active strong:after {
    content: '\e819';
  }

  /* line 1142, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content,
  .category-products .product_filter_nav.block.block-layered-nav .block-content {
    display: none;
  }

  /* line 1144, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content.active,
  .category-products .product_filter_nav.block.block-layered-nav .block-content.active {
    display: block;
  }

  /* line 1147, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .block-subtitle,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .block-subtitle {
    display: none;
  }

  /* line 1150, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content #narrow-by-list,
  .category-products .product_filter_nav.block.block-layered-nav .block-content #narrow-by-list {
    display: inline-block;
    padding: 0;
    width: 100%;
  }

  /* line 1156, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .layer-item .nice-select,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .layer-item .nice-select {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 27px;
  }

  /* line 1165, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .currently .block-subtitle,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .currently .block-subtitle {
    display: none;
  }

  /* line 1168, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .currently ol,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .currently ol {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
  }

  /* line 1172, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .currently ol li,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .currently ol li {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  /* line 1177, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .currently ol li a,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .currently ol li a {
    float: none;
    display: inline-block;
    vertical-align: top;
  }

  /* line 1182, ../scss/module/_product-list.scss */

  .category-products .search_filter_nav.block.block-layered-nav .block-content .currently ol li span,
  .category-products .product_filter_nav.block.block-layered-nav .block-content .currently ol li span {
    float: left;
  }
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */

/* line 30, ../scss/module/_catalog-product.scss */

.catalog-product-view label.required::after,
.catalog-product-view span.required::after {
  display: none;
}

/* line 33, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-options p.required {
  display: none;
}

/* line 36, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view {
  margin-top: 30px;
}

/* line 42, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-essential .extra-info .ratings .rating-box,
.catalog-product-view .product-view .product-essential .extra-info .ratings .amount {
  float: left;
}

/* line 47, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}

/* line 52, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}

/* line 58, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}

/* line 63, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .product-name .h1,
.catalog-product-view .product-view .product-img-box .product-name h1 {
  color: #8caedc;
  margin-bottom: 10px;
  border: 0;
}

/* line 70, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop {
  width: 50%;
  float: right;
}

/* line 74, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px;
}

/* line 79, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left;
  width: 70%;
}

/* line 86, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .st-only {
  padding-top: 10px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #8caedc;
}

/* line 94, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-info {
  float: right;
  padding-left: 15px;
  text-align: right;
}

/* line 100, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .extra-info,
.catalog-product-view .product-view .product-shop .price-info {
  max-width: 70%;
  margin-bottom: 10px;
}

/* line 106, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}

/* line 111, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .ratings {
  margin-bottom: 8px;
}

/* line 115, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .availability {
  font-size: 16px;
}

/* line 119, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box {
  margin-top: 0;
}

/* line 122, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .old-price,
.catalog-product-view .product-view .product-shop .price-box .special-price,
.catalog-product-view .product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
  display: block;
}

/* line 130, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .regular-price .price,
.catalog-product-view .product-view .product-shop .price-box .special-price .price,
.catalog-product-view .product-view .product-shop .price-box .full-product-price .price {
  color: #8caedc;
  font-size: 24px;
}

/* line 139, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}

/* line 144, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .special-price span.weee {
  color: #727a85;
}

/* line 147, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}

/* line 153, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .price-excluding-tax,
.catalog-product-view .product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #727a85;
}

/* line 159, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .price-excluding-tax .label,
.catalog-product-view .product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}

/* line 164, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .product-shop .price-box .price-excluding-tax .price,
.catalog-product-view .product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}

/* line 172, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .price-box.map-info a {
  display: inherit;
}

/* line 177, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .old-price .price-label {
  display: none;
}

/* line 182, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .add-to-cart-wrapper,
.catalog-product-view .product-view .block-related {
  width: 50%;
  float: right;
  clear: right;
}

/* line 190, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs > dl > dt {
  cursor: pointer;
  padding: 15px 10px;
  position: relative;
  border: none;
  color: #6d95ca;
  font-size: 18px;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 5px;
  display: block;
}

@media only screen and (min-width: 600px) {
  /* line 190, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs > dl > dt {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 190, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs > dl > dt {
    display: none;
  }
}

/* line 201, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs > dl > dt:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 15px;
  height: 15px;
  font-size: 18px;
  color: #6d95ca;
  margin-top: 15px;
  margin-right: 10px;
  font-family: "FontAwesome";
}

/* line 214, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs > dl > dt.active {
  background: #f1f2f4;
}

/* line 216, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs > dl > dt.active:after {
  content: "";
  color: #333333;
}

/* line 222, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs > dl > dd {
  display: none;
}

/* line 224, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs > dl > dd.active {
  margin: 20px 0;
  display: block;
}

/* line 229, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs > dl .tab-container {
  width: 100%;
  margin-top: 20px;
  padding: 0 10px;
}

@media only screen and (min-width: 600px) {
  /* line 229, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs > dl .tab-container {
    padding: 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 229, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs > dl .tab-container {
    padding: 0;
  }
}

/* line 236, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs {
  margin: 20px 0 0;
}

@media only screen and (min-width: 600px) {
  /* line 236, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs {
    margin: 20px 0 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 236, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs {
    margin: 50px 0;
  }
}

/* line 238, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view #collateral-tabs .responsive-tabs-header {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 238, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs .responsive-tabs-header {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 238, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view #collateral-tabs .responsive-tabs-header {
    display: block;
  }
}

/* line 243, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .related-products-desktop {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 243, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view .related-products-desktop {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 243, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view .related-products-desktop {
    display: block;
  }
}

/* line 247, ../scss/module/_catalog-product.scss */

.catalog-product-view .product-view .related-products-mobile {
  display: block;
}

@media only screen and (min-width: 600px) {
  /* line 247, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view .related-products-mobile {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 247, ../scss/module/_catalog-product.scss */

  .catalog-product-view .product-view .related-products-mobile {
    display: none;
  }
}

@media only screen and (max-width: 850px) {
  /* line 259, ../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 263, ../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: 770px) {
  /* line 274, ../scss/module/_catalog-product.scss */

  .product-view .add-to-cart-wrapper {
    float: none;
    width: 100%;
    clear: both;
  }

  /* line 284, ../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 288, ../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 301, ../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 305, ../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 314, ../scss/module/_catalog-product.scss */

.product-img-box {
  width: 50%;
  float: left;
}

/* line 319, ../scss/module/_catalog-product.scss */

.product-img-box .product-name h1 {
  border: 0;
}

/* line 324, ../scss/module/_catalog-product.scss */

.product-img-box .product-image {
  margin-bottom: 10px;
}

/* line 328, ../scss/module/_catalog-product.scss */

.product-img-box .product-image img {
  max-width: 100%;
  max-height: 750px;
  margin: 0px auto;
}

@media only screen and (max-width: 479px) {
  /* line 342, ../scss/module/_catalog-product.scss */

  .product-img-box .product-image img {
    max-height: 450px;
  }
}

/* line 347, ../scss/module/_catalog-product.scss */

.product-image-gallery {
  position: relative;
}

/* line 350, ../scss/module/_catalog-product.scss */

.product-image-gallery .gallery-image {
  display: none;
}

/* line 353, ../scss/module/_catalog-product.scss */

.product-image-gallery .gallery-image.visible {
  display: block;
}

/* line 356, ../scss/module/_catalog-product.scss */

.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}

/* 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 366, ../scss/module/_catalog-product.scss */

.product-image-thumbs li {
  display: inline-block;
}

/* line 369, ../scss/module/_catalog-product.scss */

.product-image-thumbs li:first-child {
  margin-left: -1px;
}

/* line 372, ../scss/module/_catalog-product.scss */

.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent;
}

/* line 379, ../scss/module/_catalog-product.scss */

.no-touch .product-image-thumbs a:hover {
  border-color: #c7c7c7;
}

/* line 384, ../scss/module/_catalog-product.scss */

.product-view .product-shop,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 15px;
}

/* line 390, ../scss/module/_catalog-product.scss */

.product-img-box {
  padding-right: 15px;
}

/* line 394, ../scss/module/_catalog-product.scss */

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}

/* line 402, ../scss/module/_catalog-product.scss */

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}

/* line 404, ../scss/module/_catalog-product.scss */

.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}

/* line 409, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
}

/* line 416, ../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 422, ../scss/module/_catalog-product.scss */

.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}

/* line 429, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}

/* line 435, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}

/* line 439, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}

/* line 444, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 10px;
  max-width: 100%;
}

/* line 449, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}

/* line 453, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}

/* line 459, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}

/* line 464, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}

/* line 469, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}

/* line 480, ../scss/module/_catalog-product.scss */

.product-view .add-to-cart-buttons .button {
  min-height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}

/* line 491, ../scss/module/_catalog-product.scss */

.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 479px) {
  /* line 499, ../scss/module/_catalog-product.scss */

  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }

  /* line 503, ../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 {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}

/* This is the "or" that separates the "Add to Cart" and "Add to X" links */

/* line 518, ../scss/module/_catalog-product.scss */

.add-to-box .or {
  display: none;
}

/* line 522, ../scss/module/_catalog-product.scss */

.product-view .add-to-links {
  clear: both;
  margin-top: 0px;
  margin-right: 15px;
  float: left;
}

/* line 528, ../scss/module/_catalog-product.scss */

.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}

/* line 532, ../scss/module/_catalog-product.scss */

.product-view .add-to-links li {
  float: left;
}

/* line 536, ../scss/module/_catalog-product.scss */

.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #CCCCCC;
}

/* line 542, ../scss/module/_catalog-product.scss */

.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}

/* line 546, ../scss/module/_catalog-product.scss */

.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

/* line 551, ../scss/module/_catalog-product.scss */

.product-view .sharing-links {
  float: left;
}

/* line 554, ../scss/module/_catalog-product.scss */

.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}

/* line 558, ../scss/module/_catalog-product.scss */

.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
}

/* line 563, ../scss/module/_catalog-product.scss */

.product-view .sharing-links a {
  display: block;
  width: 26px;
  height: 26px;
}

/* line 570, ../scss/module/_catalog-product.scss */

.product-view .sharing-links a:hover {
  opacity: 0.8;
}

/* line 573, ../scss/module/_catalog-product.scss */

.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}

/* line 576, ../scss/module/_catalog-product.scss */

.product-view .sharing-links a.link-compare {
  background-position: 0px -250px;
}

/* line 579, ../scss/module/_catalog-product.scss */

.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}

/* line 582, ../scss/module/_catalog-product.scss */

.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px;
}

/* line 585, ../scss/module/_catalog-product.scss */

.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px;
}

@media only screen and (max-width: 599px) {
  /* line 592, ../scss/module/_catalog-product.scss */

  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}

/* line 600, ../scss/module/_catalog-product.scss */

.product-collateral {
  clear: both;
}

/* line 606, ../scss/module/_catalog-product.scss */

.collateral-tabs dd h2 {
  display: none;
}

/* line 612, ../scss/module/_catalog-product.scss */

.box-collateral {
  clear: both;
}

@media only screen and (min-width: 771px) {
  /* line 27, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #CCCCCC;
    background-color: #F4F4F4;
  }

  /* line 34, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }

  /* line 39, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs li > span {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    bottom: -1px;
  }

  /* line 53, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
  }

  /* line 57, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5;
  }

  /* line 63, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs li.current span,
  .product-collateral .toggle-tabs li:hover span {
    color: #8caedc;
  }

  /* line 68, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }

  /* line 72, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs:after {
    content: '';
    display: table;
    clear: both;
  }

  /* line 77, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl {
    width: 100%;
  }

  /* line 80, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt {
    display: none;
  }

  /* line 84, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    padding: 15px;
    border: 1px solid #CCCCCC;
    border-top: 0;
  }

  /* line 92, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dd.current {
    display: block;
  }
}

@media only screen and (max-width: 770px) {
  /* line 123, ../scss/mixin/_toggle-content.scss */

  .product-collateral .toggle-tabs {
    display: none;
  }

  /* line 128, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #76848f;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: capitalize;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
    display: block;
  }

  /* line 110, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #8caedc;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }

  /* line 117, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt:hover {
    background-color: #ededed;
  }

  /* line 133, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }

  /* line 140, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px;
  }

  /* line 148, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }

  /* line 152, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt:hover {
    color: #8caedc;
  }

  /* line 155, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #8caedc;
    border-right: none;
  }

  /* line 158, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }

  /* line 163, ../scss/mixin/_toggle-content.scss */

  .product-collateral > dl > dd {
    display: none;
  }

  /* line 171, ../scss/mixin/_toggle-content.scss */

  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }

  /* line 175, ../scss/mixin/_toggle-content.scss */

  .product-collateral.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #8caedc;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }

  /* line 183, ../scss/mixin/_toggle-content.scss */

  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
}

@media only screen and (max-width: 770px) {
  /* line 633, ../scss/module/_catalog-product.scss */

  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}

@media only screen and (min-width: 771px) {
  /* line 647, ../scss/module/_catalog-product.scss */

  .product-view .product-shop .product-name {
    display: block;
  }

  /* line 650, ../scss/module/_catalog-product.scss */

  .product-img-box .product-name {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  /* line 657, ../scss/module/_catalog-product.scss */

  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 15px;
  }
}

/* line 667, ../scss/module/_catalog-product.scss */

.product-view .ratings .rating-links {
  clear: left;
  float: left;
  margin-top: 0;
}

/* line 674, ../scss/module/_catalog-product.scss */

#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid #C0C0C0;
}

/* line 678, ../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 688, ../scss/module/_catalog-product.scss */

.grouped-items-table-wrapper {
  border: solid 1px #C0C0C0;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

/* line 694, ../scss/module/_catalog-product.scss */

.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

@media only screen and (max-width: 479px) {
  /* line 688, ../scss/module/_catalog-product.scss */

  .grouped-items-table-wrapper {
    margin-bottom: 15px;
  }
}

/* line 703, ../scss/module/_catalog-product.scss */

.grouped-items-table .name-wrapper {
  color: #8caedc;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 708, ../scss/module/_catalog-product.scss */

.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}

/* line 712, ../scss/module/_catalog-product.scss */

.grouped-items-table .qty-label {
  margin-left: 7px;
}

/* line 717, ../scss/module/_catalog-product.scss */

.grouped-items-table td {
  padding: 4px;
}

/* line 720, ../scss/module/_catalog-product.scss */

.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}

/* line 725, ../scss/module/_catalog-product.scss */

.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */

/* line 734, ../scss/module/_catalog-product.scss */

.product-options {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 15px 15px;
  border: 1px solid #CCCCCC;
  clear: both;
  position: relative;
}

/* line 743, ../scss/module/_catalog-product.scss */

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
}

@media only screen and (max-width: 979px) {
  /* line 751, ../scss/module/_catalog-product.scss */

  .product-view .product-options .required {
    position: static;
  }
}

/* line 756, ../scss/module/_catalog-product.scss */

.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
  text-align: left;
  padding-left: 3px;
}

/* line 763, ../scss/module/_catalog-product.scss */

.product-options dt:first-child {
  margin-top: 0;
}

/* line 767, ../scss/module/_catalog-product.scss */

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

/* line 772, ../scss/module/_catalog-product.scss */

.product-options dd .qty-holder .qty {
  width: 3em;
}

/* line 776, ../scss/module/_catalog-product.scss */

.product-options dd .qty-holder label {
  vertical-align: middle;
}

/* line 780, ../scss/module/_catalog-product.scss */

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}

/* line 786, ../scss/module/_catalog-product.scss */

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED;
}

/* line 792, ../scss/module/_catalog-product.scss */

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

/* line 798, ../scss/module/_catalog-product.scss */

.product-options dd .input-text,
.product-options dd .nice-select,
.product-options dd form textarea,
form .product-options dd textarea {
  width: 98%;
}

/* line 802, ../scss/module/_catalog-product.scss */

.product-options dd .input-box {
  padding-top: 0;
}

/* line 806, ../scss/module/_catalog-product.scss */

.product-options dd input.datetime-picker {
  width: 150px;
}

/* line 810, ../scss/module/_catalog-product.scss */

.product-options dd .time-picker {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}

/* line 816, ../scss/module/_catalog-product.scss */

.product-options dd textarea {
  width: 98%;
  height: 8em;
}

/* line 821, ../scss/module/_catalog-product.scss */

.product-options dd select {
  width: 330px;
  max-width: 100%;
}

/* line 826, ../scss/module/_catalog-product.scss */

.product-options ul.options-list {
  margin-right: 5px;
}

/* line 830, ../scss/module/_catalog-product.scss */

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px;
}

/* line 835, ../scss/module/_catalog-product.scss */

.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

/* line 839, ../scss/module/_catalog-product.scss */

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px;
}

/* line 845, ../scss/module/_catalog-product.scss */

.product-options ul.options-list .label {
  display: block;
}

/* line 849, ../scss/module/_catalog-product.scss */

.product-options ul.options-list label {
  font-weight: normal;
}

/* line 853, ../scss/module/_catalog-product.scss */

.product-options p.note {
  margin: 0;
  font-size: 11px;
}

/* line 858, ../scss/module/_catalog-product.scss */

.product-options-bottom {
  background-color: #F4F4F4;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  margin-bottom: 10px;
}

/* line 866, ../scss/module/_catalog-product.scss */

.product-options-bottom:after {
  content: '';
  display: table;
  clear: both;
}

/* line 870, ../scss/module/_catalog-product.scss */

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #727a85;
}

@media only screen and (max-width: 1209px) {
  /* line 870, ../scss/module/_catalog-product.scss */

  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    text-align: right;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CCCCCC;
  }
}

/* line 889, ../scss/module/_catalog-product.scss */

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0;
}

/* line 894, ../scss/module/_catalog-product.scss */

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #727a85;
}

/* "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 901, ../scss/module/_catalog-product.scss */

.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

@media only screen and (max-width: 479px) {
  /* line 909, ../scss/module/_catalog-product.scss */

  .product-options-bottom .price-box .price-as-configured {
    text-align: right;
  }

  /* line 912, ../scss/module/_catalog-product.scss */

  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block;
  }
}

/* line 918, ../scss/module/_catalog-product.scss */

.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */

/* Block: Related */

/* line 930, ../scss/module/_catalog-product.scss */

.block-related li {
  margin-bottom: 7px;
}

/* line 934, ../scss/module/_catalog-product.scss */

.block-related .block-title {
  border-bottom: none;
}

/* line 937, ../scss/module/_catalog-product.scss */

.block-related .block-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #727a85;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: capitalize;
  margin-bottom: 0;
}

/* line 943, ../scss/module/_catalog-product.scss */

.block-related .block-subtitle {
  margin-bottom: 7px;
}

/* line 947, ../scss/module/_catalog-product.scss */

.block-related .product {
  margin-left: 20px;
  position: relative;
}

/* line 951, ../scss/module/_catalog-product.scss */

.block-related .checkbox {
  float: left;
  margin-top: 36px;
}

/* line 956, ../scss/module/_catalog-product.scss */

.block-related .product-details {
  margin-left: 90px;
}

/* line 960, ../scss/module/_catalog-product.scss */

.block-related .product-name {
  margin-bottom: 3px;
}

/* line 964, ../scss/module/_catalog-product.scss */

.block-related .product-details .price-box {
  margin: 2px 0 3px;
}

/* line 967, ../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 973, ../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 {
  margin-left: 0;
  font-size: 16px;
  padding-right: 5px;
  padding-left: 5px;
}

/* line 980, ../scss/module/_catalog-product.scss */

.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}

/* line 984, ../scss/module/_catalog-product.scss */

.block-related .link-wishlist {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */

/* line 1027, ../scss/module/_catalog-product.scss */

.box-up-sell {
  margin-top: 20px;
}

/* line 1030, ../scss/module/_catalog-product.scss */

.box-up-sell .ratings {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */

/* line 1039, ../scss/module/_catalog-product.scss */

.best-sellers {
  margin-top: 40px;
}

/* line 1042, ../scss/module/_catalog-product.scss */

.best-sellers .limit-width > h2,
.best-sellers .messages > h2 {
  font-size: 32px;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 32px;
  color: #76848f;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-align: center;
}

/* line 1052, ../scss/module/_catalog-product.scss */

.best-sellers .limit-width > h2:before,
.best-sellers .messages > h2:before {
  width: 44px;
  height: 2px;
  background: #85a4d8;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -22px;
  content: '';
}

/* line 1064, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* line 1068, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .item {
  width: 100%;
  margin: 0;
}

/* line 1072, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-item {
  float: left;
  white-space: normal;
}

/* line 1076, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-wrapper-outer {
  float: left;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* line 1083, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 110px;
}

@media only screen and (min-width: 600px) {
  /* line 1083, ../scss/module/_catalog-product.scss */

  .best-sellers .products-grid .owl-controls {
    top: 90px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1083, ../scss/module/_catalog-product.scss */

  .best-sellers .products-grid .owl-controls {
    top: 120px;
  }
}

/* line 1089, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1092, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-nav {
  color: transparent;
}

/* line 1095, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-prev,
.best-sellers .products-grid .owl-controls .owl-next {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 35px;
  height: 48px;
}

/* line 1101, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-prev:after,
.best-sellers .products-grid .owl-controls .owl-prev:before,
.best-sellers .products-grid .owl-controls .owl-next:after,
.best-sellers .products-grid .owl-controls .owl-next:before {
  font-family: "Fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  color: #e8e8e8;
  display: block;
  font-size: 50px;
  position: absolute;
  cursor: pointer;
  width: 15px;
  height: 70px;
}

/* line 1112, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-prev:after,
.best-sellers .products-grid .owl-controls .owl-next:after {
  color: #d6d6d6;
}

/* line 1116, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-prev {
  float: left;
  left: -17px;
}

@media only screen and (min-width: 600px) {
  /* line 1116, ../scss/module/_catalog-product.scss */

  .best-sellers .products-grid .owl-controls .owl-prev {
    left: -30px;
  }
}

/* line 1119, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-prev:after,
.best-sellers .products-grid .owl-controls .owl-prev:before {
  left: -3px;
  content: '\e817';
}

/* line 1124, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-prev:after {
  left: -3px;
}

/* line 1128, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-next {
  float: right;
  right: -13px;
}

@media only screen and (min-width: 600px) {
  /* line 1128, ../scss/module/_catalog-product.scss */

  .best-sellers .products-grid .owl-controls .owl-next {
    right: -10px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1128, ../scss/module/_catalog-product.scss */

  .best-sellers .products-grid .owl-controls .owl-next {
    right: -20px;
  }
}

/* line 1131, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-next:after,
.best-sellers .products-grid .owl-controls .owl-next:before {
  right: 0;
  content: '\e816';
}

/* line 1136, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .owl-controls .owl-next:after {
  right: 0;
}

/* line 1141, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .st-only {
  font-size: 13px;
  color: #8CAEDC;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1148, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .item .price-box {
  height: auto;
  margin: 0;
  min-height: 0;
}

/* line 1154, ../scss/module/_catalog-product.scss */

.best-sellers .products-grid .item .add-to-links li {
  float: left;
  list-style: none;
  margin-left: 0;
  width: calc(100%/2);
}

/* line 1166, ../scss/module/_catalog-product.scss */

.related-product {
  display: inline-block;
  width: 100%;
  text-align: center;
  border-top: 1px solid #ddd;
}

@media only screen and (min-width: 600px) {
  /* line 1166, ../scss/module/_catalog-product.scss */

  .related-product {
    border-top: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1166, ../scss/module/_catalog-product.scss */

  .related-product {
    border-top: none;
  }
}

/* line 1171, ../scss/module/_catalog-product.scss */

.related-product .module-header {
  text-align: left;
  border-bottom: none;
}

@media only screen and (min-width: 600px) {
  /* line 1171, ../scss/module/_catalog-product.scss */

  .related-product .module-header {
    border-bottom: 1px solid #ebebeb;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1171, ../scss/module/_catalog-product.scss */

  .related-product .module-header {
    border-bottom: 1px solid #ebebeb;
  }
}

/* line 1174, ../scss/module/_catalog-product.scss */

.related-product .module-header h3 {
  margin-bottom: 3px;
}

/* line 1178, ../scss/module/_catalog-product.scss */

.related-product .item-name a {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  color: #333;
}

/* line 1183, ../scss/module/_catalog-product.scss */

.related-product .products-grid {
  margin-top: 58px;
}

/* line 1185, ../scss/module/_catalog-product.scss */

.related-product .products-grid .item {
  padding: 0;
  height: auto;
}

/* line 1188, ../scss/module/_catalog-product.scss */

.related-product .products-grid .item .product-image {
  width: 100%;
}

/* line 1191, ../scss/module/_catalog-product.scss */

.related-product .products-grid .item .item-instore-only {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1195, ../scss/module/_catalog-product.scss */

.related-product .products-grid .item .price-box .save {
  display: block;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1201, ../scss/module/_catalog-product.scss */

.related-product .products-grid .owl-item {
  float: left;
}

/* line 1204, ../scss/module/_catalog-product.scss */

.related-product .products-grid .owl-wrapper-outer {
  float: left;
  width: 100%;
  overflow: hidden;
}

/* line 1210, ../scss/module/_catalog-product.scss */

.related-product .products-grid .owl-controls .owl-nav {
  color: transparent;
}

@media only screen and (min-width: 768px) {
  /* line 1214, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev,
  .related-product .products-grid .owl-controls .owl-next {
    position: absolute;
    display: inline-block;
    top: -110px;
    right: 0;
    cursor: pointer;
    color: #d6d6d6;
  }

  /* line 1222, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev:hover:before,
  .related-product .products-grid .owl-controls .owl-next:hover:before {
    color: #8caedc;
  }

  /* line 1226, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev:before,
  .related-product .products-grid .owl-controls .owl-next:before {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 36px;
    top: 0;
    font-family: "FontAwesome";
  }

  /* line 1238, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev {
    right: 80px;
  }

  /* line 1240, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev:before {
    left: 0;
    content: "";
  }

  /* line 1246, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-next {
    right: 10px;
  }

  /* line 1248, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-next:before {
    right: 0;
    content: "";
  }
}

@media only screen and (max-width: 767px) {
  /* line 1255, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev,
  .related-product .products-grid .owl-controls .owl-next {
    cursor: pointer;
    color: #d6d6d6;
    z-index: 999;
  }

  /* line 1260, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev:hover:before,
  .related-product .products-grid .owl-controls .owl-next:hover:before {
    color: #8caedc;
  }

  /* line 1264, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev:before,
  .related-product .products-grid .owl-controls .owl-next:before {
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 40px;
    font-size: 70px;
    top: 30%;
    font-family: "FontAwesome";
  }

  /* line 1276, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-prev:before {
    left: 0;
    content: "";
  }

  /* line 1283, ../scss/module/_catalog-product.scss */

  .related-product .products-grid .owl-controls .owl-next:before {
    right: 0;
    content: "";
  }
}

/* line 1290, ../scss/module/_catalog-product.scss */

.related-product .products-grid .st-only {
  font-size: 13px;
  color: #8CAEDC;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* ============================================ *
 * 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 */

.wrap-message {
  margin: 0 0 20px;
}

/* line 35, ../scss/module/_checkout-cart.scss */

.checkout-cart-index #allajax-cart {
  width: 100%;
  content: '';
  display: table;
  clear: both;
}

/* line 38, ../scss/module/_checkout-cart.scss */

.checkout-cart-index #allajax-cart .cart-left {
  float: none;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* line 38, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index #allajax-cart .cart-left {
    float: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 38, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index #allajax-cart .cart-left {
    float: left;
  }
}

@media only screen and (min-width: 600px) {
  /* line 38, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index #allajax-cart .cart-left {
    width: 100%;
  }
}

@media only screen and (min-width: 980px) {
  /* line 38, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index #allajax-cart .cart-left {
    width: 72.5%;
  }
}

/* line 43, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-empty {
  font-size: 18px;
}

/* line 47, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart input[type="email"],
.checkout-cart-index .cart input[type="search"],
.checkout-cart-index .cart input[type="number"],
.checkout-cart-index .cart input[type="password"],
.checkout-cart-index .cart input[type="tel"],
.checkout-cart-index .cart input[type="text"],
.checkout-cart-index .cart .input-text,
.checkout-cart-index .cart .nice-select,
.checkout-cart-index .cart form textarea,
form .checkout-cart-index .cart textarea,
.checkout-cart-index .cart .nice-select,
.checkout-cart-index .cart textarea {
  width: 100%;
  height: 42px;
  line-height: 40px;
  border: 1px solid #e7e7e7;
}

/* line 62, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart .button-blue {
  height: 37px;
  font-size: 16px;
  min-width: 0;
  width: 120px;
}

/* line 69, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart .page-title {
  display: inline-block;
  width: 100%;
  border-bottom: none;
}

@media only screen and (min-width: 600px) {
  /* line 69, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title {
    border-bottom: 1px solid #ededed;
  }
}

@media only screen and (min-width: 980px) {
  /* line 69, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title {
    border-bottom: 1px solid #ededed;
  }
}

/* line 73, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart .page-title .checkout-types {
  display: inline-block;
  padding-top: 10px;
}

@media only screen and (min-width: 600px) {
  /* line 73, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title .checkout-types {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 73, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title .checkout-types {
    display: none;
  }
}

@media only screen and (min-width: 600px) {
  /* line 73, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title .checkout-types {
    padding-top: 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 73, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title .checkout-types {
    padding-top: 0;
  }
}

/* line 77, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart .page-title h1 {
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  border-bottom: 1px solid #ededed;
}

@media only screen and (min-width: 600px) {
  /* line 77, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title h1 {
    border-bottom: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 77, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart .page-title h1 {
    border-bottom: none;
  }
}

/* line 86, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart .price-box .price,
.checkout-cart-index .cart .price {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
}

/* line 89, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart .price-box .price .last-price,
.checkout-cart-index .cart .price .last-price {
  font-size: 15px;
}

/* line 94, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table {
  width: 100%;
  float: none;
}

/* line 100, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td.image-info {
  width: 100%;
  padding-top: 0;
  border-bottom: 1px solid #ededed;
}

@media only screen and (min-width: 600px) {
  /* line 100, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info {
    width: 92px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 100, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info {
    width: 92px;
  }
}

@media only screen and (min-width: 600px) {
  /* line 100, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 100, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 600px) {
  /* line 100, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info {
    border-bottom: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 100, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info {
    border-bottom: none;
  }
}

/* line 104, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td.image-info a {
  width: 90px;
}

/* line 108, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td.image-info img {
  width: 100%;
}

/* line 111, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td.image-info .info-box {
  border: none;
  vertical-align: top;
  width: 65%;
  margin-bottom: 0;
  padding: 0 15px;
  display: inline-block;
}

@media only screen and (min-width: 600px) {
  /* line 111, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info .info-box {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 111, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td.image-info .info-box {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  /* line 121, ../scss/module/_checkout-cart.scss */

  html.ie9 .checkout-cart-index .cart-table .cart-item-row td:first-child {
    float: left;
  }
}

/* line 128, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
  display: none;
  float: right;
  width: 70%;
  border-bottom: 1px solid #ededed;
}

@media only screen and (min-width: 600px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    display: inline-block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    display: inline-block;
  }
}

@media only screen and (min-width: 600px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    float: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    float: none;
  }
}

@media only screen and (min-width: 600px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    width: auto;
  }
}

@media only screen and (min-width: 980px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    width: auto;
  }
}

@media only screen and (min-width: 600px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    border-bottom: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 128, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(2) {
    border-bottom: none;
  }
}

/* line 134, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td:nth-child(3),
.checkout-cart-index .cart-table .cart-item-row td:nth-child(4) {
  text-align: left;
  float: left;
  width: calc(100%/3);
}

@media only screen and (min-width: 600px) {
  /* line 134, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(3),
  .checkout-cart-index .cart-table .cart-item-row td:nth-child(4) {
    float: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 134, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(3),
  .checkout-cart-index .cart-table .cart-item-row td:nth-child(4) {
    float: none;
  }
}

@media only screen and (min-width: 600px) {
  /* line 134, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(3),
  .checkout-cart-index .cart-table .cart-item-row td:nth-child(4) {
    width: 90px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 134, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(3),
  .checkout-cart-index .cart-table .cart-item-row td:nth-child(4) {
    width: 90px;
  }
}

/* line 138, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td:nth-child(3) span.label,
.checkout-cart-index .cart-table .cart-item-row td:nth-child(4) span.label {
  margin-right: 5px;
  display: inline-block;
}

@media only screen and (min-width: 600px) {
  /* line 138, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(3) span.label,
  .checkout-cart-index .cart-table .cart-item-row td:nth-child(4) span.label {
    display: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 138, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(3) span.label,
  .checkout-cart-index .cart-table .cart-item-row td:nth-child(4) span.label {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  /* line 138, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(3) span.label,
  .checkout-cart-index .cart-table .cart-item-row td:nth-child(4) span.label {
    display: block;
  }
}

/* line 146, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
  float: right;
  padding-bottom: 0;
  width: calc(100%/3);
}

@media only screen and (min-width: 600px) {
  /* line 146, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
    float: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 146, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
    float: none;
  }
}

@media only screen and (min-width: 600px) {
  /* line 146, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 146, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 600px) {
  /* line 146, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
    width: 90px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 146, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
    width: 90px;
  }
}

@media only screen and (max-width: 599px) {
  /* line 146, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table .cart-item-row td:nth-child(5) {
    margin-top: 30px;
  }
}

/* line 157, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table thead th,
.checkout-cart-index .cart-table tbody td {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 158, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table thead th:first-child,
.checkout-cart-index .cart-table tbody td:first-child {
  padding-left: 0;
}

/* line 164, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tr {
  border-bottom: 1px solid #e8e8e8;
}

/* line 169, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table thead tr.no-border {
  border-bottom: none;
}

/* line 171, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table thead tr.no-border th {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}

/* line 177, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table thead th {
  font-size: 16px;
  color: #77848f;
  border-bottom: 1px solid #e8e8e8;
}

/* line 184, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* line 187, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td h2.product-name {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
}

/* line 190, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td h2.product-name a {
  color: #727a85;
  font-weight: normal;
  text-transform: none;
}

/* line 196, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-msg.error {
  display: none;
}

@media only screen and (min-width: 600px) {
  /* line 196, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .item-msg.error {
    display: inline-block;
  }
}

/* line 199, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td input[type="text"] {
  width: auto;
  max-width: 70px;
  height: 38px;
  text-align: center;
  background: transparent;
  color: #727a85;
  border: 1px solid #e6e6e6;
}

/* line 208, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-options {
  margin-left: 0;
  padding-left: 0;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  color: #333333;
}

/* line 214, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-options dl {
  margin-top: 5px;
}

/* line 217, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-options dd {
  margin-left: 0;
  padding-left: 0;
}

/* line 221, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-options dt {
  font-style: normal;
  font-weight: normal;
  padding-left: 0;
}

/* line 227, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .price {
  font-size: 18px;
  color: #727a85;
}

@media only screen and (min-width: 600px) {
  /* line 227, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .price {
    font-size: 24px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 227, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .price {
    font-size: 24px;
  }
}

/* line 230, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .price .last-price {
  font-size: 16px;
}

@media only screen and (min-width: 600px) {
  /* line 230, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .price .last-price {
    font-size: 21px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 230, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .price .last-price {
    font-size: 21px;
  }
}

/* line 234, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-action-links {
  font-size: 13px;
  color: #727a85;
  margin-top: 0;
}

@media only screen and (min-width: 600px) {
  /* line 234, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .item-action-links {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 234, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .item-action-links {
    margin-top: 20px;
  }
}

/* line 238, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-action-links a {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  color: #8caedc;
}

@media only screen and (min-width: 600px) {
  /* line 238, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .item-action-links a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 238, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-table tbody td .item-action-links a {
    font-size: 16px;
  }
}

/* line 242, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-action-links a:first-child {
  margin-right: 5px;
}

/* line 245, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tbody td .item-action-links a:last-child {
  margin-left: 5px;
}

/* line 253, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr {
  border-bottom: none;
}

/* line 255, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr td {
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
}

/* line 260, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr button {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  border: none;
  background-color: transparent;
  padding: 0;
  font-weight: normal;
  color: #8caedc;
  text-transform: none;
  text-align: left;
}

/* line 269, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr button span {
  font-size: 16px;
  padding-top: 0;
  line-height: 20px;
}

/* line 275, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr span {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  padding-top: 3px;
}

/* line 282, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr.last td.last * {
  display: inline-block;
}

/* line 285, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr.last td.last > span {
  font-size: 13px;
  color: #727a85;
}

/* line 289, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-table tfoot tr.last td.last .button {
  display: inline-block;
  padding-bottom: 3px;
  min-width: 0;
}

/* line 299, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right {
  width: 27.12%;
  float: right;
  padding-left: 20px;
}

@media only screen and (max-width: 979px) {
  /* line 299, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-right {
    width: 100%;
    float: none;
    padding: 0;
  }
}

/* line 310, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .payment-card {
  text-align: center;
}

/* line 314, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .divider {
  width: 100%;
  height: 1px;
  background-color: #dddddd;
}

/* line 320, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .box {
  padding: 0 !important;
  background: none;
}

/* line 325, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right button.accordion {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  text-transform: none;
  color: #727a85;
  padding-left: 20px;
  padding-right: 20px;
}

/* line 335, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .deals .discount {
  padding-bottom: 0;
}

/* line 339, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .estimate-shipping {
  overflow: hidden;
}

/* line 341, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .estimate-shipping.show {
  overflow: visible;
}

/* line 345, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms,
.checkout-cart-index .cart-right .cart-totals-wrapper,
.checkout-cart-index .cart-right .crosssell {
  width: 100%;
  float: none;
  padding-left: 0;
}

/* line 349, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .cart-totals,
.checkout-cart-index .cart-right .cart-forms .discount,
.checkout-cart-index .cart-right .cart-forms .giftcard,
.checkout-cart-index .cart-right .cart-forms .shipping,
.checkout-cart-index .cart-right .cart-totals-wrapper .cart-totals,
.checkout-cart-index .cart-right .cart-totals-wrapper .discount,
.checkout-cart-index .cart-right .cart-totals-wrapper .giftcard,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping,
.checkout-cart-index .cart-right .crosssell .cart-totals,
.checkout-cart-index .cart-right .crosssell .discount,
.checkout-cart-index .cart-right .crosssell .giftcard,
.checkout-cart-index .cart-right .crosssell .shipping {
  border: none;
  padding-left: 20px;
  padding-right: 20px;
}

/* line 355, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .title-side-bar,
.checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar,
.checkout-cart-index .cart-right .crosssell .title-side-bar {
  padding: 10px 20px;
  margin: 0;
}

/* line 358, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .title-side-bar span.arrow,
.checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar span.arrow,
.checkout-cart-index .cart-right .crosssell .title-side-bar span.arrow {
  margin-top: 10px;
}

/* line 362, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .title-side-bar.active,
.checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar.active,
.checkout-cart-index .cart-right .crosssell .title-side-bar.active {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 34px;
}

@media only screen and (min-width: 600px) {
  /* line 362, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-right .cart-forms .title-side-bar.active,
  .checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar.active,
  .checkout-cart-index .cart-right .crosssell .title-side-bar.active {
    padding-bottom: 34px;
  }
}

@media only screen and (min-width: 980px) {
  /* line 362, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-right .cart-forms .title-side-bar.active,
  .checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar.active,
  .checkout-cart-index .cart-right .crosssell .title-side-bar.active {
    padding-bottom: 10px;
  }
}

/* line 366, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .title-side-bar.active span.arrow,
.checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar.active span.arrow,
.checkout-cart-index .cart-right .crosssell .title-side-bar.active span.arrow {
  margin-top: 0;
}

@media only screen and (min-width: 600px) {
  /* line 366, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-right .cart-forms .title-side-bar.active span.arrow,
  .checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar.active span.arrow,
  .checkout-cart-index .cart-right .crosssell .title-side-bar.active span.arrow {
    margin-top: 0;
  }
}

@media only screen and (min-width: 980px) {
  /* line 366, ../scss/module/_checkout-cart.scss */

  .checkout-cart-index .cart-right .cart-forms .title-side-bar.active span.arrow,
  .checkout-cart-index .cart-right .cart-totals-wrapper .title-side-bar.active span.arrow,
  .checkout-cart-index .cart-right .crosssell .title-side-bar.active span.arrow {
    margin-top: 5px;
  }
}

/* line 372, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms button,
.checkout-cart-index .cart-right .cart-totals-wrapper button,
.checkout-cart-index .cart-right .crosssell button {
  margin-top: 15px;
}

/* line 376, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .giftcard,
.checkout-cart-index .cart-right .cart-totals-wrapper .giftcard,
.checkout-cart-index .cart-right .crosssell .giftcard {
  margin-bottom: 0;
}

/* line 379, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .giftcard .check-gc-status,
.checkout-cart-index .cart-right .cart-totals-wrapper .giftcard .check-gc-status,
.checkout-cart-index .cart-right .crosssell .giftcard .check-gc-status {
  background: transparent;
}

/* line 381, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .giftcard .check-gc-status span,
.checkout-cart-index .cart-right .cart-totals-wrapper .giftcard .check-gc-status span,
.checkout-cart-index .cart-right .crosssell .giftcard .check-gc-status span {
  text-decoration: none;
}

/* line 384, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .giftcard .check-gc-status span span:hover,
.checkout-cart-index .cart-right .cart-totals-wrapper .giftcard .check-gc-status span span:hover,
.checkout-cart-index .cart-right .crosssell .giftcard .check-gc-status span span:hover {
  text-decoration: underline;
}

/* line 393, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping form .form-list li,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping form .form-list li,
.checkout-cart-index .cart-right .crosssell .shipping form .form-list li {
  width: 100%;
}

/* line 397, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping form .form-list li:last-child,
.checkout-cart-index .cart-right .cart-forms .shipping dd,
.checkout-cart-index .cart-right .cart-forms .shipping dl,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping form .form-list li:last-child,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping dd,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping dl,
.checkout-cart-index .cart-right .crosssell .shipping form .form-list li:last-child,
.checkout-cart-index .cart-right .crosssell .shipping dd,
.checkout-cart-index .cart-right .crosssell .shipping dl {
  margin-bottom: 0;
}

/* line 402, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods {
  padding-top: 20px;
}

/* line 404, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods .nice-select,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods .nice-select,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods .nice-select {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
}

/* line 410, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods .nice-select .current,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods .nice-select .current,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods .nice-select .current {
  width: 90%;
  padding-left: 10px;
}

/* line 416, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods > dt,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods > dt,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods > dt {
  padding-bottom: 10px;
}

/* line 419, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods dd,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods dd,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods dd {
  display: block;
  width: 100%;
}

/* line 423, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods dd label,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods dd label,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods dd label {
  border: none;
  background-color: transparent;
  font-style: normal;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* line 430, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods dd label.custom-control,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods dd label.custom-control,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods dd label.custom-control {
  padding-top: 2px;
  font-style: normal;
}

/* line 436, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .sp-methods .price,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .sp-methods .price,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .sp-methods .price {
  font-size: 14px;
}

/* line 440, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms .shipping #allajax-cart-shipping-methods .button-blue,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping #allajax-cart-shipping-methods .button-blue,
.checkout-cart-index .cart-right .crosssell .shipping #allajax-cart-shipping-methods .button-blue {
  width: auto;
}

/* line 448, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms #discount-coupon-form label,
.checkout-cart-index .cart-right .cart-forms .giftcard label,
.checkout-cart-index .cart-right .cart-forms .shipping label,
.checkout-cart-index .cart-right .cart-totals-wrapper #discount-coupon-form label,
.checkout-cart-index .cart-right .cart-totals-wrapper .giftcard label,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping label,
.checkout-cart-index .cart-right .crosssell #discount-coupon-form label,
.checkout-cart-index .cart-right .crosssell .giftcard label,
.checkout-cart-index .cart-right .crosssell .shipping label {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #333333;
  margin-bottom: 7px;
  text-transform: capitalize;
}

/* line 456, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-forms #discount-coupon-form .control-select-box,
.checkout-cart-index .cart-right .cart-forms .giftcard .control-select-box,
.checkout-cart-index .cart-right .cart-forms .shipping .control-select-box,
.checkout-cart-index .cart-right .cart-totals-wrapper #discount-coupon-form .control-select-box,
.checkout-cart-index .cart-right .cart-totals-wrapper .giftcard .control-select-box,
.checkout-cart-index .cart-right .cart-totals-wrapper .shipping .control-select-box,
.checkout-cart-index .cart-right .crosssell #discount-coupon-form .control-select-box,
.checkout-cart-index .cart-right .crosssell .giftcard .control-select-box,
.checkout-cart-index .cart-right .crosssell .shipping .control-select-box {
  width: 100%;
}

/* line 463, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper #allajax-cart-totals {
  background: #f1f2f4;
}

/* line 465, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper #allajax-cart-totals .totals-wrapper {
  padding-right: 20px;
  padding-left: 20px;
}

/* line 471, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table {
  width: 100%;
}

/* line 473, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table tr td:last-child {
  width: 106px;
}

/* line 477, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table tbody td {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #727a85;
}

/* line 483, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table tbody tr:first-child td {
  font-size: 18px;
}

/* line 487, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table tbody tr:not(:first-child) td {
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 15px;
}

/* line 492, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table tbody th.gift-title {
  padding-bottom: 5px;
  color: #727a85;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 500, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table.grand-total-wrapper td {
  font-size: 18px;
  line-height: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* line 505, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper table.grand-total-wrapper td strong {
  font-weight: normal;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 514, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper .btn-remove {
  border-radius: 10px;
  background-color: #727a85;
  text-align: center;
  vertical-align: top;
  border: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  position: relative;
}

/* line 525, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper .btn-remove:hover {
  text-decoration: none;
}

/* line 528, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper .btn-remove:after {
  position: absolute;
  content: '\e82e';
  color: #FFF;
  height: 22px;
  width: 16px;
  font-size: 15px;
  font-family: "Fontello";
  left: 0;
  top: 0;
  margin-left: 1px;
}

/* line 541, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .cart-totals-wrapper .reward-point .price {
  font-weight: bold;
}

/* line 547, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .r-block {
  margin-top: 70px;
}

/* line 550, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .r-block-content {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  color: #999999;
}

/* line 557, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .r-block-content .icons {
  margin-top: 7px;
}

/* line 560, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .r-block-content .icons a {
  width: 50px;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

/* line 565, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .r-block-content .icons a img {
  max-width: 100%;
}

/* line 571, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .payment-card {
  clear: both;
  width: 100%;
  padding-top: 12px;
}

/* line 575, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .payment-card h4 {
  font-size: 10px;
  margin-bottom: 5px;
  letter-spacing: 0.4px;
}

/* line 580, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .payment-card img {
  border: 1px solid #e8e8e8;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  width: 50px;
  height: 32px;
}

/* line 588, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .nice-select {
  width: 100%;
}

/* line 591, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .cart-right .nice-select .list .option {
  margin: 0;
}

/* line 597, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .checkout-types {
  width: 100%;
}

/* line 599, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .checkout-types .btn-proceed-checkout {
  width: 100%;
  background-color: #d93e70;
  font-size: 18px;
  font-family: "Proxima-Nova-Semibold", "Helvetica Neue", Verdana, Arial, sans-serif;
  border-radius: 3px;
  height: 47px;
}

/* line 606, ../scss/module/_checkout-cart.scss */

.checkout-cart-index .checkout-types .btn-proceed-checkout:hover {
  background-color: #fa437e;
}

/* line 615, ../scss/module/_checkout-cart.scss */

.cart-table {
  float: left;
  width: 60%;
}

/* line 620, ../scss/module/_checkout-cart.scss */

.cart .button {
  white-space: normal;
}

/* line 624, ../scss/module/_checkout-cart.scss */

.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px;
}

/* line 633, ../scss/module/_checkout-cart.scss */

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: #f1f2f4;
  border: 1px solid #CCCCCC;
}

/* line 642, ../scss/module/_checkout-cart.scss */

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  /*margin-bottom: $box-spacing-large;*/
  padding-bottom: 30px;
}

/* line 652, ../scss/module/_checkout-cart.scss */

.checkout-cart-index #postcode {
  width: 100%;
}

/* line 658, ../scss/module/_checkout-cart.scss */

.display-both-prices .cart-table {
  float: none;
  width: 100%;
}

/* line 663, ../scss/module/_checkout-cart.scss */

.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}

/* line 669, ../scss/module/_checkout-cart.scss */

.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}

/* line 674, ../scss/module/_checkout-cart.scss */

.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}

/* line 680, ../scss/module/_checkout-cart.scss */

.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 979px) {
  /* line 658, ../scss/module/_checkout-cart.scss */

  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }

  /* line 663, ../scss/module/_checkout-cart.scss */

  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0;
  }

  /* line 669, ../scss/module/_checkout-cart.scss */

  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px;
  }

  /* line 674, ../scss/module/_checkout-cart.scss */

  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%;
  }

  /* line 680, ../scss/module/_checkout-cart.scss */

  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}

@media only screen and (max-width: 599px) {
  /* line 697, ../scss/module/_checkout-cart.scss */

  .product-cart-sku {
    display: none;
  }

  /* line 703, ../scss/module/_checkout-cart.scss */

  .display-both-prices .cart-forms,
  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}

/* line 716, ../scss/module/_checkout-cart.scss */

.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */

/* line 724, ../scss/module/_checkout-cart.scss */

.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}

/* line 728, ../scss/module/_checkout-cart.scss */

.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}

/* line 731, ../scss/module/_checkout-cart.scss */

.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

/* line 739, ../scss/module/_checkout-cart.scss */

.checkout-types {
  margin-top: 15px;
  max-width: 100%;
  display: table;
  /* We always want this shipping method to display on its own line */
}

/* line 744, ../scss/module/_checkout-cart.scss */

.checkout-types li {
  vertical-align: top;
  margin: 0 0 5px 5px;
}

/* line 745, ../scss/module/_checkout-cart.scss */

.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 751, ../scss/module/_checkout-cart.scss */

.checkout-types li img {
  display: inline;
  vertical-align: top;
}

/* line 756, ../scss/module/_checkout-cart.scss */

.checkout-types li:first-child {
  margin-left: 0;
}

/* line 760, ../scss/module/_checkout-cart.scss */

.checkout-types .method-checkout-cart-methods-multishipping {
  display: block;
}

/* line 765, ../scss/module/_checkout-cart.scss */

.checkout-types.top li {
  display: inline-block;
}

/* line 769, ../scss/module/_checkout-cart.scss */

.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}

/* line 773, ../scss/module/_checkout-cart.scss */

.checkout-types.top .bml_button img {
  display: block;
}

/* line 778, ../scss/module/_checkout-cart.scss */

.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}

/* line 786, ../scss/module/_checkout-cart.scss */

.checkout-types.bottom .paypal-logo a,
.checkout-types.minicart .paypal-logo a {
  display: block;
}

/* line 790, ../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 800, ../scss/module/_checkout-cart.scss */

  .checkout-types.bottom .paypal-or {
    text-align: right;
    padding-right: 70px;
  }
}

/* line 807, ../scss/module/_checkout-cart.scss */

.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

@media only screen and (max-width: 740px) {
  /* line 812, ../scss/module/_checkout-cart.scss */

  .checkout-types {
    float: none;
    text-align: center;
  }

  /* line 818, ../scss/module/_checkout-cart.scss */

  .checkout-types.bottom .paypal-or,
  .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }

  /* line 825, ../scss/module/_checkout-cart.scss */

  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 599px) {
  /* line 833, ../scss/module/_checkout-cart.scss */

  .btn-checkout {
    width: 100%;
  }
}

/* line 838, ../scss/module/_checkout-cart.scss */

.cart-table {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 841, ../scss/module/_checkout-cart.scss */

.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}

/* line 849, ../scss/module/_checkout-cart.scss */

.cart-table h2 {
  color: #727a85;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

/* line 856, ../scss/module/_checkout-cart.scss */

.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 863, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}

/* line 868, ../scss/module/_checkout-cart.scss */

.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}

/* line 873, ../scss/module/_checkout-cart.scss */

.cart-table tfoot tr {
  background: none;
}

/* line 877, ../scss/module/_checkout-cart.scss */

.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}

/* line 882, ../scss/module/_checkout-cart.scss */

.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 889, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}

/* line 895, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}

/* line 899, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}

/* line 904, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-image a.cart-edit {
  display: none;
}

/* line 909, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-sku {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}

/* line 915, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-sku .label {
  font-weight: 600;
}

/* line 920, ../scss/module/_checkout-cart.scss */

.cart-table .btn-empty {
  float: left;
}

/* line 924, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}

/* line 929, ../scss/module/_checkout-cart.scss */

.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}

/* line 933, ../scss/module/_checkout-cart.scss */

.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #8caedc;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}

/* line 941, ../scss/module/_checkout-cart.scss */

.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #8caedc;
  border-bottom: none;
  right: -15px;
  top: 6px;
}

/* line 949, ../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 956, ../scss/module/_checkout-cart.scss */

.cart-table .cart-links > li > a {
  display: block;
}

/* line 960, ../scss/module/_checkout-cart.scss */

.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}

/* line 965, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}

/* line 969, ../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 978, ../scss/module/_checkout-cart.scss */

.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}

/* line 983, ../scss/module/_checkout-cart.scss */

.cart-table .item-options {
  padding-left: 15px;
}

@media only screen and (max-width: 770px) {
  /* line 991, ../scss/module/_checkout-cart.scss */

  .cart-table th {
    font-size: 12px;
  }

  /* line 995, ../scss/module/_checkout-cart.scss */

  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }

  /* line 1000, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }
}

@media only screen and (max-width: 699px) {
  /* line 1009, ../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 1020, ../scss/module/_checkout-cart.scss */

  .cart-table colgroup,
  .cart-table thead {
    display: none;
  }

  /* line 1024, ../scss/module/_checkout-cart.scss */

  .cart-table tr {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }

  /* line 1031, ../scss/module/_checkout-cart.scss */

  .cart-table tr:after {
    content: '';
    display: table;
    clear: both;
  }

  /* line 1035, ../scss/module/_checkout-cart.scss */

  .cart-table tr:last-child {
    margin-bottom: 0;
  }

  /* line 1040, ../scss/module/_checkout-cart.scss */

  .cart-table tfoot tr {
    padding-bottom: 0;
  }

  /* line 1044, ../scss/module/_checkout-cart.scss */

  .cart-table td {
    border: none;
    display: block;
  }

  /* line 1048, ../scss/module/_checkout-cart.scss */

  .cart-table td[data-rwd-label] {
    padding-left: 15px;
    margin-bottom: 6px;
  }

  /* line 1052, ../scss/module/_checkout-cart.scss */

  .cart-table td[data-rwd-label] .price {
    font-weight: normal;
  }

  /* line 1056, ../scss/module/_checkout-cart.scss */

  .cart-table td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }

  /* line 1065, ../scss/module/_checkout-cart.scss */

  .cart-table td.product-cart-price {
    text-align: left;
  }

  /* line 1070, ../scss/module/_checkout-cart.scss */

  .cart-table h2 {
    font-size: 12px;
  }

  /* line 1074, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px;
  }

  /* line 1078, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }

  /* line 1082, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }

  /* line 1088, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 13px;
  }

  /* line 1093, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-tax-info .price {
    font-size: 13px;
  }

  /* line 1098, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-image {
    width: 25%;
    float: left;
    padding-bottom: 0;
  }

  /* line 1103, ../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 1111, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    float: right;
    width: 75%;
  }

  /* line 1117, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
    float: right;
  }

  /* line 1124, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-remove,
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions .cart-links {
    display: none;
  }

  /* line 1130, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-image .cart-links,
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }

  /* line 1136, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-actions .button {
    display: none;
  }

  /* line 1142, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }

  /* line 1147, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }

  /* line 1152, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-actions {
    text-align: left;
  }

  /* line 1155, ../scss/module/_checkout-cart.scss */

  .cart-table .product-cart-actions .qty {
    margin-right: 7px;
    margin-bottom: 7px;
  }

  /* line 1161, ../scss/module/_checkout-cart.scss */

  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 15px;
    font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  }

  /* line 1168, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }

  /* line 1172, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }

  /* line 1176, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }

  /* line 1180, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }

  /* line 1192, ../scss/module/_checkout-cart.scss */

  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */

/* line 1207, ../scss/module/_checkout-cart.scss */

.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}

/* line 1213, ../scss/module/_checkout-cart.scss */

.shipping select {
  max-width: 100%;
  height: 30px;
  border: 1px solid #C0C0C0;
}

/* line 1220, ../scss/module/_checkout-cart.scss */

.shipping select.validation-failed {
  border-color: #d93e70;
}

/* line 1224, ../scss/module/_checkout-cart.scss */

.shipping .shipping-desc {
  display: none;
}

/* line 1228, ../scss/module/_checkout-cart.scss */

.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}

/* line 1235, ../scss/module/_checkout-cart.scss */

.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1238, ../scss/module/_checkout-cart.scss */

.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}

/* line 1243, ../scss/module/_checkout-cart.scss */

.shipping .form-list .shipping-country {
  width: 37%;
}

/* line 1247, ../scss/module/_checkout-cart.scss */

.shipping .form-list .shipping-region {
  width: 41%;
}

/* line 1251, ../scss/module/_checkout-cart.scss */

.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}

/* line 1255, ../scss/module/_checkout-cart.scss */

.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}

/* line 1260, ../scss/module/_checkout-cart.scss */

.shipping .form-list .input-box {
  padding-top: 0;
}

/* line 1264, ../scss/module/_checkout-cart.scss */

.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}

/* line 1269, ../scss/module/_checkout-cart.scss */

.shipping .form-list label {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

/* line 1278, ../scss/module/_checkout-cart.scss */

.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}

/* line 1282, ../scss/module/_checkout-cart.scss */

.shipping .sp-methods dd {
  margin-bottom: 10px;
}

/* line 1286, ../scss/module/_checkout-cart.scss */

.shipping .sp-methods label {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}

/* line 1292, ../scss/module/_checkout-cart.scss */

.shipping .sp-methods label span {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}

/* line 1300, ../scss/module/_checkout-cart.scss */

.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}

/* line 1304, ../scss/module/_checkout-cart.scss */

.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #CCCCCC;
  background-color: #ededed;
  min-width: 220px;
}

/* line 1309, ../scss/module/_checkout-cart.scss */

.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

@media only screen and (max-width: 770px) {
  /* line 1317, ../scss/module/_checkout-cart.scss */

  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }

  /* line 1321, ../scss/module/_checkout-cart.scss */

  .shipping .shipping-form .form-list > li label {
    display: block;
  }

  /* line 1325, ../scss/module/_checkout-cart.scss */

  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}

/* line 1336, ../scss/module/_checkout-cart.scss */

.cart .cart-totals {
  text-align: right;
}

/* line 1339, ../scss/module/_checkout-cart.scss */

.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1343, ../scss/module/_checkout-cart.scss */

.cart .cart-totals table {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}

/* line 1350, ../scss/module/_checkout-cart.scss */

.cart .cart-totals table td {
  padding: 2px 0px;
}

/* line 1353, ../scss/module/_checkout-cart.scss */

.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}

/* line 1358, ../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 1363, ../scss/module/_checkout-cart.scss */

.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}

/* line 1366, ../scss/module/_checkout-cart.scss */

.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}

/* line 1372, ../scss/module/_checkout-cart.scss */

.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1378, ../scss/module/_checkout-cart.scss */

.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  /* line 1387, ../scss/module/_checkout-cart.scss */

  .cart-totals {
    text-align: right;
  }
}

@media only screen and (max-width: 770px) {
  /* line 1394, ../scss/module/_checkout-cart.scss */

  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }
}

/* line 1403, ../scss/module/_checkout-cart.scss */

.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1408, ../scss/module/_checkout-cart.scss */

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}

/* line 1412, ../scss/module/_checkout-cart.scss */

#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}

/* line 1416, ../scss/module/_checkout-cart.scss */

#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Proxima-Nova-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}

/* line 1427, ../scss/module/_checkout-cart.scss */

#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}

/* line 1431, ../scss/module/_checkout-cart.scss */

#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}

/* line 1435, ../scss/module/_checkout-cart.scss */

#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: block;
  vertical-align: bottom;
  padding: 0;
}

@media only screen and (min-width: 600px) {
  /* line 1435, ../scss/module/_checkout-cart.scss */

  #discount-coupon-form .button-wrapper,
  .cart .giftcard .button-wrapper {
    display: block;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1435, ../scss/module/_checkout-cart.scss */

  #discount-coupon-form .button-wrapper,
  .cart .giftcard .button-wrapper {
    display: inline-block;
  }
}

/* line 1440, ../scss/module/_checkout-cart.scss */

#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  width: auto;
  float: none;
}

@media only screen and (min-width: 600px) {
  /* line 1440, ../scss/module/_checkout-cart.scss */

  #discount-coupon-form .button-wrapper > button,
  .cart .giftcard .button-wrapper > button {
    float: none;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1440, ../scss/module/_checkout-cart.scss */

  #discount-coupon-form .button-wrapper > button,
  .cart .giftcard .button-wrapper > button {
    float: left;
  }
}

/* line 1446, ../scss/module/_checkout-cart.scss */

#discount-coupon-form .input-text,
#discount-coupon-form .nice-select,
#discount-coupon-form form textarea,
form #discount-coupon-form textarea,
.cart .giftcard .input-text,
.cart .giftcard .nice-select,
.cart .giftcard form textarea,
form .cart .giftcard textarea {
  border-radius: 0;
  height: 30px;
  margin: 4px 10px 0 0;
  width: 190px;
}

/* line 1454, ../scss/module/_checkout-cart.scss */

.cart .giftcard p {
  margin-bottom: 7px;
}

/* line 1458, ../scss/module/_checkout-cart.scss */

.cart .giftcard .check-gc-status {
  float: none;
  padding: 0;
}

@media only screen and (min-width: 600px) {
  /* line 1458, ../scss/module/_checkout-cart.scss */

  .cart .giftcard .check-gc-status {
    float: left;
  }
}

@media only screen and (min-width: 980px) {
  /* line 1458, ../scss/module/_checkout-cart.scss */

  .cart .giftcard .check-gc-status {
    float: left;
  }
}

/* line 1462, ../scss/module/_checkout-cart.scss */

.cart .giftcard .check-gc-status > span > span {
  font-size: 14px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */

/* line 1473, ../scss/module/_checkout-cart.scss */

.crosssell h2 {
  color: #8caedc;
}

/* line 1477, ../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 1485, ../scss/module/_checkout-cart.scss */

  .crosssell {
    /* Undo three-column config */
  }

  /* line 1486, ../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 1493, ../scss/module/_checkout-cart.scss */

  .crosssell .products-grid > li:nth-child(odd) {
    clear: left;
  }

  /* line 1497, ../scss/module/_checkout-cart.scss */

  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0;
  }

  /* line 1502, ../scss/module/_checkout-cart.scss */

  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
}

@media only screen and (max-width: 599px) {
  /* line 1511, ../scss/module/_checkout-cart.scss */

  .cart-table .cart-tax-total:after {
    right: -9px;
  }

  /* line 1515, ../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 1526, ../scss/module/_checkout-cart.scss */

  .crosssell ul .item {
    padding: 0 0px 40px;
  }

  /* line 1530, ../scss/module/_checkout-cart.scss */

  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}

/* ============================================ *
 * 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,
.shipment-methods dt ul:after,
.shipment-methods .location-state:after,
.shipment-methods .location-city: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: #76848f;
  text-decoration: none;
  box-sizing: content-box;
}

/* line 51, ../scss/module/_configurableswatches.scss */

.swatch-link {
  border: 1px solid #CCCCCC;
  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);
}

/* 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: #8caedc;
}

/* line 166, ../scss/module/_configurableswatches.scss */

#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  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: 770px) {
  /* 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: #CCCCCC;
  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: #8caedc;
}

/* line 231, ../scss/module/_configurableswatches.scss */