@charset "UTF-8";
@font-face {
  font-family: 'Helvetica Neue';
  src: url("../fonts/helvetica/HelveticaNeue-Medium.woff2") format("woff2"), url("../fonts/helvetica/HelveticaNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Helvetica Neue Light';
  src: url("../fonts/helvetica/HelveticaNeue-Light.woff2") format("woff2"), url("../fonts/helvetica/HelveticaNeue-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
/*
// ----------------------------------------------
// 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; }
}

// ----------------------------------------------
*/
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-square-spin,
.la-square-spin > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-square-spin {
  display: block;
  font-size: 0;
  color: #000000;
}

.la-square-spin.la-dark {
  color: #000000;
}

.la-square-spin > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-square-spin {
  width: 50px;
  height: 50px;
}

.la-square-spin > div {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -moz-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  -o-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

.la-square-spin.la-sm {
  width: 16px;
  height: 16px;
}

.la-square-spin.la-2x {
  width: 64px;
  height: 64px;
}

.la-square-spin.la-3x {
  width: 96px;
  height: 96px;
}

/*
 * Animation
 */
@-webkit-keyframes square-spin {
  0% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(360deg);
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
@-moz-keyframes square-spin {
  0% {
    -moz-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  25% {
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -moz-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -moz-transform: perspective(100px) rotateX(0) rotateY(360deg);
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
@-o-keyframes square-spin {
  0% {
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  25% {
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
@keyframes square-spin {
  0% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    -moz-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    -moz-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    -moz-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(360deg);
    -moz-transform: perspective(100px) rotateX(0) rotateY(360deg);
    transform: perspective(100px) rotateX(0) rotateY(360deg);
  }
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fussion,
.la-ball-fussion > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-fussion {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fussion.la-dark {
  color: #333;
}

.la-ball-fussion > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fussion {
  width: 8px;
  height: 8px;
}

.la-ball-fussion > div {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: ball-fussion-ball1 1s 0s ease infinite;
  -moz-animation: ball-fussion-ball1 1s 0s ease infinite;
  -o-animation: ball-fussion-ball1 1s 0s ease infinite;
  animation: ball-fussion-ball1 1s 0s ease infinite;
}

.la-ball-fussion > div:nth-child(1) {
  top: 0;
  left: 50%;
  z-index: 1;
}

.la-ball-fussion > div:nth-child(2) {
  top: 50%;
  left: 100%;
  z-index: 2;
  -webkit-animation-name: ball-fussion-ball2;
  -moz-animation-name: ball-fussion-ball2;
  -o-animation-name: ball-fussion-ball2;
  animation-name: ball-fussion-ball2;
}

.la-ball-fussion > div:nth-child(3) {
  top: 100%;
  left: 50%;
  z-index: 1;
  -webkit-animation-name: ball-fussion-ball3;
  -moz-animation-name: ball-fussion-ball3;
  -o-animation-name: ball-fussion-ball3;
  animation-name: ball-fussion-ball3;
}

.la-ball-fussion > div:nth-child(4) {
  top: 50%;
  left: 0;
  z-index: 2;
  -webkit-animation-name: ball-fussion-ball4;
  -moz-animation-name: ball-fussion-ball4;
  -o-animation-name: ball-fussion-ball4;
  animation-name: ball-fussion-ball4;
}

.la-ball-fussion.la-sm {
  width: 4px;
  height: 4px;
}

.la-ball-fussion.la-sm > div {
  width: 6px;
  height: 6px;
}

.la-ball-fussion.la-2x {
  width: 16px;
  height: 16px;
}

.la-ball-fussion.la-2x > div {
  width: 24px;
  height: 24px;
}

.la-ball-fussion.la-3x {
  width: 24px;
  height: 24px;
}

.la-ball-fussion.la-3x > div {
  width: 36px;
  height: 36px;
}

/*
 * Animations
 */
@-webkit-keyframes ball-fussion-ball1 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 100%;
    z-index: 2;
    opacity: .35;
  }
}
@-moz-keyframes ball-fussion-ball1 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 100%;
    z-index: 2;
    opacity: .35;
  }
}
@-o-keyframes ball-fussion-ball1 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 100%;
    z-index: 2;
    opacity: .35;
  }
}
@keyframes ball-fussion-ball1 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 100%;
    z-index: 2;
    opacity: .35;
  }
}
@-webkit-keyframes ball-fussion-ball2 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 100%;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
@-moz-keyframes ball-fussion-ball2 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 100%;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
@-o-keyframes ball-fussion-ball2 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 100%;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
@keyframes ball-fussion-ball2 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: 200%;
    opacity: 1;
  }
  100% {
    top: 100%;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
@-webkit-keyframes ball-fussion-ball3 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 0;
    z-index: 2;
    opacity: .35;
  }
}
@-moz-keyframes ball-fussion-ball3 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 0;
    z-index: 2;
    opacity: .35;
  }
}
@-o-keyframes ball-fussion-ball3 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 0;
    z-index: 2;
    opacity: .35;
  }
}
@keyframes ball-fussion-ball3 {
  0% {
    opacity: .35;
  }
  50% {
    top: 200%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 50%;
    left: 0;
    z-index: 2;
    opacity: .35;
  }
}
@-webkit-keyframes ball-fussion-ball4 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
@-moz-keyframes ball-fussion-ball4 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
@-o-keyframes ball-fussion-ball4 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
@keyframes ball-fussion-ball4 {
  0% {
    opacity: .35;
  }
  50% {
    top: -100%;
    left: -100%;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 50%;
    z-index: 1;
    opacity: .35;
  }
}
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[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.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:focus,
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
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
 */
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.
 */
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.
 */
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.
 */
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.
 */
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).
 */
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.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
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.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============================================ *
 * Reset
 * ============================================ */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  -webkit-tap-highlight-color: transparent;
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */
}

body {
  background: #FFFFFF;
  color: #000000;
  line-height: 1;
}

html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left;
}

address {
  font-style: normal;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ol,
ul {
  list-style: none;
}

q:before,
q:after {
  content: '';
}

input:focus,
input[type="search"]:focus {
  outline-offset: -2px;
}

input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box;
}

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  font-weight: normal;
  color: #000000;
}

a:hover, map area:hover,
a:visited, map area:visited,
a:active, map area:active {
  outline: none;
}

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

.no-parent-padding {
  margin: 0 -15px;
}

.clear {
  clear: both;
}

.f-fix {
  position: relative;
}

.zopim {
  right: 0 !important;
  max-width: 160px;
}

.zopim + .zopim {
  max-width: 360px;
}

body > .zopim:first-child {
  display: none;
  box-shadow: -3px -3px 6.92px 1.08px rgba(0, 0, 0, 0.063);
}
body > .zopim:first-child.enabled {
  display: block;
}

#mobile-chat {
  display: none;
}

.zopim + .zopim {
  display: none !important;
}

body > .zopim:first-child {
  z-index: -1 !important;
}

#mobile-chat {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  min-width: 160px;
  height: 30px;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: 0.5px 1.33px 5.82px 0.18px rgba(0, 0, 0, 0.35);
}
#mobile-chat label {
  display: inline-block;
  float: left;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  width: calc(100% - 36px);
  line-height: 33px;
  padding: 0 10px;
}
#mobile-chat i {
  float: right;
  background: #000000;
  color: #FFFFFF;
  text-align: center;
  display: inline-block;
  width: 36px;
  height: 30px;
  line-height: 33px;
  font-size: 22px;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #000000;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #000000;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #000000;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

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

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

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em;
}

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

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #11B400;
}

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

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

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 30px;
  color: #000000;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-size: 24px;
}

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px;
}

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

.block-title {
  position: relative;
  padding: 0;
  margin-bottom: 0;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #939393;
}

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

.block-subtitle {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 7px;
}

.block-content {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.block .actions {
  margin: 0;
}
.block .actions:after {
  content: '';
  display: table;
  clear: both;
}
.block .actions a {
  float: left;
}
.block .actions .button {
  float: right;
}

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

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #000000;
}
.block-account li a,
.block-cms-menu li a {
  color: #000000;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #000000;
}
.block-account li.current a,
.block-cms-menu li.current a {
  color: #000000;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #DDDDDD;
  color: #000000;
  padding: 7px 15px;
}
.cart .buttons-set .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer;
}
.cart .buttons-set .button:active,
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #c4c4c4;
  color: #000000;
}
.cart .buttons-set .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #000000;
  background: #c4c4c4;
  outline: none;
}

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

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #000000;
  display: inline-block;
  padding: 0 50px;
  border: 1px solid #000000;
  height: 40px;
  width: auto;
  vertical-align: middle;
  white-space: nowrap;
  font: normal 12px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.1em;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.button:hover, .button:active, .button:focus,
.cart-table .product-cart-actions .button:hover,
.cart-table .product-cart-actions .button:active,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:hover,
#co-shipping-method-form .buttons-set .button:active,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:hover,
.footer .button:active,
.footer .button:focus {
  background: #FFFFFF;
  cursor: pointer;
  outline: none;
  color: #000000;
}
.button.button-small,
.cart-table .product-cart-actions .button.button-small,
#co-shipping-method-form .buttons-set .button.button-small,
.footer .button.button-small {
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
}
.button.button-small:hover,
.cart-table .product-cart-actions .button.button-small:hover,
#co-shipping-method-form .buttons-set .button.button-small:hover,
.footer .button.button-small:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-cart-checkout {
  display: none;
}

a.button {
  text-decoration: none;
}

/* Disabled - class for anchor, state for form elements */
.button.disabled,
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Adjacent buttons */
.button + .button {
  margin-left: 5px;
}

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

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #000000;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #246b8f;
}

/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left;
}

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

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

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

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

.paypal-button img {
  display: inline;
}

/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 0;
  text-align: right;
}
.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right;
}
.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px;
}
.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}
.buttons-set button.button {
  float: right;
  min-width: 140px;
}
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

.back-to-shop {
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.308;
  text-align: left;
  text-transform: uppercase;
}

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite {
  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) {
  .icon-sprite {
    background-image: url(../images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
@-webkit-keyframes icon-spinner {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes icon-spinner {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes icon-spinner {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes icon-spinner {
  0% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.spinner {
  display: inline-table;
  text-decoration: none;
  font-size: 20px;
  margin: 0 5px;
  -webkit-animation: icon-spinner 2s infinite linear;
  -moz-animation: icon-spinner 2s infinite linear;
  -o-animation: icon-spinner 2s infinite linear;
  animation: icon-spinner 2s infinite linear;
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: 10px 0;
  text-align: center;
  display: none;
}

.catalog-category-view .breadcrumbs,
.catalogsearch-result-index .breadcrumbs {
  display: block;
}

.breadcrumbs li, .breadcrumbs li a {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 15px;
  text-align: left;
  text-transform: none;
  display: inline-block;
}

.breadcrumbs li a:hover {
  color: #000000;
}

.breadcrumbs strong {
  font-weight: normal;
}

.breadcrumbs span {
  padding: 0 7px;
}

/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  /* Hide text */
  position: relative;
  cursor: pointer;
}

.btn-remove, .btn-remove2 {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.btn-remove:after, .btn-remove2:after {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  color: #000000;
  height: 20px;
  width: 100%;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
.btn-remove:hover:after, .btn-remove2:hover:after {
  text-decoration: none;
  color: #9E9E9E;
}

.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 #000000;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}
.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;
}

.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
 */
.checkout-agreements li {
  margin-bottom: 20px;
}

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

/* -------------------------------------------- *
 * Container
 */
.main-container,
.footer-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

.main-container {
  min-height: calc(100vh  - 249px);
  padding-top: 50px;
  min-height: calc(100vh - 283px);
}

.opc-index-index .main-container.col1-layout,
.checkout-onepage-index .main-container.col1-layout,
.paypal-express-review .main-container.col1-layout {
  padding: 0 160px;
  padding: 0 15px;
}

.cms-home .main-container,
.cms-home-modular .main-container,
.cms-no-route .main-container,
.checkout-onepage-success .main-container,
.customer-account-logoutsuccess .main-container,
.checkout-cart-index .main-container {
  min-height: calc(100vh - 276px);
}

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

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

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

.col-left {
  float: left;
  width: 25%;
  max-width: 220px;
  padding: 0;
  clear: left;
}
.col-left img {
  max-width: 100%;
}

.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
}
.col-right img {
  max-width: 100%;
}

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

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

.col2-left-layout .col-main {
  float: right;
  padding: 0 250px;
}

.catalog-category-view .col2-left-layout .col-main, .catalogsearch-result-index .col2-left-layout .col-main, .brand-index-view .col2-left-layout .col-main {
  padding: 0 80px 0 250px;
}

.lookbook-view .col2-left-layout .col-main,
.cms-no-route .col2-left-layout .col-main {
  float: none;
  padding: 0;
}

.col2-left-layout .col-main,
.catalog-category-view .col2-left-layout .col-main,
.brand-index-view .col2-left-layout .col-main,
.catalogsearch-result-index .col2-left-layout .col-main {
  padding: 0 15px;
}

.lookbook-view .col2-left-layout .col-main,
.cms-no-route .col2-left-layout .col-main {
  padding: 0;
}

.catalog-product-view:not(.lookbook-view) .col2-left-layout .col-main {
  float: right;
  padding: 0;
}

.cms-page-view .col2-left-layout .col-main, .cms-home .col2-left-layout .col-main, .cms-home-modular .col2-left-layout .col-main {
  padding: 0;
}

.col2-right-layout .col-main {
  padding-left: 0;
}

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

/* Content Columns */
.col2-set {
  width: 100%;
}
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

.col3-set {
  width: 100%;
}
.col3-set .col-1,
.col3-set .col-2,
.col3-set .col-3 {
  width: 33.33333333%;
  padding: 0 0 20px 0;
  float: left;
}
.col3-set .col-1 .box,
.col3-set .col-2 .box,
.col3-set .col-3 .box {
  display: inline-block;
}
.col3-set .col-2 {
  text-align: center;
}
.col3-set .col-2 .box {
  text-align: left;
}
.col3-set .col-3 .box {
  float: right;
}
.col3-set .col-3:after {
  content: '';
  display: table;
  clear: both;
}
.col3-set:after {
  content: '';
  display: table;
  clear: both;
}

.col3-set {
  padding: 0 15px;
}

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

/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #FFFFFF;
  font-size: 11px;
}
.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;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #000000;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* -------------------------------------------- *
 * Grid
 */
.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #11B400;
}

.error {
  color: #DF280A;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}

.notice {
  color: #E26703;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}

.note-msg {
  text-align: center;
}

/* -------------------------------------------- *
 * Messages
 */
.messages {
  position: fixed;
  top: 50%;
  left: 50%;
  right: 0;
  z-index: 10000;
  margin: -50px 0 0 -180px;
  width: 360px;
  cursor: pointer;
  background: #F6F4F4;
  box-shadow: 0 6.99px 34.96px 8.04px rgba(0, 0, 0, 0.1);
  padding: 40px 25px;
  border: 1px solid #ccc;
}
.messages:after {
  content: '\e909';
  font-family: "icomoon";
  display: inline-block;
  float: right;
  font-size: 20px;
  color: #000000;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.messages:hover:after {
  font-weight: bold;
}

.messages li li {
  position: relative;
  margin: 0;
  padding: 0;
  font: normal 16px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: 1.364;
  color: #000000;
  text-align: center;
}

.messages {
  width: auto;
  margin-left: 0;
  left: 15px;
  right: 15px;
}

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

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

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

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

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

/* -------------------------------------------- *
 * Payment Methods
 */
.payment-methods {
  margin-bottom: 20px;
}

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

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

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #4C4646;
  background: #F4F4F4;
}

.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 #4C4646;
  border-top: none;
  top: -11px;
  left: 30px;
}

.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;
}

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

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.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 */
}
.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
}

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

.price-notice {
  color: #939393;
}

.price-box .price {
  color: #000000;
  font-size: 13px;
}

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

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

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

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price,
.price-box .special-price {
  display: inline-block;
}
.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none;
}
.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
}

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

.price-box .special-price {
  color: #000000;
  padding-left: 1em;
}
.price-box .special-price .price-label {
  color: #D84D3C;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 5px 0 10px 0;
}
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  min-width: 40px;
  margin-bottom: 5px;
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.182;
  text-align: left;
  text-transform: uppercase;
}
.item-options dd {
  float: left;
  padding-left: 0;
  margin: 0;
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.182;
  text-align: left;
  text-transform: uppercase;
}

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px;
}
.truncated a.details:hover {
  text-decoration: none;
}

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

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

/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 7.2in;
  margin: 0 15px;
  background: #FFFFFF;
}
.page-print .print-head {
  margin: 0 0  0;
  text-align: center;
}
.page-print .print-head .logo {
  float: none;
  width: auto;
  margin: 0 auto;
}
.page-print h1 {
  font-weight: normal;
  text-align: center;
  font-size: 16px;
  color: #000000;
  margin: 0 0 10px;
}
.page-print .order-date {
  font-weight: bold;
  margin: 0 auto 15px auto;
  text-align: center;
}
.page-print .order-address {
  text-align: center;
  margin-bottom: 10px;
  font-size: 12px;
}
.page-print .col2-set .col-1,
.page-print .col2-set .col-2,
.page-print h2, .page-print h3, .page-print address, .page-print .order-date, .page-print td, .page-print p,
.page-print .product-name {
  font-size: 12px;
}
.page-print h2, .page-print h3:not(.product-name) {
  font-weight: bold;
  padding-top: 20px;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #000000;
  margin: 0;
}
.page-print h2.h2 {
  border-bottom: none;
  text-align: center;
  font-weight: normal;
  font-size: 18px;
  text-transform: none;
  margin: 0;
  padding-top: 0px;
}
.page-print .item-options dt {
  min-width: 50px;
}
.page-print .item-options dd {
  font-weight: bold;
}
.page-print .data-table thead {
  display: none;
}
.page-print .data-table tbody tr td {
  padding: 10px 0;
}
.page-print .data-table tfoot tr td {
  padding: 3px 0;
}
.page-print .data-table td:first-child {
  width: 50%;
}
.page-print .data-table td .product-name {
  font-weight: bold;
  max-width: 210px;
}
.page-print .data-table td img, .page-print .data-table td .product-details {
  display: inline-block;
  float: left;
}
.page-print .data-table td img {
  margin-right: 10px;
}
.page-print .copyright {
  font-weight: normal;
  text-align: center;
  font-size: 10px;
  line-height: 17px;
  text-transform: none;
  margin: 10px 0;
  color: #939393;
  padding-top: 7px;
}
.page-print .footer-table-store-features {
  width: 100%;
  margin-top: 30px;
}
.page-print .footer-store-features {
  width: 100%;
  border-top: 1px solid #000000;
  padding: 10px 0;
}
.page-print .footer-store-features li {
  float: left;
  width: 20%;
  color: #313131;
  font-size: 9px;
  text-align: center;
}
.page-print .footer-info-table {
  width: 100%;
  background-color: #eaeaec;
  margin-top: 10px;
}
.page-print .footer-info-table .footer-store-main-links li {
  float: left;
  width: 16.666%;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0;
}
.page-print .footer-info-table .footer-store-main-links li a {
  color: #000;
  font-weight: normal;
  text-decoration: none;
  font-size: 9px;
  text-transform: none;
}
.page-print .footer-info-table .footer-social-links {
  padding: 0;
  margin: 14px 16.666% 0;
  height: 20px;
}
.page-print .footer-info-table .footer-social-links li {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  float: left;
  width: 10%;
  font-size: 9px;
}
.page-print .footer-info-table .footer-store-info {
  font-family: "Arial";
  font-weight: normal;
  border-collapse: collapse;
  vertical-align: top;
  padding: 0;
  margin: 0;
  font-size: 9px;
  color: black;
  text-align: center;
  padding-top: 23px;
  line-height: 12px;
  padding-bottom: 12px;
}
.page-print .footer-info-table .footer-store-info span {
  text-transform: uppercase;
}

@media print {
  .page-print .buttons-set {
    display: none;
  }
}
/* -------------------------------------------- *
 * Add to links
 */
.add-to-links {
  margin: 7px 0;
}
.add-to-links a {
  display: inline-block;
  padding: 0 3px 3px;
}

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

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0;
}
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
.ratings .amount {
  display: block;
  margin: 5px auto;
}
.ratings .rating-links .separator {
  margin: 0 3px;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
.std p {
  margin: 0 0 1.5em;
}

.std ol {
  margin-bottom: 1.5em;
}

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

.std ul li {
  margin-left: 0;
}

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

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

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  padding: 0;
}
.toolbar .sorter, .toolbar .pager .count-container, .toolbar .pages > strong {
  display: none;
}
.toolbar .pages ol {
  width: 100%;
  text-align: center;
}
.toolbar .pages ol li {
  display: inline-block;
  float: none;
  font: normal 18px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.toolbar .pages ol li a {
  color: #C7C7C7;
  display: inline-block;
}
.toolbar .pages ol li a:hover {
  color: #000000;
}
.toolbar .pages ol li a, .toolbar .pages ol li.current {
  margin: 0 15px;
}
.toolbar .pages ol li a.next, .toolbar .pages ol li a.previous {
  display: none;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

.toolbar-bottom {
  margin: 55px 0;
}

/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
#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 #3399CC;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#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 #246b8f;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#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 #3399CC;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#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 #246b8f;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px;
}

/* ============================================ *
 * Magento Helpers
 * ============================================ */
.a-center {
  text-align: center;
}

.a-right,
.align-right {
  text-align: right;
}

.no-display {
  display: none !important;
}

.nobr,
.nowrap {
  white-space: nowrap;
}

.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */
.hidden {
  display: none;
}

/* ============================================ *
 * Overlay
 * ============================================ */
.white-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.361);
}

/* ============================================ *
 * Common responsive classes
 * ============================================ */
.only-desktop {
  display: block;
}
.only-desktop.inline-block {
  display: inline-block;
}

.only-mobile, .nav-primary li.level0.only-mobile, .nav-primary li a.only-mobile, .only-popup {
  display: none;
}

.only-desktop, .only-desktop.inline-block,
.cms-home .wrapper #header-message, .cms-home-modular .wrapper #header-message {
  display: none;
}

.only-mobile, .nav-primary li.level0.only-mobile, .nav-primary li a.only-mobile {
  display: block;
}

.count.only-desktop.inline-block {
  display: inline-block;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px;
}

.fieldset + .fieldset {
  margin-top: 5px;
}

form .legend {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.385;
  text-align: center;
  text-transform: uppercase;
}

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding: 0;
  position: relative;
}
.input-box:after {
  content: '';
  display: table;
  clear: both;
}

li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle;
}

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
.input-box .v-fix {
  float: left;
  margin-right: 5px;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

label.required:after,
span.required:after {
  content: ' *';
  color: #DF280A;
  font-weight: normal;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 12px;
  display: none;
}

label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: #939393;
  font-size: 12px;
}

/* -------------------------------------------- *
 * Select
 */
select {
  height: 40px;
  padding: 13px 30px 13px 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: #FFFFFF url(../images/select.png) no-repeat right center;
  background-size: 20px auto;
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  border: none;
  color: #000000;
  text-overflow: '';
}
select:focus {
  outline: none;
  border: none;
}
select.super-attribute-select {
  height: 24px;
}
select#gender, select#gender:focus, select#country, select#country:focus, select#region_id, select#region_id:focus {
  border: 1px solid #4C4646;
}

select.desktopDropDown::-ms-expand,
select::-ms-expand {
  display: none;
}

.product-options select {
  background-color: transparent;
}

select + select {
  margin-left: 5px;
}

select[multiple] {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  border: none;
  color: #000000;
  padding: 5px;
}

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 75px;
  padding: 5px 8px;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  color: #4C4646;
  color: #000000;
  border: 1px solid #4C4646;
}
.input-text.big {
  font-size: 14px;
}
.input-text:focus {
  outline: none;
  border: 1px solid #4C4646;
}

.input-text.validation-failed,
select.validation-failed,
textarea.validation-failed,
#customer-reviews .fieldset .form-list textarea.validation-failed,
select.validation-failed,
.opc-wrapper-opc select.validation-failed,
select#country.validation-failed,
select#region_id.validation-failed {
  border-color: #DF280A;
  overflow: hidden;
  text-overflow: ellipsis;
}

select.validation-failed,
input[type="radio"].validation-failed,
input[type="checkbox"].validation-failed {
  border-color: #DF280A;
  color: #DF280A;
}

.input-text.validation-failed:focus,
select.validation-failed:focus {
  outline-color: #ef9485;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 40px;
  line-height: normal;
  padding: 13px 8px;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 100%;
  max-width: 100%;
}

.ie8 .input-text {
  max-width: none;
}

/* -------------------------------------------- *
 * Inputs - Quantity
 */
input[type=number].qty,
input[type=text].qty {
  width: 3em;
  text-align: center;
  vertical-align: middle;
}

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  color: #4C4646;
}
::-webkit-input-placeholder.big {
  font-size: 14px;
}

:-ms-input-placeholder {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  color: #4C4646;
}
:-ms-input-placeholder.big {
  font-size: 14px;
}

input:-moz-placeholder {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  color: #4C4646;
  background: #FFFFFF;
  opacity: 1;
}
input:-moz-placeholder.big {
  font-size: 14px;
}

input::-moz-placeholder {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  color: #4C4646;
  background: #FFFFFF;
  opacity: 1;
}
input::-moz-placeholder.big {
  font-size: 14px;
}

.validation-failed::-webkit-input-placeholder {
  color: #DF280A;
}

input.validation-failed:-moz-placeholder,
input.validation-failed::-moz-placeholder {
  color: #DF280A;
  background: #FFFFFF;
  opacity: 1;
}

input.validation-failed:-ms-input-placeholder {
  color: #DF280A;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */
input[type="checkbox"], input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #939393;
  background: #FFFFFF;
  outline: none;
  width: 12px;
  height: 12px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
input[type="checkbox"]:checked, input[type="radio"]:checked {
  background: #000000;
}

#product-review-table input[type="radio"].icon-star-o:before {
  content: '\f006';
}
#product-review-table input[type="radio"].icon-star-o.clicked:before, #product-review-table input[type="radio"].icon-star-o:checked:before {
  content: '\f005';
}

.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 5px 0 0;
  color: #DF280A;
  font-size: 13px;
}

.validation-advice {
  display: none;
}
.validation-advice#advice-validate-password-password, .validation-advice#advice-validate-cpassword-confirmation {
  display: block;
  position: absolute;
  top: auto;
  left: 0;
}

.validation-advice {
  display: block\9;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  background: #FFFFFF !important;
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

select:-webkit-autofill {
  background: #FFFFFF url(../images/select.png) no-repeat calc(100% - 10px) center !important;
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px;
}
.form-list > li.no-margin {
  margin-bottom: 0;
}
.form-list select {
  width: 100%;
  max-width: 100%;
}
.form-list .input-range .input-text {
  width: 74px;
}
.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 */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
#co-shipping-method-form .sp-methods dt,
.product-options ul.options-list,
.block-subscribe .control {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dt div.input-box,
.product-options ul.options-list div.input-box,
.block-subscribe .control div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dt div.input-box:after,
.product-options ul.options-list div.input-box:after,
.block-subscribe .control div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dt input.radio,
#co-shipping-method-form .sp-methods dt input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox,
.block-subscribe .control input.radio,
.block-subscribe .control input.checkbox {
  display: inline-block;
  vertical-align: middle;
  float: none;
  margin-top: 1px;
}
.form-list .control input.radio[name="shipping_method"],
.form-list .control input.checkbox[name="shipping_method"],
.sp-methods dt input.radio[name="shipping_method"],
.sp-methods dt input.checkbox[name="shipping_method"],
#checkout-shipping-method-load .sp-methods dd input.radio[name="shipping_method"],
#checkout-shipping-method-load .sp-methods dd input.checkbox[name="shipping_method"],
#co-shipping-method-form .sp-methods dd input.radio[name="shipping_method"],
#co-shipping-method-form .sp-methods dd input.checkbox[name="shipping_method"],
#co-shipping-method-form .sp-methods dt input.radio[name="shipping_method"],
#co-shipping-method-form .sp-methods dt input.checkbox[name="shipping_method"],
.product-options ul.options-list input.radio[name="shipping_method"],
.product-options ul.options-list input.checkbox[name="shipping_method"],
.block-subscribe .control input.radio[name="shipping_method"],
.block-subscribe .control input.checkbox[name="shipping_method"] {
  vertical-align: top;
}
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
#co-shipping-method-form .sp-methods dt label,
.product-options ul.options-list label,
.block-subscribe .control label {
  color: #000000;
  background-color: #F4F4F4;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  float: none;
  padding: 0 0 0 3px;
  vertical-align: middle;
  background: none;
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.231;
  text-align: left;
  text-transform: none;
}
.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dt label:hover,
.product-options ul.options-list label:hover,
.block-subscribe .control label:hover {
  cursor: pointer;
}
.form-list .control label.validation-failed, .form-list .control label.validation-failed a,
.sp-methods dt label.validation-failed,
.sp-methods dt label.validation-failed a,
#checkout-shipping-method-load .sp-methods dd label.validation-failed,
#checkout-shipping-method-load .sp-methods dd label.validation-failed a,
#co-shipping-method-form .sp-methods dd label.validation-failed,
#co-shipping-method-form .sp-methods dd label.validation-failed a,
#co-shipping-method-form .sp-methods dt label.validation-failed,
#co-shipping-method-form .sp-methods dt label.validation-failed a,
.product-options ul.options-list label.validation-failed,
.product-options ul.options-list label.validation-failed a,
.block-subscribe .control label.validation-failed,
.block-subscribe .control label.validation-failed a {
  color: #DF280A;
}
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dt .no-display + label,
.product-options ul.options-list .no-display + label,
.block-subscribe .control .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dt .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover,
.block-subscribe .control .no-display + label:hover {
  background-color: transparent;
}

.opc-wrapper-opc .payment-block dt label {
  padding: 1px 0 0 3px;
  background: none;
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.273;
  text-align: left;
  text-transform: none;
  vertical-align: top;
  width: calc(100% - 16px);
}

#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd {
  margin-bottom: 20px;
}

.footer .block-subscribe .control {
  clear: both;
}
.footer .block-subscribe .control .checkPolitica {
  margin: 10px 0 0 0;
  float: left;
}
.footer .block-subscribe .control .checkPolitica .input-box {
  width: auto;
}
.footer .block-subscribe .control .checkPolitica label {
  display: inline;
  text-transform: none;
}
.footer .block-subscribe .control .checkPolitica label a:hover {
  text-decoration: underline;
}
.footer .block-subscribe .control .checkPolitica label.required-policy {
  font-size: 11px;
}

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}

.form-list .control {
  margin-top: 10px;
}
.form-list .control label {
  float: none;
}
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}
.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

form .form-instructions {
  font: normal 20px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.4;
  text-align: center;
  text-transform: none;
  margin: 0 0 60px 0;
}
form .instructions {
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.167;
  text-align: left;
  text-transform: none;
  margin: 25px 0;
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%;
}

.data-table td,
.data-table th {
  padding: 12px;
  width: 17.5%;
}

.data-table th {
  background: transparent;
  white-space: nowrap;
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: inherit;
  text-align: center;
  text-transform: uppercase;
  vertical-align: bottom;
}

.data-table tbody td,
.data-table tfoot td {
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: inherit;
  text-align: center;
  text-transform: none;
  vertical-align: middle;
}
.data-table tbody td.bold,
.data-table tfoot td.bold {
  font-style: bold;
}

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #000000;
}
.data-table thead th.first, .data-table thead th:first-child,
.data-table tbody td.first,
.data-table tbody td:first-child {
  text-align: left;
}

.data-table:not(.size-table) thead th.last, .data-table:not(.size-table) thead th:last-child,
.data-table:not(.size-table) tbody td.last,
.data-table:not(.size-table) tbody td:last-child {
  text-align: right;
}

.size-table tbody td {
  white-space: nowrap;
  width: auto;
}

.size-table-wrapper {
  max-width: 100%;
  overflow-y: auto;
}

.data-table tfoot tr {
  background: transparent;
}
.data-table tfoot tr td:first-child {
  text-align: left;
}
.data-table tfoot tr td:last-child {
  text-align: right;
}

.data-table tbody td .item-options {
  margin: 10px 0 0 0;
}
.data-table tbody td .item-options dt:after {
  content: ':';
}

.size-table {
  width: auto;
}
.size-table tbody td {
  position: relative;
}
.size-table tbody td:first-child {
  top: auto;
  z-index: 100;
  width: 25%;
  background: #FFFFFF;
  border-bottom: none;
  border-right: 1px solid #000000;
  height: 45px;
  overflow: hidden;
}
.size-table tbody tr:last-child td:first-child {
  border-bottom: 1px solid #000000;
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
}
.info-box h2 {
  font: bold 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
}

.info-table th,
.info-table td {
  vertical-align: top;
}

.info-table th {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  padding: 4px 20px 4px 0;
}

.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #C0C0C0;
}
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #C0C0C0;
  padding: 6px;
  background-color: transparent;
}
.zebra-table tr {
  background-color: #EEEDED;
}
.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
/* ============================================ *
 * Global
 * ============================================ */
html:not(.no-js),
body:not(.page-print) {
  min-height: 100%;
  overflow-x: hidden;
  min-width: 320px;
}

html.no-overflow {
  height: 100%;
  overflow: hidden;
}
html.no-overflow body {
  height: 100%;
  overflow: hidden;
}

.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
}

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

/* ============================================ *
 * Header
 * ============================================ */
.page-header {
  margin: 0 auto;
  padding: 0 45px;
  height: 70px;
  clear: both;
  position: relative;
  z-index: 1002;
  width: 100%;
  background: transparent;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.page-header.size-enabled {
  z-index: 1020;
  background: #FFFFFF;
}

.form-language {
  position: relative;
}
.form-language #store-switcher-container {
  position: absolute;
  top: 100%;
  left: 16px;
  box-shadow: 0.5px 7.33px 12.82px 0.18px rgba(0, 0, 0, 0.247);
  display: none;
  background: #FFFFFF;
  width: 230px;
  height: 270px;
  padding: 15px 5px 15px 0;
}
.form-language #search-country {
  width: calc(100% - 20px);
  height: 25px;
  margin: 0 0 10px 15px;
  padding: 5px 8px;
}
.form-language #selected-country, .form-language #store-langs, .form-language .separator {
  float: left;
}
.form-language #store-langs li {
  display: inline-block;
}
.form-language #store-langs li.selected a {
  font-weight: bold;
}
.form-language #selected-country:hover, .form-language #store-langs a:hover {
  text-decoration: underline;
}
.form-language .store-switcher {
  position: relative;
  height: 100%;
}
.form-language .store-switcher ul {
  padding: 0 15px;
}
.form-language:after {
  content: '';
  display: table;
  clear: both;
}

#warning-store-switcher {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 2;
  padding: 15px;
}
#warning-store-switcher h3 {
  font: normal 15px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  margin: 0;
  padding: 30px 0;
}
#warning-store-switcher p {
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  text-transform: none;
  margin: 0 0 35px 0;
}
#warning-store-switcher .button {
  margin: 0;
  color: #FFFFFF;
  line-height: 40px;
  width: 100%;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  letter-spacing: 0.1em;
}
#warning-store-switcher .button:hover {
  color: #000000;
  border-color: #FFFFFF;
}
#warning-store-switcher .button-new {
  background: #FFFFFF;
  color: #000000;
}
#warning-store-switcher .button-new:hover {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}

.page-header {
  height: 50px;
  background: #FFFFFF;
  padding: 0 15px 0 0;
  text-align: center;
  position: fixed;
  border-bottom: 1px solid #DBDBDB;
}
.page-header.fixed {
  top: -50px;
}
.page-header.fixed.open {
  top: 0;
}

.page-header-container {
  padding-left: 15px;
}

#warning-store-switcher {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.page-header-container {
  position: relative;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #000000;
}
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
.header-language-background .welcome-msg {
  float: right;
}

.page-header-container .store-language-container {
  float: left;
}

/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  float: left;
  min-width: 100px;
  text-align: center;
  padding: 20px 0 19px 0;
  position: relative;
  transition: top 0.2s ease-in-out;
  -moz-transition: top 0.2s ease-in-out;
  -webkit-transition: top 0.2s ease-in-out;
  -ms-transition: top 0.2s ease-in-out;
  -o-transition: top 0.2s ease-in-out;
}
.logo i {
  font-size: 25px;
  line-height: inherit;
  color: #000000;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.logo:hover {
  opacity: 0.8;
}
.logo img {
  max-width: 100%;
}

#header .logo img {
  max-width: 188px;
  width: 100%;
}

.logo {
  display: inline-block;
  float: none;
  padding: 12px 0;
}
.logo i {
  font-size: 17px;
}

/* ============================================ *
 * Skip Links
 * ============================================ */
.header-link {
  clear: none;
}

.skip-links, .header-link, .form-language, .skip-cart {
  padding: 0 28px;
  transition: padding 0.2s ease-in-out;
  -moz-transition: padding 0.2s ease-in-out;
  -webkit-transition: padding 0.2s ease-in-out;
  -ms-transition: padding 0.2s ease-in-out;
  -o-transition: padding 0.2s ease-in-out;
}

.skip-cart {
  padding-right: 0;
}

.form-language a:first-of-type {
  margin-right: 3px;
}
.form-language a:last-of-type {
  margin-left: 2px;
}
.form-language a.selected {
  color: #000000;
}

.skip-links, .header-link, .form-language a, .skip-cart, .form-language .separator, .store-switcher span {
  width: auto;
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 0.364;
  text-align: center;
  text-transform: uppercase;
  line-height: 70px;
  letter-spacing: 0.05em;
}

.store-switcher span {
  line-height: 20px;
  display: block;
  text-align: left;
  cursor: pointer;
}
.store-switcher span:hover {
  text-decoration: underline;
}

.skip-links:hover, .header-link:hover, .form-language a:hover, .skip-cart:hover {
  color: #000000;
  text-decoration: none;
}

.skip-link, .header-link {
  position: relative;
  float: left;
  height: 70px;
}
.skip-link .icon-font, .header-link .icon-font {
  line-height: 70px;
}
.skip-link .icon-font:before, .header-link .icon-font:before {
  font-size: 20px;
}

.skip-links, .header-link, .form-language, .skip-cart {
  padding: 0 10px;
}

.page-header .form-language .store-switcher {
  left: -3px;
}

.skip-cart {
  padding-right: 0;
}

.skip-links, .header-link, .form-language a, .skip-cart, .form-language .separator {
  line-height: 50px;
}

.skip-link, .header-link {
  height: 50px;
}
.skip-link .icon-font, .header-link .icon-font {
  line-height: 50px;
  display: inline-block;
}

.skip-link.skip-search {
  position: absolute;
  left: 45px;
}

.skip-cart {
  padding-left: 20px;
}

/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 3px;
}

/* -------------------------------------------- *
 * Skip Link - Label
 */
.skip-link .label {
  display: none;
}

/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: block;
}

.skip-content.skip-active {
  background: #EDEDED;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
.account-cart-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.account-cart-wrapper .links ul li {
  float: left;
}

/* ============================================ *
 * Cookies & Header messages
 * ============================================ */
#cookie-law, #header-message {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 40px;
}
#cookie-law p, #header-message p {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

#cookie-law {
  display: table;
  position: relative;
  background: #F6F4F4;
  padding: 5px 45px;
}
#cookie-law p {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.364;
  text-align: center;
  text-transform: none;
}
#cookie-law p > span:not(.close) {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  padding-right: 15px;
}
#cookie-law p .close {
  display: block;
  cursor: pointer;
  margin: -10px 0 0 0;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
}
#cookie-law p .close:before {
  display: block;
}

#header-message {
  background: #000000;
  display: none;
}
#header-message p {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #FFFFFF;
  line-height: 1.214;
  text-align: center;
  text-transform: none;
}

.cms-home #header-message,
.cms-home-modular #header-message {
  display: table;
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  width: 40%;
}
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}

.skip-nav .label {
  display: inline;
}

.skip-nav {
  display: none;
}

#header-nav {
  display: block;
  /* Force visibility */
  border-bottom: 1px solid #EDEDED;
}

#toggle-menu {
  cursor: pointer;
  line-height: 50px;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 15px;
  height: 50px;
  width: 50px;
}
#toggle-menu span {
  display: inline-block;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 15px;
  cursor: pointer;
  background: #000000;
  margin: 0 0 0 0;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
#toggle-menu span:nth-child(1) {
  top: 17px;
}
#toggle-menu span:nth-child(2) {
  top: 24px;
}
#toggle-menu span:nth-child(3) {
  top: 31px;
}
#toggle-menu.open span:nth-child(1) {
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
#toggle-menu.open span:nth-child(2) {
  opacity: 0;
  left: -25px;
}
#toggle-menu.open span:nth-child(3) {
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#toggle-menu.open span:nth-child(1), #toggle-menu.open span:nth-child(3) {
  top: 24px;
}

/* ============================================ *
 * Nav Primary
 * ============================================ */
#nav {
  overflow: hidden;
  height: 100%;
}
#nav .simplebar-track {
  right: 10px;
}

.touch #nav.simplebar {
  -webkit-overflow-scrolling: initial;
}

.col-left.sidebar {
  width: 220px;
  display: block;
  margin: 0;
  position: fixed;
  z-index: 1000;
  top: 116px;
  left: 0;
  bottom: 0;
}

.nav-primary li {
  position: relative;
}
.nav-primary li.view-all {
  display: none;
}
.nav-primary li a {
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.75;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  letter-spacing: 0.05em;
}
.nav-primary li a:hover {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

.nav-overflow {
  display: none;
}

#nav {
  width: 100%;
  max-width: 600px;
  background: #FFFFFF;
  padding-top: 25px;
  box-shadow: 2.5px 4.33px 5.82px 0.18px rgba(0, 0, 0, 0.32);
}

.col-left.sidebar {
  width: 100%;
  max-width: 100%;
  padding-top: 50px;
  margin: 0;
  top: 0;
  left: -105%;
  bottom: 0;
  z-index: 101;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.col-left.sidebar.col-left-first {
  width: 100%;
  max-width: 100%;
  left: -105%;
}
.col-left.sidebar.open {
  left: 0;
}
.col-left.sidebar .nav-overflow.top {
  position: absolute;
  right: 0;
  top: 50px;
  bottom: 0;
  left: 50%;
  z-index: 100;
  display: block;
  cursor: pointer;
}

/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
.nav-primary a.level0 {
  padding: 0 0 0 45px;
  display: inline-block;
}
.nav-primary a.level0.sale {
  color: #FF0000;
}
.nav-primary li a {
  white-space: normal;
  display: block;
}
.nav-primary li.level0 {
  display: block;
}
.nav-primary li.level0.brands a {
  padding-bottom: 0px;
}
.nav-primary li:last-child > a {
  border-bottom: none;
}
.nav-primary a:hover,
.nav-primary li:hover > a {
  color: #000000;
}
.nav-primary .menu-active {
  z-index: 200;
}
.nav-primary li.level0 ul.level0 {
  z-index: 10;
  padding: 10px 10px 10px 55px;
  display: none;
}
.nav-primary li.level0 ul.level0 li a {
  font-size: 12px;
}
.nav-primary li.level0 ul.level0 li.active a {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.nav-primary li.level0.active > a.level0 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.nav-primary li.level0.active ul.level0 {
  display: block;
}
.nav-primary li.level0 ul.level1 {
  z-index: 10;
  padding: 10px;
  display: none;
}
.nav-primary li.level0 ul.level0 li.active ul.level1 {
  display: block;
}

.nav-primary {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: initial;
  width: 100%;
}
.nav-primary #search-country-mobile {
  width: calc(100% - 20px);
  height: auto;
  margin: 0 0 10px 0;
  padding: 5px 8px;
  font-size: 16px;
  line-height: 24px;
}
.nav-primary #search-country-mobile::placeholder {
  padding-top: 5px;
  font-size: 14px;
}
.nav-primary #mobile-customer-menu {
  margin-bottom: 15px;
}
.nav-primary #mobile-customer-menu a {
  font-size: 15px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.nav-primary #mobile-customer-menu a i {
  margin-right: 10px;
}
.nav-primary .submenu-title {
  text-align: center;
  display: block;
  margin-bottom: 15px;
  font-size: 15px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  position: relative;
}
.nav-primary .submenu-title i {
  line-height: 22px;
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 1px;
}
.nav-primary li.level0 {
  position: initial;
}
.nav-primary li.level0 a.has-children {
  position: relative;
  border-bottom: 1px solid #DBDBDB;
}
.nav-primary li.level0 a.has-children:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  content: '\e90f';
  line-height: 36px;
  font-size: 25px;
  position: absolute;
  right: 10px;
  top: 1px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.nav-primary li.level0 a.has-children.level1:after {
  content: '\e90b';
}
.nav-primary li.level0 a.has-children.level1.active:after {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav-primary li.level0 a, .nav-primary li.level0 .store-switcher-mobile li span {
  line-height: 3;
  position: relative;
  z-index: 2;
  width: 100%;
}
.nav-primary li.level0 a.level0, .nav-primary li.level0 .store-switcher-mobile li span.level0 {
  padding-left: 15px;
}
.nav-primary li.level0 a:not(.button) {
  background: #FFFFFF;
}
.nav-primary li.level0 a:not(.button):hover {
  font-weight: normal;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
}
.nav-primary li.level0 .store-switcher-mobile li span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
.nav-primary li.level0 ul.level0 {
  position: absolute;
  top: 0;
  left: -110%;
  bottom: 0;
  z-index: 3;
  padding: 25px 0;
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-y: auto;
  background: #FFFFFF;
  box-shadow: 2.5px 4.33px 5.82px 0.18px rgba(0, 0, 0, 0.32);
  transition: left 0.2s ease-in-out;
  -moz-transition: left 0.2s ease-in-out;
  -webkit-transition: left 0.2s ease-in-out;
  -ms-transition: left 0.2s ease-in-out;
  -o-transition: left 0.2s ease-in-out;
}
.nav-primary li.level0 ul.level0 li.level1 {
  border-bottom: 1px solid #DBDBDB;
}
.nav-primary li.level0 ul.level0 li.level1.view-all, .nav-primary li.level0 ul.level0 li.level1 li.view-all {
  display: block;
}
.nav-primary li.level0 ul.level0 li.level1 a {
  padding: 0 15px;
  border-bottom: none;
}
.nav-primary li.level0 ul.level0.open {
  left: 0;
}
.nav-primary li.level0 ul.level0.store-switcher-mobile,
.nav-primary li.level0 ul.level0.store-langs-mobile {
  padding-left: 15px;
}
.nav-primary li.level0 li.active ul.level0 {
  left: 130px;
  z-index: 1;
}
.nav-primary li.level0 li.active ul.level0,
.nav-primary ul.level0 li.active ul.level1 {
  display: block;
}

#brands-popup {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10000;
  box-shadow: 6px 10.392px 16.38px 1.62px rgba(0, 0, 0, 0.071);
  background: #FFFFFF;
  padding: 50px;
}

#brands-popup-cms {
  display: none;
  text-align: center;
  padding-top: 50px;
}

.brands-popup #columns-container .column {
  float: left;
  width: 25%;
}
.brands-popup #columns-container:after {
  content: '';
  display: table;
  clear: both;
}
.brands-popup .letter {
  font: normal 22px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #C7C7C7;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.brands-popup ul li a {
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.brands-popup ul li a:hover {
  text-decoration: underline;
}
.brands-popup ul li:last-child {
  margin: 0 0 25px 0;
}
.brands-popup .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 22px;
  text-align: center;
  background: #000000;
  color: #FFFFFF;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.brands-popup .close:hover {
  background: #FFFFFF;
  color: #000000;
}
.brands-popup:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  display: none;
  position: absolute;
  top: 70px;
  right: -45px;
  left: -45px;
  z-index: 2;
  width: auto;
  height: 255px;
  padding: 0;
}

/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

#search_mini_form label {
  display: none;
}

#search {
  width: 100%;
  height: 255px;
  padding: 112px 45px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 32px;
  text-align: center;
  color: #000000;
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
#search::-webkit-input-placeholder {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 32px;
  text-align: center;
  color: #C7C7C7;
}
#search:-moz-placeholder {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 32px;
  text-align: center;
  color: #C7C7C7;
}
#search::-moz-placeholder {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 32px;
  text-align: center;
  color: #C7C7C7;
}
#search:-ms-input-placeholder {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 32px;
  text-align: center;
  color: #C7C7C7;
}

#search_mini_form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  font-family: "icomoon";
}
#search_mini_form .search-button span {
  display: none;
}

#search_mini_form .search-button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  color: #000000;
  line-height: 26px;
  font-size: 20px;
}
#search_mini_form .search-button:before:hover:before {
  color: #000000;
}

#search_mini_form .search-button:hover:before {
  opacity: 0.8;
}

#search_mini_form .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}

#header-search {
  height: 75px;
  top: 50px;
  right: -15px;
  left: -15px;
}

#search {
  padding: 0 15px;
  height: 75px;
  font-size: 18px;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account {
  float: none;
  width: auto;
  vertical-align: top;
  display: inline-block;
  padding: 0 10px;
  text-transform: uppercase;
}

#header-account.skip-active {
  background: #FBFBFB;
  border: solid 1px #4C4646;
  position: absolute;
  z-index: 200;
  top: 40px;
  right: 90px;
  width: 200px;
}

#header-account a {
  display: block;
  padding: 5px 10px;
  color: #000000;
  line-height: 2;
}

#header-account a:hover {
  color: #000000;
}

/* -------------------------------------------- *
 * Account Links
 */
#header-account {
  padding: 5px 0;
}

#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
}

#header-account a:hover {
  color: #000000;
}

/* -------------------------------------------- *
 * Block Login
 */
#login-popup {
  background-color: #FFFFFF;
  z-index: 1000;
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -144px;
  width: 288px;
  padding: 10px 15px 0;
  box-shadow: 0.5px 7.33px 12.82px 0.18px rgba(0, 0, 0, 0.247);
}
#login-popup .forgot-pass {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: inherit;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
#login-popup .forgot-pass:hover {
  text-decoration: underline;
}
#login-popup .has-border {
  border-bottom: 1px solid #9E9E9E;
}
#login-popup .button {
  width: 100%;
}

#login-popup {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 50px);
  padding: 25px 45px;
  margin: 0;
  box-shadow: none;
}
#login-popup .back-login {
  position: absolute;
  right: 45px;
  top: 15px;
  width: 100%;
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  text-align: right;
}
#login-popup .forgot-pass {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: none;
  display: block;
  margin: 15px 0 25px 0;
}
#login-popup form .form-instructions {
  margin: 0;
}
#login-popup .only-mobile h2 {
  font: normal 18px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: none;
}
#login-popup .only-mobile .form-instructions p {
  font: normal 12px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 14px;
  text-align: center;
  text-transform: none;
}
#login-popup .only-mobile h2, #login-popup .only-mobile .form-instructions p {
  margin: 0 0 25px 0;
}
#login-popup .only-mobile.new-users-mobile h2 {
  margin-top: 25px;
}

.fixed #login-popup {
  height: 100vh;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
#header-cart.skip-active {
  position: absolute;
  z-index: 200;
  top: 70px;
  right: -45px;
  width: 330px;
  background: #FFFFFF;
  padding: 10px 25px 25px 25px;
  margin: 0;
  box-shadow: -2.5px 4.33px 5.82px 0.18px rgba(0, 0, 0, 0.247);
}
#header-cart.skip-active .amount {
  font: normal 12px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
#header-cart.skip-active .product-brand {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
#header-cart.skip-active .product-name {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.071;
  text-align: left;
  text-transform: none;
}
#header-cart.skip-active .price {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: inherit;
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
}
#header-cart.skip-active .special-price .price {
  color: #D8593B;
}
#header-cart.skip-active .old-price .price {
  color: #939393;
  text-decoration: line-through;
}
#header-cart.skip-active .truncated .truncated_full_value {
  width: 100%;
}

.fixed-cart #header-cart.skip-active {
  position: fixed;
  top: 0;
  right: 0;
}

#header-cart.skip-active,
.fixed-cart #header-cart.skip-active {
  top: 50px;
}

#header-cart.skip-active {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 15px 15px 55px 15px;
}
#header-cart.skip-active .amount {
  display: none;
}
#header-cart.skip-active .price {
  float: left;
}

#continue-shopping {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  width: 100%;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

.cart-menu .actions .button {
  float: left;
  width: 48%;
}

.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

/* List */
.mini-cart-list {
  margin-bottom: 5px;
}

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #4C4646;
  font-size: 13px;
  line-height: 1.35;
}

.mini-cart-list .product-name {
  display: inline-block;
}

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #939393;
  font-size: 12px;
}

/* Too full - additional items will be shown in cart */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #4C4646;
  font-size: 13px;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer-container {
  padding: 56px 45px 0;
  clear: both;
  padding: 0;
}
.footer-container address {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.308;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.footer-container address {
  border-top: 1px solid #9E9E9E;
  text-align: center;
  margin: 0;
  line-height: 35px;
}

.footer {
  clear: both;
  width: 100%;
  border-top: 1px solid #4C4646;
  padding: 26px 0 10px 0;
  padding: 0 0 10px 0;
  border-color: #DBDBDB;
}
.footer:after {
  content: '';
  display: table;
  clear: both;
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .footer-social {
  float: left;
  text-align: center;
}
.footer .footer-social li {
  float: left;
  padding: 0 10px;
}
.footer .footer-social li a {
  font-size: 18px;
  line-height: 28px;
  float: none;
}
.footer .links {
  float: left;
  padding: 0;
  margin-bottom: 0;
  width: 44%;
}
.footer .links li {
  word-break: break-all;
  padding: 0 30px 0 0;
  float: none;
  display: inline-block;
}
.footer .links a {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 28px;
  text-align: left;
  text-transform: uppercase;
}
.footer .links a:hover {
  color: #939393;
}
.footer .block-subscribe {
  float: right;
  margin-bottom: 0;
  width: 28%;
}
.footer .links,
.footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}
.footer .form-subscribe-header {
  display: none;
}
.footer .form-subscribe-header label {
  font: normal 15px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 0.944;
  text-align: center;
  text-transform: none;
  display: block;
  margin: 30px 0 15px 0;
}
.footer .block-subscribe .input-box {
  float: left;
  padding-top: 0;
  width: 75%;
}
.footer .block-subscribe .input-text {
  height: 28px;
  width: 33.3333333%;
  float: left;
  border-right: 0;
  font-size: 11px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #000000;
  padding: 6px 8px;
}
.footer .block-subscribe .block-content {
  padding-top: 0;
  margin-top: 0;
  position: relative;
}
.footer .block-subscribe .block-content #mce-responses {
  position: absolute;
  top: -54px;
  right: -1px;
  padding: 0 10px;
  display: table;
  height: 54px;
  width: 100%;
}
.footer .block-subscribe .block-content #mce-responses .response, .footer .block-subscribe .block-content #mce-responses .response a {
  color: #000000;
}
.footer .block-subscribe .block-content #mce-responses .response {
  font-size: 12px;
  text-transform: none;
  text-align: center;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  background: #FFFFFF;
}
.footer .block-subscribe .block-content #mce-responses .response a:hover {
  text-decoration: underline;
}
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.footer #mc_embed_signup input.mce_inline_error {
  border-color: #DF280A;
}
.footer #mc_embed_signup div.mce_inline_error {
  display: none !important;
  background: none;
}
.footer .block-subscribe .actions {
  float: left;
  margin: 0;
  width: 25%;
}
.footer .block-subscribe .actions .button {
  height: 28px;
  line-height: 28px;
  float: left;
  width: 100%;
  padding: 0;
}
.footer .bugs,
.footer address {
  clear: both;
}
.footer .bugs {
  display: none;
}
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
.footer .form-language,
.footer .currency-switcher {
  display: none;
}
.footer address {
  border-top: 1px solid #4C4646;
  text-align: center;
  width: 100%;
  font-size: 11px;
  margin-top: 30px;
  padding: 30px 0;
}
.footer #useful-info {
  float: left;
  display: block;
  margin-top: 20px;
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 29px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: underline;
}
.footer .links,
.footer .footer-social,
.footer .block-subscribe {
  width: 33.3333333%;
}
.footer .footer-social {
  text-align: center;
  white-space: nowrap;
  padding: 0 20px;
}
.footer .footer-social li {
  float: none;
  display: inline-block;
}
.footer .links li {
  padding-right: 15px;
}
.footer .links li a {
  line-height: 15px;
}
.footer .links {
  width: 100%;
  text-align: center;
}
.footer .footer-social {
  text-align: left;
  clear: both;
  float: left;
  padding-left: 0;
}
.footer .footer-social li:first-child {
  padding-left: 0;
}
.footer .block-subscribe {
  float: right;
}
.footer .footer-social,
.footer .block-subscribe {
  width: 50%;
  margin: 20px 0 0 0;
}
.footer > .only-mobile {
  padding: 0 15px;
}
.footer .block-subscribe .block-content #mce-responses {
  top: 28px;
  height: 35px;
  width: calc(100% - 15px);
  left: 15px;
}
.footer .form-subscribe-header {
  display: block;
  float: none;
}
.footer .block-subscribe {
  margin: 0;
  width: 100%;
  padding: 0 40px;
}
.footer .block-subscribe + .only-mobile {
  padding: 0 15px;
}
.footer .footer-social {
  clear: none;
  float: right;
  text-align: right;
  width: auto;
}

/* ============================================ *
 * Homepage
 * ============================================ */
/* -------------------------------------------- *
 * Primary Banner
 */
body.cms-home .col2-left-layout .col-main, body.cms-home-modular .col2-left-layout .col-main {
  width: 100%;
}
body.cms-home .bx-viewport, body.cms-home-modular .bx-viewport {
  margin: 0;
}
body.cms-home [class^="home-slider"], body.cms-home [class*=" home-slider"], body.cms-home-modular [class^="home-slider"], body.cms-home-modular [class*=" home-slider"] {
  height: calc(100vh - 40px);
  max-height: calc(100vh - 40px);
  list-style: none;
  overflow-y: hidden;
  margin: 0;
}
body.cms-home [class^="home-slider"] li, body.cms-home [class*=" home-slider"] li, body.cms-home-modular [class^="home-slider"] li, body.cms-home-modular [class*=" home-slider"] li {
  margin: 0;
}
body.cms-home [class^="home-slider"] li a, body.cms-home [class*=" home-slider"] li a, body.cms-home-modular [class^="home-slider"] li a, body.cms-home-modular [class*=" home-slider"] li a {
  text-decoration: none;
}
body.cms-home [class^="home-slider"] li, body.cms-home [class^="home-slider"] li .slidetItemContent, body.cms-home [class^="home-slider"] li .slidetItemContent .slideText, body.cms-home [class*=" home-slider"] li, body.cms-home [class*=" home-slider"] li .slidetItemContent, body.cms-home [class*=" home-slider"] li .slidetItemContent .slideText, body.cms-home-modular [class^="home-slider"] li, body.cms-home-modular [class^="home-slider"] li .slidetItemContent, body.cms-home-modular [class^="home-slider"] li .slidetItemContent .slideText, body.cms-home-modular [class*=" home-slider"] li, body.cms-home-modular [class*=" home-slider"] li .slidetItemContent, body.cms-home-modular [class*=" home-slider"] li .slidetItemContent .slideText {
  height: 100%;
}
body.cms-home [class^="home-slider"] li .slidetItemContent, body.cms-home [class*=" home-slider"] li .slidetItemContent, body.cms-home-modular [class^="home-slider"] li .slidetItemContent, body.cms-home-modular [class*=" home-slider"] li .slidetItemContent {
  width: 100%;
  display: table;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
body.cms-home [class^="home-slider"] li .slidetItemContent .slideText, body.cms-home [class*=" home-slider"] li .slidetItemContent .slideText, body.cms-home-modular [class^="home-slider"] li .slidetItemContent .slideText, body.cms-home-modular [class*=" home-slider"] li .slidetItemContent .slideText {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
body.cms-home [class^="home-slider"] .slideTitle, body.cms-home [class*=" home-slider"] .slideTitle, body.cms-home-modular [class^="home-slider"] .slideTitle, body.cms-home-modular [class*=" home-slider"] .slideTitle {
  font: bold 102px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 0.706;
  text-align: center;
  text-transform: none;
  font-size: 51px;
}
body.cms-home [class^="home-slider"] .slideSubtitle, body.cms-home [class*=" home-slider"] .slideSubtitle, body.cms-home-modular [class^="home-slider"] .slideSubtitle, body.cms-home-modular [class*=" home-slider"] .slideSubtitle {
  font: normal 15px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 4.8;
  text-align: center;
  text-transform: uppercase;
}
body.cms-home [class^="home-slider"] .slideTitle, body.cms-home [class^="home-slider"] .slideSubtitle, body.cms-home [class*=" home-slider"] .slideTitle, body.cms-home [class*=" home-slider"] .slideSubtitle, body.cms-home-modular [class^="home-slider"] .slideTitle, body.cms-home-modular [class^="home-slider"] .slideSubtitle, body.cms-home-modular [class*=" home-slider"] .slideTitle, body.cms-home-modular [class*=" home-slider"] .slideSubtitle {
  display: block;
  transition: font-size 0.2s ease-in-out;
  -moz-transition: font-size 0.2s ease-in-out;
  -webkit-transition: font-size 0.2s ease-in-out;
  -ms-transition: font-size 0.2s ease-in-out;
  -o-transition: font-size 0.2s ease-in-out;
}
body.cms-home [class^="home-slider"] .slideTitle.white, body.cms-home [class^="home-slider"] .slideSubtitle.white, body.cms-home [class*=" home-slider"] .slideTitle.white, body.cms-home [class*=" home-slider"] .slideSubtitle.white, body.cms-home-modular [class^="home-slider"] .slideTitle.white, body.cms-home-modular [class^="home-slider"] .slideSubtitle.white, body.cms-home-modular [class*=" home-slider"] .slideTitle.white, body.cms-home-modular [class*=" home-slider"] .slideSubtitle.white {
  color: #FFFFFF;
}
body.cms-home [class^="home-slider"] .slideTitle.grey, body.cms-home [class^="home-slider"] .slideSubtitle.grey, body.cms-home [class*=" home-slider"] .slideTitle.grey, body.cms-home [class*=" home-slider"] .slideSubtitle.grey, body.cms-home-modular [class^="home-slider"] .slideTitle.grey, body.cms-home-modular [class^="home-slider"] .slideSubtitle.grey, body.cms-home-modular [class*=" home-slider"] .slideTitle.grey, body.cms-home-modular [class*=" home-slider"] .slideSubtitle.grey {
  color: #9E9E9E;
}
body.cms-home [class^="home-slider"] .slideTitle.CenturyGothicPro-Bold, body.cms-home [class^="home-slider"] .slideSubtitle.CenturyGothicPro-Bold, body.cms-home [class*=" home-slider"] .slideTitle.CenturyGothicPro-Bold, body.cms-home [class*=" home-slider"] .slideSubtitle.CenturyGothicPro-Bold, body.cms-home-modular [class^="home-slider"] .slideTitle.CenturyGothicPro-Bold, body.cms-home-modular [class^="home-slider"] .slideSubtitle.CenturyGothicPro-Bold, body.cms-home-modular [class*=" home-slider"] .slideTitle.CenturyGothicPro-Bold, body.cms-home-modular [class*=" home-slider"] .slideSubtitle.CenturyGothicPro-Bold {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
body.cms-home .std #home-products h2, body.cms-home-modular .std #home-products h2 {
  font: normal 16px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 2.25;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  max-width: 1523px;
  margin: 0 auto;
  margin: 25px auto;
}
body.cms-home .std #home-products .products-grid > li, body.cms-home-modular .std #home-products .products-grid > li {
  margin-left: 20px;
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

.category-title {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.category-title h1 {
  font: normal 30px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 2.4;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 24px;
}
.category-title.brand-title h1 {
  margin: 0;
  text-transform: capitalize;
}

span.toggleDescription {
  display: block;
  text-align: center;
  margin: 0 0 15px 0;
  cursor: pointer;
}
span.toggleDescription i {
  display: inline-block;
  font-size: 25px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
span.toggleDescription.active i {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.catalog-category-view #sln-overlay-products-list {
  z-index: 2;
}

.category-image {
  margin-bottom: 1.5em;
}

.category-products, .category-description, .category-image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.category-description {
  display: none;
  width: 100%;
  max-width: 950px;
  margin: 10px auto 20px auto;
  font: normal 15px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.4;
  text-align: justify;
  text-transform: none;
}

.brand-title + .category-description {
  display: block;
  display: none;
}

.products-list .action .button,
.products-grid .actions .button {
  white-space: normal;
}

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #000000;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #000000;
}
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 {
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  margin-bottom: 0;
}
.products-grid .product-name a,
.products-list .product-name a {
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.125;
  text-align: center;
  text-transform: none;
  margin-bottom: 10px;
  display: block;
  font-size: 12px;
  margin: 5px 0;
}
.products-grid .product-name a:hover,
.products-list .product-name a:hover {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.products-grid .product-description,
.products-list .description {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin: 25px 0 5px 0;
  font-size: 11px;
}

.products-grid .quick-load {
  cursor: pointer;
  display: block;
  width: 100%;
  margin: 0 auto;
  height: 27px;
  line-height: 35px;
  text-align: center;
}
.products-grid .quick-load > .icon-ic_add_black_24px {
  font-size: 16px;
  font-weight: bold;
}

/* ============================================ *
* Product Grid
* ============================================ */
.products-grid {
  position: relative;
  margin: 0 -35px;
}
.products-grid > li {
  position: relative;
  float: left;
  width: calc(28.7% - 5.5%);
  margin: 0 0.9% 21px;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  z-index: 1;
}
.products-grid > li .product-label, .products-grid > li .icon-wishlist {
  position: absolute;
  top: 20px;
  z-index: 100;
}
.products-grid > li .add-to-cart-buttons, .products-grid > li .button {
  padding: 0;
}
.products-grid > li .add-to-cart-buttons {
  width: 90%;
  margin: 0 auto;
}
.products-grid > li .button {
  width: 100%;
  max-width: 60%;
}
.products-grid > li .product-label {
  left: 20px;
  font: normal 15px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 2.769;
  text-align: center;
  text-transform: uppercase;
  display: block;
  transition: font-size 0.2s ease-in-out;
  -moz-transition: font-size 0.2s ease-in-out;
  -webkit-transition: font-size 0.2s ease-in-out;
  -ms-transition: font-size 0.2s ease-in-out;
  -o-transition: font-size 0.2s ease-in-out;
  line-height: 2;
}
.products-grid > li .icon-wishlist {
  right: 20px;
}
.products-grid > li .icon-wishlist a {
  font-size: 20px;
}
.products-grid > li .icon-wishlist:hover a:before {
  content: '\e90c';
}
.products-grid > li .sharing {
  margin: 20px 0;
  text-align: center;
  position: relative;
}
.products-grid > li .sharing .sharing-titles {
  margin: 15px auto 50px auto;
  width: 100%;
  max-width: 170px;
}
.products-grid > li .sharing .sharing-titles > span, .products-grid > li .sharing .sharing-titles a {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #939393;
  line-height: 0.857;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  padding: 0 5px;
}
.products-grid > li .sharing .sharing-titles > span:hover, .products-grid > li .sharing .sharing-titles a:hover {
  text-decoration: none;
  color: #000000;
}
.products-grid > li .sharing .sharing-titles:after {
  content: '';
  display: table;
  clear: both;
}
.products-grid > li .sharing ul {
  position: absolute;
  bottom: -35px;
  width: 100%;
  left: auto;
}
.products-grid > li .sharing ul li {
  display: inline-block;
  padding: 0 9px;
  margin: 0;
}
.products-grid > li .sharing ul li a {
  font-size: 18px;
  line-height: 28px;
}
.products-grid > li .icon-wishlist,
.products-grid > li .sharing ul,
.products-grid > li .sharing .sharing-titles,
.products-grid > li .free-shipping,
.products-grid > li .share,
.products-grid > li .size-guide-link {
  display: none;
}
.products-grid > li:hover, .products-grid > li.quickshopping-enabled {
  box-shadow: 0 6.99px 34.96px 8.04px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.products-grid > li:hover .icon-wishlist, .products-grid > li.quickshopping-enabled .icon-wishlist {
  display: block;
}
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  border: none;
  display: block;
  overflow: hidden;
}
.products-grid .product-image img {
  width: 100%;
  height: auto;
  display: block;
}
.products-grid .product-info {
  position: relative;
}
.products-grid .back-quick {
  position: absolute;
  right: 45px;
  top: 15px;
  width: 100%;
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  text-align: right;
}
.products-grid .actions {
  padding-top: 10px;
  position: absolute;
  bottom: 0;
  min-height: 85px;
  width: 100%;
}
.products-grid .ratings .rating-box {
  margin: 0 auto;
}
.products-grid .ratings .amount {
  display: none;
}
.products-grid .price-box {
  color: #000000;
  font-size: 13px;
  margin: 0 0 5px;
  margin: 0;
  line-height: 1;
}
.products-grid .price-box .price {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.231;
  text-align: center;
  text-transform: none;
}
.products-grid .price-box .old-price .price {
  color: #9E9E9E;
  text-decoration: line-through;
}
.products-grid .price-box .special-price .price {
  color: #D8593B;
}
.products-grid .price-box .price, .products-grid .price-box .old-price .price, .products-grid .price-box .special-price .price {
  font-size: 11px;
}
.products-grid .add-to-links {
  margin-bottom: 0;
}
.products-grid .quickshooping {
  position: relative;
  z-index: 2;
}
.products-grid .quickshooping .extra-info,
.products-grid .quickshooping .product-options p.required,
.products-grid .quickshooping .short-description {
  display: none;
}
.products-grid > li.quickshopping-enabled {
  position: fixed !important;
  left: 0 !important;
  top: 50px !important;
  bottom: 0;
  z-index: 100;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  overflow-y: auto;
}
.products-grid > li.quickshopping-enabled .quick-load {
  display: none;
}
.products-grid > li.quickshopping-enabled .sharing-titles {
  display: block;
}
.products-grid > li.quickshopping-enabled .product-info {
  position: fixed;
}
.products-grid > li.quickshopping-selected {
  box-shadow: 0 6.99px 34.96px 8.04px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.products-grid > li.quickshopping-selected .quick-load {
  display: block;
}
.products-grid > li.quickshopping-selected .icon-wishlist {
  display: block;
}
.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

#form-products {
  display: none;
  width: 60%;
  max-width: 100%;
  margin: 10px auto 0 auto;
}
#form-products .buttons-set {
  text-align: center;
}
#form-products .button {
  max-width: 80%;
  float: none;
  margin: 0 auto;
}

.button-more-info {
  margin: 10px auto 0 0;
}

.catalogsearch-result-index .products-grid > li .sharing ul li {
  padding: 0 4px;
}

.catalog-product-view #super-product-table li.item,
.catalogsearch-result-index .products-grid li.item,
.catalog-category-view .products-grid li.item,
.brand-index-view .products-grid li.item {
  position: relative;
  padding-bottom: 132px;
}
.catalog-product-view #super-product-table li.item .product-info,
.catalogsearch-result-index .products-grid li.item .product-info,
.catalog-category-view .products-grid li.item .product-info,
.brand-index-view .products-grid li.item .product-info {
  background: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  min-height: 132px;
}
.catalog-product-view #super-product-table li.item .quickshooping,
.catalogsearch-result-index .products-grid li.item .quickshooping,
.catalog-category-view .products-grid li.item .quickshooping,
.brand-index-view .products-grid li.item .quickshooping {
  display: none;
}
.catalog-product-view #super-product-table li.item.item-look,
.catalogsearch-result-index .products-grid li.item.item-look,
.catalog-category-view .products-grid li.item.item-look,
.brand-index-view .products-grid li.item.item-look {
  padding-bottom: 161px;
}
.catalog-product-view #super-product-table li.item.item-look .sharing .sharing-titles,
.catalogsearch-result-index .products-grid li.item.item-look .sharing .sharing-titles,
.catalog-category-view .products-grid li.item.item-look .sharing .sharing-titles,
.brand-index-view .products-grid li.item.item-look .sharing .sharing-titles {
  display: block;
}
.catalog-product-view #super-product-table li.item.item-look .button-look,
.catalogsearch-result-index .products-grid li.item.item-look .button-look,
.catalog-category-view .products-grid li.item.item-look .button-look,
.brand-index-view .products-grid li.item.item-look .button-look {
  margin: 30px 0;
}

.catalog-product-view #super-product-table > li.quickshopping-enabled,
.catalogsearch-result-index .products-grid > li.quickshopping-enabled,
.catalog-category-view .products-grid > li.quickshopping-enabled,
.brand-index-view .products-grid > li.quickshopping-enabled {
  padding-bottom: 274px;
}
.catalog-product-view #super-product-table > li.quickshopping-enabled .product-info,
.catalogsearch-result-index .products-grid > li.quickshopping-enabled .product-info,
.catalog-category-view .products-grid > li.quickshopping-enabled .product-info,
.brand-index-view .products-grid > li.quickshopping-enabled .product-info {
  position: fixed;
  padding-bottom: 40px;
}

.products-grid .product-image, .products-list .product-image {
  position: relative;
  margin-bottom: 0;
}
.products-grid .product-image:before, .products-grid .product-image:after, .products-list .product-image:before, .products-list .product-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.products-grid .product-image:before, .products-list .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.products-grid .product-image:after, .products-list .product-image:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 24px;
  color: #000000;
  display: inline-table;
  text-decoration: none;
  -webkit-animation: icon-spinner 2s infinite linear;
  -moz-animation: icon-spinner 2s infinite linear;
  -o-animation: icon-spinner 2s infinite linear;
  animation: icon-spinner 2s infinite linear;
  z-index: 3;
  text-align: center;
}
.products-grid .product-image.loading, .products-list .product-image.loading {
  position: relative;
}
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after, .products-list .product-image.loading:before, .products-list .product-image.loading:after {
  display: block;
}
.products-grid .product-image img, .products-list .product-image img {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  opacity: 1;
  position: relative;
  z-index: 4;
}
.products-grid .product-image:after, .products-list .product-image:after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  margin: -12px 0 0 -12px;
  width: auto;
  height: auto;
  display: none;
}

.catalog-product-view .product-view-grouped #super-product-table {
  width: auto;
}
.catalog-product-view .product-view-grouped #super-product-table li .sharing {
  display: none;
}
.catalog-product-view .product-view-grouped #super-product-table .shop-look-grouped-item .grouped-associated-container > a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 300px;
}
.catalog-product-view .product-view-grouped #super-product-table .shop-look-grouped-item .grouped-associated-container > a img {
  width: 125%;
  max-width: 125%;
  height: auto;
  position: absolute;
  top: -12.5%;
  left: -12.5%;
}
.catalog-product-view .product-view-grouped #super-product-table .shop-look-grouped-item .product-options .configurable-swatch-list li {
  width: 14px;
  margin: 0 4px;
}
.catalog-product-view .product-view-grouped #super-product-table .shop-look-grouped-item .product-options .configurable-swatch-list li .swatch-label {
  position: relative;
  width: 12px;
  height: 12px;
}
.catalog-product-view .product-view-grouped #super-product-table .shop-look-grouped-item .product-options .configurable-swatch-list li .swatch-label img {
  position: absolute;
  left: 0;
  top: 0;
}
.catalog-product-view .product-view-grouped #super-product-table .shop-look-grouped-item .product-options #configurable_swatch_size li {
  width: 100%;
  margin: 0;
}
.catalog-product-view .product-view-grouped #super-product-table .shop-look-grouped-item .product-options #configurable_swatch_size li .swatch-label {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
.catalog-product-view .product-view-grouped #super-product-table .show-options {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
.catalog-product-view .product-view-grouped .add-to-cart-wrapper .product-shop {
  position: relative;
  top: auto;
  bottom: auto;
  right: 0;
  opacity: 1;
  overflow: visible;
}
.catalog-product-view .product-view-grouped .add-to-cart-wrapper .product-shop .product-options-bottom, .catalog-product-view .product-view-grouped .add-to-cart-wrapper .product-shop .size-guide-link, .catalog-product-view .product-view-grouped .add-to-cart-wrapper .product-shop .qty-wrapper {
  display: none;
}
.catalog-product-view .product-view-grouped .block-related, .catalog-product-view .product-view-grouped .box-up-sell {
  padding: 0;
  opacity: 1;
  overflow: visible;
}

/* ============================================ *
 * Product List
 * ============================================ */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.products-list > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
}
.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-list > li .product-image {
  float: left;
  width: 33.33333%;
}
.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}

.products-list .product-shop {
  float: right;
  width: 66.66667%;
  padding-left: 20px;
}
.products-list .product-shop .product-name {
  margin-bottom: 0;
}
.products-list .product-shop .ratings {
  margin: 0;
}
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
.products-list .product-shop .price-box {
  margin-top: 0;
}
.products-list .product-shop .action {
  margin: 7px 0;
}
.products-list .product-shop .desc {
  margin-top: 7px;
}
.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 65%;
  overflow: hidden;
}
.products-list .product-shop .product-secondary {
  float: right;
  width: 35%;
  text-align: right;
  clear: right;
}

.products-grid {
  margin: 0 -5px;
}
.products-grid > li {
  width: calc(50% - 5px);
  margin: 0 2.5px;
}
.products-grid > li .product-label {
  font-weight: bold;
  font-size: 12px;
  top: 5px;
  left: 10px;
}
.products-grid > li #form-products {
  width: 100%;
}
.products-grid > li #form-products .buttons-set button.button {
  min-width: 0;
  height: 24px;
  line-height: 24px;
}
.products-grid > li .button.button-more-info,
.products-grid > li input[type=email] {
  max-width: 80%;
  height: 24px;
  line-height: 24px;
}

.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 60%;
  padding-right: 20px;
}
.products-list .product-shop .product-secondary {
  float: right;
  width: 40%;
}

/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 97px;
}
.mini-products-list .product-details {
  margin-left: 110px;
}
.mini-products-list .product-details .product-name {
  padding-top: 10px;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}
.mini-products-list .truncated .truncated_full_value {
  position: relative;
  z-index: 300;
  float: left;
  text-transform: uppercase;
  width: 100%;
}
.mini-products-list .item-options dd {
  margin: 0;
}

.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both;
}
.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}
.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}
.mini-products-images-list li.item .product-image {
  display: block;
}
.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-image {
  display: none;
}
.category-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
#toggle-filters {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 72px;
  text-align: left;
  text-transform: uppercase;
  line-height: 57px;
}
#toggle-filters i {
  font-size: 23px;
  position: relative;
  top: 5px;
  display: inline-block;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
#toggle-filters i.clicked {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 7px;
}

.block-layered-nav {
  display: none;
  width: 100%;
  max-width: 1523px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -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: #4C4646;
  position: relative;
  background-color: #F4F4F4;
  cursor: pointer;
}
.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 #000000;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}
.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}
.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  padding: 5px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 2.364;
  text-align: left;
  text-transform: uppercase;
}
.block-layered-nav dl dd ol > li > span.selected, .block-layered-nav dl dd ol > li > span:hover, .block-layered-nav dl dd ol > li > span.selecte .price, .block-layered-nav dl dd ol > li > span:hover .price, .block-layered-nav dl dd ol > li > a.selected, .block-layered-nav dl dd ol > li > a:hover, .block-layered-nav dl dd ol > li > a.selecte .price, .block-layered-nav dl dd ol > li > a:hover .price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #000000;
}
.block-layered-nav dl dd ol > li > span:before, .block-layered-nav dl dd ol > li > a:before {
  display: inline-block;
  border: solid 1px #9E9E9E;
  width: 10px;
  height: 10px;
  margin: 0 10px 0 0;
  content: '';
  position: relative;
  top: 1px;
}
.block-layered-nav dl dd ol > li > span.selected:before, .block-layered-nav dl dd ol > li > a.selected:before {
  display: inline-block;
  border: solid 1px #9E9E9E;
  width: 10px;
  height: 10px;
  margin: 0 10px 0 0;
  content: '';
  position: relative;
  top: 1px;
  background-color: #000000;
}
.block-layered-nav dl dd ol > li > a .count {
  color: #939393;
}
.block-layered-nav .block-content {
  margin: 0;
}
.block-layered-nav .block-content .filter-content {
  float: left;
  padding-right: 10px;
}
.block-layered-nav .block-content .filter-content:last-child {
  padding-right: 0;
}
.block-layered-nav .block-content .sln-nav[data-count-items="1"] .filter-content {
  width: 100%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="2"] .filter-content {
  width: 50%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="3"] .filter-content {
  width: 33.33333%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="4"] .filter-content {
  width: 25%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="5"] .filter-content {
  width: 20%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="6"] .filter-content {
  width: 16.66667%;
}
.block-layered-nav .block-content > dl dd {
  border: 1px solid #C7C7C7;
  padding: 20px;
  height: 185px;
}
.block-layered-nav .block-content > dl dt {
  padding-left: 0;
  font: normal 14px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.286;
  text-align: left;
  text-transform: none;
}
.block-layered-nav .block-content > dl dt:after {
  display: none;
}
.block-layered-nav .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.block-layered-nav .currently {
  display: none;
}
.block-layered-nav .currently .block-subtitle {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}
.block-layered-nav .currently ol {
  display: none;
  padding-left: 10px;
  margin-bottom: 10px;
}
.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}
.block-layered-nav .currently ol li .label {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}
.block-layered-nav .actions {
  text-align: right;
  margin-bottom: 7px;
}
.block-layered-nav:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav {
  margin-bottom: 20px;
}
.block-layered-nav .block-content .sln-nav[data-count-items="1"] .filter-content {
  width: 100%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="2"] .filter-content {
  width: 100%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="3"] .filter-content {
  width: 100%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="4"] .filter-content {
  width: 100%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="5"] .filter-content {
  width: 100%;
}
.block-layered-nav .block-content .sln-nav[data-count-items="6"] .filter-content {
  width: 100%;
}
.block-layered-nav .block-content > dl dt {
  line-height: 23px;
  padding: 10px 0 10px 10px;
  cursor: pointer;
}
.block-layered-nav .block-content > dl dt .icon-ic_arrow_drop_down_black_24px {
  float: right;
  font-size: 23px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.block-layered-nav .block-content > dl dt.clicked i {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.block-layered-nav .block-content > dl .filter-content {
  padding-right: 0;
}
.block-layered-nav .block-content > dl dd {
  display: none;
  height: auto;
  max-height: 185px;
  overflow-y: auto;
}

#infinite-scroll-loader {
  text-align: center;
  margin: 0 10px;
  width: 100%;
}
#infinite-scroll-loader img {
  display: inline-block;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.product-view {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.product-view .product-essential {
  margin: 45px 0;
  position: relative;
  margin: 15px 0 0 0;
}
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .col-left {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.product-view #product-data-container {
  position: relative;
}
.product-view #product-data-container:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #000000;
  font-size: 16px;
  text-align: center;
  border: 0;
}
.product-view .product-shop {
  width: 100%;
  text-align: center;
  padding: 0;
  z-index: 99;
  max-height: calc(100vh - 300px);
  max-height: none;
  padding: 0 15px 30px 15px;
}
.product-view .product-shop .product-brand {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin: 25px 0 5px 0;
}
.product-view .product-shop .product-manufacturer {
  color: #000000;
}
.product-view .product-shop .product-name {
  display: none;
}
.product-view .product-shop .product-name .h1 {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.125;
  text-align: center;
  text-transform: none;
  margin-bottom: 10px;
  display: block;
}
.product-view .product-shop .product-sku {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left;
  width: 70%;
}
.product-view .product-shop .short-description {
  clear: both;
}
.product-view .product-shop .short-description .std {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.364;
  text-align: center;
  text-transform: none;
}
.product-view .product-shop .materials {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.364;
  text-align: center;
  text-transform: none;
}
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
.product-view .product-shop .availability {
  font-size: 16px;
}
.product-view .product-shop .price-box {
  color: #000000;
  font-size: 13px;
  margin: 0 0 5px;
}
.product-view .product-shop .price-box .price {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.231;
  text-align: center;
  text-transform: none;
}
.product-view .product-shop .price-box .special-price .price {
  color: #D8593B;
}
.product-view .product-shop .price-box .old-price .price {
  text-decoration: line-through;
  color: #9E9E9E;
}
.product-view .product-shop .price-box .special-price, .product-view .product-shop .price-box .old-price {
  padding: 0 5px;
}
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #000000;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .product-shop .size-guide-link {
  display: inline-block;
  font: italic 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: inherit;
  text-align: left;
  text-transform: none;
  margin: 0 10px;
}
.product-view .product-shop .size-guide-link:hover {
  text-decoration: underline;
}
.product-view .product-shop .product-brand {
  margin: 25px 0 10px 0;
}
.product-view .product-shop .short-description.only-mobile h3 {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.143;
  text-align: center;
  text-transform: none;
  margin: 15px 0 20px 0;
  cursor: pointer;
}
.product-view .product-shop .short-description.only-mobile h3 i {
  display: inline-block;
  font-size: 23px;
  position: relative;
  top: 6px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.product-view .product-shop .short-description.only-mobile h3.active i {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product-view .product-shop .short-description.only-mobile .std {
  margin: 0 0 30px 0;
}
.product-view .product-shop .size-guide-link {
  margin: 0 10px 0 0;
}
.product-view .product-shop:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop #payment_form_pagantis {
  margin: 20px 0 0 0;
}
.product-view .product-shop #payment_form_pagantis label {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}

#pmt-select-box {
  margin: 5px 20px 20px 20px;
}
#pmt-select-box label, #pmt-select-box #pmt-result {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
#pmt-select-box label {
  display: block;
}
#pmt-select-box #pmt-result {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
}
#pmt-select-box #pmt-result > span, #pmt-select-box #pmt-result > span .price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 15px;
}
#pmt-select-box #pmt-result > span {
  padding: 0 5px;
}
#pmt-select-box select {
  border: 1px solid #4C4646;
  margin: 0 auto 20px auto;
  width: 240px;
  max-width: 100%;
}

@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  .product-view .product-shop {
    max-width: 275px;
    right: 30px;
  }
}
.block-related {
  width: 100%;
  float: none;
  clear: both;
}

.block-related, .box-up-sell {
  margin: 0 auto;
  padding-right: 70px;
  overflow: visible;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  width: 100%;
  max-width: 1523px;
  margin: 0 auto;
  padding-right: 0;
  padding-bottom: 30px;
}
.block-related .bx-wrapper, .box-up-sell .bx-wrapper {
  max-width: 100% !important;
}
.block-related .bx-wrapper .bx-viewport, .box-up-sell .bx-wrapper .bx-viewport {
  height: auto !important;
  overflow: visible !important;
}
.block-related .bx-wrapper .bx-controls-direction a, .box-up-sell .bx-wrapper .bx-controls-direction a {
  text-indent: 0;
  display: block;
  color: #9E9E9E;
  font-size: 30px;
}
.block-related .bx-wrapper .bx-controls-direction a:hover, .box-up-sell .bx-wrapper .bx-controls-direction a:hover {
  color: #000000;
}
.block-related .block-title, .box-up-sell .block-title {
  margin: 0;
  padding: 0;
}
.block-related .block-title h2, .box-up-sell .block-title h2 {
  margin: 50px 0;
  font: normal 36px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: none;
  font-size: 18px;
  margin: 0 0 30px 0;
}
.block-related .products-grid, .box-up-sell .products-grid {
  font-size: 0;
}
.block-related:after, .box-up-sell:after {
  content: '';
  display: table;
  clear: both;
}

#search_autocomplete .block-related .products-grid,
.catalogsearch-result-index .main .products-grid, .block-related .products-grid, .box-up-sell .products-grid {
  margin: 0 -7px;
  text-align: center;
  max-width: calc(100% + 14px);
}
#search_autocomplete .block-related .products-grid.no-max-width,
.catalogsearch-result-index .main .products-grid.no-max-width, .block-related .products-grid.no-max-width, .box-up-sell .products-grid.no-max-width {
  max-width: inherit;
}
#search_autocomplete .block-related .products-grid > li,
.catalogsearch-result-index .main .products-grid > li, .block-related .products-grid > li, .box-up-sell .products-grid > li {
  width: calc(16.6666666% - 14px);
  margin: 0 7px;
  float: none;
  display: inline-block;
  vertical-align: top;
  opacity: 1;
}
#search_autocomplete .block-related .products-grid > li .product-description,
.catalogsearch-result-index .main .products-grid > li .product-description, .block-related .products-grid > li .product-description, .box-up-sell .products-grid > li .product-description {
  font-size: 11px;
}
#search_autocomplete .block-related .products-grid > li .product-name a,
#search_autocomplete .block-related .products-grid > li .price-box .price,
.catalogsearch-result-index .main .products-grid > li .product-name a,
.catalogsearch-result-index .main .products-grid > li .price-box .price, .block-related .products-grid > li .product-name a,
.block-related .products-grid > li .price-box .price, .box-up-sell .products-grid > li .product-name a,
.box-up-sell .products-grid > li .price-box .price {
  font-size: 12px;
}
#search_autocomplete .block-related .products-grid > li:hover,
.catalogsearch-result-index .main .products-grid > li:hover, .block-related .products-grid > li:hover, .box-up-sell .products-grid > li:hover {
  box-shadow: 0 6.99px 14.96px 8.04px rgba(0, 0, 0, 0.1);
}
#search_autocomplete .block-related .products-grid > li,
.catalogsearch-result-index .main .products-grid > li, .block-related .products-grid > li, .box-up-sell .products-grid > li {
  width: calc(50% - 5px);
  margin: 0 2.5px;
}

.block-related .item > a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 288px;
}
.block-related .item > a img {
  width: 125%;
  max-width: 125%;
  height: auto;
  position: absolute;
  top: -12.5%;
  left: -12.5%;
}

.catalogsearch-result-index .main {
  padding: 0;
}

.catalogsearch-result-index .main,
#search_autocomplete .block-related {
  opacity: 1;
  width: 86%;
  position: relative;
  left: 7px;
}
.catalogsearch-result-index .main .products-grid > li,
#search_autocomplete .block-related .products-grid > li {
  float: left;
  display: inline-block;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.catalogsearch-result-index .main .products-grid > li .quick-load,
#search_autocomplete .block-related .products-grid > li .quick-load {
  display: none;
}

#search_autocomplete .block-related .products-grid,
.catalogsearch-result-index .main .products-grid {
  margin: 0 -5px;
}

.block-related .products-grid, .box-up-sell .products-grid {
  margin: 0;
}

#search_autocomplete .block-related .products-grid li:nth-child(6n+1),
.catalogsearch-result-index .main .products-grid li:nth-child(6n+1) {
  clear: left;
}

.share-detail {
  display: none;
}

.catalog-product-view .share-detail {
  /*position: absolute;*/
  left: auto;
  width: 100%;
}
.catalog-product-view .share-detail ul li {
  display: inline-block;
  margin: 0 5px;
  position: relative;
}

.share-detail ul li, .sharing ul li {
  display: inline-block;
  margin: 0 5px;
  position: relative;
}
.share-detail ul li:first-child, .sharing ul li:first-child {
  margin-left: 0;
}
.share-detail ul li:last-child, .sharing ul li:last-child {
  margin-right: 0;
}
.share-detail ul li a, .sharing ul li a {
  font-size: 20px;
}
.share-detail ul li.pinterest-li > span, .sharing ul li.pinterest-li > span {
  opacity: 0;
}
.share-detail ul li #fake-pinterest, .sharing ul li #fake-pinterest {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: auto;
  width: 100%;
  height: 100%;
}

.send-friend {
  padding-top: 46px;
}
.send-friend .fields {
  position: relative;
}
.send-friend .fields.additional-row {
  padding-top: 25px;
}
.send-friend .fields .btn-remove {
  position: absolute;
  right: 0;
  top: 0;
}
.send-friend .buttons-set > button.button {
  margin-left: 10px;
}

.product-img-box {
  width: 60%;
  float: none;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
  margin: 0;
  padding: 0 15px;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image .icon-fullscreen, .product-img-box .product-image .icon-search-3 {
  display: block;
  cursor: pointer;
  font-size: 20px;
  background: #FFFFFF;
  color: #000000;
  padding: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.product-img-box .product-image .icon-fullscreen:hover, .product-img-box .product-image .icon-search-3:hover {
  background: #000000;
  color: #FFFFFF;
}
.product-img-box .product-image img {
  width: 100%;
  height: auto;
}
.product-img-box .product-image-gallery > li {
  margin: 0 auto 12px auto;
}
.product-img-box .product-image-gallery > li:last-child {
  margin-bottom: 0;
}

.product-view-grouped .product-essential {
  margin-top: 0;
}
.product-view-grouped .page-title h1, .product-view-grouped .page-title .h1 {
  font: normal 30px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: none;
}
.product-view-grouped .product-img-box {
  width: 100%;
  float: left;
  padding: 0 5% 70px 5%;
}
.product-view-grouped .product-image-zoom {
  padding: 0;
}
.product-view-grouped .grouped-items-table {
  text-align: center;
}
.product-view-grouped .grouped-items-table > li {
  display: inline-block;
  float: none;
}
.product-view-grouped .product-options .swatch-attr {
  margin: 0 0 10px 0;
}
.product-view-grouped .product-options .swatch-attr.last {
  margin: 0;
}
.product-view-grouped .buttons-set {
  text-align: center;
  margin: 50px auto 70px auto;
}
.product-view-grouped .buttons-set .button {
  float: none;
  display: inline-block;
}

.product-view-grouped .page-title h1, .product-view-grouped .page-title .h1 {
  font-size: 24px;
  margin: 25px 0 5px 0;
}
.product-view-grouped .page-title .h1 {
  display: block;
}
.product-view-grouped .product-img-box {
  padding: 15px 5% 0 5%;
}
.product-view-grouped .grouped-items-table > li {
  float: left;
}
.product-view-grouped .box-up-sell .products-grid > li.quickshopping-enabled {
  width: 100%;
}

.product-image-zoom {
  padding-right: 70px;
}

.product-image-zoom {
  padding-right: 0;
  display: none;
}

.product-img-box #gallery-aux {
  display: none;
}

.product-image-gallery {
  position: relative;
  cursor: pointer;
  max-width: 756px;
  margin: 0 auto;
  max-width: none;
}
.product-image-gallery li {
  display: block;
  opacity: 0;
}
.product-image-gallery .gallery-image, .product-image-gallery .gallery-image.hidden {
  display: block;
}

.product-image-thumbs div {
  display: inline-block;
}
.product-image-thumbs div:first-child {
  margin-left: -1px;
}
.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent;
}

.no-touch .product-image-thumbs a:hover {
  border-color: #c7c7c7;
}

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
.product-view .add-to-cart-buttons {
  display: inline-block;
  position: relative;
}
.product-view .add-to-cart-buttons #ajax_loader {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #000000;
}
.product-view .add-to-cart-buttons #ajax_loader .la-square-spin {
  color: #FFFFFF;
  width: 25px;
  height: 25px;
  margin: 7px auto;
}
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
.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;
}
.product-view .add-to-cart-buttons .button {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-top: 5px;
}
.product-view .free-shipping {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0;
}
.product-view .share {
  position: relative;
}
.product-view .share > span {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #939393;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.product-view .share > span:hover {
  color: #000000;
}
.product-view .share .link-wishlist {
  font-size: 20px;
  position: relative;
  top: 5px;
  margin-left: 10px;
}
.product-view .share .link-wishlist:hover:before {
  content: "\e90c";
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

#out-of-stock-subscription {
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: absolute;
  bottom: 0;
  z-index: 100;
  background: #FFFFFF;
  padding: 30px 15px;
}
#out-of-stock-subscription .out-title {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.231;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
#out-of-stock-subscription p {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.364;
  text-align: center;
  text-transform: none;
}
#out-of-stock-subscription .control {
  margin: 5px 0 10px 0;
  text-align: left;
}
#out-of-stock-subscription .control label {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.364;
  text-align: left;
  text-transform: none;
  text-decoration: underline;
}
#out-of-stock-subscription .control .input-box {
  display: block;
  float: none;
}
#out-of-stock-subscription .close {
  position: absolute;
  top: 29px;
  right: 13px;
  font-size: 15px;
  cursor: pointer;
}

.opc-index-index #out-of-stock-subscription {
  padding: 0 !important;
}

.add-to-cart-buttons {
  position: relative;
  display: inline-block;
}
.add-to-cart-buttons #ajax_loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #000000;
}
.add-to-cart-buttons #ajax_loader .la-square-spin {
  color: #FFFFFF;
  width: 25px;
  height: 25px;
  margin: 7px auto;
}

.catalog-category-view .add-to-cart-buttons #ajax_loader {
  top: 0;
}

/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box .or {
  display: none;
}

.product-view .add-to-links {
  clear: both;
  margin-top: 0px;
  margin-right: 15px;
  float: left;
}
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-links li {
  float: left;
}
.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #4C4646;
}
.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}
.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

.product-view .sharing-links {
  float: left;
}
.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
}
.product-view .sharing-links a {
  display: block;
  width: 26px;
  height: 26px;
  font-size: 20px;
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}

.product-collateral {
  clear: both;
}
.product-collateral .toggle-tabs {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #4C4646;
  background-color: #F4F4F4;
}
.product-collateral .toggle-tabs li {
  float: left;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}
.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;
}
.product-collateral .toggle-tabs li.current {
  border-right: 1px solid #4C4646;
  border-left: 1px solid #4C4646;
}
.product-collateral .toggle-tabs li.current > span {
  background-color: #FFFFFF;
  z-index: 5;
}
.product-collateral .toggle-tabs li.current span,
.product-collateral .toggle-tabs li:hover span {
  color: #000000;
}
.product-collateral .toggle-tabs li:first-child {
  border-left: none;
}
.product-collateral .toggle-tabs:after {
  content: '';
  display: table;
  clear: both;
}
.product-collateral > dl {
  width: 100%;
}
.product-collateral > dl > dt {
  display: none;
}
.product-collateral > dl > dd {
  width: 100%;
  display: none;
  padding: 15px;
  border: 1px solid #4C4646;
  border-top: 0;
}
.product-collateral > dl > dd.current {
  display: block;
}

.collateral-tabs dd h2 {
  display: none;
}

.box-collateral {
  clear: both;
}

.product-view .product-shop .product-name {
  display: block;
}

.product-img-box .product-name {
  display: none;
}

.product-view .ratings .rating-links {
  clear: left;
  float: left;
  margin-top: 0;
  display: none;
}

#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid #C0C0C0;
}
#product-attribute-specs-table th {
  border-right: 1px solid #C0C0C0;
  border-bottom: 1px solid #C0C0C0;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  width: 100%;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

.grouped-items-table .name-wrapper {
  color: #000000;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
}
.grouped-items-table td {
  padding: 4px;
}
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 20px 0;
  clear: both;
  position: relative;
  z-index: 2;
}
.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
  display: none;
}
.product-options dl {
  display: inline-block;
}
.product-options dl:after {
  content: '';
  display: table;
  clear: both;
}
.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}
.product-options dt:first-child {
  margin-top: 0;
}
.product-options dt .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}
.product-options dt .qty-holder .qty {
  width: 3em;
}
.product-options dt .qty-holder label {
  vertical-align: middle;
}
.product-options dd {
  padding: 0;
  margin: 0;
  display: block;
}
.product-options dd.last {
  display: inline-block;
}
.product-options dd.last .input-box, .product-options dd.last .qty-wrapper {
  display: inline-block;
}
.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}
.product-options dd .input-text {
  width: 46px;
  height: 24px;
  padding: 3px 8px;
}
.product-options dd .input-box {
  padding-top: 0;
}
.product-options dd input.datetime-picker {
  width: 150px;
}
.product-options dd .time-picker {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}
.product-options dd textarea {
  width: 98%;
  height: 8em;
}

.product-view .product-options .required {
  position: static;
}

.product-options ul.options-list {
  margin-right: 5px;
}

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px;
}

.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px;
}

.product-options ul.options-list .label {
  display: block;
}

.product-options ul.options-list label {
  font-weight: normal;
}

.product-options p.note {
  margin: 0;
  font-size: 11px;
}

.product-options-bottom #out-of-stock-button .button {
  width: 240px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-top: 5px;
}

.product-options-bottom.no-stock {
  margin-top: 25px;
}

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

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #000000;
  float: none;
  width: 100%;
  text-align: right;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #000000;
}

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0;
}

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #000000;
}

/* "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 */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
.block-related .block-title {
  border-bottom: none;
}
.block-related .block-subtitle {
  margin-bottom: 7px;
}
.block-related .product {
  margin-left: 20px;
  position: relative;
}
.block-related .checkbox {
  float: left;
  margin-top: 36px;
}
.block-related .link-wishlist {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  margin-top: 20px;
}
.box-up-sell .ratings {
  display: none;
}

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
}

.map-popup {
  background: #FFFFFF;
  border: 5px solid #4C4646;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
.map-popup.map-popup-right {
  left: 10px !important;
}
.map-popup.map-popup-left {
  left: auto !important;
  right: 10px !important;
}
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
.map-popup .map-popup-heading h3 {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}
.map-popup .map-popup-content {
  border-top: 1px solid #EDEDED;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left;
}
.map-popup .map-popup-checkout {
  padding: 10px 0;
}
.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout span {
  display: block;
}
.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left;
}
.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}
.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}
.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}
.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-price {
  padding: 10px 0;
}
.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}
.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}
.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #EDEDED;
}

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
.price-box .map-link {
  display: block;
  text-align: center;
}

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

.compare-table .product-image {
  display: inline-block;
}

.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart-table {
  float: left;
  width: 60%;
}

.cart .button {
  white-space: normal;
}

.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: #F4F4F4;
  border: 1px solid #4C4646;
}

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px;
}

.checkout-cart-index #postcode {
  width: 100%;
}

.display-both-prices .cart-table {
  float: none;
  width: 100%;
}
.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}
.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

.display-single-price .cart-table {
  float: none;
  width: 100%;
}
.display-single-price .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}
.display-single-price .cart-totals-wrapper,
.display-single-price .crosssell {
  padding-left: 10px;
}
.display-single-price .cart-forms,
.display-single-price .cart-totals-wrapper,
.display-single-price .crosssell {
  width: 50%;
}
.display-single-price .crosssell {
  clear: right;
  float: right;
}

.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
.checkout-types li {
  vertical-align: top;
  margin: 0;
}
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
.checkout-types li:first-child {
  margin-left: 0;
}
.checkout-types .method-checkout-cart-methods-multishipping {
  display: block;
}
.checkout-types.top li {
  display: inline-block;
}
.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}
.checkout-types.top .bml_button img {
  display: block;
}
.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}
.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  display: block;
  text-align: center;
}

.checkout-types.bottom .paypal-or {
  text-align: right;
  padding-right: 70px;
}

.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

.cart-table {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
.cart-table tfoot tr {
  background: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-sku {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.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 #000000;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.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 #000000;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #4C4646;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}
.cart-table .item-options {
  padding: 0;
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 12px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  margin: 0 0 5px;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #4C4646;
}
.shipping select.validation-failed {
  border-color: #DF280A;
}
.shipping .shipping-desc {
  display: none;
}
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
.shipping .form-list .shipping-country {
  width: 37%;
}
.shipping .form-list .shipping-region {
  width: 41%;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
.shipping .form-list .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}
.shipping .form-list label {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .sp-methods label {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #4C4646;
  background-color: #ededed;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 2px 0px;
}
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "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;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 0;
  height: 30px;
  margin: 4px 10px 0 0;
  width: 190px;
}

.cart .giftcard p {
  margin-bottom: 7px;
}

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}
.cart .giftcard .check-gc-status > span > span {
  font-size: 14px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crosssell h2 {
  color: #3399CC;
}
.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 */
.crosssell {
  /* Undo three-column config */
}
.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%;
}
.crosssell .products-grid > li:nth-child(odd) {
  clear: left;
}
.crosssell .products-grid > li:nth-child(even) {
  margin-right: 0;
}
.crosssell .products-grid > li:nth-child(3n+1) {
  clear: none;
}

.checkout-cart-index .col2-left-layout .col-main {
  padding: 0;
}

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

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

.checkout-onepage-index .col-main {
  float: left;
  width: 68.75%;
  padding-right: 20px;
}
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  width: 31.25%;
  display: block;
}
.checkout-onepage-index .col-right {
  padding-left: 0;
}

.opc select {
  width: 365px;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #ECECEC;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}

.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
}

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
.no-touch .opc .section.allow:not(.active) .step-title:hover {
  background-color: #F4F4F4;
}

.opc .section.active .step-title {
  border-bottom: 1px solid #ECECEC;
}

.opc .section .step-title a {
  display: none;
}

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px;
}

.no-touch .opc .section .step-title a:hover {
  text-decoration: none;
}

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #000000;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
}

.opc .section.allow .step-title .number {
  background-color: gray;
}

.opc .section.allow .step-title h2 {
  color: #939393;
}

.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #000000;
}

.opc .section .step-title h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0 4px 0 45px;
}

.opc .section .step {
  padding: 20px;
  padding: 10px;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}

.opc select {
  max-width: 365px;
  width: 100%;
}

.opc h3 {
  font-weight: 500;
}

.opc .buttons-set {
  text-align: left;
}
.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}
.opc .buttons-set .back-link {
  float: right;
  margin: 0;
}
.opc .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0;
}

.opc #opc-login .step {
  padding: 0px;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

#opc-payment .note {
  padding: 10px;
}

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  transition: opacity 300ms linear 0 0.2s ease-in-out;
  -moz-transition: opacity 300ms linear 0 0.2s ease-in-out;
  -webkit-transition: opacity 300ms linear 0 0.2s ease-in-out;
  -ms-transition: opacity 300ms linear 0 0.2s ease-in-out;
  -o-transition: opacity 300ms linear 0 0.2s ease-in-out;
}

.opc.opc-firststep-login .section#opc-login .step-title .number {
  transition: width 80ms linear 0 0.2s ease-in-out;
  -moz-transition: width 80ms linear 0 0.2s ease-in-out;
  -webkit-transition: width 80ms linear 0 0.2s ease-in-out;
  -ms-transition: width 80ms linear 0 0.2s ease-in-out;
  -o-transition: width 80ms linear 0 0.2s ease-in-out;
}

.opc.opc-firststep-login .section#opc-login .step-title h2 {
  transition: margin-left 80ms linear 0 0.2s ease-in-out;
  -moz-transition: margin-left 80ms linear 0 0.2s ease-in-out;
  -webkit-transition: margin-left 80ms linear 0 0.2s ease-in-out;
  -ms-transition: margin-left 80ms linear 0 0.2s ease-in-out;
  -o-transition: margin-left 80ms linear 0 0.2s ease-in-out;
}

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login {
  opacity: 0;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden;
}

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px;
}

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
#shipping-block-methods {
  margin-top: 25px;
}

.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods dd li {
  margin: 5px 0;
}
.sp-methods label img {
  float: left;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.sp-methods .form-list {
  padding-left: 20px;
}
.sp-methods .form-list li {
  margin: 0 0 8px;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 4em !important;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* Pagantis */
#dt_method_pagantis #imgpagantisfront {
  max-width: 50px;
}

#payment_form_pagantis:after {
  content: '';
  display: table;
  clear: both;
}

/* Payment Methods */
#co-payment-form {
  margin-top: 25px;
}
#co-payment-form dt {
  overflow: visible;
  clear: both;
  margin-bottom: 40px;
}
#co-payment-form dt label img {
  height: auto;
  float: right;
  margin: -10px 0 0 0;
}
#co-payment-form dt#dt_method_banktransfer.active, #co-payment-form dt#dt_method_pagantis.active {
  margin-bottom: 10px;
}
#co-payment-form dd .form-list:not(.paymentrealex) li {
  padding: 0 0 20px 20px;
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.333;
  text-align: justify;
  text-transform: none;
}
#co-payment-form dd .form-list:not(.paymentrealex) li strong {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
#co-payment-form dd .opc-cc-container, #co-payment-form dd #payment_form_pagantis {
  padding: 0 0 20px 20px;
}
#co-payment-form dd #payment_form_pagantis select {
  width: 100%;
}
#co-payment-form #paypal-label {
  width: 285px;
  max-width: 100%;
  float: left;
}
#co-payment-form #paypal-label img {
  width: 100%;
  height: auto;
  margin-top: 10px;
}
#co-payment-form #paypal-label span {
  display: block;
  clear: both;
  margin-top: 10px;
  float: left;
}
#co-payment-form #paypal-label span strong {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
#co-payment-form #dd_method_paypal_express {
  max-width: 320px;
  float: right;
}

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #4C4646;
  padding-left: 20px;
}
.block-progress .block-content {
  font-size: 13px;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #939393;
}
.block-progress dt.complete {
  color: #000000;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: italic;
}
.block-progress dd address {
  font-style: italic;
}
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #000000;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px;
}
.block-progress .payment-info dt:after {
  content: ': ';
}
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

/* review step */
#checkout-review-table .btn-remove img {
  display: none;
}

#checkout-review-table-wrapper {
  clear: both;
}

#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
#review-buttons-container .btn-checkout {
  min-width: 220px;
}
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}
#review-buttons-container .f-left {
  float: right;
}

/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none;
}

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%;
}
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px;
}
.gift-messages-form .item h5 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
.gift-messages-form .item .details {
  float: left;
}

.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block;
}
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
.gift-message-form .gift-wrapping-form img {
  float: left;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC;
}
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success {
  background: transparent url(../images/success.jpg) no-repeat center top;
  background-size: cover;
}
.checkout-onepage-success .logo i,
.checkout-onepage-success .skip-link,
.checkout-onepage-success .header-link,
.checkout-onepage-success .form-language a,
.checkout-onepage-success .skip-cart {
  color: #FFFFFF;
}
.checkout-onepage-success .logo i:hover,
.checkout-onepage-success .skip-link:hover,
.checkout-onepage-success .header-link:hover,
.checkout-onepage-success .form-language a:hover,
.checkout-onepage-success .skip-cart:hover {
  color: #FFFFFF;
}
.checkout-onepage-success .col-left {
  display: none;
}
.checkout-onepage-success .wrapper {
  background: transparent;
}
.checkout-onepage-success .main-container {
  min-height: calc(100vh - 123px);
}
.checkout-onepage-success .back-to-shop {
  position: absolute;
  left: 45px;
  top: 70px;
  color: #FFFFFF;
}
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
.checkout-onepage-success #success-wrapper {
  margin-left: 370px;
}
.checkout-onepage-success #success-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  margin: -145px 0 0 -315px;
  width: 100%;
  max-width: 630px;
  height: 290px;
  display: table;
  background: #FFFFFF;
}
.checkout-onepage-success #success-text .page-title h1 {
  margin: 0 0 10px 0;
}
.checkout-onepage-success #success-text p {
  font: normal 16px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.625;
  text-align: center;
  text-transform: none;
}
.checkout-onepage-success #success-text-cell {
  display: table-cell;
  vertical-align: middle;
}
.checkout-onepage-success .footer-container {
  padding-top: 0;
}
.checkout-onepage-success .buttons-set {
  margin: 50px 70px 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set a {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 1.615;
  text-align: center;
  text-transform: uppercase;
  padding: 0;
}
.checkout-onepage-success .buttons-set a:hover {
  color: #000000;
}
.checkout-onepage-success .buttons-set a:first-child {
  float: left;
}
.checkout-onepage-success .buttons-set a:last-child {
  float: right;
}
.checkout-onepage-success .buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

.checkout-onepage-success {
  background: none;
}
.checkout-onepage-success .logo i,
.checkout-onepage-success .skip-link,
.checkout-onepage-success .header-link,
.checkout-onepage-success .form-language a,
.checkout-onepage-success .skip-cart {
  color: #000000;
}
.checkout-onepage-success .col-left {
  display: block;
}
.checkout-onepage-success .wrapper {
  background: #FFFFFF;
}
.checkout-onepage-success .main-container {
  background: transparent url(../images/success.jpg) no-repeat center top;
  background-size: cover;
  min-height: 100vh;
}
.checkout-onepage-success #success-text, .checkout-onepage-success #success-text-cell {
  display: block;
}
.checkout-onepage-success #success-text {
  left: 15px;
  right: 15px;
  margin: -145px 0 0 0;
  width: auto;
  max-width: none;
  height: auto;
  padding: 30px 0;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  content: '';
  display: table;
  clear: both;
}

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #000000;
  text-decoration: none;
  overflow: visible;
}

.swatch-label,
.swatch-label img {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: visible;
}

.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

#configurable_swatch_color li {
  overflow: visible;
}
#configurable_swatch_color li .swatch-label {
  border: 1px solid #D6D6D6;
}
#configurable_swatch_color li .swatch-label:hover, #configurable_swatch_color li.selected .swatch-label {
  border: 1px solid #000000;
}

.swatch-label {
  margin: 0;
  white-space: nowrap;
}

.configurable-swatch-list {
  margin-left: 0;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0);
  display: inline-block;
}
.configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0 2px;
  zoom: 1;
}
.configurable-swatch-list .not-available .x {
  display: none;
}
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.configurable-swatch-list .not-available .swatch-label {
  color: #9E9E9E;
}
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0;
  width: 33.333333%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin: 0;
  text-align: center;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #000000;
}
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: none;
  border-radius: 3px;
  display: inline-block;
  float: none;
  line-height: 1.5em;
  margin: 0;
  padding: 1px 5px;
  white-space: nowrap;
}
#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: content-box;
}
#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

.currently .swatch-current {
  position: relative;
}
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
.currently .swatch-current span {
  display: block;
  float: left;
}
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
.currently .swatch-link:hover {
  border-color: #4C4646;
  cursor: default;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #000000;
}

.configurable-swatch-box {
  background: none !important;
}
.configurable-swatch-box select.swatch-select {
  display: none;
}
.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #DF280A;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #FFFFFF !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
.availability.out-of-stock span {
  color: #939393;
}

.product-view .product-options {
  position: relative;
  z-index: 2;
}
.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #000000;
  padding-left: 5px;
}
.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}
.product-view .product-options .select-label {
  display: none;
}
.product-view .product-options-bottom {
  position: relative;
  z-index: 0;
}
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

.size-container {
  position: relative;
  display: inline-block;
}
.size-container span.selected-size {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  border: none;
  color: #000000;
  padding: 0 0 0 5px;
  cursor: pointer;
  display: inline-block;
  min-width: 78px;
}
.size-container span.selected-size > span {
  display: inline-block;
  width: calc(100% - 20px);
  text-align: center;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.size-container span.selected-size i {
  font-size: 20px;
  position: relative;
  top: -4px;
  float: right;
}
.size-container span.selected-size:after {
  content: '';
  display: table;
  clear: both;
}
.size-container ul.configurable-swatch-list {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0.5px 7.33px 12.82px 0.18px rgba(0, 0, 0, 0.247);
  padding: 10px 0 0 0;
  max-height: 196px;
  overflow-y: auto;
}
.size-container ul.configurable-swatch-list li {
  display: block;
  margin: 0;
  cursor: pointer;
}
.size-container ul.configurable-swatch-list li.not-available {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.size-container ul.configurable-swatch-list li a {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  line-height: initial;
  text-align: left;
  border: none;
  color: #000000;
  padding: 7px 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  background: transparent;
}
.size-container ul.configurable-swatch-list li a span {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.size-container ul.configurable-swatch-list li a:hover {
  background: #DBDBDB;
}
.size-container:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Customer
 * ============================================ */
.col-main .account-login, .col-main .account-create {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.col-main .account-login {
  padding-top: 46px;
}
.col-main .account-create .page-title,
.col-main .account-login .page-title {
  text-align: center;
}
.col-main .account-create .buttons-set,
.col-main .account-login .buttons-set {
  max-width: 258px;
  margin: 0 auto;
}
.col-main .account-create .buttons-set button.button,
.col-main .account-login .buttons-set button.button {
  float: none;
  min-width: 100%;
  margin: 0;
}
.col-main .account-login .registered-users,
.col-main .account-login .new-users {
  width: 50%;
  max-width: 500px;
  margin: 0 auto;
}
.col-main .account-login .center-content,
.col-main .account-create .center-content,
.col-main .account-login .forgotpass-container,
.col-main .account-login .resetpass-container,
.col-main .account-login .registered-users .form-list {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.col-main .account-login .registered-users .content .form-instructions,
.col-main .account-login .new-users .content .form-instructions {
  margin: 20px 0 25px 0;
  display: table;
  width: 100%;
  min-height: 84px;
}
.col-main .account-login .registered-users .content p,
.col-main .account-login .new-users .content p {
  font: normal 14px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.313;
  text-align: center;
  text-transform: none;
  vertical-align: middle;
  display: table-cell;
}
.col-main .account-login .registered-users .buttons-set .button {
  margin-top: 15px;
}
.col-main .account-login .registered-users .content h2,
.col-main .account-login .new-users .content h2,
.col-main .account-create .page-title h1,
.col-main .account-forgot .page-title h1,
.col-main .account-reset .page-title h1 {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.714;
  text-align: center;
  text-transform: uppercase;
}
.col-main .account-reset .buttons-set .button {
  max-width: 100%;
  padding: 0;
}

.customer-account-login #login-form label:first-child {
  width: 115px;
}
.customer-account-login .forgot-link {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: inherit;
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 25px;
}
.customer-account-login .col-main .account-login {
  max-width: 1160px;
}
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
}
.customer-account-login .col2-set .col-1 {
  padding-right: 0;
}
.customer-account-login #bt-loginfb {
  text-align: center;
  border-top: 1px solid #4C4646;
  margin-top: 25px;
}
.customer-account-login #bt-loginfb .button i {
  font-size: 25px;
  position: relative;
  top: 6px;
  margin-right: 5px;
}

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  color: #939393;
}

.remember-me-box a.hide {
  display: none;
}
.remember-me-box .link-tip {
  font-size: 13px;
  padding-left: 10px;
}

.remember-me-popup {
  display: none;
  border: 1px solid #4C4646;
  padding: 10px;
  position: relative;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup p {
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
}
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create .buttons-set {
  max-width: 100%;
}
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 0;
}
.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

.col-main .account-login .registered-users .content h2,
.col-main .account-login .new-users .content h2,
.col-main .account-create .page-title h1,
.col-main .account-forgot .page-title h1,
.col-main .account-reset .page-title h1 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 18px;
  text-transform: none;
}

.account-create form .form-instructions,
.account-forgot form .form-instructions,
.account-reset form .form-instructions {
  margin: 20px 0;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
}

.col-main .account-login {
  padding-top: 25px;
}
.col-main .account-login.account-forgot, .col-main .account-login.account-reset {
  padding: 25px 30px;
}
.col-main .account-login .registered-users .content {
  padding-top: 20px;
  border-top: 1px solid #9E9E9E;
}
.col-main .account-login .registered-users,
.col-main .account-login .new-users {
  width: 100%;
  max-width: 100%;
  padding: 0 30px 20px 30px;
}
.col-main .account-login .registered-users .content .form-instructions,
.col-main .account-login .new-users .content .form-instructions {
  min-height: inherit;
}
.col-main .account-login .registered-users .content .form-instructions p,
.col-main .account-login .new-users .content .form-instructions p {
  font-size: 12px;
  line-height: 14px;
}

.customer-account-login .forgot-link {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: none;
  display: block;
  margin: 15px 0 25px 0;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .col-left + .col-left {
  display: none;
}
body.customer-account .myaccount-nav .nav-primary {
  padding-left: 45px;
}
body.customer-account .welcome-msg {
  font: normal 20px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.4;
  text-align: center;
  text-transform: none;
  margin-bottom: 100px;
}
body.customer-account .my-account {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}
body.customer-account .my-account .page-title h1 {
  border: 0;
  font: normal 30px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 2.4;
  text-align: center;
  text-transform: none;
  line-height: 1;
  margin: 0 0 50px 0;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
body.customer-account .my-account .pager .amount {
  display: none;
}
body.customer-account .my-account .pager .limiter {
  float: right;
}
body.customer-account .my-account .pager .limiter label {
  display: block;
  float: left;
  line-height: 42px;
}
body.customer-account .my-account .pager:after {
  content: '';
  display: table;
  clear: both;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td, body.customer-account .data-table th {
  width: 10%;
}
body.customer-account .data-table td:last-child, body.customer-account .data-table th:last-child {
  width: 14%;
}
body.customer-account .data-table td a:not(.product-image) {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
  text-decoration: underline;
  white-space: nowrap;
}
body.customer-account .data-table td a:not(.product-image) .show {
  display: block;
}
body.customer-account .data-table td a:not(.product-image) .hide {
  display: none;
}
body.customer-account .data-table td a:not(.product-image).active .show {
  display: none;
}
body.customer-account .data-table td a:not(.product-image).active .hide {
  display: block;
}
body.customer-account .data-table .data-order td {
  padding: 0;
  border: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
body.customer-account .data-table .data-order .order-review {
  display: none;
  overflow: hidden;
}
body.customer-account .data-table .data-order.show-details {
  border-bottom: 1px solid #000000;
}
body.customer-account .data-table .data-order.show-details td {
  padding: 15px 0;
}
body.customer-account .data-table .data-order.show-details .order-review {
  overflow: visible;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .data-table .order-review {
  text-align: left;
}
body.customer-account .data-table .order-review .order-details {
  width: 65%;
  float: left;
}
body.customer-account .data-table .order-review .order-details .order-line {
  position: relative;
  padding: 5px 0;
}
body.customer-account .data-table .order-review .order-details .order-line:first-child {
  padding-top: 0;
}
body.customer-account .data-table .order-review .order-details .order-line:last-child {
  padding-bottom: 0;
}
body.customer-account .data-table .order-review .order-details .product-details {
  margin-left: 97px;
}
body.customer-account .data-table .order-review .order-details .product-image {
  float: left;
  min-width: 97px;
}
body.customer-account .data-table .order-review .order-details .product-image img {
  border: 1px solid #DBDBDB;
}
body.customer-account .data-table .order-review .order-details .product-description {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
body.customer-account .data-table .order-review .order-details .product-name {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.071;
  text-align: left;
  text-transform: none;
}
body.customer-account .data-table .order-review .order-details .price {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: inherit;
  text-align: left;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  top: 2px;
}
body.customer-account .data-table .order-review .order-shipto {
  width: 30%;
  float: right;
  margin: 0;
  padding: 15px 20px;
  box-shadow: 0 3.392px 17.1px 3.9px rgba(0, 0, 0, 0.071);
}
body.customer-account .data-table .order-review .order-shipto h3 {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #4C4646;
  padding-bottom: 7px;
  margin: 0 0 10px 0;
}
body.customer-account .data-table .order-review .order-shipto > a {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
  display: block;
  margin: 10px 0 0 0;
  text-decoration: none;
}
body.customer-account .data-table .order-review .order-shipto > a i {
  font-weight: bold;
  border-bottom: 2px solid #000000;
}
body.customer-account .data-table .order-review:after {
  content: '';
  display: table;
  clear: both;
}
body.customer-account .sidebar .block-account .block-content ul li a:before {
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.75;
}
body.customer-account .sidebar .block-account .block-content ul li a:hover {
  text-decoration: none;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}
body.customer-account .monkey-additional-lists .listdata input[type="checkbox"] {
  position: relative;
  top: 1px;
  margin-right: 6px;
}
body.customer-account .col-left.sidebar .nav-overflow.top {
  display: none;
}
body.customer-account .col2-left-layout .col-main {
  padding: 0;
}
body.customer-account .welcome-msg {
  margin-bottom: 30px;
  padding: 0 15px;
}
body.customer-account .my-account .page-title h1 {
  font-size: 11px;
  padding: 30px 0;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
body.customer-account .my-account .page-title h1:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 20px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -10px;
}
body.customer-account .col-left + .col-left {
  display: block;
}
body.customer-account .col-left-first #nav {
  width: 100%;
  max-width: 100%;
}
body.customer-account .myaccount-nav .nav-primary {
  padding-left: 15px;
  width: 100%;
}
body.customer-account .nav-primary {
  padding-left: 0;
}
body.customer-account .nav-primary li a {
  line-height: 2.667;
}
body.customer-account .col-left-first .page-title .h1 {
  text-align: center;
  font-size: 18px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  display: block;
}
body.customer-account .col-left-first .nav-primary {
  padding: 0 0 40px 0;
}
body.customer-account .col-left-first .nav-primary li a {
  padding: 15px;
  width: 100%;
  display: block;
  position: relative;
  border-bottom: 1px solid #DBDBDB;
}
body.customer-account .col-left-first .nav-primary li a:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 20px;
}
body.customer-account .data-table {
  /* Helpers */
}
body.customer-account .data-table tr,
body.customer-account .data-table th,
body.customer-account .data-table td {
  display: block;
}
body.customer-account .data-table thead {
  display: none;
}
body.customer-account .data-table thead th {
  border-right: 0;
  border-left: 0;
}
body.customer-account .data-table thead th.lin-hide {
  display: none;
}
body.customer-account .data-table thead th:nth-child(1n+2) {
  display: none;
}
body.customer-account .data-table tbody tr {
  position: relative;
  border-bottom: 1px solid #4C4646;
}
body.customer-account .data-table tbody td {
  padding: 0 15px 10px;
  border-right: 0;
  border-bottom: 0;
}
body.customer-account .data-table tbody td, body.customer-account .data-table tbody td:first-child, body.customer-account .data-table tbody td:last-child {
  width: 100%;
}
body.customer-account .data-table tbody td:last-child {
  text-align: right;
}
body.customer-account .data-table tbody tr.data-order {
  display: none;
}
body.customer-account .data-table tbody tr.data-order td {
  padding: 0;
}
body.customer-account .data-table tbody tr.data-order.show-details {
  display: block;
}
body.customer-account .data-table tbody tr.data-order.show-details td {
  padding: 15px;
}
body.customer-account .data-table .order-review .order-details,
body.customer-account .data-table .order-review .order-shipto {
  width: 100%;
  float: none;
}
body.customer-account .data-table tbody td.lin-hide {
  display: none;
}
body.customer-account .data-table tbody td:first-child {
  padding-top: 10px;
}
body.customer-account .data-table tbody td:first-child,
body.customer-account .data-table tbody td:first-child h3 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
body.customer-account .data-table tbody td[data-rwd-label] {
  text-align: right;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
body.customer-account .data-table tbody td[data-rwd-label] .price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
body.customer-account .data-table tbody td[data-rwd-label]:before {
  float: left;
}
body.customer-account .data-table tbody td[data-rwd-label]:before {
  content: attr(data-rwd-label) ":";
  font-size: 12px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  padding-right: 5px;
  text-transform: uppercase;
}
body.customer-account .data-table tfoot tr {
  display: block;
  text-align: right;
}
body.customer-account .data-table tfoot tr:after {
  content: '';
  display: table;
  clear: both;
}
body.customer-account .data-table tfoot td {
  display: block;
  float: left;
}
body.customer-account .data-table tfoot td.lin-hide {
  display: none;
}
body.customer-account .data-table tfoot td:nth-child(odd) {
  clear: left;
  width: 60%;
}
body.customer-account .data-table tfoot td:nth-child(even) {
  text-align: left;
  width: 40%;
}
body.customer-account .data-table .linearize-hide {
  display: none;
}
body.customer-account .data-table .linearize-unpad {
  padding: 0;
}
body.customer-account .data-table .linearize-show {
  display: block;
}
body.customer-account .my-account .fieldset {
  padding: 0 15px 75px;
  margin: 0;
}
body.customer-account .my-account .fieldset.no-padding-bottom {
  padding-bottom: 15px;
}
body.customer-account .my-account .fieldset + .fieldset {
  padding-top: 15px;
  float: left;
  width: 100%;
}
body.customer-account .my-account .fieldset-customer .legend.no-margin-top {
  margin-top: 0;
}
body.customer-account .my-account .fieldset-customer .form-list li .field label {
  display: none;
}
body.customer-account .my-account .fieldset-customer .form-list li.fields .field + .field {
  padding-left: 0;
  display: block;
}
body.customer-account .my-account .fieldset-customer .form-list li.fields .field + .field .input-box {
  max-width: 100%;
  display: block;
}
body.customer-account .my-account .fieldset-customer .form-list li.fields .field + .field input, body.customer-account .my-account .fieldset-customer .form-list li.fields .field + .field .input-box input,
body.customer-account .my-account .fieldset-customer .form-list li.fields .field + .field .input-box select, body.customer-account .my-account .fieldset-customer .form-list li.fields .field + .field .input-box select#country {
  border-left: none;
}
body.customer-account .my-account .fieldset-customer .form-list li.control + .control {
  margin-top: 0;
}
body.customer-account .my-account .fieldset-customer .form-list li.bottom-separator {
  margin-bottom: 25px;
  padding-bottom: 0;
  border-bottom: none;
}
body.customer-account .my-account .fieldset-customer .buttons-set {
  padding: 0;
}
body.customer-account .my-account .fieldset-customer .buttons-set button.button {
  width: 100%;
  float: none;
}
body.customer-account .my-account .mobile-padding {
  padding: 15px;
  text-align: center;
}
body.customer-account .my-account .buttons-set {
  padding: 0 15px;
  float: none;
}
body.customer-account .my-account .buttons-set.no-padding {
  padding: 0;
}
body.customer-account .my-account .buttons-set .back-link {
  float: none;
}
body.customer-account .my-account .buttons-set .back-link a {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  display: block;
  padding: 0;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 15px;
  right: 15px;
}
body.customer-account .my-account .buttons-set .back-link a small {
  display: none;
}
body.customer-account .my-account .buttons-set .button {
  width: 100%;
}
body.customer-account .my-account .buttons-set.add-padding {
  padding-bottom: 15px;
}
body.customer-account .my-account .addresses-list #addresses-table {
  display: none;
}
body.customer-account .my-account .addresses-list .item {
  padding: 0 15px;
  border-color: #DBDBDB;
}
body.customer-account .my-account .addresses-list .item h3 {
  margin: 20px 0 10px 0;
}
body.customer-account .my-account .addresses-list .item.empty {
  padding: 15px;
}
body.customer-account .my-account .addresses-list .address-info > div,
body.customer-account .my-account .addresses-list .address-info > div:first-child,
body.customer-account .my-account .addresses-list .address-info > div:last-child {
  width: 100%;
  display: block;
  color: #000000;
}
body.customer-account .my-account .addresses-list .address-info > div:last-child {
  padding-bottom: 10px;
}
body.customer-account .my-account .addresses-list .address-info > div {
  padding: 0;
}
body.customer-account .my-account .addresses-list + .buttons-set {
  padding-bottom: 75px;
}
body.customer-account .my-account .addresses-list + .buttons-set .button {
  width: 100%;
}
body.customer-account .my-account .addresses-list .button-small {
  background: transparent;
  border: none;
  text-align: left;
  padding: 0;
  margin: 5px 0;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #939393;
  line-height: 20px;
  height: 20px;
}
body.customer-account .my-account .addresses-list .button-small:hover {
  color: #000000;
  text-decoration: underline;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
}
.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-year {
  margin-right: 10px;
}
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head h2 {
  font-size: 15px;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-title h3 {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.846;
  text-align: left;
  text-transform: uppercase;
}
.dashboard .box-account {
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.846;
  text-align: left;
  text-transform: none;
}
.dashboard .box-account a {
  text-transform: uppercase;
}
.dashboard .box-account p .bold, .dashboard .box-account a:hover {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list .item {
  border-bottom: 1px solid #000000;
}
.my-account .addresses-list .item h3 {
  margin: 20px 0 0 0;
}
.my-account .addresses-list .item h3,
.my-account .addresses-list #addresses-table > span {
  font: normal 13px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.385;
  text-align: left;
  text-transform: uppercase;
}
.my-account .addresses-list #addresses-table > span {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #000000;
}
.my-account .addresses-list #addresses-table > span.customer-actions {
  text-align: center;
}
.my-account .addresses-list #addresses-table,
.my-account .addresses-list .address-info {
  display: table;
  width: 100%;
}
.my-account .addresses-list #addresses-table > span,
.my-account .addresses-list .address-info > div {
  display: table-cell;
  vertical-align: top;
  width: 23%;
}
.my-account .addresses-list #addresses-table > span:first-child,
.my-account .addresses-list .address-info > div:first-child {
  width: 35%;
}
.my-account .addresses-list #addresses-table > span:last-child,
.my-account .addresses-list .address-info > div:last-child {
  width: 19%;
}
.my-account .addresses-list .address-info > div {
  padding: 20px 0 40px 0;
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.462;
  text-align: left;
  text-transform: none;
}
.my-account .addresses-list .address-info > div.customer-actions {
  text-align: right;
}
.my-account .addresses-list .button-small {
  width: 100%;
  margin: 0 0 10px 0;
}
.my-account .addresses-list .button + .button {
  margin-left: 0;
}
.my-account .fieldset-customer .legend {
  text-align: left;
  margin: 25px 0;
}
.my-account .fieldset-customer .customer-type {
  text-align: center;
}
.my-account .fieldset-customer .form-list li label {
  font: normal 12px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.167;
  text-align: left;
  text-transform: none;
  display: inline-block;
}
.my-account .fieldset-customer .form-list li:not(.customer-type):not(.control) label {
  width: 25.8%;
}
.my-account .fieldset-customer .form-list li.wide:not(.customer-type):not(.control) label {
  width: 10.8%;
}
.my-account .fieldset-customer .form-list li.fields .field {
  margin-bottom: 0;
}
.my-account .fieldset-customer .form-list li.fields .field + .field label {
  width: 18.7%;
}
.my-account .fieldset-customer .form-list li.wide:not(.customer-type), .my-account .fieldset-customer .form-list li .field {
  display: table;
  width: 100%;
}
.my-account .fieldset-customer .form-list li.wide:not(.customer-type) label:not(.no-table), .my-account .fieldset-customer .form-list li.wide:not(.customer-type) .input-box:not(.no-table), .my-account .fieldset-customer .form-list li .field label:not(.no-table), .my-account .fieldset-customer .form-list li .field .input-box:not(.no-table) {
  vertical-align: middle;
}
.my-account .fieldset-customer .form-list li.wide:not(.customer-type) label, .my-account .fieldset-customer .form-list li.wide:not(.customer-type) .input-box:not(.no-table), .my-account .fieldset-customer .form-list li .field label, .my-account .fieldset-customer .form-list li .field .input-box:not(.no-table) {
  display: table-cell;
}
.my-account .fieldset-customer .form-list li.wide:not(.customer-type) .input-box, .my-account .fieldset-customer .form-list li .field .input-box {
  width: 100%;
}
.my-account .fieldset-customer .form-list li.customer-type label:not(.last) {
  margin-right: 80px;
}
.my-account .fieldset-customer .form-list li.customer-type input.radio {
  display: inline-block;
  vertical-align: middle;
  float: none;
  margin: 0 6px 0 0;
}
.my-account .fieldset-customer .form-list li.bottom-separator {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #000000;
}
.my-account .fieldset-customer .form-list li .input-box #country, .my-account .fieldset-customer .form-list li .input-box #fax {
  width: 290px;
  max-width: 100%;
}
.my-account .fieldset-customer .form-list li.control {
  float: left;
  width: 100%;
}
.my-account .fieldset-customer .form-list li.control input.checkbox {
  margin-top: 0;
}
.my-account .fieldset-customer .form-list li.fields .field {
  float: left;
  width: 42%;
}
.my-account .fieldset-customer .form-list li.fields .field + .field {
  width: 58%;
  padding-left: 34px;
}
.my-account .fieldset-customer .form-list li.fields:after {
  content: '';
  display: table;
  clear: both;
}
.my-account .fieldset-customer .buttons-set {
  float: left;
  width: 100%;
}
.my-account .warning-right {
  width: 290px !important;
  margin-top: 5px;
}
.my-account .warning-message {
  background-color: #000000;
  text-align: center;
  padding: 2px 5px;
  cursor: pointer;
  border: 1px solid #000000;
  transition: 0.3s ease all;
  margin-bottom: 10px;
}
.my-account .warning-message a {
  color: #FFFFFF;
  font-size: 12px;
}
.my-account .warning-message:hover {
  background-color: #FFFFFF;
}
.my-account .warning-message:hover a {
  color: #000000;
}

/* ============================================ *
 * Order View
 * ============================================ */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  width: 100%;
  margin-bottom: 30px;
}
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}
.order-info dt {
  margin-right: 20px;
}
.order-info li {
  margin: 0 0 0 20px;
}
.order-info li.current {
  font-weight: 600;
}
.order-info li:first-child {
  margin-left: 0;
}

.order-date {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 15px;
}
.order-info-box .box-content strong {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}
#my-orders-table .option-value {
  margin-left: 20px;
}
#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}

ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
ol#cart-sidebar-reorder p.product-name {
  display: inline;
}

.order-additional {
  margin: 40px 0;
}

.order-gift-message dd {
  margin-top: 10px;
}

.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 30px;
  padding-bottom: 0;
}

body.customer-account .data-table td.view a {
  white-space: normal;
}

body.customer-account .my-account .title-buttons {
  text-align: left;
}
body.customer-account .my-account .title-buttons span.separator,
body.customer-account .my-account .title-buttons a {
  top: -12px;
}

/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #9E9E9E;
  padding-top: 10px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 0;
  max-width: 100%;
}
.contacts-index-index .buttons-set p.required {
  display: none;
}

.contacts-index-index .col2-left-layout .col-main {
  padding: 25px 45px;
}
.contacts-index-index .col2-left-layout .col-main .page-title h1 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 24px;
  text-transform: none;
  text-align: center;
}
.contacts-index-index .col2-left-layout .col-main .buttons-set button.button {
  float: none;
  width: 100%;
}
.contacts-index-index .col2-left-layout .col-main .form-list .control div.input-box {
  display: block;
  float: none;
}
.contacts-index-index .col2-left-layout .col-main .form-list .control div.input-box label {
  line-height: 25px;
}

/* ============================================ *
 * PayPal
 * ============================================ */
.paypal-review-order .col2-set .col-1,
.paypal-review-order .col2-set .col-2 {
  padding: 0px;
}
.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #9E9E9E;
}
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}

.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center;
}
.top-container .bml-ad span {
  display: inline-block;
}
.top-container .bml-ad span a {
  display: block;
}

.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px;
}
.bml-ad span {
  display: block;
  line-height: 0;
}
.bml-ad a {
  display: inline-block;
  max-width: 100%;
}
.bml-ad a:hover {
  opacity: 0.7;
}
.bml-ad img {
  height: auto !important;
  max-width: 100%;
}

.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

.bml-ad.large {
  display: block;
}

div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%;
}
div.paypal-logo span {
  display: block;
  width: 100%;
}
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
div.paypal-logo span a img {
  max-width: 100%;
}
div.paypal-logo span > img {
  display: none;
}

.checkout-types div.paypal-logo {
  text-align: right;
}

.bml-checkout-type {
  list-style-type: none;
}

.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}
.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}
.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}
.sidebar .paypal-logo > a img {
  display: block;
}
.sidebar .paypal-logo .label {
  margin-top: 4px;
}
.sidebar .paypal-logo .label a {
  font-size: 12px;
  line-height: 1.5;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  border-top: 1px solid #4C4646;
  border-bottom: 1px solid #4C4646;
  padding: 10px 0 5px;
}
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #3399CC;
  font-size: 12px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #000000;
}
#customer-reviews h3 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #3399CC;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 100%;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #4C4646;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 100%;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #4C4646;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 100%;
}
#customer-reviews dl {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .rating-box {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
#customer-reviews dl dd .rating-box .rating {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
}
#customer-reviews dl dd .rating-box:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #3399CC;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #4C4646;
  margin: 0 0 10px;
}
.review-summary-table li span label {
  display: inline-block;
  padding: 10px 5px;
}
.review-summary-table li span label input {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.review-summary-table li span label input.clicked:before {
  content: "\f005";
}
.review-summary-table .rating-box .rating-number {
  display: none;
}
.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.rating-box {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
.rating-box .rating {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
}
.rating-box:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
body.wishlist-index-index .my-account {
  max-width: 1366px;
}

.my-wishlist .products-grid {
  margin: 0 -7px;
  text-align: center;
  max-width: calc(100% + 14px);
}
.my-wishlist .products-grid.no-max-width {
  max-width: inherit;
}
.my-wishlist .products-grid > li {
  width: calc(33.3333333% - 14px);
  margin: 0 7px;
  float: left;
  display: inline-block;
  position: relative;
  padding-bottom: 100px;
  opacity: 1;
}
.my-wishlist .products-grid > li .btn-remove-whislist {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 5;
  font-size: 20px;
}
.my-wishlist .products-grid > li .product-description {
  font-size: 11px;
  margin: 5px 0;
}
.my-wishlist .products-grid > li .product-options {
  margin: 10px 0;
}
.my-wishlist .products-grid > li .product-name a,
.my-wishlist .products-grid > li .price-box .price {
  font-size: 12px;
}
.my-wishlist .products-grid > li .product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  min-height: 100px;
  background: #FFFFFF;
  padding-bottom: 10px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.my-wishlist .products-grid > li .add-to-cart .button {
  padding: 0 15px;
}
.my-wishlist .products-grid > li:hover {
  box-shadow: 0 6.99px 14.96px 8.04px rgba(0, 0, 0, 0.1);
}

#wishlist-table th {
  text-align: center;
}
#wishlist-table.clean-table {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: middle;
}
#wishlist-table.clean-table td.wishlist-cell4, #wishlist-table.clean-table td.wishlist-cell5 {
  display: none;
}
#wishlist-table.clean-table td.wishlist-cell3 {
  text-align: right;
  vertical-align: top;
}
#wishlist-table.clean-table td input[type=number].qty,
#wishlist-table.clean-table td input[type=text].qty {
  width: 48px;
  height: 24px;
  border-color: #9E9E9E;
}
#wishlist-table.clean-table tr th:first-child, #wishlist-table.clean-table tr td:first-child {
  text-align: left;
  padding-left: 0;
}
#wishlist-table.clean-table tr th.wishlist-cell3, #wishlist-table.clean-table tr th:last-child, #wishlist-table.clean-table tr td.wishlist-cell3, #wishlist-table.clean-table tr td:last-child {
  padding-right: 0;
  text-align: right;
}
#wishlist-table.clean-table thead th {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  vertical-align: bottom;
}
#wishlist-table .product-image {
  display: block;
  float: left;
  border: 1px solid #DBDBDB;
  margin-right: 20px;
}
#wishlist-table .product-details {
  float: left;
}
#wishlist-table .product-details .product-brand, #wishlist-table .product-details .product-name, #wishlist-table .product-details .btn-remove, #wishlist-table .product-details .wishlist-addtocart {
  display: block;
  text-decoration: none;
}
#wishlist-table .product-details .product-brand {
  font: normal 11px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#wishlist-table .product-details .product-name {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.071;
  text-align: left;
  text-transform: none;
  margin-bottom: 40px;
}
#wishlist-table .product-details .wishlist-addtocart, #wishlist-table .product-details .btn-remove {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.455;
  text-align: left;
  text-transform: uppercase;
}
#wishlist-table .product-details .btn-remove {
  text-transform: none;
  width: auto;
  height: inherit;
}
#wishlist-table .product-details .btn-remove:hover {
  text-decoration: underline;
  background: none;
}
#wishlist-table .product-details .btn-remove:after, #wishlist-table .product-details .btn-remove:hover:after {
  display: none;
}
#wishlist-table .product-details .wishlist-addtocart {
  margin-bottom: 5px;
}
#wishlist-table .product-details .wishlist-addtocart:hover {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #4C4646;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #4C4646;
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%;
}
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
#wishlist-table .price-box {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #000000;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #000000;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #000000;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

#wishlist-table.clean-table td {
  padding-left: 10px;
  padding-right: 10px;
}

.my-wishlist .products-grid > li {
  width: calc(50% - 14px);
  padding-bottom: 65px;
}
.my-wishlist .products-grid > li .product-info {
  min-height: inherit;
}
.my-wishlist .products-grid > li.quickshopping-enabled {
  width: 100%;
  margin: 0;
}
.my-wishlist .products-grid > li.quickshopping-enabled .product-info {
  bottom: 40px;
}
.my-wishlist .products-grid > li.quickshopping-enabled .product-info .back-quick {
  bottom: -22px;
}

#wishlist-table.clean-table td {
  padding-left: 5px;
  padding-right: 5px;
}
#wishlist-table.clean-table td textarea {
  height: 100px;
}
#wishlist-table.clean-table td.customer-wishlist-item-cart {
  width: 110px;
}
#wishlist-table .product-name {
  font-size: 13px;
}

/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart {
  display: inline-block;
}
.header-minicart .minicart-message {
  display: none !important;
  padding: 10px;
}
.header-minicart .empty {
  padding: 10px;
  text-align: center;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
  height: 100%;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  color: #50A4CF;
  font: normal 10px "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #000000;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart #minicart-wrapper {
  overflow: hidden;
  height: 549px;
  max-height: calc(100vh - 248px);
  margin: 0 0 18px 0;
  position: relative;
}
.header-minicart #minicart-wrapper.two-items {
  height: 364px;
}
.header-minicart #minicart-wrapper.one-item {
  height: 180px;
}
.header-minicart #minicart-wrapper #ajax_loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: rgba(51, 47, 47, 0.3);
}
.header-minicart #minicart-wrapper #ajax_loader .la-square-spin {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
}
.header-minicart .mini-products-list {
  padding: 10px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  margin: 0;
  overflow-y: auto;
}
.header-minicart .mini-products-list li {
  padding: 18px 0;
  border-bottom: 1px solid #DBDBDB;
  position: relative;
  width: 100%;
  margin: 0;
}
.header-minicart .mini-products-list li .product-image {
  border: 1px solid #DBDBDB;
}
.header-minicart .mini-products-list li .product-image img {
  display: block;
}
.header-minicart .mini-products-list li:first-child {
  padding-top: 0;
}
.header-minicart .mini-products-list li.last {
  border: none;
  padding-bottom: 0;
}
.header-minicart .product-details .product-name {
  padding-top: 0;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  margin: 8px 0;
}
.header-minicart .product-details .product-name a {
  color: #000000;
}
.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
}
.header-minicart .info-wrapper th {
  text-transform: uppercase;
  padding-right: 10px;
}
.header-minicart .info-wrapper td {
  color: #000000;
  clear: right;
}
.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px;
}
.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}
.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
.header-minicart #header-cart.skip-active .subtotal {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 20px 0;
  text-align: left;
  border-bottom: none;
}
.header-minicart #header-cart.skip-active .subtotal .label, .header-minicart #header-cart.skip-active .subtotal .price {
  font: normal 12px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}
.header-minicart #header-cart.skip-active .subtotal .price {
  float: right;
  font-size: 15px;
  text-align: right;
  line-height: 23px;
}
.header-minicart .minicart-actions {
  padding: 0;
  margin-top: 5px;
  position: relative;
  text-align: center;
  clear: both;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
}
.header-minicart .minicart-actions .checkout-button {
  width: 100%;
}
.header-minicart .minicart-actions .checkout-button:hover {
  color: #000000;
}
.header-minicart .minicart-actions .cart-link {
  font: normal 14px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.071;
  text-align: center;
  text-transform: none;
  display: none;
  margin: 20px 0;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart .minicart-actions .checkout-button {
  height: 60px;
  line-height: 60px;
  font-size: 16px;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

.checkout-types.minicart {
  float: none;
  text-align: center;
}

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
#search_mini_form {
  box-shadow: 2.5px 4.33px 5.82px 0.18px rgba(0, 0, 0, 0.32);
}

.catalog-category-view .search-autocomplete .products-grid li.item .product-info {
  position: inherit;
  min-height: inherit;
}

.search-autocomplete {
  left: 0;
  overflow: visible;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 200;
  background-color: #FFFFFF;
}
.search-autocomplete .block-related {
  max-width: 100%;
  padding: 0 30px;
}
.search-autocomplete .block-related .products-grid {
  opacity: 1;
}
.search-autocomplete .block-related .products-grid .item {
  margin: 0 7px 20px 7px;
}
.search-autocomplete .block-related .products-grid .item > a {
  height: initial;
}
.search-autocomplete .block-related .products-grid .item > a img {
  width: 100%;
  max-width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  width: 100%;
  max-width: 1523px;
  margin: 0 auto;
}
.search-autocomplete ul li {
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  padding: 0;
  text-align: left;
}
.search-autocomplete ul li .price-box {
  text-align: center;
}
.search-autocomplete ul li:hover {
  color: #000000;
}
.search-autocomplete ul li.selected {
  background-color: #000000;
  color: white;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
.search-autocomplete ul li:nth-child(6n+1) {
  clear: left;
}
.search-autocomplete .all {
  display: none;
}

.search-autocomplete {
  max-height: calc(100vh - 125px);
  overflow: hidden;
  overflow-y: auto;
}
.search-autocomplete .block-related {
  padding: 0;
}
.search-autocomplete .block-related .products-grid {
  margin: 0 5px;
  text-align: center;
  max-width: none;
  width: auto;
  height: 100%;
}
.search-autocomplete .block-related .products-grid > li {
  width: calc(25% - 5px);
  margin: 0 2.5px;
  padding: 0;
}
.search-autocomplete .block-related .products-grid > li:nth-child(6n+1) {
  clear: none;
}
.search-autocomplete .block-related .products-grid > li:nth-child(4n+1) {
  clear: left;
}

.fixed .search-autocomplete {
  max-height: calc(100vh - 75px);
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.advanced-search {
  background: #F4F4F4;
  border: 1px solid #EDEDED;
  padding: 30px;
}
.advanced-search select.multiselect option {
  border-bottom: 1px solid #EDEDED;
  padding: 2px 5px;
}

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #4C4646;
  font-size: 16px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #4C4646;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #4C4646;
  font-size: 16px;
  font-weight: 400;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
}

.product-review .ratings-table tr {
  float: none;
}

/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3 {
  border: none;
}
.cms-page-view .page-title h1,
.cms-page-view .page-head h1 {
  font: normal 30px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 0.7;
  text-align: center;
  text-transform: none;
}
.cms-page-view .page-title.a-left h1,
.cms-page-view .page-head.a-left h1 {
  text-align: left;
}
.cms-page-view .page-title.a-right h1,
.cms-page-view .page-head.a-right h1 {
  text-align: right;
}
.cms-page-view .std .max-940, .cms-page-view .std .max-950, .cms-page-view .std .max-1210 {
  margin: 0 auto;
}
.cms-page-view .std .max-940.no-parent-padding, .cms-page-view .std .max-950.no-parent-padding, .cms-page-view .std .max-1210.no-parent-padding {
  margin: 0 -15px;
}
.cms-page-view .std .max-940 {
  max-width: 940px;
}
.cms-page-view .std .max-950 {
  max-width: 950px;
}
.cms-page-view .std .max-1210 {
  max-width: 1210px;
}
.cms-page-view .std img {
  max-width: 100%;
}
.cms-page-view .std h2 {
  font: normal 18px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.714;
  text-align: center;
  text-transform: none;
}
.cms-page-view .std h2 a {
  color: #9E9E9E;
  text-decoration: underline;
}
.cms-page-view .std h2 a:hover {
  text-decoration: none;
  color: #000000;
}
.cms-page-view .std h3 {
  font: normal 16px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.846;
  text-align: left;
  text-transform: none;
}
.cms-page-view .std h3.big {
  font-size: 18px;
}
.cms-page-view .std h3.underline {
  text-decoration: underline;
}
.cms-page-view .std p:not(.mail) {
  font: normal 16px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.4;
  text-align: left;
  text-transform: none;
  margin: 0 0 35px 0;
}
.cms-page-view .std p:not(.mail).small {
  font-size: 15px;
}
.cms-page-view .std p.mail {
  font: normal 16px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #4C4646;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
}
.cms-page-view .std .grid p {
  font-size: 13px;
  line-height: 1.615;
}
.cms-page-view .std .grid p i {
  font-size: 25px;
  position: relative;
  top: 5px;
  display: inline-block;
}
.cms-page-view .std h2.center, .cms-page-view .std h3.center, .cms-page-view .std p.center {
  text-align: center;
}
.cms-page-view .std h2 .justify, .cms-page-view .std h3 .justify, .cms-page-view .std p .justify {
  text-align: justify;
}
.cms-page-view .std h2.margin-top, .cms-page-view .std h3.margin-top, .cms-page-view .std p.margin-top {
  margin-top: 80px;
}
.cms-page-view .std p .bold {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.cms-page-view .std p a:not(.btn-remove) {
  text-decoration: underline;
}
.cms-page-view .std p a:not(.btn-remove):hover {
  text-decoration: none;
}
.cms-page-view .std p.bigFont {
  font-size: 24px;
}
.cms-page-view .std .grid {
  margin: 30px 0;
  float: left;
  width: 100%;
}
.cms-page-view .std .grid li {
  float: left;
  padding: 0 25px;
}
.cms-page-view .std .grid.grid2 li {
  width: 50%;
  min-height: 120px;
}
.cms-page-view .std .grid.grid2 li:nth-child(2n + 1) {
  padding-left: 0;
}
.cms-page-view .std .grid.grid2 li:nth-child(2n + 2) {
  padding-right: 0;
}
.cms-page-view .std .grid.grid3 li {
  width: 33.33333%;
  min-height: 120px;
}
.cms-page-view .std .grid.grid3 li:nth-child(3n + 1) {
  padding-left: 0;
}
.cms-page-view .std .grid.grid3 li:nth-child(3n + 3) {
  padding-right: 0;
}
.cms-page-view .std .grid.grid4 li {
  width: 25%;
  min-height: 120px;
}
.cms-page-view .std .grid.grid4 li:nth-child(4n + 1) {
  padding-left: 0;
}
.cms-page-view .std .grid.grid4 li:nth-child(4n + 4) {
  padding-right: 0;
}
.cms-page-view .std .grid.grid5 li {
  width: 20%;
  min-height: 120px;
}
.cms-page-view .std .grid.grid5 li:nth-child(5n + 1) {
  padding-left: 0;
}
.cms-page-view .std .grid.grid5 li:nth-child(5n + 5) {
  padding-right: 0;
}
.cms-page-view .std .grid.grid6 li {
  width: 16.66667%;
  min-height: 120px;
}
.cms-page-view .std .grid.grid6 li:nth-child(6n + 1) {
  padding-left: 0;
}
.cms-page-view .std .grid.grid6 li:nth-child(6n + 6) {
  padding-right: 0;
}
.cms-page-view .std .grid:after {
  content: '';
  display: table;
  clear: both;
}
.cms-page-view .std .toggle-content .show-response {
  cursor: pointer;
}
.cms-page-view .std .toggle-content .show-response i {
  display: block;
  font-size: 20px;
  margin: 2px 0 5px 0;
}
.cms-page-view .std .toggle-content .show-response.active i {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cms-page-view .std .toggle-content h2.show-response {
  margin: 30px 0;
}
.cms-page-view .std .toggle-content h3.show-response {
  margin: 0;
}
.cms-page-view .std .toggle-content .response-container {
  display: none;
}
.cms-page-view .std .toggle-content p {
  margin: 0 0 20px 0;
}
.cms-page-view .std .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 18px;
  text-align: center;
  background: #000000;
  color: #FFFFFF;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.cms-page-view .std .close:hover {
  background: #FFFFFF;
  color: #000000;
}
.cms-page-view .std .store {
  margin: 60px 0 100px 0;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  background-position: center center;
  background-size: cover;
  position: relative;
  margin: 0;
}
.cms-page-view .std .store .text {
  float: left;
  width: 280px;
  padding: 0 25px 25px 0;
  background: #FFFFFF;
}
.cms-page-view .std .store .text h3 {
  font: normal 24px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
  margin-bottom: 25px;
}
.cms-page-view .std .store .text p {
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.385;
  text-align: left;
  text-transform: none;
  margin: 0;
  padding-right: 15px;
}
.cms-page-view .std .store .text p.schedule {
  margin-bottom: 25px;
}
.cms-page-view .std .store .text a {
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.615;
  text-align: left;
  text-transform: none;
  display: block;
}
.cms-page-view .std .store .text a.gogglemaps-link, .cms-page-view .std .store .text a.share {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.364;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.cms-page-view .std .store .text a.share {
  color: #9E9E9E;
}
.cms-page-view .std .store .text a:hover {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.cms-page-view .std .store .text ul.social {
  display: none;
  width: 100%;
}
.cms-page-view .std .store .text ul.social li {
  display: inline-block;
  padding: 0 10px;
}
.cms-page-view .std .store .text ul.social li a {
  font-size: 18px;
  line-height: 28px;
}
.cms-page-view .std .store .text .toggle-content .response-container {
  display: block;
}
.cms-page-view .std .store img {
  float: right;
  max-width: calc(100% - 280px);
}
.cms-page-view .std .store:after {
  content: '';
  display: table;
  clear: both;
}
.cms-page-view .std .store .text {
  margin: 15px;
  padding: 25px 20px;
  width: 200px;
}
.cms-page-view .std .store .text h3 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 18px;
}
.cms-page-view .std .store .text p {
  padding: 0;
}
.cms-page-view .std .store .text a.share {
  display: none;
}
.cms-page-view .std .store .text .toggle-content .response-container {
  display: none;
  margin-top: 10px;
}
.cms-page-view .std .store .text .toggle-content .show-response {
  display: block;
  text-decoration: underline;
  font-size: 11px;
}
.cms-page-view .col-left:after {
  content: '';
  display: table;
  clear: both;
}

.table-container {
  position: relative;
}
.table-container .hide-content {
  display: none;
  width: 100%;
  box-shadow: 0 10.392px 17.1px 3.9px rgba(0, 0, 0, 0.071);
  background: #FFFFFF;
  padding: 32px 15px 15px 15px;
}

.cms-no-route .std .page-title h1,
.checkout-onepage-success .std .page-title h1,
.customer-account-logoutsuccess .std .page-title h1,
.checkout-cart-index .std .page-title h1 {
  margin: 0 0 10px 0;
  line-height: 1em;
}
.cms-no-route .std img,
.checkout-onepage-success .std img,
.customer-account-logoutsuccess .std img,
.checkout-cart-index .std img {
  width: 100%;
}

.layout-background {
  height: calc(100vh - 70px);
  width: 100%;
  display: table;
  background-repeat: no-repeat;
  background-size: cover;
}
.layout-background .cms-center-content {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  position: relative;
  top: -83px;
  z-index: 2;
}
.layout-background .cms-center-content .center-content-text {
  background: #FFFFFF;
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  padding: 115px 0;
  box-shadow: 6px 10.392px 16.92px 1.08px rgba(0, 0, 0, 0.063);
}
.layout-background .cms-center-content .center-content-text .back-link {
  float: none;
  color: #9E9E9E;
  font-size: 13px;
}
.layout-background .cms-center-content .center-content-text .back-link:hover {
  color: #000000;
}

.cms-no-route .layout-background,
.customer-account-logoutsuccess .layout-background,
.checkout-cart-index .layout-background {
  height: 100vh;
}

.cms-home-modular .std .messages,
.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages,
.customer-account-logoutsuccess .std .messages,
.checkout-cart-index .std .messages {
  margin-bottom: 10px;
}
.cms-home-modular .std .messages ul,
.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-no-route .std .messages ul,
.customer-account-logoutsuccess .std .messages ul,
.checkout-cart-index .std .messages ul {
  margin-bottom: 0;
}
.cms-home-modular .std .messages li,
.cms-page-view .std .messages li,
.cms-home .std .messages li,
.cms-no-route .std .messages li,
.customer-account-logoutsuccess .std .messages li,
.checkout-cart-index .std .messages li {
  list-style: none;
  margin-left: 0;
  font-style: normal;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
}

.customer-account-logoutsuccess .layout-background,
.checkout-cart-index .layout-background {
  background-image: url(../images/404.jpg);
}

.cms-page-view:not(.cms-home-modular) .col2-left-layout .std {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 46px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  padding: 46px 0 0 0;
  max-width: calc(100% - 400px);
  max-width: 100%;
  padding: 46px 45px 0 200px;
  padding: 0 15px;
}

.cms-useful-information .col2-left-layout .col-main .std, .cms-informacion-util .col2-left-layout .col-main .std {
  padding: 0;
}

.cms-tiendas .col2-left-layout .col-main .std, .cms-stores .col2-left-layout .col-main .std {
  padding: 0;
}

.cms-envios-devoluciones .col-main .std .table-container, .cms-shipping .col-main .std .table-container {
  overflow: hidden;
  overflow-x: auto;
  max-width: 100%;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #000000;
  font-size: 14px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -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: #4C4646;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
#accordion > 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 #000000;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
#accordion > dl > dt:hover {
  background-color: #ededed;
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #4C4646;
}
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
.page-sitemap .links a {
  position: relative;
}
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px;
}
.page-sitemap .sitemap li {
  margin: 3px 0;
}

.contacts-index-index h1 {
  border: none;
}

#contactForm {
  padding-left: 0;
}
#contactForm h2 {
  display: none;
}
#contactForm:after {
  content: '';
  display: table;
  clear: both;
}
#contactForm .fieldset .legend + .required {
  margin: 0;
}

.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar {
  display: none;
}

.shipping-table {
  /* Helpers */
}
.shipping-table tr,
.shipping-table th,
.shipping-table td {
  display: block;
}
.shipping-table thead {
  display: none;
}
.shipping-table thead th {
  border-right: 0;
  border-left: 0;
}
.shipping-table thead th.lin-hide {
  display: none;
}
.shipping-table thead th:nth-child(1n+2) {
  display: none;
}
.shipping-table tbody tr {
  position: relative;
  border-bottom: 1px solid #4C4646;
}
.shipping-table tbody td {
  padding: 0 15px 10px;
  border-right: 0;
  border-bottom: 0;
}
.shipping-table tbody td, .shipping-table tbody td:first-child, .shipping-table tbody td:last-child {
  width: 100%;
}
.shipping-table tbody td:last-child {
  text-align: right;
}
.shipping-table tbody tr.data-order {
  display: none;
}
.shipping-table tbody tr.data-order td {
  padding: 0;
}
.shipping-table tbody tr.data-order.show-details {
  display: block;
}
.shipping-table tbody tr.data-order.show-details td {
  padding: 15px;
}
.shipping-table .order-review .order-details,
.shipping-table .order-review .order-shipto {
  width: 100%;
  float: none;
}
.shipping-table tbody td.lin-hide {
  display: none;
}
.shipping-table tbody td:first-child {
  padding-top: 10px;
}
.shipping-table tbody td:first-child,
.shipping-table tbody td:first-child h3 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.shipping-table tbody td[data-rwd-label] {
  text-align: right;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.shipping-table tbody td[data-rwd-label] .price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.shipping-table tbody td[data-rwd-label]:before {
  float: left;
}
.shipping-table tbody td[data-rwd-label]:before {
  content: attr(data-rwd-label) ":";
  font-size: 12px;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  padding-right: 5px;
  text-transform: uppercase;
}
.shipping-table tfoot tr {
  display: block;
  text-align: right;
}
.shipping-table tfoot tr:after {
  content: '';
  display: table;
  clear: both;
}
.shipping-table tfoot td {
  display: block;
  float: left;
}
.shipping-table tfoot td.lin-hide {
  display: none;
}
.shipping-table tfoot td:nth-child(odd) {
  clear: left;
  width: 60%;
}
.shipping-table tfoot td:nth-child(even) {
  text-align: left;
  width: 40%;
}
.shipping-table .linearize-hide {
  display: none;
}
.shipping-table .linearize-unpad {
  padding: 0;
}
.shipping-table .linearize-show {
  display: block;
}

.layout-background .cms-center-content .center-content-text {
  max-width: 90%;
  padding: 50px 0;
}

.cms-page-view .std .page-title h1, .cms-page-view .std .page-head h1 {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.2;
  padding: 0 15px;
  margin: 20px 0;
}
.cms-page-view .std h2 {
  font-size: 13px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.cms-page-view .std p, .cms-page-view .std p.bigFont {
  font-size: 14px;
}

.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar {
  display: block;
}
.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar .page-title .h1 {
  text-align: center;
  font-size: 18px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  display: block;
}
.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar .nav-primary {
  padding: 0 0 40px 0;
}
.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar .nav-primary li a {
  padding: 15px;
  width: 100%;
  display: block;
  position: relative;
  border-bottom: 1px solid #DBDBDB;
}
.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar .nav-primary li a:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 20px;
}
.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar #nav, .cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar .nav-primary {
  width: 100%;
  max-width: 100%;
}
.cms-page-view .col-main .std .cms-faq-block .col-left-first.sidebar .nav-primary li a:after {
  top: 15px;
}
.cms-page-view .col-main .std .cms-faq-block > .page-title {
  display: none;
}
.cms-page-view .col-main .std .cms-faq-block h3.big {
  font: normal 11px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 2.909;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  margin: 20px 0;
  position: relative;
}
.cms-page-view .col-main .std .cms-faq-block h3.big:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
}
.cms-page-view .col-main .std .cms-faq-block .toggle-content .show-response {
  margin-bottom: 20px;
}
.cms-page-view .col-main .std .cms-faq-block .toggle-content .show-response i {
  display: none;
}
.cms-page-view .col-main .std .cms-faq-block .toggle-content .response-container {
  display: block;
  text-align: justify;
}
.cms-page-view .col-main .std .cms-faq-block .grid {
  margin-top: 0;
}
.cms-page-view .col-main .std .cms-faq-block .grid li {
  display: none;
}
.cms-page-view .col-main .std .cms-faq-block .grid li:first-child {
  display: block;
}
.cms-page-view .col-main .std .cms-faq-block .faq-mobile-content,
.cms-page-view .col-main .std .cms-faq-block .grid .faq-mobile-content {
  display: none;
  width: 100%;
}
.cms-page-view .col-main .std .cms-faq-block .faq-mobile-content.faq1,
.cms-page-view .col-main .std .cms-faq-block .grid .faq-mobile-content.faq1 {
  display: block;
}
.cms-page-view .col-main .std .cms-faq-block:after {
  content: '';
  display: table;
  clear: both;
}

#modal-size-guide {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 1000;
  padding: 45px;
  overflow-y: auto;
  padding: 30px 15px;
}
#modal-size-guide .page-title h1 {
  text-align: center;
}
#modal-size-guide .close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #000000;
}
#modal-size-guide .close:hover {
  color: #9E9E9E;
}

.useful-info .page-title .h1 {
  text-align: center;
  font-size: 18px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  display: block;
}
.useful-info .nav-primary {
  padding: 0 0 40px 0;
}
.useful-info .nav-primary li a {
  padding: 15px;
  width: 100%;
  display: block;
  position: relative;
  border-bottom: 1px solid #DBDBDB;
}
.useful-info .nav-primary li a:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 20px;
}
.useful-info .nav-primary {
  width: 100%;
  margin-bottom: 0;
}
.useful-info .nav-primary li a:after {
  top: 15px;
}
.useful-info .nav-primary li:last-child a {
  border-bottom: none;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.map-info {
  white-space: nowrap;
}

.catalog-product-view .map-info {
  white-space: normal;
}
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}
.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3;
}
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

.notice-cookie .notice-text {
  max-width: 86%;
}

/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

#addTagForm .form-add {
  margin-top: 10px;
}

.product-tags {
  background-color: #F4F4F4;
  border: 1px solid #4C4646;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%;
}

.product-tags li {
  float: left;
  margin-right: 15px;
}

.product-tags li.last {
  margin-right: 0px;
}

.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.tags-list > li {
  float: left;
  margin-right: 10px;
}

.block-tags .actions > a {
  font-size: 12px;
}

.my-tag-edit .button.btn-remove {
  padding: 0;
}
.my-tag-edit .button.btn-remove:after {
  color: white;
}

/* ============================================ *
 * Captcha
 * ============================================ */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px;
}

.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%;
}

.registered-users .captcha-image {
  margin: 0;
}

.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

.customer-account-create #form-validate .captcha-input-container label:first-child {
  width: 100%;
}

.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px;
}

.captcha-img {
  border: 20px solid #bbb;
}

.captcha-input-container {
  margin-bottom: 10px;
}

.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both;
}
.control.newsletter-box:after, .captcha-input-container:after, .captcha-img-container:after {
  content: '';
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout Billing Fix to place the Captcha properly
 * ============================================ */
#co-billing-form ul.form-list > .control {
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}
#recurring_profile_list_view th span {
  white-space: inherit;
}

.recurring-profiles-title {
  float: left;
}
.recurring-profiles-title h1 {
  margin-bottom: 7px;
}

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px;
}
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both;
}

#recurring_start_date_trig {
  display: inline;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
.billing-agreements .info-box {
  margin-bottom: 30px;
}
.billing-agreements .info-box:after {
  content: '';
  display: table;
  clear: both;
}
.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}
.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}
.billing-agreements .info-box .button {
  float: right;
  margin-top: 7px;
}
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}

.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

.billing-agreements .data-table .created-at,
.billing-agreements .data-table .updated-at {
  display: none;
}

/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px;
}

/* -------------------------------------------- *
 * Layout Row
 */
.row {
  margin: 0 auto;
  width: auto;
}
.row [class^="column"], .row [class*=" column"] {
  position: relative;
  float: left;
  text-align: center;
  max-width: 100%;
  margin: 0;
}
.row [class^="column"] .banner-image, .row [class*=" column"] .banner-image {
  padding: 0;
  position: relative;
}
.row [class^="column"] .banner-image img, .row [class*=" column"] .banner-image img {
  width: 100%;
  height: auto;
}
.row .column {
  width: 100%;
}
.row .column2 {
  width: 50%;
}
.row .column3 {
  width: 33.33333333%;
}
.row .column4 {
  width: 25%;
}
.row .banner-image {
  text-align: center;
}
.row .banner-image img {
  opacity: 0;
  display: block;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.row .banner-text {
  position: absolute;
  top: 50%;
  display: table-cell;
  vertical-align: middle;
  margin-top: -35px;
  width: 100%;
  text-transform: none;
}
.row .banner-text .banneTitle {
  font: bold 102px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 0.706;
  text-align: center;
  text-transform: none;
  display: block;
  transition: font-size 0.2s ease-in-out;
  -moz-transition: font-size 0.2s ease-in-out;
  -webkit-transition: font-size 0.2s ease-in-out;
  -ms-transition: font-size 0.2s ease-in-out;
  -o-transition: font-size 0.2s ease-in-out;
}
.row .banner-text .banneSubtitle {
  font: normal 15px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 2.769;
  text-align: center;
  text-transform: uppercase;
  display: block;
  transition: font-size 0.2s ease-in-out;
  -moz-transition: font-size 0.2s ease-in-out;
  -webkit-transition: font-size 0.2s ease-in-out;
  -ms-transition: font-size 0.2s ease-in-out;
  -o-transition: font-size 0.2s ease-in-out;
}
.row .banner-text .banneSubtitle:hover {
  text-decoration: none;
  font-weight: bold;
}
.row .banner-text .banneTitle.white, .row .banner-text .banneSubtitle.white {
  color: #FFFFFF;
}
.row .banner-text .banneTitle.grey, .row .banner-text .banneSubtitle.grey {
  color: #9E9E9E;
}
.row .banner-text .banneTitle.CenturyGothicPro-Bold, .row .banner-text .banneSubtitle.CenturyGothicPro-Bold {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.row .banner-text.white .banneTitle, .row .banner-text.white .banneSubtitle {
  color: #FFFFFF;
}
.row .column2 .banner-text .banneTitle {
  font-size: 51px;
}
.row .column3 .banner-text .banneTitle, .row .column4 .banner-text .banneTitle {
  font-size: 32px;
}
.row video {
  width: 100%;
  height: auto;
}

.lookbook-view .col2-left-layout .col-main .row .banner-image {
  margin: 0 250px;
}

.list-banner {
  display: table;
  width: 100%;
  height: 100%;
}
.list-banner .banner-text {
  display: table-cell;
  vertical-align: middle;
}
.list-banner .banner-text .banneTitle {
  font: bold 102px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 0.706;
  text-align: center;
  text-transform: none;
  display: block;
  transition: font-size 0.2s ease-in-out;
  -moz-transition: font-size 0.2s ease-in-out;
  -webkit-transition: font-size 0.2s ease-in-out;
  -ms-transition: font-size 0.2s ease-in-out;
  -o-transition: font-size 0.2s ease-in-out;
}
.list-banner .banner-text .banneSubtitle {
  font: normal 15px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 2.769;
  text-align: center;
  text-transform: uppercase;
  display: block;
  transition: font-size 0.2s ease-in-out;
  -moz-transition: font-size 0.2s ease-in-out;
  -webkit-transition: font-size 0.2s ease-in-out;
  -ms-transition: font-size 0.2s ease-in-out;
  -o-transition: font-size 0.2s ease-in-out;
}
.list-banner .banner-text .banneSubtitle:hover {
  text-decoration: none;
  font-weight: bold;
}
.list-banner .banner-text .banneTitle.white, .list-banner .banner-text .banneSubtitle.white {
  color: #FFFFFF;
}
.list-banner .banner-text .banneTitle.grey, .list-banner .banner-text .banneSubtitle.grey {
  color: #9E9E9E;
}
.list-banner .banner-text .banneTitle.CenturyGothicPro-Bold, .list-banner .banner-text .banneSubtitle.CenturyGothicPro-Bold {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.list-banner .banner-text.white .banneTitle, .list-banner .banner-text.white .banneSubtitle {
  color: #FFFFFF;
}
.list-banner .banner-text .banneTitle {
  text-transform: none;
  font-family: "Helvetica Neue Light", Verdana, Arial, sans-serif;
  font-size: 48px;
}
.list-banner .banner-text .banneTitle, .list-banner .banner-text .banneSubtitle {
  text-align: center;
}

.row .column-tablet, .row .column-mobile {
  width: 100%;
  padding: 0 !important;
}
.row .column2-tablet, .row .column2-mobile {
  width: 50%;
}
.row .column3-tablet, .row .column3-mobile {
  width: 33.33333333%;
}
.row .column4-tablet, .row .column4-mobile {
  width: 25%;
}
.row .banner-text {
  display: none;
}

/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #F4F4F4;
  text-transform: uppercase;
  border-bottom: 1px solid #4C4646;
  border-right: 1px solid #4C4646;
  margin-bottom: 10px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}
.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #4C4646;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 > h4, .checkout-multishipping-shipping .col-2 > h4,
.checkout-multishipping-billing .col-1 > h4,
.checkout-multishipping-billing .col-2 > h4,
.checkout-multishipping-overview .col-1 > h4,
.checkout-multishipping-overview .col-2 > h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #4C4646;
  padding: 10px;
  font-size: 14px;
}
.checkout-multishipping-shipping .col-1 .box-content, .checkout-multishipping-shipping .col-2 .box-content,
.checkout-multishipping-billing .col-1 .box-content,
.checkout-multishipping-billing .col-2 .box-content,
.checkout-multishipping-overview .col-1 .box-content,
.checkout-multishipping-overview .col-2 .box-content {
  margin-bottom: 25px;
  padding-left: 10px;
  margin-top: 10px;
}

.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%;
}

#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none;
}

#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both;
}

body[class*="checkout-multishipping-"] .checkout-progress span {
  word-spacing: 300px;
}

#review-order-form .col-1,
#review-order-form .col-2 {
  float: none;
  width: auto;
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

html.overflow-hidden {
  overflow: hidden;
}

#gallery-full {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
#gallery-full .product-image-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10001;
}
#gallery-full .product-image-thumbs div:first-child {
  margin-left: 0;
}
#gallery-full .product-image-thumbs .owl-stage-outer {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
#gallery-full .product-image-thumbs .owl-stage-outer .owl-stage {
  min-height: 100%;
}
#gallery-full .product-image-thumbs .owl-stage-outer .owl-stage div.owl-item {
  padding: 30px 0 20px 0;
}
#gallery-full .product-image-thumbs .owl-stage-outer .owl-stage div.owl-item > div {
  width: 100%;
  text-align: center;
}
#gallery-full .product-image-thumbs .owl-stage-outer .owl-stage div.owl-item > div a {
  border: none;
}
#gallery-full .product-image-thumbs .owl-stage-outer .owl-stage div.owl-item > div a:hover {
  border: none;
}
#gallery-full .product-image-thumbs .owl-stage-outer .owl-stage div.owl-item > div a img {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
#gallery-full .product-image-thumbs .owl-controls .owl-nav div {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 10002;
  width: 50px;
  background: transparent;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
#gallery-full .product-image-thumbs .owl-controls .owl-nav div.owl-prev {
  left: 0;
}
#gallery-full .product-image-thumbs .owl-controls .owl-nav div.owl-next {
  right: 0;
}
#gallery-full .product-image-thumbs .owl-controls .owl-nav div.off {
  display: none !important;
}
#gallery-full .product-image-thumbs .owl-controls .owl-nav div i {
  position: absolute;
  top: 50%;
  z-index: 10003;
  margin-top: -15px;
  height: 30px;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
#gallery-full .product-image-thumbs .owl-controls .owl-nav div:hover {
  background: #FFFFFF;
}
#gallery-full .product-image-thumbs .owl-controls .owl-nav div:hover i {
  color: #000000;
}
#gallery-full .product-image-gallery {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10001;
  max-width: 100%;
  text-align: center;
}
#gallery-full .product-image-gallery img {
  width: 80%;
  height: auto;
  display: inline-block;
}
#gallery-full .product-image-gallery img.gallery-image.visible {
  display: inline-block;
}

#gallery-zoom-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10003;
  font-size: 20px;
  background: transparent;
  color: #000000;
  padding: 5px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  cursor: pointer;
  display: none;
}
#gallery-zoom-close:hover {
  background: #000000;
  color: #FFFFFF;
}

.product-img-box.zoom-enabled .product-image-zoom {
  padding: 0;
}
.product-img-box.zoom-enabled #gallery-zoom-close {
  display: block;
}

.col-main,
.product-view,
.product-essential,
.product-img-box {
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

/*
#header,
.block-related,
.box-up-sell,
.footer-container {
    opacity: 1;

    &.zoom-enabled {
        opacity: 0;
        z-index: -1;
        height: 0;
    }
}
*/
#header.zoom-enabled {
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.col-main.zoom-enabled,
.product-view.zoom-enabled,
.product-img-box.zoom-enabled,
.product-image-gallery.zoom-enabled {
  width: 100%;
  max-width: 100%;
}

.product-image-gallery.zoom-enabled {
  text-align: center;
}
.product-image-gallery.zoom-enabled img {
  width: 80%;
  height: auto;
}
.product-image-gallery.zoom-enabled img.gallery-image.visible {
  display: inline-block;
}
.product-image-gallery.zoom-enabled img:hover {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
}

.product-essential.zoom-enabled {
  margin: 0;
  overflow: hidden;
}

.product-img-box.zoom-enabled {
  padding: 0;
}

#popup-wrap {
  z-index: 2000;
  position: fixed;
  text-align: center;
  background: #777777;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

#on_popup {
  z-index: 3000;
  position: fixed;
  text-align: center;
  background: #FFFFFF;
  visibility: hidden;
  max-width: 95%;
  max-height: 95%;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
#on_popup:after {
  content: '';
  display: table;
  clear: both;
}
#on_popup .only-popup {
  display: block;
  margin: 0;
}
#on_popup .close {
  position: absolute;
  top: 0;
  right: 0;
  background: #000000;
  color: #FFFFFF;
  display: block;
  cursor: pointer;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
#on_popup .close:hover {
  background: #FFFFFF;
  color: #000000;
}
#on_popup img {
  max-width: 100%;
  height: auto;
}
#on_popup .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
#on_popup .block-title strong {
  font-weight: normal;
}
#on_popup .block-subscribe {
  float: none;
  margin-bottom: 0;
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
}
#on_popup .block-subscribe .input-box:not(.checkPolitica) {
  float: left;
  padding-top: 0;
  width: 75%;
}
#on_popup .block-subscribe .checkPolitica {
  float: left;
  width: 100%;
  margin-top: 10px;
  display: block;
  text-align: left;
}
#on_popup .block-subscribe .checkPolitica label {
  font-size: 11px;
}
#on_popup .block-subscribe .input-text {
  height: 28px;
  width: 33.3333333%;
  float: left;
  border-right: 0;
  font-size: 11px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #000000;
  padding: 6px 8px;
}
#on_popup .block-subscribe .block-content {
  padding-top: 0;
  margin-top: 0;
  position: relative;
}
#on_popup .block-subscribe .block-content #mce-responses {
  position: absolute;
  top: -54px;
  right: -1px;
  padding: 0 10px;
  display: table;
  height: 54px;
  width: 100%;
}
#on_popup .block-subscribe .block-content #mce-responses .response, #on_popup .block-subscribe .block-content #mce-responses .response a {
  color: #000000;
}
#on_popup .block-subscribe .block-content #mce-responses .response {
  font-size: 12px;
  text-transform: none;
  text-align: center;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  background: #FFFFFF;
}
#on_popup .block-subscribe .block-content #mce-responses .response a:hover {
  text-decoration: underline;
}
#on_popup .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
#on_popup .block-subscribe .actions {
  float: left;
  margin: 0;
  width: 25%;
}
#on_popup .block-subscribe .actions .button {
  height: 28px;
  line-height: 28px;
  float: left;
  width: 100%;
  padding: 0;
}
#on_popup .block-subscribe .control input.checkbox {
  margin-top: -1px;
}
#on_popup .form-subscribe-header label {
  font: normal 29px "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 0.944;
  text-align: center;
  text-transform: none;
  display: block;
  margin: 10px 0 25px 0;
}
#on_popup #mc_embed_signup input.mce_inline_error {
  border-color: #DF280A;
}
#on_popup #mc_embed_signup div.mce_inline_error {
  display: none !important;
  background: none;
}
#on_popup #shop-advantages {
  width: 1075px;
  max-width: 100%;
}
#on_popup #shop-advantages .page-title {
  margin: 20px 0;
}
#on_popup #shop-advantages .h1 {
  font-size: 32px;
  line-height: 2.25;
}
#on_popup #shop-advantages ul {
  margin: 0 auto;
}
#on_popup #shop-advantages ul li {
  float: left;
  width: 50%;
  text-align: left;
}
#on_popup #shop-advantages ul li img {
  display: inline-block;
  margin: 0 10px 10px 0;
  float: left;
  max-width: 23px;
  height: auto;
}
#on_popup #shop-advantages ul li > div {
  margin: 0 0 25px 33px;
  max-width: 350px;
}
#on_popup #shop-advantages ul li h2 {
  font: normal 14px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #9E9E9E;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
}
#on_popup #shop-advantages ul li p {
  font: normal 13px "Helvetica Neue Light", Verdana, Arial, sans-serif;
  color: #000000;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
}
#on_popup #shop-advantages ul.grid2 {
  max-width: 885px;
}
#on_popup #shop-advantages ul.grid4 {
  margin: 35px auto 10px auto;
}
#on_popup #shop-advantages ul.grid4 li {
  width: 25%;
  margin: 0 0 25px 0;
}
#on_popup #shop-advantages ul.grid4 li h2, #on_popup #shop-advantages ul.grid4 li p {
  font-size: 12px;
}
#on_popup #shop-advantages ul:after {
  content: '';
  display: table;
  clear: both;
}
#on_popup #shop-advantages .buttons-set {
  text-align: center;
  margin: 25px 0 50px 0;
}
#on_popup #shop-advantages .buttons-set button.button {
  float: none;
  min-width: 190px;
  margin: 0;
}
#on_popup #shop-advantages .buttons-set button.button:first-child {
  margin-right: 30px;
}
#on_popup #shop-advantages .buttons-set button.button:last-child {
  margin-left: 30px;
}
#on_popup #shop-advantages .find-us {
  margin: 0 -20px -20px -20px;
  height: 60px;
  line-height: 60px;
  border-top: 1px solid #000000;
}

#on_popup {
  padding: 30px;
}

/* ============================================ *
 * Simulator on product view page
 * ============================================ */
.catalog-product-view #pmt-iframe-product-simulator {
  margin-top: 20px;
}

/* ============================================ *
 * Simulator on checkout page
 * ============================================ */
.opc-index-index #dt_method_pagantis {
  margin: 0;
}

.opc-index-index #dd_method_pagantis{
  margin: 0 0 15px 0;
}

.opc-index-index #dd_method_pagantis .PagantisSimulator {
  overflow: hidden;
  height: 96px;
  width: 296px;
  margin: 0 auto;
}

.opc-index-index #dd_method_pagantis .PagantisSimulator iframe {
  margin: -2px;
  width: auto !important;
}

/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate;
}
div.calendar table td.button {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none;
}
