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

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
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.
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
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;
}

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: block;
}

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", Helvetica, Arial, sans-serif;
  color: #636363;
  font-size: 15px;
  line-height: 1.5;
}

body {
  color: #000000;
}

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

a:hover {
  color: black;
  text-decoration: underline;
}

a:focus {
  outline-color: black;
  color: black;
}

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

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #3399CC;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

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

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

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #636363;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  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 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #636363;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

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

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #CCCCCC;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #3399CC;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #A0A0A0;
}

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

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

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

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

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

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

.block .actions {
  margin: 10px 0 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;
}

@media only screen and (max-width: 770px) {
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #636363;
    font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px;
    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: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #000;
    border-right: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #636363;
    font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px;
    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: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #000;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #CCCCCC;
  }
}
/* -------------------------------------------- *
 * 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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #000;
}
.block-account li a,
.block-cms-menu li a {
  color: #636363;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #000;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #DDDDDD;
  color: #636363;
  padding: 7px 15px;
}
.cart .buttons-set .button:hover,
.cart-table .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer;
}
.cart .buttons-set .button:active,
.cart-table .button:active,
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #c4c4c4;
  color: #636363;
}
.cart .buttons-set .button:focus,
.cart-table .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #636363;
  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: #3399CC;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #2e8ab8;
  cursor: pointer;
}
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #297aa3;
  color: #FFFFFF;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #297aa3;
  outline: none;
  color: #FFFFFF;
}

a.button {
  text-decoration: none;
}

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

/* Disabled - class for anchor, state for form elements */
.button.disabled,
.button:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  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: #000;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #246b8f;
}

@media only screen and (max-width: 770px) {
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col2-set .buttons-set .back-link {
    display: none;
  }
  .col2-set .buttons-set .required {
    display: none;
  }
}
@media only screen and (max-width: 359px) {
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
  .buttons-set .back-link {
    display: none;
  }
  .buttons-set .required {
    display: none;
  }
}
/* -------------------------------------------- *
 * 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;
}

@media only screen and (max-width: 740px) {
  .paypal-or {
    line-height: 20px;
  }

  .paypal-logo,
  .paypal-or,
  .paypal-button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  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;
  margin-left: 5px;
  min-width: 140px;
}
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/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, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
    background-image: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px;
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-transform: uppercase;
}

.breadcrumbs a {
  float: left;
  color: #636363;
}

.breadcrumbs a:hover {
  color: #000;
}

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

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

@media only screen and (max-width: 770px) {
  .breadcrumbs {
    display: none;
  }
}
/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #EDEDED;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative;
}
.btn-remove:hover,
.btn-previous:hover {
  background-color: #000;
  border-color: #000;
}

.btn-remove:after {
  content: 'X';
  color: #000;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

.btn-remove2 {
  background-position: 4px -648px;
  border: none;
  vertical-align: top;
}
.btn-remove2:after {
  display: none;
}
.btn-remove2:hover {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

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

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}

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

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

@media only screen and (min-width: 480px) {
  .main-container,
  .footer-container {
    padding: 30px;
  }
}
.footer-container {
  padding-top: 0px;
}

/* -------------------------------------------- *
 * 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%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left;
}
.col-left img {
  max-width: 100%;
}

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

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

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

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

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

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

@media only screen and (max-width: 1000px) {
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%;
  }
  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }
  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}
@media only screen and (max-width: 770px) {
  .col-left,
  .col-right,
  .col-main,
  .col1-layout .col-left,
  .col1-layout .col-right,
  .col1-layout .col-main,
  .col2-left-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-main,
  .col2-right-layout .col-left,
  .col2-right-layout .col-right,
  .col2-right-layout .col-main,
  .col3-layout .col-wrapper .col-left,
  .col3-layout .col-right,
  .col3-layout .col-wrapper .col-main {
    padding: 0;
    margin-bottom: 10px;
    float: none;
    width: auto;
  }

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

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

  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */
  }
}
/* Content Columns */
.col2-set {
  width: 100%;
}
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
@media only screen and (max-width: 770px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
@media only screen and (max-width: 359px) {
  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 771px) {
  .top-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #E6E6E6;
  font-size: 11px;
}
.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

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

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

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

.error {
  color: #DF280A;
  font-weight: bold;
}

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

/* -------------------------------------------- *
 * Messages
 */
.messages {
  margin-bottom: 10px;
}

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #F4F4F4;
  font-size: 15px;
}

.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #DF280A;
  background-color: #FAEBE7;
}

.messages .error-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #DF280A;
  border-right: none;
}

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #E26703;
  background-color: #F9EBE6;
}

.messages .notice-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #E26703;
  border-right: none;
}

.messages .success-msg li {
  color: #000000;
  border-left: 5px solid #11B400;
  background-color: #EFF5EA;
}

.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #11B400;
  border-right: none;
}

@media only screen and (min-width: 915px) {
  .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 #CCCCCC;
  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 #CCCCCC;
  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", Helvetica, Arial, sans-serif;
}

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

.price-notice {
  color: #A0A0A0;
}

.price-box .price {
  color: #3399CC;
  font-size: 16px;
}

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

.price-box .price-label {
  color: #A0A0A0;
  white-space: nowrap;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

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

/* -------------------------------------------- *
 * 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: #A0A0A0;
  text-decoration: line-through;
}

.price-box .special-price {
  color: #3399CC;
  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 .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  padding-right: 5px;
}
.item-options dt:after {
  content: ': ';
}
.item-options dd {
  float: left;
  padding-left: 2px;
  margin: 0 0 6px;
}

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

.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 .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #000;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px;
}
.truncated .truncated_full_value .item-options:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #000;
  border-top: none;
  left: 97px;
  top: -7px;
}

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

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

@media only screen and (max-width: 359px) {
  .truncated {
    cursor: inherit;
  }
  .truncated a.details {
    display: none;
  }
  .truncated .truncated_full_value .item-options {
    display: block;
    position: static;
    z-index: 1;
    width: 100%;
    border: none;
    background-color: transparent;
  }
  .truncated .truncated_full_value .item-options p {
    float: none;
  }
  .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}
/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Add to links
 */
.add-to-links {
  margin: 7px 0;
}
.add-to-links a {
  display: inline-block;
  padding: 0px 3px 3px;
}

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

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

@media only screen and (max-width: 770px) {
  body .product-img-box .product-image:hover {
    border-color: #EDEDED;
  }
}
.no-touch .product-image:hover {
  border-color: #3399CC;
}

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0;
}
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
.ratings .rating-box {
  width: 65px;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
  overflow: hidden;
}
.ratings .rating-box .rating {
  float: left;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -600px;
}
.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 {
  list-style: decimal outside;
  margin-bottom: 1.5em;
}

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

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

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

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

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

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  background: #F4F4F4;
  padding: 5px 10px 0px 10px;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

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

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

.toolbar,
.pager {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #636363;
  line-height: 30px;
  font-size: 12px;
}

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

.sorter {
  float: left;
  margin-bottom: 5px;
}
.sorter label {
  float: left;
  margin-right: 5px;
}
.sorter label:after {
  content: ':';
}

.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

.sorter > .view-mode {
  float: right;
}
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}
.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}
.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}
.sorter > .view-mode .list {
  background-position: 11px -517px;
}
.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

.pager {
  float: right;
  overflow: hidden;
}
.pager > .count-container {
  float: left;
}
.pager .amount {
  float: left;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}
.pager .limiter > label {
  padding-right: 5px;
}
.pager .limiter > label:after {
  content: ':';
}
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

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

.pages li {
  float: left;
}

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

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

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
}
.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #000;
}

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

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

@media only screen and (max-width: 359px) {
  .pager .amount--has-pages {
    display: none;
  }

  .pages {
    float: left;
  }

  .limiter label {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col1-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 979px) {
  .col2-left-layout .sorter,
  .col2-left-layout .pager,
  .col2-right-layout .sorter,
  .col2-right-layout .pager,
  .col3-layout .sorter,
  .col3-layout .pager {
    width: 100%;
  }
  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: left;
    clear: both;
  }
  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col2-left-layout .pager .count-container,
  .col2-right-layout .pager .count-container,
  .col3-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 1279px) {
  .toolbar .view-mode > label {
    display: none;
  }
}
/* ============================================ *
 * 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;
}

/* ============================================ *
 * Print Styles
 * ============================================ */
.page-print .print-head {
  margin: 0 0 15px;
}

.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto;
}

/* ============================================ *
 * 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 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED;
}

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px;
}
.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-size: 13px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 600;
  -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", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

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

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

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px;
}

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

select[multiple] {
  width: 270px;
  border: 1px solid #C0C0C0;
  font-size: 15px;
  padding: 5px;
}

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

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #C0C0C0;
  background: #FFFFFF;
  font-size: 15px;
}
.input-text:focus {
  border: 1px solid #3399CC;
}

.input-text.validation-failed {
  border-color: #DF280A;
}

.input-text.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: 30px;
  padding: 0 8px;
}

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

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */
  }
}
.ie8 .input-text {
  max-width: none;
}

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

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  color: #A0A0A0;
}

input:-moz-placeholder {
  color: #A0A0A0;
}

/* -------------------------------------------- *
 * Checkbox And Radio
 */
.checkbox,
.radio {
  position: relative;
  top: -1px;
  display: inline-block;
}

.checkbox + label,
.radio + label {
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  font-size: 15px;
  font-weight: normal;
  vertical-align: top;
}

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

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px;
}
.form-list select {
  margin-top: 4px;
  width: 365px;
  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,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px;
}
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  color: #636363;
  background-color: #F4F4F4;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}
.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  background-color: #ededed;
}
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

.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-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

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

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

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #C0C0C0;
}

.data-table tbody td,
.data-table tfoot td {
  font-family: Georgia, Times, "Times New Roman", serif;
}

.data-table tfoot tr {
  background: #F4F4F4;
}

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

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
}
.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

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

.info-table th {
  font-weight: bold;
  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
 * ============================================ */
@media only screen and (max-width: 359px) {
  .linearize-table {
    /* Helpers */
  }
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }
  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table thead th.lin-hide {
    display: none;
  }
  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table tbody td.lin-hide {
    display: none;
  }
  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table tfoot td {
    display: block;
    float: left;
  }
  .linearize-table tfoot td.lin-hide {
    display: none;
  }
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table .linearize-hide {
    display: none;
  }
  .linearize-table .linearize-unpad {
    padding: 0;
  }
  .linearize-table .linearize-show {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .linearize-table-large {
    /* Helpers */
  }
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table-large thead th.lin-hide {
    display: none;
  }
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table-large tbody td.lin-hide {
    display: none;
  }
  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }
  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table-large .linearize-hide {
    display: none;
  }
  .linearize-table-large .linearize-unpad {
    padding: 0;
  }
  .linearize-table-large .linearize-show {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .linearize-table .linearize-collapse {
    display: none;
  }
}
/* ============================================ *
 * Global
 * ============================================ */
html,
body {
  height: 100%;
}

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

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

/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 771px) {
  .page-header {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .page-header-container {
    position: relative;
  }
}
.header-language-container,
.page-header {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #000;
  text-transform: uppercase;
}
.header-language-background .header-language-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.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: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}
.page-header-container .store-language-container label {
  display: none;
}
.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 359px) {
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}
.header-language-background,
.header-language-background a {
  color: #E6E6E6;
}

@media only screen and (max-width: 770px) {
  .header-language-background {
    display: none;
  }
}
/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  float: left;
  width: 65%;
  min-width: 100px;
  min-height: 44px;
  text-align: center;
  padding: 10px;
}
.logo img {
  max-width: 100%;
}
.logo .small {
  display: block;
}
.logo .large {
  display: none;
}

.logo:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 771px) {
  .logo {
    max-width: 300px;
    min-height: 90px;
  }
  .logo .small {
    display: none;
  }
  .logo .large {
    display: block;
  }
}
/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}

@media only screen and (min-width: 771px) {
  .skip-links {
    border: 0;
  }
}
/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  background: #FFFFFF;
  color: #636363;
  line-height: 42px;
  text-align: center;
}

a.skip-link {
  text-decoration: none;
}

.skip-link:not(.skip-active):hover {
  opacity: 0.8;
}

@media only screen and (max-width: 770px) {
  .skip-link {
    border-right: 1px solid #EDEDED;
  }

  .skip-link:last-child {
    border-right: 0;
  }
}
@media only screen and (min-width: 500px) {
  .skip-link {
    width: 25%;
  }
}
/* -------------------------------------------- *
 * Skip Link - Active
 */
@media only screen and (max-width: 770px) {
  .skip-link.skip-active {
    background: #EDEDED;
    color: inherit;
  }

  .skip-link.skip-active span {
    color: inherit;
  }
}
/* -------------------------------------------- *
 * 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;
}

@media only screen and (min-width: 500px) {
  .skip-link .icon {
    margin-right: 3px;
  }
}
/* -------------------------------------------- *
 * Skip Link - Label
 */
.skip-link .label {
  display: none;
}

@media only screen and (min-width: 500px) {
  .skip-link .label {
    display: inline;
  }
}
/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none;
}

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

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-account li a,
  .nav-primary a.level0 {
    padding: 0 15px 0 25px;
    border-bottom: 1px solid #CCCCCC;
    text-align: left;
    color: #636363;
    text-transform: uppercase;
    line-height: 30px;
  }

  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }

  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background-color: #F4F4F4;
    text-decoration: none;
  }
}
.account-cart-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
}
@media only screen and (max-width: 770px) {
  .account-cart-wrapper {
    position: static;
  }
}

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

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

.skip-nav .icon {
  background-position: 4px 4px;
}

@media only screen and (min-width: 500px) {
  .skip-nav {
    width: 25%;
  }
}
@media only screen and (min-width: 771px) {
  .skip-nav {
    display: none;
  }
}
/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-nav {
    padding: 5px 0;
  }
}
@media only screen and (min-width: 771px) {
  #header-nav {
    display: block;
    /* Force visibility */
    border-bottom: 1px solid #EDEDED;
  }
}
/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 771px) {
  .nav-primary {
    display: block;
    margin-top: 15px;
  }
}
/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #636363;
  line-height: 30px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.nav-primary li {
  position: relative;
}
.nav-primary li.level1 a {
  border-bottom: 1px solid #CCCCCC;
}

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}

.nav-primary li.level0 > a {
  text-transform: uppercase;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 770px) {
  .nav-primary a.level0,
  .nav-primary a {
    line-height: 35px;
  }
  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }
  .nav-primary li.level1 a {
    padding: 0 15px 0 25px;
  }
  .nav-primary li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ccc;
    border-right: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }
  .nav-primary li.parent.sub-menu-active > a:after,
  .nav-primary li.parent.menu-active > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #ccc;
    border-bottom: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    color: #000;
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
.nav-primary li.menu-active > ul {
  display: block;
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}
.skip-search .icon {
  background-position: 4px -146px;
}

@media only screen and (min-width: 771px) {
  .skip-search {
    display: none;
  }
}
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  padding: 20px;
}

@media only screen and (min-width: 771px) {
  #header-search {
    display: block;
    position: absolute;
    top: 55px;
    right: 0;
    width: 25%;
    height: 50px;
    padding: 0;
  }
}
/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

#search_mini_form label {
  display: none;
}

#search {
  width: 100%;
  height: 40px;
  padding-right: 40px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

#search_mini_form .search-button {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
}

#search_mini_form .search-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-position: 4px -146px;
}

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

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

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
.skip-account .icon {
  background-position: 4px -44px;
}

@media only screen and (min-width: 771px) {
  .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 #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 115px;
    width: 200px;
  }

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

  #header-account a:hover {
    color: #000;
  }
}
/* -------------------------------------------- *
 * 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: #000;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart:not(.skip-active):hover .icon {
  background-position: -50px -95px;
}
.skip-cart .icon {
  background-position: 0px -95px;
}

@media only screen and (min-width: 771px) {
  .skip-cart {
    width: auto;
    padding: 0 10px;
  }

  #header-cart.skip-active {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 0;
    width: 320px;
    background: white;
  }
}
/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  top: -6px;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.skip-link.skip-active .count {
  color: white;
}

.skip-cart.no-count .count {
  display: none;
}

@media only screen and (max-width: 499px) {
  .skip-cart .count {
    margin-left: -12px;
  }
}
@media only screen and (min-width: 771px) {
  .skip-cart {
    color: #000;
    text-transform: uppercase;
  }
  .skip-cart:hover {
    text-decoration: none;
  }
  .skip-cart .count {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    position: static;
    background: none;
    margin-left: 0px;
    font-size: 15px;
    width: auto;
  }
  .skip-cart .count:before {
    content: '(';
  }
  .skip-cart .count:after {
    content: ')';
  }

  .skip-cart .count,
  .skip-link.skip-active .count {
    color: #000;
  }
}
.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * 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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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 #CCCCCC;
  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: #A0A0A0;
  font-size: 12px;
}

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

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer,
.footer button {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.footer {
  clear: both;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  padding-top: 30px;
  /* -------------------------------------------- *
   * Social icons
   */
}
@media only screen and (max-width: 359px) {
  .footer {
    padding-top: 15px;
  }
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #3399CC;
}
.footer .links {
  float: left;
  width: 17%;
  padding: 0 30px 0 0;
  margin-bottom: 30px;
}
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
.footer .links a {
  color: #636363;
}
.footer .links a:hover {
  color: #000;
}
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 30px;
}
.footer .links,
.footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}
.footer .form-subscribe-header {
  display: none;
}
.footer .links.social-media em {
  background-image: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/social_icons.png);
  background-repeat: no-repeat;
  width: 13px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .links.social-media em {
    background-image: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}
.footer .links.social-media em.facebook {
  background-position: 0 -0px;
  height: 13px;
}
.footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}
.footer .links.social-media em.twitter {
  background-position: 0 -24px;
  height: 13px;
}
.footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}
.footer .links.social-media em.youtube {
  background-position: 0 -49px;
  height: 13px;
}
.footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}
.footer .links.social-media em.pinterest {
  background-position: 0 -74px;
  height: 15px;
}
.footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}
.footer .links.social-media em.rss {
  background-position: 0 -99px;
  height: 13px;
}
.footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}
.footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
}
.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 #CCCCCC;
  text-align: center;
  width: 100%;
  font-size: 11px;
  margin-top: 30px;
  padding: 30px 0;
}
@media only screen and (max-width: 1010px) {
  .footer .links {
    width: 22.65625%;
    padding-right: 0;
    margin-right: 3.125%;
  }
  .footer .links:nth-child(4) {
    margin-right: 0;
  }
  .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 770px) {
  .footer .form-language,
  .footer .currency-switcher {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }
  .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}

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

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

.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: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
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 {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 15px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 700;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
}

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

.products-grid > li {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}

.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
}

.products-grid .product-image img {
  width: 100%;
  height: auto;
}
.products-grid .product-image img:hidden {
  display: none;
}

.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

.products-grid .product-info {
  position: relative;
  padding-bottom: 95px;
}

.products-grid .actions {
  padding-top: 10px;
  position: absolute;
  bottom: 0px;
  min-height: 85px;
  width: 100%;
}

.products-grid .ratings .rating-box {
  margin: 0 auto;
}

.products-grid .ratings .amount {
  display: none;
}

.products-grid .price-box {
  color: #A0A0A0;
  font-size: 13px;
  margin: 0 0 5px;
}

.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */
.products-grid > li {
  float: left;
  width: 47.72727%;
  margin-right: 4.54545%;
}

.products-grid > li:nth-child(odd) {
  clear: left;
}

.products-grid > li:nth-child(even) {
  margin-right: 0;
}

.products-grid .product-image {
  margin-bottom: 5px;
}
.products-grid .product-image:before, .products-grid .product-image:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.products-grid .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.products-grid .product-image:after {
  background-image: url("https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.products-grid .product-image.loading {
  position: relative;
}
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
  display: block;
}

@media only screen and (min-width: 360px) {
  /* Config: Three columns + flexible gutter */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  .products-grid > li:nth-child(odd) {
    clear: none;
  }
  .products-grid > li:nth-child(even) {
    margin-right: 3.7037%;
  }
  .products-grid > li {
    width: 30.8642%;
    margin-right: 3.7037%;
  }
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-4-col > li:nth-child(even),
  .products-grid--max-4-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-4-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-4-col > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }

  .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-5-col > li:nth-child(even),
  .products-grid--max-5-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-5-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-5-col > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }

  .products-grid--max-5-col > li:nth-child(5n) {
    margin-right: 0;
  }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-6-col > li:nth-child(even),
  .products-grid--max-6-col > li:nth-child(3n) {
    margin-right: 2.22222%;
  }

  /* Set column config */
  .products-grid--max-6-col > li {
    margin-right: 2.22222%;
  }

  .products-grid--max-6-col > li {
    width: 14.81481%;
    margin-right: 2.22222%;
  }

  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * 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 > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.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 .price-box .price {
  font-size: 18px;
}
.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;
}

@media only screen and (min-width: 360px) {
  .products-list .product-name a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1279px) {
  .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%;
  }
}
@media only screen and (max-width: 600px) {
  .products-list .product-shop .price-box .special-price {
    padding-left: 0;
  }

  .products-list .product-shop .product-primary,
  .products-list .product-shop .product-secondary,
  .products-list .product-shop .desc {
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
}
/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 50px;
}
.mini-products-list .product-details {
  margin-left: 60px;
}
.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-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 {
  border: 1px solid #CCCCCC;
  padding: 10px;
}
.category-image img {
  width: 100%;
  max-width: 100%;
}
.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  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: #CCCCCC;
  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 #000;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  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: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
.block-layered-nav .block-content > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #000;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ededed;
}
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #CCCCCC;
}
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

.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 15px;
  display: block;
}
.block-layered-nav dl dd ol > li > a .count {
  color: #A0A0A0;
}

@media only screen and (min-width: 771px) {
  .block-layered-nav .block-content > dl > dt {
    padding-left: 10px;
  }
  .block-layered-nav .block-content > dl > dt:after {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  .sidebar .block.block-layered-nav {
    border-bottom: none;
  }

  .block-layered-nav--no-filters .block-title {
    display: none;
  }

  .block-layered-nav .block-content {
    padding-top: 0;
    margin-top: 15px;
  }
  .block-layered-nav .block-content > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .block-layered-nav .block-content > dl > dt:hover {
    color: #000;
  }
  .block-layered-nav .block-content > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #000;
    border-right: none;
  }
  .block-layered-nav .block-content > dl > dt.last {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content > dl > dd {
    display: none;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #000;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    display: block;
  }

  .block-layered-nav .block-subtitle--filter {
    background-color: #000;
    border: 0;
    margin-bottom: 0;
    display: block;
    color: #FFFFFF;
  }
  .block-layered-nav .block-subtitle--filter:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #FFFFFF;
    border-right: none;
    right: 10px;
    top: 50%;
    margin-top: -5px;
  }
  .block-layered-nav .block-subtitle--filter:hover {
    background-color: #2e8ab8;
    color: #FFFFFF;
  }
  .block-layered-nav .block-subtitle--filter.active:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #FFFFFF;
    border-bottom: none;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }

  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-top: 0;
  }

  .block-layered-nav dl ol > li > a,
  .block-layered-nav dl ol > li > span {
    padding: 7px;
    margin: 5px;
  }

  .block-layered-nav dl ol > li > a {
    color: #636363;
    background-color: #F4F4F4;
    padding: 5px 10px;
  }
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }
}
.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}
.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px;
}
.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav .actions {
  text-align: right;
  margin-bottom: 7px;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.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 .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #000;
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-shop {
  width: 50%;
  float: right;
}
.product-view .product-shop .product-name {
  display: none;
  float: left;
}
.product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px;
}
.product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left;
  width: 70%;
}
.product-view .product-shop .price-info {
  float: right;
  padding-left: 15px;
  text-align: right;
}
.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 70%;
  margin-bottom: 10px;
}
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
.product-view .product-shop .availability {
  font-size: 16px;
}
.product-view .product-shop .price-box {
  margin-top: 0;
}
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #000;
  font-size: 24px;
}
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}
.product-view .product-shop .price-box .special-price span.weee {
  color: #636363;
}
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}
.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: #636363;
}
.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 .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  width: 50%;
  float: right;
  clear: right;
}

@media only screen and (max-width: 850px) {
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 15px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 18px;
  }
}
@media only screen and (max-width: 770px) {
  .product-view .add-to-cart-wrapper {
    float: none;
    width: 100%;
    clear: both;
  }
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 16px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px;
  }
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block;
  }
}
.product-img-box {
  width: 50%;
  float: left;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image {
  margin-bottom: 10px;
}
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 750px;
  margin: 0px auto;
}

@media only screen and (max-width: 359px) {
  .product-img-box .product-image img {
    max-height: 450px;
  }
}
.product-image-gallery {
  position: relative;
}
.product-image-gallery .gallery-image {
  display: none;
}
.product-image-gallery .gallery-image.visible {
  display: block;
}
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.product-image-gallery:after {
  background-image: url("https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

.product-image-thumbs {
  margin-right: -10px;
}
.product-image-thumbs li {
  display: inline-block;
}
.product-image-thumbs a {
  display: inline-block;
  border: none;
  border-right: 10px solid transparent;
}
.product-image-thumbs:after {
  display: block;
  content: ' ';
  clear: both;
}

.product-view .product-shop,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 15px;
}

.product-img-box {
  padding-right: 15px;
}

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}

.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 {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
}
.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 .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}
.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 {
  float: left;
  margin-right: 10px;
  max-width: 100%;
}
.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 {
  min-height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 359px) {
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.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 #CCCCCC;
}
.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 {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 26px;
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}
.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}
.product-view .sharing-links a.link-compare {
  background-position: 0px -250px;
}
.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}
.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px;
}
.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px;
}

@media only screen and (max-width: 599px) {
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}
.product-collateral {
  clear: both;
}

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

.box-collateral {
  clear: both;
}

@media only screen and (min-width: 771px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #CCCCCC;
    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 #CCCCCC;
    border-left: 1px solid #CCCCCC;
  }
  .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: #000;
  }
  .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 #CCCCCC;
    border-top: 0;
  }
  .product-collateral > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 770px) {
  .product-collateral .toggle-tabs {
    display: none;
  }
  .product-collateral > dl > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #636363;
    font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px;
    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: #CCCCCC;
    position: relative;
    background-color: #F4F4F4;
    display: block;
  }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #000;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral > dl > dt:hover {
    background-color: #ededed;
  }
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px;
  }
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .product-collateral > dl > dt:hover {
    color: #000;
  }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #000;
    border-right: none;
  }
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }
  .product-collateral > dl > dd {
    display: none;
  }
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .product-collateral.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #000;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 770px) {
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-name {
    display: block;
  }

  .product-img-box .product-name {
    display: none;
  }
}
@media only screen and (max-width: 359px) {
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 15px;
  }
}
.product-view .ratings .rating-links {
  clear: left;
  float: left;
  margin-top: 0;
}

#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 {
  border: solid 1px #C0C0C0;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}
@media only screen and (max-width: 359px) {
  .grouped-items-table-wrapper {
    margin-bottom: 15px;
  }
}

.grouped-items-table .name-wrapper {
  color: #3399CC;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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;
}
.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 15px 15px;
  border: 1px solid #CCCCCC;
  clear: both;
  position: relative;
}

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
}

@media only screen and (max-width: 979px) {
  .product-view .product-options .required {
    position: static;
  }
}
.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}

.product-options dt:first-child {
  margin-top: 0;
}

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

.product-options dd .qty-holder .qty {
  width: 3em;
}

.product-options dd .qty-holder label {
  vertical-align: middle;
}

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED;
}

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.product-options dd .input-text {
  width: 98%;
}

.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-options dd select {
  width: 330px;
  max-width: 100%;
}

.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 {
  background-color: #F4F4F4;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  margin-bottom: 10px;
}

.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: #636363;
}
@media only screen and (max-width: 1010px) {
  .product-options-bottom .product-pricing,
  .product-options-bottom .tier-prices {
    float: none;
    width: 100%;
    text-align: right;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #CCCCCC;
  }
}

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

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

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

@media only screen and (max-width: 359px) {
  .product-options-bottom .price-box .price-as-configured {
    text-align: right;
  }
  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block;
  }
}
.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
.block-related li {
  margin-bottom: 7px;
}
.block-related .block-title {
  border-bottom: none;
}
.block-related .block-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  margin-bottom: 0;
}
.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 .product-details {
  margin-left: 90px;
}
.block-related .product-name {
  margin-bottom: 3px;
}
.block-related .product-details .price-box {
  margin: 2px 0 3px;
}
.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span {
  float: left;
  margin-left: 3px;
}
.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child {
  margin-left: 0;
  font-size: 16px;
  padding-right: 5px;
  padding-left: 5px;
}
.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.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 #CCCCCC;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
@media only screen and (min-width: 771px) {
  .map-popup.map-popup-right {
    left: 10px !important;
  }
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important;
  }
}
@media only screen and (max-width: 770px) {
  .map-popup {
    width: 100%;
    left: 0px !important;
  }
}
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
.map-popup .map-popup-heading h3 {
  font-size: 15px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 359px) {
  .map-popup .map-popup-heading h3 {
    text-align: center;
  }
}
.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;
}
@media only screen and (max-width: 359px) {
  .map-popup .map-popup-content {
    text-align: center;
  }
}
.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;
}
@media only screen and (max-width: 359px) {
  .map-popup .map-popup-checkout {
    text-align: center;
  }
  .map-popup .map-popup-checkout .button,
  .map-popup .map-popup-checkout .additional-addtocart-box,
  .map-popup .map-popup-checkout .paypal-logo a,
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    float: none;
  }
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px;
  }
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px;
  }
}
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-price {
  padding: 10px 0;
}
@media only screen and (max-width: 359px) {
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px;
  }
}
.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: 274px;
  padding-left: 20px;
}

.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: right;
  padding-right: 10px;
  padding-left: 0;
  width: 254px;
}
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 979px) {
  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }
  .display-single-price .cart-forms {
    float: right;
    padding-right: 10px;
    padding-left: 0;
    width: 254px;
  }
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px;
  }
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%;
  }
  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  .product-cart-sku {
    display: none;
  }

  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}
.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 0 5px 5px;
}
.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;
}

@media only screen and (min-width: 741px) {
  .checkout-types.bottom .paypal-or {
    text-align: right;
    padding-right: 70px;
  }
}
.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

@media only screen and (max-width: 740px) {
  .checkout-types {
    float: none;
    text-align: center;
  }
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }

  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .btn-checkout {
    width: 100%;
  }
}
.cart-table {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #636363;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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: Georgia, Times, "Times New Roman", 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 #3399CC;
  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 #3399CC;
  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: #C0C0C0;
  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-left: 15px;
}

@media only screen and (max-width: 770px) {
  .cart-table th {
    font-size: 12px;
  }
  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }
  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }
}
@media only screen and (max-width: 699px) {
  .display-both-prices .cart-table thead th.cart-total-head,
  .display-both-prices .cart-table td.product-cart-total {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .cart-table colgroup, .cart-table thead {
    display: none;
  }
  .cart-table tr {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }
  .cart-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .cart-table tr:last-child {
    margin-bottom: 0;
  }
  .cart-table tfoot tr {
    padding-bottom: 0;
  }
  .cart-table td {
    border: none;
    display: block;
  }
  .cart-table td[data-rwd-label] {
    padding-left: 15px;
    margin-bottom: 6px;
  }
  .cart-table td[data-rwd-label] .price {
    font-weight: normal;
  }
  .cart-table td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .cart-table td.product-cart-price {
    text-align: left;
  }
  .cart-table h2 {
    font-size: 12px;
  }
  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px;
  }
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }
  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 13px;
  }
  .cart-table .cart-tax-info .price {
    font-size: 13px;
  }
  .cart-table .product-cart-image {
    width: 25%;
    float: left;
    padding-bottom: 0;
  }
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
  }
  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    float: right;
    width: 75%;
  }
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
    float: right;
  }
  .cart-table .product-cart-remove,
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions .cart-links {
    display: none;
  }
  .cart-table .product-cart-image .cart-links,
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }
  .cart-table .product-cart-actions .button {
    display: none;
  }
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }
  .cart-table .product-cart-actions {
    text-align: left;
  }
  .cart-table .product-cart-actions .qty {
    margin-right: 7px;
    margin-bottom: 7px;
  }
  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 15px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }
  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }

  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }
}
/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
.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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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: Georgia, Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: bold;
  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 #CCCCCC;
  background-color: #ededed;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

@media only screen and (max-width: 770px) {
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}
.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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", Helvetica, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .cart-totals {
    text-align: right;
  }
}
@media only screen and (max-width: 770px) {
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }
}
.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-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0;
  text-align: left;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
#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;
  padding: 0 15px 0 0;
}
#discount-coupon-form .button-wrapper > button span span,
.cart .giftcard .button-wrapper > button span span {
  text-decoration: none;
  color: #BAB9B9;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  color: #000;
  padding: 0 2.5%;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 24px;
  width: 100%;
  margin: 14px auto 10px;
}

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

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}
.cart .giftcard .check-gc-status > span > span {
  font-size: 15px;
  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 */
@media only screen and (max-width: 979px) {
  .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;
  }
}
@media only screen and (max-width: 599px) {
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}
@media only screen and (max-width: 320px) {
  .crosssell ul .item {
    padding: 0 0px 40px;
  }
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}
/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

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

@media only screen and (min-width: 980px) {
  .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;
  line-height: 26px;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -13px;
}

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

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

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

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

.opc .section .step {
  padding: 20px;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 979px) {
  .opc .section .step {
    padding: 10px;
  }
}

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

@media only screen and (max-width: 359px) {
  .opc .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .button {
    margin-left: 0;
  }
}
.opc #opc-login .step {
  padding: 0px;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

@media only screen and (max-width: 770px) {
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none;
  }
}
#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 {
  -moz-transition: opacity 300ms 0;
  -o-transition: opacity 300ms 0;
  -webkit-transition: opacity 300ms 0;
  transition: opacity 300ms 0;
}

.opc.opc-firststep-login .section#opc-login .step-title .number {
  -moz-transition: width 80ms 0;
  -o-transition: width 80ms 0;
  -webkit-transition: width 80ms 0;
  transition: width 80ms 0;
}

.opc.opc-firststep-login .section#opc-login .step-title h2 {
  -moz-transition: margin-left 80ms 0;
  -o-transition: margin-left 80ms 0;
  -webkit-transition: margin-left 80ms 0;
  transition: margin-left 80ms 0;
}

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
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
 */
.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
.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-weight: bold;
}
.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;
}
@media only screen and (max-width: 359px) {
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #CCCCCC;
  padding-left: 20px;
}
.block-progress .block-content {
  font-size: 13px;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  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: #A0A0A0;
}
.block-progress dt.complete {
  color: #636363;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: Georgia, Times, "Times New Roman", 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: #636363;
  font-family: Georgia, Times, "Times New Roman", 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: 0;
  padding: 0;
  margin: 0;
}
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}
#review-buttons-container .f-left {
  float: left;
}

@media only screen and (max-width: 599px) {
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
@media only screen and (max-width: 359px) {
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.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%;
}
@media only screen and (max-width: 359px) {
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: none;
    width: auto;
  }
}
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

@media only screen and (max-width: 359px) {
  #checkout-review-table thead > tr > th {
    display: none;
  }
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }

  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
}
#checkout-step-review #centinel_authenticate_block {
  position: absolute;
  background: #fff;
  min-height: 400px;
  width: 100%;
  top: 40px;
}
#checkout-step-review #centinel_authenticate_block > p {
  margin-bottom: 10px;
}
#checkout-step-review #centinel_authenticate_block iframe {
  width: 100%;
  min-height: 450px;
}

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px;
}
.gift-messages-form .item h5 {
  font-weight: bold;
}
.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;
}

@media only screen and (max-width: 770px) {
  .gift-message-form .giftmessage-area {
    max-width: 100%;
  }
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none;
  }
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px;
  }
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%;
  }
}
/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set button {
  float: none;
}

/* ============================================ *
 * 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;
  border-radius: 3px;
  font-size: 15px;
  text-align: center;
  color: #636363;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #CCCCCC;
  margin: 0 0 3px;
}
.swatch-link img {
  border-radius: 2px;
}
.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;
  background: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #F4F4F4;
}

.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
.configurable-swatch-list .not-available .x {
  display: block;
}
.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: #aaa;
  background: #fff;
}
.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 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 26px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #3399CC;
}
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
#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;
}

@media only screen and (max-width: 770px) {
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}
.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: #CCCCCC;
  cursor: default;
}

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

.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: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

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

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label {
  font-size: 12px;
}
.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
}
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #3399CC;
  padding-left: 5px;
}
.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}
.product-view .product-options .select-label {
  display: none;
}
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
.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 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}
@media only screen and (min-width: 360px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
    margin-top: 20px;
  }
  .customer-account-login .col2-set .col-1 {
    padding-right: 20px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 20px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 770px) {
  .customer-account-login .col2-set .col-1 {
    padding-right: 0;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 60px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 359px) {
  .customer-account-login .col2-set .col-1 {
    padding-bottom: 30px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-top: 30px;
    border-top: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 770px) {
  .customer-account-login .col2-set p.required {
    display: none;
  }
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

.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 #CCCCCC;
  padding: 10px;
  position: relative;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup p {
  font-family: "Helvetica Neue", Helvetica, 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: 455px;
}
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 30px;
}
@media only screen and (max-width: 359px) {
  .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,
.customer-account-forgotpassword .buttons-set {
  margin-left: 30px;
  max-width: 400px;
}
@media only screen and (max-width: 359px) {
  .customer-account-forgotpassword .fieldset,
  .customer-account-forgotpassword .buttons-set {
    margin-left: 0;
  }
}
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
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 h2.sub-title,
body.customer-account .my-account .addresses-list h2.sub-title,
body.customer-account .my-account .order-details h2.sub-title {
  text-transform: uppercase;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
body.customer-account .my-account .order-details h3 {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 15px;
  font-weight: 600;
}
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td a {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
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 .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;
}

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

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
}
.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
.dashboard .box-account {
  padding-bottom: 40px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 45px;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
.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: 15px;
  margin-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 21px;
}
.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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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 {
  font-family: Georgia, Times, "Times New Roman", serif;
}
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}
@media only screen and (max-width: 770px) {
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .my-account .addresses-list .col-1 li.empty,
  .my-account .addresses-list .col-2 li.empty {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

/* ============================================ *
 * 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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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: 15px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
  font-family: Georgia, Times, "Times New Roman", serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: Georgia, Times, "Times New Roman", 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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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;
}

@media only screen and (max-width: 599px) {
  #my-orders-table .option-label {
    margin-left: 20px;
  }
  #my-orders-table .option-value {
    margin-left: 35px;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none;
  }
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px;
  }
  #my-orders-table tr.bundle {
    border-color: #EDEDED;
  }
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px;
  }
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0;
  }
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 15px;
  }
  #my-orders-table tfoot tr.shipping {
    margin-top: 0;
  }
}
.order-additional {
  margin: 40px 0;
}

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

@media only screen and (max-width: 1010px) {
  .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;
  }
}
@media only screen and (max-width: 979px) {
  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;
  }
}
@media only screen and (max-width: 770px) {
  body.customer-account .data-table.orders th.ship,
  body.customer-account .data-table.orders td.ship,
  body.customer-account .data-table.orders td.status,
  body.customer-account .data-table.orders th.status {
    display: none;
  }

  .order-info-box .box-content {
    clear: left;
  }

  .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px;
  }

  .order-info dt {
    display: none;
  }

  .dashboard .page-title {
    margin-top: 20px;
  }
  .dashboard .page-title h1 {
    margin-top: 0;
  }
  .dashboard .welcome-msg {
    font-family: Georgia, Times, "Times New Roman", serif;
  }
  .dashboard .welcome-msg .hello {
    font-style: italic;
  }
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  .dashboard .col2-set .col-2 {
    float: right;
  }
}
@media only screen and (max-width: 450px) {
  body.customer-account .data-table.orders th.date,
  body.customer-account .data-table.orders td.date {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
}
@media only screen and (max-width: 359px) {
  body.customer-account .my-account .page-title h1 {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 15px;
  }
  body.customer-account .my-account .title-buttons .button + .button {
    margin-left: 0px;
  }
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px;
  }
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px;
  }
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px;
  }

  .order-info {
    margin-top: 15px;
  }

  .data-table.orders .link-reorder,
  .data-table.orders .date {
    display: none;
  }
  .data-table.orders td.view {
    text-align: right;
  }

  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 100%;
    margin-top: 15px;
  }

  .order-info-box {
    margin: 0;
  }
  .order-info-box .col-1,
  .order-info-box .col-2 {
    width: 100%;
    border-bottom: 1px solid #EDEDED;
    padding: 15px 0;
  }
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 30px;
  }

  #my-reviews-table .nobr {
    white-space: normal;
  }
}
/* ============================================ *
 * 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 #EDEDED;
  padding-top: 10px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  max-width: 435px;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}
@media only screen and (max-width: 599px) {
  .contacts-index-index .buttons-set {
    max-width: 330px;
    margin-left: 0;
  }
  .contacts-index-index .buttons-set button {
    float: left;
    margin-left: 0px;
  }
  .contacts-index-index .buttons-set p.required {
    float: right;
  }
}

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 870px) and (min-width: 771px) {
  .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 #EDEDED;
}
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}
@media only screen and (max-width: 770px) {
  .paypal-review-order .col-1 {
    padding-bottom: 0;
  }
  .paypal-review-order .field.inactive {
    display: none;
  }
}

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

@media only screen and (max-width: 770px) {
  .bml-ad.small {
    display: block;
  }
}
@media only screen and (min-width: 771px) {
  .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 #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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: #636363;
}
#customer-reviews h3 {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #3399CC;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
#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 #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
#customer-reviews dl {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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: Georgia, Times, "Times New Roman", serif;
  font-size: 15px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #3399CC;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 10px;
}
.review-summary-table thead {
  background: transparent;
}
.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}
.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 12px;
}
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}
.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0;
}
.review-summary-table .rating-box .rating-number {
  display: none;
}
.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 15px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

@media only screen and (max-width: 770px) {
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 535px) {
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: none;
    margin-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  #customer-reviews .fieldset {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  #customer-reviews .buttons-set {
    width: 100%;
  }
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px;
  }
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 21px;
    width: 100%;
  }
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}
@media only screen and (max-width: 450px) {
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * 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%;
}

@media only screen and (max-width: 770px) {
  .review-product-view .product-review .product-img-box {
    max-width: 100%;
  }
}
/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #EDEDED;
}
.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF;
}
.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}
.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}
.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer;
}
.slideshow-pager span:before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 1px;
  background-color: #FFFFFF;
  position: relative;
}
.slideshow-pager span:hover:before {
  background-color: #2e8ab8;
}
.slideshow-pager span.cycle-pager-active:before {
  background-color: #297aa3;
}
.slideshow-pager > * {
  cursor: pointer;
}

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.slideshow-prev:before,
.slideshow-next:before {
  content: '';
  width: 0;
  height: 0;
  font-size: 0;
  position: absolute;
  border-style: solid;
  display: block;
  top: 50%;
  margin-top: -15px;
}
.slideshow-prev:hover,
.slideshow-next:hover {
  opacity: 1;
}
.slideshow-prev.disabled,
.slideshow-next.disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  cursor: default;
}

.slideshow-prev {
  left: 8px;
}
.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}
.slideshow-prev:hover:before {
  border-color: transparent #2e8ab8 transparent transparent;
}

.slideshow-next {
  right: 8px;
}
.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px;
}
.slideshow-next:hover:before {
  border-color: transparent transparent transparent #2e8ab8;
}

.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}

.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
}
#wishlist-table.clean-table {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table thead th {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}
#wishlist-table .product-name a {
  color: #000;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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 #3399CC;
}
#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 .cart-cell {
  text-align: center;
}
#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: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #636363;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #000;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #000;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

@media only screen and (max-width: 1010px) {
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 979px) {
  #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;
  }
}
@media only screen and (max-width: 770px) {
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table .product-name {
    font-size: 16px;
  }
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px;
  }
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 599px) {
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none;
  }
}
@media only screen and (max-width: 359px) {
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  #wishlist-table td.customer-wishlist-item-image, #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price, #wishlist-table td.customer-wishlist-item-cart {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide;
  }
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden;
  }
  #wishlist-table td.customer-wishlist-item-image a {
    float: left;
  }
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
  }
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 15px;
  }
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: left;
  }
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
}
/* ============================================ *
 * 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;
}
@media only screen and (max-width: 770px) {
  .header-minicart {
    display: block;
  }
}
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
.header-minicart .empty {
  padding: 10px;
  text-align: center;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  color: #50A4CF;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #636363;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .mini-products-list {
  padding: 10px;
  padding-top: 0px;
}
.header-minicart .mini-products-list li {
  padding: 8px 5px 8px 11px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
.header-minicart .mini-products-list li.last {
  border: none;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
}
.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-weight: bold;
}
.header-minicart .product-details .product-name a {
  color: #000;
}
.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: #3399CC;
  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 .subtotal {
  background-color: #DDDDDD;
  text-align: center;
  line-height: 2em;
}
.header-minicart .subtotal .label {
  color: white;
  text-transform: uppercase;
}
.header-minicart .subtotal .price {
  color: #3399CC;
}
.header-minicart .minicart-actions {
  padding: 10px;
  margin-top: 0px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
}
.header-minicart .minicart-actions .cart-link {
  height: 33px;
  line-height: 39px;
  text-transform: uppercase;
  font-size: 13px;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.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;
}

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block;
}

@media only screen and (min-width: 771px) {
  .checkout-types.minicart {
    float: none;
    text-align: center;
  }
}
@media only screen and (max-width: 359px) {
  .header-minicart a.skip-cart {
    z-index: 1;
  }
}
@media only screen and (max-width: 770px) {
  .header-minicart .subtotal .label {
    color: #636363;
  }
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED;
  }
  .header-minicart .quantity-button {
    float: none;
  }
  .header-minicart .header-minicart .block-cart {
    padding: 15px;
  }
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px;
  }
  .header-minicart .minicart-actions {
    padding-bottom: 33px;
  }
  .header-minicart .minicart-actions .cart-link {
    bottom: 0;
    right: 10px;
    position: absolute;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li {
    display: inline-block;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    width: auto;
    float: none;
    display: inline;
    margin: 0 10px 5px 10px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 740px) {
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
    width: 100%;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    width: 100%;
    display: block;
    margin-left: 0;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 599px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
}
/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200;
}
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #3399CC;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #000;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
.search-autocomplete ul li:hover {
  color: black;
}
.search-autocomplete ul li.selected {
  background-color: #000;
  color: white;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #000;
  border-top: none;
  left: 50%;
  top: -7px;
}

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

@media only screen and (max-width: 359px) {
  .advanced-search {
    padding: 15px;
  }
}
/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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 #CCCCCC;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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 #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 13px;
}

@media only screen and (min-width: 771px) {
  .product-review .ratings-table tr {
    float: none;
  }
}
@media only screen and (min-width: 1126px) {
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .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,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none;
}
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std p,
.cms-no-route .std p {
  color: #636363;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #3399CC;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #3399CC;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #636363;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

.cms-no-route .std img {
  width: 100%;
}

.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px;
}
.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-no-route .std .messages ul {
  margin-bottom: 0;
}
.cms-page-view .std .messages li,
.cms-home .std .messages li,
.cms-no-route .std .messages li {
  list-style: none;
  margin-left: 0;
  font-style: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  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: #CCCCCC;
  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 #000;
  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: #CCCCCC;
}
#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: 40px;
}
#contactForm h2 {
  display: none;
}
#contactForm:after {
  content: '';
  display: table;
  clear: both;
}
#contactForm .fieldset .legend + .required {
  margin: 0;
}

@media only screen and (max-width: 770px) {
  #contactForm {
    padding-left: 0;
  }
}
/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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;
}

@media only screen and (max-width: 979px) {
  .notice-cookie .notice-text {
    max-width: 86%;
  }
}
@media only screen and (max-width: 770px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-text {
    max-width: 82%;
    padding-top: 0;
  }
}
@media only screen and (max-width: 620px) {
  .notice-cookie {
    padding: 0 20px;
  }
  .notice-cookie .notice-inner {
    background-position: left 10px;
  }
  .notice-cookie .notice-inner:after {
    content: '';
    display: table;
    clear: both;
  }
  .notice-cookie .notice-text {
    float: none;
    max-width: 100%;
    padding-top: 0;
  }
  .notice-cookie .actions {
    text-align: left;
  }
}
/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

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

.product-tags {
  background-color: #F4F4F4;
  border: 1px solid #CCCCCC;
  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;
}

@media only screen and (max-width: 770px) {
  .tags-list > li,
  .tags-list {
    float: none;
  }
}
/* ============================================ *
 * 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 .scaffold-form .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.
 * ============================================ */
@media only screen and (max-width: 359px) {
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%;
  }
}
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}
#recurring_profile_list_view th span {
  white-space: inherit;
}
@media only screen and (max-width: 359px) {
  #recurring_profile_list_view {
    font-size: 12px;
  }
  #recurring_profile_list_view a {
    font-size: inherit;
  }
  #recurring_profile_list_view th,
  #recurring_profile_list_view td {
    padding: 2px;
  }
}

.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;
}
@media only screen and (max-width: 359px) {
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
    text-align: center;
    float: none;
  }
}
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;
}
@media only screen and (max-width: 359px) {
  .billing-agreements .info-box .button {
    width: 100%;
    float: none;
  }
}
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}
@media only screen and (max-width: 359px) {
  .billing-agreement-view-header-wrapper .heading {
    max-width: 100%;
  }
}

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

@media only screen and (max-width: 979px) {
  .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;
}

/* ============================================ *
 * Widgets
 * ============================================ */
/* -------------------------------------------- *
 * Add to cart by SKU
 */
.sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
  width: 100%;
}
@media only screen and (min-width: 771px) {
  .sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
    max-width: 100px;
  }
}

.widget {
  clear: both;
}

.widget .pager {
  float: none;
  width: 100%;
}

@media only screen and (min-width: 1010px) {
  .col2-left-layout .col-main .widget,
  .col2-right-layout .col-main .widget,
  .col3-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 770px) {
  .col1-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.33333%;
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.22222%;
    margin-right: 2.22222%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * 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 #CCCCCC;
  border-right: 1px solid #CCCCCC;
  margin-bottom: 10px;
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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-weight: bold;
}
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 #CCCCCC;
  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 #CCCCCC;
  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;
}

@media only screen and (max-width: 979px) {
  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;
  }
}
@media only screen and (max-width: 770px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%;
  }
  body[class*="checkout-multishipping-"] .page-title .button {
    float: left;
    margin-bottom: 10px;
  }
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right;
  }
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px;
  }
  body[class*="checkout-multishipping-"] .col-1.col-narrow, body[class*="checkout-multishipping-"] .col-2.col-wide {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  .checkout-multishipping-addresses .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 10px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 359px) {
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block;
  }
}
/* ============================================ *
 * 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;
}

body.customer-account .my-account .order-information-links a, body.customer-account .my-account .order-links a, body.customer-account .my-account .buttons-set a:not(.button), body.customer-account .my-account .button, .customer-account-forgotpassword .buttons-set .back-link a,
.customer-account-forgotpassword .buttons-set .button,
.customer-account-resetpassword .buttons-set .back-link a,
.customer-account-resetpassword .buttons-set .button, #productupdates button.button {
  color: #BAB9B9;
  font-size: 22px;
  background: 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  border: 0;
  text-transform: uppercase;
}
body.customer-account .my-account .order-information-links a:hover, body.customer-account .my-account .order-links a:hover, body.customer-account .my-account .buttons-set a:hover:not(.button), body.customer-account .my-account .button:hover, .customer-account-forgotpassword .buttons-set .back-link a:hover,
.customer-account-forgotpassword .buttons-set .button:hover,
.customer-account-resetpassword .buttons-set .back-link a:hover,
.customer-account-resetpassword .buttons-set .button:hover, #productupdates button.button:hover {
  color: #000;
  text-decoration: none;
}

.customer-account-forgotpassword .fieldset .input-box input,
.customer-account-resetpassword .fieldset .input-box input {
  color: #000;
  padding: 0 2.5%;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 20px;
}

.customer-account-forgotpassword .fieldset label,
.customer-account-resetpassword .fieldset label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  color: #bab9b9;
  font-weight: bold;
  background: 0;
}
.customer-account-forgotpassword .fieldset label:hover,
.customer-account-resetpassword .fieldset label:hover {
  background: 0;
}

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

// ----------------------------------------------
*/
#header {
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
}

.col-main h1, .col-main h2, .col-main h3 {
  color: #000;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  text-transform: none;
  border-bottom: 0;
}
.col-main h1 {
  font-size: 28px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-title h1 {
  text-transform: none;
  line-height: 1;
}
.page-title h1 a {
  color: #000;
}

.validation-advice {
  margin: 0 0 5px;
  font-style: normal;
  font-size: 15px;
  color: #f00;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.2em;
}

.messages .error-msg li {
  background: none;
  border-left: 0;
  margin: 0 0 5px;
  font-style: normal;
  font-size: 15px;
  color: #f00;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.2em;
  padding: 0;
}
.messages .error-msg li:before {
  display: none;
}
.messages .error-msg li .error {
  font-weight: normal;
  font-size: 14px;
  color: #f00;
  text-transform: capitalize;
}

.messages .success-msg li {
  background: none;
  border-left: 0;
  margin: 10px 0 5px;
  font-style: normal;
  font-size: 15px;
  color: #11b400;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.2em;
  padding: 0;
}
.messages .success-msg li:before {
  display: none;
}
.messages .success-msg li .success {
  font-weight: normal;
  color: #11b400;
  text-transform: capitalize;
}

input:focus {
  outline: 0;
}

.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-weight: normal;
}

#header {
  padding-top: 20px;
}
#header .logo {
  padding: 0;
  margin-top: 1px;
  width: 17.6%;
  margin-right: 2.4%;
  min-width: 50px;
}
#header .storename {
  margin-bottom: 9px;
}

.code-active .logo {
  transition: all 0.6s cubic-bezier(0, 1.5, 0.5, 1) 0s;
}
.code-active .logo:hover {
  transform: rotate(360deg) scale(2);
}

#nav-wrapper {
  float: left;
  width: 80%;
  position: absolute;
  bottom: -3px;
  left: 20%;
}

.website-switcher {
  position: absolute;
  top: -6px;
  right: 0;
}
.website-switcher li {
  float: left;
  padding-left: 14px;
}
.website-switcher li:first-child {
  padding-left: 0;
}
.website-switcher a {
  color: #BAB9B9;
  font-size: 14px;
  text-transform: uppercase;
}
.website-switcher a:hover {
  color: #000;
  text-decoration: none;
}

.checkout-onepage-index #header .storename {
  margin-bottom: 15px;
}
.checkout-onepage-index #checkout-progress-state li {
  line-height: 1;
}
.checkout-onepage-index #checkout-step-login .col2-set .col-1,
.checkout-onepage-index #checkout-step-login .col2-set .col-2 {
  padding-top: 15px;
}

@media only screen and (max-width: 770px) {
  #header {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 599px) {
  #header .website-switcher {
    display: none !important;
  }

  #header {
    padding-top: 5px;
  }
  #header .logo {
    width: 21.6%;
    margin-right: 1.5%;
  }

  #header .storename {
    margin-bottom: 11px;
  }

  #nav-wrapper {
    width: 75.9%;
    left: 23.9%;
    bottom: -3px;
  }
}
.main-container {
  padding-top: 24px;
}

.wrapper {
  min-width: 305px;
}

@media only screen and (max-width: 770px) {
  .main-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media all and (max-device-width: 480px) {
  html, body {
    -webkit-text-size-adjust: none;
  }
}
.page-header-container {
  position: relative;
}

.col-left.sidebar {
  width: 17.5%;
  padding: 0;
  margin-right: 2.5%;
}

.col2-left-layout .col-main {
  float: left;
  width: 80%;
  padding: 0;
  margin: 0;
}

@media only screen and (max-width: 1010px) {
  .col-left.sidebar {
    display: none;
  }

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

  #home-content {
    float: none !important;
    width: 100% !important;
  }
  #home-content img {
    width: 100%;
    max-width: 100%;
  }

  .menu-open #menu-bar {
    opacity: 1;
  }

  .account-open #account-bar {
    opacity: 1;
  }
}
.back-button-wrapper {
  float: right;
}

.back {
  color: #BAB9B9;
  font-size: 22px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  clear: right;
  float: right;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCSB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNi43OTlweCIgdmlld0JveD0iMCAwIDE0IDE2Ljc5OSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTYuNzk5IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSJyZ2IoMTg2LDE4NSwxODUpIiBwb2ludHM9IjEzLjk5OSwwIDAsOC4zOTkgMTMuOTk5LDE2LjggIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: right 7px;
  border: 0;
  padding-right: 25px;
  text-transform: uppercase;
  margin-top: 26px;
}
.back:hover {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCSB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNi43OTlweCIgdmlld0JveD0iMCAwIDE0IDE2Ljc5OSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTYuNzk5IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBwb2ludHM9IjEzLjk5OSwwIDAsOC4zOTkgMTMuOTk5LDE2LjggIi8+PC9zdmc+);
  color: #000;
}

/*  CMS Grid System  */
.cms_section {
  clear: both;
  padding: 0;
  margin: 14px 0 0;
}

.cms_col {
  display: block;
  float: left;
  margin: 1% 0 1% 1.6%;
}
.cms_col:first-child {
  margin-left: 0;
}
.cms_col strong.heavy {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 18px;
  color: #000;
}

.cms_group {
  zoom: 1;
  /* For IE 6/7 */
}
.cms_group:after {
  clear: both;
  content: "";
  display: table;
}
.cms_group:before {
  content: "";
  display: table;
}

.cms_span_3_of_3 {
  width: 100%;
}

.cms_span_2_of_3 {
  width: 66.13%;
}

.cms_span_1_of_3 {
  width: 32.26%;
}

.cms_span_2_of_2 {
  width: 100%;
}

.cms_span_1_of_2 {
  width: 49.18%;
}

/*  GO FULL WIDTH BELOW 599 PIXELS */
@media only screen and (max-width: 599px) {
  .cms_col {
    margin: 1% 0 1% 0%;
  }

  .cms_span_3_of_3,
  .cms_span_2_of_3,
  .cms_span_1_of_3,
  .cms_span_2_of_2,
  .cms_span_1_of_2 {
    width: 100%;
  }
}
#main-nav li {
  float: left;
  margin-right: 15px;
}
#main-nav li:last-child {
  margin-right: 0;
  float: right;
}
#main-nav a {
  color: #BAB9B9;
  font-weight: normal;
  font-size: 22px;
  line-height: 1;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}
#main-nav a:hover {
  color: #000;
  cursor: pointer;
}

@media only screen and (min-width: 1011px) {
  #mobile-menu-toggle {
    display: none;
  }
}
@media only screen and (max-width: 1010px) {
  #main-nav li {
    margin-right: 1vw;
  }

  #main-nav li a {
    font-size: 2.3vw;
  }
}
@media (max-width: 599px) {
  [data-hidden~="mobile"] {
    display: none !important;
  }

  #main-nav:not(.logged-in) #mobile-account-menu-toggle {
    display: none !important;
  }
  #main-nav:not(.logged-in) li[data-type="account"][data-hidden~="tablet"] {
    display: block !important;
    margin-left: 12%;
  }

  .checkout-cart-index #main-nav:not(.logged-in) li[data-type="account"][data-hidden~="tablet"] {
    margin-left: 0;
  }

  #main-nav #mobile-account-menu-toggle {
    margin-left: 6%;
  }
  #main-nav #mobile-account-menu-toggle.first {
    margin-left: 0;
  }
  #main-nav li:nth-child(4),
  #main-nav li:nth-child(3):not([data-type="account"]) {
    float: right;
    margin-right: 0;
  }
}
@media (min-width: 600px) and (max-width: 1010px) {
  [data-hidden~="tablet"] {
    display: none !important;
  }

  #main-nav:not(.logged-in) #mobile-account-menu-toggle {
    display: none !important;
  }

  #main-nav:not(.logged-in) li[data-type="account"][data-hidden~="tablet"] {
    display: block !important;
  }
}
@media (min-width: 1011px) {
  [data-hidden~="desktop"] {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  #main-nav li {
    margin-right: 3vw;
  }

  #main-nav li a {
    font-size: 5.2vw;
  }
}
.sidebar .block-title,
#menu-bar .block-title {
  border: 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-size: 28px;
  font-weight: normal;
  color: #000;
  padding-top: 0;
  margin-top: 0;
  line-height: 1;
}
.sidebar .block-title strong,
#menu-bar .block-title strong {
  text-transform: capitalize;
}

.sidebar .nav-primary,
#menu-bar .nav-primary {
  margin-top: 0;
  padding-top: 21px;
}
.sidebar .nav-primary li.level0 ul.level0,
#menu-bar .nav-primary li.level0 ul.level0 {
  background: none;
  border: 0;
  display: block;
  position: static;
  width: auto;
  padding: 0;
  margin: 5px 0;
}
.sidebar .nav-primary li.level0 ul.level0 .view-all,
#menu-bar .nav-primary li.level0 ul.level0 .view-all {
  display: none;
}
.sidebar .nav-primary a,
#menu-bar .nav-primary a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 32px;
}
.sidebar .nav-primary li.level0 li.parent > a:after,
#menu-bar .nav-primary li.level0 li.parent > a:after {
  display: none;
}
.sidebar .nav-primary li.level0 a.level0,
#menu-bar .nav-primary li.level0 a.level0 {
  padding: 0;
  font-weight: bold;
}
.sidebar .nav-primary li.level0 a,
#menu-bar .nav-primary li.level0 a {
  color: #000;
  font-size: 14px;
  outline: none;
}
.sidebar .nav-primary li.level0 a:hover,
#menu-bar .nav-primary li.level0 a:hover {
  color: #BAB9B9;
}
.sidebar .nav-primary li.level1 a,
#menu-bar .nav-primary li.level1 a {
  border: 0;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: none;
}
.sidebar .nav-primary li.level1 a:hover,
#menu-bar .nav-primary li.level1 a:hover {
  color: #BAB9B9;
}

/** More specific than media queries which have precedence due to being included later**/
#menu-bar #nav .nav-primary li.df_sc_nav_color_red > a,
.sidebar #nav .nav-primary li.df_sc_nav_color_red > a {
  color: red;
}

#account-navigation .block-title strong {
  color: #000;
}
#account-navigation ul li strong {
  color: #BEB9B9;
  font-weight: bold;
}
#account-navigation ul a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: none;
}
#account-navigation ul a:hover {
  color: #BAB9B9;
  text-decoration: none;
}

.block-account .block-content {
  margin-top: 19px;
}
.block-account li {
  margin: 3px 0;
}

.menu-close-toggle,
.account-close-toggle {
  position: absolute;
  right: 5px;
  top: 48px;
  z-index: 5;
  cursor: pointer;
  width: 25px;
  height: 25px;
}
.menu-close-toggle:after,
.account-close-toggle:after {
  content: 'X';
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  color: #A0A0A0;
  font-size: 20px;
}

@media only screen and (min-width: 1011px) {
  .sidebar .website-switcher {
    display: none;
  }
  .sidebar .nav-primary ul.level1 {
    padding-left: 10px;
    margin: 15px 0;
    display: none;
  }
  .sidebar .nav-primary li.level1.active ul.level1 {
    display: block;
  }
  .sidebar .nav-primary li.level1.active a {
    color: #BAB9B9;
  }
  .sidebar .nav-primary li.level2 a,
  .sidebar .nav-primary li.level1.active li.level2 a {
    color: #000;
    text-indent: 10px;
  }
  .sidebar .nav-primary li.level2 a:before,
  .sidebar .nav-primary li.level1.active li.level2 a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-bottom: 3px solid #ccc;
    border-top: none;
    border-bottom: 5px solid #ccc;
    border-top: none;
    left: 0;
    top: 7px;
  }
  .sidebar .nav-primary li.level2 a:hover,
  .sidebar .nav-primary li.level1.active li.level2 a:hover {
    color: #bab9b9;
  }
  .sidebar .nav-primary li.level1.active li.level2.active a {
    color: #bab9b9;
  }
}
@media only screen and (max-width: 1010px) {
  #menu-bar .block-title {
    display: none;
  }

  #menu-bar .nav-primary {
    position: relative;
    z-index: 1;
    margin-left: 5%;
    max-width: 90%;
  }
  #menu-bar .nav-primary li {
    display: block;
    padding: 0;
  }
  #menu-bar .nav-primary li a {
    padding: 0;
    border-bottom: 0;
  }
  #menu-bar .nav-primary li li {
    padding: 0;
  }
  #menu-bar .nav-primary li a:hover {
    background: none;
  }
  #menu-bar .nav-primary li.level0 a {
    font-size: 3vw;
    display: inline;
  }
  #menu-bar .nav-primary li.level1 a {
    font-size: 2.6vw;
  }
  #menu-bar .nav-primary li.level1.menu-active > a {
    color: #bababa;
  }
  #menu-bar .nav-primary li.level2.active a {
    color: #bab9b9;
  }
  #menu-bar .nav-primary li.parent > a:after {
    display: none;
  }
  #menu-bar .nav-primary li.level1 ul.level1 {
    max-height: 0;
    overflow: hidden;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  #menu-bar .nav-primary li.level1 ul.level1 li {
    padding-left: 5%;
  }
  #menu-bar .nav-primary li.level1 ul.level1 a {
    line-height: 1.4;
  }
  #menu-bar .nav-primary li.level1 ul.level1 a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 0.7vw solid transparent;
    border-left: 0.7vw solid transparent;
    border-bottom: 0.7vw solid #bababa;
    border-top: none;
    border-bottom: 1vw solid #bababa;
    border-top: none;
    left: -1.9vw;
    top: 50%;
    margin-top: -0.7vw;
  }
  #menu-bar .nav-primary li.level0:first-child,
  #menu-bar .nav-primary li.level0 + li.level0 {
    margin-bottom: 2.6vw;
  }
  #menu-bar .nav-primary li.level1.active ul.level1 {
    max-height: inherit;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #menu-bar .nav-primary li.level1.active > a {
    color: #bababa;
  }

  .menu-bar .block-title {
    display: none;
  }
  .menu-bar .block-content {
    position: relative;
    z-index: 1;
    margin-left: 5%;
    margin-top: 26px;
  }
  .menu-bar .block-content.no-display {
    display: block !important;
  }
  .menu-bar .block-content li {
    display: block;
    padding: 0;
    margin-bottom: 20px;
  }
  .menu-bar .block-content li a {
    color: #000;
    padding: 0;
    border-bottom: 0;
    font-size: 4vw;
    font-weight: bold;
    text-transform: uppercase;
  }
  .menu-bar .block-content li a:hover {
    background: none;
    text-decoration: none;
    color: #bababa;
  }
}
#menu-bar,
#account-bar {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  transition: all 250ms ease-out;
}
#menu-bar .website-switcher,
#account-bar .website-switcher {
  position: static;
  margin-left: 5%;
  margin-right: 5%;
}
#menu-bar .website-switcher li,
#account-bar .website-switcher li {
  width: 100%;
  float: none;
  padding-left: 0;
  margin-bottom: 3.8vw;
}
#menu-bar .website-switcher li a,
#account-bar .website-switcher li a {
  color: #bab9b9;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 4.6vw;
}
#menu-bar .website-switcher li a:hover,
#account-bar .website-switcher li a:hover {
  color: #BAB9B9;
}

@media only screen and (max-width: 979px) {
  #menu-bar:before,
  #account-bar:before {
    background-image: url("/skin/frontend/dsm/default/images/navigation/mh-london-eshop.svg");
    background-size: 41px 50px;
    width: 41px;
    height: 50px;
    content: "";
    display: block;
    margin: 20px 0 0 5%;
    background-repeat: no-repeat;
  }
  #menu-bar.us:before,
  #account-bar.us:before {
    background-image: url("/skin/frontend/dsm/default/images/navigation/mh-newyork-eshop.svg");
  }
  #menu-bar.jp:before,
  #account-bar.jp:before {
    background-image: url("/skin/frontend/dsm/default/images/navigation/mh-ginza-eshop.svg");
  }
  #menu-bar.sg:before,
  #account-bar.sg:before {
    background-image: url("/skin/frontend/dsm/default/images/navigation/mh-singapore-eshop.svg");
  }
}
@media only screen and (max-width: 599px) {
  #menu-bar ol.nav-primary li.level0:first-child, #menu-bar ol.nav-primary li.level0 + li.level0 {
    margin-bottom: 3.8vw;
  }
  #menu-bar ol.nav-primary li.level0 a {
    font-size: 5.8vw;
    display: inline;
  }
  #menu-bar ol.nav-primary li.level1 ul.level1 li {
    padding-left: 8%;
  }
  #menu-bar ol.nav-primary li.level1 a {
    font-size: 5vw;
    font-weight: 500;
    margin-bottom: 1.5vw;
    display: inline;
  }
  #menu-bar ol.nav-primary li.level2 {
    margin-bottom: 2vw;
  }
  #menu-bar ol.nav-primary li.level1 ul.level1 a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 1.2vw solid transparent;
    border-left: 1.2vw solid transparent;
    border-bottom: 1.2vw solid #bababa;
    border-top: none;
    border-bottom: 2vw solid #bababa;
    border-top: none;
    left: -3.5vw;
    top: 50%;
    margin-top: -1.2vw;
  }

  #menu-bar #mobile-nav {
    margin-left: 5%;
    margin-right: 5%;
    border-top: 3px solid #BAB9B9;
  }
  #menu-bar #mobile-nav ol {
    padding-top: 3.8vw;
  }
  #menu-bar #mobile-nav li {
    margin-bottom: 3.8vw;
  }
  #menu-bar #mobile-nav li a {
    text-transform: uppercase;
    font-size: 5.8vw;
    font-weight: bold;
    color: #bab9b9;
  }
  #menu-bar #mobile-nav li a:hover, #menu-bar #mobile-nav li a:active {
    text-decoration: none;
    color: #000000;
  }

  #menu-bar .website-switcher {
    border-top: 3px solid #BAB9B9;
  }
  #menu-bar .website-switcher ol {
    padding-top: 3.8vw;
  }
  #menu-bar .website-switcher li a {
    font-size: 5.8vw;
    font-weight: bold;
  }
  #menu-bar .website-switcher li a:hover, #menu-bar .website-switcher li a:active {
    color: #000000;
  }

  #account-bar li a {
    font-size: 5.8vw;
  }
}
@media only screen and (min-width: 599px) {
  #menu-bar .website-switcher {
    display: none;
  }

  #menu-bar .nav-primary.accordion-true li.level0 ul.level0, .sidebar .nav-primary.accordion-true li.level0 ul.level0 {
    display: none;
  }
}
#account-navigation {
  display: none;
}

.customer-account .sidebar .block-title {
  display: none;
}
.customer-account .sidebar #account-navigation .block-title {
  display: block;
}
.customer-account .sidebar #account-navigation .block-title strong {
  font-size: 28px;
  line-height: 1;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
}
.customer-account #nav {
  display: none;
}
.customer-account #account-navigation {
  display: block;
}
.customer-account #menu-bar #nav,
.customer-account #account-bar #nav {
  display: block;
}
.customer-account #menu-bar #account-navigation,
.customer-account #account-bar #account-navigation {
  display: none;
}

body.newsletter-manage-index .page-introduction {
  margin-top: 20px;
}
body.newsletter-manage-index .my-account .form-list {
  padding-top: 0;
}
body.newsletter-manage-index .my-account form .fieldset {
  margin-top: 0;
}

#mobile-nav {
  display: none;
}

@media only screen and (max-width: 1010px) {
  #mobile-nav {
    display: block;
  }
}
.catalog-category-view .category-banner {
  padding-top: 33px;
}
.catalog-category-view .category-banner:empty {
  padding-top: 0;
}
.catalog-category-view #home-content {
  margin-top: 18px !important;
  max-width: 100%;
}

.category-products {
  padding-top: 33px;
}
.category-products a {
  outline: none;
}
.category-products .products-grid .item {
  width: 266px;
  margin: 0;
  position: relative;
}
.category-products .products-grid .item.image-repeat-3 {
  width: 100%;
  padding: 0;
}
.category-products .products-grid .item.image-repeat-3 .product-image img {
  width: 32.5%;
  float: left;
  margin: 0 1% 1% 0 !important;
}
.category-products .products-grid .item.image-repeat-3 .product-image img:last-child {
  margin-right: 0 !important;
}
.category-products .products-grid .item.image-repeat-1 {
  width: 32.3%;
  margin-right: 1%;
  margin-bottom: 1%;
}
.category-products .products-grid .item.image-repeat-1 img {
  margin: 0 !important;
}
.category-products .products-grid .product-image {
  border: 0;
  margin-bottom: 0;
}
.category-products .products-grid .item:hover .product-info {
  display: block;
}
.category-products .products-grid .product-info {
  padding-bottom: 0;
  min-height: inherit !important;
  text-align: left;
}
.category-products .products-grid .product-info .product-name, .category-products .products-grid .product-info .sold-out {
  font-size: 8pt;
  color: #000;
  padding: 10px 0 0;
  margin-bottom: 0;
  line-height: 14px;
  font-family: "HelveticaNeue-Bold","Helvetica Neue Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.category-products .products-grid .product-info .product-name a:hover, .category-products .products-grid .product-info .sold-out a:hover {
  color: #000;
}
.category-products .products-grid .product-info .price-box .price {
  clear: both;
  font-size: 8pt;
  color: #000;
  line-height: 1.5em;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.category-products .products-grid .product-info .price-box .special-price .price {
  color: red;
}
.category-products .products-grid .product-info .price-box .old-price .price {
  text-decoration: line-through;
}
.category-products .products-grid.products-grid--max-5-col li.item {
  width: 19%;
}
.category-products .products-grid.products-grid--max-4-col li.item {
  width: 24%;
}
.category-products .products-grid.products-grid--max-4-col li.item.image-repeat-3 {
  width: 100%;
  padding: 0;
}
.category-products .products-grid.products-grid--max-4-col li.item.image-repeat-3 .product-image img {
  width: 32.5%;
  float: left;
  margin: 0 1% 1% 0 !important;
}
.category-products .products-grid.products-grid--max-4-col li.item.image-repeat-3 .product-image img:last-child {
  margin-right: 0 !important;
}

.clearer {
  clear: both !important;
}

.no-touch .category-products .products-grid .product-info {
  display: none;
  cursor: pointer;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABBJREFUeNpi+P///zSAAAMACZIDlBi82ioAAAAASUVORK5CYII=);
  background: rgba(255, 255, 255, 0.6);
  min-height: inherit !important;
  position: absolute;
  padding-top: 40%;
  padding-bottom: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
}
.no-touch .category-products .products-grid .product-info .product-name {
  font-size: 8pt;
  color: #000;
  padding: 10px 0 0;
  margin-bottom: 0;
  line-height: 14px;
  font-family: "HelveticaNeue-Bold","Helvetica Neue Bold","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.no-touch .category-products .products-grid .product-info .product-name a:hover {
  color: #000;
}
.no-touch .category-products .products-grid .product-info .price-box .price {
  clear: both;
  font-size: 8pt;
  color: #000;
  line-height: 1.5em;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.no-touch .category-products .products-grid .product-info .price-box .special-price .price {
  color: red;
}
.no-touch .category-products .products-grid .product-info .price-box .old-price .price {
  text-decoration: line-through;
}
.no-touch .category-products .products-grid .image-repeat-3 .product-info {
  padding-top: 14%;
}

.catalog-product-view .product-view .product-name {
  margin-top: 0;
}
.catalog-product-view .product-view .category-name {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1010px) {
  .category-products .products-grid .item {
    width: 33.3%;
  }
  .category-products .products-grid .product-info {
    position: static;
    display: block;
    background: 0;
    padding: 5px 0 10px;
  }
}
@media only screen and (max-width: 979px) {
  .category-products .products-grid .product-info {
    min-height: 77px !important;
  }
}
@media only screen and (max-width: 599px) {
  .category-products .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
  .category-products .products-grid.products-grid--max-4-col li.item, .category-products .products-grid.products-grid--max-5-col li.item,
  .category-products .products-grid .item {
    width: 100%;
    margin-bottom: 2% !important;
  }
  .category-products .products-grid.products-grid--max-4-col li.item.image-repeat-3 .product-image img, .category-products .products-grid.products-grid--max-5-col li.item.image-repeat-3 .product-image img,
  .category-products .products-grid .item.image-repeat-3 .product-image img {
    width: 100%;
    display: none;
    margin: 0;
  }
  .category-products .products-grid.products-grid--max-4-col li.item.image-repeat-3 img:first-child, .category-products .products-grid.products-grid--max-5-col li.item.image-repeat-3 img:first-child,
  .category-products .products-grid .item.image-repeat-3 img:first-child {
    display: block;
  }
  .category-products .products-grid.products-grid--max-4-col li.item.image-repeat-1, .category-products .products-grid.products-grid--max-5-col li.item.image-repeat-1,
  .category-products .products-grid .item.image-repeat-1 {
    width: 100%;
  }
  .category-products .products-grid .product-info {
    height: auto;
  }
}
body[class*="categorypath-dsm-jewellery"] .category-products .products-grid.products-grid--max-4-col li.item.image-repeat-3 .product-image img,
body[class*="categorypath-dsm-jewellery"] .category-products .products-grid.products-grid--max-3-col li.item.image-repeat-3 .product-image img {
  width: calc(33.33% - 17px);
  margin-right: 25px !important;
  margin-bottom: 25px !important;
}
body[class*="categorypath-dsm-jewellery"] .category-products .products-grid.products-grid--max-4-col li.item.image-repeat-3 .product-image img:last-child,
body[class*="categorypath-dsm-jewellery"] .category-products .products-grid.products-grid--max-3-col li.item.image-repeat-3 .product-image img:last-child {
  margin-right: 0 !important;
}
body[class*="categorypath-dsm-jewellery"] .category-products .products-grid .image-repeat-1 {
  width: calc(33.33% - 17px);
  margin-right: 25px;
  margin-bottom: 25px;
}
body[class*="categorypath-dsm-jewellery"] .category-products .products-grid .image-repeat-1:nth-of-type(3n) {
  margin-right: 0;
}
body[class*="categorypath-dsm-jewellery"] .category-products .products-grid .image-repeat-1:nth-of-type(3n + 1) {
  clear: both;
}

.category-name {
  font-size: 28px;
  color: #000;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  line-height: 1;
}
.category-name a {
  color: #000;
}

.product-view .add-to-cart-wrapper,
.product-view .block-related,
.product-view .product-img-box,
.product-view .product-collateral {
  width: 58%;
}
.product-view .product-shop {
  width: 38%;
  margin-bottom: 19px;
}
.product-view .product-name {
  margin-top: 29px;
}
.product-view .product-img-box {
  float: left;
}
.product-view .product-shop {
  float: right;
}
.product-view .product-shop .product-name span.h1 {
  color: #000;
  margin: 0 0 18px 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  line-height: 1.25em;
}
.product-view .product-shop .short-description {
  color: #000;
  margin-bottom: 20px;
}
.product-view .product-shop .short-description p {
  font-size: 14px;
}
.product-view .product-shop .short-description a {
  color: #000;
  text-decoration: none;
}
.product-view .product-shop .short-description a:hover {
  border-bottom: 1px dotted #bab9b9;
}
.product-view .product-image {
  border: 0 !important;
}
.product-view .product-options {
  padding: 0;
  border: 0;
  margin-top: -7px;
}
.product-view .product_qty input {
  color: #222;
  width: 21px;
  height: 13px;
  border: 1px solid #D8D8D8;
  padding: 3px;
  box-sizing: content-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  -webkit-appearance: none !important;
}
.product-view .product_qty_input {
  float: left;
  margin-right: 3px;
}
.product-view .product_qty,
.product-view .name-box,
.product-view .price-box {
  display: inline-block;
}
.product-view .product-shop .name-box.out-of-stock {
  color: #bababa;
}
.product-view .product-shop .product_qty.out-of-stock, .product-view .product-shop .product_qty.notify-when-in-stock,
.product-view .product-shop .price-box.out-of-stock,
.product-view .product-shop .price-box.notify-when-in-stock {
  color: #bababa;
}
.product-view .product_qty {
  float: left;
  clear: both;
  display: block;
  margin-right: 4px;
}
.product-view .product_qty input[disabled] {
  background: #F0F0F0;
}
.product-view .name-box {
  color: #000;
  margin-right: 4px;
  float: left;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6em;
  font-weight: bold;
  margin-top: 2px;
}
.product-view .product-shop .price-box {
  color: #000;
  float: left;
  font-size: 12px;
  font-weight: bold;
  margin: 3px 0 13px;
}
.product-view .product-shop .price-box a {
  color: #BAB9B9;
  font-size: inherit;
}
.product-view .product-shop .price-box .special-price {
  padding-left: 0;
}
.product-view .product-shop .price-box .special-price .price {
  color: red;
  font-size: inherit;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .price {
  color: inherit;
  font-size: inherit;
}
.product-view .add-to-cart {
  border: 0;
}
.product-view .product-actions {
  width: 38%;
  clear: right;
  float: right;
  padding-left: 15px;
}
.product-view .product-actions li {
  margin-bottom: 0;
}
.product-view .productAttributes:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .productAttributes .form-button {
  display: none;
}
.product-view .add-to-cart button.btn-cart {
  clear: both;
  float: left;
  border: 0;
  padding: 3px 30px 3px 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-size: 22px;
  margin-top: 22px;
  background: 0;
  color: #BAB9B9;
}
.product-view .add-to-cart button.btn-cart:hover {
  color: #000;
}
.product-view .product-actions li a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  margin: 5px 0 20px 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
  line-height: 1.25em;
}
.product-view .product-actions li a:hover {
  text-decoration: none;
  border-bottom: 1px solid #CCC;
}
.product-view .more-views > h2 {
  display: none;
}
.product-view .product-image-thumbs li:first-child:nth-last-child(1) {
  display: none;
}
.product-view .messages {
  margin-top: 20px;
}

.product-image-thumbs li {
  width: 33.33%;
  display: block;
  float: left;
}
.product-image-thumbs li a {
  width: 100%;
}
.product-image-thumbs li a:hover, .product-image-thumbs li a:focus {
  outline: 0 !important;
}
.product-image-thumbs li img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 770px) {
  .product-view .product-actions {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1010px) {
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-view .product-img-box,
  .product-view .product-collateral {
    width: 63%;
  }
  .product-view .product-shop,
  .product-view .product-actions {
    width: 35%;
  }
  .product-view .product-img-box {
    float: left;
  }
  .product-view .product-shop {
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-view .product-img-box,
  .product-view .product-shop,
  .product-view .product-collateral {
    width: 100%;
    float: none;
  }
  .product-view .category-name {
    display: none;
  }
  .product-view .product-img-box .product-name {
    margin-top: 0;
  }
  .product-view .product-img-box .product-name h1 {
    color: #000;
    font-size: 21px;
  }
  .product-view .product-actions {
    float: none;
    width: auto;
    margin-top: 20px;
  }
  .product-view .product-image-thumbs {
    text-align: center;
  }
  .product-view .product-image-thumbs li {
    width: 33.33%;
  }
  .product-view .product-options {
    margin-top: 0;
  }
  .product-view .product_qty input[type="text"] {
    font-size: 13px;
  }
  .product-view .name-box,
  .product-view .product-shop .price-box {
    font-weight: bold;
    font-size: 14px;
    margin-top: 0;
  }

  .product-image-thumbs li {
    display: inline-block;
  }
  .product-image-thumbs li img {
    height: auto;
  }
}
#product-detail-overlay {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding-top: 50px;
}
#product-detail-overlay img {
  max-width: 100%;
  max-height: 100%;
}

#product-detail-overlay-close {
  position: fixed;
  z-index: 11;
  top: 15px;
  right: 10px;
  cursor: pointer;
  width: 25px;
  height: 25px;
}
#product-detail-overlay-close:before, #product-detail-overlay-close:after {
  content: '';
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 12px;
  height: 12px;
  display: block;
  position: absolute;
}
#product-detail-overlay-close:before {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 12px;
  top: 5px;
}
#product-detail-overlay-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 15px;
  top: 5px;
}

.zoomWindowContainer > div {
  display: block !important;
  border: 0 !important;
  right: -78%;
}

.product-shop, .product-actions {
  transition: all 150ms;
}

.zoom-available {
  cursor: pointer;
}

.zoom-available:not(.suppressed):hover::after {
  content: 'Click to zoom';
  position: absolute;
  left: 50%;
  margin-left: -60px;
  top: 50%;
  margin-top: -16px;
  opacity: 0.6;
  background-color: #beb9b9;
  color: #000;
  text-transform: uppercase;
  padding: 5px;
  z-index: 999;
  pointer-events: none;
}

@media only screen and (max-width: 599px) {
  .zoom-available:not(.suppressed):hover::after {
    display: none;
  }
}
body[class*="categorypath-dsm-jewellery"] .pswp__bg {
  background: #e5e5e5;
}

.account-login .page-title,
#opc-login .page-title {
  display: none;
}
.account-login input[type=text],
.account-login input[type=email],
.account-login input[type=password],
#opc-login input[type=text],
#opc-login input[type=email],
#opc-login input[type=password] {
  color: #000;
  padding: 0 2.5%;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 24px;
}
.account-login .button[type=submit],
.account-login a.button,
#opc-login .button[type=submit],
#opc-login a.button {
  color: #BAB9B9;
  font-size: 22px;
  background: 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  clear: right;
  float: right;
  border: 0;
  text-transform: uppercase;
}
.account-login .button[type=submit]:hover,
.account-login a.button:hover,
#opc-login .button[type=submit]:hover,
#opc-login a.button:hover {
  color: #000;
}
.account-login .form-list li,
.account-login .form-list .field,
#opc-login .form-list li,
#opc-login .form-list .field {
  position: relative;
}
.account-login .form-list li label,
.account-login .form-list .field label,
#opc-login .form-list li label,
#opc-login .form-list .field label {
  bottom: -20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  color: #bab9b9;
  font-weight: bold;
  background: 0;
}
.account-login .form-list li label:hover,
.account-login .form-list .field label:hover,
#opc-login .form-list li label:hover,
#opc-login .form-list .field label:hover {
  background: 0;
}
.account-login .form-list li .input-box,
.account-login .form-list .field .input-box,
#opc-login .form-list li .input-box,
#opc-login .form-list .field .input-box {
  margin-bottom: 10px;
}
.account-login .form-list li .required:after,
.account-login .form-list .field .required:after,
#opc-login .form-list li .required:after,
#opc-login .form-list .field .required:after {
  content: '';
}
.account-login .form-list li a.f-left,
.account-login .form-list .field a.f-left,
#opc-login .form-list li a.f-left,
#opc-login .form-list .field a.f-left {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  color: #bab9b9;
  font-weight: bold;
}
.account-login .form-list li a.f-left:before,
.account-login .form-list .field a.f-left:before,
#opc-login .form-list li a.f-left:before,
#opc-login .form-list .field a.f-left:before {
  content: "(";
}
.account-login .form-list li a.f-left:after,
.account-login .form-list .field a.f-left:after,
#opc-login .form-list li a.f-left:after,
#opc-login .form-list .field a.f-left:after {
  content: ")";
}
.account-login .col2-set .col-2,
#opc-login .col2-set .col-2 {
  border-left: 0;
  padding-left: 0;
}
.account-login .col2-set .buttons-set .button,
#opc-login .col2-set .buttons-set .button {
  min-width: inherit;
  float: none;
  width: auto;
  padding-left: 0;
}
.account-login .new-users p, .account-login .new-users ul,
#opc-login .new-users p,
#opc-login .new-users ul {
  display: none;
}
.account-login .new-users .content,
#opc-login .new-users .content {
  margin-bottom: 121px;
}
.account-login .registered-users,
#opc-login .registered-users {
  position: relative;
}
.account-login .registered-users p.required, .account-login .registered-users .form-instructions,
#opc-login .registered-users p.required,
#opc-login .registered-users .form-instructions {
  display: none;
}
.account-login .registered-users input[type=text],
.account-login .registered-users input[type=email],
.account-login .registered-users input[type=password],
#opc-login .registered-users input[type=text],
#opc-login .registered-users input[type=email],
#opc-login .registered-users input[type=password] {
  width: 100%;
}
.account-login .registered-users .buttons-set .button,
#opc-login .registered-users .buttons-set .button {
  padding: 7px 0 7px 15px;
  float: right;
}
.account-login .messages .error-msg li,
#opc-login .messages .error-msg li {
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #000;
}
.account-login .messages .error-msg li span.error,
#opc-login .messages .error-msg li span.error {
  color: #F00;
  font-weight: bold;
  text-transform: uppercase;
}

@media only screen and (max-width: 599px) {
  .account-login .col2-set .col-2 {
    padding-left: 0;
    border-left: 0;
  }
  .account-login .new-users .content {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 599px) {
  .account-login .col-1,
  .account-login .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 359px) {
  .account-login .col2-set .col-2 {
    border-top: 0;
    padding-top: 0;
  }
}
.account-create .col-left.sidebar #nav,
.account-create .col-left.sidebar .block-title,
.customer-account-create .col-left.sidebar #nav,
.customer-account-create .col-left.sidebar .block-title {
  display: none;
}
.account-create .page-title h1,
.customer-account-create .page-title h1 {
  margin-bottom: 13px;
}
.account-create input[type=text],
.account-create input[type=email],
.account-create input[type=password],
.customer-account-create input[type=text],
.customer-account-create input[type=email],
.customer-account-create input[type=password] {
  color: #000;
  padding: 0 4px;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 24px;
  width: 100%;
}
.account-create .fieldset,
.customer-account-create .fieldset {
  margin-left: 0;
}
.account-create .col-1,
.customer-account-create .col-1 {
  width: 49%;
  margin-right: 2%;
  float: left;
}
.account-create .col-2,
.customer-account-create .col-2 {
  width: 49%;
  float: right;
}
.account-create .buttons-set,
.customer-account-create .buttons-set {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  border: 0;
}
.account-create .buttons-set .back-link a,
.customer-account-create .buttons-set .back-link a {
  padding-left: 0;
}
.account-create .buttons-set .button,
.customer-account-create .buttons-set .button {
  padding-right: 0;
  text-align: right;
}
.account-create p.required,
.account-create p.form-instructions,
.customer-account-create p.required,
.customer-account-create p.form-instructions {
  display: none;
}
.account-create .form-list li,
.account-create .form-list .field,
.customer-account-create .form-list li,
.customer-account-create .form-list .field {
  position: relative;
}
.account-create .form-list li label:not([for=is_subscribed]),
.account-create .form-list .field label:not([for=is_subscribed]),
.customer-account-create .form-list li label:not([for=is_subscribed]),
.customer-account-create .form-list .field label:not([for=is_subscribed]) {
  bottom: -20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  color: #bab9b9;
  font-weight: bold;
  background: 0;
}
.account-create .form-list li label:not([for=is_subscribed]):hover,
.account-create .form-list .field label:not([for=is_subscribed]):hover,
.customer-account-create .form-list li label:not([for=is_subscribed]):hover,
.customer-account-create .form-list .field label:not([for=is_subscribed]):hover {
  background: 0;
}
.account-create .form-list li .input-box,
.account-create .form-list .field .input-box,
.customer-account-create .form-list li .input-box,
.customer-account-create .form-list .field .input-box {
  margin-bottom: 10px;
}
.account-create .form-list li .required:after,
.account-create .form-list .field .required:after,
.customer-account-create .form-list li .required:after,
.customer-account-create .form-list .field .required:after {
  content: '';
}
.account-create label[for="is_subscribed"],
.customer-account-create label[for="is_subscribed"] {
  color: #000;
  font-weight: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.account-create .form-list .customer-name:after,
.customer-account-create .form-list .customer-name:after {
  content: '';
  display: table;
  clear: both;
}
.account-create .form-list .field.name-firstname,
.account-create .form-list .field.name-lastname,
.customer-account-create .form-list .field.name-firstname,
.customer-account-create .form-list .field.name-lastname {
  width: 49%;
  margin-right: 2%;
  float: left;
  margin-bottom: 0;
}
.account-create .form-list .field.name-firstname .input-box,
.account-create .form-list .field.name-lastname .input-box,
.customer-account-create .form-list .field.name-firstname .input-box,
.customer-account-create .form-list .field.name-lastname .input-box {
  margin-bottom: 0;
}
.account-create .form-list .field.name-lastname,
.customer-account-create .form-list .field.name-lastname {
  margin-right: 0;
}
.account-create .button[type=submit],
.account-create .buttons-set .back-link,
.customer-account-create .button[type=submit],
.customer-account-create .buttons-set .back-link {
  color: #BAB9B9;
  font-size: 22px;
  background: 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  clear: right;
  float: right;
  border: 0;
  text-transform: uppercase;
}
.account-create .button[type=submit]:hover,
.account-create .buttons-set .back-link:hover,
.customer-account-create .button[type=submit]:hover,
.customer-account-create .buttons-set .back-link:hover {
  color: #000;
  text-decoration: none;
}
.account-create .buttons-set .back-link,
.customer-account-create .buttons-set .back-link {
  float: left;
  clear: none;
}
.account-create .is-subscribed-wrapper,
.customer-account-create .is-subscribed-wrapper {
  clear: both;
}
.account-create .is-subscribed-wrapper .input-box,
.customer-account-create .is-subscribed-wrapper .input-box {
  display: inline-block;
  margin-right: 5px;
}

.account-login input[type=text],
.account-login input[type=email],
.account-login input[type=password],
.customer-account-create input[type=text],
.customer-account-create input[type=email],
.customer-account-create input[type=password],
.account-create input[type=text],
.account-create input[type=email],
.account-create input[type=password],
#opc-login input[type=text],
#opc-login input[type=email],
#opc-login input[type=password] {
  height: 24px;
}

@media only screen and (max-width: 599px) {
  .account-create .col-1, .account-create .col-2 {
    float: none;
    width: 100%;
  }
}
.cms-contact .fieldset, .cms-subscribe .fieldset {
  width: 50%;
  float: left;
}
.cms-contact .fieldset + .fieldset, .cms-subscribe .fieldset + .fieldset {
  margin-top: 0;
}
.cms-contact .legend, .cms-subscribe .legend {
  color: #000;
}
.cms-contact .fields, .cms-subscribe .fields {
  list-style: none;
  margin-left: 0;
}
.cms-contact .form-list .field, .cms-subscribe .form-list .field {
  position: relative;
}
.cms-contact .form-list .field label, .cms-subscribe .form-list .field label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  color: #bab9b9;
  font-weight: bold;
}
.cms-contact .form-list .field .input-box, .cms-subscribe .form-list .field .input-box {
  margin-bottom: 10px;
}
.cms-contact .form-list .field .required:after, .cms-subscribe .form-list .field .required:after {
  content: '';
}
.cms-contact input[type=text], .cms-subscribe input[type=text] {
  color: #000;
  padding: 0 2.5%;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 24px;
}
.cms-contact textarea, .cms-subscribe textarea {
  color: #000;
  padding: 0 2.5%;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 84px;
}
.cms-contact textarea:focus, .cms-subscribe textarea:focus {
  border: 0;
}
.cms-contact h2.legend, .cms-subscribe h2.legend {
  margin-bottom: 5px !important;
}
.cms-contact .buttons-set .required, .cms-subscribe .buttons-set .required {
  display: none;
}
.cms-contact button.button, .cms-subscribe button.button {
  color: #BAB9B9;
  font-size: 22px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  clear: right;
  float: right;
  min-width: inherit;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFs8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj5dPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczphPSJodHRwOi8vbnMuYWRvYmUuY29tL0Fkb2JlU1ZHVmlld2VyRXh0ZW5zaW9ucy8zLjAvIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDE0IDE3IiBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTciIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIGZpbGw9IiNiYWI5YjkiIHBvaW50cz0iMCwxNi44IDE0LDguNCAwLDAgIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: 8px;
  border: 0;
  padding-left: 25px;
  text-transform: uppercase;
  margin-top: 28px;
}
.cms-contact button.button:hover, .cms-subscribe button.button:hover {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFs8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj5dPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczphPSJodHRwOi8vbnMuYWRvYmUuY29tL0Fkb2JlU1ZHVmlld2VyRXh0ZW5zaW9ucy8zLjAvIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDE0IDE3IiBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTciIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iMCwxNi44IDE0LDguNCAwLDAgIi8+PC9zdmc+);
  color: #000;
}

body.customer-account .page-title {
  margin-bottom: 17px;
}
body.customer-account .messages {
  margin: 0 0 15px;
}
body.customer-account .messages .success-msg li {
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
}
body.customer-account .messages .success-msg li span.success {
  display: none;
}
body.customer-account .dashboard .col2-set .col-1, body.customer-account .dashboard .col2-set .col-2, body.customer-account .order-info-box .col2-set .col-1, body.customer-account .order-info-box .col2-set .col-2 {
  padding: 0;
  margin: 0;
}
body.customer-account .dashboard .col2-set .col-1 .box-title, body.customer-account .dashboard .col2-set .col-2 .box-title, body.customer-account .order-info-box .col2-set .col-1 .box-title, body.customer-account .order-info-box .col2-set .col-2 .box-title {
  padding-bottom: 5px;
}
body.customer-account .dashboard .box-head, body.customer-account .order-info-box .box-head {
  border-bottom: 0;
}
body.customer-account .dashboard .box-head h2, body.customer-account .order-info-box .box-head h2 {
  font-size: 28px;
  font-weight: normal;
}
body.customer-account .dashboard .box-head h3, body.customer-account .order-info-box .box-head h3 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0;
}
body.customer-account .dashboard .box-head a, body.customer-account .order-info-box .box-head a {
  display: none !important;
}
body.customer-account .dashboard .box-title h4, body.customer-account .order-info-box .box-title h4 {
  color: #000;
  text-transform: none;
  font-size: 14px;
  margin-bottom: 0;
}
body.customer-account .dashboard .box-title h3, body.customer-account .order-info-box .box-title h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
body.customer-account .dashboard .box-account, body.customer-account .order-info-box .box-account {
  border-bottom: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
body.customer-account .dashboard .box-account p, body.customer-account .dashboard .box-account address, body.customer-account .order-info-box .box-account p, body.customer-account .order-info-box .box-account address {
  font-style: normal;
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
body.customer-account .dashboard .box-account a, body.customer-account .order-info-box .box-account a {
  color: #BAB9B9;
  font-weight: bold;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  width: 100%;
}
body.customer-account .dashboard .box-account + .box-account .box-head, body.customer-account .order-info-box .box-account + .box-account .box-head {
  margin-top: 0;
  padding-bottom: 2px;
}
body.customer-account .dashboard .box-account + .box-account .box-head h2, body.customer-account .order-info-box .box-account + .box-account .box-head h2 {
  margin-bottom: 15px;
}
body.customer-account .dashboard .box-account + .box-account .box-title h3, body.customer-account .order-info-box .box-account + .box-account .box-title h3 {
  text-transform: uppercase;
  font-size: 14px;
}
body.customer-account .welcome-msg {
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
body.customer-account .welcome-msg .hello {
  display: none;
}
body.customer-account .order-summary-box .col-1, body.customer-account .order-summary-box .col-2 {
  width: 48%;
  float: left;
  padding: 0;
}
body.customer-account .order-summary-box .col-2 {
  padding-left: 20px;
}
body.customer-account #my-orders-table th:first-child,
body.customer-account #my-orders-table td:first-child,
body.customer-account table[id^=my-invoice-table] th:first-child,
body.customer-account table[id^=my-invoice-table] td:first-child,
body.customer-account table[id^=my-tracking-table] th:first-child,
body.customer-account table[id^=my-tracking-table] td:first-child,
body.customer-account table[id^=my-refund-table] th:first-child,
body.customer-account table[id^=my-refund-table] td:first-child {
  padding-left: 0;
}
body.customer-account #my-orders-table th,
body.customer-account table[id^=my-invoice-table] th,
body.customer-account table[id^=my-tracking-table] th,
body.customer-account table[id^=my-refund-table] th {
  padding-top: 3px;
}
body.customer-account #my-orders-table th:last-child,
body.customer-account #my-orders-table td:last-child,
body.customer-account table[id^=my-invoice-table] th:last-child,
body.customer-account table[id^=my-invoice-table] td:last-child,
body.customer-account table[id^=my-tracking-table] th:last-child,
body.customer-account table[id^=my-tracking-table] td:last-child,
body.customer-account table[id^=my-refund-table] th:last-child,
body.customer-account table[id^=my-refund-table] td:last-child {
  padding-right: 0;
}
body.customer-account #my-orders-table th, body.customer-account #my-orders-table td,
body.customer-account table[id^=my-invoice-table] th,
body.customer-account table[id^=my-invoice-table] td,
body.customer-account table[id^=my-tracking-table] th,
body.customer-account table[id^=my-tracking-table] td,
body.customer-account table[id^=my-refund-table] th,
body.customer-account table[id^=my-refund-table] td {
  background: 0;
  border: 0;
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  text-transform: none;
}
body.customer-account #my-orders-table th.total, body.customer-account #my-orders-table td.total,
body.customer-account table[id^=my-invoice-table] th.total,
body.customer-account table[id^=my-invoice-table] td.total,
body.customer-account table[id^=my-tracking-table] th.total,
body.customer-account table[id^=my-tracking-table] td.total,
body.customer-account table[id^=my-refund-table] th.total,
body.customer-account table[id^=my-refund-table] td.total {
  width: 20%;
}
body.customer-account #my-orders-table th.status em, body.customer-account #my-orders-table td.status em,
body.customer-account table[id^=my-invoice-table] th.status em,
body.customer-account table[id^=my-invoice-table] td.status em,
body.customer-account table[id^=my-tracking-table] th.status em,
body.customer-account table[id^=my-tracking-table] td.status em,
body.customer-account table[id^=my-refund-table] th.status em,
body.customer-account table[id^=my-refund-table] td.status em {
  font-style: normal;
}
body.customer-account #my-orders-table th.view, body.customer-account #my-orders-table td.view,
body.customer-account table[id^=my-invoice-table] th.view,
body.customer-account table[id^=my-invoice-table] td.view,
body.customer-account table[id^=my-tracking-table] th.view,
body.customer-account table[id^=my-tracking-table] td.view,
body.customer-account table[id^=my-refund-table] th.view,
body.customer-account table[id^=my-refund-table] td.view {
  width: 25%;
  text-align: right;
}
body.customer-account #my-orders-table th,
body.customer-account table[id^=my-invoice-table] th,
body.customer-account table[id^=my-tracking-table] th,
body.customer-account table[id^=my-refund-table] th {
  font-weight: bold;
  font-size: 14px;
  padding-bottom: 2px;
}
body.customer-account #my-orders-table td,
body.customer-account table[id^=my-invoice-table] td,
body.customer-account table[id^=my-tracking-table] td,
body.customer-account table[id^=my-refund-table] td {
  padding: 0 10px 3px;
}
body.customer-account #my-orders-table a,
body.customer-account table[id^=my-invoice-table] a,
body.customer-account table[id^=my-tracking-table] a,
body.customer-account table[id^=my-refund-table] a {
  color: #BAB9B9;
  font-weight: bold;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  width: 100%;
}
body.customer-account .my-account .fieldset {
  width: 400px;
  max-width: 100%;
}
body.customer-account .my-account .addresses-list .col-1 {
  padding-top: 15px;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 2px;
}
body.customer-account .my-account .addresses-list .item {
  margin-bottom: 19px;
}
body.customer-account .my-account .addresses-list .item p {
  margin-top: 7px;
}
body.customer-account .my-account .addresses-list address, body.customer-account .my-account .addresses-list p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}
body.customer-account .my-account .addresses-list .addresses-additional {
  padding-top: 0;
}
body.customer-account .my-account .addresses-list .addresses-additional h2 {
  font-size: 28px;
}
body.customer-account .my-account .addresses-list a {
  text-transform: uppercase;
  color: #bab9b9;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
}
body.customer-account .my-account .addresses-list a:hover {
  color: #000;
  text-decoration: none;
}
body.customer-account .my-account .order-information-links a, body.customer-account .my-account .order-links a {
  font-size: 14px;
  padding: 0;
  float: none;
}
body.customer-account .my-account .order-items .link-print {
  color: #bab9b9;
  text-transform: uppercase;
}
body.customer-account .my-account .order-items .link-print:hover {
  text-decoration: none;
  color: #000;
  border-bottom: none;
}
body.customer-account .my-account .buttons-set a:not(.button) {
  padding: 0;
}
body.customer-account .my-account .button {
  clear: right;
  float: right;
}

@media only screen and (max-width: 599px) {
  body.customer-account .dashboard .col2-set .col-1,
  body.customer-account .dashboard .col2-set .col-2 {
    width: 100%;
    margin-bottom: 20px;
  }
  body.customer-account .dashboard .box-account {
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  body.customer-account .my-account .dashboard .page-title h1 {
    text-align: left;
  }
  body.customer-account .my-account .title-buttons .button {
    position: static;
    float: left;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 10px;
  }
  body.customer-account #my-orders-table th.view,
  body.customer-account #my-orders-table td.view {
    width: 50%;
  }
}
body.customer-account input[type=tel],
body.customer-account input[type=text],
body.customer-account input[type=email],
body.customer-account input[type=password],
body.checkout-onepage-index input[type=tel],
body.checkout-onepage-index input[type=text],
body.checkout-onepage-index input[type=email],
body.checkout-onepage-index input[type=password] {
  color: #000;
  padding: 0 4px;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 24px;
  width: 100%;
}
body.customer-account .form-list .control input[type=checkbox],
body.checkout-onepage-index .form-list .control input[type=checkbox] {
  margin-left: 0;
  margin-top: 12px;
}
body.customer-account input[type=checkbox] + label,
body.checkout-onepage-index input[type=checkbox] + label {
  position: static !important;
  padding-left: 20px !important;
}
body.customer-account .buttons-set,
body.checkout-onepage-index .buttons-set {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  border: 0;
}
body.customer-account .my-account .form-list,
body.checkout-onepage-index .my-account .form-list {
  border-top: 0;
}
body.customer-account p.required,
body.customer-account p.form-instructions,
body.checkout-onepage-index p.required,
body.checkout-onepage-index p.form-instructions {
  display: none;
}
body.customer-account .form-list li,
body.customer-account .form-list .field,
body.checkout-onepage-index .form-list li,
body.checkout-onepage-index .form-list .field {
  position: relative;
}
body.customer-account .form-list li label:not([for=is_subscribed]),
body.customer-account .form-list .field label:not([for=is_subscribed]),
body.checkout-onepage-index .form-list li label:not([for=is_subscribed]),
body.checkout-onepage-index .form-list .field label:not([for=is_subscribed]) {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  color: #bab9b9;
  font-weight: bold;
  background: 0;
}
body.customer-account .form-list li label:not([for=is_subscribed]):hover,
body.customer-account .form-list .field label:not([for=is_subscribed]):hover,
body.checkout-onepage-index .form-list li label:not([for=is_subscribed]):hover,
body.checkout-onepage-index .form-list .field label:not([for=is_subscribed]):hover {
  background: 0;
}
body.customer-account .form-list li .input-box,
body.customer-account .form-list .field .input-box,
body.checkout-onepage-index .form-list li .input-box,
body.checkout-onepage-index .form-list .field .input-box {
  margin-bottom: 10px;
}
body.customer-account .form-list li .required:after,
body.customer-account .form-list .field .required:after,
body.checkout-onepage-index .form-list li .required:after,
body.checkout-onepage-index .form-list .field .required:after {
  content: '';
}
body.customer-account .form-list .customer-name:after,
body.checkout-onepage-index .form-list .customer-name:after {
  content: '';
  display: table;
  clear: both;
}
body.customer-account .form-list .field.name-firstname,
body.customer-account .form-list .field.name-lastname,
body.checkout-onepage-index .form-list .field.name-firstname,
body.checkout-onepage-index .form-list .field.name-lastname {
  width: 49%;
  margin-right: 2%;
  float: left;
}
body.customer-account .form-list .field.name-firstname .input-box,
body.customer-account .form-list .field.name-lastname .input-box,
body.checkout-onepage-index .form-list .field.name-firstname .input-box,
body.checkout-onepage-index .form-list .field.name-lastname .input-box {
  margin-bottom: 10px;
}
body.customer-account .form-list .field.name-firstname label,
body.customer-account .form-list .field.name-lastname label,
body.checkout-onepage-index .form-list .field.name-firstname label,
body.checkout-onepage-index .form-list .field.name-lastname label {
  bottom: -10px;
}
body.customer-account .form-list .field.name-lastname,
body.checkout-onepage-index .form-list .field.name-lastname {
  margin-right: 0;
}
body.customer-account .button[type=submit],
body.customer-account .buttons-set .back-link,
body.customer-account .buttons-set .back-link a,
body.checkout-onepage-index .button[type=submit],
body.checkout-onepage-index .buttons-set .back-link,
body.checkout-onepage-index .buttons-set .back-link a {
  color: #BAB9B9;
  font-size: 22px;
  background: 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  clear: right;
  float: right;
  border: 0;
  text-transform: uppercase;
}
body.customer-account .button[type=submit]:hover,
body.customer-account .buttons-set .back-link:hover,
body.customer-account .buttons-set .back-link a:hover,
body.checkout-onepage-index .button[type=submit]:hover,
body.checkout-onepage-index .buttons-set .back-link:hover,
body.checkout-onepage-index .buttons-set .back-link a:hover {
  color: #000;
  text-decoration: none;
}
body.customer-account .buttons-set .back-link,
body.checkout-onepage-index .buttons-set .back-link {
  float: left;
  clear: none;
}
body.customer-account .buttons-set .back-link small,
body.checkout-onepage-index .buttons-set .back-link small {
  display: none;
}
body.customer-account .is-subscribed-wrapper,
body.checkout-onepage-index .is-subscribed-wrapper {
  clear: both;
}
body.customer-account .is-subscribed-wrapper .input-box,
body.checkout-onepage-index .is-subscribed-wrapper .input-box {
  display: inline-block;
  margin-right: 5px;
}

.customer-address-form .my-account form .fieldset {
  width: 48%;
  float: left;
}
.customer-address-form .my-account form .fieldset:first-child {
  margin-right: 4%;
}
.customer-address-form .my-account .input-box select {
  width: 100%;
}
.customer-address-form .my-account .form-list .field.name-firstname,
.customer-address-form .my-account .form-list .field.name-lastname {
  margin-bottom: 0;
}
.customer-address-form .my-account .form-list .field.name-firstname .input-box,
.customer-address-form .my-account .form-list .field.name-lastname .input-box {
  margin-bottom: 0;
}

@media only screen and (max-width: 599px) {
  .customer-address-form .my-account form .fieldset {
    width: 100%;
    float: none;
    margin: 0;
  }
}
.customer-address-index .addresses-list > div {
  width: 100%;
  padding-left: 0;
}
.customer-address-index .addresses-list ol li.item {
  float: left;
  width: 50%;
}
.customer-address-index .addresses-list .addresses-additional ol li.item {
  float: none;
  width: 100%;
}

@media only screen and (max-width: 599px) {
  .customer-address-index .addresses-list ol li.item {
    float: none;
    width: 100%;
  }
}
.customer-account-logoutsuccess .page-title {
  margin-bottom: 25px;
}

body.customer-account-edit .my-account .fieldset {
  margin-top: 10px;
  margin-bottom: 15px;
}
body.customer-account-edit .form-list .field {
  margin-bottom: 0;
}
body.customer-account-edit .form-list li .field .input-box {
  margin-bottom: 0 !important;
}
body.customer-account-edit .back-link a {
  padding-left: 0;
}
body.customer-account-edit button.button {
  padding-right: 0;
  margin-right: 0;
  text-align: right;
}

body.newsletter-manage-index .back-link a {
  padding-left: 0;
}
body.newsletter-manage-index button.button {
  padding-right: 0;
  margin-right: 0;
  text-align: right;
}

body.sales-order-view .order-info,
body.sales-order-invoice .order-info,
body.sales-order-shipment .order-info,
body.sales-order-creditmemo .order-info {
  display: none;
}
body.sales-order-view .back-link a,
body.sales-order-invoice .back-link a,
body.sales-order-shipment .back-link a,
body.sales-order-creditmemo .back-link a {
  padding-left: 0;
}
body.sales-order-view .order-info-box,
body.sales-order-invoice .order-info-box,
body.sales-order-shipment .order-info-box,
body.sales-order-creditmemo .order-info-box {
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 30px;
}
body.sales-order-view .order-info-box .box-content,
body.sales-order-invoice .order-info-box .box-content,
body.sales-order-shipment .order-info-box .box-content,
body.sales-order-creditmemo .order-info-box .box-content {
  clear: left;
  float: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.sales-order-view .order-info-box .box-title,
body.sales-order-invoice .order-info-box .box-title,
body.sales-order-shipment .order-info-box .box-title,
body.sales-order-creditmemo .order-info-box .box-title {
  width: auto;
}
body.sales-order-view .order-info-box address,
body.sales-order-invoice .order-info-box address,
body.sales-order-shipment .order-info-box address,
body.sales-order-creditmemo .order-info-box address {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.sales-order-view .order-info-box h2,
body.sales-order-invoice .order-info-box h2,
body.sales-order-shipment .order-info-box h2,
body.sales-order-creditmemo .order-info-box h2 {
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}
body.sales-order-view .order-info-box + .order-info-box,
body.sales-order-invoice .order-info-box + .order-info-box,
body.sales-order-shipment .order-info-box + .order-info-box,
body.sales-order-creditmemo .order-info-box + .order-info-box {
  border-bottom: none;
  padding-bottom: 10px;
}
body.sales-order-view .order-items.order-details,
body.sales-order-invoice .order-items.order-details,
body.sales-order-shipment .order-items.order-details,
body.sales-order-creditmemo .order-items.order-details {
  border-bottom: 1px solid #bab9b9;
  border-top: 1px solid #bab9b9;
  padding: 15px 0;
}
body.sales-order-view .my-account .title-buttons a,
body.sales-order-invoice .my-account .title-buttons a,
body.sales-order-shipment .my-account .title-buttons a,
body.sales-order-creditmemo .my-account .title-buttons a {
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  text-transform: uppercase;
  color: #bab9b9;
  top: -18px;
}
body.sales-order-view .my-account .title-buttons a:hover,
body.sales-order-invoice .my-account .title-buttons a:hover,
body.sales-order-shipment .my-account .title-buttons a:hover,
body.sales-order-creditmemo .my-account .title-buttons a:hover {
  color: #000;
  text-decoration: none;
}
body.sales-order-view .order-date,
body.sales-order-view .order-status,
body.sales-order-invoice .order-date,
body.sales-order-invoice .order-status,
body.sales-order-shipment .order-date,
body.sales-order-shipment .order-status,
body.sales-order-creditmemo .order-date,
body.sales-order-creditmemo .order-status {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  font-weight: normal;
  text-transform: none;
}
body.sales-order-view #my-orders-table th, body.sales-order-view #my-orders-table td,
body.sales-order-view table[id^=my-invoice-table] th,
body.sales-order-view table[id^=my-invoice-table] td,
body.sales-order-view table[id^=my-tracking-table] th,
body.sales-order-view table[id^=my-tracking-table] td,
body.sales-order-view table[id^=my-refund-table] th,
body.sales-order-view table[id^=my-refund-table] td,
body.sales-order-invoice #my-orders-table th,
body.sales-order-invoice #my-orders-table td,
body.sales-order-invoice table[id^=my-invoice-table] th,
body.sales-order-invoice table[id^=my-invoice-table] td,
body.sales-order-invoice table[id^=my-tracking-table] th,
body.sales-order-invoice table[id^=my-tracking-table] td,
body.sales-order-invoice table[id^=my-refund-table] th,
body.sales-order-invoice table[id^=my-refund-table] td,
body.sales-order-shipment #my-orders-table th,
body.sales-order-shipment #my-orders-table td,
body.sales-order-shipment table[id^=my-invoice-table] th,
body.sales-order-shipment table[id^=my-invoice-table] td,
body.sales-order-shipment table[id^=my-tracking-table] th,
body.sales-order-shipment table[id^=my-tracking-table] td,
body.sales-order-shipment table[id^=my-refund-table] th,
body.sales-order-shipment table[id^=my-refund-table] td,
body.sales-order-creditmemo #my-orders-table th,
body.sales-order-creditmemo #my-orders-table td,
body.sales-order-creditmemo table[id^=my-invoice-table] th,
body.sales-order-creditmemo table[id^=my-invoice-table] td,
body.sales-order-creditmemo table[id^=my-tracking-table] th,
body.sales-order-creditmemo table[id^=my-tracking-table] td,
body.sales-order-creditmemo table[id^=my-refund-table] th,
body.sales-order-creditmemo table[id^=my-refund-table] td {
  background: 0;
  border: 0;
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  text-transform: none;
}
body.sales-order-view #my-orders-table th.total, body.sales-order-view #my-orders-table td.total,
body.sales-order-view table[id^=my-invoice-table] th.total,
body.sales-order-view table[id^=my-invoice-table] td.total,
body.sales-order-view table[id^=my-tracking-table] th.total,
body.sales-order-view table[id^=my-tracking-table] td.total,
body.sales-order-view table[id^=my-refund-table] th.total,
body.sales-order-view table[id^=my-refund-table] td.total,
body.sales-order-invoice #my-orders-table th.total,
body.sales-order-invoice #my-orders-table td.total,
body.sales-order-invoice table[id^=my-invoice-table] th.total,
body.sales-order-invoice table[id^=my-invoice-table] td.total,
body.sales-order-invoice table[id^=my-tracking-table] th.total,
body.sales-order-invoice table[id^=my-tracking-table] td.total,
body.sales-order-invoice table[id^=my-refund-table] th.total,
body.sales-order-invoice table[id^=my-refund-table] td.total,
body.sales-order-shipment #my-orders-table th.total,
body.sales-order-shipment #my-orders-table td.total,
body.sales-order-shipment table[id^=my-invoice-table] th.total,
body.sales-order-shipment table[id^=my-invoice-table] td.total,
body.sales-order-shipment table[id^=my-tracking-table] th.total,
body.sales-order-shipment table[id^=my-tracking-table] td.total,
body.sales-order-shipment table[id^=my-refund-table] th.total,
body.sales-order-shipment table[id^=my-refund-table] td.total,
body.sales-order-creditmemo #my-orders-table th.total,
body.sales-order-creditmemo #my-orders-table td.total,
body.sales-order-creditmemo table[id^=my-invoice-table] th.total,
body.sales-order-creditmemo table[id^=my-invoice-table] td.total,
body.sales-order-creditmemo table[id^=my-tracking-table] th.total,
body.sales-order-creditmemo table[id^=my-tracking-table] td.total,
body.sales-order-creditmemo table[id^=my-refund-table] th.total,
body.sales-order-creditmemo table[id^=my-refund-table] td.total {
  width: 20%;
}
body.sales-order-view #my-orders-table th.status em, body.sales-order-view #my-orders-table td.status em,
body.sales-order-view table[id^=my-invoice-table] th.status em,
body.sales-order-view table[id^=my-invoice-table] td.status em,
body.sales-order-view table[id^=my-tracking-table] th.status em,
body.sales-order-view table[id^=my-tracking-table] td.status em,
body.sales-order-view table[id^=my-refund-table] th.status em,
body.sales-order-view table[id^=my-refund-table] td.status em,
body.sales-order-invoice #my-orders-table th.status em,
body.sales-order-invoice #my-orders-table td.status em,
body.sales-order-invoice table[id^=my-invoice-table] th.status em,
body.sales-order-invoice table[id^=my-invoice-table] td.status em,
body.sales-order-invoice table[id^=my-tracking-table] th.status em,
body.sales-order-invoice table[id^=my-tracking-table] td.status em,
body.sales-order-invoice table[id^=my-refund-table] th.status em,
body.sales-order-invoice table[id^=my-refund-table] td.status em,
body.sales-order-shipment #my-orders-table th.status em,
body.sales-order-shipment #my-orders-table td.status em,
body.sales-order-shipment table[id^=my-invoice-table] th.status em,
body.sales-order-shipment table[id^=my-invoice-table] td.status em,
body.sales-order-shipment table[id^=my-tracking-table] th.status em,
body.sales-order-shipment table[id^=my-tracking-table] td.status em,
body.sales-order-shipment table[id^=my-refund-table] th.status em,
body.sales-order-shipment table[id^=my-refund-table] td.status em,
body.sales-order-creditmemo #my-orders-table th.status em,
body.sales-order-creditmemo #my-orders-table td.status em,
body.sales-order-creditmemo table[id^=my-invoice-table] th.status em,
body.sales-order-creditmemo table[id^=my-invoice-table] td.status em,
body.sales-order-creditmemo table[id^=my-tracking-table] th.status em,
body.sales-order-creditmemo table[id^=my-tracking-table] td.status em,
body.sales-order-creditmemo table[id^=my-refund-table] th.status em,
body.sales-order-creditmemo table[id^=my-refund-table] td.status em {
  font-style: normal;
}
body.sales-order-view #my-orders-table th.view, body.sales-order-view #my-orders-table td.view,
body.sales-order-view table[id^=my-invoice-table] th.view,
body.sales-order-view table[id^=my-invoice-table] td.view,
body.sales-order-view table[id^=my-tracking-table] th.view,
body.sales-order-view table[id^=my-tracking-table] td.view,
body.sales-order-view table[id^=my-refund-table] th.view,
body.sales-order-view table[id^=my-refund-table] td.view,
body.sales-order-invoice #my-orders-table th.view,
body.sales-order-invoice #my-orders-table td.view,
body.sales-order-invoice table[id^=my-invoice-table] th.view,
body.sales-order-invoice table[id^=my-invoice-table] td.view,
body.sales-order-invoice table[id^=my-tracking-table] th.view,
body.sales-order-invoice table[id^=my-tracking-table] td.view,
body.sales-order-invoice table[id^=my-refund-table] th.view,
body.sales-order-invoice table[id^=my-refund-table] td.view,
body.sales-order-shipment #my-orders-table th.view,
body.sales-order-shipment #my-orders-table td.view,
body.sales-order-shipment table[id^=my-invoice-table] th.view,
body.sales-order-shipment table[id^=my-invoice-table] td.view,
body.sales-order-shipment table[id^=my-tracking-table] th.view,
body.sales-order-shipment table[id^=my-tracking-table] td.view,
body.sales-order-shipment table[id^=my-refund-table] th.view,
body.sales-order-shipment table[id^=my-refund-table] td.view,
body.sales-order-creditmemo #my-orders-table th.view,
body.sales-order-creditmemo #my-orders-table td.view,
body.sales-order-creditmemo table[id^=my-invoice-table] th.view,
body.sales-order-creditmemo table[id^=my-invoice-table] td.view,
body.sales-order-creditmemo table[id^=my-tracking-table] th.view,
body.sales-order-creditmemo table[id^=my-tracking-table] td.view,
body.sales-order-creditmemo table[id^=my-refund-table] th.view,
body.sales-order-creditmemo table[id^=my-refund-table] td.view {
  width: 25%;
  text-align: right;
  padding-right: 0;
}
body.sales-order-view #my-orders-table tfoot tr,
body.sales-order-view table[id^=my-invoice-table] tfoot tr,
body.sales-order-view table[id^=my-tracking-table] tfoot tr,
body.sales-order-view table[id^=my-refund-table] tfoot tr,
body.sales-order-invoice #my-orders-table tfoot tr,
body.sales-order-invoice table[id^=my-invoice-table] tfoot tr,
body.sales-order-invoice table[id^=my-tracking-table] tfoot tr,
body.sales-order-invoice table[id^=my-refund-table] tfoot tr,
body.sales-order-shipment #my-orders-table tfoot tr,
body.sales-order-shipment table[id^=my-invoice-table] tfoot tr,
body.sales-order-shipment table[id^=my-tracking-table] tfoot tr,
body.sales-order-shipment table[id^=my-refund-table] tfoot tr,
body.sales-order-creditmemo #my-orders-table tfoot tr,
body.sales-order-creditmemo table[id^=my-invoice-table] tfoot tr,
body.sales-order-creditmemo table[id^=my-tracking-table] tfoot tr,
body.sales-order-creditmemo table[id^=my-refund-table] tfoot tr {
  background: 0;
}
body.sales-order-view #my-orders-table tfoot tr td:not(.last),
body.sales-order-view table[id^=my-invoice-table] tfoot tr td:not(.last),
body.sales-order-view table[id^=my-tracking-table] tfoot tr td:not(.last),
body.sales-order-view table[id^=my-refund-table] tfoot tr td:not(.last),
body.sales-order-invoice #my-orders-table tfoot tr td:not(.last),
body.sales-order-invoice table[id^=my-invoice-table] tfoot tr td:not(.last),
body.sales-order-invoice table[id^=my-tracking-table] tfoot tr td:not(.last),
body.sales-order-invoice table[id^=my-refund-table] tfoot tr td:not(.last),
body.sales-order-shipment #my-orders-table tfoot tr td:not(.last),
body.sales-order-shipment table[id^=my-invoice-table] tfoot tr td:not(.last),
body.sales-order-shipment table[id^=my-tracking-table] tfoot tr td:not(.last),
body.sales-order-shipment table[id^=my-refund-table] tfoot tr td:not(.last),
body.sales-order-creditmemo #my-orders-table tfoot tr td:not(.last),
body.sales-order-creditmemo table[id^=my-invoice-table] tfoot tr td:not(.last),
body.sales-order-creditmemo table[id^=my-tracking-table] tfoot tr td:not(.last),
body.sales-order-creditmemo table[id^=my-refund-table] tfoot tr td:not(.last) {
  font-weight: bold;
}
body.sales-order-view #my-orders-table th,
body.sales-order-view table[id^=my-invoice-table] th,
body.sales-order-view table[id^=my-tracking-table] th,
body.sales-order-view table[id^=my-refund-table] th,
body.sales-order-invoice #my-orders-table th,
body.sales-order-invoice table[id^=my-invoice-table] th,
body.sales-order-invoice table[id^=my-tracking-table] th,
body.sales-order-invoice table[id^=my-refund-table] th,
body.sales-order-shipment #my-orders-table th,
body.sales-order-shipment table[id^=my-invoice-table] th,
body.sales-order-shipment table[id^=my-tracking-table] th,
body.sales-order-shipment table[id^=my-refund-table] th,
body.sales-order-creditmemo #my-orders-table th,
body.sales-order-creditmemo table[id^=my-invoice-table] th,
body.sales-order-creditmemo table[id^=my-tracking-table] th,
body.sales-order-creditmemo table[id^=my-refund-table] th {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 2px;
}
body.sales-order-view #my-orders-table td,
body.sales-order-view table[id^=my-invoice-table] td,
body.sales-order-view table[id^=my-tracking-table] td,
body.sales-order-view table[id^=my-refund-table] td,
body.sales-order-invoice #my-orders-table td,
body.sales-order-invoice table[id^=my-invoice-table] td,
body.sales-order-invoice table[id^=my-tracking-table] td,
body.sales-order-invoice table[id^=my-refund-table] td,
body.sales-order-shipment #my-orders-table td,
body.sales-order-shipment table[id^=my-invoice-table] td,
body.sales-order-shipment table[id^=my-tracking-table] td,
body.sales-order-shipment table[id^=my-refund-table] td,
body.sales-order-creditmemo #my-orders-table td,
body.sales-order-creditmemo table[id^=my-invoice-table] td,
body.sales-order-creditmemo table[id^=my-tracking-table] td,
body.sales-order-creditmemo table[id^=my-refund-table] td {
  padding: 3px 10px;
}
body.sales-order-view #my-orders-table h3, body.sales-order-view #my-orders-table h4,
body.sales-order-view table[id^=my-invoice-table] h3,
body.sales-order-view table[id^=my-invoice-table] h4,
body.sales-order-view table[id^=my-tracking-table] h3,
body.sales-order-view table[id^=my-tracking-table] h4,
body.sales-order-view table[id^=my-refund-table] h3,
body.sales-order-view table[id^=my-refund-table] h4,
body.sales-order-invoice #my-orders-table h3,
body.sales-order-invoice #my-orders-table h4,
body.sales-order-invoice table[id^=my-invoice-table] h3,
body.sales-order-invoice table[id^=my-invoice-table] h4,
body.sales-order-invoice table[id^=my-tracking-table] h3,
body.sales-order-invoice table[id^=my-tracking-table] h4,
body.sales-order-invoice table[id^=my-refund-table] h3,
body.sales-order-invoice table[id^=my-refund-table] h4,
body.sales-order-shipment #my-orders-table h3,
body.sales-order-shipment #my-orders-table h4,
body.sales-order-shipment table[id^=my-invoice-table] h3,
body.sales-order-shipment table[id^=my-invoice-table] h4,
body.sales-order-shipment table[id^=my-tracking-table] h3,
body.sales-order-shipment table[id^=my-tracking-table] h4,
body.sales-order-shipment table[id^=my-refund-table] h3,
body.sales-order-shipment table[id^=my-refund-table] h4,
body.sales-order-creditmemo #my-orders-table h3,
body.sales-order-creditmemo #my-orders-table h4,
body.sales-order-creditmemo table[id^=my-invoice-table] h3,
body.sales-order-creditmemo table[id^=my-invoice-table] h4,
body.sales-order-creditmemo table[id^=my-tracking-table] h3,
body.sales-order-creditmemo table[id^=my-tracking-table] h4,
body.sales-order-creditmemo table[id^=my-refund-table] h3,
body.sales-order-creditmemo table[id^=my-refund-table] h4 {
  margin-bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #000;
  text-transform: none;
}
body.sales-order-view #my-orders-table tr td:last-child,
body.sales-order-view table[id^=my-invoice-table] tr td:last-child,
body.sales-order-view table[id^=my-tracking-table] tr td:last-child,
body.sales-order-view table[id^=my-refund-table] tr td:last-child,
body.sales-order-invoice #my-orders-table tr td:last-child,
body.sales-order-invoice table[id^=my-invoice-table] tr td:last-child,
body.sales-order-invoice table[id^=my-tracking-table] tr td:last-child,
body.sales-order-invoice table[id^=my-refund-table] tr td:last-child,
body.sales-order-shipment #my-orders-table tr td:last-child,
body.sales-order-shipment table[id^=my-invoice-table] tr td:last-child,
body.sales-order-shipment table[id^=my-tracking-table] tr td:last-child,
body.sales-order-shipment table[id^=my-refund-table] tr td:last-child,
body.sales-order-creditmemo #my-orders-table tr td:last-child,
body.sales-order-creditmemo table[id^=my-invoice-table] tr td:last-child,
body.sales-order-creditmemo table[id^=my-tracking-table] tr td:last-child,
body.sales-order-creditmemo table[id^=my-refund-table] tr td:last-child {
  width: 80px;
}
body.sales-order-view #my-orders-table th.a-center,
body.sales-order-view table[id^=my-invoice-table] th.a-center,
body.sales-order-view table[id^=my-tracking-table] th.a-center,
body.sales-order-view table[id^=my-refund-table] th.a-center,
body.sales-order-invoice #my-orders-table th.a-center,
body.sales-order-invoice table[id^=my-invoice-table] th.a-center,
body.sales-order-invoice table[id^=my-tracking-table] th.a-center,
body.sales-order-invoice table[id^=my-refund-table] th.a-center,
body.sales-order-shipment #my-orders-table th.a-center,
body.sales-order-shipment table[id^=my-invoice-table] th.a-center,
body.sales-order-shipment table[id^=my-tracking-table] th.a-center,
body.sales-order-shipment table[id^=my-refund-table] th.a-center,
body.sales-order-creditmemo #my-orders-table th.a-center,
body.sales-order-creditmemo table[id^=my-invoice-table] th.a-center,
body.sales-order-creditmemo table[id^=my-tracking-table] th.a-center,
body.sales-order-creditmemo table[id^=my-refund-table] th.a-center {
  width: 115px;
  text-align: right;
}
body.sales-order-view #my-orders-table .item-options,
body.sales-order-view table[id^=my-invoice-table] .item-options,
body.sales-order-view table[id^=my-tracking-table] .item-options,
body.sales-order-view table[id^=my-refund-table] .item-options,
body.sales-order-invoice #my-orders-table .item-options,
body.sales-order-invoice table[id^=my-invoice-table] .item-options,
body.sales-order-invoice table[id^=my-tracking-table] .item-options,
body.sales-order-invoice table[id^=my-refund-table] .item-options,
body.sales-order-shipment #my-orders-table .item-options,
body.sales-order-shipment table[id^=my-invoice-table] .item-options,
body.sales-order-shipment table[id^=my-tracking-table] .item-options,
body.sales-order-shipment table[id^=my-refund-table] .item-options,
body.sales-order-creditmemo #my-orders-table .item-options,
body.sales-order-creditmemo table[id^=my-invoice-table] .item-options,
body.sales-order-creditmemo table[id^=my-tracking-table] .item-options,
body.sales-order-creditmemo table[id^=my-refund-table] .item-options {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  margin-left: 0;
  margin-top: 0;
}
body.sales-order-view #my-orders-table .item-options dt,
body.sales-order-view table[id^=my-invoice-table] .item-options dt,
body.sales-order-view table[id^=my-tracking-table] .item-options dt,
body.sales-order-view table[id^=my-refund-table] .item-options dt,
body.sales-order-invoice #my-orders-table .item-options dt,
body.sales-order-invoice table[id^=my-invoice-table] .item-options dt,
body.sales-order-invoice table[id^=my-tracking-table] .item-options dt,
body.sales-order-invoice table[id^=my-refund-table] .item-options dt,
body.sales-order-shipment #my-orders-table .item-options dt,
body.sales-order-shipment table[id^=my-invoice-table] .item-options dt,
body.sales-order-shipment table[id^=my-tracking-table] .item-options dt,
body.sales-order-shipment table[id^=my-refund-table] .item-options dt,
body.sales-order-creditmemo #my-orders-table .item-options dt,
body.sales-order-creditmemo table[id^=my-invoice-table] .item-options dt,
body.sales-order-creditmemo table[id^=my-tracking-table] .item-options dt,
body.sales-order-creditmemo table[id^=my-refund-table] .item-options dt {
  font-style: normal;
  font-weight: normal;
}
body.sales-order-view #my-orders-table .item-options dd,
body.sales-order-view table[id^=my-invoice-table] .item-options dd,
body.sales-order-view table[id^=my-tracking-table] .item-options dd,
body.sales-order-view table[id^=my-refund-table] .item-options dd,
body.sales-order-invoice #my-orders-table .item-options dd,
body.sales-order-invoice table[id^=my-invoice-table] .item-options dd,
body.sales-order-invoice table[id^=my-tracking-table] .item-options dd,
body.sales-order-invoice table[id^=my-refund-table] .item-options dd,
body.sales-order-shipment #my-orders-table .item-options dd,
body.sales-order-shipment table[id^=my-invoice-table] .item-options dd,
body.sales-order-shipment table[id^=my-tracking-table] .item-options dd,
body.sales-order-shipment table[id^=my-refund-table] .item-options dd,
body.sales-order-creditmemo #my-orders-table .item-options dd,
body.sales-order-creditmemo table[id^=my-invoice-table] .item-options dd,
body.sales-order-creditmemo table[id^=my-tracking-table] .item-options dd,
body.sales-order-creditmemo table[id^=my-refund-table] .item-options dd {
  padding-left: 3px;
  padding-top: 1px;
}

.customer-account-forgotpassword .page-title h1,
.customer-account-resetpassword .page-title h1 {
  font-size: 28px;
  margin-bottom: 45px;
}
.customer-account-forgotpassword .fieldset,
.customer-account-resetpassword .fieldset {
  margin-left: 0;
  width: 400px;
  max-width: 100%;
}
.customer-account-forgotpassword .fieldset h2,
.customer-account-resetpassword .fieldset h2 {
  display: none;
}
.customer-account-forgotpassword .fieldset p.required,
.customer-account-forgotpassword .fieldset .required:after,
.customer-account-resetpassword .fieldset p.required,
.customer-account-resetpassword .fieldset .required:after {
  display: none;
}
.customer-account-forgotpassword .buttons-set,
.customer-account-resetpassword .buttons-set {
  border-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.customer-account-forgotpassword .buttons-set .back-link a,
.customer-account-resetpassword .buttons-set .back-link a {
  padding-left: 0;
}
.customer-account-forgotpassword .buttons-set .button,
.customer-account-resetpassword .buttons-set .button {
  padding-right: 0;
  text-align: right;
}
.customer-account-forgotpassword .buttons-set small,
.customer-account-resetpassword .buttons-set small {
  display: none;
}
.customer-account-forgotpassword form .form-instructions,
.customer-account-resetpassword form .form-instructions {
  font-style: normal;
  color: #000;
  font-size: 15px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.customer-account-forgotpassword .col-left.sidebar,
.customer-account-resetpassword .col-left.sidebar {
  display: none;
}

.customer-account-resetpassword .col-main {
  width: 80%;
  float: right;
}
.customer-account-resetpassword .page-title h1 {
  margin-bottom: 10px;
}
.customer-account-resetpassword .fieldset {
  margin-top: 20px !important;
}
.customer-account-resetpassword .buttons-set .button {
  padding-right: 5px;
  padding-left: 0;
  margin-left: 0;
  text-align: left;
  float: left;
}

.customer-account-login .col2-left-layout .col-main {
  float: right;
}
.customer-account-login .col2-left-layout .col-main .col-1 h2, .customer-account-login .col2-left-layout .col-main .col-1 h3,
.customer-account-login .col2-left-layout .col-main .col-2 h2,
.customer-account-login .col2-left-layout .col-main .col-2 h3 {
  font-size: 28px;
  font-weight: 400;
}
.customer-account-login .col2-left-layout .col-main .col-1 .buttons-set {
  padding-top: 20px;
}

body.customer-account-index .my-account .button {
  text-align: right;
  padding-right: 0;
}

body.customer-address-form .my-account .fieldset {
  margin-top: 13px;
}
body.customer-address-form .my-account .fieldset h2 {
  display: none;
}
body.customer-address-form .buttons-set .back-link a {
  padding-left: 0;
}
body.customer-address-form .buttons-set .button[type=submit] {
  padding-right: 0;
  text-align: right;
}

.customer-account-login .scaffold-form label:first-child {
  width: auto;
}

body.customer-account-logoutsuccess .col-main {
  width: 80%;
  float: right;
}

body.sales-order-history .buttons-set .col-1 {
  float: left;
}
body.sales-order-history .buttons-set .col-1 .button {
  padding-left: 0;
}
body.sales-order-history .buttons-set .col-2 {
  float: right;
}
body.sales-order-history .buttons-set .col-2 .button {
  padding-right: 0;
  text-align: right;
}

@media (max-width: 979px) {
  body.sales-order-view .my-account .title-buttons a {
    top: 0;
  }
}
body.cms-contact .cms-navigation h1, body.cms-subscribe .cms-navigation h1 {
  margin-bottom: 24px;
}
body.cms-contact h2.legend, body.cms-subscribe h2.legend {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
body.cms-contact #webform_1_submit_button, body.cms-subscribe #webform_1_submit_button {
  margin-top: 0;
  background-position-x: left;
  padding-left: 21px;
  padding-right: 0;
  text-align: right;
}
body.cms-contact .fieldset, body.cms-subscribe .fieldset {
  width: 48%;
}
body.cms-contact .fieldset-1, body.cms-subscribe .fieldset-1 {
  margin-right: 4%;
}
body.cms-contact .fieldset input[type=text],
body.cms-contact .fieldset textarea, body.cms-subscribe .fieldset input[type=text],
body.cms-subscribe .fieldset textarea {
  max-width: 100%;
  width: 100%;
}
body.cms-contact form, body.cms-subscribe form {
  margin-top: 2px;
}
body.cms-contact form h2.legend, body.cms-subscribe form h2.legend {
  color: #000;
  display: none;
}
body.cms-contact form .buttons-set, body.cms-subscribe form .buttons-set {
  border: 0;
}

div.subscription-form {
  margin-top: -4px;
}

@media only screen and (max-width: 599px) {
  body.cms-contact form .fieldset, body.cms-subscribe .fieldset {
    width: 100%;
    margin: 0;
  }
  body.cms-contact form .fieldset input[type=text],
  body.cms-contact form .fieldset textarea, body.cms-subscribe .fieldset input[type=text],
  body.cms-subscribe .fieldset textarea {
    width: 100%;
    max-width: 100%;
  }

  .buttons-set .button {
    width: auto;
  }
}
.cms-page-view .std h2,
.cms-page-view .std h3 {
  font-size: 14px;
  margin-bottom: 18px;
  color: #000;
  font-weight: bold;
  text-transform: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cms-page-view .std h1 {
  color: #000;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: bold;
  text-align: left;
}

.cms-page-view .std p {
  font-style: normal;
  line-height: 1.5em;
  color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 0;
}
.cms-page-view .std p a {
  color: #000;
}

.storelines,
.storethinlines {
  color: #000;
}

.cms-column-one {
  width: 50%;
  float: left;
}

.cms-column-two {
  width: 50%;
  float: right;
}

@media only screen and (max-width: 599px) {
  .cms-column-one,
  .cms-column-two {
    width: 100%;
    float: none;
  }
}
body[class*="cms-faqs"] .cms-navigation {
  margin-bottom: 24px;
}

.checkout-cart-index ul.messages {
  margin-bottom: 50px;
  margin-top: -30px;
}
.checkout-cart-index .checkout-types {
  height: 0;
}
.checkout-cart-index .col-main .page-title {
  margin-top: 5px;
}
.checkout-cart-index .cart-empty {
  margin-top: 55px;
}
.checkout-cart-index .cart-empty p, .checkout-cart-index .cart-empty a {
  color: #000;
}
.checkout-cart-index .cart-empty a {
  text-decoration: underline;
}
.checkout-cart-index li.success-msg {
  display: none;
}
.checkout-cart-index .button:focus {
  color: #000;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFs8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj5dPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczphPSJodHRwOi8vbnMuYWRvYmUuY29tL0Fkb2JlU1ZHVmlld2VyRXh0ZW5zaW9ucy8zLjAvIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDE0IDE3IiBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTciIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iMCwxNi44IDE0LDguNCAwLDAgIi8+PC9zdmc+);
}
.checkout-cart-index p.japan-shipping {
  float: right;
  color: #EB340A;
  font-size: 28px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  line-height: 23px;
}

.checkout-types {
  width: 100%;
  clear: both;
}
.checkout-types.top .btn-proceed-checkout {
  display: none;
}
.checkout-types.bottom li {
  width: auto !important;
}
.checkout-types.bottom li:first-child {
  float: left;
}
.checkout-types.bottom li:last-child {
  float: right;
}

@media only screen and (max-width: 599px) {
  .checkout-cart-index .col-main .page-title {
    margin-bottom: 0;
  }
  .checkout-cart-index .checkout-types {
    height: auto;
  }
  .checkout-cart-index p.japan-shipping {
    float: none;
    clear: both;
    padding: 15px 0 0;
    font-size: 5vw;
  }

  .checkout-types.top .button.btn-proceed-checkout {
    display: block;
    margin: 10px 0 0;
  }

  .checkout-types.bottom li:first-child {
    float: right;
  }
}
#shopping-cart-table {
  border-bottom: 3px solid #CECDC8;
}
#shopping-cart-table .product-cart-image {
  width: 22%;
}
#shopping-cart-table .product-cart-image .product-image {
  border: 0;
}
#shopping-cart-table .product-cart-info {
  width: 41%;
}
#shopping-cart-table .product-cart-price {
  width: 11%;
}
#shopping-cart-table .product-cart-actions {
  width: 11%;
}
#shopping-cart-table .product-cart-total {
  width: 11%;
}
#shopping-cart-table .product-cart-sku {
  display: none;
}
#shopping-cart-table .product-cart-price,
#shopping-cart-table .product-cart-total {
  color: #000;
}
#shopping-cart-table .item-options {
  margin: 0;
  padding: 0;
}
#shopping-cart-table .product-cart-actions {
  list-style: none;
}
#shopping-cart-table .product-cart-actions a, #shopping-cart-table .product-cart-actions button {
  background: 0;
  color: #bab9b9;
  font-size: 12px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  text-indent: 0;
  text-transform: uppercase;
  border: 0;
  padding: 0;
  width: 100%;
  height: auto;
  line-height: 1;
}
#shopping-cart-table .product-cart-actions a:hover, #shopping-cart-table .product-cart-actions button:hover {
  text-decoration: none;
  color: #000;
}
#shopping-cart-table .product-cart-actions .qty {
  background: #cecdc8;
  border: 0;
  padding: 0;
  height: 16px;
  font-size: 14px;
  line-height: 1;
}
#shopping-cart-table td.product-cart-remove {
  display: none;
}
#shopping-cart-table thead th {
  border-bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  font-weight: bold;
}
#shopping-cart-table thead th:first-child {
  padding-left: 0;
}
#shopping-cart-table tfoot td {
  padding: 30px;
}
#shopping-cart-table tfoot td.last {
  padding: 10px;
}
#shopping-cart-table tr {
  border: 0;
}
#shopping-cart-table ul.cart-links {
  display: none;
  list-style: none;
}
#shopping-cart-table button.btn-update {
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  padding-bottom: 10px;
  color: #BAB9B9;
}
#shopping-cart-table button.btn-update:hover {
  color: #000;
}
#shopping-cart-table .product-cart-actions button.btn-update {
  display: block;
}
#shopping-cart-table .cart-footer-actions .btn-update,
#shopping-cart-table .cart-footer-actions .or {
  display: none;
}
#shopping-cart-table h2.product-name a {
  color: #000;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#shopping-cart-table .item-options dt {
  font-weight: normal;
  font-style: normal;
  color: #000;
}
#shopping-cart-table .item-options dd {
  color: #000;
}

.btn-checkout,
.btn-continue,
#webform_1_submit_button {
  color: #BAB9B9;
  font-size: 22px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  clear: right;
  float: right;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFs8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj5dPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczphPSJodHRwOi8vbnMuYWRvYmUuY29tL0Fkb2JlU1ZHVmlld2VyRXh0ZW5zaW9ucy8zLjAvIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDE0IDE3IiBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTciIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIGZpbGw9InJnYigxODYsMTg1LDE4NSkiIHBvaW50cz0iMCwxNi44IDE0LDguNCAwLDAgIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: right;
  background-position-x: right;
  background-position-y: 8px;
  border: 0;
  padding-right: 25px;
  text-transform: uppercase;
  margin-top: 28px;
  width: auto;
}
.btn-checkout:hover,
.btn-continue:hover,
#webform_1_submit_button:hover {
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFs8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj5dPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczphPSJodHRwOi8vbnMuYWRvYmUuY29tL0Fkb2JlU1ZHVmlld2VyRXh0ZW5zaW9ucy8zLjAvIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDE0IDE3IiBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTciIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iMCwxNi44IDE0LDguNCAwLDAgIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: right;
  background-position-x: right;
  background-position-y: 8px;
  color: #000;
}
.btn-checkout:focus,
.btn-continue:focus,
#webform_1_submit_button:focus {
  background-color: transparent;
}
.btn-checkout.button2 span, .btn-checkout.button2 span:hover,
.btn-continue.button2 span,
.btn-continue.button2 span:hover,
#webform_1_submit_button.button2 span,
#webform_1_submit_button.button2 span:hover {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: inherit;
}

.checkout-types.top .btn-checkout {
  float: none;
  padding: 8px 25px 8px 0;
  margin: 20px 0 12px;
}

.btn-continue {
  float: left;
  background: 0;
  padding-right: inherit;
}
.btn-continue:hover {
  background: 0;
}

#order_review_message p {
  padding: 0 0 10px;
  font-size: 14px;
  color: red;
  text-align: right;
}

@media only screen and (max-width: 599px) {
  .btn-checkout {
    font-size: 5vw;
  }

  .btn-continue {
    font-size: 4vw;
    float: right;
  }
}
.cart .page-title {
  border: 0;
}
.cart .page-title h1 {
  margin-bottom: 0;
}

.cart-table {
  float: none;
  width: 100%;
}

.cart .cart-totals {
  background: 0;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}
.cart .cart-totals table tfoot {
  border: 0;
}
.cart .cart-totals table tbody td,
.cart .cart-totals table tfoot td,
.cart .cart-totals table tfoot td strong {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  padding: 0;
}
.cart .cart-totals #shopping-cart-totals-table {
  width: auto;
  float: right;
}
.cart .cart-totals #shopping-cart-totals-table td {
  text-align: left;
}
.cart .cart-totals table tbody tr:last-child td {
  padding-bottom: 0;
}

.cart-totals-wrapper {
  width: 100%;
  padding-left: 0;
}

#shopping-cart-totals-table {
  margin-bottom: 10px;
}

@media only screen and (max-width: 979px) {
  .display-single-price .cart-totals-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .cart .cart-totals table {
    margin-bottom: 0;
  }
}
#empty_cart_button {
  display: none;
}

@media only screen and (max-width: 599px) {
  .checkout-onepage-index .opc #billing-new-address-form ~ li.control {
    clear: both;
    margin-left: 0 !important;
  }

  #shopping-cart-table .btn-checkout {
    width: auto;
  }
  #shopping-cart-table .product-cart-image {
    width: 40%;
  }
  #shopping-cart-table .product-cart-info {
    width: 60%;
    padding-bottom: 0;
  }
  #shopping-cart-table .product-cart-price {
    width: 60%;
    float: left;
  }
  #shopping-cart-table .product-cart-price:before {
    display: none !important;
  }
  #shopping-cart-table .product-cart-actions {
    width: 60%;
    float: left;
  }
  #shopping-cart-table .product-cart-actions:before {
    display: none !important;
  }
  #shopping-cart-table .product-cart-actions .qty {
    margin-right: 75%;
  }
  #shopping-cart-table .product-cart-actions > li {
    display: inline-block;
    line-height: 14px;
  }
  #shopping-cart-table .product-cart-actions .btn-update {
    margin-right: 10px;
  }
  #shopping-cart-table button.btn-update {
    width: auto;
  }
  #shopping-cart-table .item-options dd {
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 979px) {
  #shopping-cart-table .product-cart-image {
    padding-bottom: 80px;
  }

  #shopping-cart-table tbody tr:last-child .product-cart-image {
    padding-bottom: 30px;
  }
}
.checkout-onepage-index #checkout-progress-wrapper {
  display: none !important;
}
.checkout-onepage-index .col-main {
  float: none;
  width: 100%;
  padding-right: 0;
}
.checkout-onepage-index .col-main .page-title {
  display: none;
}
.checkout-onepage-index .description {
  display: none;
}
.checkout-onepage-index .opc .section .step-title {
  border: 0;
}
.checkout-onepage-index .opc .section .step-title .number {
  background-color: transparent;
  color: #bab9b9;
  padding: 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-size: 16px;
  left: 3px;
}
.checkout-onepage-index .opc .section .step-title .number:after {
  content: ':';
}
.checkout-onepage-index .opc .section.allow:not(.active) .step-title:hover {
  background: 0;
}
.checkout-onepage-index .opc .section.allow:not(.active) .step-title a {
  display: none;
}
.checkout-onepage-index .opc .section.allow.active .step-title .number {
  background-color: transparent;
  color: #000;
  padding: 0;
  font-size: 16px;
  left: 3px;
}
.checkout-onepage-index .opc .section.allow.active .step-title .number:after {
  content: ':';
}
.checkout-onepage-index .opc .section #shipnote {
  margin-left: 0;
  padding: 0;
  background: 0;
  border: 0;
}
.checkout-onepage-index .opc .section #shipnote label {
  font-weight: normal;
  color: #000;
}
.checkout-onepage-index .opc .section #shipnote textarea {
  margin-top: 8px !important;
  resize: none;
  height: 90px;
  border-radius: 0;
}
.checkout-onepage-index .opc .section #shipnote textarea:focus {
  outline: 0;
}
.checkout-onepage-index .opc .section #checkout-shipping-method-load dd ul label {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  font-weight: normal;
  color: #000;
}
.checkout-onepage-index .opc .section #checkout-shipping-method-load dd ul label span {
  float: right;
}
.checkout-onepage-index .opc .section .form-list .field {
  margin-bottom: 0;
}
.checkout-onepage-index .opc .section .form-list .control input.radio {
  margin-left: 0;
}
.checkout-onepage-index .opc .section .form-list .control input.radio + label {
  bottom: -10px;
  padding-left: 20px;
}
.checkout-onepage-index .opc .section .step-title h2 {
  color: #bab9b9;
  margin-left: 30px;
  text-transform: uppercase;
  height: 25px;
  line-height: 25px;
}
.checkout-onepage-index .opc .section .step-title:hover h2 {
  color: #bab9b9;
}
.checkout-onepage-index .opc .section.active .step-title h2 {
  color: #000;
}
.checkout-onepage-index .opc .section .data-table {
  color: #000;
  font-size: 14px;
}
.checkout-onepage-index .opc .section .data-table thead th {
  background: 0;
  border: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  font-weight: bold;
}
.checkout-onepage-index .opc .section .data-table tfoot tr {
  background: 0;
}
.checkout-onepage-index .opc .section .data-table tfoot td {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 2px 5px;
  color: #000;
  text-align: left;
  font-weight: normal;
  text-transform: uppercase;
}
.checkout-onepage-index .opc .section .data-table tfoot td .price {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.checkout-onepage-index .opc .section .data-table tfoot td:first-child {
  padding-left: 55%;
  font-weight: bold;
}
.checkout-onepage-index .opc .section .data-table tfoot td.last {
  width: 50px;
}
.checkout-onepage-index .opc .section .data-table td {
  border-bottom: 0;
}
.checkout-onepage-index .opc .section .data-table tfoot :last-child td {
  border-bottom: 3px solid #ccc;
}
.checkout-onepage-index .opc textarea {
  color: #000;
  padding: 0 2.5%;
  background: none repeat scroll 0 0 #CECDCB;
  border: medium none;
  height: 77px;
  width: 100% !important;
  max-width: 100%;
}
.checkout-onepage-index .opc textarea:focus {
  border: 0;
}
.checkout-onepage-index .opc #checkout-step-login .col-1 ul {
  display: none;
}
.checkout-onepage-index .opc #checkout-step-login button.button {
  margin-top: 0;
}
.checkout-onepage-index .opc #checkout-step-login .col-2 button.button {
  float: right;
  padding-right: 0;
  margin-right: 0;
  text-align: right;
}
.checkout-onepage-index .opc #co-shipping-method-form .buttons-set .button,
.checkout-onepage-index .opc button.button,
.checkout-onepage-index .opc a.button {
  color: #BAB9B9;
  font-size: 22px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  min-width: inherit;
  border: 0;
  background: none;
  padding-left: 0;
  text-transform: uppercase;
}
.checkout-onepage-index .opc #co-shipping-method-form .buttons-set .button:hover, .checkout-onepage-index .opc #co-shipping-method-form .buttons-set .button:focus,
.checkout-onepage-index .opc button.button:hover,
.checkout-onepage-index .opc button.button:focus,
.checkout-onepage-index .opc a.button:hover,
.checkout-onepage-index .opc a.button:focus {
  background: none;
  color: #000;
}
.checkout-onepage-index .opc button.button[title="Continue"]:nth-child(1) {
  float: right;
  padding-right: 0 !important;
  margin-right: 0 !important;
  padding-left: 15px !important;
}
.checkout-onepage-index .opc .back-link + button.button {
  float: right;
  position: relative;
  top: -2px;
  padding-right: 0 !important;
  margin-right: 0 !important;
  padding-left: 15px !important;
}
.checkout-onepage-index .opc .opc-block-progress {
  display: none;
}
.checkout-onepage-index .opc .scaffold-form .fieldset ul li {
  float: left;
  width: 48%;
}
.checkout-onepage-index .opc .scaffold-form .fieldset ul li:nth-child(2n) {
  margin-left: 4%;
}
.checkout-onepage-index .opc .scaffold-form:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-onepage-index .opc #billing-new-address-form ~ li.control {
  width: 48%;
}
.checkout-onepage-index .opc #billing-new-address-form ~ li.control:last-child {
  margin-left: 4%;
}
.checkout-onepage-index .agreement-content {
  display: none;
}
.checkout-onepage-index #shipping-new-address-form:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-onepage-index #checkout-review-load h3 {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.checkout-onepage-index #checkout-review-load h3 a, .checkout-onepage-index #checkout-review-load h3 a:hover, .checkout-onepage-index #checkout-review-load h3 a:focus {
  color: #000;
}
.checkout-onepage-index #checkout-review-load h3.product-name {
  font-size: 13px;
  text-transform: none;
}
.checkout-onepage-index #checkout-review-load address {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
}
.checkout-onepage-index #checkout-review-table-wrapper + .col2-set {
  border-bottom: 3px solid #ccc;
  margin-bottom: 50px;
  padding-bottom: 15px;
}
.checkout-onepage-index #checkout-review-submit .agree {
  color: #000;
  text-align: right;
}
.checkout-onepage-index #checkout-review-submit .agree a {
  color: #000;
  border-bottom: 1px dotted #bab9b9;
}
.checkout-onepage-index #checkout-review-submit .agree a:hover {
  text-decoration: none;
}
.checkout-onepage-index #checkout-review-submit .agree label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.checkout-onepage-index #checkout-review-table tfoot :last-child td {
  padding-bottom: 25px;
}
.checkout-onepage-index #checkout-review-table h2.product-name {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

@media only screen and (min-width: 599px) {
  .checkout-onepage-index .scaffold-form .fieldset ul li.wide label {
    bottom: 10px;
  }
}
@media only screen and (max-width: 979px) {
  .checkout-onepage-index #checkout-review-table {
    color: #000;
  }
  .checkout-onepage-index #checkout-review-table tbody th, .checkout-onepage-index #checkout-review-table tbody td {
    padding: 5px;
  }
  .checkout-onepage-index #checkout-review-table tbody td.first img {
    width: 28.5vw;
  }
  .checkout-onepage-index #checkout-review-table tbody h3 {
    text-transform: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
  }
  .checkout-onepage-index #checkout-review-table tbody .item-options {
    margin: 0;
    font-size: 13px;
  }
  .checkout-onepage-index #checkout-review-table tbody .item-options dt {
    font-style: normal;
  }
}
@media only screen and (max-width: 599px) {
  .checkout-onepage-index #checkout-step-login .col-1, .checkout-onepage-index #checkout-step-login .col-2 {
    float: none;
    width: 100%;
  }

  .checkout-onepage-index .opc .scaffold-form .fieldset ul li {
    float: none;
    width: 100%;
  }
  .checkout-onepage-index .opc .scaffold-form .fieldset ul li:nth-child(2n) {
    margin-left: 0;
  }

  .paypal-express-review #checkout-review-table,
  .checkout-onepage-index #checkout-review-table {
    margin-bottom: 30px;
  }
  .paypal-express-review #checkout-review-table thead,
  .checkout-onepage-index #checkout-review-table thead {
    display: none;
  }
  .paypal-express-review #checkout-review-table tbody tr td:first-child,
  .checkout-onepage-index #checkout-review-table tbody tr td:first-child {
    display: none;
  }
  .paypal-express-review #checkout-review-table tbody th,
  .checkout-onepage-index #checkout-review-table tbody th {
    padding-left: 0;
  }
  .paypal-express-review #checkout-review-table tbody td,
  .checkout-onepage-index #checkout-review-table tbody td {
    width: 100%;
    display: block;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .paypal-express-review #checkout-review-table tbody td.a-center,
  .checkout-onepage-index #checkout-review-table tbody td.a-center {
    text-align: left;
    color: #000;
  }
  .paypal-express-review #checkout-review-table tbody td.a-center:before,
  .checkout-onepage-index #checkout-review-table tbody td.a-center:before {
    content: 'Qty: ';
  }
  .paypal-express-review #checkout-review-table tbody dl,
  .checkout-onepage-index #checkout-review-table tbody dl {
    margin-left: 0;
    margin-top: 0;
    color: #000;
  }
  .paypal-express-review #checkout-review-table tbody dl dt,
  .checkout-onepage-index #checkout-review-table tbody dl dt {
    font-style: normal;
    font-weight: normal;
  }
  .paypal-express-review #checkout-review-table tbody dl dd,
  .checkout-onepage-index #checkout-review-table tbody dl dd {
    padding-left: 0;
    margin-bottom: 5px;
    color: #000;
  }
  .paypal-express-review #checkout-review-table tbody .cart-price,
  .checkout-onepage-index #checkout-review-table tbody .cart-price {
    color: #000;
  }
  .paypal-express-review #checkout-review-table tbody td.last,
  .checkout-onepage-index #checkout-review-table tbody td.last {
    margin-bottom: 24px;
  }
  .paypal-express-review #checkout-review-table tbody td.last .cart-price:before,
  .checkout-onepage-index #checkout-review-table tbody td.last .cart-price:before {
    content: 'Subtotal: ';
  }
  .paypal-express-review #checkout-review-table tfoot td,
  .checkout-onepage-index #checkout-review-table tfoot td {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-weight: bold;
  }
  .paypal-express-review #checkout-review-table tfoot td:first-child,
  .checkout-onepage-index #checkout-review-table tfoot td:first-child {
    padding-left: 0;
  }
  .paypal-express-review #checkout-review-table tfoot :last-child td,
  .checkout-onepage-index #checkout-review-table tfoot :last-child td {
    padding-bottom: 35px;
  }
  .paypal-express-review #checkout-review-table h3,
  .checkout-onepage-index #checkout-review-table h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 0;
    text-transform: none;
    color: #000;
    font-weight: bold;
  }

  .checkout-onepage-index p.agree {
    margin-top: 20px;
    text-align: right;
  }
  .checkout-onepage-index p.agree label {
    max-width: 100%;
  }
  .checkout-onepage-index p.agree input[type=checkbox] + label {
    padding-left: 10px !important;
  }
  .checkout-onepage-index #review-buttons-container .button.btn-checkout {
    margin: 0;
    padding: 7px 0 7px 15px;
    min-width: 160px;
  }
}
#checkout-shipping-method-load {
  width: 48%;
  float: left;
}

#onepage-checkout-shipping-method-additional-load {
  width: 48%;
  float: right;
}

@media only screen and (max-width: 599px) {
  #checkout-shipping-method-load,
  #onepage-checkout-shipping-method-additional-load {
    width: 100%;
    float: none;
  }

  .checkout-onepage-index .opc .section .form-list .control input.radio {
    margin-top: 6px;
  }

  .checkout-onepage-index .opc .section .form-list .control input.radio + label {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.checkout-onepage-success .col-main {
  text-align: left;
}
.checkout-onepage-success .col-main .page-title h1 {
  margin-bottom: 20px;
}
.checkout-onepage-success .col-main p, .checkout-onepage-success .col-main a {
  color: #000;
}
.checkout-onepage-success .col-main a {
  border-bottom: 1px dotted #ccc;
}
.checkout-onepage-success .col-main a:hover {
  text-decoration: none;
}
.checkout-onepage-success .col-main .buttons-set {
  border-top: 0;
}
.checkout-onepage-success .col-main .buttons-set .button {
  color: #BAB9B9;
  font-size: 22px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  clear: right;
  float: left;
  background: 0;
  border: 0;
  text-transform: uppercase;
  margin-top: 10px;
  margin-left: 0;
  padding-left: 0;
  width: auto;
}
.checkout-onepage-success .col-main .buttons-set .button:hover {
  color: #000;
}

.paypal-express-review .col-main {
  width: 80%;
  float: right;
}
.paypal-express-review .col-main .data-table {
  color: #000;
  font-size: 14px;
}
.paypal-express-review .col-main .data-table thead th {
  background: 0;
  border: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  font-weight: bold;
}
.paypal-express-review .col-main .data-table tfoot tr {
  background: 0;
}
.paypal-express-review .col-main .data-table tfoot td {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 2px 5px;
  color: #000;
  text-align: left;
  font-weight: normal;
  text-transform: uppercase;
}
.paypal-express-review .col-main .data-table tfoot td .price {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.paypal-express-review .col-main .data-table tfoot td:first-child {
  padding-left: 55%;
  font-weight: bold;
}
.paypal-express-review .col-main .data-table tfoot td.last {
  width: 50px;
}
.paypal-express-review .col-main .data-table td {
  border-bottom: 0;
}
.paypal-express-review .col-main .data-table tfoot :last-child td {
  border-bottom: 3px solid #ccc;
}
.paypal-express-review .col-main .info-set h3 {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.paypal-express-review .col-main .info-set h3 a, .paypal-express-review .col-main .info-set h3 a:hover, .paypal-express-review .col-main .info-set h3 a:focus {
  color: #000;
}
.paypal-express-review .col-main .info-set h3.product-name {
  font-size: 13px;
  text-transform: none;
}
.paypal-express-review .col-main .info-set address {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
}
.paypal-express-review .col-main .info-set.col2-set {
  border-bottom: 3px solid #ccc;
  margin-bottom: 50px;
  padding-bottom: 15px;
}
.paypal-express-review .col-main .checkout-agreements .agreement-content {
  display: none;
}
.paypal-express-review .col-main .checkout-agreements .agree {
  color: #000;
  text-align: right;
}
.paypal-express-review .col-main .checkout-agreements .agree a {
  color: #000;
  border-bottom: 1px dotted #bab9b9;
}
.paypal-express-review .col-main .checkout-agreements .agree a:hover {
  text-decoration: none;
}
.paypal-express-review .col-main .checkout-agreements .agree label {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.paypal-express-review .col-main #checkout-review-table tfoot :last-child td {
  padding-bottom: 25px;
}
.paypal-express-review .col-main #checkout-review-table h2.product-name {
  font-family: "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.paypal-express-review .col-main .buttons-set {
  border: none;
}
.paypal-express-review .col-main .buttons-set .button.btn-checkout {
  background: none;
}
.paypal-express-review .col-main .buttons-set .button.btn-checkout:hover {
  color: #000;
}
.paypal-express-review .col-main form#shipping_method_form input[type=radio] {
  display: block;
  margin-top: 6px;
  float: left;
  clear: both;
}
.paypal-express-review .col-main form#shipping_method_form input + label {
  display: block;
  float: left;
  max-width: 95%;
}
.paypal-express-review .col-main .review-paypal-logo {
  display: inline-block;
  margin-right: 20px;
  margin-top: 6px;
  margin-bottom: -4px;
}

/***** ReCAPTCHA *****/
@media only screen and (min-width: 600px) {
  .account-login .recaptcha-active .new-users .content, #opc-login .recaptcha-active .new-users .content {
    margin-bottom: 238px;
  }
}
.g-recaptcha {
  margin: 25px 0;
  min-height: 78px;
}

.size-guide td {
  color: #000;
}

@media (max-width: 600px) {
  .size-guide-item {
    overflow-x: scroll;
    max-width: 100%;
  }

  .size-guide {
    min-width: 600px !important;
  }
}
body.sizeguide-index-index .sidebar-links {
  display: none;
}

@media only screen and (max-width: 599px) {
  .checkout-onepage-index #header .website-switcher {
    display: none;
  }
}
#checkout-progress-state li {
  float: left;
  font-size: 16px;
  font-weight: normal;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  text-transform: uppercase;
  margin-right: 19px;
  color: #bab9b9;
}
#checkout-progress-state li.selected {
  color: #000;
}

.opc .col-1 h3 {
  margin-bottom: 122px;
}
.opc .col-1 h2, .opc .col-1 h3,
.opc .col-2 h2,
.opc .col-2 h3 {
  font-size: 28px;
  font-weight: 400;
}
.opc #checkout-step-billing {
  padding-top: 10px;
}
.opc #checkout-step-billing label[for="billing-address-select"] {
  display: none;
}
.opc #checkout-step-billing select {
  max-width: inherit;
}
.opc #checkout-step-billing .control input[type=radio] {
  margin-top: 5px;
}
.opc #checkout-step-billing .control input[type=radio] + label {
  padding-top: 0;
}
.opc #opc-payment #payment_form_datacash_hcc {
  padding: 0;
}
.opc #opc-payment iframe {
  width: 100%;
}

@media only screen and (max-width: 599px) {
  .opc .col-1 h3 {
    margin-bottom: 40px;
  }
}
body.checkout-onepage-index .opc {
  width: 80%;
  float: right;
}
body.checkout-onepage-index .opc .section .step {
  padding: 20px 0;
}
body.checkout-onepage-index .opc .section .step-title {
  display: none;
  margin-top: 22px;
}
body.checkout-onepage-index .opc .section .step-title h2 {
  margin-left: 0;
  color: #bab9b9;
  font-size: 28px;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  text-transform: capitalize;
}
body.checkout-onepage-index .opc .section .step-title .number {
  display: none !important;
}
body.checkout-onepage-index .opc .section.active .step-title {
  display: block;
}
body.checkout-onepage-index .opc .section.active .step-title h2 {
  color: #000;
}
body.checkout-onepage-index .opc #opc-login .step-title {
  display: none;
}
body.checkout-onepage-index .opc #checkout-shipping-method-load .sp-methods dd label {
  background: none;
  width: 90%;
  padding: 0;
  font-size: 14px;
}
body.checkout-onepage-index .opc #checkout-shipping-method-load .sp-methods dd input.radio {
  float: right;
  margin-right: -10px;
  margin-top: 4px;
}
body.checkout-onepage-index .opc #checkout-shipping-method-load .sp-methods dd span.price {
  font-weight: normal;
}
body.checkout-onepage-index .opc #checkout-payment-method-load dt input {
  margin-left: 0;
}
body.checkout-onepage-index .opc #checkout-payment-method-load dt label {
  padding-left: 28px;
  background-color: transparent;
}
body.checkout-onepage-index .opc #checkout-payment-method-load dt label:hover {
  background-color: transparent;
}
body.checkout-onepage-index .opc #checkout-payment-method-load dt label a {
  color: #bab9b9;
  margin-top: 0;
  text-decoration: underline;
  font-weight: 700;
}
body.checkout-onepage-index .opc #checkout-payment-method-load dd #payment_form_datacash_hcc li #datacash_hcc_iframe_block {
  margin-left: 17px;
}
body.checkout-onepage-index .opc #opc-payment #checkout-step-payment #payment-buttons-container .back-link {
  margin-left: 28px;
}

@media only screen and (min-width: 600px) {
  #opc-shipping_method .step-title {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  body.checkout-onepage-index .opc .section.active .step-title {
    display: block;
  }
  body.checkout-onepage-index .opc #checkout-shipping-method-load .sp-methods dd label {
    width: 85%;
  }
  body.checkout-onepage-index .opc #checkout-shipping-method-load .sp-methods dd input.radio {
    margin-right: 10px;
  }

  #opc-shipping_method .step h2 {
    display: none;
  }
}
@media only screen and (max-width: 1010px) {
  body.checkout-onepage-index #header .storename {
    margin-bottom: 3px;
  }
  body.checkout-onepage-index .main-container {
    padding-top: 10vw;
  }
  body.checkout-onepage-index .opc {
    float: none;
    width: 100%;
  }

  #checkout-progress-state {
    position: absolute;
    left: -25%;
    bottom: -5.5vw;
  }
  #checkout-progress-state li {
    font-size: 1.9vw;
    margin-right: 1.7vw;
  }
}
@media only screen and (max-width: 599px) {
  #checkout-progress-state {
    display: none;
  }

  body.checkout-onepage-index .main-container {
    padding-top: 6vw;
  }
  body.checkout-onepage-index .opc .section .step-title .number {
    display: block !important;
  }
  body.checkout-onepage-index .opc .section .step-title {
    display: block;
  }
  body.checkout-onepage-index .opc .section .step-title h2 {
    margin-left: 7vw;
    font-size: 5vw;
    text-transform: uppercase;
  }
  body.checkout-onepage-index .opc .section.allow.active .step-title .number,
  body.checkout-onepage-index .opc .section .step-title .number,
  body.checkout-onepage-index .opc .section.allow:hover .step-title .number {
    left: 0;
    text-align: left;
    font-size: 5vw;
  }
}
#shipping-new-address-form .fields.fields__name,
#shipping-new-address-form .wide.fields__name,
#billing-new-address-form .fields.fields__name,
#billing-new-address-form .wide.fields__name {
  width: 100%;
}
#shipping-new-address-form .fields.fields__name .field.name-firstname,
#shipping-new-address-form .wide.fields__name .field.name-firstname,
#billing-new-address-form .fields.fields__name .field.name-firstname,
#billing-new-address-form .wide.fields__name .field.name-firstname {
  width: 48%;
  margin-right: 4%;
}
#shipping-new-address-form .fields.fields__name .field.name-lastname,
#shipping-new-address-form .wide.fields__name .field.name-lastname,
#billing-new-address-form .fields.fields__name .field.name-lastname,
#billing-new-address-form .wide.fields__name .field.name-lastname {
  width: 48%;
}
#shipping-new-address-form .fields.fields__company,
#shipping-new-address-form .wide.fields__company,
#billing-new-address-form .fields.fields__company,
#billing-new-address-form .wide.fields__company {
  margin-left: 0;
}
#shipping-new-address-form .fields.fields__streets,
#shipping-new-address-form .wide.fields__streets,
#billing-new-address-form .fields.fields__streets,
#billing-new-address-form .wide.fields__streets {
  clear: left;
}
#shipping-new-address-form .fields.fields__city:after,
#shipping-new-address-form .wide.fields__city:after,
#billing-new-address-form .fields.fields__city:after,
#billing-new-address-form .wide.fields__city:after {
  content: ' ';
  display: block;
  clear: both;
}
#shipping-new-address-form .fields.fields__city .field,
#shipping-new-address-form .wide.fields__city .field,
#billing-new-address-form .fields.fields__city .field,
#billing-new-address-form .wide.fields__city .field {
  width: 48%;
  float: left;
}
#shipping-new-address-form .fields.fields__city .field:first-child,
#shipping-new-address-form .wide.fields__city .field:first-child,
#billing-new-address-form .fields.fields__city .field:first-child,
#billing-new-address-form .wide.fields__city .field:first-child {
  margin-right: 4%;
}
#shipping-new-address-form .fields.fields__postcode .field,
#shipping-new-address-form .wide.fields__postcode .field,
#billing-new-address-form .fields.fields__postcode .field,
#billing-new-address-form .wide.fields__postcode .field {
  width: 48%;
}
#shipping-new-address-form .fields.fields__country,
#shipping-new-address-form .wide.fields__country,
#billing-new-address-form .fields.fields__country,
#billing-new-address-form .wide.fields__country {
  width: 100%;
}
#shipping-new-address-form .fields.fields__country .field,
#shipping-new-address-form .wide.fields__country .field,
#billing-new-address-form .fields.fields__country .field,
#billing-new-address-form .wide.fields__country .field {
  width: 48%;
}
#shipping-new-address-form .fields.fields__phone,
#shipping-new-address-form .wide.fields__phone,
#billing-new-address-form .fields.fields__phone,
#billing-new-address-form .wide.fields__phone {
  margin-left: 0;
  width: 100%;
}
#shipping-new-address-form .fields.fields__phone .field,
#shipping-new-address-form .wide.fields__phone .field,
#billing-new-address-form .fields.fields__phone .field,
#billing-new-address-form .wide.fields__phone .field {
  width: 48%;
  float: left;
}
#shipping-new-address-form .fields.fields__phone .field:first-child,
#shipping-new-address-form .wide.fields__phone .field:first-child,
#billing-new-address-form .fields.fields__phone .field:first-child,
#billing-new-address-form .wide.fields__phone .field:first-child {
  margin-right: 4%;
}
#shipping-new-address-form li.control,
#billing-new-address-form li.control {
  clear: both;
}

@media only screen and (max-width: 599px) {
  #billing-new-address-form .fields {
    clear: both;
  }
}
@media only screen and (min-width: 599px) {
  #checkout-payment-method-load {
    -webkit-display: flex;
    -webkit-flex-wrap: wrap;
    display: flex;
    flex-wrap: wrap;
  }

  #checkout-payment-method-load :first-child {
    order: 2;
    -webkit-order: 2;
  }

  #checkout-payment-method-load :nth-child(2) {
    order: 3;
    -webkit-order: 3;
  }

  #checkout-payment-method-load :nth-child(3) {
    order: 1;
    -webkit-order: 1;
    margin-top: 0;
  }

  #checkout-payment-method-load :last-child {
    order: 4;
    -webkit-order: 4;
    flex-grow: 2;
    -webkit-flex-grow: 2;
  }
}
#productupdates {
  display: none;
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 9999;
  margin: -150px 0 0 -150px;
  text-align: left;
}
#productupdates h2 {
  float: left;
  text-transform: none;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  color: #000;
}
#productupdates h3 {
  padding: 4px 0;
}
#productupdates a#productupdates-cancel {
  float: right;
  cursor: pointer;
  font-weight: bold;
  color: #BAB9B9;
}
#productupdates a#productupdates-cancel:hover {
  color: #000;
}
#productupdates #aw_pun_heading {
  display: block;
  width: 280px;
  margin: 0 0 20px 0;
  font-weight: normal;
  text-transform: none;
  color: #000;
  clear: both;
}
#productupdates .aw_pun_success {
  width: 280px;
}
#productupdates .group-select {
  margin: 5px 0;
  border: 1px solid #f1f1f1;
  padding: 10px;
  background: #ffffff;
  font-size: 14px;
}
#productupdates.done #punLoadMessage {
  display: none;
}
#productupdates.done #punContent {
  display: block;
}
#productupdates.loading #punLoadMessage {
  display: none;
}
#productupdates.loading #punContent {
  display: none;
}
#productupdates .button-set {
  border-top: 1px solid #f1f1f1;
  clear: both;
  margin: 4px 0 4px 0;
  padding-top: 8px;
  text-align: left;
  padding-bottom: 10px;
}
#productupdates .form-list label {
  float: none;
  font-weight: normal;
  font-size: 14px;
  color: #BAB9B9;
}
#productupdates .form-list label.required {
  color: #EB340A;
  font-weight: bold;
}
#productupdates input {
  width: 95%;
  padding: 0 2.5%;
  background: #cecdcb;
  border: none;
  height: 20px;
  border-radius: 0;
}
#productupdates button.button[type="submit"] {
  margin-right: 0;
  padding-right: 0;
}

.stock-notification-widgit,
.stock-notification-widgit a {
  clear: both;
  font-size: 12px;
  font-weight: bold;
  color: #bab9b9;
}

.lb-looks {
  padding-top: 33px;
}
.lb-looks:after {
  content: '';
  display: table;
  clear: both;
}

.lb-look {
  display: block;
  width: 32.3%;
  width: calc(33.33% - 17px);
  margin-right: 25px;
  margin-bottom: 25px;
  float: left;
  position: relative;
}
.lb-look:focus {
  outline: 0;
}
.lb-look:nth-child(3n) {
  margin-right: 0;
}
.lb-look:nth-child(3n + 1) {
  clear: both;
}
.lb-look:after {
  content: attr(data-content);
  display: block;
  background: rgba(255, 255, 255, 0.6);
  min-height: inherit !important;
  position: absolute;
  padding-top: 45%;
  padding-bottom: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  font-weight: 700;
  font-size: 8pt;
  opacity: 0;
  text-transform: uppercase;
  text-decoration: none;
}
.lb-look:hover:after {
  opacity: 1;
}
.lb-look img {
  max-width: 100%;
}
@media (max-width: 599px) {
  .lb-look {
    width: 100%;
    margin-right: 0;
  }
}

body {
  -webkit-text-size-adjust: 100%;
}
body.suppress {
  overflow: hidden !important;
  max-height: 1px !important;
}

html.suppress {
  overflow: hidden !important;
}

img[src*=".svg"] {
  outline: 0;
}
img[src*=".svg"]:focus {
  outline: 0;
}

/* 1 */
.ie9 img[src*=".svg"] {
  width: 100%;
}

/* 2 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src*=".svg"] {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .forced-clearer {
    clear: both;
  }
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #CECDCB inset;
}

.media-image-wrapper {
  position: relative;
}
.media-image-wrapper a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.media-image-wrapper .media-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.toolbar {
  border: 0;
  background: #fff;
}
.toolbar .sorter {
  display: none;
}
.toolbar .count-container {
  display: none;
}
.toolbar .pager {
  float: none;
}
.toolbar .pages {
  float: none;
  margin: 0;
  text-align: center;
}
@media (max-width: 979px) {
  .toolbar .pages {
    float: none !important;
  }
}
.toolbar .pages li {
  display: inline-block;
  float: none;
  border: 0;
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-size: 22px;
  font-weight: 400;
  vertical-align: top;
  line-height: 1;
}
.toolbar .pages li:hover {
  border: 0;
}
.toolbar .pages li.current {
  width: 20px;
  height: auto;
  line-height: 1;
  color: #000;
}
.toolbar .pages a {
  font-family: "Helvetica Neue CE 85 Heavy", "Helvetica Neue LT 85 Heavy", "Helvetica Neue 85 Heavy", "HelveticaNeue-Heavy", "Helvetica Neue Heavy", "HelveticaNeueW01-85Heav", "Helvetica Neue CE 75 Bold", "Helvetica Neue LT 75 Bold", "Helvetica Neue 75 Bold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue", "HelveticaNeueW01-85Heav", Arial, "Lucida Grande", sans-serif;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  width: 20px;
  color: #BAB9B9;
  line-height: 1;
  height: auto;
  display: block;
}
.toolbar .pages a:hover {
  border: 0;
}
.toolbar .pages a.previous {
  margin-right: 40px;
  width: 120px;
  text-align: left;
  padding-left: 20px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCSB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNi43OTlweCIgdmlld0JveD0iMCAwIDE0IDE2Ljc5OSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTYuNzk5IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSJyZ2IoMTg2LDE4NSwxODUpIiBwb2ludHM9IjEzLjk5OSwwIDAsOC4zOTkgMTMuOTk5LDE2LjggIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: left center;
}
.toolbar .pages a.previous:before, .toolbar .pages a.previous:after {
  display: none;
}
@media (max-width: 767px) {
  .toolbar .pages a.previous {
    width: 90px;
    margin-right: 10px;
  }
}
.toolbar .pages a.next {
  margin-left: 40px;
  width: 120px;
  text-align: right;
  padding-right: 20px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFs8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj5dPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczphPSJodHRwOi8vbnMuYWRvYmUuY29tL0Fkb2JlU1ZHVmlld2VyRXh0ZW5zaW9ucy8zLjAvIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDE0IDE3IiBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTQgMTciIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIGZpbGw9InJnYigxODYsMTg1LDE4NSkiIHBvaW50cz0iMCwxNi44IDE0LDguNCAwLDAgIi8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: right center;
}
.toolbar .pages a.next:before, .toolbar .pages a.next:after {
  display: none;
}
@media (max-width: 767px) {
  .toolbar .pages a.next {
    width: 90px;
    margin-left: 10px;
  }
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
html, body {
    height: auto;
    min-height: 100%;
}
[class*="pswp"],
[class*="pswp"] * {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    visibility:visible;
}
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
    -webkit-backface-visibility: hidden;
    outline: none; }
@media (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 320px) {
    .pswp {
        position: fixed !important;
        top: 0 !important;
    }
}
.pswp * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
.pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
    /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
    opacity: 0.001;
    will-change: opacity;
    /* for open/close transition */
    -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
    display: block; }

.pswp--zoom-allowed .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab; }

.pswp--dragging .pswp__img {
    /* autoprefixer: off */
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    will-change: opacity; }

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; }

/*.pswp__scroll-wrap:after {*/
    /*content: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/images/pinch-zoom.svg);*/
    /*position: absolute;*/
    /*width: 50px;*/
    /*bottom: 15px;*/
    /*right: 15px;*/
/*}*/

.pswp__container, .pswp__zoom-wrap {
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container, .pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none; }

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    /* for open/close transition */
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
    will-change: opacity;
    /* for open/close transition */
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: opacity 666ms cubic-bezier(0.4, 0, 0.22, 1);
    transition: opacity 666ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
    -webkit-transition: none;
    transition: none; }

.pswp__container, .pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
    will-change: transform; }

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden; }

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    -webkit-transition: opacity 0.15s;
    transition: opacity 0.15s; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
    -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
    background-size: contain;
    background: 0; }

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC; }

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline; }

.pswp__ui--hidden { display: none }
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button, .pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  background: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/css/default-skin/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

/*@media (-webkit-min-device-pixel-ratio: 1.1), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {*/
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button, .pswp--svg .pswp__button--arrow--left:before, .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/css/default-skin/default-skin.svg); }

  .pswp--svg .pswp__button--arrow--left, .pswp--svg .pswp__button--arrow--right {
    background: none; }
 /*}*/

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left, .pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left, .pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter, .pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }
a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(https://d35ycuoshb9p7t.cloudfront.net/skin/frontend/dsm/default/css/default-skin/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }
.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }
.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; }
 }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

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

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

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }

  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }

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

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption, .pswp__top-bar, .pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar, .pswp__caption {
  background-color: rgba(0, 0, 0, 0); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }
.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar, .pswp__ui--hidden .pswp__caption, .pswp__ui--hidden .pswp__button--arrow--left, .pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left, .pswp__ui--one-slide .pswp__button--arrow--right, .pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }
